@charset "UTF-8";
html {
  font-size: 2.6666666667vw;
}

@media screen and (min-width: 769px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 10px;
  }
}
body {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.slideInBottom {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}

.slideInBottom.active {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 10.9rem;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
@media screen and (max-width: 768px) {
  .header {
    height: 7rem;
  }
}

.header__inner {
  width: 100%;
  max-width: 128rem;
  margin-inline: auto;
  padding-left: 1.4rem;
  padding-right: 2.4rem;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 8rem;
  }
}

.header__name {
  width: 28rem;
  height: 6rem;
}
@media screen and (max-width: 768px) {
  .header__name {
    width: 21.3rem;
    height: 4.6rem;
  }
}

.header__nav {
  height: 4.3rem;
}

.header__nav-items {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to right, #4371B6, #18328C);
  border-radius: 100vw;
  padding: 0 5rem;
  gap: 5.7rem;
}

.header__nav-item {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__nav-link {
  height: inherit;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.header__nav-link:hover {
  color: #B5D3FC;
  opacity: 1;
}

.hamburger {
  position: fixed;
  top: 2.65rem;
  right: 1.925rem;
  z-index: 9999;
  width: 2.55rem;
  height: 1.7rem;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  background-color: #18288D;
  width: 100%;
  height: 0.25rem;
  border-radius: 100vw;
  display: inline-block;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 0.75rem;
}

.hamburger span:nth-child(3) {
  top: 1.5rem;
}

.hamburger.is-active span:nth-child(1) {
  top: 8px;
  transform: rotate(-135deg);
  background-color: #fff;
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 8px;
  transform: rotate(135deg);
  background-color: #fff;
}

.drawer-menu {
  width: 23rem;
  height: 100vh;
  background-color: rgba(2, 11, 62, 0.9);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5000;
  display: none;
}

.drawer-menu__inner {
  width: 100%;
  display: flex;
  align-items: center;
  height: inherit;
  flex-direction: column;
}

.drawer-menu__items {
  padding-top: 11.1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__link {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  display: inline-block;
  width: 13rem;
  text-align: right;
  margin-bottom: 1.8rem;
}

.mv {
  margin-top: 15.4rem;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 7rem;
    height: 50.7rem;
  }
}

.mv__inner {
  width: 100%;
  max-width: 128rem;
  height: 44.6rem;
  margin-inline: auto;
  background-image: url(../img/mv.jpg);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    background-image: url(../img/mv_sp.jpg);
    background-position: top;
  }
}

.mv__wrap {
  padding-top: 10rem;
  padding-left: 12rem;
}
@media screen and (max-width: 768px) {
  .mv__wrap {
    padding-top: 32.6rem;
    padding-left: 1.9rem;
  }
}

.mv__title {
  font-size: 4.6rem;
  color: #18288D;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4130434783;
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 3rem;
    line-height: 1.3333333333;
  }
}

.mv__text {
  margin-top: 2.4rem;
  font-size: 1.7rem;
  color: #18288D;
  letter-spacing: 0.05em;
  line-height: 1.7647058824;
}
@media screen and (max-width: 768px) {
  .mv__text {
    margin-top: 1.7rem;
    font-size: 1.4rem;
    line-height: 2.1428571429;
  }
}

.solution {
  margin-top: -6rem;
  background-image: linear-gradient(to right, #4371B6, #18328C);
  clip-path: polygon(0 0, 100% 39%, 100% 98%, 0 59%);
  position: relative;
  max-width: 128rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .solution {
    margin-top: 0;
    clip-path: initial;
  }
}

.solution__content {
  display: flex;
}
@media screen and (max-width: 768px) {
  .solution__content {
    flex-direction: column;
  }
}

.solution__text-wrap {
  padding-top: 23rem;
  padding-left: 14rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .solution__text-wrap {
    padding-top: 4rem;
    padding-left: 2.4rem;
    width: 100%;
  }
}

.solution__img-wrap {
  padding-top: 20.5rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .solution__img-wrap {
    padding-top: 4rem;
    width: 100%;
  }
}

.solution__img {
  aspect-ratio: 670/892;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .solution__img {
    aspect-ratio: 375/320;
  }
}

.solution__title {
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .solution__title {
    font-size: 2.4rem;
  }
}

.solution__text {
  max-width: 42.8rem;
  width: 100%;
  line-height: 2.1428571429;
  margin-top: 3.2rem;
  font-size: 1.4rem;
  color: #fff;
  font-family: "Abel", sans-serif;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .solution__text {
    max-width: 32.7rem;
  }
}

.service {
  margin-top: -20rem;
}
@media screen and (max-width: 768px) {
  .service {
    margin-top: 0;
  }
}

.service__inner {
  max-width: 100rem;
  margin-inline: auto;
}

.service__wrap {
  max-width: 50rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service__wrap {
    margin-top: 5rem;
  }
}
.service__wrap::before {
  position: absolute;
  content: "";
  width: 22.8rem;
  height: 30.5rem;
  top: 14.4rem;
  right: -50rem;
  background-image: url(../img/bg_square_01.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .service__wrap::before {
    display: none;
  }
}

.service__wrap.service__wrap--reverse {
  margin-top: 1.5rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .service__wrap.service__wrap--reverse {
    margin-top: 6rem;
  }
}
.service__wrap.service__wrap--reverse::before {
  top: 19.1rem;
  left: -50rem;
  background-image: url(../img/bg_square_02.png);
}

.service__wrap.service__wrap--last {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .service__wrap.service__wrap--last {
    margin-top: 6rem;
  }
}
.service__wrap.service__wrap--last::before {
  top: 8.1rem;
  right: -50rem;
  background-image: url(../img/bg_square_01.png);
}

.service__wrap.service__wrap--reverse .service__title {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .service__wrap.service__wrap--reverse .service__title {
    text-align: left;
  }
}

.service__wrap.service__wrap--reverse .service__text {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .service__wrap.service__wrap--reverse .service__text {
    text-align: left;
  }
}

.service__title {
  font-size: 2.9rem;
  color: #18288D;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .service__title {
    font-size: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.service__text {
  margin-top: 1.8rem;
  font-size: 1.2rem;
  color: #18288D;
  line-height: 2.0833333333;
}
@media screen and (max-width: 768px) {
  .service__text {
    margin-top: 2.2rem;
    font-size: 1.4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    line-height: 2.1428571429;
    text-align: justify;
  }
}

.service__items {
  margin-top: 2rem;
  display: grid;
  column-gap: 2rem;
  row-gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .service__items {
    padding-left: 2rem;
    padding-right: 2rem;
    column-gap: 1.5rem;
    row-gap: 2rem;
  }
}

.service__wrap.service__wrap--reverse .service__items {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .service__wrap.service__wrap--reverse .service__items {
    margin-top: 2rem;
  }
}

.service__icon {
  width: 6rem;
  height: 6rem;
  margin-inline: auto;
}

.service__name {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 1.2rem;
  color: #18288D;
  font-family: "Abel", sans-serif;
}
@media screen and (max-width: 768px) {
  .service__name {
    margin-top: 2.3rem;
  }
}

@media screen and (max-width: 768px) {
  .service__name.service__name--middle {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 768px) {
  .service__name.service__name--small {
    font-size: 1rem;
  }
}

.service__img {
  margin-top: 3.5rem;
  aspect-ratio: 500/218;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .service__img {
    margin-top: 3rem;
    aspect-ratio: 375/218;
  }
}

.service__caption {
  margin-top: 3rem;
  font-size: 1.2rem;
  color: #18288D;
  text-align: right;
  font-family: "Abel", sans-serif;
  line-height: 2.0833333333;
}
@media screen and (max-width: 768px) {
  .service__caption {
    display: none;
  }
}

.strengths {
  padding-top: 19.2rem;
  padding-bottom: 14.2rem;
}
@media screen and (max-width: 768px) {
  .strengths {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.strengths__inner {
  max-width: 100rem;
  margin-inline: auto;
}

.strengths__title {
  margin-top: 1rem;
  font-size: 3.2rem;
  font-weight: 600;
  color: #18288D;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .strengths__title {
    font-size: 3rem;
    letter-spacing: 0;
  }
}

.strengths__title-img {
  width: 30rem;
  height: 6rem;
  margin-inline: auto;
}

.strengths__img {
  margin-top: 8rem;
  width: 100rem;
  height: 72rem;
}
@media screen and (max-width: 768px) {
  .strengths__img {
    margin-top: 2rem;
    width: 37.5rem;
    height: 100.3rem;
  }
}

.eco {
  padding-top: 10rem;
  padding-bottom: 19.7rem;
  background-image: url(../img/bg_eco.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .eco {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-image: url(../img/bg_eco_sp.jpg);
    background-position: top;
    background-size: contain;
  }
}

.eco__inner {
  max-width: 100rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .eco__inner {
    max-width: 33.5rem;
  }
}

.eco__title {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .eco__title {
    font-size: 3rem;
    letter-spacing: 0;
  }
}

.eco__text {
  margin-top: 5rem;
  font-size: 1.4rem;
  color: #fff;
  line-height: 2.1428571429;
}
@media screen and (max-width: 768px) {
  .eco__text {
    margin-top: 2.2rem;
    font-size: 1.4rem;
    line-height: 2.1428571429;
    text-align: justify;
  }
}

.eco__items {
  margin-top: 5rem;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .eco__items {
    margin-top: 3rem;
    flex-direction: column;
  }
}

.eco__item {
  background-color: #fff;
  padding: 2rem;
}

.eco__item-img {
  aspect-ratio: 450/250;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .eco__item-img {
    aspect-ratio: 295/250;
  }
}

.eco__item-title {
  margin-top: 2rem;
  font-size: 2.4rem;
  font-weight: 600;
  color: #18288D;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .eco__item-title {
    font-size: 2.2rem;
  }
}

.eco__item-text {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #18288D;
  line-height: 2.0833333333;
}
@media screen and (max-width: 768px) {
  .eco__item-text {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    line-height: 2.1428571429;
    text-align: justify;
  }
}

.about {
  background-image: linear-gradient(to right, #4371B6, #18328C);
  padding-top: 9rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.about__inner {
  max-width: 61rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .about__inner {
    max-width: 33.5rem;
  }
}

.about__title {
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .about__title {
    font-size: 3rem;
    letter-spacing: 0;
  }
}

.about__list {
  margin-top: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about__list {
    margin-top: 3.2rem;
  }
}

.about__term {
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 768px) {
  .about__term {
    letter-spacing: 0;
  }
}

.about__term:not(:first-child) {
  margin-top: 2.2rem;
}
@media screen and (max-width: 768px) {
  .about__term:not(:first-child) {
    margin-top: 3rem;
  }
}

.about__desc {
  margin-top: 1.2rem;
  font-size: 2rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .about__desc {
    margin-top: 0.85rem;
    font-size: 1.4rem;
  }
}

.about__desc span {
  color: #FF0090;
}

.about__contact {
  margin-top: 4.4rem;
  background-color: #232363;
  padding: 5rem 6rem 6rem 6rem;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .about__contact {
    padding: 5rem 2rem 6rem 2rem;
  }
}

.about__contact-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
}

.about__contact-text {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  line-height: 1.7857142857;
}

.about__contact-mail {
  margin-top: 4rem;
  text-align: center;
}

.about__contact-link {
  font-size: 2rem;
  color: #fff;
}

.footer {
  max-width: 128rem;
  margin-inline: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}
.footer::before {
  position: absolute;
  content: "";
  width: 23.7rem;
  height: 31.7rem;
  top: 0;
  left: 0;
  background-image: url(../img/bg_square_03.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .footer::before {
    display: none;
  }
}
.footer::after {
  position: absolute;
  content: "";
  width: 23.7rem;
  height: 31.7rem;
  top: 0;
  right: 0;
  background-image: url(../img/bg_square_01.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .footer::after {
    display: none;
  }
}

.footer__logo {
  width: 28rem;
  height: 6rem;
  margin-inline: auto;
}

.footer__certification {
  margin-top: 2rem;
  width: 9.8rem;
  height: 7.1rem;
  margin-inline: auto;
}

.footer__certification-text {
  margin-top: 1rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.footer__links {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer__links {
    margin-top: 3rem;
    flex-direction: column;
    align-items: center;
  }
}

.footer__link {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-block;
  color: #fff;
  width: fit-content;
  padding: 0.3rem 1.5rem;
  background-image: linear-gradient(to right, #4371B6, #18328C);
  border-radius: 100vw;
}

.footer__copyright {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #18288D;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */