@charset "UTF-8";
/* CSS Document */


@media (min-width: 960px) {
	#head_logo{
		position:absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 10px!important;
		z-index: 10;
		transition: .5s;
	}
}
@media (max-width: 959px) {
	#head_logo{
		position:absolute;
		top: 50%!important;
		transform: translateY(-50%);
		left: 10px!important;
		z-index: 10;
		transition: .5s;
	}
}
nav{
	font-family: english-grotesque, sans-serif;
	font-weight: 300;
	font-style: normal;
	width: 100%;
	height: 100%;
}
.bodyfixed{
    overflow: hidden; /* 背景のスクロールを停止 */
    height: 100%;     /* 必須 */
}

/*-----------------header-----------------*/
@media (min-width: 960px) {
    #header{
        position: fixed;
        top: 0;
        z-index: 20;
        width: 100%;
        height: 90px;
    }
	.header_blur{
        transition: all 0.3s ease-out;
		background: rgba(255,255,255,0.5);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		
	}
	.menu{
		width: 30px;
		height: 26px;
		position: absolute;
		right: 140px;
		top: 17px;
		z-index: 99;
		cursor: pointer;
		display: none!important;
	}
	.pcmenu > ul{
		display:flex;
		position: relative;
		float: right;
		height: 60px;
		align-items: center;
		padding-right: 170px;
	}
	.pcmenu > ul > li{
		padding-right: 30px;
	}
	.pcmenu > ul > li > a{
		font-weight: 700;
		display: flex;
		align-items: center;
	}
}
@media (max-width: 959px) {
    .head_logo > a > img{
        width: 100%;
        height: auto;
    }
    #header{
        position: fixed;
        top: 0;
        z-index: 20;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 76px;
    }
	.header_blur{
        transition: all 0.3s ease-out;
		background: rgba(255,255,255,0.8);
	}
	.menu{
		width: 60px;
		height: 60px;
		position: absolute;
		right: 0;
		top: 50%!important;
		transform: translateY(-50%);
		z-index: 99;
		cursor: pointer;
		text-align: center;
		font-size: 1rem;
		line-height: 1em;
	}
	.pcmenu > ul{
		display: none;
	}
}
.c_change > svg { fill: currentColor; }
/*menu*/
.menu__line{
    width: 40px;
    height: 4px;
    background: #000;
    display: block;
    position: absolute;
    transition:transform .3s;
	box-sizing: border-box;
}
.menu__line.active{
    width: 40px;
    height: 4px;
    display: block;
    position: absolute;
    transition:transform .3s;
	box-sizing: border-box;
}
.menu__line--top:nth-of-type(1) {
	top: 15px;
	right: 15px;
}
.menu__line--bottom:nth-of-type(2) {
	top: 35px;
	right: 15px;
}

