@charset "utf-8";
/* CSS Document */

/*========= 共通設定 ===============*/

/* フォント指定 */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(//fonts.googleapis.com/css?family=Josefin+Sans);

html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Noto Sans Japanese', Meiryo, "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
    background: #000;
    color: #fff;
}

::-webkit-scrollbar{
   width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track{
   background-color: rgba(255,255,255,0.2);
}
::-webkit-scrollbar-thumb{
   background-color: #009dd3;
}
.scroll_box::-webkit-scrollbar {
    display:none;
}
.main {
    opacity: 0;
}
.pageFadeIn {
    animation: pageFadeIn .75s 1 ease-in-out forwards;
}
@keyframes pageFadeIn {
	0% { 
        opacity: 0;
	}
    100% { 
        opacity: 1;
	}
}
.content h1,
.content h2,
.content h3,
.content h4,
.content p,
.content span,
.content a,
.hamburger_menu .content h1,
.hamburger_menu .content h2,
.hamburger_menu .content h3,
.hamburger_menu .content h4,
.hamburger_menu .content p,
.hamburger_menu .content span,
.hamburger_menu .content a,
footer .content h1,
footer .content h2,
footer .content h3,
footer .content h4,
footer .content p,
footer .content span,
footer .content a {
    color: #fff;
}
.content h1.title,
.content h1 span.title,
.content h2 {
    font-size: clamp(20px, 2vw, 40px);
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    display: inline-block;
}
.content h2 {
    font-size: clamp(18px, 1.8vw, 30px);
    padding-bottom: 0;
    margin-bottom: 50px;
}
.content h1.title span,
.content h1 .title span,
.content h2 span {
    font-size: clamp(13px, 0.9vw, 20px);
    display: block;
    font-weight: normal;
}
.content p {
    font-size: clamp(14px, 1.8vw, 16px);
    margin-bottom: 25px;
    line-height: 2;
}
.content p.annotation {
    font-size: 1.4rem;
}
a, .content a {
    position: relative;
}
a:hover,
.content a:hover {
    text-decoration: none;
}
a:hover:after,
.content a:hover:after {
    content: '';
    position: absolute;
    background: #fff;
    height: 1px;
    width: 0;
    animation: borderLink 300ms 1 ease-in-out forwards;
    left: 0;
    bottom: -1px;
}
@keyframes borderLink {
	0% { 
		width: 0;
	}
    100% { 
		width: 100%;
	}
}
a.blank {
    margin-right: 22px;
}
a.blank:before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: url(/service_shared/img/svg/icn_new_window.svg) no-repeat 0 0 / 14px;
    top: 50%;
    right: -20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
a.btn_black.blank:before {
    right: 7px;
    top: auto;
    bottom: 8px;
    transform: none;
}
.header_nav .title a:after,
a.btn_white:after,
a.btn_black:after {
    content: none!important;
}
a.btn_white {
    background: #fff;
    color: #000;
    font-size: clamp(14px, 1.1vw, 18px);
    padding: 8px 20px;
    border-radius: 100px;
}
a.btn_white:hover,
a.btn_black:hover {
    background: #009dd3;
    color: #fff!important;
    transition: .3s;
}
.btn_entry,
.content .btn_entry {
    display: block;
    width: 100%;
    background: #009dd3;
    font-size: clamp(25px, 3vw, 40px);
    text-align: center;
    padding: 30px 20px;
    color: #fff;
    box-sizing: border-box;
    position: relative;
    transition: .3s;
}
.btn_entry:hover,
.content .btn_entry:hover {
    color: #009dd3;
    background: #fff;
}
.btn_entry:before,
.content .btn_entry:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 32px;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    -webkit-mask-image: url(/service_shared/img/top/icn_arrow_w.svg);
    mask-image: url(/service_shared/img/top/icn_arrow_w.svg);
    -webkit-mask-size: 20px;
    mask-size: 20px;
}
.btn_entry:hover:before,
.content .btn_entry:hover:before {
    background: #009dd3;
}
.btn_entry:hover:after,
.content .btn_entry:hover:after {
    content: none;
}
a.link_auto:after {
    content: '';
    position: absolute;
    background: #fff;
    height: 1px;
    width: 0;
    animation: borderLink 1000ms infinite ease-in-out forwards;
    left: 0;
    bottom: -1px;
}
a.bnr_link {
    display: inline-block;
}
a.bnr_link img {
    transition: .8s;
}
a.bnr_link img:hover {
    opacity: .7;
}
a.bnr_link:hover:after {
    content: none;
}
.content a.text_link {
    text-decoration: underline;
}
.content a.text_link:hover:after {
    content: none;
}
.flex {
    display: flex;
}
span.auto_br {
    display: block;
}

