@charset "UTF-8";

html {
  min-height: 100%;
  position: relative;
}

body {
  font-family: "Noto Sans JP","メイリオ", 'MS PGothic', Osaka, sans-serif;
  font-size: 16px;
  min-height: 100%;
  padding: 0;
  margin: 0;
}

.body-gray{
	background-color:#efefef ;
}


a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  color: #999999;
}

small{
    font-size: 0.625em;
}

/*------　ヘッダー　------*/

header {
}


/*------　メニュー開閉ボタン　------*/
	
#t_nav-input {
		position: fixed;
	    z-index: 29999;
}
	
.menu-btn {
       /*display: none;*/
}

/*------　メニュー　------*/
#sp-header-nav{
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display:-webkit-box;
    display:-ms-flexbox;
    display: block;
    opacity: 0;	
    pointer-events: none;
    transition: .2s ease-in-out;/*滑らかに表示*/
	color: #fff;
}

#sp-header-nav{
    transition: .2s ease-in-out;/*滑らかに表示*/
}

#sp-header-nav a{
	color: #fff;
}

#sp-header-nav a.pc-on{
	display: block;
	width: 100%;
}

.nav-wrap{
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
	padding-left: 10%;
    overflow: hidden;
}

.nav-block{
	width: 90%;
	max-width: 640px;
}

.nav-title{
    width: 640px;
    margin: 0 auto;
}

.nav-title img{
	padding-bottom: 12rem;
	width: 10rem;	
}

.nav-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
    margin: 0 auto;
}

.nav-list li{
	width: 50%;
    font-weight: bold;
    margin-bottom: 5rem;
    padding-bottom: 0.5rem;
	position: relative;
}

.nav-list li::before {
  background: #fff;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform .3s ease-out;
}

.nav-list li:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*------　メニュー開閉ボタン　------*/
    
.menu-btn {
	display: flex;
	width: 30px;
	height: 40px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 19999;
	justify-content: center;
	align-items: center;
	background-color: #231815;
	/*background-color: rgba(255, 255, 255, 0.5);*/
	padding: 1.6rem 1.6rem;
}

.menu-btn:hover{
	cursor: pointer;
	cursor: hand;
}
    
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 1px;
	width: 25px;
	border-radius: 3px;
	background-color: #fff;
	position: absolute;
	transition-duration: 0.2s;
}

.menu-btn span{
	background-color: transparent;
}

.menu-btn span:before {
	bottom: 4px;
}

.menu-btn span:after {
	top: 4px;
}
    
/*------　開閉ボタンをクリックしたら三をＸにする　------*/
	
#t_nav-input:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}

#t_nav-input:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}

#t_nav-input:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}
	
#t_nav-input:checked ~ .menu-title:after {
	content:"CLOSE";
}

/*------　開閉ボタンをクリックしたら表示する　------*/

#t_nav-input:checked ~ #sp-header-nav{
	transition: .2s ease-in-out;/*滑らかに表示*/
	opacity: 1;
	pointer-events: auto;
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
	z-index: 1000;
}

/*------　main等　------*/

main {
    width: 100%;
    overflow: hidden;
	/*overflow:clip;*/
}

section{
	margin: 0;
    padding: 0;
}


h1{
    font-size: 2rem;
    letter-spacing: 0.2rem;
}

h2{
    text-align: center;
    font-size: 2rem;
    line-height: 2rem;
}

p{
	margin: 0;
}

/*------　サブページ左上のロゴ　------*/

.subpagelogo-img{
	position: fixed;
    z-index: 999;
	width: 12%;
	top: 0;
	left: 0;
}

/*------　ページ下　リンク集　------*/

.linklist{
	/*margin-bottom: 12rem;*/
	position: relative;
}

/*--- 横からでる背景色 ---*/

