@charset "UTF-8";

/*==========================
共通
===========================*/
* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background-image: url("../common/img/bg.png");
    color: #333;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

@media all and (-ms-high-contrast:none) {
    .ms {
        font-family: 'メイリオ', 'Meiryo', sans-serif;
    }
}

img {
    max-width: 100%;
}

strong {
    font-size: 1.2em;
    font-weight: 700;
    color: #182d68;
}

.title {
    padding: 2em 1em 1em;
}

.title h2 {
    font-size: 32px;
    color: #182d68;
    font-weight: 700;
    /* border-bottom: 3px solid #182d68; */
    line-height: 1.2;
    width: 80%;
    margin: auto;
}

.title span {
    color: #3299e6;
    font-size: 0.9em;
    font-weight: 700;
}

a:link {
    transition: 0.6s;
    text-decoration: none;
    font-weight: 700;
    color: #333;
}

a:visited {
    color: #333;
}

a:hover {
    transition: 0.3s;
}

a:active {
    color: #000;
}

img {
    display: block;
}

.small {
    font-size: 0.8em;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

.xsp_only {
    display: none;
}

.t_r {
    text-align: right;
}

.t_l {
    text-align: left;
}

.bold {
    font-weight: 600;
}

.size_up {
    font-size: 1.4em;
}

.size_down {
    font-size: 0.7em;
    font-weight: 400;
}

img.w75 {
    width: 75% !important;
}

@media screen and (max-width: 768px) {
    img {
        max-width: 100%;
    }

    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .xsp_only {
        display: none;
    }

    .t_r {
        text-align: center;
    }

    .t_l {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-weight: 500;
    }

    .xsp_only {
        display: block;
    }
}

/*==========================
コンテナ
===========================*/
section,
footer {
    margin-left: 160px;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2%;
}

@media screen and (max-width: 960px) {

    section,
    footer {
        margin-left: 0;
    }

    .container {
        width: 100%;
        padding: 0 4%;
    }
}

/*==========================
ヘッダー
===========================*/
header {
    background-color: #182d68;
    width: 160px;
    height: 100vh;
    position: fixed;
    z-index: 100;
    transition: 0.3s;
}

header:hover {
    background-color: #0f3384;
    transition: 0.3s;
}

nav {
    display: block;
}

.logo {
    width: 160px;
    background: #fff;
    display: block;
    padding: 18px 30px 4px;
    line-height: 2.4;
}

header nav ul {
    display: flex;
    margin: 0 3em;
}

header nav ul li {
    padding: 0 2em;
}

header nav ul li img {
    width: 62%;
}

header nav ul li span {
    display: block;
    font-size: 14px;
    color: #182d68;
}

header nav ul li:hover {
    opacity: 0.7;
    transition: 0.3s;
}

@media screen and (max-width: 960px) {
    header {
        background-color: #182d68;
        width: 100%;
        height: 90px;
        position: fixed;
        z-index: 100;
        transition: 0.3s;
    }

    .logo img {}

    header nav ul li {
        padding: 0 1.3em;
    }
}

@media screen and (max-width: 480px) {
    header {
        width: 100%;
        height: 70px;
        transition: 0.3s;
    }

    header nav ul li span {
        font-size: 12px;
    }

    .logo img {
        width: 75px;
    }

    .logo {
        width: 115px;
        background: #fff;
        display: block;
        padding: 11px 20px 1px;
        line-height: 2.4;
        font-size: 12px;
    }

    header nav ul li img {
        width: 90%;
    }
}

/*ハンバーガーメニュー*/
/*メニュー部分*/
nav {
    display: none;
    position: fixed;
    top: 0;
    left: 160px;
    width: 600px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    z-index: 90;
}

header nav ul {
    display: block;
    width: 100%;
    position: absolute;
    top: 5%;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
}

header nav ul li {
    margin: 0 auto;
    padding: 6%;
    font-size: 24px;
    border-bottom: 1px solid #ccc;
}

header nav ul li:last-child {
    border: none;
}

header nav ul li a {
    display: block;
    color: #000;
}

/*開閉ボタン*/
#nav_toggle {
    width: 160px;
    height: 80vh;
    position: absolute;
    z-index: 200;
    cursor: pointer;
}