.menu__line--top:nth-of-type(1) {
  animation: menu-bar01 .5s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu__line--bottom:nth-of-type(2) {
  animation: menu-bar02 .5s forwards;
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu__line--top.active:nth-of-type(1) {
  animation: active-menu-bar01 .5s forwards;
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}
.menu__line--bottom.active:nth-of-type(2) {
  animation: active-menu-bar03 .5s forwards;
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/*gnav*/


@media (min-width: 960px) {
	.gnav{
		display: block!important;
	}
	.gnav__menu__item > a{
		font-size: 1.5rem;
		font-weight: 700;
		letter-spacing: 1px;
        margin-left:20px;
        margin-right:20px;
		padding-bottom: 27px;
		text-decoration: none;
		transition: .2s;
		position: relative;
	}
	.gnav__menu__item > a:hover{
		color: #737072;
	}
	.gnav__menu__item > a:hover::after{
		content: '';
		position: absolute;
		bottom: 10px;
		left: 0;
		display: block;
		width: 100%;
		border-bottom: solid 2px #000;
	}
}
@media (max-width: 959px) {
	.gnav{
		background: rgba(255, 255, 255, 0.9);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border: 1px solid rgba(255, 255, 255, 0.2);
		display: none;
		height: 100vh;
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		z-index: 98;
	}
    
    .gnav__menu > li {
        padding-bottom:0px!important;
        margin-bottom:0px!important;
        border-bottom:0px!important;
    }
    
    .gnav_menu_top {
    }
    
	.gnav__wrap{
		width: 100%;
		height: 100%;
		position: absolute;
		overflow-y: scroll!important;
	}
	.gnav__menu__item > a{
		color: #000!important;
		font-weight: 700;
		padding: 20px 0;
		text-decoration: none;
		transition: .5s;
		display: block;
		border-bottom: dotted 1px #000;
		font-size: 1.6rem;
	}
    
    .gnav__menu > li::before {
        content: ""!important;
    }
    
    .head_child_ul {
      margin-top: 0px!important;
    }
    
    .head_child_ul li::before {
        content: ""!important;
    }
    
    .head_child_ul li {
        font-size: 12px;
        line-height: 32px;
        width: calc(50% - 1px)!important;
        white-space: nowrap;
    }
    
    .head_form_btn {
        text-align: center;
        margin-bottom:50px;
    }
    
    
    .h_fmenu {
        padding: 0 30px 70px 30px!important;
    }
}
@media (min-width: 960px) {
    .gnav__menu__item{
/*        position: relative;*/
    }
    .gnav__menu{
        width: 100%;
		height: 100%;
        position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right:0;
        display: flex;
        flex-wrap: nowrap;
		justify-content: flex-end;
		align-items: center;
        box-sizing: border-box;
		padding-right: 10px;
    }
    .gnav__menu > li{
        list-style:none;
        display: inline-block;
        box-sizing: border-box;
		line-height: 1em;
    }
    .gnav__menu > li:last-child{
        list-style:none;
        display: inline-block;
        position: relative;
        box-sizing: border-box;
		margin: 0;
		line-height: 1em;
    }
	.btn_form > a{
		width: auto;
		height: 50px;
		border-radius: 25px;
		padding: 0 39px;
		color: #fff;
		background-color: #000;
		border: solid 1px #000;
		font-weight: 700;
		transition: all 0.5s ease;
		font-size: 1.6rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.btn_form > a:hover{
		color: #000!important;
		background-color: transparent;
		border: solid 1px #000;
	}
	.h_fmenu{
		display: none;
	}
}
@media (max-width: 959px) {
    .gnav__menu__item{
/*        position: relative;*/
    }
    .gnav__menu{
        width: 100%;
        position: relative;
		padding: 100px 40px !important;
        box-sizing: border-box;
        display: block;
    }
    .gnav__menu > li{
        width: 100%;
        list-style:none;
        display: block;
        position: relative;
        padding-bottom: 20px;
		margin-bottom: 20px;
		border-bottom: dotted 1px #000;
        box-sizing: border-box;
    }
	.btn_form > a{
		width: auto;
		height: 50px;
		border-radius: 10px;
		padding: 0 39px;
		color: #fff!important;
		background-color: #000;
		font-weight: 700;
		font-size: 1.6rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.h_submenu{
		position:relative;
		padding: 0 80px;
		display: block;
	}
	.h_submenu > li{
		list-style: none;
		color: #fff;
		padding-bottom: 20px;
		padding-left: 10px;
		margin-bottom: 20px;
		border-bottom: dotted 1px #fff;
	}
	.h_submenu > li::before{
		content:'>';
		padding-right: 3px;
	}
	.h_submenu > li > a{
		color: #fff;
		font-size: 1.5rem;
	}
	.h_fmenu{
		position:relative;
		padding: 0 80px 80px 80px;
		display: block;
	}
	.h_fmenu > li{
		list-style: none;
		color: #fff;
		padding-bottom: 20px;
		padding-left: 10px;
		margin-bottom: 20px;
		border-bottom: dotted 1px #fff;
	}
	.h_fmenu > li::before{
		content:'>';
		padding-right: 3px;
	}
	.h_fmenu > li > a{
		color: #fff;
		font-size: 1.5rem;
	}
}
.gnav_inner{
    width:100%;
    position: relative;
    clear: both;
    overflow: hidden;
}
.gnav_inner > .title {
    display:inline-block;
    float: left;
}
.gnav_inner > .title > a{
        display:inline-block;
        font-weight: 500;
        border: solid 1px #fff;
        border-radius: 15px;
        color: #fff;
        margin-top: 7px;
        margin-bottom: 15px;
        transition: all 0.5s ease;
        font-size: 1.5rem;
        padding: 5px 12px;
        line-height: 1.1em;
}
.gnav_inner > ul{
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

#head_logo a img {
	height:53px!important;
}
@media (min-width: 960px) {
    .gnav_inner > ul > li{
        width: calc(100% - 20px);
        display: block;
        padding-bottom: 7px;
        margin-bottom: 15px;
        margin-left: 15px;
        margin-right: 20px;
        border-bottom: dotted 1px #fff;
    }
}
@media (max-width: 959px) {
    .gnav_inner > ul > li{
        width: calc(100% - 40px);
        display: block;
        padding-bottom: 5px;
        margin-bottom: 15px;
        margin-right: 30px;
        margin-left: 10px;
        border-bottom: dotted 1px #fff;
    }
}
.gnav_inner > ul > li > a{
    color:#fff;
}

@media (min-width: 960px) {
    .menu_col2{
        width:calc(50% - 30px)!important;
        box-sizing: border-box!important;
        margin: 0 15px 15px 15px!important;
        padding: 0 0 7px 0!important;
    }
}
@media (max-width: 959px) {
    .menu_col2{
        width:calc(50% - 30px)!important;
        box-sizing: border-box!important;
        margin-right: 10px!important;
        margin-left: 10px!important;
        padding-bottom: 7px;
        margin-bottom: 15px;
    }
}
.megalink{
	display:block;
}

@media (min-width: 959px) {
    .megamenu_col2{
		width: 50%!important;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
    }
    .megamenu_col3{
		min-width: 66%;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
    }
}

@media (min-width: 960px) {
	.megamenu_ctt{
		position: absolute;
		top: 90px;
		width: calc(100% - 40px);
		left: 50%;
		transform: translateX(-50%);
		color: #000;
		transition: all 0.1s ease;	
		opacity: 0;
        overflow: hidden!important;
        z-index:2000;
        max-height: 0;
		box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
		background: rgba(255,255,255,0.93);
		border-radius: 15px;
	}
    .megamenu_ctt_inner{
        max-width: 1280px;
        margin:0 auto;
        position: relative;
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
    }
	.megamenu_ctt_inner > .megamenu{
		width:calc(100% - 230px);
	}
	.megalink:hover .megamenu_ctt {  /*	下層メニューのスタイル（親項目ホバー時） */
  		display:block;
		transition: all 0.3s ease;	
		opacity: 1;
        max-height: 100vh!important;
	}

    .megamenu_ctt_inner > .title{
        width: calc(230px - 60px);
        margin:  50px 30px;
		border-right:dotted 1px #000;
		display: flex;
		flex-wrap: wrap;
        align-items: flex-start;
    }
    .megamenu_ctt_inner > .title > h2{
        display:block;
        font-weight: 700;
        font-size: 2.2rem;
        padding-bottom: 15px;
		letter-spacing: 3px;
        color: #000;
    }
    .megamenu_ctt_inner > .title > a{
        border: solid 1px #fff;
        border-radius: 13px;
        color: #000;
        margin-top: 10px;
        transition: all 0.5s ease;
        font-size: 1.4rem;
        padding: 2px 7px;
    }
    .megamenu_ctt_inner > .title > a:hover{
        opacity: 0.7;
    }
}

@media (max-width: 959px) {
    .megamenu_ctt {
        display:block!important;
    }
    .megamenu_ctt_inner .title {
        display:none;
    }
}
.megamenu_ctt_inner > .title > h2 > span{
    display:inline-block;
	font-size: 1.6rem;
	padding-top: 20px;
	letter-spacing: 0;
}

.chenge_image_visible{
    transition:all 0.5s ease;
    opacity: 1!important;
	width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 960px) {
	.megamenu > div > ul {
		background-color: inherit;
		margin: -15px 0;
	}
	.megamenu > div > ul > li{
		width: 100%;
		max-width: 400px;
		min-width: 220px;
		padding: 15px;
		box-sizing: border-box;
		font-size: 1.5rem;
        line-height: 1.3em;
		letter-spacing: 1px;
		position: relative;
	}
	.megamenu > div > ul > li::before {
		content: "・";
		color:#000;
		padding-right:5px;
		display: inline-block;
		position: absolute;
		left: -5px;
	}
	.megamenu > div > ul > li > ul{
		list-style: disc;
	}
	.megamenu > div > ul > li > ul > li{
		padding: 15px 15px 0 15px;
		display: block;
		color:#000;
	}
	.megamenu > div > ul > li > ul > li::before{
		content: "・";
		color:#000;
		display: inline-block;
		position: absolute;
		left: 10px;
	}
}
@media (max-width: 959px) {
	.megamenu > div > ul {
	}
	.megamenu > div > ul > li{
		width: 100%;
		padding: 15px 0;
		box-sizing: border-box;
		border-bottom:dotted 1px #000;
		position: relative;
	}
	.megamenu > div > ul > li::before {
		content: "・";
		color:#000;
		padding-right:5px;
		display: inline-block;
		position: absolute;
        left: 0;
	}
	.megamenu > div > ul > li::after {
		content: "";
		width: 6px;
		height: 6px;
		border-top: solid 1px #000;
		border-right: solid 1px #000;
		position: absolute;
		top: 50%;
		right: 2px;
		transform: translateY(-50%) rotate(45deg);
		display: inline-block;
	}
	.megamenu > div > ul > li > ul > li{
		padding: 10px 10px 0 45px;
		display: block;
		color:#000;
	}
	.megamenu > div > ul > li > ul > li::before{
		content: "・";
		color:#000;
		display: inline-block;
		position: absolute;
		left: 40px;
	}
}
.megamenu > div > ul > li > a{
	transition: all 0.5s ease;
    color: #000;
}
.megamenu > div > ul > li > a:hover{
	opacity: 0.7;
}
@media (min-width: 960px) {
	.megamenu{
		margin:50px 0;
		padding-right: 50px;
	}
	.snav_ttl{
		display: inline-block;
		position: relative;
		padding-right: 20px;
		color:#000;
	}
}
@media (max-width: 959px) {
	.megamenu_ctt{
        display: none;
	}
    .megamenu > div > ul > li > a {
        font-size:13px;
		display: block;
		padding: 0 15px;
    }
	.snav_ttl{
		display: inline-block;
		position: relative;
		padding-right: 20px;
		color:#000;
		width: calc(100% - 30px);
	}
}
.megamenu > div > ul{
	list-style:none;
	font-weight: 700;
    display: flex;
    flex-wrap: wrap;
}
.snav_ttl > .searchcttopen{
	width:100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	cursor:pointer;
}
.snav_ttl > .searchcttopen::after{
	content: '+';
	position: absolute;
	top: -2px;
	right: 0;
	font-size: 2rem;
}
.snav_ttl > .searchcttopen.active2{
	position: absolute;
	top: 0;
	right: 0;
}
.snav_ttl > .searchcttopen.active2::after{
	content: '-';
	position: absolute;
	top: -2px;
	right: 0;
	font-size: 2rem;
}
.searchctt {
   width: 100%;
   margin: 0 auto;
   display: none;
   overflow: hidden;
   transition: none;
}
.active2 + .searchctt {
   transform: translatex(0);
}
@media (min-width: 960px) {
	.spnav{
		display:none!important;
	}
}
@media (max-width: 959px) {
	.spnav{
		display:block;
	}
}




/**************スクロールダウンイベント****************/

@media (min-width: 769px) {
    .i_about_bgmov {
        width:100%;
        white-space:nowrap;
        position: absolute;
        bottom: -70px;
        left: 0%;
        font-size: 10rem;
        line-height: 1em;
        z-index: -1;
    }
}
@media (max-width: 768px) {
    .i_about_bgmov {
        width:100%;
        white-space:nowrap;
        position: absolute;
        bottom: -20px;
        left: 0%;
        font-size: 10rem;
        line-height: 1em;
        z-index: -1;
    }
}
@keyframes hscroll2 {
    0% { transform:translateX(4px); }
    100% { transform:translateX(-100%); }
}
.i_about_bgmov ul {
    display:inline-block;
    margin:0;
    padding:0;
    animation:hscroll2 200s linear infinite;
}
.i_about_bgmov li {
    display:inline-block;
    font-weight: 700!important;
        color: #F2F2F2;
}
.drop_arrow{
    width: 5px;
    height: 5px;
    border-bottom: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 3px;
}

/*.mvctt:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
	background: linear-gradient(130deg, #EDF1F4, #fff, #E6EAED, #e4e3d0);
	background-size: 800% 800%;
	-webkit-animation: mvanimation 5s ease infinite;
	-moz-animation: mvanimation 5s ease infinite;
	animation: mvanimation 5s ease infinite;
	overflow: hidden;
	mix-blend-mode: multiply;
}*/
/* #EDF1F4, #ECF3F8,#E6EAED,#fff */
@media (min-width: 960px) {
	.mvctt{
		width:100%;
		height: 100vh;
		min-height: 600px;
		position: relative;
		overflow: hidden;
		/*position: sticky;
		top: 0;
		left: 0;
		background-image:url("file:///20231012/web/bb-connection.com/img/bg_noise.png");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;*/
	}
	.mvctt_bg{
		width: calc(100% - 100px);
		/*max-width: 1260px;*/
		max-width: 80%;
		height: auto;
		position: absolute;
		right: 0;
		top: -35%;
	}
	.mvctt_on{
		position: absolute;
		left: 0;
		top:50%;
		transform: translateY(-50%);
		/*bottom: 100px;*/
		padding-left: 50px;
		color: #fff;
		
	}
}
@media (max-width:959px) {
	.mvctt{
		width:100%;
		position: relative;
		/*background-image:url("file:///20231012/web/bb-connection.com/img/bg_noise.png");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;*/
		overflow: hidden;
		min-height: 100vh; /* Fallback */
		min-height: calc(var(--vh, 1vh) * 100);
	}
	.mvctt_bg{
		width: 100%;
		height: 80%;
		min-height: 728px;
		position: absolute;
		right: -5%;
		top: -5%;
		text-align: right;
	}
	.mvctt_on{
		position: absolute;
		left: 0;
		top: 40%;
		transform: translateY(-40%);
		padding: 35px;
		color: #fff;
	}
}
@-webkit-keyframes mvanimation {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
@-moz-keyframes mvanimation {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
@keyframes mvanimation {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
.mvctt_bg svg{
	width: auto;
	height: 100%;
	object-fit: contain;
}
.mvctt_on > #copy > img{
	width: 100%;
	height: auto;
}
@media (min-width: 960px) {
	.mvctt_on > #copy{
		padding-bottom: 76px;
		position: relative;
		font-size: 4.5rem;
        font-weight: 700;
		line-height: 1.6;
        letter-spacing: .6px;
		text-shadow: 2px 2px 11px rgba(0, 0, 0, 0.4);
	}
	.mvctt_on > #copy::after{
		content: '';
		width: 200px;
		height: 4px;
		background: #fff;
		position: absolute;
		bottom: 37px;
		left: 0;
	}
}
@media (max-width: 959px) {
	.mvctt_on > #copy{
		padding-bottom: 50px;
		position: relative;
		font-size: 2.7rem;
        font-weight: 700;
		line-height: 1.6;
        letter-spacing: .6px;
		text-shadow: 2px 2px 11px rgba(0, 0, 0, 0.4);
	}
	.mvctt_on > #copy::after{
		content: '';
		width: 50%;
		height: 2px;
		background: #fff;
		position: absolute;
		bottom: 22px;
		left: 0;
	}
}
.mvctt_on > #copy > img{
	width: 100%;
	height: auto;
}
@media (min-width: 960px) {
	.mvctt_on >  p{
		font-size: 2rem;
		line-height: 1.8em;
		font-family: YakuHanJP,'Noto San-Serif JP', san-serif , YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
		font-weight: 700;
	}
	.i_pickinfo_ctt{
		max-width: 380px;
		position: absolute;
		bottom: 50px;
		right: 0;
		background: #fff;
		border-radius: 9px 0px 0px 9px;
		box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), -5px -5px 5px 0px rgba(255, 255, 255, 0.40);
		padding: 15px 20px;
		z-index: 2;
	}
	.i_recruit_ctt{
		position: absolute;
		/*top: 50%;
		transform: translateY(-50%);*/
		bottom: 160px;
		right: 0;
		z-index: 2;
	}
}
@media (max-width: 959px) {
	.mvctt_on >  p{
		font-size: 1.4rem;
		line-height: 1.5em;
		font-family: YakuHanJP,'Noto San-Serif JP', san-serif , YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
		font-weight: 500;
	}
	.i_pickinfo_ctt{
		width: calc(100% - 70px);
		max-width: 300px;
		position: absolute;
		bottom: 100px;
		right: 0;
		background: #fff;
		border-radius:  9px 0 0 9px;
		box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25), -5px -5px 5px 0px rgba(255, 255, 255, 0.40);
		padding: 10px 20px;
		z-index: 2;
	}
	.i_recruit_ctt{
		position: fixed;
		bottom: 50px;
		right: 0;
		z-index: 2;
	}
}
.i_pickinfo_ctt > a > dl > dt{
	display: flex;
	align-items: baseline;
}
.i_recruit_ctt > a{
	color: #fff;
	background-color: #222;
	border-top: solid 1px #222;
	border-bottom: solid 1px #222;
	border-left: solid 1px #222;
	border-radius: 9px 0px 0px 9px;
	padding:  11px 40px 11px 25px;
	/*writing-mode:vertical-rl;*/
	font-weight: 700;
	letter-spacing: 2px;
	transition: all 0.5s ease; /* スムーズな変更 */
	position: relative;
}
.i_recruit_ctt > a:hover{
	color: #222;
	background-color: #F5D800;
	border-top: solid 1px #222;
	border-bottom: solid 1px #222;
	border-left: solid 1px #222;
}
.i_recruit_ctt_icon{
	width: 14px;
	height: 14px;
	border-radius: 7px;
	border:solid 1px #fff;
	position:absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 1px;
	transition: all 0.5s ease; /* スムーズな変更 */
}
.i_recruit_ctt_icon::after{
	content: '';
	width: 5px;
	height: 1px;
	background: #fff;
	position:absolute;
	bottom: -2px;
	left: -2px;
	transform:rotate(135deg);
	transition: all 0.5s ease; /* スムーズな変更 */
}

