﻿.bg_white {
    background-color: #f9f9f9;
}
.bg_color1 {
    background-color: #f8f8f8;
    color: #333;
}
.bg_color2 {background-color: #f8f8f8;}
.bg_color3 {background-color: #333;}
.border_color2 {border-color: #d9d9d9;}
.border_color3 {border-color: #65e5e1;}
/* ----------　all　---------- */
.linkStyle{
	color:#65e5e1;
}
.linkStyle:hover{
	color:#65e5e1;
	opacity: 0.7;
	transition: all 0.5s;
}
body{
    color: #333;
    background-color: #eee;
}
#loader::after {
    background-color: #eee;
}


.font_serif{
    font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/*h1, h2, h3, h4, h5, h6,.top_cms_box .cms_6-b .cate_title{*/
/*    font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";*/
/*}*/
.font_14 {
    font-size: 16px;
}
header{
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
}
header #header{
    padding: 40px 0;

}
header #header h1{
    width:30%!important;
}
#main_nav{
    width: 70%!important;
}
#main_nav ul{
    padding: 30px 0;
    font-weight: bold;
}
#main_nav li a{
    text-shadow: 0 3px 7px rgb(255 255 255);
}
#main_nav li a:hover{
    text-shadow: 0 3px 7px rgba(126 ,212, 208,0.7);
}
.sc_nav {
    background-color: #fff;
}
.more a:hover{
    color: #65e5e1;
}
footer{
    background-color: transparent!important;
}

.banner_fix {
    position: fixed;
    bottom: 20px;
    right: 65px;
    z-index: 5;
    width: 80%;
    max-width: 350px;
}
.banner_fix img{
	transition: opacity 0.5s;	
}
.banner_fix img:hover{
    opacity: 0.6;
}
.shop_link{
    display: none;
}
/* ----------　TOP　---------- */
.top header #header {
    padding: 20px 0;
}
.top header #header h1{
    position: relative;
}
.top .top_logo{
    margin-top: 10px;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
}
#main_img {
    margin-top: 170px;
    height: 80vh;
    overflow: hidden;
    /*background: linear-gradient(181deg, rgba(85 ,218, 89 ,0.05), rgba(88, 181, 218,0));*/
}
#main_img .catch{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 85%;
}
#main_img .catch .catch1,#main_img .catch .catch2 ,#main_img .catch .catch_link{
    overflow: hidden
}
#main_img .catch .catch1 img,#main_img .catch .catch2 img,#main_img .catch .catch_link img{
    transform: translateY(40px);
    transition:0.5s;
    opacity: 0;
}
#main_img .catch .catch1.in img,#main_img .catch .catch2.in img,#main_img .catch .catch_link.in img{
    opacity: 1;
    transform: translateY(0);    
}
.catch{
        width: 85%;
    max-width: 1200px;
}
.catch1{
    margin-left: 5%;
    /*filter: drop-shadow(0 0 10px rgba(101, 229 ,225,0.3));*/
    font-size: -webkit-calc(1rem + 60px);
    font-size: calc(1rem + 60px);
    font-weight: bold;
    /*color: #44E0E0;*/
    margin-top: 35px;
}
.catch2{
    width: 100%;
    background: linear-gradient(45deg, rgba(84, 214, 189,0.7),rgb(9, 92, 255, 0.7));
    background-size: 200% 200%;
    animation: bggradient 20s ease infinite;
    clip-path: polygon(0 0, 95% 1%, 100% 100%, 0 100%);
    margin-top: 35px;
    padding: 10px 0px;
    text-align: center;
    font-size: -webkit-calc(1rem + 20px);
    font-size: calc(1rem + 20px);
    font-weight: bold;
    color: #fff;
    padding: 10px 50px 10px 20px;
    text-align: left;
}
#main_img .catch2 img{
    width: 80%;
    vertical-align: text-bottom;
}
@keyframes bggradient{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.catch_link{
    width: 350px;
    margin-left: auto;
    margin-right: -55px;
    margin-top: 40px;
    transition: 0.5s;
}
.catch_link:hover{
    margin-right: -100px;

}
/* このクラスをつけると回転を無限に繰り返します */
.catch_link.anime{
  animation: 3s catch_link infinite;
}
@keyframes catch_link {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
 }
#particles{
  width:100%;
  height:90vh;
  margin:0 auto;
}
#intro{
    position: relative;
    padding: 50px 0;
    margin-top: 80px;
    margin-bottom: 0px;
}
#intro::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100px;
	background-image: url("../dup/img/intro_anime.png");
	background-size: auto 100%;
	background-position-y: 0;
	background-position-x: 0;
	background-repeat: repeat-x;
	animation: loop 30s linear infinite;
}
@keyframes loop {
	0% {background-position-x: 0;}
	100% {background-position-x: -1000px;}
}

