/* ---------------------------------
▼▼ファーストビュー用css
--------------------------------- */
.fv {
  position: relative;
}

/* ---------------------------------
▼▼メインビジュアル用css
--------------------------------- */
#mv {
  width: 100%;
  position: relative;
}

#mv img {
  width: 100%;
  animation: mvIn .8s ease-in forwards;
}

@keyframes mvIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#mv .mv-inner {
  max-width: 1400px;
  width: 80%;
  margin: auto;
}

#mv .mv-catch {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 1;
  width: 80%;
}

#mv .mv-inner .mv-ttl {
  color: #fff;
  font-size: calc(28px + 66 * (100vw - 320px)/1200);
  font-weight: bold;
  line-height: 1.4;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.35);
  margin: 0 0 calc(10px + 30 * (100vw - 320px)/1600);
  display: inline-block;
}

#mv .mv-inner .mv-txt {
  color: #fff;
  font-size: calc(10px + 10 * (100vw - 320px)/1600);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 2px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
}

/* ---------------------------------
▼▼お知らせ＆コラム
--------------------------------- */
#posts {
  width: 100%;
  position: absolute;
  top: calc(100% - 100px);
}

#posts .inner {
  padding: 3% 4%;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

#posts .posts-box {
  display: flex;
  gap: 7%;
  margin: 0 0 34px;
  position: relative;
}

#posts .posts-box .post {
  max-width: 50%;
  width: 100%;
}

#posts h3 {
  font-size: calc(35px + 13 * (100vw - 320px)/1600);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}

#posts h3 .en {
  font-weight: bold;
}

#posts h3 .ja {
  font-size: calc(16px + 8 * (100vw - 320px)/1600);
  font-family: "Noto Sans JP", sans-serif;
}

#posts h3 .red-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #CC1335;
}

#posts .post-lists .post-lists-item {
  border-bottom: solid 1px #d8d8d8;
}

#posts .post-lists .post-lists-item .post-lists-link {
  color: #000;
  position: relative;
  display: block;
  padding: 26px 0 12px;
}

#posts .post-lists .post-lists-item .post-lists-link::before,
#posts .post-lists .post-lists-item .post-lists-link::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: all .3s;
}

#posts .post-lists .post-lists-item .post-lists-link::before {
  background: url(../img/common/posts-arrow.svg) no-repeat center center/cover;
}

#posts .post-lists .post-lists-item .post-lists-link::after {
  background: url(../img/common/posts-arrow-hover.svg) no-repeat center center/cover;
  opacity: 0;
}

#posts .post-lists .post-lists-item .post-lists-link p {
  line-height: 1;
  margin: 0;
}

#posts .post-lists .post-lists-item .post-lists-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}

#posts .post-lists .post-lists-item .post-lists-item-ymd {
  font-size: 14px;
}

#posts .post-lists .post-lists-item .post-lists-item-tag {
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  padding: 4px 11px;
  background: #CC1335;
  border-radius: 20px;
  border: solid 1px #CC1335;
  transition: all .3s;
}

#posts .post-lists .post-lists-item .post-lists-item-ttl {
  font-size: 14px;
  padding: 0 40px 8px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#posts .post-lists .post-lists-item .post-lists-item-ttl span {
  position: relative;
}

#posts .post-lists .post-lists-item .post-lists-item-ttl span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #CC1335;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

#posts .button {
  width: 144px;
  font-size: 9px;
  padding: 12px 30px 12px 20px;
  margin: auto;
}

#posts .button::before,
#posts .button::after {
  width: 18px;
  height: 18px;
  right: 12px;
}

/* タブレット用 */
@media screen and (max-width: 1024px) {
  #posts {
    top: calc(100% - 50px);
  }
}

/* スマホ用 */
@media screen and (max-width: 767px) {
  #posts .inner {
    padding: 30px 4% 40px;
  }

  #posts .posts-box {
    flex-wrap: wrap;
    margin: 0 0 14px;
  }

  #posts .posts-box .post {
    max-width: 100%;
  }

  #posts .posts-box .post.news {
    margin: 0 0 50px;
  }
}

