@charset "utf-8";

.about {
  width: calc(100% - 2rem);
  max-width: 1020px;
  margin: auto;
}

.about-topLinks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: calc(100% - 30px);
  max-width: 1080px;
  margin: 0 auto clamp(80px, 8vw, 160px);
}
.about-topLinks__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.8;
  max-height: 320px;
  background-color: #333;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}
.about-topLinks__item::before {
  position: absolute;
  content: '→';
  left: 0;
  right: 0;
  top: 108px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  margin: auto;
  color: #fff;
  font-size: 30px;
}
.about-topLinks__item:hover {
  opacity: 0.7;
}
.about-topLinks__item#top-identity {
  background-image: url(https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/top-identity-bg.jpg);
}
.about-topLinks__item#top-profile {
  background-image: url(https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/top-profile-bg.jpg);
}
.about-topLinks__item#top-history {
  background-image: url(https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/top-history-bg.jpg);
}
.about-topLinks__item#top-partners {
  background-image: url(https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/top-partners-bg.jpg);
}
.about-topLinks__item--text {
  color: #fff;
  text-align: center;
}
.about-topLinks__item--text--en {
  display: block;
  margin-bottom: 15px;
  font-size: 28px;
  line-height: 1;
}
.about-topLinks__item--text--ja {
  display: block;
  font-size: 18px;
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .about-topLinks {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-topLinks__item {
    width: 100%;
    height: 320px;
    aspect-ratio: auto;
  }
}

.about-movie {
  margin-bottom: clamp(50px, 10vw, 160px);
  padding: 100px 0;
  background-color: #ebf1f9;
}
.about-movie__thumbnail {
  display: block;
  width: calc(100% - 30px);
  max-width: 860px;
  height: clamp(180px, 25vw, 360px);
  margin: 0 auto clamp(20px, 1.6vw, 40px);
  cursor: pointer;
  object-fit: cover;
}
.about-movie__modal--inner {
  width: calc(100% - 30px);
  max-width: 1080px;
}
.about-movie__text {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.about-movie__modal {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.8);
}
.about-movie__modal--iframe {
  max-width: 100%;
  height: clamp(270px, 30vw, 450px);
}
.about-movie__modal--close {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-align: right;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .about-movie__text {
    line-height: 1.6;
    font-weight: 500;
  }
}

.about-profile {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 30px);
  max-width: 860px;
  margin: 0 auto clamp(100px, 10vw, 160px);
}
.about-profile dt {
  width: 160px;
  padding: 26px 20px;
  line-height: 1;
  background-color: #ebf1f9;
  border-top: 1px solid #bbb;
  &:last-of-type {
    border-bottom: 1px solid #bbb;
  }
}
.about-profile dd {
  position: relative;
  width: calc(100% - 200px);
  padding: 20px 40px;
  font-size: 14px;
  line-height: 2;
  border-top: 1px solid #bbb;
  &:last-of-type {
    border-bottom: 1px solid #bbb;
  }
}
.about-profile dd ul {
  list-style: none;
  padding-left: 0;
}
.about-profile dd ul li {
  position: relative;
  padding-left: 20px;
  &:not(:last-child) {
    margin-bottom: 8px;
  }
  &::before {
    position: absolute;
    content: '◆';
    left: 0;
  }
}
.about-profile__flexbox {
  display: flex;
  gap: 24px;
}
.about-profile__flexbox--image {
  width: auto;
  height: 120px;
}
.about-profile__flexbox--content {
  line-height: 1.8;
}
.about-profile__flexbox--content ul li {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 960.1px) {
  .about-profile dd blockquote {
    position: absolute;
    right: 40px;
    bottom: 20px;
    font-size: 0.6em;
  }
}

@media screen and (max-width: 960px) {
  .about-profile__flexbox {
    display: grid;
    gap: 18px;
  }
  .about-profile dt {
    width: 84px;
    text-align: center;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    padding: 15px 8px;
  }
  .about-profile dd {
    width: calc(100% - 84px);
    padding: 15px;
    font-size: 14px;
    line-height: 23px;
  }
  .about-profile dd .hs-responsive-embed-wrapper {
    display: none !important;
  }
}

.about-profile .hs-responsive-embed {
  max-width: 100% !important;
  min-width: none !important;
}
.about-profile iframe {
  width: 100% !important;
  margin-top: 12px;
}
.about-profile a {
  color: #3a7ac2;
  text-decoration: underline;
}
.about-profile a:hover {
  opacity: 0.7;
}