#nav_toggle .hum {
    position: relative;
    top: 33vh;
}

#nav_toggle span {
    display: block;
    height: 3px;
    background: #fff;
    position: relative;
    width: 40px;
    left: 60px;
    transition: 0.3s ease-in-out;
}

#nav_toggle .hum p {
    color: #fff;
    position: relative;
    text-align: center;
    top: 30px;
    font-size: 14px;
    font-weight: 500;
}

#nav_toggle span:nth-child(1) {
    top: 0px;
}

#nav_toggle span:nth-child(2) {
    top: 10px;
}

#nav_toggle span:nth-child(3) {
    top: 20px;
}

/*開閉ボタンopen時*/
.open #nav_toggle span:nth-child(1) {
    top: 15px;
    transform: rotate(135deg);
}

.open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}

.open #nav_toggle span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

@media screen and (max-width: 960px) {
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 72%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
    }

    header nav ul {
        display: block;
        width: 100%;
        position: absolute;
        top: 6%;
        right: 0px;
        bottom: 0px;
        left: 0px;
        margin: auto;
    }

    header nav ul li {
        margin: 0 auto;
        padding: 7% 7%;
        font-size: 24px;
        border-bottom: 1px solid #ccc;
    }

    #nav_toggle {
        width: 100px;
        height: 80px;
        top: 18px;
        right: 30px;
    }

    #nav_toggle .hum {
        position: relative;
        top: 0;
    }

    #nav_toggle span {
        display: block;
        height: 3px;
        background: #fff;
        position: relative;
        width: 40px;
        left: 60px;
        transition: 0.3s ease-in-out;
    }

    #nav_toggle .hum p {
        color: #fff;
        position: relative;
        text-align: right;
        top: 29px;
        font-size: 14px;
        font-weight: 500;
    }

    .open #nav_toggle span:nth-child(2) {
        width: 0;
        left: 75%;
    }
}

@media screen and (max-width: 480px) {
    nav {
        width: 75%;
    }

    header nav ul {
        top: 6%;
    }

    header nav ul li {
        font-size: 22px;
        border-bottom: 1px solid #ccc;
    }

    #nav_toggle {
        width: 100px;
        height: 80px;
        top: 12px;
        right: 23px;
    }

    #nav_toggle .hum {
        top: 0;
    }

    #nav_toggle span {
        display: block;
        height: 3px;
        background: #fff;
        position: relative;
        width: 35px;
        left: 62px;
        transition: 0.3s ease-in-out;
    }

    #nav_toggle .hum p {
        color: #fff;
        position: relative;
        text-align: right;
        top: 21px;
        font-size: 14px;
        font-weight: 500;
    }
}

/*==========================
キービジュアル
===========================*/
#mainVisual .fv {
    background: url("img/fv_rec.jpg");
    background-position: center bottom 50%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
    position: relative;
}

#mainVisual .fv .key {
    position: relative;
}

#mainVisual img {
    width: 62%;
    position: absolute;
    top: 414px;
    right: 0;
    left: 0;
    margin: auto;
    max-width: 700px;
    filter: drop-shadow(5px 5px 10px #333);
}

@media screen and (max-width: 480px) {
    #mainVisual .fv {
        background: url("img/fv_rec.jpg") no-repeat;
        background-position: center top;
        background-size: cover;
        height: 232px;
        position: relative;
        margin-top: 69px;
    }

    #mainVisual img {
        width: 62%;
        position: relative;
        top: 155px;
    }
}