.linklist__bgcolor{
	background: linear-gradient(-90deg, #00a29a,#036eb8) 0 / 100%;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 100%;
}

.linklist__bgcolor.scroll-anime.scroll-show {
	animation: linklist__bgcolor 0.25s linear forwards normal;
}

@keyframes linklist__bgcolor {
  0% {
	left: 100%;
  }
  100% {
	left: 0;
  }
}

/*-- リンクリスト  --*/

.linklist__wrap{
	/*background: linear-gradient(-90deg, #00a29a,#036eb8) 0 / 200% 100%;*/
    opacity: 0;
}

.linklist__wrap.scroll-anime.scroll-show {
	animation: bg-gradient03 0.5s linear forwards normal 1s;
}

@keyframes bg-gradient03 {
  0% {
    /*background-position: 100% 0;*/
    transform: translateY(30px);
    opacity: 0;
  }
	80% {
    opacity: 1;
  }
  100% {
	opacity: 1;
    transform: translateY(0);
    /*background-position: 0 0;*/
  }
}

.linklist-container01{
	
    max-width: 1480px;
	
	margin: 0 auto;
	padding: 2rem 0;
	
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	
	/*opacity: 0;*/
}

.linklist__wrap.scroll-anime.scroll-show .linklist-container01{
	max-width: 1480px;
	/*animation: fadeIn-linklist 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
	animation-delay: 2.5s;*/
}
 
@keyframes fadeIn-linklist{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.linklist-item{
	/*width: 24%;*/
}

.linklist-item__wrap{
	width: 90%;
	margin: 0 auto;
    overflow: hidden;
}


.linklist-img{
	background-color: #fff;
	position: relative;
}

/* サブメニュー */

.linklist-img p{
	width: 100%;
	height: 100%;
	font-size: 1.6rem;
    padding: 0.2rem;
    text-align: left;
	color: #fff;
	font-weight: bold;
    line-height: 3.2rem;	
	background: rgba(7, 69, 155, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	
	opacity: 0;
}

.linklist-text{
	padding: 2rem 0;
	margin-top: 2rem;
	text-align: center;
	color: #07459b;
	font-weight: bold;
	background-color: #fff;
}

/* メインメニューマウスカーソルが乗ったらサブメニューを出現させる */

.linklist-img:hover > p {
	opacity: 1;	
}

.linklist-main > a:hover .linklist-text {
	color: #fff;
	background-color: rgba(7, 69, 155, 0.8);
}

/*------　フッター　------*/

footer {
	clear: both;
	padding: 0 2rem 2rem;
	width: 100%;
}

footer a {
	
}

footer a:hover {
	
}

.footer-container{
    margin: 0 auto;
    display: flex;
	flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-container ul{
    width: 100%;
    text-align: center;
	margin: 5rem 0
}

.footer-container li {
	font-weight: bold;
}

.footer-container div{
    width: 50%;
	font-size: 0.75rem;
}

.footer-item01{
	text-align: center;
}

.footer-item02{
    text-align: left;
}

.footer-item03{
	text-align: right;
	z-index: 999;
}

/*------　社員募集　------*/

.recruit{
	background-color: rgba(94,93,92,0.8);
	writing-mode: vertical-rl;
	display: block;
	margin: 0 0 0 auto;
	z-index: 99999;
	opacity: 0;
	height: 0;
}

.recruit a{
	display:block; 
	padding: 1rem;
	color: #fff;
	font-size: 1.6rem;
}

.recruit a span{
	font-size: 0.75rem;
}

.recruit.scroll-anime.scroll-show{
	position: fixed;
	right: 0;
	bottom: 18%;
	animation: recruit-fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes recruit-fadeIn {
  0% {
    opacity: 0;
	height: auto;
  }
  100% {
    opacity: 1;
	height: auto;
  }
}

/*------　トップへ戻る　------*/
#js-pagetop {
	position: fixed;
	bottom: 4rem;
	right: 2rem;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 30;
	color: #000;
	font-size: 5rem;
    /*background-color: rgba(255, 255, 255, 0.5);*/
}

/*--- section scroller	---*/
		
#section-scroller-button {
	position: fixed;
	bottom: 4rem;
	right: 2rem;
	height: 60px;
	width: 60px;
	color: #000;
	z-index: 10;
	cursor: pointer;
	-webkit-user-select: none; /* Safari, Chrome */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer */
	user-select: none; /* 標準仕様 */
}
		
.caret {
	position: absolute;
	border-top: 45px solid #000;
	border-right: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 30px solid transparent;
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}
		
#section-scroller-button.rotate .caret {
		-webkit-transform: scaleY(-1);
		-ms-transform: scaleY(-1);
		transform: scaleY(-1);
		margin-top: -16px;
}

/* スクロール後のスペースを入れる */
section > div.section-scroll {
	/*padding-top: 5rem;
    margin-top: -5rem;*/
}

.section-scroll__space{
	padding-top: 10rem;;
    margin-top: -10rem;
}

.section-scroll__space03 {
	padding-top: 10rem;
    margin-top: -10rem;
}

.section-scroll__space04 {
	padding-top: 0;
    margin-top: 0;
}

/* top 広告制作案件PC */
.section-scroll__space05 {
	padding-top: 5rem;
    margin-top: -5rem;
}

/* top action*/
.section-scroll__space06 {
	padding-top: 20rem;
    margin-top: -20rem;
}
		
/*1280px 以下-----------------------------------------------------------------------------*/
@media all and (max-width: 1280px) {
	/*------　ページ下　リンク集　------*/

	.linklist-img p {
		font-size: 1.6rem;
        line-height: 2.4rem;
	}
	
	.linklist-text {
		font-size: 0.75rem;
	}
	
	.section-scroll__space03 {
		padding-top: 13rem;
    	margin-top: -13rem;
	}
	
	/* top action*/
	.section-scroll__space06 {
		padding-top: 10rem;
		margin-top: -10rem;
	}
}

/*1025px 以上-----------------------------------------------------------------------------*/
@media (min-width: 1025px) {

	.pad-on{
		display: none;
	}
	
}

/*1024px 以下-----------------------------------------------------------------------------*/
@media(max-width:1024px){
	
	.pad-off{
		display: none;
	}
	
	.section-scroll__space03 {
		padding-top: 5rem;
    	margin-top: -5rem;
	}
	
	/* top 広告制作案件Pad */
	.section-scroll__space02{
		padding-top: 13rem;;
    	margin-top: -13rem;
	}
	

}

/*1080px 以下-----------------------------------------------------------------------------*/
@media all and (max-width: 1080px) {
	
	

	
	/*------　ページ下　リンク集　------*/
	.linklist-item__wrap{
		width: 90%;
		margin: 0 auto;
	}
	
	.linklist-img p {
        font-size: 1rem;
        line-height: 1.8rem;
	}
	
	.linklist-text {
		font-size: 0.625rem;
	}
	
}

/*769px 以上-----------------------------------------------------------------------------*/
@media (min-width: 769px) {

	.sp-on{
		display: none;
	}
	
}	

/*768px 以下-----------------------------------------------------------------------------*/
@media(max-width:768px){

	
	.pc-on{
		display: none;
	}
	

    header>div {
        width: max-content;
    }
    	
	main{
   	    width: 100%;

	}
	
    .main-wrap01{
   	    width: 100%;
    }
    
    .main-wrap02{
   	    width: 100%;
    }
	
	/*------　メニュー　------*/
		
	.nav-wrap{
		padding-left: 0;
	}
	
	.nav-block{
	}
	
	.nav-title {
        margin-bottom: 0;
    }
		
	
	#sp-header-nav a.pc-on{
		display: none;
	}
	
	.nav-list li {
		width: 100%;
		margin-bottom: 3rem;
	}
	
	.nav-title img {
		padding-bottom: 6rem;
	}
	
	/*------　サブページ左上のロゴ　------*/
	.subpagelogo-img {
		width: 24%;
	}
	
	/*------　ページ下　リンク集　------*/
	
	.linklist-img p {
        font-size: 1.6rem;
        line-height: 2.8rem;
    }
	
	.linklist-text {
        font-size: 1rem;
    }
	
	 .linklist-container01 .slick-prev {
		left: 0.5%;
		top: 40%;
		z-index: 999;
	}
	
	.linklist-container01 .slick-prev:before {
		content: '◀';
		color: #333;
		font-size: 2rem;
	}
	
	.linklist-container01 .slick-next {
		right: 3.5%;
		top: 40%;
		z-index: 999;
	}
		
	.linklist-container01 .slick-next:before {
		content: '▶';
		color: #333;
		font-size: 2rem;
	}
	
	
	

    /*------　フッター　------*/
    
	footer {
    	padding: 0 1rem 2rem;
	}
	
    .footer-container ul{
        width: 100%;
        padding: 0 16px 16px;
    }
    
    .footer-container li{
        display: block;
    }
    
    li:last-of-type {
        margin-bottom: 0;
    }
    
    .footer-container div.footer-item02{
		width: 70%;
        text-align: left;
    }
	
	.footer-container div.footer-item03{
		width: 30%;
        text-align: right;
    }
	
	/*------　社員募集　------*/

	.recruit{
		/*top: 60%;
		right: 0;*/
	}
	
	.recruit.scroll-anime.scroll-show{
		bottom: 12%;
	}

	.recruit a{ 
		padding: 1rem;
		font-size: 1rem;
	}
	
	/*------　TOPへ戻る　------*/
	
	#js-pagetop {
    	font-size: 3rem;
    	bottom: 3rem;
	}
	
	/*--- section scroller	---*/
	
	#section-scroller-button {
    	right: 1rem;
		bottom: 1rem;
	}
	
	.caret {
		border-top: 36px solid #000;
		border-right: 24px solid transparent;
		border-bottom: 24px solid transparent;
		border-left: 24px solid transparent;
		margin-top: 0;
	}
	
	#section-scroller-button.rotate .caret {
		margin-top: -2rem;
	}
	
	.section-scroll__space {
    	padding-top: 5rem;
    	margin-top: -5rem;
	}
	
	/* top 広告制作案件Pad */
	.section-scroll__space02 {
    	padding-top: 1rem;
    	margin-top: -1rem;
	}
	
	.section-scroll__space03 {
    	padding-top: 5rem;
    	margin-top: -5rem;
	}
	
	.section-scroll__space04 {
		padding-top: 5rem;
    	margin-top: -5rem;
	}
	
	/* top action*/
	.section-scroll__space06 {
		padding-top: 5rem;
		margin-top: 5rem;
	}
	
}

/*602px 以上-----------------------------------------------------------------------------*/
@media (min-width: 602px) {

}

/*601px 以下-----------------------------------------------------------------------------*/
@media (max-width: 601px) {
	
}


@media (orientation: landscape) and (max-height: 450px) {
  /* ここに横向きのデバイスに適用するスタイルを書く */	
	.nav-title img {
        padding-bottom: 3rem;
    }
	
	.nav-list li {
			width: 50%;
	}
	
}