/* ヘッダーナビ */
#nav_content {
    width: 100%;
    margin: 0 auto;
    position: relative;
    transform: translateY(-10%);
    opacity: 0;
    z-index: 9999;
    background: linear-gradient(rgba(0,0,0,.4), rgba(255,0,0,0) 99%);
}
.slideDownTop {
    animation: slideDownTop 1s 1 ease-in-out forwards;
}
@keyframes slideDownTop {
	0% { 
		transform: translateY(-10%);
        opacity: 0;
	}
    100% { 
		transform: translateY(0);
        opacity: 1;
	}
}
.header_nav {
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 35px;
    box-sizing: border-box;
    margin-right: 65px;
}
.header_nav.flex {
    justify-content: space-between;
}
.header_nav .title a {
    color: #fff;
    transition: .8s;
}
.header_nav .title:hover a {
    text-decoration: none;
}
.header_nav .title img {
    width: 200px;
    transition: .8s;
}
.header_nav .title span {
    font-size: 2rem;
    font-weight: 200;
    vertical-align: bottom;
    padding-left: 15px;
    transition: .8s;
}
.header_nav .title:hover span {
    opacity: .8;
}
.header_nav .nav_link ul {
    margin-top: 8px;
}
.header_nav .nav_link li {
    margin-right: 30px;
}
.header_nav .nav_link li a {
    color: #fff;
    font-size: clamp(14px, 1.1vw, 18px);
}

/* ハンバーガーメニュー */
.hamburger {
    width: 40px;
    height: 32px;
    position: fixed;
    right: 30px;
    top: 40px;
    z-index: 10001;
}
.hamburger_bar {
    display: block;
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    background: #fff;
    transition: .3s;
}
.hamburger_bar:nth-child(1) {
    top: 6%;
}
.hamburger_bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamburger_bar:nth-child(3) {
    top: 94%;
    transform: translateY(-100%);
}
.hamburger.active .hamburger_bar:nth-child(2) {
    display: none;
    transition: .3s;
}
.hamburger.active .hamburger_bar:nth-child(1) {
    top: 4px;
    transform: translateY(6px) rotate(-135deg);
    transition: .3s;
}
.hamburger.active .hamburger_bar:nth-child(3) {
    top: 16px;
    transform: translateY(-6px) rotate(135deg);
    transition: .3s;
}

/* リセットCSS */
button {
    border-color: transparent;
    background: transparent;
    cursor: pointer;
}
.hamburger_menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    min-width: 320px;
    max-width: 750px;
    height: 100vh;
    background: #222;
    padding: 50px;
    overflow-y: auto;
    box-sizing: border-box;
    z-index: 10000;
}
.hamburger_menu > .content {
    display: flex;
    justify-content: center;
}
.hamburger_menu > .content > div {
    width: 40%;
}
.hamburger_menu .sitemap > .flex {
    display: block;
}

