@charset "UTF-8";

/* =================================
   Company Intro
================================= */
.company-intro {
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("../img/top/feature-bg.jpg") center center / cover no-repeat;
}

.company-intro__lead {
  text-align: center;
  font-size: 1.5rem;
}

.company-intro__lead p + p {
  margin-top: 8px;
}

.company-intro__image {
  max-width: 640px;
  margin: 44px auto 0;
}

.company-intro__body {
  max-width: 730px;
  margin: 40px auto 0;
  font-size: 1.8rem;
}

.company-intro__body p + p {
  margin-top: 22px;
}

.company-intro__name {
  margin-top: 36px;
  text-align: right;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 700;
}

/* =================================
   Policy Block
================================= */
.section--policy {
  padding-top: 40px;
  padding-bottom: 0;
}

.policy-block__title {
  padding: 14px 24px;
  background: #d9d9d9;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}

.policy-block__body {
  margin-top: 18px;
  font-size: 1.8rem;
}

.policy-block__body ol {
  margin-top: 16px;
  padding-left: 1.5em;
  list-style: decimal;
}

.policy-block__body li + li {
  margin-top: 8px;
}

/* =================================
   Company Profile
================================= */
.company-profile__table {
  margin-top: 48px;
}

.profile-list {
  border-top: 1px solid #ddd;
}

.profile-list__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid #ddd;
}

.profile-list__head {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 16px 20px;
  font-size: 1.6rem;
  font-weight: 700;
}

/* 奇数行 */
.profile-list__row:nth-child(odd) .profile-list__head {
  background: #CEFF00;
}

.profile-list__row:nth-child(odd) .profile-list__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #CEFF00;
}

/* 偶数行 */
.profile-list__row:nth-child(even) .profile-list__head {
  background: #e0ffb9;
}

.profile-list__row:nth-child(even) .profile-list__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #e0ffb9;
}

.profile-list__body {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 16px 24px 16px 36px;
  font-size: 1.8rem;
}

/* =================================
   Company Access
================================= */
.company-access__map img {
  width: 100%;
}

.company-access__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 24px;
}

.company-access__name {
  font-size: 1.4rem;
  font-weight: 700;
}

.company-access__text {
  margin-top: 8px;
  font-size: 1.6rem;
}

/* =================================
   Responsive
================================= */
@media screen and (max-width: 767px) {
  .company-intro__lead,
  .company-intro__body {
    font-size: 1.8rem;
  }
	
	.company-intro__name {
  font-size: 2.2rem;
}

  .policy-block__title {
    font-size: 2.2rem;
  }

  .policy-block__body {
    font-size: 1.8rem;
  }

  .profile-list__row {
    grid-template-columns: 1fr;
  }

  .profile-list__head {
    min-height: auto;
    padding: 14px 16px;
  }
	
	.profile-list__row:nth-child(odd) .profile-list__head::after,.profile-list__row:nth-child(even) .profile-list__head::after {
    content: none;
  }
	
  .profile-list__body {
    min-height: auto;
    padding: 16px;
		font-size: 1.6rem;
  }

  .company-access__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}