/*==========================
事業内容説明
===========================*/
#msg {
    background: url(img/osaka.png), #ffd838;
    background-position: right 2% bottom 10%;
    background-size: 35%;
    background-repeat: no-repeat;
    position: relative;
    padding: 2em 30% 2em 1%;
}

#msg .wrap {
    text-align: left;
    padding: 0% 8%;
}

#msg .wrap h2 {
    border-bottom: 4px dotted #333;
    margin: 0 auto;
    font-size: 2.3em;
    font-weight: 700;
}

#msg .wrap img {
    width: 15vw;
    margin: 0 auto;
}

#msg .wrap p {
    padding: 1em 0;
    line-height: 2.2;
    color: #333;
}

#msg .wrap ul {
    padding: 1em 0;
    line-height: 2.2;
    color: #182d68;
    font-weight: 700;
}

#msg .wrap li {
    padding-bottom: 1em;
}

@media screen and (max-width: 768px) {
    #msg {
        background: url(img/osaka.png), #ffd838;
        background-position: right 2% center;
        background-size: 33%;
        background-repeat: no-repeat;
    }
}

@media screen and (max-width: 768px) {
    #msg {
        background-position: right 10% bottom 2%;
        background-size: 33%;
        padding: 0 0 33%;
    }

    #msg .wrap img {
        width: 25vw;
    }

    #msg .wrap {
        margin: 0;
        padding: 2em 1em;
    }

    #msg .wrap p {
        padding: 1em 0;
        font-size: 14px;
    }

    #msg .wrap ul {
        padding: 1em 0;
        font-size: 15px;
    }
}

/*==========================
声
===========================*/
#sec01,
#sec01-1 {
    padding: 0;
    text-align: center;
}

#sec01 {
    background: url("img/staff01.jpg"), rgba(103, 188, 226, 0.06);
    background-size: 31%;
    background-position: left 8% center;
    background-repeat: no-repeat;
}

#sec01-1 {
    background: url("img/staff02.jpg"), rgba(103, 188, 226, 0.06);
    background-size: 31%;
    background-position: left 8% center;
    background-repeat: no-repeat;
}

#sec01 .wrap,
#sec01-1 .wrap {
    padding: 3em 1em 3em 38%;
    text-align: left;
    margin: 0 2em;
}

#sec01 .wrap {
    border-bottom: 1px solid #182d68;
}

#sec01 h2,
#sec01-1 h2 {
    color: #182d68;
    font-size: 1.5em;
    font-weight: 700;
}

#sec01 h2 span,
#sec01-1 h2 span {
    font-size: 15px;
}

#sec01 h3,
#sec01-1 h3 {
    color: #fff;
    background-color: #182d68;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    padding: 0 12px;
    margin: 1em 0 0.3em;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    #sec01 {
        background: url("img/staff01.jpg"), rgba(103, 188, 226, 0.06);
        background-size: 62%;
        background-position: center top 2em;
        background-repeat: no-repeat;
    }

    #sec01-1 {
        background: url("img/staff02.jpg"), rgba(103, 188, 226, 0.06);
        background-size: 62%;
        background-position: center top 2em;
        background-repeat: no-repeat;
    }

    #sec01 .wrap,
    #sec01-1 .wrap {
        padding: 78% 0 10%;
        text-align: left;
        margin: 1em auto;
        font-size: 15px;
    }

    #sec01 h2,
    #sec01-1 h2 {
        text-align: center;
    }

    #sec01 h3,
    #sec01-1 h3 {
        text-align: center;
    }
}

/*==========================
募集要項
===========================*/
#sec02 {
    padding: 4em 0 2em;
    text-align: center;
}

#sec02 .pr {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
}

#sec02 .pr .box {
    padding: 0;
}

#sec02 .pr .box:first-child {
    width: 77%;
    margin: 2% 4%;
}

#sec02 .pr .box:nth-child(2) {
    width: 23%;
    margin: 2% 2% 2% 0;
}

#sec02 .pr .box img {
    width: 100%;
    margin: 2em auto;
}

