@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap');
/*font-family: "Noto Sans", sans-serif;*/
/*font-family: "Outfit", sans-serif;*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    overflow-y: scroll;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: left;
    line-height: 1.7;
    color: #096fca;
    min-width: 1040px;
    font-family: "Noto Sans JP", sans-serif, 'Outfit', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Font Awesome 5 Free";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    padding: 0;
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

p {
    padding: 0;
    margin: 0;
}

img {
    -webkit-touch-callout: none;
    -ms-interpolation-mode: bicubic;
    vertical-align: bottom;
    display: block;
}

a {
    text-decoration: none;
    color: #096fca;
    outline: none;
}

a:active,
a:hover,
a:focus {
    outline: none;
}

a:hover,
.link input:hover {
    opacity: 0.6;
}

a,
input {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.link li a::before,
#top .mail a,
#top .mail a i,
#top .tel a,
#top .tel a i,
#blog .small_link a span,
#blog .small_link a span i,
#blog .inner .box,
#blog .inner .box a p span,
.recruit_btn ul li a,
.recruit_btn ul li a::before,
.recruit_btn ul li a img,
#footer_contact .contact_link .tel a i,
#footer_contact .contact_link .mail a,
#footer_contact .contact_link .mail a::before,
#access .btn a,
#blog ul.detail li.date,
#blog ul.detail li.cat,
#blog ul.detail li.cat a {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
}

/*リンクのないボタンのポインターをつかないためにトランジションのみ*/
.pagination .nav-links .page-numbers.current {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

figure {
    width: 100%;
    overflow: hidden;
    position: relative;
}

figure img {
    display: block;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*横幅に合わせてトリミング*/
    width: 100%;
    height: auto;
    /*高さに合わせてトリミング*/
    /*
    width: auto;
    height: 100%;
*/
}

@media only screen and (max-width: 768px) {
    body {
        width: 100%;
        min-width: 0;
    }

    a {
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        transition: none;
    }

    a:hover {
        opacity: 1;
    }

    .link li a::before,
    #top .mail a,
    #top .mail a i,
    #top .tel a,
    #top .tel a i,
    #blog .small_link a span,
    #blog .small_link a span i,
    #blog .inner .box,
    #blog .inner .box a p span,
    .recruit_btn ul li a,
    .recruit_btn ul li a::before,
    .recruit_btn ul li a img,
    #footer_contact .contact_link .tel a i,
    #footer_contact .contact_link .mail a,
    #footer_contact .contact_link .mail a::before,
    #access .btn a,
    #blog ul.detail li.date,
    #blog ul.detail li.cat,
    #blog ul.detail li.cat a {
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        transition: none;
    }

    /*リンクのないボタンのポインターをつかないためにトランジションのみ*/
    .pagination .nav-links .page-numbers.current {
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        transition: none;
    }

}

/*============================
Clearfix float
============================*/

.clearfix {
    zoom: 1;
    /* for IE */
}

.clearfix:after {
    content: "";
    /*空のコンテンツを挿入 これがないとafterが機能しない*/
    display: block;
    /*表示形式はブロックレベルに指定しないとうまく機能しないブラウザがある*/
    clear: both;
    /*そして、floatの解除をする*/
}

.left {
    float: left;
}

.right {
    float: right;
}

/*============================
flex
============================*/

.flex {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

/*============================
脚注文字表記etc.
============================*/

.eng {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.min {
    font-size: 13px;
    display: block;
}

/*============================
表示切り替え
============================*/

.sp-only {
    display: none;
}


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

    /*============================
Clearfix float
============================*/
    .right,
    .left {
        float: none;
        padding: 0;
    }

    /*============================
脚注文字表記etc.
============================*/
    .min {
        font-size: 12px;
    }

    /*============================
表示切り替え
============================*/
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}

/*============================
wrapper
============================*/

.wrapper {
    position: relative;
    overflow: hidden;
}

/*============================
inner
============================*/

.inner {
    width: 1040px;
    margin: auto;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .inner {
        width: 90.625%;
    }
}

/*============================
header
============================*/

#top {
    position: fixed;
    left: 0;
    right: 0;
    width: 1040px;
    margin: 40px auto 0;
    border-radius: 40px;
    background-color: #096fca;
    z-index: 80000;
}

