@charset "utf-8";

/* ------------------
編集方針
--------------------- */
.header {
  display: none;
}

.heading {
  background: linear-gradient(to bottom, #0954ac, var(--main500-color));
  padding: 70px 20px 100px;
  position: relative;
  text-align: center;
}
.heading__main {
  color: var(--black0-color);
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
.heading__main:after {
  content: "";
  display: block;
  width: 50px;
  margin-top: 20px;
  border-top: 3px solid var(--main400-color);
}

.bg-text {
  color: #0590d3;
  font-family: var(--montserrat-font);
  font-size: 13rem;
  font-weight: 700;
  overflow: hidden;
  text-transform: uppercase;
  position: absolute;
  top: 30px;
  left: 5px;
  transform: translateY(-50%);
  animation: flowing 20s linear infinite;
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.concept {
  background-color: var(--main50-color);
  padding: 0 20px;
}

.concept__inner {
  background-color: var(--black0-color);
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 25px 20px 32px;
  position: relative;
  top: -40px;
  line-height: 1.75;
}

h2 {
  color: var(--main600-color);
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 12px;
}

h3 {
  color: var(--black950-color);
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 24px;
}

h4 {
  color: var(--main600-color);
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 16px;
}

p {
  color: var(--black950-color);
  font-size: 13px;
  padding-bottom: 24px;
}

.recommend_text {
  padding-left: 10px;
}

.ad_list {
  padding-bottom: 24px;
}
.ad_item {
  font-size: 14px;
  font-weight: bold;
}

.business_name {
  letter-spacing: -1.3px;
}

.link_web {
  position: relative;
}
.link_web span {
  padding-left: 4px;
  padding-right: 14px;
}
.link_web a {
  color: var(--main500-color);
  text-decoration: underline;
}
.link_web a:after {
  background-image: url(../img/btn_hp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 10px;
  height: 8px;
  position: absolute;
  top: 8px;
  right: auto;
}
@media all and (max-width: 557px) {
  .link_web a:after {
    top: 30px;
  }
}

.purpose_list {
  font-size: 13px;
  padding-bottom: 24px;
}
.purpose_list .purpose_item {
  padding-left: 1em;
  text-indent: -1em;
}
