@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;
}

/*/////////////動き///////////////////////////////////////*/
/*========= ページ全体のフェードイン===============*/
body {
    opacity: 0;
    transition: opacity 0.25s ease;
}

/* 読み込み完了後に表示 */
body.page-loaded {
    opacity: 1;
}

/*========= 下からフェードインで出てくる===============*/
.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;
    top: 0;
}
/*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,
p.accordion-header-product-title a {
    font-size: 18px;
    text-align: left;
    color: #fff;
}
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; /* メニューが多くなったらスクロールできるように */
}

.sp-nav ul li {
    line-height: 1.5;
}
/*ハンバーガーがクリックされたら右からスライド*/
.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;
}
p.sp-navmenu-subtitle a {
    color: #000;
}
p.sp-navmenu-subtitle a:hover{
	transition: all 0.3s ease 0s;
	color: #0090F9;;
}
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: 15px;
	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: 90%; */
	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: 90%;
	/* 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%);
}
@media (max-width:767px){
    .arrow-right-wp {
        right: 10px;
    }
}
/*採用情報*/
.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%; */
    width: 90%;
    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%; */
    margin-top: -28%;
    right: 0%;
    width: 46%;
    height: 33vw;
}
@media (max-width:1680px){
svg.main-gradation-right-recruit2 {
    /* margin-top: -35%; */
    margin-top: -29%;
    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%; */
    margin-top: -45%;
	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; */
    margin-top: -67vw;
	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;
}
.copyright_box a{
    color: #0092D0;
}
.copyright_box a span{
	border-bottom:solid 1px #0092D0;
    color: #0092D0;
}
.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_box {
        background: #00AEF8;
        color: #fff;
        margin: 0px;
    }
    .copyright_box a span{
        border-bottom:solid 1px #fff;
        color: #fff;
    }
    .copyright.footer-copyright {
        padding-bottom: 32px;
    }
}


/* =======================================================
 下層ページ共通パーツ
======================================================= */

/* カラー */
:root {
    --primary-color: #0090F9;
    --accent-light-blue: #00BCF8;
    --accent-red: #DC000C;
    --text-color: #212529;
    --border-color: #c2c2c2;
}

/* タイトル類 */
.section-title {
    position: relative;
    margin-bottom: 3rem;
}
.section-title::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 52px;
    height: 1px;
    background-color: var(--accent-red);
}
.section-title__ja {
    position: absolute;
    top: 0;
    left: 80px;
    font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
    color: var(--accent-red);
    font-weight: 600;
    letter-spacing: 0.05em;
}
.section-title__en {
    font-family: "Nothing You Could Do", cursive;
    font-size: clamp(2.875rem, 2.375rem + 2.5vw, 4.25rem);
    font-size: clamp(2.25rem, 1.523rem + 3.64vw, 4.25rem);
    letter-spacing: 0.03em;
    display: block;
    padding-top: 36px;
}
.sub-section-title {
    margin-bottom: 2rem;
    text-align: center;
}
.sub-section-title__en {
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: .1em;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}
.sub-section-title__ja {
    font-size: clamp(1.5rem, 1.364rem + 0.68vw, 1.875rem);
    line-height: 1.6;
}
.block-title {
    position: relative;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
    font-size: clamp(1.313rem, 1.244rem + 0.34vw, 1.5rem);
}
.block-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 3.5em;
    height: 1px;
    background-color: var(--primary-color);
}
.lead-title {
    color: var(--primary-color);
    font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
    text-align: center;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 2.4rem;
}


/* .label-badge-num {
    position: relative;
    overflow: hidden;
    padding: 1rem 1rem 1rem 105px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    background-color: #ededed;
}
.label-badge-num:before {
    position: absolute;
    content: '';
    top: -150%;
    left: -100px;
    width: 185px;
    height: 280%;
    transform: rotate(25deg);
    background: var(--primary-color);
}
.label-badge-num span {
    display: block;
    z-index: 1;
    font-size: 2rem;
    padding-left: 16px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    margin-top: -2px;
} */

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 1rem;
    }
    .section-title::before {
        width: 42px;
    }
    .section-title__ja {
        left: 60px;
    }
    .lead-title {
        text-align: left;
    }
}

/* Utility */
.mb-60 {
    margin-bottom: 60px;
}
.mb-100 {
    margin-bottom: 100px;
}
.lead-text {
    text-align: center;
    margin-bottom: 2rem;
}
.block-item {
    margin-bottom: 4rem;
}
ol li,
ul li {
    line-height: 1.8;
}