#intro .intro_txt h2 ,#top_contents1 .contents1_txt h3,#top_contents2 h3{
    font-size: -webkit-calc(1rem + 16px);
    font-size: calc(1rem + 16px);
}
#intro .intro_txt p span,#top_contents1 .contents1_txt p,#top_contents2 .con2_txt{
      display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
	  overflow: hidden;
}
#intro .intro_txt h2 {
    transform: translateY(0%);
}
#intro .intro_txt p,#top_contents1 .contents1_txt p,.contents2_txt p{
    line-height: 2.5;
}
#intro .intro_txt_img{
    position: absolute;
    width: 50px;
    bottom: 10px;
    right: 10px;
    opacity: 0.8;
}
#top_contents1{
    position: relative;
    background: linear-gradient(46deg, rgba(84 ,255 ,240 ,0.15), rgba(39, 137, 255, 0.15));
    padding: 50px 0;
    color: #fff;
    padding-top: 0;
}
#top_contents1:before {
    content: "";
    position: absolute;
    background-image: url(Dup/img/top_bg.jpg);
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: -2;
}
#top_contents1:after {
    content: "";
    position: absolute;
    background-image: url(Dup/img/top_bg.jpg);
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: linear-gradient(46deg, #15645e, #124178);
    top: 0;
    z-index: -1;
}
#top_contents1 .contents1_txt{
    text-align: center;
    margin-left: auto;
}
#top_contents1 .contents1_txt h3 {
    text-shadow: none;
    transform: translateX(0px);
}
#top_contents1 .contents1_txt h3:before{
    content: "Career up & chenge";
    position: absolute;
    font-size: 90px;
    bottom: 0;
    line-height: 1;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    opacity: 0.2;
    color:#88cde4;
    z-index: -1;
}
#top_contents1 .recruit_txt_img{
    position: absolute;
    width: 50px;
    bottom: 10px;
    left: 10px;
    opacity: 0.8;
}
#top_contents1 .recruit_banner{
    width: 80%;
    max-width: 400px;
    margin: auto;
    margin-top: 80px;
    box-shadow: 2px 5px 15px rgba(8, 55 ,76,0.7);
    transition: 0.3s;
    position: relative;
}
#top_contents1 .recruit_banner:hover{
    box-shadow: 2px 5px 15px rgba(8, 55 ,76, 0.1);
}
#top_contents2{
    margin-bottom: 50px;
    padding-top: 0px;
}
.video_wrap {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 70vh;
	position: relative;
}
.video_wrap:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(77, 197, 221, 0.2);
    z-index: 2;
    top: 0;
    left: 0;
}
video {
	min-width: 100%;
	min-height: 70vh;
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
#top_contents2 h3 span {
    padding: 10px 20px;
    text-align: center;
}
#top_contents2 h3::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}
#top_contents2 .contents2_txt {
    width: 70%!important;
    padding: 50px;
    z-index: 2;
    background-color: #f9f9f9;
    box-shadow: 1px 2px 20px rgb(218 224 223 / 30%);
    margin: auto;
    transform: translateY(-100px);
    position: relative;
}
#top_cms_bg{
    position: relative;
}
#top_cms_bg:before {
    content: "";
    position: absolute;
    width: 100%;
    clip-path: polygon(0 31%, 100% 0, 100% 100%, 0 72%);
    height: 70%;
    background-color: #f8f8f8;
    z-index: -1;
    background-image: url(Dup/img/top_bg.jpg);
    opacity: 0.1;
}
#top_cms{
    padding-left: 2.5%;
    padding-right: 2.5%;
}
#top_cms .top_cms_box:nth-child(1) .top_cms_title{
    background-image: url(Dup/img/news_img.png);
    background-repeat: no-repeat;
    background-size: contain;
}
#top_cms .top_cms_box:nth-child(3) .top_cms_title{
    background-image: url(Dup/img/service_img.png);
    background-repeat: no-repeat;
    background-size: contain;
}
#top_cms .top_cms_box:nth-child(4) .top_cms_title{
    background-image: url(Dup/img/voice_img.png);
    background-repeat: no-repeat;
    background-size: contain;
}