/* ホバーの挙動用 */
@media screen and (min-width: 767px) {
  #posts .post-lists .post-lists-item .post-lists-link:hover::before {
    opacity: 0;
  }

  #posts .post-lists .post-lists-item .post-lists-link:hover::after {
    opacity: 1;
  }

  #posts .post-lists .post-lists-item .post-lists-link:hover .post-lists-item-tag {
    color: #CC1335;
    background: #fff;
  }

  #posts .post-lists .post-lists-item .post-lists-link:hover .post-lists-item-ttl span::after {
    transform: scale(1, 1);
  }

  #posts .posts-box::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: #d8d8d8;
    top: 0;
    left: 50%;
  }
}

/* ---------------------------------
▼▼背景画像用css
--------------------------------- */
.bg-img {
  padding: 500px 0 0;
  background: url(../img/common/img-bg.jpg) no-repeat center center/cover;
}

/* スマホ用 */
@media screen and (max-width: 767px) {
  .bg-img {
    padding: 850px 0 0;
  }
}

/* ---------------------------------
▼▼キャッチコピー用css
--------------------------------- */
#catch {
  margin-bottom: calc(104px + 106 * (100vw - 320px)/1600);
}

#catch .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#catch .catch-txt {
  width: 29%;
  color: #000;
}

#catch .catch-txt h3 {
  font-size: calc(30px + 18 * (100vw - 320px)/1600);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  margin: 0 0 50px;
  line-height: 1.6;
}

#catch .catch-txt p {
  font-size: calc(14px + 4 * (100vw - 320px)/1600);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}

#catch .catch-img {
  width: 61%;
}

#catch .catch-img img {
  width: 100%;
}

/* 中間モニター用 */
@media screen and (max-width: 1160px) {

  #catch .catch-txt,
  #catch .catch-img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #catch .catch-txt h3 {
    margin: 0 0 32px;
  }

  #catch .catch-txt p {
    margin: 0 0 30px;
    line-height: 2;
  }
}

/* ---------------------------------
▼▼クリエイションとは用css
--------------------------------- */
#aboutus {
  padding-top: calc(100px + 150 * (100vw - 320px)/1600);
  padding-bottom: calc(46px + 110 * (100vw - 320px)/1600);
  background: #F7F7F7;
  border-top-left-radius: calc(100px + 100 * (100vw - 320px)/1600);
}

#aboutus .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#aboutus .aboutus-box {
  width: 45%;
}

#aboutus .section-ttl-ja {
  margin: 0 0 calc(50px + 40 * (100vw - 320px)/1600);
}

#aboutus .aboutus-point {
  margin: 0 0 calc(18px + 32 * (100vw - 320px)/1600);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(28px + 20 * (100vw - 320px)/1600);
  font-weight: bold;
}

#aboutus .aboutus-txt {
  margin: 0 0 calc(30px + 26 * (100vw - 320px)/1600);
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(14px + 4 * (100vw - 320px)/1600);
  font-weight: bold;
}

#aboutus .aboutus-img {
  width: 50%;
}

#aboutus .aboutus-img img {
  width: 100%;
}

#aboutus .button {
  width: 280px;
  font-size: calc(14px + 6 * (100vw - 320px)/1600);
  padding: 24px 58px 24px 40px;
}

/* スマホ用 */
@media screen and (max-width: 767px) {

  #aboutus .aboutus-box,
  #aboutus .aboutus-img {
    width: 100%;
  }

  #aboutus .aboutus-txt {
    line-height: 2;
  }

  #aboutus .button {
    width: 200px;
    padding: 18px 44px 18px 28px;
    margin: 0 auto 18px;
  }
}

/* ---------------------------------
▼▼サービス概要用css
--------------------------------- */
#service {
  padding-top: calc(60px + 70 * (100vw - 320px)/1600);
  padding-bottom: calc(87px + 108 * (100vw - 320px)/1600);
}

#service .section-ttl-ja {
  margin: 0 0 30px;
}

#service .section-txt {
  margin: 0 0 130px;
  font-weight: bold;
}

#service .service-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}

#service .service-lists-item {
  width: 30%;
  background: #5DABD4;
  border-radius: 20px;
  overflow: hidden;
  transition: all .3s;
  margin-bottom: calc(32px + 28 * (100vw - 320px)/1600);
}

#service .service-lists-img {
  overflow: hidden;
}

#service .service-lists-img img {
  width: 100%;
  transition: all .3s;
}