@media (max-width: 767px) {
    .lead-text {
        text-align: left;
    }
    .block-item {
        margin-bottom: 3rem;
    }
}

/* テキストパーツ */
.section-lead {
    font-weight: 700;
    color: var(--primary-color);
    font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
    letter-spacing: .1em;
    line-height: 1.8;
}

.text-block p {
    line-height: 2;
}

.text-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .text-block p {
        line-height: 1.8;
    }
}

/* 枠 */
.section-wrapper {
    padding-top: 100px;
    position: relative;
}
.section-inner {
    width: 1240px;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}
.content-wrapper {
    max-width: 1140px;
    width: 90%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .section-wrapper {
        padding-top: 60px;
    }
    .section-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

}

@media (max-width: 991px){
    .content-wrapper {
        width: 100%;
    }
}

/* sub main */
.sub-main-contents {
    position: relative;
    margin-top: 100px;
    overflow: hidden;
}

.sub-main-contents .sub-main-contents-imgbox {
    position: relative;
    right: -8%;
    width: 85%;
    margin-right: 0;
    margin-left: auto;
}

.sub-main-contents .sub-main-square {
    position: absolute;
    top: -4vw;
    left: 10vw;
    z-index: -1;
}

.sub-main-contents .titie-gradation-box {
    display: block;
    position: absolute;
    top: 50%;
    margin-left: 5%;
}

.sub-main-gradation-right {
    position: absolute;
    z-index: 2;
    mix-blend-mode: multiply;
    right: 0%;
    top: 12vw;
    width: 26vw;
}

.sub-main-contents-imgbox img {
    width: 100%;
}

.sub-gradation-small-img {
    position: absolute;
    top: 15vw;
    left: -5vw;
}

/* 共通テーブル */
.common-table .table th,
.common-table .table td {
    background-color: var(--white);
    border-bottom: 1px solid #dee2e6;
    border-top: none;
    padding: 1.2rem 1rem;
}
.common-table .table th {
    border-bottom: 1px solid var(--primary-color) !important;
    color: var(--primary-color);
    font-weight: 400;
    width: 26%;
}
@media (max-width: 767px) {
    .common-table .table th,
    .common-table .table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .common-table .table th {
        padding-bottom: .7rem;
        padding-left: 0;
    }
    .common-table .table td {
        padding: .7rem 0;
        border: none;
    }
    .common-table .table tr {
        display: block;
    }
}

