:root {
  --color-green: #58be57;
  --color-green-dark: #34883c;
  --color-text: #333;
  --container: 1000px;
}

:root {
  --color-green: #58be57;
  --color-green-dark: #34883c;
  --color-text: #333;
  --container: 1000px;
}

html {
  width: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  margin: 0;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  background: #fff;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

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

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

button,
input,
textarea {
  font: inherit;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.header__inner {
  width: calc(100% - 40px);
  max-width: 1200px;
  height: 78px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 44px;
}
.header__inner.l-container {
  max-width: 1200px;
}
.header__logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 310px;
      -ms-flex: 0 0 310px;
          flex: 0 0 310px;
  max-width: 310px;
}
.header__logo a {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.header__nav {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 40px;
}
.header__nav-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 8px 0;
  color: #202124;
  line-height: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #49BBBC;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.header__nav-link .ja {
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
}
.header__nav-link .en {
  color: #49BBBC;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.header__nav-link:hover {
  color: #349c9e;
}
.header__nav-link:hover::after {
  width: 100%;
}
.header__contact {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 156px;
  padding-left: 46px;
  border-left: 1px solid rgba(32, 33, 36, 0.18);
  line-height: 1.35;
}
.header__contact-tel, .header__contact-fax {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 6px;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.header__contact-tel .label, .header__contact-fax .label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
}
.header__contact-tel .num, .header__contact-fax .num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
}
.header__contact-tel {
  color: #49BBBC;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__contact-tel:hover {
  opacity: 0.7;
}
.header__contact-fax {
  margin-top: 6px;
  color: #202124;
}
.header__nav-item--sp-contact {
  display: none;
}
.header__hamburger {
  display: none;
  position: relative;
  z-index: 1002;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #49BBBC;
}
.header__hamburger span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.header__hamburger span:nth-child(1) {
  top: 14px;
}
.header__hamburger span:nth-child(2) {
  top: 21px;
}
.header__hamburger span:nth-child(3) {
  top: 28px;
}
.header.is-open .header__hamburger span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.header.is-open .header__hamburger span:nth-child(2) {
  opacity: 0;
}
.header.is-open .header__hamburger span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
@media screen and (max-width: 1000px) {
  .header {
    background: rgb(255, 255, 255);
  }
  .header__inner {
    height: 72px;
  }
  .header__logo {
    -webkit-flex-basis: 190px;
        -ms-flex-preferred-size: 190px;
            flex-basis: 190px;
    max-width: 190px;
  }
  .header__hamburger {
    display: block;
  }
  .header__contact {
    display: none;
  }
  .header__nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: calc(100dvh - 72px);
    background: rgb(255, 255, 255);
    -webkit-box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
            box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    -webkit-transition: none;
    transition: none;
  }
  .header.is-open .header__nav {
    display: block;
  }
  .header__nav-list {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 24px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
  }
  .header__nav-item {
    width: 100%;
  }
  .header__nav-link {
    position: relative;
    width: calc(100% - 64px);
    margin: 0 auto;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #d9ead9;
  }
  .header__nav-link::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 4px;
    left: auto;
    bottom: auto;
    width: 8px;
    height: 8px;
    border-top: 2px solid #49BBBC;
    border-right: 2px solid #49BBBC;
    background: transparent;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
  }
  .header__nav-link .ja {
    font-size: 1.6rem;
  }
  .header__nav-link .en {
    margin-top: 3px;
    font-size: 1.15rem;
  }
  .header__nav-link:hover::after {
    right: 0;
    width: 8px;
  }
  .header__nav-item--sp-contact {
    display: block;
    margin-top: 24px;
    background: rgba(73, 187, 188, 0.08);
  }
  .header__sp-contact {
    width: calc(100% - 64px);
    margin: 0 auto;
    padding: 24px 0 28px;
    border-radius: 0;
    background: transparent;
  }
  .header__sp-contact-tel, .header__sp-contact-fax {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 2;
  }
  .header__sp-contact-tel::before, .header__sp-contact-fax::before {
    content: "";
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 42px;
        -ms-flex: 0 0 42px;
            flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: url(../img/common/header/tel-icon.png) no-repeat center center/42px;
  }
  .header__sp-contact-tel .label, .header__sp-contact-fax .label {
    width: auto;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.8rem;
  }
  .header__sp-contact-tel .num, .header__sp-contact-fax .num {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
  }
  .header__sp-contact-tel {
    color: #49BBBC;
  }
  .header__sp-contact-fax {
    margin-top: 14px;
    color: #202124;
  }
  .header__sp-contact-fax::before {
    background: url(../img/common/header/fax-icon.png) no-repeat center center/42px;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 66px;
  }
  .header__logo {
    -webkit-flex-basis: 210px;
        -ms-flex-preferred-size: 210px;
            flex-basis: 210px;
    max-width: 210px;
  }
  .header__nav {
    top: 66px;
    height: calc(100dvh - 66px);
  }
  .header__nav-link, .header__sp-contact {
    width: calc(100% - 48px);
  }
  .header__nav-list {
    padding-top: 22px;
  }
}