#service .service-lists-con {
  padding: 44px 30px 25px;
  color: #fff;
  transition: all .3s;
}

#service .service-lists-con h4 {
  font-size: calc(20px + 8 * (100vw - 320px)/1600);
  margin: 0 0 18px;
}

#service .service-lists-con-txt {
  font-size: calc(12px + 4 * (100vw - 320px)/1600);
  margin: 0 0 30px;
}

#service .button {
  width: 160px;
  font-size: calc(10px + 3 * (100vw - 320px)/1600);
  padding: 12px 32px 12px 21px;
  margin: 0 0 0 auto;
}

/* タブレット用 */
@media screen and (max-width: 1024px) {
  #service .service-lists {
    gap: 4%;
  }

  #service .service-lists-item {
    width: 48%;
  }
}

/* スマホ用 */
@media screen and (max-width: 767px) {
  #service .section-txt {
    margin: 0 0 50px;
  }

  #service .service-lists-con {
    padding: 36px 22px 20px;
  }

  #service .service-lists-con h4 {
    margin: 0 0 16px;
  }

  #service .service-lists-con-txt {
    margin: 0 0 26px;
  }

  #service .button {
    width: 122px;
    padding: 10px 25px 10px 16px;
  }
}

@media screen and (max-width: 600px) {
  #service .service-lists {
    gap: 0;
  }

  #service .service-lists-item {
    width: 100%;
  }
}

/* ホバーの実装用 */
@media screen and (min-width: 767px) {
  #service .service-lists-item:hover .service-lists-img img {
    transform: scale(1.2);
  }

  #service .service-lists-item:hover {
    background: #094896;
  }
}

/* ---------------------------------
▼▼事例・実績用css
--------------------------------- */
#results {
  background: #094896;
  color: #fff;
  padding-top: calc(100px + 150 * (100vw - 320px)/1600);
  padding-bottom: calc(125px + 15 * (100vw - 320px)/1600);
  border-top-right-radius: calc(100px + 100 * (100vw - 320px)/1600);
}

#results .section-ttl-ja {
  margin: 0 0 30px;
}

#results .section-txt {
  margin: 0 0 130px;
  font-weight: 600;
}

#results .results-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 2.6%;
}

#results .results-lists-item {
  width: 23%;
  margin: 0 0 70px;
}

#results .results-img {
  overflow: hidden;
  border-radius: 10px;
  margin: 0 0 16px;
}

#results .results-img img {
  width: 100%;
  transition: all .3s;
}

#results .results-ymd {
  font-size: 12px;
  margin: 0 0 8px;
  color: #fff;
}

#results .results-ttl {
  font-size: 18px;
  margin: 0 0 16px;
  color: #fff;
}

#results .results-txt {
  font-size: 14px;
  margin: 0 0 18px;
  color: #fff;
}

#results .button {
  width: 160px;
  font-size: calc(9px + 3 * (100vw - 320px)/1600);
  padding: 12px 32px 12px 21px;
  margin: auto 0 0 auto;
  color: #fff;
  transition: all .3s;
}

#results .button.red {
  width: 286px;
  font-size: calc(14px + 6 * (100vw - 320px)/1600);
  padding: 24px 58px 24px 40px;
  margin: 0 auto;
}

/* タブレット用 */
@media screen and (max-width: 1024px) {
  #results .results-lists {
    gap: 5%;
  }

  #results .results-lists-item {
    width: 30%;
    margin: 0 0 70px;
  }
}

/* スマホ用 */
@media screen and (max-width: 767px) {
  #results .section-txt {
    margin: 0 0 40px;
  }

  #results .results-lists {
    gap: 4%;
  }

  #results .results-lists-item {
    width: 48%;
    margin: 0 0 40px;
  }

  #results .button.red {
    width: 200px;
    padding: 18px 44px 18px 28px;
  }
}

@media screen and (max-width: 500px) {
  #results .results-lists {
    gap: 0;
  }

  #results .results-lists-item {
    width: 100%;
  }
}

/* ホバーの実装用 */
@media screen and (min-width: 767px) {
  #results .results-lists-item:hover .results-img img {
    transform: scale(1.2);
  }

  #results .results-lists-item:hover .button {
    background: #CC1335;
    border: solid 1px #CC1335;
  }

  #results .button.red:hover {
    color: #CC1335;
  }
}