#top .site-header {
    transition: .7s;
    /*    width: 100%;*/
    position: relative;
}

#top .site-header .inner {
    align-items: center;
    /*追加*/
    overflow: visible;
}

#top .siteTitle {
    padding-left: 30px;
}

.siteTitle {
    width: 304px;
}

.siteTitle a {
    padding-top: 16.1983471074%;
    display: block;
    overflow: hidden;
    height: 0;
    width: 100%;
    background: url(../images/common/header/sitetitle.png) no-repeat left center;
    -webkit-background-size: 100%;
    background-size: 100%;
}

/**header 途中から*****/

#top .site-header.transform {
    position: fixed;
    top: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
    background-color: #096fca;
    margin: auto;
    border-radius: 28px;
}

#top .site-header.transform .siteTitle {
    width: 240px;
}

@media only screen and (max-width: 768px) {
    #top {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        border: none;
        min-width: 0;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
        padding: 16px 0;
        margin: 0;
        border-radius: 0 0 20px 20px;
    }

    #top .site-header .inner {
        padding: 0;
    }

    .siteTitle {
        width: 160px;
        margin: 0;
        position: relative;
        z-index: 10;
    }

    /**header 途中から*****/
    #top .site-header.transform {
        position: static;
        box-shadow: none;
    }

    #top .site-header.transform .siteTitle {
        width: 160px;
    }
}

/*============================
nav
============================*/

#top nav {
    margin-left: auto;
}

#top .globalNav {
    align-items: center;
}

#top .globalNav > li > a {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1;
    padding: 32px 24px;
    position: relative;
}

#top .globalNav li.custom {
    position: relative;
}

#top .globalNav li.custom > a::after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
}

#top .mail {
    margin-left: 20px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
}

#top .mail a {
    background-color: #fff;
    border-radius: 20px;
    display: block;
    color: #009944;
    font-weight: bold;
}

#top .tel {
    margin-left: 15px;
    margin-right: 30px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    height: 40px;
    text-align: center;
}

#top .tel a {
    background-color: #fff;
    border-radius: 20px;
    display: block;
    color: #009944;
    font-weight: bold;
}

/**header 途中から*****/

#top .transform .globalNav > li > a {
    padding: 20px 24px;
}

#top .transform .globalNav li.custom > a::after {
    top: 0;
    left: auto;
    right: 9px;
    bottom: 0;
    margin: auto;
}

/*ホバーしたら*/
#top .mail a:hover,
#top .tel a:hover {
    opacity: 1;
    border-radius: 15px;
}

#top .mail a:hover i,
#top .tel a:hover i {
    color: #00bcff;
}

@media only screen and (max-width: 768px) {
    #top .siteTitle {
        padding-left: 0;
    }

    #top nav {
        margin: 0;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 58px;
        background-color: rgba(27, 124, 211, 0.9);
        overflow-y: scroll;
    }

    #top .globalNav li {
        float: none;
        width: 100%;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        background-color: transparent;
    }

    #top .globalNav li a {
        overflow: inherit;
        width: 100%;
        height: inherit;
        padding: 17px 0;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 2px;
        line-height: 2;
    }

    #top .globalNav li a::after {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 18px;
        margin: auto;
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        z-index: 10;
    }

    #top .globalNav li.custom {
        border-bottom: none;
    }

    #top .globalNav li.custom > a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    #top .globalNav li.custom > a::after {
        display: block;
        content: '';
        position: absolute;
        left: auto;
        right: 18px;
        bottom: 0;
        top: 0;
        margin: auto;
        width: 6px;
        height: 6px;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        border-left: 0;
    }

    #top .mail {
        margin-left: 0;
        position: absolute;
        right: 62px;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    #top .tel {
        margin-left: 0;
        display: block;
        padding: 0;
        border-radius: 50%;
        height: 40px;
        width: 40px;
        line-height: 40px;
        text-align: center;
        position: absolute;
        right: 110px;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    #top .tel a {
        padding: 0;
    }

    /**header 途中から*****/
    #top .transform .globalNav li {
        width: 100%;
    }

    #top .site-header.transform .siteTitle {
        width: 160px;
    }

    #top .transform .globalNav > li > a {
        padding: 17px 0;
    }

    #top .transform .globalNav li.custom > a::after {
        right: 18px;
    }

    /*ホバーしたら_解除*/
    #top .mail a:hover,
    #top .tel a:hover {
        border-radius: 20px;
    }

    #top .mail a:hover i,
    #top .tel a:hover i {
        color: #009944;
    }
}