@media (max-width:767px){
    .sub-main-contents {
        margin-top: 0;
    }
    .sub-main-contents .sub-main-contents-imgbox {
        width: 150%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    .sub-main-contents .titie-gradation-box {
        position: static;
        margin-top: 20px;
    }

    .sub-main-contents .titie-gradation-box .h3-titie {
        text-align: left;
    }

    .sub-main-contents .titie-gradation-box .h2-titie-gradation {
        font-size: 45px;
    }

}

/*矢印の動き*/
.arrow-right {
    position: absolute;
    content: '';
    top: 50%;
    right: 28px;
    -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::before,
.arrow-right::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.arrow-right::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::after {
    width: 24px;
    height: 1px;
    background: linear-gradient(to left, #2354FF, #6fb8df);
}
.seminar-article:hover .arrow-right {
    -webkit-transform: translateX(8px) translateY(-50%);
    -moz-transform: translateX(8px) translateY(-50%);
    -ms-transform: translateX(8px) translateY(-50%);
    transform: translateX(8px) translateY(-50%);
}
@media (max-width:767px){
    .arrow-right {
        right: 10px;
    }
}

/* flex_２カラム */
.media-block {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}
.media-block-img {
    width: 36%;
    flex-shrink: 0;
}
.media-block-text {
    flex: 1;
}
@media screen and (max-width: 767px) {
    .media-block {
        flex-direction: column;
        gap: 1.5rem;
    }
    .media-block-img {
        width: 100%;
    }
}

/* flex_２カラム（画像bg） */
.media-visual {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}
.media-visual-img {
    background-size: cover;
    background-position: center;
    width: clamp(250px, 30vw, 400px);
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .media-visual {
        flex-direction: column;
        gap: 30px;
    }
    .media-visual-img {
        position: relative;
        top: 0;
        left: 50%;
        width: 100vw;
        height: 250px;
        transform: translateX(-50%);
        background-size: cover;
        background-position: center;
    }
}


/* 背景色ありセクション */
.bg-section {
    padding-top: 70px;
    padding-bottom: 70px;
    margin-top: 120px;
    background-color: #F6F6F6;
}
@media (max-width: 767px) {
    .bg-section {
        margin-top: 0;
    }
}

/* =======================================================
 製品一覧
======================================================= */
.products-list {
    padding-top: 100px;
    padding-bottom: 100px;
}
.product-item {
    position: relative;
}
.product-inner {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}
.product-img img {
    width: 220px;
    height: auto;
    flex-shrink: 0;
}
.product-text {
    flex: 1;
}
.product-category {
    font-size: 13px;
    color: var(--accent-red);
    margin-bottom: 4px;
}
.product-title {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 6px;
}
.product-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}
.product-item {
    padding: 24px 80px 24px 28px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-link {
    display: block;
    margin-bottom: 3rem;
}
.product-link:last-child {
    margin-bottom: 0;
}
.product-link:hover .product-item {
    box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

@media (max-width:767px){
    .products-list {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .product-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .product-item {
        padding: 21px 16px;
        border-radius: 0;
    }

    .product-desc {
        text-align: left;
    }

    .products-list .arrow-right {
        display: none;
    }

    .products-list .slick-dotted.slick-slider {
        margin-bottom: 0;
    }

    .products-list-slider .slick-slide {
        margin: 0px 10px;
    }

}

/* =======================================================
 各製品詳細
======================================================= */
/* クリックで横から出てくる */
ul.features-list-btn {
    display: flex;
    justify-content: center;
}
ul.features-list-btn li {
    display: inline-flex;
    padding: 8px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 22px;
    background: var(--primary-color);
    color: var(--white);
    margin: 0px 15px;
    cursor: pointer;
    line-height: 1.5;
}
@media (max-width: 767px) {
    ul.features-list-btn {
        flex-direction: column;
        align-items: normal;
    }
    ul.features-list-btn li {
        width: 100%;
        margin: 0px 0px 10px 0px;
        font-size: 13px;
        padding: 12px 25px;
    }

}
/* =======================================================
 企業情報
======================================================= */
/* サクセスの特徴 */
.company-features .content-wrapper {
    position: relative;
}
.features-img {
    position: absolute;
    bottom: -80px;
    right: 0;
    width: 40vw;
    max-width: 580px;
    z-index: -1;
}
.features-title,
.features-lead {
    margin-bottom: 3.5rem;
}
.features-title img {
    width: 50%;
    max-width: 580px;
}
.features-lead p {
    font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
    line-height: 2.4;
}
@media (max-width: 767px) {
    .features-title,
    .features-lead {
        margin-bottom: 2rem;
    }
    .features-title img {
        width: 70%;
    }
    .features-lead p {
        line-height: 2.2;
    }
}

/* サクセスの強み */
.strengths-item:not(:last-child) {
    margin-bottom: 45px;
}
.strengths-num {
    font-size: .8rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: .1em;
    text-align: center;
    background: var(--white);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px solid var(--primary-color);
}
.strengths-num span {
    font-size: 2rem;
    font-weight: 600;
    display: block;
    line-height: 1;
}
.strengths-title {
    color: var(--primary-color);
    font-size: 1.6rem;
}
.strengths-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.strengths-content {
    flex: 1;
}

/* ご挨拶 */
.greeting-img {
    background-image: url("../img/greeting-img.jpg");
}
.greeting-profile {
    display: inline-block;
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 0;
    letter-spacing: .1em;
}
.greeting-profile span {
    display: block;
}
.greeting-profile .profile-potision {
    font-size: .8rem;
}
.greeting-profile .profile-name {
    font-size: 1.4rem;
    margin: .3rem 0;
}
.greeting-profile .profile-name__en {
    color: #0090F9;
    font-size: .8rem;
}

/*沿革*/
.history-img {
    background-image: url("../img/history-img.jpg");
}
.history-list {
    position: relative;
    display: grid;
    row-gap: 30px;
    width: 100%;
}
.history-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 7px;
    bottom: 0;
    width: 1px;
    background-color: var(--primary-color);
}
.history-item {
    display: grid;
    grid-template-columns: 14px 1fr;
    grid-template-areas:
        "icon year"
        "icon detail";
    gap: 12px 24px;
    position: relative;
}
.history-item::before {
    content: "";
    grid-area: icon;
    width: 14px;
    aspect-ratio: 1;
    margin-top: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}
.history-year {
    grid-area: year;
    font-weight: 600;
    border-bottom: 1px solid  var(--border-color);
    margin: 0;
    padding-bottom: 6px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: .8rem;
}
.history-year-num {
    font-size: 1.1rem;
    letter-spacing: .1em;
}
.history-detail {
    grid-area: detail;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 20px;
    margin: 0;
}
.history-month {
    font-weight: 600;
}
.history-desc {
    margin: 0;
}

@media (max-width: 767px) {
    .history-item {
        gap: 6px 20px;
    }
}

/*事業所一覧*/
.office-name {
    margin-bottom: 2rem;
}
.office-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.office-info-list {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 1.6rem;
}
.office-info-list dl {
    display: flex;
    margin-bottom: 0;
}
.office-info-list dt {
    flex-basis: 100px;
    flex-shrink: 0;
    color: var(--primary-color);
    font-weight: normal;
}
.office-info-list dd {
    margin-bottom: 0;
}
.office-map {
    flex: 1;
}
.office-map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    vertical-align: bottom;
}
@media (max-width: 767px) {
    .office-name {
        margin-bottom: 1.2rem;
    }
    .office-info-list dt {
        flex-basis: 80px;
    }
    .office-info-list {
        width: 100%;
        gap: 1.2rem;
    }
}

/* =======================================================
 パートナー制度
======================================================= */
/* 販売パートナー様へのご案内 */
.partner-info-img {
    background-image: url(../img/partner-info.jpg);
}

/* パートナーになるまでの流れ */
ul.flow-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
}
ul.flow-list li {
    border: 2px solid var(--primary-color);
    padding: 20px 10px;
    border-radius: 8px;
    background-color: var(--white);
    min-width: 120px;
    text-align: center;
    list-style: none;
}
.flow-list .flow-arrow {
    width: 0;
    min-width: auto;
    height: 0;
    margin: 0 16px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 0;
    border-left: 16px solid var(--primary-color);
    background: none;
    padding: 0;
    list-style: none;
    border-radius: 0;
}
.flow-img {
    margin: 2rem auto 0;
    background-color: var(--white);
    padding: 3rem;
    text-align: center;
}
@media screen and (max-width:1100px) {
    ul.flow-list {
        justify-content: space-between;
        margin: 2rem 0;
    }
    ul.flow-list li{
        font-size: .9rem;
        min-width: 90px;
    }
    .flow-list .flow-arrow {
        margin: 0;
    }
}
@media screen and (max-width:767px) {
    ul.flow-list {
        flex-direction: column;
        gap: 12px;
    }
    ul.flow-list li{
        width: 80%;
        max-width: 400px;
        padding: 10px;
    }
    .flow-list .flow-arrow {
        transform: rotate(90deg);
    }
    .flow-img {
        padding: 2rem 1rem;
    }
}
/* 営業支援について */
.support-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.support-item {
    flex: 1 1 calc(50% - 20px);
    display: inline-flex;
    padding: 24px 36px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    background: #FFF;
}
h3.support-item-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
ul.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
ul.check-list:not(:last-child) {
    margin-bottom: 2rem;
}
ul.check-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.5em;
    line-height: 1.6;
}
ul.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 10px;
    height: 5px;
    border-bottom: 2px solid #2589d0;
    border-left: 2px solid #2589d0;
    transform: rotate(-45deg);
}
@media (max-width: 767px) {
    .support-list {
        flex-direction: column;
    }
    .support-item {
        padding: 24px;
    }
    ul.check-list {
        margin-left: 0;
    }
}