.title h2 {
    font-size: 32px;
    color: #182d68;
    font-weight: 700;
    /* border-bottom: 3px solid #182d68; */
    line-height: 1.2;
    width: 80%;
    margin: auto;
}

.title span {
    color: #3299e6;
    font-size: 0.9em;
    font-weight: 700;
}

#sec02 h3 {
    font-size: 1.5em;
    border-bottom: 3px solid #182d68;
    color: #182d68;
    text-align: left;
    font-weight: 700;
    padding: 0 0 0.3em 0.6em;
}

#sec02 dl {
    margin: 1em auto;
    text-align: left;
    line-height: 1.9;
    font-size: 15px;
}

#sec02 dt {
    float: left;
    clear: left;
    padding: 1em 0 1em 1em;
    color: #182d68;
    font-weight: 700;
}

#sec02 dd {
    border-bottom: 1px solid #a5a5a5;
    padding: 1em 1em 1em 12em;
    color: #333;
}

#sec02 dt:last-child,
#sec02 dd:last-child {
    border-bottom: none;
}

@media screen and (max-width: 768px) {
    #sec02 img {
        margin: 0 auto;
    }

    #sec02 dl {
        text-align: left;
        line-height: 2;
    }

    #sec02 dt {
        float: none;
        padding: 0.5em 0 0;
        margin: 0 auto;
        color: #182d68;
        font-size: 16px;
        font-weight: 700;
    }

    #sec02 dd {
        padding: 0 0 0.5em;
        font-size: 14px;
    }

    #sec02 .pr {
        display: block;
        margin: 1em auto 2em;
    }

    #sec02 .pr .box {
        padding: 0;
    }

    #sec02 .pr .box:first-child {
        width: 100%;
        margin: 0 auto;
    }

    #sec02 .pr .box:nth-child(2) {
        width: 100%;
        margin: 0;
    }

    #sec02 .pr .box:first-child img {
        width: 100%;
        margin: 2%;
        display: inline-block;
    }

    #sec02 .pr .box:nth-child(2) img {
        width: 45%;
        margin: 2% 1.5%;
        display: inline-block;
    }

    #sec02 h3 {
        font-size: 1.3em;
        text-align: center;
        font-weight: 700;
        padding: 0 0 0.3em 0;
        border-bottom: 3px solid #182d68;
    }
}

/*==========================
SNS
===========================*/
#sns {
    padding: 3em 0 6em;
    text-align: center;
    background: url(img/bg_recruit02.svg), linear-gradient(180deg, #fff29c 10%, #F8D800 100%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}

#sns .pr {
    display: flex;
    justify-content: space-around;
    margin: 3em auto;
}

#sns .pr .box {
    padding: 0;
    margin: 0 2.5% 1em;
}

#sns .pr .grid a {
    display: inline-block;
}

#sns .pr .grid a:hover {
    filter: brightness(140%);
}

#sns .pr .grid .tel-box {
    margin-bottom: 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 1300px) {
    #sns .pr .grid .tel-box {
        flex-direction: column;
    }

    #sns .pr .grid .tel-box a {
        width: 100%;
    }
}

#sns .pr .grid .tel-box a {
    color: #fff;
    font-size: 1.65em;
    text-align: center;
    background-color: #182d68;
    padding: 0 1em;
    border-radius: 8px;
}

#sns .pr .grid .tel-box small {
    font-size: 14px;
}

#sns .pr .grid .tel-box span {
    color: #182d68;
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    border-radius: 20px;
    margin: 0.75em;
    line-height: 1.5
}


#sns .pr .grid a.mail-box {
    display: block;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    background-color: #182d68;
    text-align: center;
    padding: 15px 10px;
    margin-bottom: 8%;
    border-radius: 8px;
}

#sns .pr .box img {
    width: 100%;
    margin: 0 auto 4%;
    max-width: 630px;
    transition: 0.3s;
}