/*============================
ドロップダウン部分 (.second-level)
============================*/

li.custom .second-level {
    position: absolute;
    top: 70px;
    left: 0;
    width: 200px;
    z-index: 10;
    padding: 20px 0;
}

/*ホバー時のtransition*/
.second-level {
    display: none;
    transition: all .2s ease;
}

.second-level.show {
    display: block;
    animation: show 0.15s linear 0s;
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



li.custom .second-level ul {
    width: auto;
    margin: 10px auto 0;
    padding: 10px 20px;
    border-radius: 30px;
    background: #009944;
}

li.custom .second-level li {
    /*    float: left;*/
    padding-left: 10px;
    position: relative;
}

li.custom .second-level li:not(:last-child) {
    border-bottom: 1px solid #fff;
}

li.custom .second-level li a {
    display: inline-block;
    padding: 10px 0;
    width: 100%;
    font-size: 14px;
    color: #fff;
    font-weight: 600;

}

li.custom .second-level li a i {
    position: absolute;
    top: calc(50% - 7px);
    left: 0;
}

li.custom .second-level li a:hover {
    opacity: 0.7;
}

/*.transform*/

.transform li.custom .second-level {
    top: 46px;
}

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

    /*ホバー時のtransition*/
    /*クリックしたとき一瞬消えた感じになるものを解除*/
    .second-level {
        transition: inherit;
    }

    .second-level.show {
        animation: inherit;
    }

    li.custom .second-level {
        visibility: visible;
        opacity: 1;
        position: static;
        width: 100%;
        padding: 0;
        background-color: transparent;
        display: block;
    }

    li.custom .second-level ul {
        width: 100%;
        margin: 0 auto;
        background: none;
        padding: 0;
    }

    li.custom .second-level li {
        width: 100%;
        float: none;
        padding-left: 0;
    }

    li.custom .second-level li a {
        display: block;
        width: 100%;
        font-size: 16px;
        padding: 14px 0;
        color: #fff;
        font-weight: 600;
        background-color: rgba(255, 255, 255, 0.2);
    }

    li.custom .second-level li a:hover {
        opacity: 1;
    }

    li.custom .second-level li a img {
        display: none;
    }

    li.custom .second-level li a i {
        display: none;
    }

    /*.transform*/
    .transform li.custom .second-level {
        top: auto;
        padding: 0;
    }
}

/*============================
menu(sp)  ハンバーガー
============================*/

.menu {
    display: none;
}

@media only screen and (max-width: 768px) {
    .menu {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        right: 16px;
        z-index: 1000;
        width: 31px;
        height: 23px;
    }

    .menu-trigger,
    .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }

    .menu-trigger {
        position: relative;
        width: 31px;
        height: 23px;
    }

    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
    }

    .menu-trigger span:nth-of-type(1) {
        top: 0;
    }

    .menu-trigger span:nth-of-type(2) {
        top: 10px;
    }

    .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }

    /* anime */
    .active .menu-trigger span {
        background-color: #fff;
    }

    .active .menu-trigger span:nth-of-type(1) {
        -webkit-transform: translateY(10px) rotate(-45deg);
        transform: translateY(10px) rotate(-45deg);
    }

    .active .menu-trigger span:nth-of-type(2) {
        opacity: 0;
    }

    .active .menu-trigger span:nth-of-type(3) {
        -webkit-transform: translateY(-10px) rotate(45deg);
        transform: translateY(-10px) rotate(45deg);
    }
}

/*============================
cont_img
============================*/

.cont_img {
    text-align: center;
    position: relative;
    background: url(../company/images/cont_img.jpg) no-repeat center left;
    background-size: cover;
    height: 429px;
    align-items: center;
    justify-content: center;
}

.cont_img h1 {
    line-height: 1.3;
    font-size: 16px;
    letter-spacing: 0.06em;
    color: #096fca;
    width: 1040px;
    text-align: left;
    margin-top: 90px;
}

.cont_img h1 span {
    display: block;
}

.cont_img h1 span.eng {
    font-size: 60px;
}