.about-clients {
  width: calc(100% - 30px);
  max-width: 1080px;
  margin: auto;
}
.about-clients__text {
  line-height: 27px;
}
.about-clients__text.align-right {
  margin-top: 20px;
  padding-bottom: 8px;
  text-align: right;
}
.about-clients__logo {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 90px) clamp(40px, 8vw, 120px);
  margin-bottom: clamp(100px, 12vw, 160px);
  padding: clamp(40px, 5vw, 90px);
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
}
.about-clients__logo img {
  max-width: 100%;
  height: auto;
  max-height: 150px;
  margin: auto;
}

@media screen and (max-width: 960px) {
  .about-clients__logo {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-case {
  width: calc(100% - 30px);
  max-width: 880px;
  margin: clamp(50px, 5vw, 100px) auto 0;
}
.about-case__content {
  position: relative;
  margin-bottom: 100px;
  padding: 50px 0;
}
.about-case__content::before {
  position: absolute;
  content: '';
  left: -50px;
  top: 0;
  width: calc(100% + 100px);
  height: 100%;
  border: 1px solid #252525;
}
.about-case__content--title {
  font-size: 21px;
  color: #3a7ac2;
  margin-bottom: 12px;
}
.about-case__content--description {
  font-size: 18px;
  line-height: 2;
}
.about-case__content--description.mb-20 {
  margin-bottom: 20px;
}
.about-case__title {
  font-size: 21px;
  font-weight: 700;
  color: #3a7ac2;
  margin-bottom: 30px;
}
.about-case__item {
  margin-bottom: 100px;
}
.about-case__item--title {
  font-size: 21px;
  line-height: 1;
  margin-bottom: 30px;
  padding: 5px 20px;
  border-left: 3px solid #3a7ac2;
}
.about-case__item--image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.about-case__item--image.--mt {
  margin-top: 30px;
}
.about-case__item--text {
  font-size: 14px;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .about-case__content {
    position: relative;
    margin-bottom: 100px;
    padding: 20px 15px;
    border: 1px solid #252525;
  }
  .about-case__content--title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .about-case__content--description {
    font-size: 16px;
  }
  .about-case__content::before {
    position: relative;
    border: none;
  }
}

@media screen and (max-width: 750px) {
  .about-case__item--title {
    font-size: 18px;
    line-height: 24px;
  }
}

.about-founder {
  width: calc(100% - 30px);
  max-width: 1000px;
  margin: 0 auto clamp(100px, 10vw, 160px);
}
.about-founder__image {
  width: 100%;
  height: auto;
  margin-bottom: 60px;
}
.about-founder__title {
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1;
  margin-bottom: 30px;
  padding: 5px clamp(12px, 1vw, 20px);
  border-left: 3px solid #3a7ac2;
}
.about-founder__history {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.about-founder__history dt {
  width: 96px;
  font-weight: 700;
  line-height: 2;
}
.about-founder__history dd {
  width: calc(100% - 96px);
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .about-founder__history dt {
    width: 100%;
  }
  .about-founder__history dd {
    width: 100%;
  }
  .about-founder__history dd:not(:last-of-type) {
    margin-bottom: 30px;
  }
}

.about-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: calc(100% - 30px);
  max-width: 1000px;
  margin: auto;
}
.about-links__sustainability {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: calc(100% - 30px);
  max-width: 720px;
  margin: auto;
}
.about-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 135px;
  border-radius: 5px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-weight: 700;
  background-color: #3a7ac2;
}
.about-links__item:hover {
  opacity: 0.7;
}
.about-links__item span {
  position: relative;
  padding-right: 32px;
  font-size: 18px;
}
.about-links__item span::before {
  position: absolute;
  content: '→';
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.about-links__item#identity {
  background-image: url(https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/identity-bg.jpg);
}
.about-links__item#profile {
  background-image: url(https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/profile-bg.jpg);
}
.about-links__item#history {
  background-image: url(https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/history-bg.jpg);
}
.about-links__item#clients {
  background-image: url(https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/clients-bg.jpg);
}

@media screen and (max-width: 960px) {
  .about-links {
    grid-template-columns: repeat(1, 1fr);
  }
}