/* =======================================================
 お問い合わせ・資料請求
======================================================= */
/* 電話でのお問い合わせ */
.contact-tel {
    margin-top: 70px;
}
.phone-box {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    padding: 30px 20px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    border-radius: 8px;
    color: var(--text-color);
    font-weight: 700;
}
.phone-box-company,
.phone-box-hour {
    letter-spacing: .1em;
}
.phone-box-company,
.phone-box-tel {
    margin-bottom: 14px;
}
.phone-box-company {
    font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}
.phone-box-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: clamp(1.25rem, 1.114rem + 0.68vw, 1.625rem);
    color: var(--primary-color);
    font-weight: normal;
    line-height: 1;
}
.phone-box-tel span.num {
    font-weight: 600;
    font-size: clamp(1.75rem, 1.568rem + 0.91vw, 2.25rem);
    font-family: "Poppins", sans-serif;
}
dl.phone-box-hour {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
}
dl.phone-box-hour dd {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .contact-tel {
        margin-top: 40px;
    }
    .phone-box {
        padding: 20px;
    }
}


/* =======================================================
 プライバシーポリシー
======================================================= */
.privacy-contents p {
    line-height: 1.8;
}
.privacy-contents h4 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.privacy-contents ol.policy-list {
    list-style: none;
    padding-left: 1rem;
}
.privacy-contents ol.policy-list li:not(:last-child) {
    margin-bottom: .8rem;
}
.privacy-contents ol.policy-list li {
    padding-left: 2rem;
    text-indent: -2rem;
}
.privacy-contents dl.policy-contact-list {
    display: grid;
    grid-template-columns: 80px 1fr;
    row-gap: 12px;
    column-gap: 10px;
}
.privacy-contents .policy-contact-list dd {
    margin: 0;
}
@media (max-width: 767px) {
    .privacy-contents ol.policy-list {
        padding-left: 0;
    }
}