/* ---------------------------------
▼▼YouTubeのリンク用css
--------------------------------- */
#movie {
  padding: 140px 0 0;
  margin: 0 0 185px;
}

#movie .movie-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: url(../img/movie/youtube-bg.jpg) no-repeat center center/cover;
  padding: 58px 54px 58px 5%;
  border-radius: 10px;
}

#movie .movie-con {
  color: #000;
  width: 48%;
}

#movie .movie-con h4 {
  font-size: calc(16px + 16 * (100vw - 320px)/1600);
  margin: 0 0 26px;
}

#movie .movie-con .movie-txt {
  font-size: calc(14px + 4 * (100vw - 320px)/1600);
  margin: 0 0 calc(28px + 6 * (100vw - 320px)/1600);
}

#movie .button.red {
  width: 286px;
  font-size: calc(14px + 6 * (100vw - 320px)/1600);
  padding: 24px 58px 24px 40px;
}

#movie .movie-img {
  width: 48%;
  position: relative;
  overflow: hidden;
}

#movie .movie-img .movie-img-back {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}

#movie .movie-img .movie-img-front {
  width: 42%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* スマホ用 */
@media screen and (max-width: 767px) {
  #movie {
    padding: 40px 0 0;
    margin: 0 0 54px;
  }

  #movie .movie-link {
    padding: 30px 20px;
  }

  #movie .movie-con {
    width: 100%;
  }

  #movie .button.red {
    width: 160px;
    padding: 14px 32px 14px 22px;
    margin: 0 auto 26px;
  }

  #movie .movie-img {
    width: 100%;
  }
}

/* ホバーの実装用 */
@media screen and (min-width: 767px) {
  #movie .movie-link:hover .button {
    background: #fff;
    color: #CC1335;
  }

  #movie .movie-link:hover .button::before {
    opacity: 0;
  }

  #movie .movie-link:hover .button::after {
    opacity: 1;
  }

  #movie .movie-link:hover .movie-img .movie-img-back {
    transform: scale(1.2);
  }
}

/* ---------------------------------
▼▼コンサルタント紹介用css
--------------------------------- */
#member {
  overflow: hidden;
}

#member .member-inner {
  max-width: 1600px;
  width: 95%;
  margin: auto;
}

#member .member-slides {
  position: relative;
}

#member .member-ttl {
  display: flex;
  gap: 50px;
  margin: 0 0 44px;
}

#member .member-ttl .section-txt {
  padding: 20px 0 0;
}

#member .swiper-button-prev,
#member .swiper-button-next {
  height: 72px;
  width: 72px;
  z-index: 1;
}

#member .swiper-button-prev,
#member .swiper-button-prev {
  top: -86px;
  left: auto;
  right: 100px;
}

#member .swiper-button-next,
#member .swiper-button-next {
  top: -86px;
  right: 0;
}

#member .swiper-button-prev::after,
#member .swiper-button-next::after,
#member .swiper-button-prev::before,
#member .swiper-button-next::before {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  height: 72px;
  margin: auto;
  width: 72px;
  transition: all .3s;
}

#member .swiper-button-prev::after {
  background-image: url(../img/common/button-arrow-red.svg);
  transform: rotate(180deg);
}

#member .swiper-button-next::after {
  background-image: url(../img/common/button-arrow-red.svg);
}

#member .swiper-button-prev::before {
  background-image: url(../img/common/button-arrow-red-hover.svg);
  transform: rotate(180deg);
  opacity: 0;
}

#member .swiper-button-next::before {
  background-image: url(../img/common/button-arrow-red-hover.svg);
  opacity: 0;
}

#member .swiper-slide img {
  height: auto;
  width: 100%;
}

#member .swiper {
  overflow: visible;
}

#member .swiper .member-img {
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 10px;
}

#member .swiper .member-img img {
  width: 100%;
}

#member .swiper .member-info {
  color: #000;
  position: relative;
}

#member .swiper .member-info::before,
#member .swiper .member-info::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: all .3s;
}

#member .swiper .member-info::before {
  background: url(../img/common/button-arrow-red.svg) no-repeat center center/cover;
}

#member .swiper .member-info::after {
  background: url(../img/common/button-arrow-red-hover.svg) no-repeat center center/cover;
  opacity: 0;
}