.l-container {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin-inline: auto;
}

.site-wrapper {
  min-height: 100vh;
}

.section {
  padding: 104px 0 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 72px;
  }
}

.is-hidden {
  display: none !important;
}

.c-heading {
  margin: 0 auto 48px;
  text-align: center;
}
.c-heading--left {
  margin-left: 0;
  text-align: left;
}
.c-heading .en {
  margin-bottom: 6px;
  color: #49BBBC;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.03em;
}
.c-heading .ja {
  color: #49BBBC;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-heading {
    margin-bottom: 32px;
  }
  .c-heading .en {
    font-size: 3.8rem;
  }
}

.mv {
  position: relative;
  height: 100svh;
  overflow: hidden;
}
.mv__media, .mv__media picture, .mv__media img, .mv__media video {
  width: 100%;
  height: 100%;
}
.mv__media img, .mv__media video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.mv__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), color-stop(45%, rgba(0, 0, 0, 0.12)), to(rgba(0, 0, 0, 0.64)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.64) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.64) 100%);
}
.mv__content {
  position: absolute;
  left: 45%;
  bottom: 90px;
  z-index: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.55);
}
.mv__company {
  margin-bottom: 8px;
  font-size: clamp(2.6rem, 3vw, 4.2rem);
  font-weight: 700;
  line-height: 1.25;
}
.mv__copy {
  font-size: clamp(2.2rem, 2.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: 560px;
  }
  .mv__content {
    width: 100% !important;
    bottom: 58px;
    left: 50%;
  }
}

