@charset "UTF-8";
/**
 * font-size
 *
 * @param $fontSize
 */
/*--------------------------------------------------------------
  color
-------------------------------------------------------------- */
/*--------------------------------------------------------------
  break points
-------------------------------------------------------------- */
/*--------------------------------------------------------------
  media queries
-------------------------------------------------------------- */
/*--
  media queries
--*/
/*--------------------------------------------------------------
  font settings
-------------------------------------------------------------- */
/*--------------------------------------------------------------
  header-sec 共通
-------------------------------------------------------------- */
/*--------------------------------------------------------------
  contents Style共通
-------------------------------------------------------------- */
/*--------------------------------------------------------------
  Button Style共通
-------------------------------------------------------------- */
@keyframes fadein-bg {
  0% {
    opacity: 0.5;
    filter: grayscale(1);
  }
  100% {
    opacity: 1;
    filter: grayscale(0);
  }
}
@keyframes fadein-01 {
  0% {
    display: none;
    opacity: 0;
  }
  50% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein-02 {
  0% {
    display: none;
    opacity: 0;
  }
  50% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein-03 {
  0% {
    display: none;
    opacity: 0;
  }
  50% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero {
  position: relative;
  aspect-ratio: 100/63;
  color: #fff;
  padding: 80px 0;
  background-image: url("../images/main-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  background-attachment: fixed;
  animation: fadein-bg 1s ease-in 1 normal 0s;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero {
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    aspect-ratio: initial;
    padding: 80px 0;
    background-position: center top;
    background-size: cover;
    background-attachment: scroll;
  }
}
.hero__inner {
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero__inner {
    max-width: 520px;
  }
}
@media screen and (max-width: 767px) {
  .hero__inner {
    max-width: calc(100% - 60px);
  }
}
.hero__logo {
  display: block;
  width: 6.6%;
  max-width: 130px;
  margin-inline: auto;
  animation: fadein-03 5s ease 1 normal 0s;
}
.hero__top-text {
  font-weight: 100;
  font-size: 1.125rem;
  line-height: 2;
  padding: 0.25em 1em;
  margin: 0 0 0 12px;
  animation: fadein-01 3s ease-in 1 normal 0s;
  border-left: solid 4px #d5c9b5;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero__top-text {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .hero__top-text {
    font-size: 0.9375rem;
  }
}
.hero__middle-text {
  font-weight: 100;
  font-size: 4.75rem;
  margin: 50px 0 0;
  animation: fadein-02 3s ease-in 1 normal 0s;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero__middle-text {
    font-size: 2.25rem;
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .hero__middle-text {
    display: flex;
    flex-direction: column;
    font-size: 1.625rem;
    margin: 16px 0 0;
  }
}
.hero__bottom-text {
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.8;
  margin: 80px 0 0;
  text-align: center;
  animation: fadein-03 5s ease 1 normal 0s;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero__bottom-text {
    font-size: 0.875rem;
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .hero__bottom-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9375rem;
    margin: 30px 0 0;
  }
}
.hero__bottom-text .large-text {
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero__bottom-text .large-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .hero__bottom-text .large-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .hero__contact {
    max-width: 320px;
    margin-inline: auto;
  }
}
.hero__contact__body {
  display: none;
  width: 100%;
  max-width: 640px;
  padding: 30px 0 40px;
  margin-inline: auto;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .hero__contact__body {
    max-width: initial;
    padding: 30px 0;
  }
}
.hero__contact__iframe-wrapper {
  aspect-ratio: 16/49;
}
@media screen and (max-width: 767px) {
  .hero__contact__iframe-wrapper {
    aspect-ratio: 8/57;
  }
}
.hero__contact__iframe-wrapper iframe {
  width: 100%;
  height: 100%;
}
.hero__contact__red-text {
  color: #ff3333;
  text-align: center;
  padding: 0 20px;
}
.hero__button {
  display: block;
  width: 300px;
  height: auto;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.1rem;
  line-height: 66px;
  margin: 50px auto 60px;
  text-align: center;
  transition: 1s;
  border-radius: 33px;
  animation: fadein-03 5s ease 1 normal 0s;
  background-color: #8fc1cc;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero__button {
    margin: 20px auto 30px;
  }
}
@media screen and (max-width: 767px) {
  .hero__button {
    width: 86%;
    margin: 24px auto 30px;
  }
}
.hero__button.close {
  display: none;
}

.btween-cover {
  position: relative;
  z-index: 10;
  width: 100%;
  margin: -5% 0 0;
}

.about {
  display: flex;
  gap: 50px;
  flex-direction: column;
  align-items: center;
  padding: 0 0 100px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .about {
    gap: 40px;
  }
}
.about__image {
  max-width: 864px;
}
@media screen and (max-width: 767px) {
  .about__image {
    width: 90%;
    max-width: initial;
  }
}
.about__top-text {
  font-weight: 300;
  font-size: 2.5rem;
  color: #3e3a39;
  line-height: 1.7;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__top-text {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .about__top-text {
    font-size: 1.0625rem;
  }
}
.about__top-text__large-text {
  font-size: 2.8125rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__top-text__large-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .about__top-text__large-text {
    font-size: 1.375rem;
  }
}
.about__top-text__strong {
  font-weight: 400;
}
.about__middle-text {
  font-weight: 300;
  font-size: 2.25rem;
  color: #3e3a39;
  line-height: 1.7;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__middle-text {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .about__middle-text {
    font-size: 1.0625rem;
  }
}
.about__middle-text__large-text {
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__middle-text__large-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .about__middle-text__large-text {
    font-size: 1.375rem;
  }
}
.about__middle-text__strong {
  font-weight: 400;
}
.about__middle-text .mobile-line {
  display: none;
}
@media screen and (max-width: 767px) {
  .about__middle-text .mobile-line {
    display: block;
  }
}
.about__bottom-text {
  font-weight: 300;
  font-size: 2.25rem;
  color: #3e3a39;
  line-height: 1.7;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__bottom-text {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .about__bottom-text {
    font-size: 1.0625rem;
  }
}

.features__top-cover {
  position: relative;
  z-index: 1;
  width: 100%;
}
.features__image {
  width: 100%;
  margin: -50px 0 0;
}
@media screen and (max-width: 767px) {
  .features__image {
    margin: -25px 0 0;
  }
}
.features__body {
  background-color: #218ba4;
}
.features__body__top-cover {
  width: 100%;
  margin: -5% 0 0;
}
.features__body__bottom-cover {
  width: 100%;
  margin: 0 0 -5%;
}
.features__section {
  max-width: 1040px;
  color: #fff;
  padding: 0 40px;
  margin: 0 auto 50px;
}
.features__section__title {
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .features__section__title {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .features__section__title {
    font-size: 1.125rem;
  }
}
.features__section__text {
  font-weight: 400;
  font-size: 1.0625rem;
}
.features__section__text .small-text {
  display: block;
  font-size: 0.875rem;
  margin: 2em 0 0;
}
.features__link-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 66px;
  font-weight: 700;
  color: #218ba4;
  margin-inline: auto;
  border-radius: 33px;
  background-color: #fff;
}

.service__image {
  width: 100%;
  aspect-ratio: 1920/487;
  background-image: url(../images/image02.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service__image {
    aspect-ratio: 768/487;
  }
}
@media screen and (max-width: 767px) {
  .service__image {
    aspect-ratio: 1;
  }
}
.service__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .service__inner {
    grid-template-columns: 1fr;
  }
}
.service__section {
  position: relative;
  color: #fff;
  padding: 80px 75px 130px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service__section {
    padding: 80px 46px 130px;
  }
}
.service__section .point-image {
  position: absolute;
  bottom: 95%;
  display: block;
}
.service__section.cloud {
  background-color: #8fc1cc;
  background-image: url(../images/bg-image01.png);
  background-repeat: no-repeat;
  background-size: 24%;
  background-position: 88% 60px;
}
.service__section.cloud .point-image {
  left: 0;
  width: 78%;
  max-width: 340px;
  aspect-ratio: 68/31;
}
.service__section.promotion {
  background-color: #215f82;
  background-image: url(../images/bg-image02.png);
  background-repeat: no-repeat;
  background-size: 26%;
  background-position: 90% 70px;
}
.service__section.promotion .point-image {
  right: 0;
  width: 74%;
  max-width: 462px;
  aspect-ratio: 462/155;
}
.service__section__title {
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 30px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service__section__title {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .service__section__title {
    font-size: 1.125rem;
  }
}
.service__section__text {
  font-size: 1.0625rem;
}

.information {
  padding: 90px 40px;
  background-color: #efefef;
}
@media screen and (max-width: 767px) {
  .information {
    padding: 40px;
  }
}
.information__inner {
  max-width: 960px;
  padding: 50px;
  margin-inline: auto;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .information__inner {
    padding: 30px 18px;
  }
}
.information__title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #215f82;
  text-align: center;
  margin: 0 0 30px;
}
.information__wrapper {
  display: flex;
  flex-direction: column;
}
.information__item {
  border-bottom: 1px solid #efefef;
}
.information__item:first-of-type {
  border-top: 1px solid #efefef;
}
.information__item__link {
  display: grid;
  grid-template-columns: 160px 1fr;
  color: #215f82;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .information__item__link {
    gap: 16px;
    grid-template-columns: 1fr;
    padding: 16px 8px;
  }
}
.information__item__link .date,
.information__item__link .title {
  font-size: 1rem;
  color: #215f82;
}

/*# sourceMappingURL=front-page.css.map */
