@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=EB+Garamond:500&display=swap');

/* *****************************************************************************
=01 reset style
=02 option style
=03 common style
=04 layout style
***************************************************************************** */

/*---------- =01 reset style ----------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*---------- //end reset style ----------*/

/*---------- =02 option style ----------*/
.tal{text-align:left!important;}
.tac{text-align:center!important;}
.tar{text-align:right!important;}
.mbNone{margin-bottom:0!important;}
.mbShort{margin-bottom:1em!important;}
.mbMiddle{margin-bottom:2em!important;}
.mbLong{margin-bottom:3em!important;}
.bold{font-weight:bold;}
.red{color:#e50112;}
.blue{color:#0071bd;}
.violet{color:#4b5494;}
.cf{zoom:1;}
.cf:before,.cf:after{content:"";display:table;}
.cf:after{clear:both;}
/*---------- //end option style ----------*/

/*---------- =03 common style ----------*/
*{
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
html{
	font-size: 62.5%;
}
body{
    font-family: YakuHanJP_Narrow, "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, arial;
    font-weight: 500;
    line-height: 2;
    color: #333333;
    background-color: #ffffff;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    letter-spacing: 0.02em;
    margin-top: 100px;
}
a{
	color: #333333;
	text-decoration: none;
}
a:hover,
a:active{
	text-decoration: none;
}
a:visited{
    color: inherit;
}
img,a img{
	vertical-align: bottom;
	border: none;
}
strong{
	font-weight: bold;
}
::selection{
	background-color: #383b7e;
	color: #ffffff;
}
::-moz-selection {
	background-color: #383b7e;
	color: #ffffff;
}
.en{
    font-family: 'EB Garamond', serif;
}

@media screen and (max-width: 1380px){
    body{
        margin-top: 80px;
    }
}

@media screen and (max-width: 760px){
    body{
        font-family: YakuHanJP, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, arial;
        margin-top: 60px;
    }
}

/*---------- //end common style ----------*/

/*---------- =04 layout style ----------*/
/*========================================
header layout
========================================*/
/* header */
.header{
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
}
.header-inner{
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #ededed;
}

@media screen and (max-width: 1380px){
    /* header */
    .header{
        height: 80px;
    }
    .header-inner{
        height: 80px;
    }
}

@media screen and (max-width: 1120px){
    .fixed .header-inner{
        position: fixed;
        top: 0;
        z-index: 101;
    }
}

@media screen and (max-width: 760px){
    /* header */
    .header{
        height: 60px;
    }
    .header-inner{
        height: 60px;
    }
}

/* header-name */
.header-name{
    margin-left: 40px;
}
.header-name img{
    width: 85px;
}

@media screen and (max-width: 1380px){
    /* nav */
    .header-name{
        margin-left: 15px;
    }
    .header-name img{
        width: 65px;
    }
}

@media screen and (max-width: 760px){
    /* header-name */
    .header-name{
        margin-left: 15px;
    }
    .header-name img{
        width: 65px;
    }
}

@media screen and (max-width: 420px){
    /* header-name */
    .header-name{
        margin-left: 10px;
    }
    .header-name img{
        width: 55px;
    }
}

/* header-ranking */
.header-ranking{
    letter-spacing: -.4em;
    padding-left: 30px;
}
.header-ranking > li{
    display: inline-block;
    letter-spacing: normal;
    margin-right: 10px;
    vertical-align: bottom;
}
.header-ranking > li:last-child{
    margin-right: 0;
}
.header-ranking > li > a{
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.header-ranking > li > a:hover{
    opacity: 0.75;
}
.header-ranking img{
    width: 62px;
}

@media screen and (max-width: 1380px){
    /* header-ranking */
    .header-ranking{
        padding-left: 20px;
    }
    .header-ranking > li{
        margin-right: 8px;
    }
    .header-ranking img{
        width: 58px;
    }
}

@media screen and (max-width: 1160px){
    /* header-ranking */
    .header-ranking{
        -webkit-box-flex: 1;
	    -ms-flex: 1;
	    flex: 1;
    }
}

@media screen and (max-width: 760px){
    /* header-ranking */
    .header-ranking{
        padding-left: 15px;
    }
    .header-ranking > li{
        margin-right: 6px;
    }
    .header-ranking img{
        width: 42px;
    }
}

@media screen and (max-width: 420px){
    /* header-ranking */
    .header-ranking{
        padding-left: 12px;
    }
    .header-ranking > li{
        margin-right: 5px;
    }
    .header-ranking img{
        width: 40px;
    }
}

@media screen and (max-width: 374px){
    /* header-ranking */
    .header-ranking{
        display: none;
    }
}

/* nav */
.nav{
    -webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.nav ul{
    letter-spacing: -.4em;
    text-align: right;
    margin-right: 40px;
}
.nav li{
    display: inline-block;
    letter-spacing: normal;
    font-weight: bold;
    margin-left: 35px;
    font-size: 16px;
    line-height: 100px;
    position: relative;
}
.nav li a{
    display: block;
    text-align: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.nav li a:hover{
    color: #0071bd;
}
.nav li a::after{
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-delay: 0;
    transition-delay: 0;
    background: #0071bd;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top
}
.nav li a:hover::after{
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

@media screen and (max-width: 1380px){
    /* nav */
    .nav ul{
        margin-right: 30px;
    }
    .nav li{
        font-size: 14px;
        margin-left: 25px;
        line-height: 80px;
    }
}

@media screen and (max-width: 1160px){
    /* nav */
    .nav{
        display: none;
    }
}

/* header-button-area */
.header-button-area{
    width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
}
.header-button-search,
.header-button-jobchange{
    width: 100px;
    height: 100px;
}
.header-button-search a,
.header-button-jobchange a{
    width: 100px;
    height: 100px;
    display: block;
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    white-space: nowrap;
    text-align: center;
    padding-top: 66px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.header-button-search a{
    background: #0071bd url("/images/icon-search.svg") center 20px no-repeat;
    background-size: 32px 32px;
}
.header-button-search a:hover{
    background: #0082d9 url("/images/icon-search.svg") center 20px no-repeat;
    background-size: 32px 32px;
    color: #ffffff;
}
.header-button-jobchange a{
    background: #e50012 url("/images/icon-advice.svg") center 20px no-repeat;
    background-size: 37px 38px;
}
.header-button-jobchange a:hover{
    background: #ff1f2e url("/images/icon-advice.svg") center 20px no-repeat;
    background-size: 37px 38px;
    color: #ffffff;
}

@media screen and (max-width: 1380px){
    /* header-button-area */
    .header-button-area{
        width: 160px;
    }
    .header-button-search,
    .header-button-jobchange{
        width: 80px;
        height: 80px;
    }
    .header-button-search a,
    .header-button-jobchange a{
        width: 80px;
        height: 80px;
        font-size: 13px;
        line-height: 13px;
        padding-top: 53px;
    }
    .header-button-search a{
        background: #0071bd url("/images/icon-search.svg") center 15px no-repeat;
        background-size: 27px 27px;
    }
    .header-button-search a:hover{
        background: #0082d9 url("/images/icon-search.svg") center 15px no-repeat;
        background-size: 27px 27px;
    }
    .header-button-jobchange a{
        background: #e50012 url("/images/icon-advice.svg") center 15px no-repeat;
        background-size: 29px 30px;
    }
    .header-button-jobchange a:hover{
        background: #ff1f2e url("/images/icon-advice.svg") center 15px no-repeat;
        background-size: 29px 30px;
    }
}

@media screen and (max-width: 1160px){
    /* header-button-area */
    .header-button-search{
        display: none;
    }
}

@media screen and (max-width: 760px){
    /* header-button-area */
    .header-button-area{
        width: 120px;
    }
    .header-button-jobchange{
        width: 60px;
        height: 60px;
        position: absolute;
        top: 0;
        right: 60px;
    }
    .header-button-jobchange a{
        width: 60px;
        height: 60px;
        font-size: 10px;
        line-height: 10px;
        padding-top: 40px;
    }
    .header-button-jobchange a{
        background: #e50012 url("/images/icon-advice.svg") center 12px no-repeat;
        background-size: 22px 23px;
    }
    .header-button-jobchange a:hover{
        background: #ff1f2e url("/images/icon-advice.svg") center 12px no-repeat;
        background-size: 22px 23px;
    }
}

/* hamburger-button */
.hamburger-button{
    display: none;
}

@media screen and (max-width: 1160px){
    /* hamburger-button */
    .hamburger-button{
        display: block;
        position: absolute;
        width: 80px;
        height: 80px;
        cursor: pointer;
        top: 0;
        right: 0;
        background-color: #0071bd;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
        z-index: 101;
    }
    .hamburger-button:hover{
        background-color: #0082d9;
    }
    .fixed .hamburger-button{
        position: fixed;        
    }
    .hamburger-button span{
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        background-color: #ffffff;
        display: block;
        height: 2px;
        position: absolute;
        width: 26px;
    }
    .hamburger-button span:nth-child(1){
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: left top;
        transform-origin: left top;
        top: 31px;
        left: 27px;
    }
    .hamburger-button span:nth-child(2){
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        top: 39px;
        left: 27px;
    }
    .hamburger-button span:nth-child(3){
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        top: 47px;
        left: 27px;
    }
    .hamburger-button.is-open span{
        width: 27px;
    }
    .hamburger-button.is-open span:nth-child(1){
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 30px;
        left: 31px;
    }
    .hamburger-button.is-open span:nth-child(2){
        display: none;
    }
    .hamburger-button.is-open span:nth-child(3){
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 30px;
        left: 23px;
    }
}

@media screen and (max-width: 760px){
    /* hamburger-button */
    .hamburger-button{
        width: 60px;
        height: 60px;
    }
    .hamburger-button span{
        height: 2px;
        width: 22px;
    }
    .hamburger-button span:nth-child(1){
        top: 21px;
        left: 19px;
    }
    .hamburger-button span:nth-child(2){
        top: 28px;
        left: 19px;
    }
    .hamburger-button span:nth-child(3){
        top: 35px;
        left: 19px;
    }
    .hamburger-button.is-open span{
        width: 24px;
    }
    .hamburger-button.is-open span:nth-child(1){
        top: 20px;
        left: 22px;
    }
    .hamburger-button.is-open span:nth-child(3){
        top: 20px;
        left: 15px;
    }
}

/* hamburger-nav */
.hamburger-nav{
    display: none;
}

@media screen and (max-width: 1160px){
    /* hamburger-nav */
    .hamburger-nav{
        background: #ffffff;
        display: block;
        height: 100%;
        opacity: 0;
        overflow: auto;
        padding-top: 80px;
        position: fixed;
        top: 0;
        left: 0;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        visibility: hidden;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        z-index: 100;
    }
    .hamburger-nav.is-show{
        opacity: 1;
        top: 0;
        visibility: visible;
    }
    .hamburger-nav > ul{
        border-top: 1px solid #ededed;
        margin-bottom: 20px;
    }
    .hamburger-nav > ul > li{
        border-bottom: 1px solid #ededed;
        font-size: 18px;
        line-height: 18px;
    }
    .hamburger-nav > ul > li > a{
        background: url(/images/arrow-blue.svg) right 20px center no-repeat;
        background-size: 7px 11px;
        display: block;
        padding: 24px 20px;
        font-weight: bold;
    }
}

@media screen and (max-width: 760px){
    /* hamburger-nav */
    .hamburger-nav{
        padding-top: 60px;
    }
    .hamburger-nav > ul > li{
        font-size: 16px;
        line-height: 16px;
    }
    .hamburger-nav > ul > li > a{
        padding: 22px 20px;
    }
}

/* hamburger-nav-button */
.hamburger-nav-button{
    padding-left: 20px;
    padding-right: 20px;
}
.hamburger-nav-button a{
    line-height: 56px;
    font-size: 16px;
    color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    background-color: #0071bd;
}
.hamburger-nav-button a:hover{
    background-color: #0082d9;
}
.hamburger-nav-button-icon{
    padding-left: 35px;
    background: url("/images/icon-search.svg") left center no-repeat;
    background-size: 24px 24px;
    display: inline-block;
}
.hamburger-nav-button-arrow{
    padding-right: 20px;
    background: url("/images/arrow-white.svg") right center no-repeat;
    background-size: 7px 11px;
}

/* header-shadow */
.header-shadow{
    box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.1);
}
.header-shadow .header-inner{
    border-bottom: 1px solid #ffffff;
}
.fixed .header-shadow{
    box-shadow: none;
}
.fixed .header-inner{
    border-bottom: 1px solid #ffffff;
}

/*========================================
contents layout
========================================*/
/* note */
.note{
    margin-left: 1em;
}
.note:before {
	content: '※';
	margin-left: -1em;
}

/* header-size */
.header-size{
    margin-top: -100px;
    padding-top: 100px;
}

@media screen and (max-width: 1240px){
    /* header-size */
    .header-size{
        margin-top: -80px;
        padding-top: 80px;
    }
}

@media screen and (max-width: 760px){
    /* header-size */
    .header-size{
        margin-top: -60px;
        padding-top: 60px;
    }
}

/* pagelink-area */
.pagelink-area{
    border-top: 1px solid #b3b3b3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
}
a.pagelink-area-list{
    width: 33.33333%;
    width: -webkit-calc(100%/3);
    width: calc(100%/3);
    border-right: 1px solid #b3b3b3;
    text-align: center;
    padding: 60px 20px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    display: block;
}
a.pagelink-area-list:hover{
    background-color: #0071bd;
    color: #ffffff; 
}
a.pagelink-area-list:last-child{
    border-right: none;
}
.pagelink-area-title{
    margin-bottom: 30px;
}
.pagelink-area-title-en{
    font-size: 16px;
    line-height: 16px;
    color: #0071bd;
    margin-bottom: 24px;
}
a.pagelink-area-list:hover .pagelink-area-title-en{
    color: #ffffff;
}
.pagelink-area-title-main{
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;
}
.pagelink-area-text{
    margin-bottom: 30px;
}
.pagelink-area-text p{
    font-size: 16px;
}
.pagelink-area-link{
    font-size: 14px;
    line-height: 14px;
    padding-right: 20px;
}
.pagelink-area-link span{
    padding-right: 20px;
    background: url("/images/arrow-link-blue.svg") right center no-repeat;
    background-size: 7px 11px;
    color: #0071bd;
}
a.pagelink-area-list:hover .pagelink-area-link span{
    background: url("/images/arrow-link-white.svg") right center no-repeat;
    background-size: 7px 11px;
    color: #ffffff;
}

#top-qa .pagelink-area-link {
    border-bottom: 1px solid #b3b3b3;
}

@media screen and (max-width: 1120px){
    /* pagelink-area */
    .pagelink-area-text p br{
        display: none;
    }
}

@media screen and (max-width: 1000px){
    /* pagelink-area */
    a.pagelink-area-list{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .pagelink-area-title{
        margin-bottom: 20px;
    }
    .pagelink-area-title-en{
        margin-bottom: 18px;
    }
    .pagelink-area-title-main{
        font-size: 20px;
        line-height: 20px;
        letter-spacing: 0;
    }
}

@media screen and (max-width: 760px){
    /* pagelink-area */    
    .pagelink-area{
        display: block;
    }
    a.pagelink-area-list{
        width: 100%;
        display: block;
        border-right: none;
        border-bottom: 1px solid #b3b3b3;
        padding-top: 30px;
        padding-right: 50px;
        padding-bottom: 30px;
        text-align: left;
        background: url("/images/arrow-blue.svg") right 20px center no-repeat;
        background-size: 7px 11px;
    }
    a.pagelink-area-list:last-child{
        border-bottom: none;
    }
    a.pagelink-area-list:hover{
        background: #0071bd url("/images/arrow-white.svg") right 20px center no-repeat;
        background-size: 7px 11px;
    }
    .pagelink-area-title{
        margin-bottom: 18px;
    }
    .pagelink-area-title-en{
        font-size: 12px;
        line-height: 12px;
        margin-bottom: 14px;
    }
    .pagelink-area-title-main{
        font-size: 16px;
        line-height: 16px;
        letter-spacing: 0.04em;
    }
    .pagelink-area-text{
        margin-bottom: 0;
    }
    .pagelink-area-text p{
        font-size: 14px;
    }
    .pagelink-area-link{
        display: none;
    }
}

/* cta-blue */
.cta-blue{
    background: url("/images/bg-search.jpg") center center no-repeat;
    background-size: cover;
    padding: 80px 40px;
    color: #ffffff;
    overflow: hidden;
}
.cta-blue-title{
    margin-bottom: 25px;   
    text-align: center;
}
.cta-blue-title-en{
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 25px;
}
.cta-blue-title-main{
    font-size: 32px;
    line-height: 32px;
    font-weight: bold;
}
.cta-blue-text{
    margin-bottom: 35px;
}
.cta-blue-text p{
    text-align: center;
    font-size: 16px;
}
.cta-blue-button a{
    width: 300px;
    line-height: 56px;
    border: 1px solid #ffffff;
    font-size: 16px;
    color: #ffffff;
    margin-left: auto;
    margin-right: auto;
}
.cta-blue-button a:hover{
    background-color: #ffffff;
    color: #0071bd;
}
.cta-blue-button a span{
    padding-right: 20px;
    background: url("/images/arrow-white.svg") right center no-repeat;
    background-size: 7px 11px;
}
.cta-blue-button a:hover span{
    background: url("/images/arrow-blue.svg") right center no-repeat;
    background-size: 7px 11px;
}

@media screen and (max-width: 760px){
    /* cta-blue */
    .cta-blue{
        padding: 60px 20px;
    }
    .cta-blue-title{
        margin-bottom: 24px;
    }
    .cta-blue-title-en{
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 32px;
    }
    .cta-blue-title-main{
        font-size: 23px;
        line-height: 23px;
    }
    .cta-blue-text{
        margin-bottom: 32px;
    }
    .cta-blue-text p{
        line-height: 2.1;
    }
    .cta-blue-text p br{
        display: inline;
    }
    .cta-blue-button a{
        margin-left: auto;
        margin-right: auto;
    }
}

/* jobchange-common */
.jobchange-common{
    background: url("/images/bg-jobchange.jpg") center center no-repeat;
    background-size: cover;
    padding: 80px 40px;
    color: #ffffff;
}
.jobchange-common-title{
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    font-weight: bold;
    margin-bottom: 22px;
}
.jobchange-common-catch{
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
}
.jobchange-common-text{
    margin-bottom: 35px;
}
.jobchange-common-text p{
    text-align: center;
    font-size: 16px;
}
.jobchange-common-button a{
    width: 300px;
    line-height: 56px;
    border: 1px solid #ffffff;
    font-size: 16px;
    color: #ffffff;
    margin-left: auto;
    margin-right: auto;
}
.jobchange-common-button a:hover{
    background-color: #ffffff;
    color: #e50012;
}
.jobchange-common-button a span{
    padding-right: 20px;
    background: url("/images/arrow-white.svg") right center no-repeat;
    background-size: 7px 11px;
}
.jobchange-common-button a:hover span{
    background: url("/images/arrow-red.svg") right center no-repeat;
    background-size: 7px 11px;
}

@media screen and (max-width: 760px){
    /* jobchange-common */
    .jobchange-common{
        padding: 60px 20px;
    }
    .jobchange-common-catch{
        font-size: 23px;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    .jobchange-common-text{
        margin-bottom: 25px;
    }
    .jobchange-common-text p{
        line-height: 2.1;
    }
    .jobchange-common-text p br{
        display: inline;
    }
    .jobchange-common-button a{
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 320px){
    /* jobchange-common */
	.jobchange-common-catch{
        font-size: 21px;
    }
}

/* cta-area */
.cta-area{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cta-box{
    width: 50%;
}

@media screen and (max-width: 760px){
    /* cta-area */
    .cta-area{
        display: block;
    }
    .cta-box{
        width: 100%;
    }
    .cta-box .cta-blue-text p{
        text-align: center;
    }
    .cta-box .jobchange-common-text p{
        text-align: center;
    }
    .cta-box .jobchange-common-text p br{
        display: inline;
    }
}

/* maintitle */
.maintitle{
    position: relative;
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.maintitle-en{
    font-size: 16px;
    line-height: 16px;
    color: #0071bd;
    margin-bottom: 16px;
    text-align: center;
}
.maintitle-pagename{
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    font-weight: bold;
}
.maintitle-text{
    font-size: 16px;
    text-align: center;
    line-height: 1.8;
    font-weight: bold;
    margin-top: 22px;
}

@media screen and (max-width: 760px){
    /* maintitle */
    .maintitle{
        height: 200px;
        padding-left: 40px;
        padding-right: 40px;
    }
    .maintitle-en{
        margin-bottom: 12px;
    }
    .maintitle-pagename{
        font-size: 26px;
    }
    .maintitle-text{
        margin-top: 12px;
    }
}

/* breadcrumb-list */
.breadcrumb-list{
    letter-spacing: -.4em;
    position: absolute;
    top: 18px;
    left: 0;
    display: inline-block;
    padding-left: 40px;
}
.breadcrumb-list li{
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: normal;
    line-height: 1.4;
}
.breadcrumb-list li span{
    background: url("/images/arrow-black.svg") 17px center no-repeat;
    background-size: 5px 8px;
    padding-left: 40px;
}
.breadcrumb-list li:first-child span{
    background-image: none;
    padding-left: 0;
}
.breadcrumb-list li a{
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    
}
.breadcrumb-list li a:hover{
      color: #0071bd;
}

@media screen and (max-width: 1240px){
    /* breadcrumb-list */
    .breadcrumb-list{
        padding-left: 15px;
    }
}

@media screen and (max-width: 1000px){
    /* breadcrumb-list */
    .breadcrumb-list{
        display: none;
    }
}

/* maintitle-img */
.maintitle-img{
    width: 100%;
    height: 320px;
}

@media screen and (max-width: 760px){
    /* maintitle-img */
    .maintitle-img{
        width: 100%;
        height: 250px;
    }
}

/* gray-box */
.gray-box{
    background-color: #f7f7f7;
}

/* base-box */
.base-box{
    width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.base-box-top{
    padding-top: 120px;
}
.base-box-top-small{
    padding-top: 100px;
}
.base-box-bottom{
    padding-bottom: 120px;
}
.base-box-bottom-small{
    padding-bottom: 100px;    
}
.base-box a{
    color: #0071bd;
    text-decoration: underline;
}
.base-box a:hover{
    text-decoration: none;
}

@media screen and (max-width: 1057px){
    /* base-box */
    .base-box{
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 760px){
    /* base-box */
    .base-box{
        padding-left: 20px;
        padding-right: 20px;
    }
    .base-box-top{
        padding-top: 60px;
    }
    .base-box-top-small{
        padding-top: 60px;
    }
    .base-box-bottom{
        padding-bottom: 40px;
    }
    .base-box-bottom-small{
        padding-bottom: 40px;
    }
}

/* base-title */
.base-title{
    font-size: 29px;
    font-weight: bold;
    border-bottom: 2px solid #cccccc;
    margin-bottom: 60px;
    line-height: 1.4;
    padding-bottom: 24px;
    position: relative;
}
.base-title::after{
    position: absolute;
    left: 0;
    bottom: -2px;
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #0071bd;    
}

@media screen and (max-width: 760px){
    /* base-title */
    .base-title{
        font-size: 23px;
        margin-bottom: 30px;
        padding-bottom: 14px;
    }
    .base-title::after{
        width: 40px;
    }
}

/* base-title-middle */
.base-title-middle{
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 0;
    font-weight: bold;
    margin-bottom: 14px;
}

@media screen and (max-width: 760px){
    /* base-title-middle */
    .base-title-middle{
        font-size: 19px;
        margin-bottom: 10px;
    }
}

/* base-space */
.base-space{
    margin-bottom: 50px;
}

@media screen and (max-width: 760px){
    /* base-space */
    .base-space{
        margin-bottom: 40px;
    }
}

/* base-space-large */
.base-space-large{
    margin-bottom: 60px;
}

@media screen and (max-width: 760px){
    /* base-space-large */
    .base-space-large{
        margin-bottom: 30px;
    }
}

/* base-catch */
.base-catch{
    margin-bottom: 50px;
}
.base-catch p{
    font-size: 29px;
    font-weight: bold;
    line-height: 1.5;
}

@media screen and (max-width: 760px){
    /* base-catch */
    .base-catch{
        margin-bottom: 20px;
    }
    .base-catch p{
        font-size: 22px;
    }
}

/* base-text */
.base-text{
    font-size: 16px;
}

@media screen and (max-width: 760px){
    /* base-text */
    .base-text{
        font-size: 15px;
    }
}

/* base-table */
.base-table{
    width: 100%;
}
.base-table th,
.base-table td{
    border-bottom: 2px solid #cccccc;
    font-size: 16px;
}
.base-table tr:first-child th,
.base-table tr:first-child td{
    border-top: 2px solid #cccccc;
}
.base-table th{
    width: 240px;
    text-align: left;
    padding-top: 18px;
    padding-bottom: 18px;
}
.base-table td{
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 20px;
}

@media screen and (max-width: 760px){
    /* base-table */
    .base-table th,
    .base-table td{
        display: block;
        width: 100%;
    }
    .base-table th{
        border-bottom: none;
        font-weight: bold;
        padding-bottom: 6px;
    }
    .base-table td{
        font-size: 14px;
        padding-top: 0;
        padding-left: 0;
    }
    .base-table tr:first-child td{
        border-top: none;
    }
}

/* base-img-group */
.base-img-group{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.base-img-group > div{
    width: 29.1667%;
}
.base-img-group > div > img{
    width: 100%;
}

@media screen and (max-width: 1000px){
    /* base-img-group */
    .base-img-group > div{
        width: 31%;
    }
}

@media screen and (max-width: 760px){
    /* base-img-group */
    .base-img-group{
        display: block;
    }
    .base-img-group > div{
        width: 100%;
        margin-bottom: 20px;
    }
    .base-img-group > div:last-child{
        margin-bottom: 0;
    }
}

/* base-list */
.base-list li{
    margin-left: 1em;
    font-size: 16px;
}
.base-list li:before{
	content: '・ ';
	margin-left: -1em;
}

@media screen and (max-width: 760px){
    /* base-list */
    .base-list li{
        font-size: 15px;
    }
}

/* check-list */
.check-list ul{
    display: inline-block;
}
.check-list li{
    background: url("/images/strength/icon-check.svg") left top no-repeat;
    background-size: 27px 27px;
    font-size: 20px;
    font-weight: bold;
    padding-top: 1px;
    padding-left: 55px;
    padding-bottom: 15px;
    text-align: left;
    line-height: 1.5;
}

@media screen and (max-width: 760px){
    /* check-list */
    .check-list{
        padding-left: 20px;
        padding-right: 20px;
    }
    .check-list li{
        font-size: 18px;
        padding-left: 45px;
    }
}

/* basic-button */
.basic-button a{
    display: block;
    text-align: center;
    font-weight: bold;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

/* basic-blue-button */
.basic-blue-button a{
    width: 300px;
    line-height: 56px;
    font-size: 16px;
    color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    background-color: #0071bd;
    text-decoration: none;
}
.basic-blue-button a:hover{
    background-color: #0082d9;
}
.basic-blue-button a span{
    padding-right: 20px;
    background: url("/images/arrow-white.svg") right center no-repeat;
    background-size: 7px 11px;
}

@media screen and (max-width: 320px){
    /* check-list */
    .cta-blue-button a,.about-area-button a,.basic-blue-button a,.basic-button a{
    width: 275px;
}
}

/*========================================
footer layout
========================================*/
/* footer */
.footer{
    background-color: #ffffff;
}

/* footer-top */
.footer-top{
    background-color: #f7f7f7;
    padding-top: 60px;
    padding-bottom: 60px;
}
.footer-top-inner{
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 1377px){
    /* footer-top */
    .footer-top-inner{
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 760px){
    /* footer-top */
    .footer-top{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footer-top-inner{
        display: block;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* footer-nav */
.footer-nav{
    width: 47.8125%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer-nav-column{
    width: 45.098%;    
}
.footer-nav-list{
    margin-bottom: 30px;
}
.footer-nav-list:last-child{
    margin-bottom: 0;
}
.footer-nav-list li{
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin-bottom: 12px;
}
.footer-nav-list li a{
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.footer-nav-list li a:hover{
    color: #0071bd;
}

@media screen and (max-width: 760px){
    /* footer-nav */
    .footer-nav{
        width: 100%;
        display: block;
        padding-bottom: 10px;
    }
    .footer-nav-column{
        width: 100%;
    }
    .footer-nav-list{
        margin-bottom: 0;
    }
    .footer-nav-list li{
        font-size: 12px;
        margin-bottom: 14px;
        font-weight: bold;
    }
}

/* footer-profile-area */
.footer-logo{
    margin-bottom: 25px;
}
.footer-logo img{
    width: 154px;
}
.footer-profile{
    font-size: 13px;
    line-height: 2;
}
.footer-name{
    font-weight: bold;
}
.footer-data br{
    display: none;
}

@media screen and (max-width: 880px){
    /* footer-profile-area */
    .footer-data br{
        display: inline;
    }
}

@media screen and (max-width: 760px){
    /* footer-profile-area */
    .footer-profile-area{
        border-top: 1px solid #b3b3b3;
        padding-top: 25px;
    }
    .footer-logo{
        margin-bottom: 15px;
    }
    .footer-logo img{
        width: 124px;
    }
    .footer-profile{
        font-size: 12px;
        line-height: 1.8;
    }
    .footer-data br{
        display: none;
    }
}

/* footer-bottom */
.footer-bottom{
    padding-top: 12px;
    padding-bottom: 12px;
}
.footer-bottom-inner{
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer-bottom-list{
    letter-spacing: -.4em;
}
.footer-bottom-list li{
    display: inline-block;
    letter-spacing: normal;
    font-size: 12px;
    line-height: 12px;
    margin-right: 25px;
}
.footer-bottom-list li a{
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.footer-bottom-list li a:hover{
    color: #0071bd;
}
.footer-bottom-list li:last-child{
    margin-right: 0;
}
.copyright{
    text-align: right;
    font-size: 12px;
    line-height: 12px;
}
.copyright span{
    padding-right: .5em;
}

@media screen and (max-width: 1377px){
    /* footer-bottom */
    .footer-bottom-inner{
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 760px){
    /* footer-bottom */
    .footer-bottom{
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .footer-bottom-inner{
        padding-left: 20px;
        padding-right: 20px;
        display: block;
    }
    .footer-bottom-list{
        margin-bottom: 20px;
    }
    .footer-bottom-list li{
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .footer-bottom-list li:last-child{
        margin-bottom: 0;
    }
    .copyright{
        text-align: left;
    }
    .copyright span{
        display: none;
    }
}

/*========================================
other layout
========================================*/
#chatbot-toggle_button {
    box-shadow: none!important;
    width: 170px;
}

#chatbot-toggle_button img {
    border-radius: 20px;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 760px) {
	#chatbot-toggle_button {
    box-shadow: none!important;
    width: 120px;
}
}