@media only screen and (max-width: 768px) {
    .cont_img {
        height: 180px;
    }

    .cont_img h1 {
        font-size: 14px;
        width: 90.625%;
        /*メニューの高さからline-height分くらい引いた*/
        margin-top: 48px;
    }

    .cont_img h1 span.eng {
        font-size: 40px;
        font-weight: 500;
    }
}

/*============================
パンくず
============================*/

.root {
    font-size: 14px;
    padding: 10px 20px;
    background-color: #fff;
}

.root ul {
    display: flex;
    overflow: hidden;
}

.root li {
    position: relative;
    letter-spacing: 0;
    padding-bottom: 0;
    white-space: nowrap;
}

.root li::before {
    content: '\f35a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    color: #009944;
    margin: 0 5px;
}

.root li:first-child {
    margin-left: 0;
}

.root li:first-child:before {
    display: none;
}


@media only screen and (max-width: 768px) {
    .root {
        overflow-x: auto;
        font-size: 13px;
    }

    .root ul.inner {
        width: 100%;
    }
}

/*============================
container
============================*/

.cont .container {
    /*
    width: 1040px;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 100px;
    text-align: left;
*/
    overflow: hidden;
}

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

    .cont .container {
        width: 100%;
        padding-bottom: 0;
    }
}

/*============================
Link
============================*/

.link {
    width: 100%;
    margin: auto;
    padding-top: 40px;
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.link li {
    width: 320px;
    margin: 0 20px;
}

.link li a,
.link li input {
    display: block;
    line-height: inherit;
    width: 100%;
    padding: 13px 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.06em;
    color: #fff;
    border: none;
    border-radius: 29px;
    background-color: #ff7b33;
    position: relative;
}

.link li a::before {
    content: "\f0da";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    position: absolute;
    left: 10px;
    top: calc(50% - 20px);
    color: #ff7b33;
}


.link li input::before,
.formBtn li::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    margin: auto;
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10;
}

.cont .link li {
    width: 290px;
}

/*ホバーしたら*/
.link li a:hover,
.link li input:hover {
    opacity: 1;
    background: #00bcff;
    border-radius: 20px;
}

.link li a:hover::before {
    color: #00bcff;
    border-radius: 15px;
}


@media only screen and (max-width: 768px) {
    .link {
        padding-top: 20px;
    }

    .link li {
        width: 90%;
        margin: 0;
        margin-top: 20px
    }

    .cont .link li {
        width: 100%;
    }

    /*ホバーしたら_解除*/
    .link li a:hover,
    .link li input:hover {
        background: #ff7b33;
        border-radius: 29px;
    }

    .link li a:hover::before {
        color: #ff7b33;
        border-radius: 20px;
    }
}


/*============================
primary
============================*/

/*
.primary {
    width: 760px;
    float: left;
}
*/

.cont .primary article {
    /*    padding-top: 80px;*/
    padding: 100px 0 100px;
}

.cont .primary article:first-of-type {
    /*    padding-top: 0;*/
}

.primary .inner p {
    margin-top: 15px;
}

.primary .inner p:first-of-type {
    margin-top: 0;
}

.cont .primary .inner {
    /*    width: 100%;*/
}

.cont h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cont h2 .eng {
    font-size: 60px;
}

/*電球*/
.lightbulb::before {
    content: "\f0eb";
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    padding-right: 8px;
}

.cont h3 {
    font-size: 24px;
    font-weight: 700;
    /*
    padding: 10px;
    margin-top: 40px;
    margin-bottom: 30px;
    clear: both;
    border-left: 8px solid #606060;
    border-bottom: 1px solid #b5b5b5;
*/
}

.cont h4 {
    font-size: 16px;
    margin: 30px 0 10px;
}

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

    .primary {
        /*        width: 90.625%;*/
        margin: auto;
        float: none;
    }

    .cont .primary article {
        padding: 40px 0 40px;
    }

    .cont h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .cont h2 .eng {
        font-size: 40px;
    }

    .cont h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
}


/*============================
table
============================*/

table.info {
    width: 100%;
}

table.info tr {
    display: block;
    /*    padding: 5px 0;*/
    border-bottom: 1px solid #096fca;
    position: relative;
}

table.info tr::after {
    content: "";
    width: 150px;
    height: 3px;
    background: #93c81f;
    position: absolute;
    left: 0;
    bottom: -2px;
}