.about-buttonLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 45px;
  margin: 50px auto 0;
  background-color: #0766f4;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
}
.about-buttonLink span {
  position: relative;
  padding-right: 40px;
}
.about-buttonLink span::before {
  position: absolute;
  content: '→';
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: auto;
  font-size: 24px;
  font-weight: 400;
}
.about-buttonLink:hover {
  background-color: #006cca;
}

.about-message {
  width: calc(100% - 30px);
  max-width: 860px;
  margin: 0 auto 30px;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 2.25;
  color: #3a7ac2;
}
.about-text {
  width: calc(100% - 30px);
  max-width: 860px;
  margin: 0 auto 50px;
}
.about-text p {
  line-height: 2;
}

.top-fv {
  margin-top: 70px;
}
.top-fv__image img {
  display: block;
  width: calc(100% - 60px);
  height: 520px;
  max-height: calc(30vw - 18px);
  margin: auto;
  object-fit: cover;
}
.top-fv__message img {
  display: block;
  width: 60vw;
  max-width: 1200px;
  margin: -60px auto 60px;
}
.top-fv__logo {
  display: block;
  min-width: 42vw;
  width: 840px;
  max-width: 45vw;
  margin: 0 auto clamp(60px, 6vw, 120px);
}

@media screen and (max-width: 960px) {
  .top-fv {
    margin-top: 54px;
  }
  .top-fv__image img {
    width: calc(100% - 30px);
    height: 480px;
    max-height: none;
  }
  .top-fv__message img {
    width: calc(100% - 30px);
    margin: 25px auto 36px;
  }
  .top-fv__logo {
    display: block;
    min-width: auto;
    width: 480px;
    max-width: calc(100% - 30px);
    margin: 0 auto clamp(100px, 10vw, 160px);
  }
}

.top-aboutus__cover {
  width: calc(100% - 60px);
  height: 300px;
  margin: auto;
  background-image: url("https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/top-aboutus.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top-aboutus__text {
  width: calc(100% - 30px);
  max-width: 840px;
  margin: clamp(30px, 4vw, 60px) auto clamp(60px, 7.5vw, 90px);
  font-size: 21px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .top-aboutus__cover {
    width: calc(100% - 30px);
    background-image: url("https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/top-aboutus-sp.png");
  }
  .top-aboutus__text {
    width: calc(100% - 60px);
    font-size: 18px;
    text-align: left;
  }
}

.top-clients {
  padding: clamp(30px, 3vw, 60px) 0;
  background-color: #EBF1F9;
}
.top-clients__desription {
  width: calc(100% - 30px);
  max-width: 720px;
  margin: 0 auto 50px;
  line-height: 27px;
  text-align: center;
}

.top-clients__logo {
  display: flex;
  overflow: hidden;
  gap: 48px;
}
.top-clients__logo--slider {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: slide 100s infinite linear 0.1s both;
}
/*
.top-clients__logo--slider img {
  max-width: 200px;
  max-height: 120px;
}*/

@keyframes slide {
  0% {
    transform: translateX(48px);
  }
  100% {
    transform: translateX(-100%);
  }
}

.top-news {
  padding: clamp(60px, 6vw, 120px) 0;
}


.top-news__results {
  display: grid;
  width: calc(100% - 30px);
  max-width: 960px;
  margin: auto;
}
.top-news__results__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 75px;
  padding: 0 30px;
  border-top: 1px solid #bbb;
  box-sizing: border-box;
}
.top-news__results__item:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 960px) {
  .top-news__results__item {
    height: auto;
    padding: 18px 12px;
  }
}
.top-news__results__item:last-child {
  border-bottom: 1px solid #bbb;
}
.top-news__results__item--date {
  width: 144px;
  font-size: 14px;
}
.top-news__results__item--category {
  margin-right: 15px;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  background-color: #999;
}
.top-news__results__item--title {
  font-size: 14px;
}

@media screen and (max-width: 960px) {
  .top-news__results__item--title {
    width: 100%;
    margin-top: 12px;
  }
}


.top-topics {
  margin-top: 60px;
  padding-bottom: clamp(60px, 6vw, 120px);
  overflow-x: hidden;
}
.top-topics__inner {
  width: calc(100% - 30px);
  max-width: 1200px;
  margin: auto;
  overflow: visible !important;
}