/* テーブル */
.content table {
    color: #fff;
    font-size: 1.6rem;
    line-height: 2;
}
.content table th {
    font-size: clamp(12px, 1.8vw, 16px);
    background: none;
    border: 1px solid rgba(255,255,255,0.6);
    border-left: none;
    border-right: none;
    text-align: center;
    width: 25%;
    vertical-align: top;
    padding: 40px 15px;
    box-sizing: border-box;
}
.content table td {
    font-size: clamp(12px, 1.8vw, 16px);
    border: 1px solid rgba(255,255,255,0.6);
    border-left: none;
    border-right: none;
    padding: 40px 15px;
    box-sizing: border-box;
}

/* ページ内アンカーメニュー */
.anchor_menu {
    justify-content: center;
}
.anchor_menu li {
    border-right: 1px solid #333;
}
.anchor_menu li:last-child {
    border-right: none;
}
.anchor_menu a {
    font-size: clamp(12px, 1.8vw, 16px);
    padding: 25px;
    min-width: 200px;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

/* タブ切り替えメニュー */
.tab_content {
    display: none;
}
.tab_content:first-of-type {
    display: block;
}
.tab_link {
    justify-content: space-between;
    margin-bottom: 50px;
}
.tab_link li {
    width: 100%;
    font-size: clamp(18px, 2vw, 20px);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}
.tab_link li span span {
    display: block;
    font-weight: normal;
    font-size: clamp(12px, 1vw, 13px);
}
.tab_link li > span {
    opacity: .4;
    border-bottom: 1px solid;
    display: inline-block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
.tab_link li > span.active {
    opacity: 1;
}

/* FAQ */
.faq li {
    border-bottom: 1px solid #999;
    padding: 30px 0;
    cursor: pointer;
    position: relative;
}
.faq li:before,
.faq li:after {
    display: block;
	content: '';
	position: absolute;
	top: 45px; 
	right: 0;
	width: 30px;
	height: 2px;
	background: #999;
}
.faq li:before {
	transition: .2s;
	-webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.faq li:after {
	transition: .3s;
}
.faq li.active:before{
    -webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
.faq li.active:after{
	background: transparent;
}
.faq .question,
.faq .answer {
    position: relative;
    padding-right: 35px;
    padding-left: 35px;
    font-size: clamp(12px, 1.8vw, 16px);
}
.faq .question {
    margin-bottom: 0;
}
.faq .answer {
    display: none;
    margin: 30px 0 0 50px;
}
.faq .answer.active {
    display: block;
}
.faq .question:before,
.faq .answer:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 30px;
    left: 0;
    top: -17px;
}
.faq .question:before {
    content: 'Q';
}
.faq .answer:before {
    content: 'A';
}

/* 背景設定 */
.bg_svg {
    background: url(/recruit_shared/img/index/asset_01.svg) no-repeat 0 40%;
}
.bg_svg > div {
    background: rgba(0, 0, 0, 0.9);
}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.hamburger_menu {
  transform: translateX(100vw);
  transition: all .3s linear;
}
/* アニメーション後のメニューの状態 */
.hamburger_menu.is-active{
  transform: translateX(0);
}


.tile_thumbnail.flex > div {
    position: relative;
    overflow: hidden;
    transition: .5s;
}
.tile_thumbnail.flex > div figure {
    transition: .5s;
}
.tile_thumbnail.flex > div figure img {
    width: 100%;
}
.tile_thumbnail.flex > div:hover figure {
    transform: scale(1.1);
    transition: .5s;
}
.tile_thumbnail.flex > div figure:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: .5s;
}
.tile_thumbnail.flex > div:hover figure:before {
    background: #000;
    opacity: .5;
    z-index: 2;
    transition: .5s;
}
.tile_thumbnail.flex > div .profile {
    height: 190px;
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
    text-shadow: 0 0px 6px rgb(0 0 0 / 50%);
}
.tile_thumbnail.flex > div .profile h4 {
    font-size: clamp(13px, 1.2vw, 22px);
    font-weight: bold;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 10px;
}
.tile_thumbnail.flex > div .profile p {
    font-size: clamp(12px, 0.7vw, 18px);
    margin-bottom: 0;
    line-height: 1.5;
}
.tile_thumbnail.flex > div .profile p.name_initial {
    font-size: clamp(13px, 1vw, 18px);
    margin-bottom: 5px;
}
.tile_thumbnail.flex > div a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4;
}
.tile_thumbnail.flex .tile_thumbnail_content:before,
.tile_thumbnail.flex .tile_thumbnail_content:after {
    position: absolute;
    content: '';
    width: 0;
    height: 4px;
    background: #009dd3;
    z-index: 4;
    transition: all .2s linear;
    transition-delay: .2s;
}
.tile_thumbnail.flex .tile_thumbnail_content:before {
    bottom: 0;
    left: 0;
}
.tile_thumbnail.flex .tile_thumbnail_content:after {
    top: 0;
    right: 0;
}
.tile_thumbnail.flex .tile_thumbnail_content:hover:before,
.tile_thumbnail.flex .tile_thumbnail_content:hover:after {
    width: 100%;
}
.tile_thumbnail.flex .tile_thumbnail_content > div:before,
.tile_thumbnail.flex .tile_thumbnail_content > div:after {
    position: absolute;
    content: '';
    width: 4px;
    height: 0;
    background: #009dd3;
    z-index: 2;
    transition: all .2s linear;
}
.tile_thumbnail.flex .tile_thumbnail_content > div:before {
    bottom: 0;
    right: 0;
}
.tile_thumbnail.flex .tile_thumbnail_content > div:after {
    top: 0;
    left: 0;
}
.tile_thumbnail.flex .tile_thumbnail_content:hover > div:before,
.tile_thumbnail.flex .tile_thumbnail_content:hover > div:after {
    height: 100%;
}


/* フッター */
footer {
    background: #333;
    padding: 30px 30px 50px;
}
footer .content {
    max-width: 1500px;
}
footer .content > .flex {
    justify-content: space-between;
}
footer .content > .flex div {
    margin-right: 30px;
}
footer .content > .flex div:last-child {
    margin-right: 0;
}
footer dl {
    font-size: 1.4rem;
}
footer figure {
    display: none;
}
footer dd.link-area a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.news_topics {
    color: #fff;
    font-size: 1.5rem;
}
.news_topics li {
    margin-bottom: 10px;
}
.news_topics li a {
    display: flex;
    align-items: baseline;
}
.news_topics li a:hover:after {
    content: none;
}
.news_topics li a .date {
    order: 1;
    min-width: 113px;
}
.news_topics li a .category {
    order: 2;
    font-size: 1.3rem;
    border: 1px solid #fff;
    padding: 3px;
    box-sizing: border-box;
    display: inline-block;
    min-width: 130px;
    text-align: center;
    margin: 0 12px;
}
.news_topics li a .title {
    order: 3;
    font-size: 1.5rem;
    margin-bottom: 0;
    position: relative;
}
.news_topics li a:hover .title:after {
    content: '';
    position: absolute;
    background: #fff;
    height: 1px;
    width: 0;
    animation: borderLink 300ms 1 ease-in-out forwards;
    left: 0;
    bottom: -1px;
}
.sitemap dl,
.entry dl {
    margin-bottom: 10px;
}
.sitemap dt,
.entry dt {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}
.sitemap dd {
    padding-left: 10px;
    margin-bottom: 5px;
}
.content .btn_default {
    display: inline-block;
    background: none;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px;
    text-align: center;
    width: 80%;
    max-width: 300px;
    margin-bottom: 20px;
    line-height: 2.5;
    box-sizing: border-box;
}
.content .btn_black {
    display: inline-block;
    background: #111;
    color: #009dd3!important;
    padding: 10px;
    text-align: center;
    width: 200px;
    margin-bottom: 20px;
    line-height: 2.5;
    box-sizing: border-box;
    font-weight: bold;
}
.hamburger_menu .sitemap dd {
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 1.4rem;
}
.hamburger_menu .sitemap dt,
.hamburger_menu .entry dt {
    margin-bottom: 10px;
}

/*背景色が伸びて出現 共通*/
.bgextend{
  animation-name:bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;/*　はみ出た色要素を隠す　*/
  opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
  animation-name:bgextendAnimeSecond;
  animation-duration:1s;
  animation-delay: 0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

/*--------- 左から --------*/
.bgLRextend::before{
  animation-name:bgLRextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #009dd3;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}
@media (max-width: 1199px) {
    .nav_link {
        display: none;
    }
    .content {
        width: 90%;
    }
}
@media (max-width: 1039px) {
    a:hover:after,
    .content a:hover:after {
        content: none;
    }
    #nav_content {
        background: none;
    }
    .content h1.title {
        padding: 60px 0;
    }
    .content h2 {
        margin-top: 60px;
        margin-bottom: 20px;
    }
    .content table th,
    .content table td {
        display: block;
        width: 100%;
    }
    .content table th {
        border-bottom: none;
        text-align: left;
        padding-bottom: 0;
    }
    .content table td {
        border: none;
        padding-top: 5px;
    }
    span.auto_br {
        display: inline-block;
    }
    .sp_reverse {
        flex-direction: column-reverse;
    }
    .header_nav {
        margin-right: 0;
        padding: 15px;
    }
    .header_nav .title img {
        width: 140px;
    }
    .header_nav .title span {
        font-size: 1.4rem;
        font-weight: normal;
        padding-left: 5px;
    }
    .hamburger {
        width: 37px;
        top: 13px;
        right: 15px;
    }
    .hamburger_menu {
        padding: 20px;
    }
    .hamburger_menu > .content {
        display: block;
    }
    .hamburger_menu > .content > div {
        width: 100%;
    }
    .tile_thumbnail.flex > div .profile {
        left: 10px;
        bottom: 10px;
        height: auto;
    }
    .tile_thumbnail.flex > div:hover figure {
        transform: none;
    }
    .tile_thumbnail.flex > div figure:before {
        content: none;
    }
    .tile_thumbnail.flex .tile_thumbnail_content:before,
    .tile_thumbnail.flex .tile_thumbnail_content:after,
    .tile_thumbnail.flex .tile_thumbnail_content >div:before,
    .tile_thumbnail.flex .tile_thumbnail_content >div:after {
        content: none;
    }
    .tile_thumbnail.flex > div,
    .interview .tile_thumbnail.flex > div {
        width: 50%;
    }
    .tab_link {
        flex-wrap: wrap;
    }
    .tab_link li {
        width: 50%;
    }
    .faq .answer {
        margin-left: 15px;
    }
    .anchor_menu a {
        min-width: auto;
        padding: 10px;
    }
    .btn_entry, .content .btn_entry {
        padding: 20px;
    }
    .btn_entry:before, .content .btn_entry:before {
        -webkit-mask-size: 13px;
        mask-size: 13px;
        width: 13px;
        height: 19px;
    }
    .faq li:before,
    .faq li:after {
        top: 41px; 
        width: 15px;
    }
    footer {
        padding: 25px 0;
    }
    footer .content h3 {
        font-size: 6vw;
    }
    footer .content > .flex {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    footer .content > .flex div {
        margin-right: 0;
    }
    footer .news_topics .tag {
        font-size: 1.2rem;
        padding: 2px;
        margin-bottom: 3px;
    }
    footer .news_topics li {
        margin-bottom: 20px;
    }
    footer .news_topics li a {
        flex-wrap: wrap;
    }
    footer .news_topics li a:hover .title:after {
        content: none;
    }
    footer .sitemap {
        display: none;
    }
    footer .content a.btn_black {
        width: 100%;
        margin-bottom: 0;
    }
    .hamburger_menu .content h3 {
        font-size: 7vw;
    }
    
}
@media (max-width: 799px) {
    footer .news_topics li {
        position: relative;
        flex-wrap: wrap;
    }
    footer .news_topics .l-rss__list>li .chip {
        position: absolute;
        top: -2em;
        left: 100px;
    }
}