table.info tr:last-child {
    /*    border: none;*/
    padding-bottom: 0;
}

table.info th {
    width: 150px;
    text-align: center;
    vertical-align: middle;
}

table.info th,
table.info td {
    padding: 15px 0;
}

table.info tr:first-child {
    padding-top: 0;
}

table.info td {
    text-align: left;
    padding-left: 20px;
}

table.info td ul {
    padding-left: 18px;
}

table.info td li {
    padding-top: 8px;
    list-style-type: disc;
}

table.info td li:first-child {
    padding-top: 0;
}

table.info td dt {
    padding-top: 10px;
}

table.info td dt:first-of-type {
    padding-top: 0;
}

table.info td strong {
    display: block;
}

a.google::before {
    content: '\f3c5';
    font-weight: 900;
    margin-right: 5px;
    color: #ff7b33;
}

a.google {
    display: block;
    margin: 5px 0;
    font-weight: 700;
}

/* googlemap */

#map {
    width: 100%;
    height: 400px;
}

#map iframe {
    width: 100%;
    height: 100%;
}

.cont #map {
    margin-top: 40px;
}

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

    table.info tr::after {
        width: 100px;
    }

    table.info th,
    table.info td {
        padding: 12px 0;
    }

    table.info th {
        width: 100px;
        font-size: 13px;
    }

    table.info td {
        padding-left: 10px;
        font-size: 14px;
    }

    /* googlemap */
    #map {
        height: 300px;
    }

    .cont #map {
        margin-top: 20px;
    }
}


/*============================
secondary
============================*/

/*
.secondary {
    width: 245px;
    float: right;
}
*/

/* バナー */

.secondary .banner li {
    margin-top: 20px;
}

.secondary .banner li:first-child {
    margin-top: 0;
}

.secondary .banner li a {
    display: block;
}

.secondary .banner li a img {
    width: 100%;
}

/* 会社概要 */

.company {
    margin-top: 30px;
}

.company .photo img {
    width: 100%;
}

.company dl {
    background: #eeeeee;
    padding: 15px 20px;
    padding-bottom: 25px;
    font-size: 15px;
}

.company dd strong {
    padding-top: 15px;
    padding-bottom: 4px;
    display: block;
}

.company dd span {
    padding-top: 5px;
    display: block;
}

.company a.google i {
    margin-bottom: 15px;
}

.company li.btn {
    margin-top: 15px;
}

.company .btn a {
    padding: 12px;
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 700;
    background-color: #606060;
}

@media only screen and (max-width: 768px) {
    .secondary {
        padding: 0;
        margin: 0;
        float: none;
        width: 100%;
        border-top: 1px solid #bbbbbb;
        margin-top: 70px;
    }

    .secondary .banner {
        width: 90.625%;
        margin: auto;
        padding: 30px 0;
    }

    .secondary .banner li {
        width: 100%;
    }

    .secondary .banner li a img {
        padding-top: 50.75%;
        display: block;
        overflow: hidden;
        width: 100%;
        height: 0;
        background: url(../images/common/secondary/banner01_sp.jpg) no-repeat center top;
        background-size: 100%;
    }

    .company {
        margin: 0;
    }

    .company dl {
        padding-bottom: 30px;
    }

    .company .btn a {
        padding: 20px 0;
    }

}


/*============================
recruit_btn
============================*/
.recruit_btn {
    background: #1b7cd3;
    padding: 100px 0;
    position: relative;
}