/* footerに重なった際のスタイル */
.i_recruit_ctt.footer-active > a {
  color: #222;
  background-color: #F5D800;
}
.i_recruit_ctt.footer-active > a:hover {
  background-color: #fff;
}
.i_recruit_ctt.footer-active .i_recruit_ctt_icon {
  border: solid 1px #222;
}

.i_recruit_ctt.footer-active .i_recruit_ctt_icon::after {
  background: #222;
}

a:hover > .i_recruit_ctt_icon{
	border:solid 1px #222;
	transition: all .5s ease;
}
a:hover > .i_recruit_ctt_icon::after{
	content: '';
	background: #222;
}


.info_ico{
	background: #FFD900;
	font-family: "Noto Sans JP";
	font-size: 1rem;;
	font-style: normal;
	font-weight: 500;
	line-height: 1em;
	letter-spacing: 0.6px;
	padding: 2px 5px;
	border-radius: 10px;
	display: inline-block;
	margin-right: 10px;
}
.info_date{
	color: #737072;
	font-family: "Noto Sans JP";
	font-size: 1.2rem;;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.72px;
	display: inline-block;
}
a .info_ttl{
	color: #000;
	font-family: "Noto Sans JP";
	font-size: 1.3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 20px; /* 153.846% */
	display: block;
	padding-top: 5px;
	transition: all .5s ease;
	padding-right: 40px;
}
a:hover .info_ttl{
	color: #737072!important;
	text-decoration: underline;
}


/**************スクロールダウンイベント****************/
#top_s_down{
    position: absolute;
    bottom: 0%;
    left: 0;
	width: 30px;
	height: auto;
		z-index: 3;
}

#top_s_down a {
	position: relative;
    color: #737072;
    font-size: 12px;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1;
    letter-spacing: .1em;
}
@media (min-width: 768px) {
    #top_s_down > a::before {
        width: 88px;
        content: 'Scroll Down';
        position: absolute;
        bottom: 140px;
        transform: rotate(90deg);
        left: -20px;
    }
    #top_s_down a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left:20px;
        width: 1px;
        height: 100px;
        background: #737072;
    }
}
@media (max-width: 767px) {
    #top_s_down > a::before {
        width: 88px;
        content: 'Scroll Down';
        position: absolute;
        bottom: 140px;
        transform: rotate(90deg);
        right: 0;
    }
    #top_s_down a::after {
        content: '';
        position: absolute;
        bottom: 0;
        right:42px;
        width: 1px;
        height: 100px;
        background: #737072;
    }
}
#top_s_down a::after {
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