/* パートナーダミー */
.dummy-form {
    background-color: #ddd;
    height: 1000px;
    width: 100%;
    display: grid;
    place-content: center;
}



.side-slide-contents-item {
    position: fixed;
    top: 0;
    left: -900px; /* 初期位置 */
    width: 80%;
    max-width: 900px;
    height: 100vh;
    background-color: #FAF8F8;
    z-index: 999999;
}
.side-slide-inner {
position: relative;
height: 100%;
display: flex;
flex-direction: column;
}
.side-slide-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
  
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 6px;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
    color: var(--white);
    cursor: pointer;
    user-select: none;
  }
  .side-slide-close .close-icon {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 2px;
  }
  .side-slide-close .close-text {
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1;
  }
  
.side-slide-body {
    flex: 1;
    min-height: 0; /* ← Safari対策で超重要 */
    overflow-y: auto;
    padding: 45px;
}

.scroll-table {
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
}

table.spec-side-contents-table {
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
}

.scroll-table .table th {
    width: 20%;
}

@media screen and (max-width: 767px) {
    .side-slide-contents-item {
        width: 100%;
    }
    .side-slide-body {
        padding-left: 0;
        padding-right: 0;
        margin: 0px 20px;
    }
    .scroll-table .table th {
        width: 100%;
    }
}

.home-feature__num {
    line-height: 1;
    position: absolute;
    display: inline-block;
    color: #004098;
    font-weight: 300;
    text-align: center;
    letter-spacing: .08em;
    top: -36px;
        right: 35px;
        font-size: 4rem;
        font-family: "Poppins", sans-serif;
}

.home-feature__num-txt {
    display: block;
    font-weight: 800;
    letter-spacing: .005em;
    font-size: 1.3rem;
}

.home-feature-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.home-feature__item {
    position: relative;
    width: calc((100% - 50px) / 2);
    padding: 46px 50px 44px;
    background: var(--white);
    min-height: 330px;
}

.home-feature__item+.home-feature__item {
    margin-top: 0;
}

.home-feature__item:nth-of-type(1) {
    margin-bottom: 80px;
}

.home-feature__item:nth-of-type(2) {
    margin: 160px 0 100px;
}

.home-feature__item:nth-of-type(3) {
    margin-top: -120px;
}

.features-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.c-txt01 {
    line-height: 1.2;
    display: inline;
    background: linear-gradient(transparent 60%, #fff584 60%);
}

@media (max-width: 767px) {
    .home-feature-list {
        flex-direction: column;
        align-items: stretch;
    }

    .home-feature__item {
        width: 100%;
        margin: 0 0 24px; /* SP用の通常余白 */
        min-height: auto;
        padding: 40px 30px;
    }

    /* PC用ズラしを完全リセット */
    .home-feature__item:nth-of-type(1),
    .home-feature__item:nth-of-type(2),
    .home-feature__item:nth-of-type(3) {
        margin: 0 0 24px;
    }
}


.spec-side-subtitle {
    border-left: 5px solid var(--primary-color);
    padding: 5px 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 2.4rem;
    margin-bottom: 1rem;
}


.scroll-note p {
    font-size: 14px;
}

.scroll-note-title {
    margin-bottom: .5rem;
    font-weight: 600;
    margin-top: 2.4rem;
}

.spec-side-maintitle {
    margin-bottom: 1.4rem;
}

.spec-side-maintitle span {
    background: var(--primary-color);
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    padding: 4px 18px 6px 18px;
}


.box-voice-01 {
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    background: #f4f8f9;
    padding: 30px 40px 30px 35px;
    margin-bottom: 3rem;
    gap: 2rem;
}



/* .voice-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */



.products-featur {
    background-color: #E9F5FF;
}


.box-voice-01 .voice-img {
    width: 24%;
    max-width: 120px;
}

.box-voice-01 .txtbox {
    flex: 1;
}

.unit-title-03 {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--primary-color);
}

.unit-title-04 {
    padding-bottom: 15px;
    border-bottom: 1px solid #cccccc;
}

.footer-cta {
    background-color: #F9E95C;
    height: 400px;
    display: grid;
    place-content: center;
}