
/* トップページ
----------------------------------------*/

/* スライド */

@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;700&display=swap");
:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #f5695f;
  --color-theme-darken: #f12617;
  --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
  --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
}

.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}

.l-section {
  /*border-top: 1px solid #eee;*/
}
.l-section .l-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
      object-fit: cover;
}


.swiper-button-prev, .swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.swiper-button-prev::before, .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.mv01 {
  margin-bottom: 80px;
  z-index: 1; /* 重なり順を一番下に指定 */
}
.mv01 .l-inner {
  padding-bottom: 0;
}
.mv01 .swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}
.mv01 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.mv01 .swiper-pagination {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 3.2rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
}
.mv01 .swiper-pagination-bullet {
  display: block;
  width: 3px;
  height: 4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.4);
}
.mv01 .swiper-pagination-bullet:not(:first-child) {
  margin-top: 0.8rem;
}
.mv01 .swiper-pagination-bullet-active {
  background-color: var(--color-theme);
}
.mv01 .slide-media {
  height: 450px;
}
.mv01 .slide-media img {
  -webkit-transition: 7s 1s ease-out;
  transition: 7s 1s ease-out;
}
.mv01 .slide-title {
  font-size: 3rem;
  font-weight: normal;
  line-height: 1.6;
  position: absolute;
  right: 8rem;
  bottom: 15%;
  margin-left: 16rem;
  text-align: right;
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
}
.mv01 .swiper-slide[class*=-active] .slide-media img {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.mv01 .swiper-slide[class*=-active] .slide-title {
  -webkit-animation: mv01-fadeIn 2s 0.5s var(--easing) both;
          animation: mv01-fadeIn 2s 0.5s var(--easing) both;
}

@-webkit-keyframes mv01-fadeIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
    -webkit-filter: blur(300px);
            filter: blur(300px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes mv01-fadeIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
    -webkit-filter: blur(300px);
            filter: blur(300px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}




@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  .l-inner {
    padding: 0 4rem;
  }
  .pc {
    display: none !important;
  }
  .mv01 {
    margin-bottom: 4rem;
  }
  .mv01 .slide-media {
    /*height: max(70vh, 70vw);*/
    height: 200px;
  }
}
@media only screen and (max-width: 599px) {
  html {
    /*font-size: 50%;*/
  }
  .pc-tab {
    display: none !important;
  }
  .mv01 .slide-title {
    font-size: 1.8rem;
    right: 1em;
    margin-left: 3rem;
  }
}
@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .swiper-button-prev::before, .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .swiper-button-prev:hover::before, .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media only screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}




/* 50ｔｈ */

div.a50th {
  width: 1040px;
  margin: 85px auto 0 auto;
  padding: 2px 0;
  border-top: 5px #f5f5f5 solid;
  border-bottom: 5px #f5f5f5 solid;
}

div.a50th-inner {
  display: flex;
  justify-content: flex-start;
  gap: 0 20px;
  padding: 1em 0;
  border-top: 1px #f5f5f5 solid;
  border-bottom: 1px #f5f5f5 solid;
}

img.a50th-logo {
  position: relative;
  width: 200px;
  overflow: hidden;
}

img.a50th-logo::after {
  position: absolute;
  display: block;
  content: "";
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;
}
@keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

div.a50th-text h2 {
  font-size: 2.2rem;
  line-height: 1;
  color: #104793;
  font-weight: bold;
}

div.a50th-text p {
  margin: 0.5em 0 0 0;
  font-size: 1.8rem;
}



/* コンサルタントサービス */

h2.th-top {
  width: 350px;
  margin: 120px auto 0 auto;
  font-size: 3.0rem;
  line-height: 1;
  text-align: center;
}

p.th-top-sub {
  width: 350px;
  margin: 15px auto 0 auto;
  font-size: 1.8rem;
  line-height: 1;
  color: #eeeeee;
  font-weight: 900;
  text-align: center;
}

div.th-top-underline {
  width: 150px;
  height: 5px;
  margin: 35px auto 0 auto;
  background-image: url('../images/top/bg_line_blue.gif');
  background-repeat: repeat;
}

div.cs {
  width: 1040px;
  height: 515px;
  margin: 85px auto 0 auto;
  padding: 40px 0 0 0;
  background-image: url('../images/top/img_arrow_cs.png'), url('../images/top/bg_consultant_service.png');
  background-image: image-set(url('../images/top/img_arrow_cs.png') 1x, url('../images/top/img_arrow_cs@2x.png') 2x),
  image-set(url('../images/top/bg_consultant_service.png') 1x, url('../images/top/bg_consultant_service@2x.png') 2x);
  background-repeat: no-repeat, no-repeat;
  background-position: center 20px, 0 0;
}