.about {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(48%, #fff), color-stop(56%, rgba(255, 255, 255, 0.78)), to(rgba(255, 255, 255, 0.1)));
  background: -webkit-linear-gradient(left, #fff 0%, #fff 48%, rgba(255, 255, 255, 0.78) 56%, rgba(255, 255, 255, 0.1) 100%);
  background: linear-gradient(90deg, #fff 0%, #fff 48%, rgba(255, 255, 255, 0.78) 56%, rgba(255, 255, 255, 0.1) 100%);
}
.about__inner {
  position: relative;
  display: grid;
  grid-template-columns: 43% 57%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 520px;
}
.about__text {
  position: relative;
  z-index: 2;
}
.about__lead {
  margin-bottom: 28px;
  color: #202124;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.08em;
}
.about__body {
  font-size: 1.45rem;
  line-height: 2.15;
}
.about__image {
  position: absolute;
  top: 0;
  right: max((100vw - 1000px) / -2, -20px);
  z-index: 1;
  width: min(62vw, 820px);
  height: 100%;
}
.about__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(27%, rgba(255, 255, 255, 0.82)), color-stop(55%, rgba(255, 255, 255, 0.16)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, #fff 0%, rgba(255, 255, 255, 0.82) 27%, rgba(255, 255, 255, 0.16) 55%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.82) 27%, rgba(255, 255, 255, 0.16) 55%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 1000px) {
  .about__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about__image {
    position: relative;
    right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    margin-top: 38px;
    border-radius: 4px;
    overflow: hidden;
  }
  .about__image::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding: 76px 0;
  }
  .about__lead {
    font-size: 2.9rem;
  }
  .about__body {
    font-size: 1.35rem;
    line-height: 2;
  }
}

.strengths {
  padding-bottom: 44px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8fbf8), to(#fff));
  background: -webkit-linear-gradient(top, #f8fbf8 0%, #fff 100%);
  background: linear-gradient(180deg, #f8fbf8 0%, #fff 100%);
}
.strengths__list {
  display: grid;
  gap: 18px;
}

.strength-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 250px;
  background: #fff;
  -webkit-box-shadow: 0 16px 40px rgba(31, 70, 38, 0.1);
          box-shadow: 0 16px 40px rgba(31, 70, 38, 0.1);
}
.strength-card__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30%;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.strength-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.strength-card:nth-child(1) .strength-card__image img {
  -o-object-position: center center;
     object-position: center center;
}
.strength-card:nth-child(2) .strength-card__image img {
  -o-object-position: center center;
     object-position: center center;
}
.strength-card:nth-child(3) .strength-card__image img {
  -o-object-position: center center;
     object-position: center center;
}
.strength-card__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 70%;
      -ms-flex: 1 1 70%;
          flex: 1 1 70%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 42px 54px;
}
.strength-card__icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 46px;
      -ms-flex: 0 0 46px;
          flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #49BBBC;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.strength-card__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.strength-card__text h3 {
  margin-bottom: 12px;
  color: #202124;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.strength-card__text p {
  font-size: 1.4rem;
  line-height: 2;
}
.strength-card__lead {
  margin-bottom: 12px;
  color: #349c9e;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .strength-card__body {
    padding: 32px 36px;
  }
}
@media screen and (max-width: 767px) {
  .strength-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
  .strength-card__image {
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
    width: 100%;
  }
  .strength-card__body {
    padding: 28px 24px;
    gap: 16px;
  }
  .strength-card__icon {
    -webkit-flex-basis: 40px;
        -ms-flex-preferred-size: 40px;
            flex-basis: 40px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .strength-card__text h3 {
    font-size: 2.3rem;
  }
}

.numbers {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: #fff;
}
.numbers::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 74%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(241, 250, 241, 0.62)), to(rgba(241, 250, 241, 0.1)));
  background: -webkit-linear-gradient(top, rgba(241, 250, 241, 0.62), rgba(241, 250, 241, 0.1));
  background: linear-gradient(180deg, rgba(241, 250, 241, 0.62), rgba(241, 250, 241, 0.1));
  pointer-events: none;
}
.numbers .l-container {
  position: relative;
  z-index: 1;
}
.numbers__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .numbers {
    padding: 72px 0;
  }
  .numbers__list {
    grid-template-columns: 1fr;
  }
}

.number-card {
  padding: 30px 20px;
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 0 16px 40px rgba(31, 70, 38, 0.1);
          box-shadow: 0 16px 40px rgba(31, 70, 38, 0.1);
}
.number-card__label {
  margin-bottom: 8px;
  color: #202124;
  font-size: 1.6rem;
  font-weight: 700;
}
.number-card__value {
  color: #49BBBC;
  line-height: 1;
}
.number-card__value span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 6.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.number-card__value small {
  margin-left: 8px;
  color: #202124;
  font-size: 1.8rem;
  font-weight: 700;
}

.history {
  padding: 92px 0 108px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8fbf8), to(#fff));
  background: -webkit-linear-gradient(top, #f8fbf8 0%, #fff 100%);
  background: linear-gradient(180deg, #f8fbf8 0%, #fff 100%);
}
.history__contents {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 56px;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
.history__list {
  display: grid;
  gap: 0;
  counter-reset: history;
}
.history__list li {
  position: relative;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 26px;
  padding: 0 0 26px 28px;
  border-left: 2px solid #d9ead9;
}
.history__list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #49BBBC;
}
.history__list li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}
.history__list time {
  color: #349c9e;
  font-weight: 700;
  line-height: 1.7;
}
.history__list span {
  color: #202124;
  line-height: 1.8;
}
.history__images {
  display: grid;
  gap: 18px;
}
.history__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  -webkit-box-shadow: 0 16px 40px rgba(31, 70, 38, 0.1);
          box-shadow: 0 16px 40px rgba(31, 70, 38, 0.1);
  background: #fff;
}
.history__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 1000px) {
  .history__contents {
    grid-template-columns: 1fr;
  }
  .history__images {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .history {
    padding: 72px 0;
  }
  .history__list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-left: 22px;
  }
  .history__images {
    grid-template-columns: 1fr;
  }
}