/* モーダル */
html.modalset{
	overflow: hidden;
}
.modal{
	display: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
}
.modal-wrap {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	text-align: center;
	padding: 20px;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
}
.modal-wrap::-webkit-scrollbar {
	display: none;
}
.modal-wrap:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 1px;
	height: 100%;
}
.modal-bg{
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(255,255,255,0.3);
	width: 100%;
	height: 100%;
}
.modal-box{
	width: 90%;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.modal-box:before{
	content: "";
	display: block;
	background-color: #f9f9f9;
	box-sizing: border-box;
	width: 100%;
	height: 10%;
	position: absolute;
	bottom: 0;
	left: 50%;
	-ms-transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	transform: translate(-50%,0);
	z-index: 1;
}
.modal-box .inner{
	    background: rgba(255 ,255,255,0.9);
	max-height: 500px;
    overflow: auto;
	-ms-overflow-style: none;
}
.modal-box .inner::-webkit-scrollbar {
	display:none;
}
.modal-box .inner > :first-child {
	margin-top: 0;
}

.modal-box .modal-close{
	cursor: pointer;
	position: absolute;
    top: 0;
    right: 0;
}
.modal-box .modal-close span{
	display: block;
	width: 50px;/*枠の大きさ*/
	height: 50px;/*枠の大きさ*/
	position: relative;
}

.modal-box .modal-close span::before, .modal-box .modal-close span::after{
	content: "";
	display: block;
	width: 100%;/*バツ線の長さ*/
	height: 2px;/*バツ線の太さ*/
	background: #000;
	transform: rotate(45deg);
	transform-origin:0% 50%;
	position: absolute;
	top: calc(14% - 1px);
	left: 14%;
}

.modal-box .modal-close span::after{
	transform: rotate(-45deg);
	transform-origin:100% 50%;
	left: auto;
	right: 14%;
}
.modal-open{
    margin-bottom: 30px;
    transition: 0.3s;
}
.modal-open:hover{
    opacity: 0.6;
}
.modal-open span{
    cursor: pointer;
    background: linear-gradient(46deg, rgb(84, 255, 240), rgb(39 ,137 ,255));
    border: none;
}

.modal_title_wrap{
	top: 0;
	left: 0;
}


/* ----------　下層ページ　---------- */
#page_title{
    background: linear-gradient(46deg, rgba(84 ,255 ,240 ,0.15), rgba(39, 137, 255, 0.15));
    max-width: 100%;
    min-height: auto;
    padding: 100px;
    margin-top: 160px;
    margin-bottom: 100px;
    background-image: url(Dup/img/page_title.jpg);
    background-size: cover;
    background-position: bottom;
    color: #fff;
    position: relative;
}
#page_title:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background: linear-gradient(46deg, #15645e, #124178);
    top: 0;
    left: 0;
}
#page_title h2,#page_title p{
    position: relative;
}
#cate_list_title{
    display: none;
}
.cate_list{
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
.cate_list li{
    width: 25%;
    margin: 2%;
}
.cate_list li a {
    background-color: #44e0e0;
    padding: 10px 0px;
    text-align: center;
    width: 100%;
    color: #fff;
    opacity: 1;
}
.cate_list a:hover {
    transform: translateY(-5px);
}
/* TOP事業内容 */
.link_type1 .link_top .link_title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
	margin-bottom: 30px;
    color: #333;
    font-weight: normal;
}
.link_type1 .link_top .link_title{
    font-size: 20px;
    margin-bottom: 20px;
}
.link_type1 .link_top a{
	padding-top: 80px;
    padding-bottom: 60px;
}
.link_type1 .link_top a:hover{
    background-color: #d8ecea;
}
.link_type1 .link_top a:hover .link_img1{
    transform: translate(-50%, -50%) scale(1.1,1.1);
    opacity: 0.1;

}
/* TOP 求人情報 */
.top_cms_box .cms_6-b .cate{
    width: 45%;
    margin: 0 2.5%;
}
.top_cms_box .cms_6-b .cate a .cate_title{
    padding: 50px 0;
    position: relative;
    box-shadow: 1px 2px 25px rgba(188 ,230 ,239 ,0.8);
    transition: 0.3s;
    letter-spacing: 10px;
}
.top_cms_box .cms_6-b .cate a:hover .cate_title{
    box-shadow: 1px 2px 20px rgba(218, 224, 223, 0);
}
.top_cms_box .cms_6-b .cate a .cate_title:before{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(20px,-50%);
    width: 50px;
    height: 1px;
    background-color: #333;
    transition: 0.3s;
}
.top_cms_box .cms_6-b .cate a:hover .cate_title:before{
    transform: translate(30px,-50%);   
}
/* 求人情報 */
#cms_6-b .cate_title_wrap {
    position: relative;
    z-index: 0;
}
#cms_6-b .cate_title_wrap::before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 1px;
    height: 100%;
    top: 20px;
    left: 0px;
    background-color: currentColor;
    opacity: 0.15;
    z-index: -1;
}
#cms_6-b .cate_title{
    line-height: 1;
}
/* スタッフの声 */
#cms_6-c .cate_box{
    border: 2px solid;
    background-color: rgba(255 ,255 ,255 ,0.5);
}
/* 会社情報 */
/* お問い合わせ */
/* プライバシーポリシー */
/* サイトマップ */
#page10 ul li a:hover {
    color: #65e5e1;
}