.recruit_btn::before {
    content: "";
    background: #009944;
    width: 100%;
    height: 55px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.recruit_btn::after {
    content: "";
    background: url(../recruit/images/wave_blue.png)repeat-x top center;
    background-size: auto 120%;
    display: block;
    height: 55px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 120%;
/*    animation: yurayura 4s ease-in-out infinite alternate;*/
}

/*
@keyframes yurayura {
    0% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(-5%);
    }

    100% {
        transform: translateX(0%);
    }

}
*/

.loop_wrap {
    display: flex;
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.loop_wrap p {
    flex: 0 0 auto;
    white-space: nowrap;
    line-height: 1;
    background: url(../recruit/images/scroll_text.svg)no-repeat center center;
    width: 1470px;
    height: 0;
    padding-top: 80px;
    display: block;
}

.loop_wrap p:nth-child(odd) {
    animation: loop 50s -25s linear infinite;
}

.loop_wrap p:nth-child(even) {
    animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

.recruit_btn ul {
    width: 1040px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.recruit_btn ul li {
    width: 239px;
    border-radius: 30px;
    overflow: hidden;
}

.recruit_btn ul li a {
    position: relative;
    width: 100%;
	display: block;
}

.recruit_btn ul li a::before {
    content: "";
    background: #ff7b33;
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    border-top-left-radius: 30px;
    z-index: 10;
}

.recruit_btn ul li a::after {
    content: "\f061";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #fff;
    font-size: 18px;
    position: absolute;
    right: 15px;
    bottom: 10px;
    z-index: 10;
}

.recruit_btn ul li a p {
    text-align: center;
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
	width: 100%;
	font-weight: 600;
}

.recruit_btn ul li a img {
    width: 100%;
}

/*ホバーしたら*/
.recruit_btn ul li a:hover {
    opacity: 1;
}

.recruit_btn ul li a:hover::before {
    background: #00bcff;
}

.recruit_btn ul li a:hover img {
    transform: scale(1.2);
}

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

    .recruit_btn {
        padding: 40px 0;
    }

    .recruit_btn::before {
        height: 40px;
    }

    .recruit_btn::after {
        height: 40px;
    }

    .recruit_btn ul {
        width: 90.625%;
        grid-row-gap: 20px;
    }

    .recruit_btn ul li {
        width: calc(50% - 10px);
    }

    .loop_wrap {
        margin-bottom: 30px;
    }

    .loop_wrap p {
        width: 735px;
        padding-top: 40px;
    }

    .recruit_btn ul li a p {
        font-size: 14px;
    }

    /*ホバーしたら_解除*/
    .recruit_btn ul li a:hover {}

    .recruit_btn ul li a:hover::before {
        background: #ff7b33;
    }

    .recruit_btn ul li a:hover img {
        transform: none;
    }


}



/*============================
toTop
============================*/

.toTop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10000;
}

.toTop li a {
    display: block;
    /*    overflow: hidden;*/
    width: 60px;
    padding-top: 72px;
    height: 0;
    background: url(../images/common/footer/totop_icon.svg) no-repeat center center;
    position: relative;
}

.toTop li a span {
    color: #096fca;
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 15px);
}

@media only screen and (max-width: 768px) {
    .toTop li a {
        width: 40px;
        padding-top: 48px;
    }

    .toTop li a span {
        top: calc(50% - 7px);
        left: calc(50% - 5px);
        font-size: 10px;
    }
}

/*============================
footer_contact
============================*/

#footer_contact {
    background: #fff;
    color: #fff;
}

#footer_contact .bg {
    background: #009944;
    border-radius: 70px;
    height: 140px;
}

#footer_contact .bg .inner {
    height: 100%;
    align-items: center;
}

#footer_contact h2 {
    margin-bottom: 0;
}

#footer_contact .contact_link {
    width: 680px;
}

#footer_contact .contact_link .tel {
    margin-top: -4px;
}

#footer_contact .contact_link .tel a {
    font-size: 40px;
    line-height: 1;
    color: #fff;
}

#footer_contact .contact_link .tel a i {
    font-size: 28px;
    padding-right: 5px;
}

#footer_contact .contact_link .tel a span.eng {
    display: inline-block;
    letter-spacing: 0.05em;
}

#footer_contact .contact_link .tel a span.time {
    display: block;
    font-size: 14px;
    margin-left: 48px;
    line-height: 1.5;
}

#footer_contact .contact_link .mail {
    width: 320px;
}

#footer_contact .contact_link .mail a {
    background: #fff;
    padding: 14px 0 14px 30px;
    display: block;
    border-radius: 30px;
    position: relative;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

#footer_contact .contact_link .mail a::before {
    content: "\f0e0";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #009944;
    border-radius: 20px;
    position: absolute;
    left: 10px;
    top: calc(50% - 20px);
    color: #fff;
}

/*ホバーしたら*/
#footer_contact .contact_link .tel a {
    opacity: 1;
}

#footer_contact .contact_link .tel a:hover i {
    color: #ffe94a;
    /*    color: #00bcff;*/
}