.company {
  padding-top: 86px;
}
.company__list {
  width: 100%;
  border-top: 1px solid #d9ead9;
}
.company__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid #d9ead9;
}
.company__item dt,
.company__item dd {
  padding: 18px 24px;
  font-size: 1.5rem;
  line-height: 1.7;
}
.company__item dt {
  color: #202124;
  font-weight: 700;
  border-right: 1px solid #d9ead9;
}
.company__item--certification dd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 116px;
}
.company__certification-logos {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.company__certification-logos img {
  width: 30%;
  max-width: 200px;
}
.company__map {
  width: 100%;
  margin-top: 40px;
  aspect-ratio: 1000/500;
  border: 1px solid rgba(73, 187, 188, 0.25);
  border-radius: 14px;
  overflow: hidden;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.company__map-frame {
  display: block;
  width: 100%;
  height: 100%;
}
.company__map-frame--sp {
  display: none;
}
.company__map-note {
  margin-top: 12px;
  color: #f6f8f6;
  font-size: 1.3rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .company {
    padding-top: 72px;
  }
  .company__item {
    grid-template-columns: 1fr;
  }
  .company__item dt {
    border-right: none;
    padding-bottom: 4px;
  }
  .company__item dd {
    padding-top: 0;
  }
  .company__item--certification dd {
    min-height: auto;
    padding-top: 12px;
  }
  .company__certification-logos {
    gap: 20px;
  }
  .company__map {
    margin-top: 28px;
    aspect-ratio: 1/1;
    border-radius: 10px;
  }
  .company__map-frame--pc {
    display: none;
  }
  .company__map-frame--sp {
    display: block;
  }
}

.contact__lead {
  margin-bottom: 24px;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form__row label {
  color: #202124;
  font-weight: 700;
}
.contact-form__row label span {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  color: #fff;
  background: #49BBBC;
  font-size: 1.1rem;
}
.contact-form__row input,
.contact-form__row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d9ead9;
  border-radius: 4px;
  background: #fff;
}
.contact-form__radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px;
}
.contact-form__check {
  text-align: center;
}
.contact-form__submit {
  width: min(100%, 320px);
  margin: 10px auto 0;
  padding: 16px 24px;
  border-radius: 999px;
  color: #fff;
  background: #49BBBC;
  font-weight: 700;
}
.contact-form__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
@media screen and (max-width: 767px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .contact-form__radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer {
  margin-top: 112px;
  padding: 58px 0 24px;
  color: #fff;
  background: -webkit-linear-gradient(315deg, #49BBBC 0%, #349c9e 100%);
  background: linear-gradient(135deg, #49BBBC 0%, #349c9e 100%);
}
.footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
}
.footer__brand {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer__logo {
  display: block;
  width: 240px;
  margin-bottom: 22px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.footer__company-name {
  margin-bottom: 14px;
  font-size: 1.7rem;
  font-weight: 700;
}
.footer__text {
  font-size: 1.35rem;
  line-height: 1.75;
}
.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 114px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 22px;
}
.footer__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.footer__nav-list a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__nav-list a:hover {
  opacity: 0.7;
}
.footer__copy {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 48px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 72px;
    padding: 44px 0 20px;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 34px;
  }
  .footer__logo {
    width: 210px;
  }
  .footer__nav {
    gap: 28px;
    padding-top: 0;
  }
  .footer__nav-list {
    gap: 12px;
  }
  .footer__nav-list a {
    font-size: 1.45rem;
  }
  .footer__copy {
    margin-top: 32px;
  }
}

.page-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 50;
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #49BBBC;
  border-radius: 50%;
  color: #49BBBC;
  background: #fff;
  font-size: 2rem;
  font-weight: 700;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-top:hover {
  color: #fff;
  background: #49BBBC;
}

.js-fadeHereTrigger,
.js-fadeUpTrigger,
.c-heading {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}

.is-show,
.c-heading.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.u-sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
  .u-sp-only {
    display: block;
  }
}/*# sourceMappingURL=styles.css.map */