#sns .pr .box a img:hover {
    filter: brightness(115%);
    transition: 0.3s;
}

#sns p {
    font-size: 1.25em;
    font-weight: 700;
    color: #182d68;
    padding-top: 1em;
}

#sns p a {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #182d68;

}

#sns p span {
    font-size: 0.8em;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    #sns {
        padding: 3em 0 4em;
    }

    #sns img {
        margin: 0 auto;
    }

    #sns .pr {
        display: block;
        margin: 1em auto 2em;
    }

    #sns .pr .box {
        padding: 0;
    }

    #sns p {
        font-size: 16px;
        color: #182d68;
    }
}

/*==========================
フッター
===========================*/
footer {
    color: #e2e2e2;
    font-size: 13px;
    background: url(../common/img/logo_f.svg) no-repeat bottom 60px right 52px, #212a37;
    background-size: 50px auto;
}

footer a:link {
    color: #e2e2e2;
    font-weight: 500;
}

footer a:visited {
    color: #e2e2e2;
    font-weight: 500;
}

footer a:hover {
    color: #fff;
    transition: 0.3s;
}

footer a:active {
    color: #e2e2e2;
}

footer .footer_group {
    display: flex;
    padding: 3em 7em 6em 3em;
    margin-right: 2em;
    margin: 0 auto;
}

footer .company {
    padding-right: 7%;
}

footer .company .comp {
    font-size: 17px;
    font-weight: 600;
}

footer .company p {
    line-height: 1.8;
}

footer .footer_nav {
    margin: 0 auto;
}

footer .footer_nav li {
    margin: 0.4em auto;
}

footer .footer_nav li span {
    font-size: 16px;
    display: inline-block;
    margin-bottom: 0.5em;
}

footer .copy p {
    text-align: center;
    border-top: 1px solid #e2e2e2;
    padding: 1em;
    margin: 0;
    vertical-align: bottom;
    font-size: 10px;
}

footer .fab {
    width: 36px;
    font-size: 22px;
    padding-top: 0.8em;
}

.svg-inline--fa.fa-w-14 {
    width: .875em;
    font-size: 26px;
    margin-right: 6px;
    margin-top: 10px;
}

footer address .f_tel {
    font-size: 14px;
    line-height: 1.5;
    display: inline-block;
    padding: 2px 12px;
    border: #e2e2e2 2px solid;
    margin: 6px 0 3px;
    border-radius: 20px;
    font-weight: 700;
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
    footer .footer_group {
        display: block;
        padding: 2em 2em;
    }

    footer .company {
        padding: 0 0 2em 0;
    }

    footer .footer_nav {
        float: left;
        width: 38%;
        margin-bottom: 2em;
    }

    .clearfix:after {
        content: "";
        display: block;
        clear: both;
    }
}

/*トップへ戻るボタン*/
footer .totop {
    position: fixed;
    bottom: 130px;
    right: 40px;
    z-index: 15;
    width: 75px;
}

footer .contact .totop img {
    width: 100px;
    backface-visibility: hidden;
}

@media screen and (max-width: 480px) {
    footer {
        background: url(../common/img/logo_f.svg) no-repeat bottom 65px right 30px, #212a37;
        background-size: 50px auto;
    }

    footer .footer_group {
        display: block;
        padding: 2em 2em;
    }

    footer .company {
        padding: 0 0 2em 0;
    }

    footer .footer_nav {
        float: none;
        width: auto;
        margin-bottom: 1em;
    }

    footer .fa {
        padding-top: 1em;
    }

    footer .footer_nav li {
        margin: 0 auto;
    }

    footer .totop {
        bottom: 130px;
        right: 25px;
        width: 60px;
    }
}

/*210316*/
header nav ul li {
    padding: 4% 6%;
    font-size: 22px;
}

@media screen and (max-width: 960px) {
    header nav ul {
        top: 4%;
    }
}