/*-------------------------------------------------------
			            1281px
-------------------------------------------------------*/

@media screen and (max-width: 1281px){
#top_contents1 .contents1_txt {
    width: 100%!important;
}
}

/*-------------------------------------------------------
			          タブレット
-------------------------------------------------------*/
@media screen and (max-width: 768px){
    
/* ----------　all　---------- */
.menu_bt_wrap{

    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 10px 0;
}
.menu_bt_wrap.active2{
        background-color: #fff;
        transition: ease 0.5s;
}
#menu_bt {
    position: fixed;
    right: 0;
    position: relative;
    margin-left: auto;
    margin-right: 20px;
    top: 0px;
}
header #header {
    padding: 25px 0;
}
h1 img{
    width: 100%!important;
}
#menu_bt > div span {
    height: 2px;
}
#menu_bt.active > div span:nth-of-type(1) {
    width: 80%;
    transform: translateY(5px) rotate(45deg);
}
/* ----------　TOP　---------- */

#main_img {
    margin-top: 150px;
    height: auto;
    margin-bottom: 0px;
}
.catch1 {
    font-size: -webkit-calc(1rem + 50px);
    font-size: calc(1rem + 50px);
    margin-top: 20px;
}
.catch2 {
    margin-top: 20px;
    font-size: -webkit-calc(1rem + 10px);
    font-size: calc(1rem + 10px);
}
#intro::before {
    height: 80px;
}
#intro .intro_txt h2, #top_contents1 .contents1_txt h3, #top_contents2 h3 {
    font-size: -webkit-calc(1rem + 10px);
    font-size: calc(1rem + 10px);
}
#intro .intro_txt p, #top_contents1 .contents1_txt p {
    text-align: left;
}
#intro .intro_txt_img ,#top_contents1 .recruit_txt_img{
    opacity: 0.15;
}
#top_contents1 .contents1_txt {
    width: 90%!important;
    margin: auto;
}
#top_contents1 .contents1_txt h3:before {
    font-size: 65px;
    bottom: 20px;
}
#top_contents1 .top_cms_box .cms_wrap{
    padding: 20px 50px;
}
.top_cms_box .cms_6-b .cate {
    width: 100%;
    margin: 20px 0;
}

