@charset "utf-8";
body{
    line-height: 1.5rem;
    text-size-adjust: 100%;
 　　-webkit-text-size-adjust: 100%;/*Chrome,Safari*/
 　　-ms-text-size-adjust: 100%;/*EgdeMobile*/
 　　-moz-text-size-adjust: 100%;/*firefox*/
	font-family: "Noto Sans JP", sans-serif!important;
}
img{
	max-width: 100%;
    height: auto;
}
a {
	text-decoration: none!important;
	color: black;
}
ul {
    list-style: none;
    padding: 0;
}
/*/////////////動き///////////////////////////////////////*/
/*========= 下からフェードインで出てくる===============*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1650ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/*========= 上からフェードイン===============*/
.fadein-top {
  opacity: 0;
  transform: translate(0, -100px);
  transition: all 1650ms;
}

.fadein-top.scrollin-top {
  opacity: 1;
  transform: translate(0, 0);
}
.img-scrollin-top {
  transform: scale(0.5); /* 初期状態は0.5倍の大きさ */
  opacity: 0; /* 初期状態は非表示 */
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; /* アニメーションを設定 */
}
.img-scrollin-top.smallbig-img-scrollin-top {
  transform: scale(1); /* スクロール時に等倍の大きさに拡大 */
  opacity: 1; /* スクロール時に表示 */
}
/*========= 流れる動き ===========================================================================*/
/*全共通*/
.slide-in {
  overflow: hidden;
    display: inline-block;
}
.slide-in_inner {
  display: inline-block;

}
/*========= テキストの動き流れるように１文字ずつ出現（左から右） ===============*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}
.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:1.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
}

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
}
}
.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:1.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
}
}
/*中央構えの際に追加*/
.center-slide-in-leftAnime {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/*========= 左から右のスライドアニメーション ===============*/
.leftAnime-slide {
	opacity: 0; 
	transform: translateX(-100%); /* 初期状態では左に移動させる */
	transition: opacity 1.3s ease-in-out, transform 1.3s ease-in-out;
}
.slideAnimeLeftRight-slide {
	transform: translateX(0); /* 右に移動させる */
	opacity: 1; 
}
/*=========右から左のスライドアニメーション ===============*/
.rightAnime-slide {
	opacity: 0; 
	transform: translateX(-100%); /* 初期状態では右に移動させる */
	transition: opacity 1.3s ease-in-out, transform 1.3s ease-in-out;
}
.slideAnimeRightLeft-slide {
	transform: translateX(0); /* 左に移動させる */
	opacity: 1; 
}
/*/////////////Gナビ/////////////*/
div#nav-wrapper {
    position: fixed;
    width: 100%;
    z-index: 5;
}
/*gナビの帯*/
.header-inner {
    position: relative;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
@media (max-width: 991px){
.header-inner {
    height: 70px;
}
}
@media (max-width: 767px){
.header-inner {
    height: 60px;
    background-color: transparent;
}
}
/*ロゴ*/
.header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    pointer-events: auto;
    margin-right: 40px;
}
@media (max-width: 1440px){
.header-logo {
    width: 250px;
	padding-left: 20px;
}
}
@media (max-width: 1199px){
.header-logo {
	padding-left: 20px;
	margin-right: 0px;
}
}
@media (max-width: 767px){
.header-logo {
	padding-left: 21px;
	width: 268px;
}
}
@media (max-width: 320px){
.header-logo {
	padding-left: 12px;
	width: 235px;
}
}
/*左側ナビ*/
.header-nav {
    display: flex;
    opacity: 1;
    padding-left: 50px;
}
@media (max-width: 1730px){
.header-nav {
    padding-left: 20px;
}
}
@media (max-width: 1420px){
.header-nav {
    padding-left: 0px;
}
}
.header-nav > ul,.header-nav-left > ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header-nav > ul,.header-nav-right > ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	margin: 20px 0rem 0rem;
}
@media (max-width: 991px){
.header-nav > ul,.header-nav-right > ul{
    margin: 9px 0rem 0rem;
}
}
@media (max-width: 1337px){
ul.header-nav-left {
    display: none;
}
}
@media (max-width: 1199px){
ul.header-nav-left{
	display: none;
}
}
@media (max-width: 1199px){
a.header-nav-right-none {
	display: none;
}
}
nav.header-nav-right {
    padding-right: 110px;
}
@media (max-width: 1730px){
nav.header-nav-right {
    padding-right: 75px;
}
}
ul.header-nav-right li{
    padding-top: 23px;
	margin-right: 25px;
	color: #5C5C5C;
}
@media (max-width: 1565px){
ul.header-nav-right li{
    margin-right: 15px;
}
}
li.mebius {
    margin: -7px 0px 0px 25px;
}
@media (max-width: 1565px){
li.mebius {
    margin: -7px 0px 0px 5px;
}
}
@media (max-width: 767px){
a.mebius-icon-none {
	display: none;
}
}
/*電話*/
.header-inner-upper-row {
    display: flex;
    justify-content: center;
    align-items: center;
}
/*Tel*/
.header-upper-text {
    font-size: 13px;
    font-weight: 500;
}
@media (max-width: 1850px){
.header-upper-text {
	display: none;
}
}
.header-upper-telicon {
	display: none;
}
@media (max-width: 1850px){
.header-upper-telicon {
	display: block;
	margin-right: 10px;
}
}
.header-upper-text span{
    font-weight: 500;
    font-size: 13px;
	color: #0090F9;
}
.header-pc-phone{
	border-radius: 50px;
    background: #1C6ECE;
    padding: 10px;
    color: #fff;
}
.header-upper-tel span{
    font-weight: 600;
    font-size: 35px;
 	font-family: "Poppins", sans-serif;
	color: #0090F9;
}
.header-upper-tel {
    margin: 0px 40px 0px 15px;
    display: flex;
    align-items: center;
}
@media (max-width: 1730px){
.header-upper-tel {
    margin: 0px 45px 0px 15px;
}
}
@media (max-width: 1420px){
.header-upper-tel {
	margin: 0px 20px 0px 15px;
}
}
@media (max-width: 767px){
.header-upper-tel {
	display: none;
}
}
/*会員ログイン 資料請求 スライドボタン*/
#g-nav-user,#g-nav-documen-requestr{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	border-radius: 50px;
}
#g-nav-user-grop,#g-nav-documen-requestr-grop{
	position: relative;
	overflow: hidden;
	cursor: pointer;
	text-align: center;
    border-radius: 54px;
	padding: 12px 26px;
}
#g-nav-user_icon,#g-nav-documen-requestr_icon{
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease-Out;
  padding: 0;
  bottom: 0;
  left: -310px;
}
#g-nav-user-grop:hover #g-nav-user_icon,#g-nav-documen-requestr-grop:hover #g-nav-documen-requestr_icon{
  left: 0;
}
#g-nav-user-grop:hover .button_inner,#g-nav-documen-requestr-grop:hover .button_inner{
    left: 290px;
}
#g-nav-user-grop .button_inner,#g-nav-documen-requestr-grop .button_inner{
	position: relative;
	left: 0;
	transition: all .35s ease-Out;
	color: #fff;
    font-size: 14px;
    font-weight: 500;
}
@media screen and (max-width:1199px) {
#g-nav-user-grop a,#g-nav-documen-requestr-grop a{
  font-size: 16px;
}
}
/*会員ログイン*/
#g-nav-user.g-nav-user{
	border: solid 1px #000;
	background: #000;
}
#g-nav-user:hover{
  border: solid 1px #000;
}
#g-nav-user_icon.g-nav-user_icon{
  background: #000;
  color: #fff;
}
a.g-nav-user-margin {
    margin-right: 20px;
}
/*資料請求*/
#g-nav-documen-requestr.g-nav-documen-requestr{
	border: solid 1px #00BCF8;
	background: #00BCF8;
}
#g-nav-documen-requestr:hover{
  border: solid 1px #00BCF8;
}
#g-nav-documen-requestr_icon.g-nav-documen-requestr_icon{
  background: #00BCF8;
  color: #fff;
}
/*ナビメニュー　文字*/
.header.header-item {
    margin-right: 25px;
    font-weight: 500;
}
@media (max-width: 1366px){
.header.header-item {
    font-size: 13px;
}
}
li.header.header-item.accordion-header1,li.header.header-item.accordion-header2,li.header.header-item.accordion-header3,li.header.header-item.accordion-header4 {
    display: inline-block;
    position: relative;
}
@media (max-width: 1510px){
ul.accordion-header_box.accordion-header_box-company {
    left: -13vw;
}
}
@media (max-width: 1670px){
li.header.header-item.header-item-none {
     display: none; 
}
}
ul.accordion-header_box {
    opacity: 0;
    position: absolute;
    list-style: none;
    visibility: hidden;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: 9999;
    display: flex;
    text-align: center;
    flex-direction: column;
    color: #fff;
}
li.header.header-item.accordion-header--item:hover ul.accordion-header_box{
    opacity: 1;
    position: absolute;
    visibility: visible;
    background: rgb(0, 174, 248);
    padding: 30px 40px;
	border-radius: 5px;
    display: flex;
    justify-content: center;
}
.header-product-menu a{
    color: #fff;
}
.header-product-menu a:hover{
	color: #d6e8f5!important;
}
p.accordion-header-product-title {
    font-size: 18px;
    text-align: left;
}
p.accordion-header-product-title span{
    border-bottom: solid 1px #fff;
}
.accordion-header-product-title-item{
	color: #005DA0;
	font-size: 12px;
}
/*企業情報 パートナー*/
.accordion-header-company-menu,.accordion-header-partner-menu{
    display: flex;
    gap: 30px;
    text-align: left;
     font-size: 14px;
}
a.header-partner-menu.accordion-header-company-title-item-t:hover{
	color: #d6e8f5!important;
}
p.accordion-header-company-title-item-t {
    color: #fff;
    margin: 5px 0px 0px 5px;
}
p.accordion-header-company-title-item-t:hover{
	color: #d6e8f5!important;
}
li.header.header-item.accordion-header1:hover ul.accordion-header_box{
    width: 680px!important;
}
li.header.header-item.accordion-header2:hover ul.accordion-header_box{
    width: 1020px!important;
}
li.header.header-item.accordion-header3:hover ul.accordion-header_box{
    width: 390px !important;
	justify-content: center;
    text-align: left;
    line-height: 2em;
}
li.header.header-item.accordion-header4:hover ul.accordion-header_box{
    width: 250px!important;
    margin-top: 16%;
}
li.header.header-item.accordion-header1 li,li.header.header-item.accordion-header2 li,li.header.header-item.accordion-header3 li,li.header.header-item.accordion-header4 li{
    padding: 0px 17px;
}
li.header.header-item.accordion-header1 li a,li.header.header-item.accordion-header2 li a,li.header.header-item.accordion-header3 li a,li.header.header-item.accordion-header4 li a{
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.05em;
}
li.header.header-item.accordion-header1 li a:hover,li.header.header-item.accordion-header2 li a:hover,li.header.header-item.accordion-header3 li a:hover,li.header.header-item.accordion-header4 li a:hover{
    transition: all 0.3s ease 0s;
    color: #d6e8f5;
}
p.accordion-header_box_title {
    margin-bottom: 0rem;
}
.accordion-header-product-menu {
    display: flex;
    justify-content: space-between;
	text-align: left;
}
p.accordion-header-product-title-item-t {
    font-size: 14px;
}
/*ナビメニュー　文字リンク*/
.header-link {
    position: relative;
    color: #313233;
    display: block;
	padding-top: 22px;
	-webkit-transition: color 0.5s ease-out;
    transition: color 0.5s ease-out;
    height: 80px;
	font-size: 14px;
}
a.header-link:hover {
    color: #0090F9;
    transition: color 0.5s ease-out;
}
li.hamburger-item {
    margin-right: 50px!important;
}
li.hamburger-item::marker{
   display: none!important;
	color: transparent;
}
.facebook-color-svg{
	transition: all 0.3s ease 0s;
	fill: #BABABA;
}
.facebook-color-svg:hover{
	fill: #1877F2;
}
.youtube-color-svg{
	transition: all 0.3s ease 0s;
	fill: #BABABA;
}
.youtube-color-svg:hover{
	fill: #FF0000;
}
.instagram-color-svg{
	transition: all 0.3s ease 0s;
	fill: #BABABA;
}
.instagram-color-svg:hover{
	fill: #FF0000;
}
.x-color-svg{
	fill: #BABABA;
}
.x-color-svg:hover{
	fill: #000;
}
@media (max-width: 1439px){
.facebook-color-svg,.youtube-color-svg,.instagram-color-svg,.x-color-svg{
	display: none;
}
}
/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: absolute;
  right: 50px;
  top: 30px;
  width: 35px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
    transform: rotate(-13deg);
}
@media (max-width: 1730px){
.hamburger {
    right: 20px;
}
}
@media (max-width: 1565px){
.hamburger {
    right: 10px;
}
}
@media (max-width:991px){
.hamburger {
    top: 15px;
}
}
@media (max-width: 767px){
.hamburger {
	top: 17px;
	right: 25px;
}
}
.hamburger__line {
  position: absolute;
  width: 36px;
  height: 1px;
  right: 0;
  background-color: #000;
  transition: all 0.5s;
}
.hamburger__line--1 {
	top: 3px;
}
.hamburger__line--2 {
    top: 19.5px;
    left: -5px;
}
@media (max-width: 767px){
.hamburger__line--2 {
  top: 13px;
}
}
.hamburger__line--3 {
	top: 36px;
    left: -8px;
}
@media (max-width: 767px){
.hamburger__line--3 {
  top: 23px;
}
}
/*ハンバーガーがクリックされたら*/
.open .hamburger__line--3 {
    transform: rotate(70deg);
    top: 13px;
    left: -2px;
}
/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%; 
	/*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 100%; /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #fff;
  background-color: rgba(255,255,255,0.9);
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}
.sp-nav-grop {
    display: flex;
    padding: 8% 8% 0%;
    justify-content: space-between;
	font-weight: 600;
}
@media (max-width: 1730px){
.sp-nav-grop {
    padding: 3.5vw 8% 0%;
}
}
@media (max-width: 767px){
.sp-nav-grop {
    flex-direction: column;
    padding: 0%;
    justify-content:center;
}
}
.sp-nav-grop-contents {
    width: 47%;
}
@media (max-width: 767px){
.sp-nav-grop-contents {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
}
}
@media (max-width: 1199px){
.sp-nav-grop-contents.sp-nav-grop-contents1 {
    display: none;
}
}
.sp-nav-grop-contents.sp-nav-grop-contents2 {
    margin-left: 5%;
}
@media (max-width: 1199px){
.sp-nav-grop-contents.sp-nav-grop-contents2 {
    margin-left: 0%;
}
}
@media (max-width: 767px){
.sp-nav-grop-contents.sp-nav-grop-contents2,.sp-nav-grop-contents.sp-nav-grop-contents3,.sp-nav-grop-contents.sp-nav-grop-contents4 {
    display: none;
}
}
/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: rgba(255,255,255,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}
@media (max-width: 767px){
.black-bg {
  background-color: rgba(255,255,255,1);
}
}
/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.9;
  visibility: visible;
}
/*ハンバーガーメニュー左側----------------------------*/
/*資料請求 採用情報 両方共通*/
.sp-nav-square {
    display: flex;
    justify-content: center;
    align-items: center;
	width: 320px;
	height: 270px;
	font-size: 14px;
}
@media (max-width: 1730px){
.sp-nav-square {
    width: 270px;
    height: 220px;
}
}
@media (max-width: 1320px){
.sp-nav-recruit-white{
    width: 270px;
    height: 220px;
}
}
/*資料請求---------------*/ 
/*外側*/
.sp-nav-square.sp-nav-guldebook-form{
    background: linear-gradient(206deg, #00AEF8 -3.37%, #B6FFA4 118.57%);
}
.sp-nav-guldebook-form-white{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 310px;
    height: 260px;
}
/*文字をグラデから白 上*/
.sp-nav-guldebook-form-white:hover{
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/*グラデ文字から白 下*/
.sp-nav-guldebook-form span.gulde-j {
    color: #00AEF8; 
    font-weight: 400;
}
.sp-nav-guldebook-form span.gulde-j:hover{
    color: transparent;
    background: linear-gradient(221deg, #fff -37.21%, #fff 196.34%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media (max-width: 1730px){
.sp-nav-guldebook-form-white{
    width: 260px;
    height: 210px;
}
}
.sp-nav-guldebook-form-white{
 	color: #00AEF8;
    font-weight: 400;
}
.sp-nav-recruit-white{
 	color: #000;
}
/*採用情報---------------*/
/*外側*/
.sp-nav-square.sp-nav-recruit {
background: linear-gradient(206deg, #FF6D13 -3.37%, #F9E95C 118.57%);
    margin-top: 35px;
}
.sp-nav-recruit-white{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 310px;
    height: 260px;
}
@media (max-width: 1730px){
.sp-nav-recruit-white{
    width: 260px;
    height: 210px;
}
}
/*文字をグラデから白 上*/
.sp-nav-recruit-white:hover{
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.sp-nav-square.sp-nav-recruit span{
    color: #FF6D13; 
    font-weight: 400;
}
.sp-nav-guldebook-form span.gulde-j:hover{
    color: transparent;
    background: linear-gradient(221deg, #fff -37.21%, #fff 196.34%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.sp-nav-guldebook-form span:nth-of-type(2),.sp-nav-recruit span:nth-of-type(2){
	font-size: 25px;
}
@media (max-width: 1320px){
.sp-nav-guldebook-form-white,.sp-nav-recruit-white{
    width: 260px;
    height: 210px;
}
}
/*会員ログイン*/
#sp-nav-user-tablet{
	display:none;
}
#sp-nav-user{
	width: 215px;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 36px;
    border: 1.5px solid #2A90DE;
    margin-top: 40px;
}
@media (max-width: 1199px){
#sp-nav-user-tablet{
	width: 215px;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 36px;
    border: 1.5px solid #2A90DE;
    margin-top: 40px;
}
}
#sp-nav-user-grop,#sp-nav-user-grop-tablet{
	position: relative;
	overflow: hidden;
	cursor: pointer;
	text-align: center;
    border-radius: 54px;
	padding: 12px 26px;
}
#sp-nav-user_icon,#sp-nav-user_icon-tablet{
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease-Out;
  padding: 0;
  bottom: 0;
  left: -310px;
}
#sp-nav-user-grop:hover #sp-nav-user_icon,#sp-nav-user-grop-tablet:hover #sp-nav-user_icon-tablet{
  left: 0;
}
#sp-nav-user-grop:hover .button_inner,#sp-nav-user-grop-tablet:hover .button_inner{
    left: 290px;
}
#sp-nav-user-grop .button_inner,#sp-nav-user-grop-tablet .button_inner{
	position: relative;
	left: 0;
	transition: all .35s ease-Out;
	color: #0090F9;
	font-size: 14px;
    font-weight: 500;
}
@media screen and (max-width:1199px) {
#g-nav-user-grop a,#g-nav-documen-requestr-grop a{
  font-size: 16px;
}
}
.copyright.copyright-sp {
    color: #0092D0;
    font-size: 11px;
    margin-top: 30px;
}
/*ハンバーガーメニュー左側から２番目----------------------------*/
p.sp-navmenu-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
}
ul.sp-nav_left {
	font-size: 14px;
    font-weight: 400;
    margin-left: 20px;
}
@media (max-width: 991px){
ul.sp-nav_left {
	font-size: 13px;
}
}
@media (max-width: 991px){
ul.sp-nav_left {
    margin-left: 0px;
}
}
@media (max-width: 767px){
ul.sp-nav_left {
	border-top: solid 1px transparent;
    display: block;
    margin: auto;
    text-align: center;
}
}
ul.sp-nav_left a li{
    margin-bottom: 13px;
	color: #000;
}
ul.sp-nav_left a li:hover{
	transition: all 0.3s ease 0s;
	color: #0090F9;;
}
ul.sp-nav_alone {
    margin-top: 105px;
    font-size: 18px;
    font-weight: 400;
}
@media (max-width: 1730px){
ul.sp-nav_alone {
    margin-top: 60px;
}
}
@media (max-width: 991px){
ul.sp-nav_alone {
    font-size: 16px;
}
}
ul.sp-nav_alone a li{
	color: #000;
}
ul.sp-nav_alone li{
    margin-bottom: 32px;
}
ul.sp-nav_alone li:hover{
	transition: all 0.3s ease 0s;
	color: #0090F9;;
}
/*ハンバーガーメニュー左側から3番目----------------------------*/
p.sp-navmenu-smalltitle {
    color: #B6B6B6;
    font-size: 12px;
    margin-left: 20px;
}
.sp-nav-grop-contents.sp-nav-grop-contents3 p.sp-navmenu-smalltitle:nth-of-type(3),.sp-nav-grop-contents.sp-nav-grop-contents3 p.sp-navmenu-smalltitle:nth-of-type(4){
	margin-top: 31.5px;
}
p.sp-navmenu-subtitle.sp-navmenu-subtitle-gray {
    color: #797979;
}
/*ハンバーガーメニュー左側から4番目----------------------------*/
.sp-nav-teltext-item {
    margin-top: 78.5px;
    font-size: 20px;
}
@media screen and (max-width:1320px) {
.sp-nav-teltext-item {
	font-size: 18px;
}
}
@media screen and (max-width:991px) {
.sp-nav-teltext-item {
	font-size: 16px;
}
}
.sp-nav-teltext-item span{
    color: #0090F9;
	font-size: 13px;
}
.sp-nav-tel-item {
    font-weight: 600;
    color: #0090F9;
    font-family: "Poppins", sans-serif;
    font-size: 35px;
}
@media screen and (max-width:1320px) {
.sp-nav-tel-item {
	font-size: 30px;
}
}
@media screen and (max-width:991px) {
.sp-nav-tel-item {
	font-size: 28px;
}
}
img.sp-nav-logo {
    margin: 60px 0px 35px;
}
ul.sp-nav_left.sp-nav_left-gary {
    margin-left: 0px;
}
@media screen and (max-width:767px) {
ul.sp-nav_left.sp-nav_left-gary {
    text-align: center;
    margin: 20px 0px;
	font-size: 14px;
}
}
ul.sp-nav_left.sp-nav_left-gary li{
    color: #818181;
}
ul.sp-nav_left.sp-nav_left-gary li:hover{
	transition: all 0.3s ease 0s;
	color: #0090F9;;
}
/*ハンバーガーメニューSP*/
.section.faq-bg {
    background: #E9F5FF;
    padding: 15px 0px 130px;
}
@media (max-width:991px){
.section.faq-bg {
    padding: 15px 0px 60px;
}
}
@media (max-width:767px){
.section.faq-bg {
	padding: 15px 0px 30px;
}
}
.faq-contents {
    margin-top: 65px;
}
@media (max-width:767px){
.faq-contents {
	margin-top: 32px;
	text-align: center;
	font-size: 14px;
}
}
.accordion-item{
  width: 100%;
  margin: 0 auto;
    margin-bottom: 20px;
}
.accordion-header{
  transition: ease-in-out 100ms;
}
@media (max-width:767px){
.accordion-wrap-only:nth-of-type(1) {
	border-top: 1px solid #B6B6B6;
}
.accordion-wrap-only {
    padding: 20px 0px;
	border-top: 1px solid #B6B6B6;
	color: #000;
}
}
@media (max-width:767px){
.accordion-wrap {
    background: #FFF;
    padding: 20px 0px 0px;
    cursor: pointer;
    position: relative;
	border-top: 1px solid #B6B6B6;
}
.accordion-wrap:nth-of-type(3) {
	border-bottom: 1px solid #B6B6B6;
}
}
.accordion-wrap-menu {
    display: inline-block;
    width: 85%;
}
.accordion-wrap-icon {
    position: absolute;
    right: 25px;
    top: 20px;
}
@media (max-width:767px){
.accordion-wrap-icon {
	right: 13px;
}
}
@media (max-width:767px){
.accordion-text{
    display: none;
	background: #F0F0F0;
    margin-top: 20px;
	border-top: 1px solid #B6B6B6;
 }
.accordion-text ul{
    margin-bottom: 0rem;
 }
 }
