@charset "utf-8";
/* ページ内共通 */
.top_section {
  max-width: 1344px;
  width: 90%;
  margin: 0 auto var(--space-60);
}
@media print, screen and (min-width: 768px){
  .main {
    padding-top: 0;
  }
}

/* メインビジュアル */
.mv {
  width: 100%;
  aspect-ratio: 1040 / 500;
  padding: 2em 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: url(../img/mv.webp) no-repeat center;
  background-size: cover;
  @media screen and (max-width: 767px){
    padding: 3em 5% 120px;
  }
}
.mv_title {
  text-align: center;
  font-size: 4.8rem;
  font-weight: 900;
  color: var(--main-color);
  text-shadow: 0 0 20px #FFF;
  -webkit-text-stroke: #FFF 2px;
  paint-order: stroke;
  .mv_title--red {
    color: var(--sub-color);
  }
  @media screen and (max-width: 767px){
    font-size: 2.4rem;
    text-shadow: 0 0 8px #FFF;
  }
}
.mv_txt {
  max-width: 580px;
  width: 100%;
  padding: .4em 1em .6em;
  --opacity: 0.75;
  background: transparent linear-gradient(90deg, rgba(var(--darkblue-rgb), var(--opacity)) 0%, rgba(var(--thinblue-rgb), var(--opacity)) 100%);
  font-size: var(--font-24);
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  text-align: center;
  @media screen and (max-width: 767px){
    font-size: 1.6rem;
  }
}

/* PICK UP */
.pickup {
  width: 90%;
  padding: 1em 1.5em;
  display: flex;
  align-items: center;
  gap: 0.2em 1.5em;
  margin: 0 0 0 auto;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: 0px 0px 5px #b3b3b3;
  position: relative;
  @media screen and (max-width: 767px){
    width: 95%;
    flex-wrap: wrap;
    margin-bottom: -20px;
  }
}
.pickup_title {
  font-size: var(--font-24);
  font-weight: bold;
  color: var(--sub-color);
}
.pickup_txt {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.5em;
  font-weight: bold;
  a {
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: .1em;
    display: flex;
    gap: 0 1em;
    @media screen and (max-width: 767px){
      flex-direction: column;
    }
  }
  a:hover {
    border-bottom: none;
  }
}
.pickup .more_btn {
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  @media screen and (max-width: 767px){
    top: 1em;
    transform: translateY(0);
  }
}

/* AIO対策サービス */
.top_aio--main {
  background: url(../img/top_aio--bg.webp) no-repeat top center/cover;
  padding: 2em 3em;
  @media screen and (max-width: 767px){
    padding: 1em;
  }
}
.top_aio--img {
  display: flex;
  justify-content: center;
}
.top_aio--txt{
  font-weight: bold;
  margin-top: 1em;
}

/* デジタルベリーのこれまでの実績 */
.top_works--list {
  display: flex;
  justify-content: center;
  gap: 1em;
  @media screen and (max-width: 767px){
    flex-wrap: wrap;
  }
}
.top_result--item {
  padding: 1.5em;
  border: 3px solid var(--sky-blue);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  h3 {
    font-weight: bold;
    text-align: center;
    color: var(--subsub-color);
    padding-bottom: 1.2em;
    border-bottom: 1px solid #5CA9DD;
  }
}


/* TOPICS */
.topics_item {
  width: 100%;
  padding: 0.5em 1em 0.8em;
  border-bottom: 2px solid #EAEAEA;
  display: flex;
  align-items: center;
  gap: 0.2em 1em;
  h3 {
    font-weight: normal;
    line-height: 1.8;
  }
  a {
    text-decoration: underline;
  }
  a:hover {
    text-decoration: none;
  }
  &:first-of-type {
    padding-top: 0;
  }
  a:has(svg){
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  @media screen and (max-width: 767px){
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
}
.top_topics .more_btn02 {
  text-align: center;
  margin: 1.5em auto 0;
  a {
    display: inline-flex;
    padding: 0.5em 5em;
    background: linear-gradient(90deg, #7FD1E2 0%, #7FB8A3 100%);
    color: #000;
    border-radius: 20px;
    &::after {
      border-top: 2px solid #000;
      border-right: 2px solid #000;
    }
  }
}