div.cs .tuginaru {
  width: 880px;
  height: 217px;
  margin: 0 auto;
  background-image: url('../images/top/bg_tuginaru.png');
  background-image: image-set(url('../images/top/bg_tuginaru.png') 1x, url('../images/top/bg_tuginaru@2x.png') 2x);
  background-repeat: no-repeat;
}

div.cs .fig-under {
  display: flex;
  justify-content: space-between;
  gap: 0 10px;
  width: 1000px;
  margin: 0 auto;
}

div.cs .kurasi {
  width: 300px;
  height: 230px;
  margin: 9px 0 0 0;
  background-image: url('../images/top/bg_kurasi.png');
  background-image: image-set(url('../images/top/bg_kurasi.png') 1x, url('../images/top/bg_kurasi@2x.png') 2x);
  background-repeat: no-repeat;
}

div.cs .kankyou {
  width: 380px;
  height: 239px;
  background-image: url('../images/top/bg_kankyou.png');
  background-image: image-set(url('../images/top/bg_kankyou.png') 1x, url('../images/top/bg_kankyou@2x.png') 2x);
  background-repeat: no-repeat;
}

div.cs .katuyou {
  width: 300px;
  height: 238px;
  margin: 1px 0 0 0;
  background-image: url('../images/top/bg_katuyou.png');
  background-image: image-set(url('../images/top/bg_katuyou.png') 1x, url('../images/top/bg_katuyou@2x.png') 2x);
  background-repeat: no-repeat;
}

div.cs h3 {
  width: 100%;
  padding: 75px 0 0 0;
  font-size: 2.4rem;
  line-height: 1;
  color: #104793;
  font-weight: bold;
  text-align: center;
}

ul.cs-link-square {
  display: flex;
  justify-content: space-around;
  gap: 0 25px;
  margin: 10px 10px 0 10px;
}

ul.cs-link-square li {
  position: relative;
  width: 270px;
  height: 70px;
  background-color: #00b7ee;
  border-radius: 3px;
}

ul.cs-link-square li a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

ul.cs-link-square li a span.text {
  display: block;
  padding: 0.5em 0 0 0;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #ffffff;
  font-weight: bold;
}

ul.cs-link-square li a span.arw-down-blue {
  position: absolute;
  bottom: 10px;
  left: 50%;

  display: inline-block;
  vertical-align: middle;
  color: #104793;
  line-height: 1.4;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.3em 0.375em;
  border-top-color: currentColor;
  border-bottom: 0;
  transform: translateX(-50%);
}

ul.cs-link-circle {
  display: flex;
  justify-content: space-around;
  gap: 0 1px;
  margin: 15px auto;
}

ul.cs-link-circle li {
  position: relative;
  width: 88px;
  height: 88px;
  background-color: #00b7ee;
  border-radius: 50%;
}

ul.cs-link-circle li a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

ul.cs-link-circle li a span.text {
  display: block;
  padding: 15% 0 0 0;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #ffffff;
  font-weight: bold;
}

ul.cs-link-circle li a span.arw-down-blue {
  position: absolute;
  bottom: 10px;
  left: 50%;

  display: inline-block;
  vertical-align: middle;
  color: #104793;
  line-height: 1.4;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.3em 0.375em;
  border-top-color: currentColor;
  border-bottom: 0;
  transform: translateX(-50%);
}



/* 採用情報 */

div.top-recruit {
  width: 1040px;
  margin: 85px auto 0 auto;
  border-left: 2px #00b7ee solid;
  border-right: 2px #00b7ee solid;
}
div.top-recruit .top-recruit-inner {
  padding: 20px 40px;
}

div.top-recruit h3 {
  display: inline-block;
  padding: 0.2em 0.5em;
  color: #ffffff;
  border-radius: 3px;
  font-weight: bold;
}
div.top-recruit h3.sinsotu {
  background-color: #00b7ee;
}
div.top-recruit h3.career {
  margin: 1em 0 0 0;
  background-color: #d0ce7c;
}

div.top-recruit p.h3-sub {
  display: inline-block;
  margin: 0 0 0 10px;
}

div.top-recruit p.text {
  clear: both;
  margin: 0.5em 0 0 0;
}



/* お知らせ */

div.top-topics {
  width: 1040px;
  margin: 85px auto 0 auto;
  border-top: 10px #eeeeee solid;
}

div.top-topics a.item {
  position: relative;
  display: flex;
  gap:0 40px;
  padding: 20px 0;
  background-color: #f5f5f5;
  font-size: 1.8rem;
  border-bottom: 1px #cccccc solid;
}
div.top-topics a.item:nth-child(2n) {
  background-color: #ffffff;
}