.video_wrap {
	overflow: hidden;
	width: 100%;
	height: auto;
	min-width: 100%;
}
video {   
	min-width: auto;
	min-height: auto;
	width: 100%;
	z-index: 1;
	position: static;
	top: 0%;
	left: 0%;
	-webkit-transform: translate(0%, 0%); 
	-ms-transform: translate(0%, 0%);
	transform: translate(0%, 0%); 
    vertical-align: bottom;
}   
#top_contents2 .contents2_txt {
    width: 80%!important;
    padding: 50px 20px;
}
#top_cms .top_cms_box:nth-child(1) .top_cms_title,#top_cms .top_cms_box:nth-child(3) .top_cms_title,#top_cms .top_cms_box:nth-child(4) .top_cms_title{
    background-size: 300px;
}
#top_cms_bg:before {
    height: 50%;
    top: 20%;
}
/* ----------　下層ページ　---------- */ 
#page_title {
    padding: 80px;
    margin-top: 110px;
}
#page_title h2{
    font-size: 24px;
}
.cate_list li {
    width: 45%;
}
/* 会社情報 */
/* お問い合わせ */
#page08 .tel a {
    color: #65e5e1;
}
/* プライバシーポリシー */
/* サイトマップ */
    
#page10 ul li a {
    padding: 20px 5px;
}    
}

/*-------------------------------------------------------
		            	スマホ
-------------------------------------------------------*/
@media screen and (max-width: 667px){
/* ----------　all　---------- */
.font_14 {
    font-size: 16px;
}
header #header h1 {
    width: 45%!important;
}
#menu_wrap ul li a{
    font-size: 13px;
}
.banner_fix {
    right: 45px;
}
/* ----------　TOP　---------- */
#main_img {
    margin-top: 130px;
}
.catch {
    width: 90%;
}
.catch1 {
    font-size: -webkit-calc(1rem + 50px);
    font-size: calc(1rem + 20px);
    margin-top: 10px;
}
.catch2 {
    width: 80%;
    margin-top: 10px;
    font-size: -webkit-calc(1rem + 4px);
    font-size: calc(1rem + 4px);
     clip-path: polygon(0 0, 90% 1%, 100% 100%, 0 100%);
    padding-left: 5%;
}
.catch_link {
    width: 60%;
    margin-right: -5%;
}

#main_img .catch2 {
   
}


#intro::before {
    height: 40px;
}
#intro .intro_txt h2, #top_contents1 .contents1_txt h3, #top_contents2 h3 {
    font-size: -webkit-calc(1rem + 6px);
    font-size: calc(1rem + 6px);
}
#intro .intro_txt p, #top_contents1 .contents1_txt p {
    font-size: 15px;
}
#top_contents1 .contents1_txt h3 span{
    text-align: center;
}
#top_contents1 .contents1_txt h3:before {
    font-size: 55px;
}
#top_contents1 .top_cms_box .cms_wrap {
    padding: 0px 40px;
}
.top_cms_box .cms_6-b .cate a .cate_title {
    padding: 30px 0;
}
#top_contents2 h3{
    padding: 0;
}
#top_contents2 h3 span {
    padding: 0px 20px;
}
#top_contents2 .contents2_txt {
    width: 90%!important;
    padding: 30px 20px;
    transform: translateY(-60px);
}
#top_cms .top_cms_box:nth-child(1) .top_cms_title, #top_cms .top_cms_box:nth-child(3) .top_cms_title, #top_cms .top_cms_box:nth-child(4) .top_cms_title {
    background-size: 250px;
}

/* ----------　下層ページ　---------- */  
#page_title {
    padding: 40px 25px;
    margin-top: 95px;
}
#page_title h2 {
    font-size: 22px;
    letter-spacing: 1px;
}
.cate_list li {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
}
/* TOP事業内容 */
.link_type1 .link_top{
    margin-bottom: 30px;
}
.link_type1 .link_top a {
    padding-top: 40px;
    padding-bottom: 30px;
}
.link_type1 .link_top .link_title{
    font-size: 15px;
}
/* 事業内容 */
#cms_2-g .cate h3{
    line-height: 1.4;
}
/* 求人情報 */
#cms_6-b .cate_title {
    font-size: 1.8em;
}
#cms_6-b .cate h3{
    line-height: 1.4;
}
/* 会社情報 */
/* お問い合わせ */
/* プライバシーポリシー */
/* サイトマップ */    
}