@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap);
/*font-family: 'M PLUS Rounded 1c', sans-serif;*/
* {
  box-sizing: border-box;
}

/*************************
* base
**************************/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
}
@media (max-width: 780px) {
  body {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 1.2rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

section {
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  a:hover {
    opacity: 0.5;
    transition: 0.4s;
  }
}
/*************************
* fadein
**************************/
/*scroll fadein*/
.fadein {
  opacity: 0;
  transform: translateY(100px);
}

.fadein_appear {
  animation: fadein-appear 1s ease forwards;
}
@keyframes fadein-appear {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.fadeInHook {
  opacity: 0;
}

.fadeInHook.fadeInOn {
  opacity: 1;
  transition: 1s;
}

/*************************
* レスポンシブ
**************************/
.pc_content {
  display: block;
}
@media (max-width: 780px) {
  .pc_content {
    display: none;
  }
}

.sp_content {
  display: none;
}
@media (max-width: 780px) {
  .sp_content {
    display: block;
  }
}

.pc_br {
  display: initial;
}
@media (max-width: 780px) {
  .pc_br {
    display: none;
  }
}

.sp_br {
  display: none;
}
@media (max-width: 780px) {
  .sp_br {
    display: initial;
  }
}

.top-midashi {
  font-size: 44px;
  font-family: "Outfit", sans-serif;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media (max-width: 780px) {
  .top-midashi {
    font-size: 30px;
  }
}
.top-midashi .top-midashi-en {
  display: block;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 5px;
}
@media (max-width: 780px) {
  .top-midashi .top-midashi-en {
    font-size: 12px;
  }
}

/*************************
* base button
**************************/
.btn {
  height: 60px;
  width: 320px;
  max-width: 90%;
  margin: auto;
  border-radius: 25px;
  border: 2px solid #3c5f98;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 780px) {
  .btn {
    width: 300px;
  }
}
.btn::before {
  content: "";
  width: 0;
  height: 100%;
  background-image: none;
  background-color: #3c5f98;
  position: absolute;
  left: 0;
  top: 0;
  animation: btn-arrow-re 0.5s ease forwards;
}
@keyframes btn-arrow-re {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.btn::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 5px;
  height: 45px;
  width: 45px;
  background-image: url(../images/top/btn-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn .link {
  height: 100%;
  width: 100%;
  color: #3c5f98;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2em;
  position: relative;
}
@media (max-width: 780px) {
  .btn .link {
    font-size: 14px;
  }
}
@media (min-width: 780px) {
  .btn:hover {
    border: 2px solid #fff;
    transition: 0.3s all;
    opacity: 1;
  }
  .btn:hover::before {
    content: "";
    width: 100%;
    animation: btn-arrow 0.5s ease forwards;
  }
  @keyframes btn-arrow {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  .btn:hover .link {
    opacity: 1;
    color: #fff;
  }
}

/*****************
*
* top
*
******************/
.toppage .top-fv2 {
  padding: 0;
  position: relative;
  width: 100vw;
  margin: 0px calc(50% - 50vw) 0px;
  min-height: 700px;
  height: 100vh;
  background-image: url(../images/top2/fv-bg02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 780px) {
  .toppage .top-fv2 {
    background-image: url(../images/top2/sp-fv-bg.jpg);
  }
}
.toppage .top-fv2 .top-fv__inner {
  width: 1000px;
  max-width: 96%;
  margin: 0px auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.toppage .top-fv2 .top-fv__inner .fv-textarea {
  margin-bottom: 100px;
  overflow: hidden;
}
.toppage .top-fv2 .top-fv__inner .fv-textarea .fv-midashi {
  font-size: 75px;
  font-family: "Outfit", sans-serif;
  text-align: center;
  margin: 0 auto 15px;
  text-shadow: 0px 1px 4px #ffffff;
  line-height: 1.45;
}
@media (max-width: 780px) {
  .toppage .top-fv2 .top-fv__inner .fv-textarea .fv-midashi {
    font-size: 7vw;
    color: #fff;
    text-shadow: none;
  }
}
@media (max-width: 480px) {
  .toppage .top-fv2 .top-fv__inner .fv-textarea .fv-midashi {
    font-size: 8.5vw;
  }
}
.toppage .top-fv2 .top-fv__inner .fv-textarea .fv-midashi .head {
  font-size: 24px;
  letter-spacing: 0.3em;
  text-align: center;
  position: relative;
  display: block;
  width: 320px;
  max-width: 80%;
  margin: 0 auto 20px;
  padding: 10px 0;
}
@media (max-width: 780px) {
  .toppage .top-fv2 .top-fv__inner .fv-textarea .fv-midashi .head {
    font-size: 14px;
    padding: 8px 0;
  }
}
@media (max-width: 480px) {
  .toppage .top-fv2 .top-fv__inner .fv-textarea .fv-midashi .head {
    font-size: 3.4vw;
  }
}
.toppage .top-fv2 .top-fv__inner .fv-textarea .fv-midashi .head::before {
  content: "";
  height: 100%;
  width: 320px;
  background-image: url(../images/top/fv-midashi-head01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -1em;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 780px) {
  .toppage .top-fv2 .top-fv__inner .fv-textarea .fv-midashi .head::before {
    height: 100%;
    width: 160px;
    background-image: url(../images/top2/sp-fv-midashi-head01.png);
  }
}
@media (max-width: 480px) {
  .toppage .top-fv2 .top-fv__inner .fv-textarea .fv-midashi .head::before {
    max-width: 70%;
  }
}
.toppage .top-fv2 .top-fv__inner .fv-textarea .fv-midashi .head::after {
  content: "";
  height: 100%;
  width: 320px;
  background-image: url(../images/top/fv-midashi-head02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 1.2em;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 780px) {
  .toppage .top-fv2 .top-fv__inner .fv-textarea .fv-midashi .head::after {
    height: 100%;
    width: 160px;
    background-image: url(../images/top2/sp-fv-midashi-head02.png);
  }
}
@media (max-width: 480px) {
  .toppage .top-fv2 .top-fv__inner .fv-textarea .fv-midashi .head::after {
    max-width: 70%;
  }
}
.toppage .top-fv2 .top-fv__inner .fv-textarea .fv-midashi .span {
  color: #3c5f98;
}
.toppage .top-fv2 .loopslide {
  position: relative;
  display: flex;
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 780px) {
  .toppage .top-fv2 .loopslide {
    bottom: 0;
  }
}
.toppage .top-fv2 .loopslide .slidebg {
  width: 300vw;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.toppage .top-fv2 .loopslide .slidebg:first-child {
  animation: slide1 60s -30s linear infinite;
}
.toppage .top-fv2 .loopslide .slidebg:last-child {
  animation: slide2 60s linear infinite;
}
@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.toppage .top-fv2 .loopslide .slidebg li {
  display: inline-block;
  width: 100%;
}
.toppage .top-fv2 .loopslide .slidebg li .bgtext {
  display: block;
  width: 100%;
  height: auto;
}
.toppage .top-fv2 .fv-img {
  position: absolute;
  z-index: -1;
}
@media (max-width: 780px) {
  .toppage .top-fv2 .fv-img {
    display: block;
  }
}
@media (max-width: 480px) {
  .toppage .top-fv2 .fv-img {
    width: 150px;
  }
}
.toppage .top-fv2 .fv-img-01 {
  width: 230px;
  max-width: 23%;
  height: auto;
  bottom: 0px;
  left: 0px;
}
@media (max-width: 780px) {
  .toppage .top-fv2 .fv-img-01 {
    width: 200px;
    max-width: 35%;
    bottom: 0px;
    left: 0px;
  }
}
@media (max-width: 480px) {
  .toppage .top-fv2 .fv-img-01 {
    width: 150px;
    max-width: 35%;
    bottom: 0px;
    left: 0px;
  }
}
.toppage .top-fv2 .fv-img-02 {
  width: 320px;
  max-width: 32%;
  height: auto;
  bottom: 0px;
  right: 0px;
}
@media (max-width: 780px) {
  .toppage .top-fv2 .fv-img-02 {
    width: 270px;
    max-width: 45%;
    bottom: 0px;
    right: 0px;
  }
}
@media (max-width: 480px) {
  .toppage .top-fv2 .fv-img-02 {
    width: 200px;
    max-width: 45%;
    bottom: 0px;
    right: 0px;
  }
}

.toppage .top-concept2 {
  padding: 100px 0;
  background-color: #3c5f98;
  z-index: 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  position: relative;
}
.toppage .top-concept2 .top-concept__inner {
  width: 780px;
  max-width: 96%;
  margin: 0 auto;
  color: #fff;
}
@media (max-width: 780px) {
  .toppage .top-concept2 .top-concept__inner {
    width: 670px;
    max-width: 90%;
  }
}
.toppage .top-concept2 .top-concept__inner .concept-text_box {
  width: 100%;
  height: 320px;
  margin: 60px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 780px) {
  .toppage .top-concept2 .top-concept__inner .concept-text_box {
    margin: 40px 0;
  }
}
.toppage .top-concept2 .top-concept__inner .concept-text_box .bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/top2/concept-cross.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.toppage .top-concept2 .top-concept__inner .concept-text_box .text {
  font-size: 24px;
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
  text-align: center;
}
@media (max-width: 780px) {
  .toppage .top-concept2 .top-concept__inner .concept-text_box .text {
    font-size: 16px;
    line-height: 1.6;
  }
}
.toppage .top-concept2 .top-concept__inner .concept-text_box .text .bigtext {
  display: block;
  font-size: 40px;
}
@media (max-width: 780px) {
  .toppage .top-concept2 .top-concept__inner .concept-text_box .text .bigtext {
    font-size: 24px;
  }
}
.toppage .top-concept2 .concept-img {
  position: absolute;
  width: 240px;
  max-width: 24%;
}
@media (max-width: 780px) {
  .toppage .top-concept2 .concept-img {
    width: 200px;
  }
}
.toppage .top-concept2 .concept-img-01 {
  top: 100px;
  left: 10%;
}
@media (max-width: 780px) {
  .toppage .top-concept2 .concept-img-01 {
    top: 190px;
    left: 10%;
  }
}
.toppage .top-concept2 .concept-img-02 {
  top: 100px;
  right: 10%;
}
@media (max-width: 780px) {
  .toppage .top-concept2 .concept-img-02 {
    top: 190px;
    right: 10%;
  }
}
.toppage .top-concept2 .concept-img-03 {
  bottom: 100px;
  left: 5%;
}
@media (max-width: 780px) {
  .toppage .top-concept2 .concept-img-03 {
    bottom: 190px;
    left: 5%;
  }
}
.toppage .top-concept2 .concept-img-04 {
  bottom: 100px;
  right: 5%;
}
@media (max-width: 780px) {
  .toppage .top-concept2 .concept-img-04 {
    bottom: 190px;
    right: 5%;
  }
}

.toppage .top-group {
  padding: 100px 0;
  z-index: 0;
}
.toppage .top-group .top-group__inner {
  width: 1000px;
  max-width: 96%;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .toppage .top-group .top-group__inner {
    width: 670px;
    max-width: 90%;
  }
}
.toppage .top-group .top-group__inner .text {
  text-align: center;
  margin-bottom: 62px;
}
.toppage .top-group .top-group__inner .group-boxs {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 780px) {
  .toppage .top-group .top-group__inner .group-boxs {
    flex-direction: column;
    margin: 30px auto 20px;
  }
}
.toppage .top-group .top-group__inner .group-boxs .group-box {
  width: 520px;
  max-width: 48%;
  height: 240px;
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 780px) {
  .toppage .top-group .top-group__inner .group-boxs .group-box {
    max-width: 100%;
    margin: 0 auto 25px;
    height: 200px;
  }
}
.toppage .top-group .top-group__inner .group-boxs .group-box .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
  animation: servicebg-hov_re 0.5s ease forwards;
}
@keyframes servicebg-hov_re {
  0% {
    background-size: 110%;
  }
  100% {
    background-size: 100%;
  }
}
.toppage .top-group .top-group__inner .group-boxs .group-box .group-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60px;
  width: 365px;
  max-width: 90%;
  margin: auto;
  border-radius: 0 25px 0 0;
  border: 2px solid #3c5f98;
  overflow: hidden;
  background-color: #fff;
  transition: 0.3s ease-in;
}
@media (max-width: 780px) {
  .toppage .top-group .top-group__inner .group-boxs .group-box .group-btn {
    width: 300px;
  }
}
.toppage .top-group .top-group__inner .group-boxs .group-box .group-btn::before {
  content: "";
  width: 0;
  height: 100%;
  background-image: none;
  background-color: #3c5f98;
  position: absolute;
  left: 0;
  top: 0;
  animation: btn-arrow-re 0.5s ease forwards;
}
@keyframes btn-arrow-re {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.toppage .top-group .top-group__inner .group-boxs .group-box .group-btn::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 5px;
  height: 45px;
  width: 45px;
  background-image: url(../images/top/btn-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease-in;
}
.toppage .top-group .top-group__inner .group-boxs .group-box .group-btn .link {
  height: 100%;
  width: 100%;
  color: #3c5f98;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2em;
  position: relative;
  padding: 0 0 0 20px;
}
@media (max-width: 780px) {
  .toppage .top-group .top-group__inner .group-boxs .group-box .group-btn .link {
    font-size: 14px;
  }
}
@media (min-width: 780px) {
  .toppage .top-group .top-group__inner .group-boxs .group-box .group-btn:hover {
    transition: 0.3s all;
    opacity: 1;
  }
  .toppage .top-group .top-group__inner .group-boxs .group-box .group-btn:hover::before {
    content: "";
    width: 100%;
    animation: btn-arrow 0.5s ease forwards;
  }
  @keyframes btn-arrow {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  .toppage .top-group .top-group__inner .group-boxs .group-box .group-btn:hover .link {
    opacity: 1;
    color: #fff;
  }
  .toppage .top-group .top-group__inner .group-boxs .group-box .group-btn:hover + .bg {
    background-size: 110%;
    animation: servicebg-hov 0.5s ease forwards;
  }
  @keyframes servicebg-hov {
    0% {
      background-size: 100%;
    }
    100% {
      background-size: 110%;
    }
  }
}
.toppage .top-group .top-group__inner .group-boxs .group-box.sidebusiness .bg {
  background-image: url(../images/top/group-sidebusiness.jpg);
}
.toppage .top-group .top-group__inner .group-boxs .group-box.culture .bg {
  background-image: url(../images/top/group-culture.jpg);
}
.toppage .top-group .top-group__inner .group-boxs .group-box.sdgs .bg {
  background-image: url(../images/top/group-sdgs.jpg);
}
.toppage .top-group .top-group__inner .group-boxs .group-box.hakurankai .bg {
  background-image: url(../images/top/group-hakurankai.jpg);
}
.toppage .top-group .top-group__inner .group-boxs .group-box.metaverse .bg {
  background-image: url(../images/top/group-metaverse.jpg);
}
.toppage .top-group .top-group__inner .group-boxs .group-box.infection .bg {
  background-image: url(../images/top/group-infection.jpg);
}

.common-cv {
  background-color: #c30844;
  background: linear-gradient(#AD374E, #c30844);
  padding: 100px 0;
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media (max-width: 780px) {
  .common-cv {
    padding: 60px 0 50px;
  }
}
.common-cv .common-cv__inner .common-cv__title {
  position: relative;
  margin-bottom: 50px;
}
.common-cv .common-cv__inner .common-cv__title .title--jp {
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.05em;
  background: none;
}
.common-cv .common-cv__inner .common-cv__title .title--jp::before {
  content: none;
}
@media (max-width: 780px) {
  .common-cv .common-cv__inner .common-cv__title .title--jp {
    font-size: 18px;
  }
}
.common-cv .common-cv__inner .common-cv__title .title--jp .title--en {
  position: absolute;
  left: 0;
  right: 0;
  top: -25px;
  opacity: 0.2;
  font-family: "Outfit", sans-serif;
  font-size: 70px;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media (max-width: 780px) {
  .common-cv .common-cv__inner .common-cv__title .title--jp .title--en {
    font-size: 50px;
    top: -20px;
  }
}
.common-cv .common-cv__inner .common-cv__content {
  text-align: center;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 45px;
}
@media (max-width: 780px) {
  .common-cv .common-cv__inner .common-cv__content {
    font-size: 13px;
  }
}
.common-cv .common-cv__inner .common-cv__btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 780px) {
  .common-cv .common-cv__inner .common-cv__btn {
    flex-direction: column;
  }
}
.common-cv .common-cv__inner .common-cv__btn .btn {
  background-color: #fff;
  color: #c30844;
  font-size: 15px;
  font-weight: bold;
  width: 280px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-self: center;
  border-radius: 30px;
  margin: 0 30px;
  border: none;
}
.common-cv .common-cv__inner .common-cv__btn .btn::after {
  content: none;
}
.common-cv .common-cv__inner .common-cv__btn .btn::before {
  content: none;
}
.common-cv .common-cv__inner .common-cv__btn .btn:hover {
  background-color: #c30844;
  border: 1px solid #fff;
  color: #fff;
  transition: 0.4s;
  opacity: 1;
}
@media (max-width: 780px) {
  .common-cv .common-cv__inner .common-cv__btn .btn {
    margin-bottom: 15px;
  }
}
.common-cv .common-cv__inner .common-cv__btn .btn span {
  display: block;
  margin: auto;
}

.page-id-234 .group-boxs {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 780px) {
  .page-id-234 .group-boxs {
    flex-direction: column;
    margin: 30px auto 20px;
  }
}
.page-id-234 .group-boxs .group-box {
  width: 520px;
  max-width: 48%;
  height: 240px;
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 780px) {
  .page-id-234 .group-boxs .group-box {
    max-width: 100%;
    margin: 0 auto 25px;
    height: 200px;
  }
}
.page-id-234 .group-boxs .group-box .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
  animation: servicebg-hov_re 0.5s ease forwards;
}
@keyframes servicebg-hov_re {
  0% {
    background-size: 110%;
  }
  100% {
    background-size: 100%;
  }
}
.page-id-234 .group-boxs .group-box .group-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60px;
  width: 365px;
  max-width: 90%;
  margin: auto;
  border-radius: 0 25px 0 0;
  border: 2px solid #3c5f98;
  overflow: hidden;
  background-color: #fff;
  transition: 0.3s ease-in;
}
@media (max-width: 780px) {
  .page-id-234 .group-boxs .group-box .group-btn {
    width: 300px;
  }
}
.page-id-234 .group-boxs .group-box .group-btn::before {
  content: "";
  width: 0;
  height: 100%;
  background-image: none;
  background-color: #3c5f98;
  position: absolute;
  left: 0;
  top: 0;
  animation: btn-arrow-re 0.5s ease forwards;
}
@keyframes btn-arrow-re {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.page-id-234 .group-boxs .group-box .group-btn::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 5px;
  height: 45px;
  width: 45px;
  background-image: url(../images/top/btn-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease-in;
}
.page-id-234 .group-boxs .group-box .group-btn .link {
  height: 100%;
  width: 100%;
  color: #3c5f98;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2em;
  position: relative;
  padding: 0 0 0 20px;
}
@media (max-width: 780px) {
  .page-id-234 .group-boxs .group-box .group-btn .link {
    font-size: 14px;
  }
}
@media (min-width: 780px) {
  .page-id-234 .group-boxs .group-box .group-btn:hover {
    transition: 0.3s all;
    opacity: 1;
  }
  .page-id-234 .group-boxs .group-box .group-btn:hover::before {
    content: "";
    width: 100%;
    animation: btn-arrow 0.5s ease forwards;
  }
  @keyframes btn-arrow {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  .page-id-234 .group-boxs .group-box .group-btn:hover .link {
    opacity: 1;
    color: #fff;
  }
  .page-id-234 .group-boxs .group-box .group-btn:hover + .bg {
    background-size: 110%;
    animation: servicebg-hov 0.5s ease forwards;
  }
  @keyframes servicebg-hov {
    0% {
      background-size: 100%;
    }
    100% {
      background-size: 110%;
    }
  }
}
.page-id-234 .group-boxs .group-box.sidebusiness .bg {
  background-image: url(../images/top/group-sidebusiness.jpg);
}
.page-id-234 .group-boxs .group-box.culture .bg {
  background-image: url(../images/top/group-culture.jpg);
}
.page-id-234 .group-boxs .group-box.sdgs .bg {
  background-image: url(../images/top/group-sdgs.jpg);
}
.page-id-234 .group-boxs .group-box.hakurankai .bg {
  background-image: url(../images/top/group-hakurankai.jpg);
}
.page-id-234 .group-boxs .group-box.metaverse .bg {
  background-image: url(../images/top/group-metaverse.jpg);
}
.page-id-234 .group-boxs .group-box.infection .bg {
  background-image: url(../images/top/group-infection.jpg);
}

/****************
*サービス部分
****************/
.service-section .service-section__inner {
  width: 1200px;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .service-section .service-section__inner .service-boxs {
    padding-top: 200px;
  }
}
.service-section .service-section__inner .service-boxs .img-box {
  position: absolute;
  width: 720px;
  max-width: 80%;
  height: 460px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 780px) {
  .service-section .service-section__inner .service-boxs .img-box {
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
    background-position: top left;
    background-size: 80%;
  }
}
.service-section .service-section__inner .service-boxs .info-box {
  width: 50%;
  position: relative;
}
@media (max-width: 980px) {
  .service-section .service-section__inner .service-boxs .info-box {
    width: 70%;
  }
}
@media (max-width: 780px) {
  .service-section .service-section__inner .service-boxs .info-box {
    width: 100vw;
    max-width: 95vw;
    margin: 0 calc(50% - 50vw);
    position: relative;
  }
}
.service-section .service-section__inner .service-boxs .info-box .info-box__inner {
  width: 500px;
  max-width: 90%;
  margin: 0 auto;
  padding: 70px 0px 80px;
}
@media (max-width: 780px) {
  .service-section .service-section__inner .service-boxs .info-box .info-box__inner {
    width: 100%;
    max-width: 100%;
    padding: 35px 10% 44px 20px;
  }
}
.service-section .service-section__inner .service-boxs .info-box .midashi {
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1.4285;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 780px) {
  .service-section .service-section__inner .service-boxs .info-box .midashi {
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 1.4545;
    margin-bottom: 14px;
  }
}
.service-section .service-section__inner .service-boxs .info-box .text {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  margin-bottom: 50px;
}
@media (max-width: 780px) {
  .service-section .service-section__inner .service-boxs .info-box .text {
    font-size: 13px;
    letter-spacing: 0.025em;
    line-height: 1.769;
    margin-bottom: 30px;
  }
}
.service-section .service-section__inner .service-boxs .info-box .btn {
  margin: auto auto auto 0;
}

.service-mirahaku {
  margin: 100px calc(50% - 50vw) 320px;
  width: 100vw;
}
@media (max-width: 780px) {
  .service-mirahaku {
    margin: 80px calc(50% - 50vw) 50px;
  }
}
.service-mirahaku .service-mirahaku__inner .service-boxs .img-box {
  background-image: url(https://dc-club.jp/wp-content/themes/swell_child/images/top/group-hakurankai.jpg);
  bottom: -100px;
  left: 0;
}
@media (max-width: 780px) {
  .service-mirahaku .service-mirahaku__inner .service-boxs .img-box {
    background-position: top left;
  }
}
.service-mirahaku .service-mirahaku__inner .service-boxs .info-box {
  background-color: #3c5f98;
  margin-left: auto;
}
.service-mirahaku .service-mirahaku__inner .service-boxs .info-box .midashi {
  color: #fff;
}
.service-mirahaku .service-mirahaku__inner .service-boxs .info-box .text {
  color: #fff;
}

.service-metaverse {
  margin: 0 calc(50% - 50vw) 100px;
  width: 100vw;
}
@media (max-width: 780px) {
  .service-metaverse {
    margin: 0 calc(50% - 50vw) 50px;
  }
}
.service-metaverse .service-metaverse__inner .service-boxs .img-box {
  background-image: url(https://dc-club.jp/wp-content/themes/swell_child/images/top/group-metaverse.jpg);
  top: -100px;
  right: 0;
}
@media (max-width: 780px) {
  .service-metaverse .service-metaverse__inner .service-boxs .img-box {
    top: 0;
    background-position: top right;
  }
}
.service-metaverse .service-metaverse__inner .service-boxs .info-box {
  background-color: #ecf3ff;
  margin-right: auto;
}
@media (max-width: 780px) {
  .service-metaverse .service-metaverse__inner .service-boxs .info-box {
    max-width: 95vw;
  }
}
@media (max-width: 780px) {
  .service-metaverse .service-metaverse__inner .service-boxs .info-box .info-box__inner {
    width: 100%;
    max-width: 100%;
    padding: 35px 5% 44px 5%;
  }
}
.service-metaverse .service-metaverse__inner .service-boxs .info-box .midashi {
  color: #3c5f98;
}
.service-metaverse .service-metaverse__inner .service-boxs .info-box .text {
  color: #000;
}

.service-cultureclub {
  margin: 0 calc(50% - 50vw) 320px;
  width: 100vw;
}
@media (max-width: 780px) {
  .service-cultureclub {
    margin: 0 calc(50% - 50vw) 50px;
  }
}
.service-cultureclub .service-cultureclub__inner .service-boxs .img-box {
  background-image: url(https://dc-club.jp/wp-content/themes/swell_child/images/top/group-culture.jpg);
  bottom: -100px;
  left: 0;
}
@media (max-width: 780px) {
  .service-cultureclub .service-cultureclub__inner .service-boxs .img-box {
    bottom: initial;
    top: 0;
    background-position: top left;
  }
}
.service-cultureclub .service-cultureclub__inner .service-boxs .info-box {
  background-color: #3c5f98;
  margin-left: auto;
}
@media (max-width: 780px) {
  .service-cultureclub .service-cultureclub__inner .service-boxs .info-box {
    max-width: 95vw;
  }
}
@media (max-width: 780px) {
  .service-cultureclub .service-cultureclub__inner .service-boxs .info-box .info-box__inner {
    width: 100%;
    max-width: 100%;
    padding: 35px 5% 44px 5%;
  }
}
.service-cultureclub .service-cultureclub__inner .service-boxs .info-box .midashi {
  color: #fff;
}
.service-cultureclub .service-cultureclub__inner .service-boxs .info-box .text {
  color: #fff;
}/*# sourceMappingURL=style.css.map */