div.top-topics a.item::after {
  position: absolute;
  content: '';
	top: 50%;
	right: 20px;

	display: inline-block;
	vertical-align: middle;
	color: #104793;
	line-height: 1;
	width: 0.5em;
	height: 0.5em;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-50%) translateX(-25%) rotate(45deg);
}

div.top-topics a.item dt {
  margin: 0 0 0 20px;
}

p.top-topics-more {
  width: 9em;
  margin: 1em 0 0 0;
}





/* スマホ
--------------------------------------*/

@media only screen and (max-width: 767px) {



/* 50ｔｈ */

div.a50th {
  width: 100%;
  margin: 0 0 0 0;
}

div.a50th-inner {
  display: block;
  padding: 0 2%;
}

img.a50th-logo {
  position: relative;
  width: 33%;
  height: auto;
  margin: 0 0 2em 33%;
}

div.a50th-text h2 {
  font-size: 2.2rem;
}



/* コンサルタントサービス */

h2.th-top {
  width: 100%;
  margin: 60px auto 0 auto;
}

div.th-top-underline {
  margin: 15px auto 0 auto;
}

div.cs {
  width: 100%;
  height: auto;
  margin: 30px 0 0 0;
  padding: 40px 0 0 0;
  background: none;
}


div.cs .tuginaru,
div.cs .kurasi,
div.cs .kankyou,
div.cs .katuyou {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 3em 0;
  padding: 0 0 1em 0;
  background-color: #cdf4f9;
  border-radius: 5px;
  background-image: none;
}
div.cs .tuginaru::after,
div.cs .kurasi::after,
div.cs .kankyou::after,
div.cs .katuyou::after {
  display: none;
}

div.cs .fig-under {
  display: block;
  width: 100%;
  margin: 0;
}

div.cs h3 {
  padding: 0.5em 0 0 0;
}

div.cs h3 span {
  position: relative;
}

div.cs .tuginaru h3 span {
  padding: 0 0 0 1.5em;
}
div.cs .tuginaru h3 span::before {
  position: absolute;
  content: '';
  top: -1em;
  left: 0;
  width: 43px;
  height: 66px;
  background-image: url('../images/top/icn_tuginaru.png');
  background-image: image-set(url('../images/top/icn_tuginaru.png') 1x, url('../images/top/icn_tuginaru@2x.png') 2x);
  background-repeat: no-repeat;
  transform: translateX(-50%);
}

div.cs .kurasi h3 span {
  padding: 0 0 0 1.5em;
}
div.cs .kurasi h3 span::before {
  position: absolute;
  content: '';
  top: -50%;
  left: 0;
  width: 35px;
  height: 62px;
  background-image: url('../images/top/icn_kurasi.png');
  background-image: image-set(url('../images/top/icn_kurasi.png') 1x, url('../images/top/icn_kurasi@2x.png') 2x);
  background-repeat: no-repeat;
  transform: translateX(-50%);
}

div.cs .kankyou h3 span {
  padding: 0 0 0 3em;
}
div.cs .kankyou h3 span::before {
  position: absolute;
  content: '';
  top: -110%;
  left: 0;
  width: 123px;
  height: 73px;
  background-image: url('../images/top/icn_kankyou.png');
  background-image: image-set(url('../images/top/icn_kankyou.png') 1x, url('../images/top/icn_kankyou@2x.png') 2x);
  background-repeat: no-repeat;
  transform: translateX(-50%);
}

div.cs .katuyou h3 span {
  padding: 0 0 0 2em;
}
div.cs .katuyou h3 span::before {
  position: absolute;
  content: '';
  top: -90%;
  left: 0;
  width: 64px;
  height: 66px;
  background-image: url('../images/top/icn_katuyou.png');
  background-image: image-set(url('../images/top/icn_katuyou.png') 1x, url('../images/top/icn_katuyou@2x.png') 2x);
  background-repeat: no-repeat;
  transform: translateX(-50%);
}



ul.cs-link-square {
  gap: 0 0.5em;
  margin: 2em 10px 0 10px;
}

ul.cs-link-circle {
  justify-content: center;
  gap: 0 0.2em;
  margin: 1em auto 0 auto;
}



/* 採用情報 */

div.top-recruit {
  width: 98%;
  margin: 30px auto 0 auto;
}
div.top-recruit .top-recruit-inner {
  padding: 1em 1em;
}



/* お知らせ */

div.top-topics {
  width: 100%;
  margin: 30px auto 0 auto;
}

div.top-topics a.item {
  justify-content: flex-start;
  gap: 0 0.5em;
  padding: 0.5em 2em 0.5em 0.5em;
}

div.top-topics a.item dt {
  width: 30%;
  margin: 0 0 0 0.5em;
}

div.top-topics a.item dd {
  flex: 1;
}




}

