@charset "utf-8";

:root {
  --base: #252525;
  --primary: #6294CE;
  --primary-light: #E6F1FF;
  --secondary: #59CEDE;
  --pink: #E5454E;
  --orange: #F05A19;
  --gray: #666;
  --border: #999;
}

/* mv */
.video-wrap {
  position: relative;
  font-size: 0;
}

.video-wrap video {
  width: 100%;
  height: 55vh;
  object-fit: cover;
}

.video-filter {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .1;
  width: 100%;
  height: 100%;
  background: url(../img/mv_filter.png);
  background-repeat: repeat;
}

.mv-catch {
  color: #fff;
  position: absolute;
  top: calc(60px + 5vh);
  padding: 0 24px;
  z-index: 1;
}

.mv-catch h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  text-shadow: 0 0 5px rgba(0, 0, 0, .3);
  line-height: 1.2;
}

.mv-catch p {
  font-size: 18px;
  margin-bottom: 24px;
  text-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

@media (min-width: 768px) {
  .mv-catch {
    left: 60px;
  }
}

@media (min-width: 1024px) {
  .video-wrap video {
    height: 85vh;
  }

  .mv-catch {
    top: 200px;
    left: 100px;
  }

  .mv-catch h1 {
    font-size: 60px;
    margin-bottom: 24px;
  }

  .mv-catch p {
    font-size: 20px;
    margin-bottom: 40px;
  }

}

/* heading */
h2 {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 36px;
  letter-spacing: .15rem;
}

h2 .h2-en {
  font-weight: 500;
  font-size: 18px;
  padding-left: 12px;
  position: relative;
  margin-bottom: 12px;
}

h2 .h2-en::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  position: absolute;
  left: 0;
  top: calc(50% - 6px);
}

h2 .h2-en::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  top: calc(50% + 2px);
}

h2 .h2-ja {
  font-weight: bold;
  font-size: 30px;
}

h3 {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 20px;
  padding-left: 18px;
  font-weight: bold;
  font-size: 24px;
  position: relative;
}

h3::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}

h3::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  position: absolute;
  left: 8px;
  top: -8px;
}

/*古いh3
h3 {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 12px;
}

h3 .h3-sm {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--gray);
}

h3 .h3-name {
  font-weight: bold;
  font-size: 22px;
} */

@media (min-width: 1024px) {
  h2 {
    margin-bottom: 80px;
  }

  h2 .h2-en {
    font-size: 20px;
    margin-bottom: 20px;
  }

  h2 .h2-ja {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
    margin-bottom: 48px;
  }
}

/* information */
.info {
  background: linear-gradient(0deg, #fff 0%, var(--primary-light) 60%);
  margin-bottom: 40px;
}

.info-inner {
  padding: 40px 24px 0;
  max-width: 1080px;
}

.info-item {
  display: block;
  margin: 8px 0;
}

.info-item-date {
  font-size: 12px;
  color: var(--gray);
}

.info-item-title {
  font-weight: bold;
  font-size: 14px;
}

.info-morebtn {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .info-item {
    display: flex;
    align-items: center;
    padding: 0 20px;
  }

  .info-item-date {
    width: 120px;
  }

  .info-morebtn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
}

@media (min-width: 1024px) {
  .info-inner {
    padding-top: 100px;
    margin: auto;
  }

  .info-item {
    padding: 0 100px;
  }

  .info-item-title {
    font-weight: bold;
    font-size: 16px;
  }

}

/* service */
.service {
  margin: 64px 0;
  padding: 0 24px;
  max-width: 1080px;
}

.service-item {
  margin-bottom: 30px;
}

.service-item-img {
  margin-bottom: 8px;
  position: relative;
}

/* .service-item-img::after {
  content: "";
  width: 100%;
  aspect-ratio: 1.5;
  position: absolute;
  right: -12px;
  top: 12px;
  background-color: var(--primary-light);
  z-index: -1;
} */

.service-item-img img {
  aspect-ratio: 1.5;
  object-fit: cover;
}

.service-item-title {
  font-size: 22px;
  font-weight: bold;
}

.service-item-text {
  margin-bottom: 16px;
}

.service-item-btn {
  margin-bottom: 60px;

  .btn {
    margin-inline: auto;
  }
}

@media (min-width: 768px) {
  .service-menu {
    display: flex;
    gap: 40px;
  }

  .service-item {
    margin-bottom: 0;
  }

  /* .service-item-img::after {
    right: -20px;
    top: 20px;
  } */
}

@media (min-width: 1024px) {
  .service {
    margin: 150px auto;

    h2 {
      margin-bottom: 60px;
    }
  }

  .service-menu {
    gap: 80px;
  }

  .service-item-text {
    margin-bottom: 24px;
  }

  .service-item-btn {
    margin-top: 20px;
  }
}

/* sdgs */
.sdgs {
  margin-bottom: 60px;
  padding: 32px 24px;
  max-width: 1080px;
  background-color: #EAF5EE;
  border-radius: 24px;
}

.sdgs-head {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}

.sdgs-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sdgs-text p {
  margin-bottom: 8px;
}

.sdgs-img {
  max-width: 200px;
  margin: 8px auto 16px auto;
}

@media (min-width: 1024px) {
  .sdgs {
    margin: 120px auto;
    padding: 60px;
  }

  .sdgs-head {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .sdgs-text {
    flex-direction: row;
    gap: 24px;
  }

  .sdgs-img {
    margin: 0;
  }
}


/* contact */
.contact {
  background-color: var(--primary-light);
}

.contact-inner {
  padding: 64px 24px;
  background-color: var(--primary-light);
}

.input_area .contact-lead {
  display: none;
}

.contact-lead {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .contact-inner {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .contact-head {
    position: absolute;
    left: 0;
    background-color: #fff;
    padding: 40px 68px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .contact-head h2 {
    margin-bottom: 0;
  }

  .contact-form {
    max-width: 680px;
    margin-left: 400px;
  }

  .contact-lead {
    max-width: 680px;
    margin-left: 400px;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .contact-form {
    width: 680px;
    margin-left: 20vw;
  }

  .contact-lead {
    width: 680px;
    margin-left: 20vw;
  }

  /* .form-zan {
    padding-left: 280px;
  } */
}