#footer_contact .contact_link .mail a:hover {
    border-radius: 20px;
    opacity: 1;
}

#footer_contact .contact_link .mail a:hover::before {
    background: #00bcff;
    border-radius: 15px;
}

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

    #footer_contact .bg {
        border-radius: 30px;
        height: auto;
    }

    #footer_contact .bg .inner {
        padding: 20px 0;
    }

    #footer_contact h2 {
        text-align: center;
    }

    #footer_contact .bg .inner,
    #footer_contact .contact_link {
        justify-content: center;
    }

    #footer_contact .contact_link {
        width: 100%;
        grid-gap: 20px;
    }

    /*ホバーしたら_解除*/
    #footer_contact .contact_link .tel a {}

    #footer_contact .contact_link .tel a:hover i {
        color: #fff;
    }

    #footer_contact .contact_link .mail a:hover {
        border-radius: 30px;
    }

    #footer_contact .contact_link .mail a:hover::before {
        background: #009944;
        border-radius: 20px;
    }
}


/*============================
footer
============================*/

footer {
    background: #ffffff;
}

footer .inner {
    position: relative;
    padding: 60px 0;
}

footer .detail {
    font-size: 15px;
}

footer .detail .siteTitle {
    margin-bottom: 40px;
}

footer .detail .siteTitle a {
    background-image: url(../images/common/footer/sitetitle.png);
}

footer .footer-nav .sitelink {
    /*    padding-bottom: 20px;*/
}

footer .footer-nav .sitelink li {
    line-height: 2;
}

footer .footer-nav .sitelink li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

footer .footer-nav .sitelink li a {
    display: block;
    padding: 0 20px;
}

footer .footer-nav .sitelink li a i {
    color: #009944;
    padding-right: 8px;
}

footer .sublink {
    overflow: hidden;
    /*    padding: 20px 0;*/
}

footer .sublink li {
    float: left;
    margin-right: 25px;
}

footer .sublink li a {
    position: relative;
    padding-left: 10px;
    font-size: 13px;
    line-height: 1;
    color: #fff;
}

footer .sublink li a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid rgba(255, 255, 255, 1);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

footer .copyright {
    padding: 15px 0;
    color: #FFF;
    background-color: #096fca;
    font-size: 12px;
}

footer .copyright .flex {
    width: 1040px;
    margin: auto;
    grid-gap: 10px;
}

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

    footer .inner {
        position: relative;
        width: 90.625%;
        padding: 40px 0;
        display: block;
    }

    footer .detail {
        font-size: 14px;
        margin-bottom: 20px;
    }

    footer .detail .siteTitle {
        margin: 0;
        margin-bottom: 15px;
    }

    footer .footer-nav .sitelink {
        /*        padding: 20px 0;*/
    }

    footer .footer-nav .sitelink li {
        border-left: none;
        background: #f0f6fc;
        width: 100%;
        margin-bottom: 2%;
        border-radius: 3px;
    }

    footer .footer-nav .sitelink li:last-child {
        border-right: none;
    }

    footer .footer-nav .sitelink li a {
        padding: 10px;
    }

    footer .footer-nav .sitelink > li > a {
        padding-left: 15px;
        position: relative;
    }

    footer .footer-nav .sitelink > li > a::before {
        content: "\f0da";
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        padding-right: 5px;
    }

    footer .footer-nav .sitelink li .second li {
        width: calc(100% - 20px);
        margin: 0 auto 10px;
    }

    footer .footer-nav .sitelink li .second li a {
        padding: 0 0 0 20px;
    }

    footer .copyright .flex {
        width: 90.625%;
        margin: auto;
    }

    footer .copyright .flex .sub_link {}

}

/*============================
common_js
============================*/

.sa {
    opacity: 0;
    transition: all 0.8s ease;
}

.sa.show {
    opacity: 1;
    transform: none;
}

.sa--lr {
    transform: translate(-100px, 0);
}

.sa--rl {
    transform: translate(100px, 0);
}

.sa--up {
    transform: translate(0, 100px);
}

.sa--down {
    transform: translate(0, -100px);
}

.sa--scaleUp {
    transform: scale(.5);
}

.sa--scaleDown {
    transform: scale(1.5);
}

.sa--rotateL {
    transform: rotate(180deg);
}

.sa--rotateR {
    transform: rotate(-180deg);
}
