body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-white);
  font-size: 1.6em;
  line-height: 2.4;
  text-align: left;
}

/* ===== Hero ===== */
.hero {
  padding-top: 7rem;
  margin-bottom: 70px;
  background-image: url(../../asset/image/top/hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero__catch {
  width: 90%;
  aspect-ratio: 16 / 8;
  max-width: 1300px;
  margin: 0px auto;
  background-image: url("../../asset/image/top/catch.png");
  background-position: right center;
  background-size: 50%;
  background-repeat: no-repeat;
}
.hero__catch h1 {
  display: none;
}
@media (max-width: 600px) {
  .hero {
    padding-top: 0;
    aspect-ratio: 389 / 575;
    background-image: url("../../asset/image/top/hero_sp.jpg");
    position: relative
  }
  .hero__catch {
  width: 100%;
  aspect-ratio: 16 / 8;
  max-width: 1300px;
  background-position: left center;
  background-size: 80%;
  }
}
/* ===== About ===== */
.about {
  background-image: url(../../asset/image/top/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 70px;
}
.about__inner {
  display: flex;
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
}
.about__heading {
  flex: 1;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-navy);
}
.about__body {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__text {
  font-size: 1.4rem;
  font-weight: 500;
  color: #07284F;
  line-height: 1.7;
}
.about__quote {
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #001738;
  line-height: 1.6;
}
.about_button a {
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
  background: linear-gradient(to right, #295BB6, #173D80);
  position: relative;
  display: flex;
  justify-content: space-around;
  max-width: 210px;
  padding: 3px 25px;
  margin-top: 30px;
  transition: 0.3s ease-in-out;
}
.about_button a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background-color: #fff;
  transition: 0.3s;
  pointer-events: none;
}
.about_button a:hover:after {
  right: -2.5em;
}
.about_button a:hover {
  text-decoration: none;
  opacity: 1;
  background: linear-gradient(to right, #295BB6, #295BB6);
}
@media (max-width: 800px) {
 .about {
  background-image: url(../../asset/image/top/bg_sp.jpg);
  }
  .about__inner {
  display: block;
}
  .about__heading {
  margin-bottom: 30px;
}
}
/* ===== Service ===== */
.service {
  padding: 80px 0 96px;
  background: var(--color-bg);
}
.service__contain {
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
}
.service h3 {
  font-size: 1.2rem;
  color: #173D80;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 20px;
}
.service h3::before {
  content: '';
  width: 60px;
  height: 1px;
  background-color: #1B3A6B;
}
.service__wraper {
  display: flex;
}
.service__img {
  margin-bottom: 10px;
}
.service__content {
  margin: 0 30px 0 0;
}
.service__title {
  text-align: center;
  position: relative;
}
.service__title a div span {
  font-size: 1.4rem;
  font-weight: 500;
  color: #173D80;
}
.service__title a div img {
  width: 25px;
  position: absolute;
  bottom: 0;
  right: 20px;
}
@media (max-width: 800px) {
  .service__wraper {
  display: block;
}
  .service__content {
  margin: 0 0 40px
    0;
}
  .service__title a div img {
  bottom: 7px;
}
  .service {
  padding: 60px 0 40px;
}
}