@media screen and (max-width: 960px) {
  .top-topics__inner {
    margin-top: 20px;
  }
  .top-topics__inner__wrapper {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.top-topics__item {
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
}
.top-topics__item:hover > .top-topics__item--image > img {
  transform: scale(1.2);
}
.top-topics__item--image {
  overflow: hidden;
}
.top-topics__item--image img {
  width: 100%;
  aspect-ratio: 1.9;
  object-fit: cover;
  transition: all 2s;
}
.top-topics__item--lower {
  padding: 20px;
}
.top-topics__item--info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.top-topics__item--info--date {
  width: 72px;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
}
.top-topics__item--info--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: calc(100% - 72px);
}
.top-topics__item--info--tags span {
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
}
.top-topics__item--info--tags span.type {
  background-color: #3a7ac2;
}
.top-topics__item--info--tags span.tag {
  background-color: #999;
}
.top-topics__item--title {
  font-size: 18px;
  font-weight: 700;
}
.top-topics__item--excerpt {
  margin-top: 10px;
  line-height: 27px;
}
.top-topics__item--detail {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.top-topics__item--detail dt {
  width: 70px;
  font-size: 14px;
  line-height: 27px;
  color: #3a7ac2;
  font-weight: 700;
}
.top-topics__item--detail dd {
  width: calc(100% - 70px);
  font-size: 14px;
  line-height: 27px;
}
.top-topics__inner__wrapper {
  align-items: stretch!important;
}
.top-topics__item {
  height: auto!important;
}

@media screen and (max-width: 960px) {
  .top-topics__item:nth-child(n + 4) {
    display: none;
  }
}

.top-buttonLink__wrapper {
  display: flex;
  gap: 30px;
  max-width: 534px;
  margin: auto;
}
.top-buttonLink__wrapper.--center {
  justify-content: center;
}
/*
.top-buttonLink__wrapper .top-buttonLink {
  margin-right: 0;
}
  */

@media screen and (max-width: 600px) {
.top-buttonLink__wrapper {
  display: grid; 
  gap: 30px;
  justify-content: center;
}
.top-buttonLink__wrapper .top-buttonLink:last-child {
  margin-top: 0;
}
}
.top-buttonLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 45px;
  margin: 50px auto 0;
  background-color: #0766f4;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
  transition: all .3s;
  cursor: pointer;
}
.top-buttonLink.mt-0 {
  margin-top: 0;
}
.top-buttonLink.--long {
  width: 330px;
}
@media screen and (min-width: 960.1px) {
  .top-buttonLink.--box {
    width: 252px;
    margin-left: 0;
  }
}
.top-buttonLink span {
  position: relative;
  padding-right: 40px;
}
.top-buttonLink span::before {
  position: absolute;
  content: '→';
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: auto;
  font-size: 24px;
  font-weight: 400;
}
.top-buttonLink:hover {
  background-color: #006cca;
}

.top-career {
  display: flex;
  align-items: center;
  width: calc(100% - 60px);
  height: 450px;
  margin: 0 auto clamp(60px, 6vw, 120px);
  background-image: url("https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/top-career-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.top-career__inner--wrapper {
  width: calc(100% - 30px);
  max-width: 1080px;
  height: 100%;
  margin: auto;
}
.top-career__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 480px;
  height: 100%;
  padding: 0 30px;
  background-color: rgba(255, 255, 255, 0.8);
}

.top-career__inner--content__message {
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.4;
  font-weight: 700;
  color: #3A7AC2;
}
.top-career__inner--content__detail {
  font-size: 14px;
  line-height: 24px;
  margin-top: 20px;
  padding-right: 30px;
}

@media screen and (max-width: 960px) {
  .top-career__section {
    margin-bottom: 40px;
  }
  .top-career {
    position: relative;
    align-items: flex-start;
    width: calc(100% - 30px);
    padding-top: 300px;
    padding-bottom: 100px;
    background: none;
  }
  .top-career::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 270px;
    background-image: url("https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/top-career-bg-sp.png");
    background-size: cover;
    background-position: center;
  }
  .top-career__inner--wrapper {
    height: auto;
  }
  .top-career__inner {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: transparent
  }
  .top-career__inner--content__detail {
    padding-right: 0;
  }
}

.top-service__text {
  font-size: 18px;
  line-height: 2;
  color: #3A7AC2;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .top-service__text {
    width: calc(100% - 30px);
    margin: auto;
    font-size: 16px;
    text-align: left;
  }
}

