@charset "utf-8";

/* +++++++++++++++++++++++++++++++

 style_top.css

+++++++++++++++++++++++++++++++ */


html {
  background: var(--white);
}
body {
  background: none;
}
.top_contents {
  position: relative;
  background: var(--white);
  z-index: 10;
}
.of_hidden {
  overflow: hidden;
}


/* announce
-----------------------------------*/
.announce__container {
  position:relative;
}
.announce__inner {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  padding: 20px 15px;
  text-align: center;
  background: #e7e8ee;
  z-index:20;
}
@media screen and (max-width: 1199px){
  .announce__inner {
    top: 80px;
  }
}
@media screen and (max-width: 768px){
  .announce__inner {
    text-align: left;
  }
}
@media screen and (max-width: 480px){
  .announce__inner {
    top:68px;
    font-size:1.4rem;
  }
}


/* main visual
-----------------------------------*/
.top-mainvisual__container {
  position: relative;
  width: 100%;
  height: calc(100vh + 500px);
}
.top-mainvisual__txt {
  position: -webkit-sticky;
  position: sticky;
  display: inline-block;
  top: 260px;
  margin-left: 4%;
  z-index: 20;
}
.top-mainvisual__txt h2 {
  display: inline-block;
  font-size: min(14vw, 15rem);
  line-height: .85em;
  font-family: var(--font-family-Helvetica-Bd);
  font-weight: 700;
  transition: .3s;
}
.top-animation__title {
  display: inline-block;
  opacity: 0;
}
.top-animation__title.is-active {
  opacity: 1;
}
@keyframes animate_top-title {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-animation__title.is-active span:nth-of-type(1) {
  animation: animate_top-title .8s forwards .2s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(2) {
  animation: animate_top-title .8s forwards .4s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(3) {
  animation: animate_top-title .8s forwards .6s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(4) {
  animation: animate_top-title .8s forwards .8s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(5) {
  animation: animate_top-title .8s forwards 1s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(6) {
  animation: animate_top-title .8s forwards 1.2s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(7) {
  animation: animate_top-title .8s forwards 1.4s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(8) {
  animation: animate_top-title .8s forwards 1.6s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(9) {
  animation: animate_top-title .8s forwards 1.8s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(10) {
  animation: animate_top-title .8s forwards 2s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(11) {
  animation: animate_top-title .8s forwards 2.2s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(12) {
  animation: animate_top-title .8s forwards 2.4s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(13) {
  animation: animate_top-title .8s forwards 2.6s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(14) {
  animation: animate_top-title .8s forwards 2.8s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(15) {
  animation: animate_top-title .8s forwards 3s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(16) {
  animation: animate_top-title .8s forwards 3.2s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(17) {
  animation: animate_top-title .8s forwards 3.4s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(18) {
  animation: animate_top-title .8s forwards 3.6s;
  opacity: 0;
}
.top-animation__title.is-active span:nth-of-type(19) {
  animation: animate_top-title .8s forwards 3.8s;
  opacity: 0;
}
.top-mainvisual__txt.is-in h2 {
  color: var(--pink);
}
@media screen and (max-width: 1199px) {
  .top-mainvisual__container {
    height: calc(100vh + 400px);
  }
}
@media screen and (max-width: 768px) {
  .top-mainvisual__container {
    height: calc(100vh + 300px);
  }
  .top-mainvisual__txt {
    top: 160px;
  }
}
@media screen and (max-width: 480px) {
  .top-mainvisual__container {
    height: calc(100vh + 200px);
  }
  .top-mainvisual__txt h2 {
    font-size: 16vw;
  }
}

/* video */
.video__container {
  position: absolute;
  top: 0;
  left: 20%;
  width: calc(100% - 20%);
  height: 100vh;
  overflow: hidden;
}
.video__container::before {
  content: '';
  display: block;
  padding-top: 100%;
}
.video__container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 1199px) {
  .video__container {
    left: 16%;
    width: calc(100% - 16%);
  }
}
@media screen and (max-width: 768px) {
  .video__container {
    left: 10%;
    width: calc(100% - 10%);
  }
}
@media screen and (max-width: 480px) {
  .video__container {
    left: 12%;
    width: calc(100% - 12%);
  }
}

/* video animation */
.video__container.is-active {
  animation: animate_video 3s 1.6s both;
  opacity: 0;
}
@keyframes animate_video {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* news */
.top-newslist__container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  padding: 26px;
  background: var(--white);
  z-index: 10;
}
.top-newslist__container dl {
  text-align: left;
  line-height: 1;
}
.top-newslist__container dl dt {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 0 10px;
}
.news-date {
  display: block;
  margin-right: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
}
.news-category__icon {
  display: block;
  padding: 2px 8px;
  font-size: 1.0rem;
  white-space: nowrap;
  background: var(--white);
  border: var(--border-black);
  border-radius: 30px;
}
.top-newslist__container dl dd {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 1.2rem;
  line-height: 1.2;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .top-newslist__container {
    width: 94%;
    padding: 14px 4%;
  }
}
@media screen and (max-width: 768px) {
  .top-newslist__container dl dd {
    display: block;
    line-height: 1.3;
  }
}


/* about
-----------------------------------*/
.top-about__container {
  position: relative;
  padding: 0 0 160px;
}
.top-about__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 10;
}
.top-about__container p {
  margin: 20px 0 0;
  font-size: 2.4rem;
  line-height: 2.6;
  font-weight: 700;
}
.top-about__link {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 60px 0 0;
}
.top-about__container a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 260px;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--white);
  background: var(--black);
  border: var(--border-black);
  border-radius: 60px;
  transition: .3s;
}
.top-about__container a::after {
  content: '\e5c8';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
}
.top-about__container a:hover {
  color: var(--black);
  background: none;
}

.top-about__container a + a {
  background: var(--pink);
  border: var(--border-pink);
}
.top-about__container a + a:hover {
  color: var(--pink);
}

@media screen and (max-width: 1399px) {
  .top-about__inner {
    max-width: 92%;
  }
}
@media screen and (min-width: 870px) {
  .top-about__container p br.top-about__pc {
    display: block;
  }
}
@media screen and (max-width: 869px) {
  .top-about__container p br.top-about__pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .top-about__container {
    padding: 0 0 100px;
  }
  .top-about__container p {
    font-size: 1.8rem;
    line-height: 2.2;
  }
  .top-about__link {
    justify-content: center;
    gap: 20px;
    margin: 40px auto 0;
  }
}


/* service
-----------------------------------*/
.top-service__container {
  position: relative;
  margin: 0 0 160px;
  padding: 80px 0 80px 50px;
  overflow: hidden;
}
.top-service__container::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  right: 100%;
  bottom: 50px;
  background: #EFEFEF;
  transition: 1.0s;
}
.top-service__container.is-bg::before {
  right: 20%;
}
.top-service__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1350px;
  margin: 0 auto;
}
.top-service__title {
  display: inline-block;
  margin: 0 0 0 80px;
}
.top-service__title h3 {
  position: relative;
  display: block;
  margin: 0 0 10px;
  font-size: clamp(3.4rem, 5vw, 6.0rem);;
  line-height: 1;
  font-weight: 700;
}
.top-service__title h3 p {
  display: block;
  margin: 0 0 10px;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-family-Helvetica-Bd);
  color: var(--pink);
}
.top-service__title > p {
  margin: 0 0 40px;
  font-size: 3.0rem;
  line-height: 1.2;
}
.top-service__title a {
  position: relative;
  display: block;
  max-width: 260px;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--black);
  border: var(--border-black);
  border-radius: 60px;
  transition: .3s;
}
.top-service__title a::after {
  content: '\e5c8';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
}
.top-service__title a:hover {
  color: var(--white);
  background: var(--black);
}
.top-service__box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.top-service__box a {
  width: 90%;
}
.top-service__box a:nth-of-type(1),
.top-service__box a:nth-of-type(3) {
  margin: 0 0 0 auto;
}
.top-service__item {
  position: relative;
  padding: 30px 70px;
  background: var(--white);
  transition: .3s;
}
.top-service__item::before {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: var(--black);
  border: var(--border-black);
  border-radius: 50%;
}
.top-service__item::after {
  content: '\e5c8';
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
  color: var(--white);
}
.top-service__box a:hover .top-service__item {
  box-shadow: 0 0 8px rgb(0 0 0 / 25%);
}
.top-service__box a:hover .top-service__item::before {
  background: none;
}
.top-service__box a:hover .top-service__item::after {
  color: var(--black);
}
.top-service__txt {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
}
.top-service__txt span {
  display: block;
  margin: 0 0 10px;
  font-size: 1.8rem;
  color: var(--pink);
}
@media screen and (max-width: 1399px) {
  .top-service__inner {
    max-width: 92%;
  }
}
@media screen and (max-width: 1199px) {
  .top-service__container {
    padding: 80px 0;
  }
}
@media screen and (max-width: 1059px) {
  .top-service__container.is-bg::before {
    top: 0;
    right: 10%;
  }
  .top-service__box {
    flex: none;
    width: 100%;
    order: 2;
  }
  .top-service__title {
    margin: 0 auto 50px 0;
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .top-service__container {
    margin: 0 0 100px;
    padding: 40px 0;
  }
  .top-service__box a {
    width: 100%;
  }
  .top-service__title h3 p {
    margin: 0 0 6px;
    font-size: 1.4rem;
  }
  .top-service__title > p {
    margin: 0 0 30px;
    font-size: 1.8rem;
  }
  .top-service__item {
    padding: 20px 6.5vw;
  }
}


/* strengths
-----------------------------------*/
.top-strengths__container {
  position: relative;
  margin: 0 0 160px;
  overflow: hidden;
}
.top-strengths__container::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 100%;
  right: 0;
  bottom: 30px;
  background: var(--gray-light);
  transition: 1.0s;
}
.top-strengths__container.is-bg::before {
  left: 20%;
}
.top-strengths__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.top-strengths__box {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex: 1;
}
.top-strengths__box a {
  width: 48%;
}
.top-strengths__box a:nth-of-type(2) {
  margin-top: 100px;
}
.top-strengths__item {
  position: relative;
  width: 100%;
  max-height: 560px;
  aspect-ratio: 4 / 6;
  overflow: hidden;
}
.top-strengths__txt {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  color: var(--white);
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 100%);
  z-index: 10;
  transition: .5s;
}
.top-strengths__txt::before {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.top-strengths__txt::after {
  content: '\e5c8';
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
  color: var(--white);
}
.top-strengths__txt span {
  display: block;
  margin: 0 0 20px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  font-family: var(--font-family-Helvetica-Bd);
  color: var(--pink);
}
.top-strengths__txt strong {
  display: block;
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  line-height: 1.2;
  font-family: var(--font-family-Helvetica-Bd);
}
.top-strengths__txt strong small {
  display: block;
  font-size: 2.0rem;
}
.top-strengths__txt p {
  font-size: clamp(1.8rem, 3.6vw, 3.6rem);
  line-height: 1;
  font-weight: 700;
}
.top-strengths__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: .3s;
}
a:hover .top-strengths__img {
  transform: scale(1.1);
}
.top-strengths__box a:nth-of-type(1) .top-strengths__img {
  background: url(/common/img/top/top_strong_bg01.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
.top-strengths__box a:nth-of-type(2) .top-strengths__img {
  background: url(/common/img/top/top_strong_bg02.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
.top-strengths__title {
  display: inline-block;
  margin: 0 80px 0 0;
}
.top-strengths__title h3 {
  position: relative;
  display: block;
  margin: 0 0 10px;
  font-size: clamp(3.4rem, 5vw, 6.0rem);;
  line-height: 1;
  font-weight: 700;
}
.top-strengths__title h3 p {
  display: block;
  margin: 0 0 10px;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-family-Helvetica-Bd);
  color: var(--pink);
}
.top-strengths__title > p {
  margin: 0 0 40px;
  font-size: 3.0rem;
  line-height: 1.2;
}
.top-strengths__title a {
  position: relative;
  display: block;
  max-width: 260px;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--black);
  border: var(--border-black);
  border-radius: 60px;
  transition: .3s;
}
.top-strengths__title a::after {
  content: '\e5c8';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
}
.top-strengths__title a:hover {
  color: var(--white);
  background: var(--black);
}
@media screen and (max-width: 1399px) {
  .top-strengths__inner {
    max-width: 92%;
  }
  .top-strengths__box a {
    width: 50%;
  }
}
@media screen and (max-width: 1059px) {
  .top-strengths__container::before {
    bottom: 40px;
  }
  .top-strengths__box {
    flex: none;
    width: 100%;
    margin-top: 40px;
    order: 2;
  }
  .top-strengths__box a:nth-of-type(2) {
    margin-top: 80px;
  }
  .top-strengths__title {
    order: 1;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .top-strengths__container {
    margin: 0 0 100px;
    padding: 0 0 50px;
  }
  .top-strengths__container::before {
    top: 5%;
    bottom: -50px;
  }
  .top-strengths__container.is-bg::before {
    left: 14%;
  }
  .top-strengths__box {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .top-strengths__box a:nth-of-type(2) {
    margin-top: 40px;
  }
  .top-strengths__txt::before,
  .top-strengths__txt::after {
    content: none;
  }
  .top-strengths__txt span {
    margin: 0 0 10px;
    font-size: 1.4rem;
  }
  .top-strengths__title {
    margin: 0 0 40px auto;
  }
  .top-strengths__title h3 p {
    margin: 0 0 6px;
    font-size: 1.4rem;
  }
  .top-strengths__title > p {
    margin: 0 0 30px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .top-strengths__txt {
    padding: 10px;
  }
}


/* business / personal
-----------------------------------*/
.top-user__container {
  position: relative;
  display: flex;
  gap: 4vw;
  width: 100%;
  max-width: 1770px;
  margin: 0 auto 140px;
  padding: 0 4vw;
}
.top-user__container a {
  display: block;
  width: 100%;
  max-width: 860px;
}
.top-user__item {
  position: relative;
  width: 100%;
  max-height: 450px;
  aspect-ratio: 86 / 45;
  overflow: hidden;
}
.top-user__txt {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  color: var(--white);
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 100%);
  z-index: 10;
  transition: .5s;
}
.top-user__txt::before {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.top-user__txt::after {
  content: '\e5c8';
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
  color: var(--white);
}
.top-user__txt > span {
  display: block;
  margin: 0 0 20px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  font-family: var(--font-family-Helvetica-Bd);
  color: var(--pink);
}
.top-user__txt p {
  font-size: clamp(2.4rem, 3.6vw, 4.8rem);
  line-height: 1;
  font-weight: 700;
}
.top-user__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: .3s;
}
a:hover .top-users__img {
  transform: scale(1.1);
}
.top-user__container a:nth-of-type(1) .top-user__img {
  background: url(/common/img/top/top_business.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
.top-user__container a:nth-of-type(2) .top-user__img {
  background: url(/common/img/top/top_personal.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top-user__container a {
    max-width: 50%;
  }
  .top-user__txt::before,
  .top-user__txt::after {
    content: none;
  }
  .top-user__txt {
    padding: 10px;
  }
  .top-user__txt > span {
    margin: 0 0 10px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .top-user__container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .top-user__container a {
    max-width: 100%;
  }
}


/* catalog
-----------------------------------*/
.top-catalog__container {
  position: relative;
  padding: 100px 0 140px;
  background: var(--white);
  overflow: hidden;
  transition: 2s;
  transition-delay: .3s;
}
.top-catalog__inner {
  width: 100%;
  max-width: 1770px;
  margin: 0 auto;
  padding: 0 4vw;
}
.top-catalog__inner h3 {
  position: relative;
  margin: 0 0 10px;
  font-size: clamp(3.4rem, 5vw, 6.0rem);
  line-height: 1;
  font-weight: 700;
}
.top-catalog__inner h3 p {
  margin: 0 0 10px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-family-Helvetica-Bd);
  color: var(--pink);
}
.top-catalog__inner > p {
  margin: 0 0 40px;
  font-size: 3.0rem;
  line-height: 1.2;
}
.top-catalog__inner a {
  position: relative;
  display: block;
  max-width: 260px;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  border: var(--border-black);
  border-radius: 60px;
  transition: .3s;
}
.top-catalog__inner a::after {
  content: '\e5c8';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
}
.top-catalog__inner a:hover {
  color: var(--white);
  background: var(--black);
}
@media screen and (max-width: 768px) {
  .top-catalog__container {
    padding: 80px 0;
  }
  .top-catalog__inner h3 p {
    font-size: 1.4rem;
  }
  .top-catalog__inner p {
    margin: 0 0 30px;
    font-size: 1.8rem;
  }
}

/* 背景色変更 */
.top-catalog__container.top-catalog__bg {
  background: var(--gray-light);
}

/* slide */
.catalog-loop__right {
  margin: 70px 0 30px;
}
.catalog-loop__right .swiper-wrapper,
.catalog-loop__left .swiper-wrapper {
  transition-timing-function: linear;
}
.catalog-loop__right .swiper-slide,
.catalog-loop__left .swiper-slide {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .catalog-loop__right {
    margin: 50px 0 20px;
  }
  .catalog-loop__right .swiper-slide,
  .catalog-loop__left .swiper-slide {
    width: 160px;
  }
}


/* company
-----------------------------------*/
.top-company__container {
  position: relative;
  display: flex;
  align-items: center;
  height: 60vh;
  overflow: hidden;
}
.top-company__container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(/common/img/top/top_company.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.top-company__container::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.4);
}
.top-company__inner {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.top-company__inner h3 {
  position: relative;
  margin: 0 0 40px;
  font-size: clamp(3.4rem, 5vw, 6.0rem);
  line-height: 1;
  font-weight: 700;
  color: var(--white);
}
.top-company__inner h3 p {
  margin: 0 0 10px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-family-Helvetica-Bd);
  color: var(--pink);
}
.top-company__inner a {
  position: relative;
  display: block;
  max-width: 260px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--white);
  border: var(--border-white);
  border-radius: 60px;
  transition: .3s;
}
.top-company__inner a::after {
  content: '\e5c8';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
}
.top-company__inner a:hover {
  color: var(--black);
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .top-company__container {
    height: 50vh;
  }
  .top-company__inner h3 {
    margin: 0 0 30px;
  }
  .top-company__inner h3 p {
    font-size: 1.4rem;
  }
}


/* news
-----------------------------------*/
.top-news__container {
  margin: 160px 0;
}
.top-news__container .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: visible;
}
.top-news__title {
  width: 30%;
  margin: 0 60px 0 0;
}
.top-news__title h3 {
  position: relative;
  font-size: clamp(3.4rem, 5vw, 6.0rem);
  line-height: 1;
  font-weight: 700;
}
.top-news__title h3 p {
  margin: 0 0 10px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-family-Helvetica-Bd);
  color: var(--pink);
}
a.top-news__link {
  position: relative;
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 70px 0 0;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  border: var(--border-black);
  border-radius: 60px;
  transition: .3s;
}
.top-news__link::after {
  content: '\e5c8';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
}
.top-news__link:hover {
  color: var(--white);
  background: var(--black);
}
.top-news__list {
  flex: 1;
}
.top-news__list dl {
  position: relative;
  padding: 20px 20px 20px 0;
  border-bottom: var(--border-black);
}
.top-news__list dl dt {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
  line-height: 1;
}
.top-news__list dl dt .news-date {
  display: block;
  margin-right: 10px;
  font-size: 1.6rem;
  font-weight: 700px;
  transition: .3s;
}
.top-news__list dl dt .news-category__icon {
  display: block;
  padding: 3px 8px;
  font-size: 1.1rem;
  background: var(--white);
  border: var(--border-black);
  border-radius: 30px;
  transition: .3s;
}
.top-news__list dl dd {
  font-size: 1.4rem;
  transition: .3s;
}
.top-news__list a:hover dl dt .news-category__icon {
  color: var(--white);
  background: var(--black);
  border: var(--border-black);
}
.top-news__list a:hover dd {
  color: var(--black);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .top-news__container {
    margin: 100px 0;
  }
  .top-news__title {
    width: 100%;
    margin: 0 0 30px
  }
  .top-news__title h3 p {
    font-size: 1.4rem;
  }
  a.top-news__link {
    margin: 40px auto 0;
  }
  .top-news__list {
    flex: none;
    width: 100%;
  }
  .top-news__list dl {
    padding: 14px;
  }
  .top-news__list dl dt {
    margin: 0 0 10px;
  }
  .top-news__list dl dt .news-date {
    font-size: 1.4rem;
  }
  .top-news__list dl dt .news-category__icon {
    padding: 2px 6px;
  }
  .top-news__link {
    margin-top: 40px;
  }
}
