@charset "utf-8";
/* CSS Document */
.pagelinks_d3 {
  gap: clamp(34px, 7vw, 70px);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pagelinks_d3 a {
  text-decoration: none;
}

.pagelinks_d3 a > .flex {
  gap: clamp(12px, 2vw, 18px);
  align-items: center;
}

.pagelinks_d3 a p {
  color: #222;
  font-weight: 700;
  line-height: 1.4;
}

.pagelinks_d3 a > .flex .moreicon {
  width: clamp(30px, 3vw, 36px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #31a929;
  transition: transform .3s ease, background-color .3s ease;
}

.pagelinks_d3 a > .flex .moreicon i {
  color: #fff;
  font-size: clamp(12px, 1.4vw, 14px);
  transition: transform .3s ease;
}

.pagelinks_d3 a:hover > .flex .moreicon {
  transform: translateY(4px);
  background-color: #27911c;
}

.pagelinks_d3 a:hover > .flex .moreicon i {
  transform: translateY(1px);
}

/* ---------- 576px ---------- */
@media screen and (max-width: 576px) {
  .pagelinks_d3 {
    gap: 24px;
    flex-direction: column;
  }

  .pagelinks_d3 a > .flex .moreicon {
    width: 28px;
  }
}
.company_profile {
  position: relative;
  overflow: hidden;
}

.company_profile .company_profile__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  box-sizing: border-box;
}

.company_profile .company_profile__titlebox {
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 50px);
}

.company_profile .company_profile__en {
  color: #ff7019;
  letter-spacing: .12em;
  line-height: 1.2;
}

.company_profile .company_profile__jp {
  color: #222;
  margin-top: 12px;
  line-height: 1.4;
}

.company_profile .company_profile__card {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 86px) clamp(28px, 8vw, 150px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(31, 96, 28, .08);
  box-sizing: border-box;
}

.company_profile .company_profile__table {
  width: 100%;
}

.company_profile .company_profile__row {
  display: flex;
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(18px, 3vw, 26px) 0;
  border-bottom: 1px solid #d8e5d5;
  box-sizing: border-box;
}

.company_profile .company_profile__row:first-child {
  padding-top: 0;
}

.company_profile .company_profile__head {
  width: clamp(100px, 16vw, 190px);
  flex: 0 0 clamp(100px, 16vw, 190px);
  color: #222;
  font-weight: 500;
  line-height: 1.8;
}

.company_profile .company_profile__text {
  color: #222;
  line-height: 1.9;
}

.company_profile .company_profile__access {
  margin-top: clamp(36px, 5vw, 58px);
}

.company_profile .company_profile__access_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: clamp(22px, 3vw, 34px);
}

.company_profile .company_profile__access_title::before,
.company_profile .company_profile__access_title::after {
  content: "";
  height: 1px;
  flex: 1;
  background-image: linear-gradient(to right, #31a929 2px, transparent 2px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  opacity: .8;
}

.company_profile .company_profile__access_title p {
  color: #31a929;
  line-height: 1.4;
  white-space: nowrap;
}

.company_profile .company_profile__map {
  width: 100%;
  aspect-ratio: 2.35 / 1;
  overflow: hidden;
}

.company_profile .company_profile__map {
  width: 100%;
  aspect-ratio: 2.35 / 1;
  overflow: hidden;
}

.company_profile .company_profile__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 768px) {
  .company_profile .company_profile__map {
    aspect-ratio: 1.4 / 1;
  }
}
/* ---------- 768px ---------- */
@media screen and (max-width: 768px) {
  .company_profile .company_profile__card {
    padding: 34px 24px;
    border-radius: 14px;
  }

  .company_profile .company_profile__row {
    flex-direction: column;
    gap: 6px;
  }

  .company_profile .company_profile__head {
    width: 100%;
    flex-basis: auto;
    color: #31a929;
  }

  .company_profile .company_profile__map {
    aspect-ratio: 1.4 / 1;
  }
}
.company_profile--group .company_profile__en {
  color: #ff7019;
}

.company_profile--group .company_profile__card {
  padding: clamp(44px, 6vw, 86px) clamp(28px, 8vw, 120px);
}

.company_profile--group .company_profile__group {
  margin-bottom: clamp(56px, 8vw, 86px);
}

.company_profile--group .company_profile__group:last-child {
  margin-bottom: 0;
}

.company_profile--group .company_profile__group_title {
  color: #7acb5d;
  letter-spacing: .12em;
  line-height: 1.3;
  padding-bottom: 10px;
  margin-bottom: clamp(24px, 4vw, 36px);
  border-bottom: 1px solid #c8dcc4;
}

.company_profile--group .company_profile__group_text {
  color: #222;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.company_profile .company_profile__text a {
  color: #222;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.company_profile .company_profile__text a:hover {
  color: #31a929;
}

@media screen and (max-width: 768px) {
  .company_profile--group .company_profile__card {
    padding: 34px 24px;
  }

  .company_profile--group .company_profile__group {
    margin-bottom: 54px;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