.fa{
  transition: ease-in-out 300ms;
 }
.rotate-fa{
  transform: rotate(180deg);
 }
@media (max-width:767px){
.accordion-header .fa{
    line-height: 3px;
}
}
.accordion-gray{
  color: #848687;
 }
.accordion-no-bar{
  border-bottom: 0;
}
@media (max-width:767px){
p.qa_a.font_Noto-bold {
    font-size: 13px;
}
}
/*アコーディオンメニュー*/
.accordion-sp-heading {
    list-style-type: none !important;
    padding-left: 1em!important;
    text-indent: -1em!important;
    margin-bottom: 0rem;
}
@media (max-width:991px){
.accordion-sp-heading {
	font-size: 20px;
    padding-left: 0em!important;
    text-indent: 0em!important;
}
}
@media (max-width:767px){
.accordion-sp-heading {
    font-size: 13px;
}
}
@media (max-width:767px){
.accordion-sp-heading {
    line-height: 1rem;
}
}
@media (max-width:767px){
p.q-text {
	font-size: 13px;
	border-bottom: 1px solid #B6B6B6;
	padding: 20px 0px;
	color: #000;
    list-style-type: none !important;
    line-height: 1.5em;
    margin-bottom: 0rem;
    font-size: 14px;
}
}
/*A 文字のテキスト*/
span.qa_a {
	font-size: 15px;
    line-height: 1.5rem;
}
@media (max-width:991px){
span.qa_a {
	font-size: 13px;
    line-height: 1.3rem;
}
}
/*スマホ表示*/
.sp-nav-grop-phone {
    display: none;
}
@media (max-width:767px){
.sp-nav-grop-phone {
    display: block;
    padding-top: 60px;
}
}
.sp-nav-menu {
    text-align: center;
    font-size: 17px;
    font-weight: 400;
}
.sp-nav-menu span{
    color: #0090F9;
    font-weight: 500;
    font-size: 14px;
}
.sp-nav-tel-grop {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sp-nav-menu-tel-item span{
    font-weight: 600;
	margin-left: 8px;
    color: #000;
    font-size: 30px;
    font-family: "Poppins", sans-serif;
}
.sp-nav-grop-phone-bottom-grop {
    width: 98%;
    margin: auto;
}
/*グラデボタン*/
.sp-nav-grop-phone-bottom {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.sp-nav-grop-phone-bottom a{
    width: 49%;
	color: #fff;
}
.sp-nav-grop-phone-bottom a:hover{
	color: #000;
    transition: all 0.3s ease 0s;
}
/*グラデボタン＞資料請求　ブルー*/
.spnav-phone-buttan.spnav-blue-gradation {
    border-radius: 100px;
    background: linear-gradient(206deg, #00AEF8 -3.37%, #B6FFA4 118.57%);
	padding: 13px;
    width: 100%;
}
/*グラデボタン＞採用情報オレンジ*/
.spnav-phone-buttan.spnav-orange-gradation {
	border-radius: 100px;
	background: linear-gradient(206deg, #FF6D13 -3.37%, #F9E95C 118.57%);
    padding: 13px;
    width: 100%;
}
/*ブルー枠＞会員ログイン*/
.spnav-phone-buttan.spnav--blue-waku {
    border-radius: 36px;
    border: 1.5px solid #2A90DE;
    text-align: center;
    padding: 13px;
    width: 98%;
    margin: auto;
    margin-top: 15px;
}
.spnav-phone-buttan.spnav--blue-waku:hover{
    transition: all 0.3s ease 0s;
    background-color: #a9c4e1;
}
.copyright.spnav-phone-copyright {
    padding-bottom: 80px;
    font-size: 11px;
    color: #0092D0;
    font-weight: 500;
    text-align: center;
}
/*メイン*/
/*小さいい方のグラデーション線*/
.main-gradation-small{
    position: absolute;
    z-index: 2;
    mix-blend-mode: multiply;
    top: 14vw;
}
@media screen and (max-width:1199px) {
.main-gradation-small{
    top: 13vw;
    height: 16vw;
}
}
@media screen and (max-width:1024px) {
.main-gradation-small{
	left: -5%;
	top: 17vw;
	height: 148px;
}
}
@media screen and (max-width:991px) {
.main-gradation-small{
	left: -7%;
	top: 13%;
	height: 117px;
}
}
@media screen and (max-width:767px) {
.main-gradation-small{
	top: 123vw;
	width: 40%;
	height: 49vw;
	left: 0%;
}
}
/*大きい方のグラデーション線*/
svg.main-gradation-big {
    position: absolute;
    z-index: 3;
    left: 9vw;
	mix-blend-mode: multiply;
    margin-top: 5%;
    height: 30vw;
}
@media screen and (max-width:1680px) {
svg.main-gradation-big {
    left: 5%;
}
}
@media screen and (max-width:1440px) {
svg.main-gradation-big {
    left: -1vw;
    height: 30vw;
    margin-top: 4vw;
}
}
@media screen and (max-width:1199px) {
svg.main-gradation-big {
	left: -10vw;
	height: 27vw;
}
}
@media screen and (max-width:1024px) {
svg.main-gradation-big {
    left: -18%;
}
}
@media screen and (max-width:991px) {
svg.main-gradation-big {
        left: -39vw;
        height: 35vw;
}
}
@media screen and (max-width:767px) {
svg.main-gradation-big {
    position: relative;
	margin-top: 0%;
	width: 89%;
	right: 30%;
	height: auto;
}
}
/*右側のグラデーション線*/
.main-gradation-right{
    position: absolute;
    z-index: 2;
    mix-blend-mode: multiply;
    right: 0%;
    top: 29vw;
    width: 26vw;
}
@media screen and (max-width:1760px) {
.main-gradation-right{
	top: 44%;
	width: 26%;
}
}
@media screen and (max-width:1690px) {
.main-gradation-right{
    top: 36%;
}
}
@media screen and (max-width:1440px) {
.main-gradation-right{
    top: 27vw;
    width: 22%;
}
}
@media screen and (max-width:1064px) {
.main-gradation-right{
	top: 29vw;
	width: 26%;
}
}
@media screen and (max-width:991px) {
.main-gradation-right{
	top: 17vw;
	width: 19%;
}
}
@media screen and (max-width:767px) {
.main-gradation-right{
	display: none;
}
}
.main-gradation-right-sp{
	display: none;
}
@media screen and (max-width:767px) {
.main-gradation-right-sp{
	display: block;
	position: absolute;
    z-index: 2;
    mix-blend-mode: multiply;
	right: 0vw;
	top: 124vw;
}
}
@media screen and (max-width:430px) {
.main-gradation-right-sp{
	top: 118vw;
}
}
/*メイン画像*/
img.main-img {
    position: relative;
    z-index: 2;
    width: 70%;
	right: 0;
    left: 30%;
    margin-top: 5%;
}
@media screen and (max-width:767px) {
img.main-img {
	display: none;
}
}
.main-img-sp{
	display: none;
}
@media screen and (max-width:767px) {
.main-img-sp{
	display: block;
    width: 100%;
    margin-top: -40%;
}
}
/*メイン画像下のグレー斜め線*/
img.main-img-square-1 {
    position: relative;
	width: 100vw;
    margin-top: -19vw;
	right: 0;
}
@media screen and (max-width:1199px) {
img.main-img-square-1 {
	margin-top: -80px;
}
}
@media screen and (max-width:1064px) {
img.main-img-square-1 {
	margin-top: -5vw;
	width: 100vw;
	left: 0vw;
}
}
@media screen and (max-width:991px) {
img.main-img-square-1 {
	margin-top: -5px;
}
}
.main-contents-text {
    position: absolute;
    z-index: 4;
    left: 5%;
    top: 26vw;
}
@media screen and (max-width:991px) {
.main-contents-text {
	bottom: 70%;
	left: 4%;
}
}
@media screen and (max-width:767px) {
img.main-img-square-1,.main-contents-text {
	display: none;
}
}
/*メインタイトル*/
p.main-contents-title {
    font-size: 2.5vw;
    font-weight: 700;
}
/*メイン下サブタイトル*/
p.main-contents-subtext {
    margin-top: 47px;
}
@media screen and (max-width:1199px) {
p.main-contents-subtext {
    font-size: 14px;
}
}
@media screen and (max-width:1024px) {
p.main-contents-subtext {
    font-size: 13px;
    margin-top: 30px;
}
}
@media screen and (max-width:991px) {
p.main-contents-subtext {
    font-size: 12px;
}
}
/*当社の特徴*/
.titie-gradation-box {
    margin-left: 12%;
}
/*画像*/
.our-features-grop-imgbox {
    position: relative;
	z-index: 1;
}
/*当社の特徴-----------------------------------------------------*/
.titie-gradation-box {
    margin-left: 12%;
    margin-top: -37%;
}
@media screen and (max-width:1064px) {
.titie-gradation-box {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-left: 0%;
	position: relative;
	margin-top: -43vw;
}
}
@media screen and (max-width:991px) {
.titie-gradation-box {
	margin-top: -50vw;
}
}
@media screen and (max-width:767px) {
.titie-gradation-box {
        margin-top: 9vw;
}
}
.our-features-grop-textbox{
    position: absolute;
    z-index: 2;
    width: 31.07vw;
	left: 49%;
    margin-top: -19%;
}
@media screen and (max-width:1760px) {
.our-features-grop-textbox{
    margin-top: -23%;
}
}
@media screen and (max-width:1600px) {
.our-features-grop-textbox{
	margin-top: -25%;
	left: 53%;
}
}
@media screen and (max-width:1440px) {
.our-features-grop-textbox{
	left: 48%;
	width: 47vw;
}
}
@media screen and (max-width:1260px) {
.our-features-grop-textbox{
	margin-top: -25%;
	left: 48%;
	width: 43vw;
}
}
@media screen and (max-width:1199px) {
.our-features-grop-textbox{
	font-size: 14px;
}
}
@media screen and (max-width:1064px) {
.our-features-grop-textbox{
	font-size: 13px;
	margin-top: -27%;
}
}
@media screen and (max-width:991px) {
.our-features-grop-textbox{
	position: unset;
	width: 90%;
	margin: auto;
	margin-bottom: 50px;
}
}
@media screen and (max-width:767px) {
.our-features-grop-textbox{
    width: 97%;
	left: 0%;
	padding-top: 10px;
	margin: auto;
}
}
.h2-titie-gradation{
    font-family: "Nixie One", system-ui;
    font-weight: 400;
	font-size: 60px;
	background: linear-gradient(93deg, #5BFF00 -31.25%, #4356FF 113.28%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media screen and (max-width:1199px) {
.h2-titie-gradation{
	font-size: 45px;
}
}
@media screen and (max-width:991px) {
.h2-titie-gradation{
	font-size: 40px;
}
}
@media screen and (max-width:767px) {
.h2-titie-gradation{
	font-size: 50px;
}
}
@media screen and (max-width:360px) {
.h2-titie-gradation{
	font-size: 45px;
}
}
.h3-titie{
	font-weight: 500;
	font-size: 22px;
}
@media screen and (max-width:1199px) {
.h3-titie{
	font-size: 18px;
}
}
@media screen and (max-width:767px) {
.h3-titie{
	text-align: center;
}
}
.our-features-img{
    width: 51%;
	margin-top: 25px;
}
@media screen and (max-width:1440px) {
.our-features-img{
	width: 47%;
}
}
@media screen and (max-width:1024px) {
.our-features-img{
	width: 45%;
}
}
@media screen and (max-width:991px) {
.our-features-img{
	display: none;
}
}
p.our-features-text {
    font-weight: 400;
    line-height: 2em;
}
svg.our-features-gradation-img {
    position: absolute;
    z-index: 2;
    mix-blend-mode: multiply;
    right: 34%;
    margin-top: 4%;
}
@media screen and (max-width:1760px) {
svg.our-features-gradation-img {
    margin-top: 2%;
    height: 190px;
}
}
@media screen and (max-width:1600px) {
svg.our-features-gradation-img {
	margin-top: -2%;
	right: 30%;
}
}
@media screen and (max-width:1199px) {
svg.our-features-gradation-img {
	margin-top: -2%;
	right: 28%;
	height: 150px;
}
}
@media screen and (max-width:991px) {
svg.our-features-gradation-img {
	margin-top: -8%;
	right: 22%;
	height: 123px;
}
}
@media screen and (max-width:767px) {
svg.our-features-gradation-img {
	display: none;
}
}
/*もっと詳しく ボタンPC*/
.c-button a {
    width: 200px;
    margin-top: 37px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 10px 10px 40px;
    font-weight: 600;
    text-align: center;
    color: #000;
    border-radius: 52px;
    position: relative;
    overflow: hidden;
    z-index: 1;
	font-size: 14px;
    display: grid;
	transition: all 0.3s linear;
}
@media screen and (max-width:1600px) {
.c-button a {
    width: 35%;
}
}
.c-button.c-button-center-4 a {
    width: 200px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.c-button.c-button-center-6 a {
	width: 250px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 1300px) {
.c-button a {
    margin-top: 20px;
}
}
@media screen and (max-width: 1199px) {
.c-button a {
    margin-top: 25px;
}
}
@media screen and (max-width: 991px) {
.c-button a {
    width: 30%;
}
}
@media screen and (max-width: 767px) {
.c-button a {
    display: grid;
	margin: auto;
    text-align: left;
    font-size: 14px;
    width: 225px;
    height: 50px;
    padding-left: 27px;
}
}
.c-button a::before, .c-button a::after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 1300px) {
 .c-button a::before, .c-button a::after {
    width: 30px;
}
}
@media screen and (max-width: 1199px) {
 .c-button a::before, .c-button a::after {
    width: 40px;
}
}
.c-button a::before {
    background: #000;
    left: min(min(var(--vw, 1vw), var(--svh, 1vh))* 40 / 768* 100, 20px);
    width: min(min(var(--vw, 1vw), var(--svh, 1vh))* 8 / 768* 100, 5px);
    height: min(min(var(--vw, 1vw), var(--svh, 1vh))* 8 / 768* 100, 5px);
    border-radius: 50%;
    z-index: 0;
}
.c-button a:hover::before {
    background: #fff;
}
.c-button a::after {
	border-radius: 60px;
	border: 1px solid #2CAEEB;
	width: 40px;
    height: 40px;
	-webkit-transform: translate(0%, -60%);
	transform: translate(0%, -60%);
	z-index: -1;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
    margin-top: 4px;
}
.c-button a.c-font-outfit {
	letter-spacing: -0.04em;
}
.c-button a:hover {
    color: #fff;
}
.c-button a:hover::after {
    width: 100%;
    background: linear-gradient(0deg, #25A9EE 0%, #65D4DB 157.78%);
}
/*もっと詳しく ボタンSP*/
.c-button-sp {
    width: 100%;
    border-radius: 91px;
    background: linear-gradient(201deg, #A5FFC9 -84.03%, #0090F9 144.27%);
    text-align: center;
    margin: 20px 0px 0px;
    padding: 15px 0px;
	color: #fff;
    z-index: 3;
    position: relative;
}
@media screen and (max-width: 767px) {
.c-button-sp {
    margin: 20px 0px 35px;
	z-index: 3;
	position: relative;
}
}
a.c-button-sp {
	opacity: 0.5;
}
/*製品について*/
svg.products-small-img {
    position: absolute;
    z-index: 2;
    mix-blend-mode: multiply;
    right: 31%;
    margin-top: -4%;
}
@media screen and (max-width: 1199px) {
svg.products-small-img {
    right: 23%;
}
}
@media screen and (max-width: 767px) {
svg.products-small-img {
    display: none;
}
}
svg.products-small-img-sp {
    display: none;
}
@media screen and (max-width: 767px) {
svg.products-small-img-sp {
    display: block;
    position: absolute;
	z-index: 1;
	mix-blend-mode: multiply;
    right: 0%;
    margin-top: -8vw;
}
}
.products-bg{
	background-color: #F6F6F6;
	padding: 80px 0px;
    position: relative;
}
@media screen and (max-width: 767px) {
.products-bg{
    padding: 33px 0px 2px;
}
}
.titie-gradation-box.titie-gradation-box-normal {
    margin-top: 0%;
}
@media screen and (max-width: 767px) {
.container.container-sp {
    padding-right: 0px;
    padding-left: 0px;
}
}
.products-grop {
    color: #2A90DE;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-top: 33px;
}
@media screen and (max-width: 1199px) {
.products-grop {
    font-size: 16px;
    margin-top: 10px;
}
}
@media screen and (max-width: 767px) {
.products-grop {
    text-align: center;
}
}
@media screen and (max-width: 767px) {
.products-grop.products-grop2 {
    margin: 50px 0px 35px;
}
}
.products-grop span{
    border-bottom: 1px solid #2A90DE;
}
/*スライダー*/
.slider.introduction-example-center {
    display: flex;
    margin-top: 23px;
	gap: 19px; 
	justify-content: space-between;
}

@media screen and (max-width: 767px) {
.slider.introduction-example-center {
    overflow: auto;
    position: relative;
    z-index: 3;
    display: block;
}
}
.slider.introduction-example-center div{
    display: flex;
}
@media screen and (max-width: 1199px) {
.slider.introduction-example-center div{
    height: 300px;
}
}
@media screen and (max-width: 991px) {
.slider.introduction-example-center div{
	width: 100%;
	height: 270px;
	display: block;
	margin: auto;
	text-align: center;
}
}
@media screen and (max-width: 991px) {
.slide-content img {
	margin: 0 10px;
}
}
@media screen and (max-width: 991px) {
article.slide {
	margin: 0px 10px;
}
}
.slide-content {
	padding: 21px 16px;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.07);
    background-color: #fff;
    color: #000;
}
.products-grop-text {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    margin: 40px 0px 50px;
}
@media screen and (max-width: 767px) {
.products-grop-text {
	font-size: 13px;
	width: 96%;
	margin: auto;
    text-align: left;
    margin-top: 28px;
}
}
.slide-products-title {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0rem;
}
@media screen and (max-width: 991px) {
.slide-products-title {
    font-size: 12px;
    margin: 10px 0px;
}
}
p.slide-products-text {
    font-size: 13px;
    font-weight: 400;
    text-align: center;
}
/*SPのみボタン*/
/*戻る*/
span.is-prev-arrow.slick-arrow {
    position: absolute;
    z-index: 3;
    left: 23vw;
    top: 15vw;
    width: 47px;
    height: 47px;
    cursor: pointer;
    border-radius: 27.5px;
    border-radius: 35.25px;
    background: linear-gradient(27deg, #C2FFDA -25.69%, #0B94FC 113.04%);
    background-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
span.is-prev-arrow.slick-arrow{
    left: 14vw;
}
}
@media screen and (max-width: 430px) {
span.is-prev-arrow.slick-arrow{
    left: 12vw;
    top: 26vw;
}
}
@media screen and (max-width: 375px) {
span.is-prev-arrow.slick-arrow{
    left: 6vw;
}
}
@media screen and (max-width: 320px) {
span.is-prev-arrow.slick-arrow {
    left: 2vw;
    top: 28vw;
}
}
span.is-prev-arrow.slick-arrow:before {
    content: "\f060";
    display: inline-block;
    width: 23px;
    color: #fff;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    margin: 11px 17px;
}
/*進む*/
span.is-next-arrow.slick-arrow {
    position: absolute;
    z-index: 3;
    right: 23vw;
    top: 15vw;
    width: 47px;
    height: 47px;
    background: #F00;
    cursor: pointer;
    border-radius: 27.5px;
    border-radius: 35.25px;
    background: linear-gradient(27deg, #C2FFDA -25.69%, #0B94FC 113.04%);
    background-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
span.is-next-arrow.slick-arrow {
    right: 14vw;
}
}
@media screen and (max-width: 430px) {
span.is-next-arrow.slick-arrow{
    right: 12vw;
    top: 26vw;
}
}
@media screen and (max-width: 375px) {
span.is-next-arrow.slick-arrow{
    right: 6vw;
}
}
@media screen and (max-width: 320px) {
span.is-next-arrow.slick-arrow {
    right: 2vw;
    top: 28vw;
}
}
span.is-next-arrow.slick-arrow:after {
    content: "\f061";
    display: inline-block;
    width: 23px;
    color: #fff;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    margin: 11px 16px;
}
svg.products-big-img{
    position: absolute;
    z-index: 2;
    mix-blend-mode: multiply;
    margin-top: -6%;
    height: 28vw;
}
@media screen and (max-width: 1366px) {
svg.products-big-img{
    margin-top: -6%;
    height: 22vw;
    left: -6%;
}
}
@media screen and (max-width: 1024px) {
svg.products-big-img{
	left: -15%;
}
}
@media screen and (max-width: 991px) {
svg.products-big-img{
	left: -24%;
	height: 51vw;
}
}
@media screen and (max-width: 767px) {
svg.products-big-img{
	margin-top: -68vw;
	left: -18vw;
	height: 112vw;
	width: 100vw;
}
}
@media screen and (max-width: 550px) {
svg.products-big-img{
	height: 78vw;
}
}
@media screen and (max-width: 430px) {
svg.products-big-img{
	left: -60vw;
}
}
@media screen and (max-width: 375px) {
svg.products-big-img{
	margin-top: -105%;
	height: 135vw;
}
}
@media screen and (max-width: 320px) {
svg.products-big-img{
	margin-top: -120%;
	left: -98vw;
}
}
/*新着情報*/
section.top-new-bg {
	background-image: url("../img/new-bg.png");
    background-position: 30% bottom;
	background-repeat: no-repeat;
    height: 930px;
}
@media screen and (max-width: 767px) {
section.top-new-bg {
    background-image: none;
}
}
@media screen and (max-width: 430px) {
section.top-new-bg {
    height: 910px;
}
}
.h2-titie-gradation-center{
	text-align: center;
	padding-top: 90px;
}
@media screen and (max-width: 767px) {
.h2-titie-gradation-center {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding-top: 50px;
}
}
/*WP*/
.seminar-content {
    background: #FFF;
    width: 67%;
	margin: auto;
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 20px 13px;
}
@media screen and (max-width: 1199px) {
.seminar-content {
    width: 78%;
}
}
@media screen and (max-width: 991px) {
.seminar-content {
    width: 100%;
}
}
@media screen and (max-width: 767px) {
.seminar-content {
	margin-top: 0px;
	padding: 20px 0 0;
    border-bottom: solid 1px #898989;
	margin-bottom: 20px;
}
}
@media screen and (max-width: 767px) {
.top-new-bg-container {
    background: #fff;
	position: relative;
	z-index: 3;
	padding: 0px 0px 1px;
}
}
span.seminar-item-titlegrop-line{
	border-top: solid 1px #898989;
}
.seminar-article {
	cursor: pointer;
	position: relative;
}
@media (max-width:767px){
.seminar-article {
    width: 100%;
	padding: 20px 10px 20px;
	border-top: solid 1px #898989;
}
}
.seminar-item {
    display: flex;
	align-items: center;
}
@media (max-width:767px){
.seminar-item {
    flex-direction: column;
    justify-content: space-between;
    align-items: normal;
}
}
.seminar-wp-day {
    color: #818181;
	font-size: 15px;
    font-weight: 500;
    margin-bottom: 0rem;
    font-family: 'Montserrat', sans-serif;
}
@media (max-width:767px){
.seminar-wp-day {
    font-size: 15px;
	position: relative;
}
}
.seminar-item-titlegrop {
    margin-left: 5%;
    border-top: solid 1px #898989;
    padding: 20px 0px;
    width: 73%;
}
@media (max-width:767px){
.seminar-item-titlegrop {
    margin-left: 0%;
    width: 88%;
    border-top: solid 1px transparent;
    padding: 0px;
}
}
span.mein-a.cat-style {
    font-size: 10px;
    padding: 4px 10px;
    display: inline-block;
}
@media (max-width:767px){
span.mein-a.cat-style {
    position: absolute;
	top: 18px;
	left: 24vw;
}
}
@media (max-width:375px){
span.mein-a.cat-style {
	left: 27vw;
}
}
@media (max-width:320px){
span.mein-a.cat-style {
	left: 32vw;
}
}
.seminar-wp-title {
	font-size: 15px;
	font-weight: 400;
    margin: 8px 0px 0px;
    color: #000;
}
@media (max-width:767px){
.seminar-wp-title {
	font-size: 15px;
}
}
/*新着情報の矢印*/
.seminar-item--icon {
    color: #1C6ECE;
    font-weight: 500;
    font-size: 25px;
    position: absolute;
    right: 4%;
    top: 28%;
}
@media (max-width:767px){
.seminar-item--icon {
    bottom: 36%;
}
}
/*矢印の動き*/
.arrow-right-wp {
    position: absolute;
    content: '';
    top: 50%;
    -webkit-transform: translateX(0) translateY(-50%);
    -moz-transform: translateX(0) translateY(-50%);
    -ms-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
    width: 24px;
    height: 24px;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
}
.arrow-right-wp::before,.arrow-right-wp::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.arrow-right-wp::before {
    width: 15px;
    height: 15px;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-image: linear-gradient(to left, #2354FF, #6fb8df) 1;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 1px;
}
.arrow-right-wp::after {
    width: 24px;
    height: 1px;
    background: linear-gradient(to left, #2354FF, #6fb8df);
}
.seminar-article:hover .arrow-right-wp {
    -webkit-transform: translateX(8px) translateY(-50%);
    -moz-transform: translateX(8px) translateY(-50%);
    -ms-transform: translateX(8px) translateY(-50%);
    transform: translateX(8px) translateY(-50%);
}
/*採用情報*/
.recruit-grop-left {
    margin-left: 22%;
    margin-top: 50px;
    position: absolute;
	z-index: 2;
}
@media (max-width:1512px){
.recruit-grop-left {
    margin-left: 16%;
}
}
@media (max-width:1440px){
.recruit-grop-left {
    margin-left: 17%;
}
}
@media (max-width:1199px){
.recruit-grop-left {
	margin-left: 13%;
}
}
@media (max-width:1064px){
.recruit-grop-left {
    position: unset;
    margin-left: 3%;
}
}
@media (max-width:767px){
.recruit-grop-left {
    margin-left: 0%;
}
}
@media (max-width:991px){
img.recruit-text-img {
    margin-left: 0%;
    margin: auto;
    display: block;
}
}
@media (max-width:430px){
img.recruit-text-img {
	width: 85%;
	margin: auto;
}
}
p.recruit-text {
    margin: 45px 0px;
    line-height: 2em;
    width: 30vw;
}
@media (max-width:1512px){
p.recruit-text {
    width: 38vw;
}
}
@media (max-width:1440px){
p.recruit-text {
    width: 45%;
}
}
@media (max-width:1199px){
p.recruit-text {
    width: 55%;
}
}
/*採用サイトはこちらボタン*/
.c-button.c-button-10 a {
    width: 280px;
}
@media (max-width:1440px){
.c-button.c-button-10 a {
    width: 25%;
}
}
@media (max-width:1199px){
.c-button.c-button-10 a {
    width: 30%;
}
}
.c-button-10-grop {
    display: flex;
    justify-content: flex-start;
    padding-left: 25px;
}
.c-button-10-grop-left{
    padding-left: 15px;
}
img.recruit-img {
    top: -140px;
	width: 62%;
	margin-top: 25px;
    left: 100%;
    position: relative;
    transform: translateX(-100%);
}
@media (max-width:1440px){
img.recruit-img {
    width: 52%;
}
}
@media (max-width:1440px){
img.recruit-img {
	width: 59%;
	margin-top: 200px;
}
}
@media (max-width:1064px){
img.recruit-img {
    display: none;
}
}
img.recruit-img-sp {
    display: none;
}
@media (max-width:1064px){
img.recruit-img-sp {
    display:block;
     margin-top: 20px;
}
}
@media (max-width:1064px){
.recruit-grop {
    display: flex;
    flex-direction: column-reverse;
}
}
.recruit-img-grop {
    position: relative;
}
@media (max-width:1440px){
.recruit-img-grop {
    display: flex;
    flex-direction: column-reverse;
}
}
@media (max-width:1064px){
p.recruit-text {
    width: 97%;
    left: 0%;
    padding-top: 20px;
    margin: auto;
    font-size: 15px;
}
}
svg.main-gradation-right-recruit1 {
    position: absolute;
    z-index: 2;
    mix-blend-mode: multiply;
    margin-top: -43%;
    margin-top: -17%;
    right: 13vw;
}
@media (max-width:1440px){
svg.main-gradation-right-recruit1 {
	height: 26%;
	margin-top: -6vw;
    right: 10vw;
}
}
@media (max-width:1064px){
svg.main-gradation-right-recruit1 {
	display: none;
}
}
@media (max-width:767px){
svg.main-gradation-right-recruit1 {
	display: block;
	height: 134vw;
	margin-top: -95vw;
	right: 54vw;
}
}
@media (max-width:430px){
svg.main-gradation-right-recruit1 {
	height: 164vw;
	margin-top: -132vw;
	right: 21vw;
}
}
svg.main-gradation-right-recruit2 {
    position: absolute;
    z-index: 2;
    mix-blend-mode: multiply;
    margin-top: -31%;
    right: 0%;
    width: 46%;
    height: 33vw;
}
@media (max-width:1680px){
svg.main-gradation-right-recruit2 {
    margin-top: -35%;
    right: 0%;
    width: 46%;
    height: 36vw;
}
}
@media (max-width:1064px){
svg.main-gradation-right-recruit2 {
	display: none;
}
}
svg.main-gradation-right-recruit3{
    position: relative;
    z-index: 2;
    mix-blend-mode: multiply;
    margin-top: -9.6%;
	left: 80%;
}
@media (max-width:1512px){
svg.main-gradation-right-recruit3{
    margin-top: -11.6%;
}
}
@media (max-width:1440px){
svg.main-gradation-right-recruit3{
	margin-top: -8.6%;
	height: 10vw;
}
}
@media (max-width:1064px){
svg.main-gradation-right-recruit3{
	display: none;
}
}
svg.main-gradation-right-recruit2-sp {
	display: none;
}
@media (max-width:1064px){
svg.main-gradation-right-recruit2-sp {
    display: block;
    position: absolute;
    z-index: 2;
    mix-blend-mode: multiply;
	margin-top: -57%;
	right: 0%;
	width: 48%;
	height: 60vw;
}
}
@media (max-width:767px){
svg.main-gradation-right-recruit2-sp {
    z-index: 1;
}
}
@media (max-width:430px){
svg.main-gradation-right-recruit2-sp {
	margin-top: -74vw;
	right: 0%;
	width: 71%;
	height: 77vw;
}
}
/*footer*/
.footer-bg {
    background: linear-gradient(359deg, #ACFFF0 -46.35%, #026AE5 103.08%);
    padding: 55px 85px 60px;
}
@media (max-width:1064px){
.footer-bg {
    margin-top: 100px;
}
}
@media (max-width:991px){
.footer-bg {
    padding: 55px 45px 60px;
    margin-top: 55px;
}
}
@media (max-width:767px){
.footer-bg {
	background: #00AEF8;
    padding: 32px 0px 15px;
    margin-top: 0px;
}
}
ul.footer-menu {
    margin-top: 45px;
    display: flex;
    color: #fff;
}
@media (max-width:767px){
ul.footer-menu {
    display: none;
}
}
ul.footer-menu li{
	border-right: solid 1px #5DDFFB;
	padding: 0px 24px;
}
ul.footer-menu li a{
    color: #fff;
}
@media (max-width:991px){
ul.footer-menu li a{
    font-size: 14px;
}
}
ul.footer-menu li a:hover{
    color: #000;
	transition: color 0.5s ease-out;
}
ul.footer-menu li:nth-child(1){
	padding: 0px 24px 0px 0px;
}
ul.footer-menu li:nth-child(6){
	border-right: solid 0px transparent;
}
.footer-menu2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
@media (max-width:1240px){
.footer-menu2 {
    flex-direction: column;
}
}
@media (max-width:767px){
.footer-menu2 {
    display: none;
}
}
.footer-tel-grop {
    display: flex;
    color: #fff;
    border: solid 1px #fff;
    padding: 14px 30px;
	font-size: 17px;
	font-weight: 700;
    margin-top: 40px;
}
.footer-tel-grop span{
	font-size: 13px;
	font-weight: 700;
}
.footer-tel-text {
    margin-right: 25px;
}
.footer-tel-number {
    color: #fff;
    font-size: 37px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-left: solid 1px #fff;
    padding-left: 25px;
}
@media (max-width:767px){
img.footer-logo {
    display: block;
    margin: auto;
}
}
@media (max-width:375px){
img.footer-logo {
	width: 85%;
}
}
.sp-nav-menu-item-bottom-white {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width:1240px){
.sp-nav-menu-item-bottom-white {
    margin-top: 20px;
}
}
.sp-nav-menu-item-bottom-white a{
    margin-right: 20px;
}
@media (max-width:1240px){
.sp-nav-menu-item-bottom-white a{
    margin-right: 0px;
    margin-left: 20px;
}
}
/*お問い合わせ・資料請求*/
#footer-nav-contact,#footer-nav-contact{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	border-radius: 50px;
}
#footer-nav-user-grop,#footer-nav-contact-grop{
	position: relative;
	overflow: hidden;
	cursor: pointer;
	text-align: center;
    border-radius: 54px;
	padding: 12px 26px;
}
#footer-nav-user_icon,#footer-nav-contact_icon{
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease-Out;
  padding: 0;
  bottom: 0;
  left: -310px;
}
#footer-nav-user-grop:hover #footer-nav-user_icon,#footer-nav-contact-grop:hover #footer-nav-contact_icon{
  left: 0;
}
#footer-nav-user-grop:hover .button_inner,#footer-nav-contact-grop:hover .button_inner{
    left: 290px;
}
#footer-nav-user-grop .button_inner,#footer-nav-contact-grop .button_inner{
	position: relative;
	left: 0;
	transition: all .35s ease-Out;
	color: #0090F9;
    font-size: 14px;
    font-weight: 500;
}
@media screen and (max-width:1199px) {
#footer-nav-user-grop a,#footer-nav-contact-grop a{
  font-size: 16px;
}
}
/*会員ログイン*/
#footer-nav-user.g-nav-user{
	border: solid 1px #000;
	background: #000;
}
#footer-nav-user:hover{
  border: solid 1px #fff;
}
#footer-nav-user_icon.g-nav-user_icon{
  background: #000;
  color: #fff;
}
a.g-nav-user-margin {
    margin-right: 20px;
}
@media screen and (max-width:1420px) {
a.g-nav-user-margin {
    margin-right: 10px;
}
}
@media screen and (max-width:1420px) {
a.g-nav-user-margin {
    margin-right: 10px;
}
}
@media screen and (max-width:990px) {
a.g-nav-user-margin,div#g-nav-documen-requestr{
    display: none;
}
}
/*資料請求*/
#footer-nav-contact.g-nav-contact{
	border: solid 1px #00BCF8;
	background: #00BCF8;
}
#footer-nav-contact:hover{
  border: solid 1px #00BCF8;
}
#footer-nav-contact_icon.g-nav-contact_icon{
  background: #00BCF8;
  color: #fff;
}
div#footer-nav-contact,div#footer-nav-user {
    border: solid 1px #fff;
    background: #fff;
    border-radius: 72px;
}
/*コピーライト*/
.copyright_box {
    color: #0092D0;
    text-align: center;
    margin: 12px 0px 12px;
	font-size: 10px;
}
@media (max-width:767px){
.copyright_box {
    background: #00AEF8;
    color: #fff;
    margin: 0px;
}
}
.copyright_box a{
    color: #0092D0;
}
.copyright_box a span{
	border-bottom:solid 1px #0092D0;
    color: #0092D0;
}
@media (max-width:767px){
.copyright_box a span{
	border-bottom:solid 1px #fff;
    color: #fff;
}
}
.copyright_box a span:hover{
	border-bottom:solid 1px #000;
    color: #000;
	transition: color 0.5s ease-out;
}
.copyright.footer-copyright {
    margin-top: 10px;
}
@media (max-width:767px){
.copyright.footer-copyright {
    padding-bottom: 32px;
}
}