#member .swiper .member-info h4 {
  font-size: calc(18px + 10 * (100vw - 320px)/1600);
  line-height: 1;
  margin: 0 0 10px;
}

#member .swiper .member-info h4 span {
  position: relative;
}

#member .swiper .member-info h4 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #CC1335;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

#member .swiper .member-info p {
  font-size: calc(10px + 4 * (100vw - 320px)/1600);
  margin: 0;
  transition: all .3s;
}

/* スマホ用 */
@media screen and (max-width: 767px) {
  #member .member-ttl {
    flex-wrap: wrap;
    gap: 35px;
    margin: 0 0 58px;
  }

  #member .member-ttl .section-txt {
    padding: 0;
  }

  #member .swiper-button-prev,
  #member .swiper-button-next {
    height: 44px;
    width: 44px;
  }

  #member .swiper-button-prev,
  #member .swiper-button-prev {
    top: -34px;
    right: 60px;
  }

  #member .swiper-button-next,
  #member .swiper-button-next {
    top: -34px;
    right: 0;
  }

  #member .swiper-button-prev::after,
  #member .swiper-button-next::after,
  #member .swiper-button-prev::before,
  #member .swiper-button-next::before {
    height: 44px;
    width: 44px;
  }

  #member .swiper .member-info::before,
  #member .swiper .member-info::after {
    width: 30px;
    height: 30px;
  }
}

/* ホバーの実装用 */
@media screen and (min-width: 767px) {
  #member .swiper-button-prev:hover::after {
    opacity: 0;
  }

  #member .swiper-button-next:hover::after {
    opacity: 0;
  }

  #member .swiper-button-prev:hover::before {
    opacity: 1;
  }

  #member .swiper-button-next:hover::before {
    opacity: 1;
  }

  #member .swiper .member-link:hover .member-info::before {
    opacity: 0;
  }

  #member .swiper .member-link:hover .member-info::after {
    opacity: 1;
  }

  #member .swiper .member-link:hover .member-info h4 span::after {
    transform: scale(1, 1);
  }

  #member .swiper .member-link:hover .member-info p {
    color: #CC1335;
  }
}

/* ---------------------------------
▼▼下層ページへのリンク用css
--------------------------------- */
#pagelink {
  padding-top: calc(58px + 67 * (100vw - 320px)/1600);
  padding-bottom: calc(52px + 100 * (100vw - 320px)/1600);
}

#pagelink .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#pagelink .pagelink-box {
  width: 46%;
  padding: 60px 60px 56px;
  border-radius: 10px;
  transition: all .3s;
}

#pagelink .pagelink-box.contactpage {
  background: url(../img/pagelink/contact-link-bg.jpg) no-repeat center center/cover;
}

#pagelink .pagelink-box.recruitpage {
  background: url(../img/pagelink/recruit-link-bg.jpg) no-repeat center center/cover;
}

#pagelink .pagelink-ttl {
  font-size: calc(16px + 16 * (100vw - 320px)/1600);
  margin: 0 0 44px;
  color: #000;
}

#pagelink .button {
  width: 200px;
  font-size: calc(10px + 4 * (100vw - 320px)/1600);
  padding: 16px 42px 16px 28px;
  margin: 0;
}

#pagelink .button::before,
#pagelink .button::after {
  width: 26px;
  height: 26px;
  right: 16px;
}

/* スマホ用 */
@media screen and (max-width: 767px) {
  #pagelink .pagelink-box {
    width: 100%;
    padding: 30px;
  }

  #pagelink .pagelink-box.contactpage {
    margin: 0 0 20px;
  }

  #pagelink .pagelink-ttl {
    margin: 0 0 24px;
  }

  #pagelink .button {
    width: 108px;
    padding: 8px 22px 8px 14px;
  }

  #pagelink .button::before,
  #pagelink .button::after {
    width: 14px;
    height: 14px;
    right: 8px;
  }
}

/* ホバーの実装用 */
@media screen and (min-width: 767px) {
  #pagelink .pagelink-box:hover .button {
    background: #fff;
    color: #CC1335;
  }

  #pagelink .pagelink-box:hover .button::before {
    opacity: 0;
  }

  #pagelink .pagelink-box:hover .button::after {
    opacity: 1;
  }
}