.service-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: calc(100% - 30px);
  max-width: 1320px;
  margin: 60px auto 0;
}

@media screen and (max-width: 960px) {
  .service-links {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    max-width: 480px;
  }
}

.service-links.--single {
  grid-template-columns: repeat(1, 1fr);
  max-width: 348px;
}
.service-links__sustainability {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: calc(100% - 30px);
  max-width: 720px;
  margin: auto;
}
.service-links__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 135px;
  border-radius: 5px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  font-weight: 700;
  background-color: #3a7ac2;
}
.service-links__item::before {
  position: absolute;
  z-index: 2;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.service-links__item--text {
  position: relative;
  z-index: 3;
}
.service-links__item:hover {
  opacity: 0.7;
}
.service-links__item span {
  position: relative;
  padding-right: 32px;
  font-size: 18px;
}
.service-links__item span::before {
  position: absolute;
  content: '→';
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.service-links__item#strategy {
  background-image: url(https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/service-strategy-bg.jpg);
}
.service-links__item#bpr {
  background-image: url(https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/service-bpr-bg.jpg);
}
.service-links__item#digital {
  background-image: url(https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/service-digital-bg.jpg);
}
.service-links__item#marketing {
  background-image: url(https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/service-marketing-bg.jpg);
}

.top-service {
  display: flex;
  align-items: center;
  width: calc(100% - 60px);
  height: 450px;
  margin: 0 auto clamp(100px, 8vw, 160px);
  background-image: url("https://242357644.fs1.hubspotusercontent-na2.net/hubfs/242357644/top-service-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.top-service__inner--wrapper {
  width: calc(100% - 30px);
  max-width: 1080px;
  height: 100%;
  margin: auto;
}
.top-service__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 600px;
  height: 100%;
  padding: 0 30px;
  background-color: rgba(255, 255, 255, 0.8);
}

.top-service__inner--content__message {
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.4;
  font-weight: 700;
  color: #3A7AC2;
}
.top-service__inner--content__detail {
  font-size: 14px;
  line-height: 24px;
  margin-top: 20px;
  padding-right: 30px;
}

@media screen and (max-width: 960px) {
  .top-service {
    position: relative;
    align-items: flex-start;
    width: calc(100% - 30px);
    padding-top: 300px;
    padding-bottom: 240px;
    background: none;
  }
  .top-service::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 270px;
    background-image: url("https://243071680.fs1.hubspotusercontent-na2.net/hubfs/243071680/top-service-bg-sp.png");
    background-size: cover;
    background-position: center;
  }
  .top-service__inner--wrapper {
    height: auto;
  }
  .top-service__inner {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: transparent
  }
  .top-service__inner--content__detail {
    padding-right: 0;
  }
}


.service-topics__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: calc(100% - 2rem);
  max-width: 960px;
  margin: auto;
}

@media screen and (max-width: 960px) {
  .service-topics__contents {
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-topics__contents__item {
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
  cursor: pointer;
}
.service-topics__contents__item:hover
  > .service-topics__contents__item--image
  > img {
  transform: scale(1.2);
}
.service-topics__contents__item--image {
  overflow: hidden;
}
.service-topics__contents__item--image img {
  width: 100%;
  aspect-ratio: 1.9;
  object-fit: cover;
  transition: all 2s;
}
.service-topics__contents__item--lower {
  padding: 20px 15px;
}
.service-topics__contents__item--info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.service-topics__contents__item--info--date {
  width: 72px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
}
.service-topics__contents__item--info--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: calc(100% - 72px);
}
.service-topics__contents__item--info--tags span {
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background-color: #999;
  font-weight: 700;
  border-radius: 5px;
}
.service-topics__contents__item--title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}
.service-topics__contents__item--excerpt {
  font-size: 14px;
  line-height: 24px;
}

.content-footer {
  margin-top: clamp(60px, 6vw, 120px);
  margin-bottom: -30px;
  padding: 60px 0 30px;
  background-color: #ebf1f9;
}
.content-footer__logo {
  display: block;
  width: calc(100% - 30px);
  max-width: 720px;
  margin: 0 auto 30px;
}
.content-footer__text {
  width: calc(100% - 30px);
  text-align: center;
  margin: auto;
  font-size: 16px;
  line-height: 27px;
}

.top-button {
  margin-top: 40px!important;
}
