@charset "utf-8";
/* CSS Document */

/* ------------------------------------------

  「　サードプレイス社会保険労務士法人　」

            　 common.css
            　 (共通パーツ用)

   ------------------------------------------*/



/*----------------------

    　　　共通

----------------------*/

span,p,a,dt,dd{
    font-family: 'Noto Sans JP', "sans-serif";
}

body {
    font-size: 14px;
    line-height: 2.5;
    color: #000;
    font-weight:400;
    overflow-x: hidden;
    width: 100%;
    min-width: 100%!important;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
    background: #fff;
    font-family: 'Noto Sans JP', "sans-serif";
    position: relative;
}

.sp_only {
    display: none !important;
}



a{
    text-decoration: none;
    transition: opacity 0.5s ease-out;
}

a:hover{
    opacity: 0.6;
    transition: opacity 0.3s ease-out;
}
img{
    vertical-align: bottom;
    max-width: 100%;
}

.inner{
    max-width: 1100px;
    margin: 0 auto;
}
.kv{
    position: relative;
    padding-top: 100px;
    padding-bottom: 0;
    min-height: 185px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: initial;

    background: rgb(19,64,70);
    background: -moz-linear-gradient(90deg, rgba(19,64,70,1) 0%, rgba(19,108,94,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(19,64,70,1) 0%, rgba(19,108,94,1) 100%);
    background: linear-gradient(90deg, rgba(19,64,70,1) 0%, rgba(19,108,94,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#134046",endColorstr="#136c5e",GradientType=1);
}

.kv:after{
    content: '';
    background: url("../img/pattern.png") no-repeat left bottom;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.kv .box{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
}
.kv h1{
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    line-height: 1.5;
    font-family: "Noto Serif JP", "serif";
}
.kv h1 span{
    font-size: 12px;
    color: #fff;
    font-weight: lighter;
    font-family: 'Noto Sans JP';
    white-space: nowrap;
}
.kv h1 span:before{
    content: "⁄";
    font-size: 16px;
    margin: 0 20px;
}

section{
    padding: 80px 50px;
}

section h2{
    color: #136c5e;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1;
    margin-bottom: 40px;
    font-family: "Noto Serif JP", "serif";
}
section h2 span{
    font-size: 12px;
    color: #000;
    font-weight: lighter;
    font-family: 'Noto Sans JP';
    white-space: nowrap;
}
section h2 span:before{
    content: "⁄";
    font-size: 16px;
    margin: 0 20px;
}
main{
    background: #fff;
    z-index: 0;
    position: relative;
}

.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}

h2{
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 30px;
    color: #136c5e;
    font-family: "Noto Serif JP", "serif";
}

h2:before {
    content: '― ';
}

.front-page h2:before,
.error404 h2:before {
    content: '';
}

h3{
    font-size: 18px;
	font-weight: bold;
    color: #136c5e;
}

.Flex{
    display: flex;
}

.F-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.F-between {justify-content: space-between;}
.F-around {justify-content: space-around;}
.F-j-c_end {justify-content: flex-end;}
.F-j-c_center {justify-content: center;}
.F-middle {align-items: center;}
.F-bottom {align-items: flex-end;}
.F-reverse {flex-direction: row-reverse;}

.mb-30{
	margin-bottom:30px;
}
.mb-80{
	margin-bottom:80px;
}
.mb-100{
	margin-bottom:100px;
}

/*----------------------

    　　reCAPTCHA v3 ロゴ消

----------------------*/
.grecaptcha-badge {
    visibility: hidden;
    pointer-events: none;
}

/*----------------------

    　　header

----------------------*/
header{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    height: 100px;
    background: #fff;
    font-family: "Noto Serif JP", "serif";
}
header.scroll{
    position: fixed;
}

/*----logo----*/
header .logo{
    background: #fff;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    width: 450px;
    margin-left: 40px;
}
header .logo img{
    align-items: flex-start;
    width: 80px;
    margin-right: 15px;
    height: auto;
}
header .logo strong {
    font-size: 20px;
    line-height: 1.5;
    font-family: "Noto Serif JP", "serif";
}
header .logo strong span{
    font-size: 12px;
    display: block;
    font-family: "Noto Serif JP", "serif";
}

/* 　＋＋＋＋＋＋＋　PCの時だけ　＋＋＋＋＋＋＋　*/

@media screen and (min-width:1451px) {


    /*----nav----*/
    header nav{
        margin-left: auto;
        margin-right: 50px;
    }
    header nav .nav_list{
        display: flex;
        flex-wrap: wrap;
    }
    header nav,
    header nav .nav_list,
    header nav .nav_list > li,
    header nav .nav_list a,
    header nav .nav_list dl,
    header nav .nav_list dt{
        height: 100%;
        display: flex;
    }
    header nav .nav_list a,
    header nav .nav_list dt {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        cursor: pointer;
        font-weight: 600;
        padding: 0 20px;
        position: relative;
        font-size: 14px;
        color: #000;
        line-height: 1.25;
        font-family: "Noto Serif JP", "serif";
    }
    header nav .nav_list dt a{
        padding: 0;
    }
    header nav .nav_list li > a:after,
    header nav .nav_list dt:after {
        content: '';
        border-left: 1px solid #136c5e;
        border-top: 1px solid #136c5e;
        width: 8px;
        height: 8px;
        display: block;
        transform: rotate(135deg);
        margin-left: 10px;
    }
    header nav .nav_list dt:after{
        transform: rotate(225deg);
        position: relative;
        top: -3px;
    }
    header nav .nav_list a:hover,
    header nav .nav_list dt:hover,
    header nav .nav_list dt:hover > a {
        opacity: 1;
        color: #2f4f51!important;
    }
    /*header nav .nav_list a:hover:after,
    header nav .nav_list dt:hover:after{
        border-left: 1px solid #f88408!important;
        border-top: 1px solid #f88408!important;
    }*/
    header nav .nav_list dl{
        position: relative;
    }
    header nav .nav_list dl dd{
        position: absolute;
        left: 0;
        top: 100%;
        opacity: 0;
        width: 220px;
        padding: 0 15px;
        height: 0;
        overflow: hidden;
        transition: 0.5s ease-out;
    }
    header nav .nav_list dl:hover dd{
        top: 100%;
        opacity: 1;
        height: auto;
        transition: 0.5s ease-out;
        background: rgb(255 255 255 / 90%);
        box-shadow: 0px 10px 7px -7px rgb(0 0 0 / 10%), 0px 10px 10px -7px rgb(0 0 0 / 10%);
        padding: 10px 15px;
    }


    header nav .nav_list dl dd ul a{
        font-size: 13px;
        padding: 5px 0;
        margin: 10px 0;
    }
    header nav .nav_list dl dd ul a:after {
        width: 8px;
        height: 8px;
        margin-left: 0;
        position: absolute;
        right: 0px;
    }

    header.scroll nav .nav_list dl:hover dd::after {
        display: none;
    }

    /*　---　*/
}
/* ＋＋end＋＋　PCの時だけ　＋＋end＋＋　*/

header.scroll {
    height: 70px;
    align-items: center;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}

header.scroll .logo{
    width: 380px;
}
header.scroll .logo img {
    width: 50px;
    margin-right: 10px;
}
header.scroll .logo strong {
    font-size: 18px;
    line-height: 1.5;
}
header.scroll .logo strong span {
    font-size: 10px;
}







/*----------------------

    　　　footer

----------------------*/
footer{
    position: relative;
    overflow: hidden;
}

/*----foot_contact----*/
footer .foot_contact{
    position: relative;
    padding: 75px 50px 85px;
    background: url(../img/foot_contact.jpg);
    background-attachment: fixed;
    background-size: cover;
}
footer .foot_contact:after {
    content: "";
    background:rgb(230 242 235 / 0.8);
    position:absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
footer .foot_contact dl{
    display:flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
footer .foot_contact dl > div{
    flex-basis: calc((100% - 16px) / 2);
    border: 1px solid #2f4f51;
    border-top: 0px;
}
footer .foot_contact dt{
    color: #2f4f51;
    font-size: 18px;
    font-family: "Noto Serif JP", "serif";
    display: flex;
    justify-content: space-between;
    height: 20px;
    margin-top: -9px;
    align-items: center;
}
footer .foot_contact dt span{
    padding: 0px 15px;
    font-family: "Noto Serif JP", "serif"!important;
}
footer .foot_contact dt:before,
footer .foot_contact dt:after{
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #2f4f51;
}
footer .foot_contact dd {
    height: calc(100% - 11px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding: 30px;
    text-align: center;
}
footer .foot_contact .tel_fax dd a{
    font-size: 36px;
    font-family: "Noto Serif JP", "serif";
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

footer .foot_contact .tel_fax dd address:nth-of-type(2) a {
    cursor: auto;
}

footer .foot_contact .tel_fax dd address:nth-of-type(2) a:hover {
    opacity: 1;
}

footer .foot_contact .tel_fax dd a span{
    font-size: 20px;
    font-weight: lighter;
    margin-right: 10px;
}
footer .foot_contact .tel_fax dd small{
    font-size: 14px;
    line-height: 1.75;
}
footer .foot_contact .mail .btn{
    background: #136c5e;
    width: 370px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
    color: #fff;
    font-family: "Noto Serif JP", "serif";
    padding-right: 10px;
}
footer .foot_contact .mail .btn:after {
    content: '';
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    width: 8px;
    height: 8px;
    display: block;
    transform: rotate(135deg);
    position: absolute;
    right: 30px;
    font-family: "Noto Serif JP", "serif";
    top: 0;
    bottom: 0;
    margin: auto;
}


/*----foot_nav----*/
footer .foot_nav{
    position: relative;
    background: #006837;
    padding: 0 50px;
}
footer .nav_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 0;
}
footer .nav_list a,
footer .nav_list dt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 600;
    position: relative;
    font-size: 14px;
    color: #fff;
}
footer .nav_list a:after {
    content: '';
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    width: 8px;
    height: 8px;
    transform: rotate(135deg);
}
footer .nav_list dl dd{
    position: relative;
    margin-top: 10px;
}

footer .nav_list dl dd ul a{
    font-weight: lighter;
	margin-bottom:1em;
    padding: 5px 20px 5px 20px;
	line-height: 1;
}
footer .nav_list dl dd ul a:after {
    position: absolute;
    left: 0;
}

/*----nav_bottom----*/
footer .foot_bottom{
    position: relative;
}
footer .foot_bottom{
    background: #006837;
    padding: 0 50px;
}
footer .foot_bottom .box{
    color: #fff;
    text-align: center;
}
footer .foot_bottom .box strong{
    font-size: 32px;
    font-family: "Noto Serif JP", "serif";
}
footer .foot_bottom .box span{
    display: block;
    font-size: 16px;
}
footer .foot_bottom ul{
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
footer .foot_bottom ul li{
    margin: 0 10px;
}
footer .foot_bottom li a img{
    width: 30px;
}

/*--copyright---*/
footer .copyright {
    background: #006837;
    color: #fff;
    padding: 0 50px 30px;
    display: block;
    text-align: center;
    position: relative;
}

/*ページトップスクロールボタン*/

#page-top {
    position: fixed;
    right: 10px;
    z-index: 100;
    height: 70px;
}
#page-top a {
    background: #136c5e;
    text-decoration: none;
    color: #fff;
    width: 70px;
    height: 100%;
    text-align: center;
    display: block;
    font-family: "Noto Serif JP", "serif";
    display: flex;
    justify-content: center;
    align-items: center;
}
#page-top a span{
    font-size: 14px;
    margin: auto;
    display: block;
    position: relative;
    line-height: 1;
}
#page-top a span::before{
    /* content: ""; */
    width: 50px;
    height: 1px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
    margin-bottom: 3px;
}


#page-top.bottom {
    position: absolute;
}

#page.contents{
    max-width: 1100px;
    margin: 70px auto 120px;
}

#page.contents a{
    color: #136c5e;
    text-decoration: underline;
}

/*業務内容*/
.business_content > div:not(:last-child){
    margin-bottom: 100px;
}

.ImgBlock .TxtBox{
    width: calc(100% - 450px - 30px);
}

.ImgBlock .TxtBox h2{
    font-weight: bold;
    font-size: 24px;
    margin: 0 0 30px;
    color: #136c5e;
    font-family: "Noto Serif JP", "serif";
}

.ImgBlock .TxtBox h2:before{
    content: '― ';
}

.ImgBlock .ImgBox{
    width: 450px;
}

.ImgBlock .ImgBox .imgWrap{
    overflow: hidden;
    position: relative;
}

.ImgBlock .ImgBox .imgWrap img{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ImgBlock .ImgBox .imgWrap:before{
    content: '';
    display: block;
    padding-top: 62%;
}

/*パンくず*/
.breadcrumbs{
    max-width: 1100px;
    margin: 0 auto;
}
.breadcrumbs a{
    color: #136c5e;
    text-decoration: underline;
}
.breadcrumbs ol{
    display: flex;
    padding: 10px 0;
    overflow-x: auto;
    word-break: keep-all;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.breadcrumbs ol li{
    font-size: 14px;
}

.breadcrumbs ol>li+li:before{
    content: ">";
    padding: 0 5px;
    color: #ccc;
}


/*----------------------

       アーカイブ
     ( archive )

----------------------*/

.archive main section.posts{
    max-width: 1100px;
    margin: 0 auto;
}

/*----------------------

       シングル
     ( single )

----------------------*/
.single .kv + .content{
    max-width: 1100px;
    margin: 0 auto;
}

.post-navigation{
    max-width: 1100px;
    margin: 0 auto;
}
/* 　＋＋＋＋＋＋＋　PC -（1600px）以下　用　＋＋＋＋＋＋＋　*/

@media screen and (min-width: 1451px) and (max-width: 1600px) {
    header nav .nav_list a, header nav .nav_list dt {
        padding: 0 15px;
        font-size: 13px;
        letter-spacing: 0.05em;
    }

    /*　---　*/
}
/* ＋＋end＋＋　PC -（1600px）以下　用　＋＋end＋＋　*/





/* 　＋＋＋＋＋＋＋　PC -（1400px）以下　用　＋＋＋＋＋＋＋　*/

@media screen and (max-width: 1450px) {

    /*ハンバーガーメニュー*/

    .nav{
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100% - 100px);
        height: 100%;
        background: #fff;
        color: #000000;
        /* display: flex; */
        justify-content: center;
        align-items: center;
        /* 初期：非表示 */
        visibility: hidden;
        opacity: 0;
        /* ふわっと表示 */
        transition: 0.5s ease-in-out;
        transform: translateX(220%);
        box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
    }
    .nav a{
        color: #000000;
    }
    /* ナビゲーションボタン（開く） */
    #navbtn{
        position: relative;
        padding: 0;
        outline: none;
        border: none;
        background: none;
        width: 40px;
        height: 100%;
        cursor: pointer;
        margin-left: auto;
        margin-right: 30px;
    }

    #navbtn::before,
    #navbtn::after{
        content : '';
        display: block;
        height: 1px;
        background-color: #136c5e;
        transform: translateY(10px);
        transition: 0.3s ease-in-out;
    }

    #navbtn::before{
        transform: translateY(-10px);
        box-shadow: 0 10px #136c5e;
    }

    ::before {}

    ::before {}

    ::before {}

    ::before {}

    /* ナビゲーションボタン（閉じる） */
    .open #navbtn{
        z-index: 100;
    }
    .open #navbtn::before{
        transform: rotate(-45deg);
        box-shadow: none;
    }
    .open #navbtn::after{
        transform: rotate(45deg);
        box-shadow: none;
    }

    /* ナビゲーションメニュー 開いた時*/
    .open .nav{
        visibility: visible;
        opacity: 1;
        transform: translateX(100px);
        overflow: auto;
    }

    header .nav > ul{
        padding: 70px;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        overflow: auto;
    }

    header nav .nav_list > li{
        margin-bottom: 10px;
        flex-basis: calc((100% - 50px) / 2 );
        padding: 10px 20px;
    }
    header nav .nav_list a,
    header nav .nav_list dt {
        font-weight: 600;
        position: relative;
        font-size: 18px;
        margin-bottom: 5px;
    }
    header nav .nav_list a:after{
        content: '';
        border-left: 1px solid #136c5e;
        border-top: 1px solid #136c5e;
        width: 10px;
        height: 10px;
        transform: rotate(135deg);
        margin-left: 10px;
        display: inline-block;
    }
    header nav .nav_list dl dd{
        position: relative;
        /* margin: 10px  0 0; */
    }
    header nav .nav_list dl dd::after{
        content: "";
        position: absolute;
        height: 100%;
        width: 1px;
        background: #136c5e;
        top: 0;
        left: 0;
    }
    header nav .nav_list dl dd ul a{
        font-size: 15px;
        padding-left: 30px;
        display: flex;
        align-items: center;
        height: 40px;
        line-height: 1.5;
        margin-bottom: 5px;
    }
    header.scroll #navbtn::before {
    }
    .open header.scroll #navbtn::before {
        box-shadow: none;
    }
    header.scroll #navbtn::before,
    header.scroll #navbtn::after {
    }
    .open{
        overflow: hidden;
    }

    /*　---　*/
}
/* ＋＋end＋＋　PC - （1450px）以下　用　＋＋end＋＋　*/



/* 　＋＋＋＋＋＋＋　タブレット - iPad -（1024px）以下　用　＋＋＋＋＋＋＋　*/

@media screen and (max-width: 1024px) {

    .kv:after{
        background: url("../img/pattern_sp.png") no-repeat left bottom;
    }

    .kv h1{
        justify-content: center;
    }

    .Flex{
        display: block;
    }

    .breadcrumbs{
        padding: 0 20px;
    }

    .business_content > div:not(:last-child){
        margin-bottom: 50px;
    }

    .ImgBlock .TxtBox{
        width: 100%;
    }

    .ImgBlock .TxtBox h2{
        font-size: 18px;
        line-height: 1.6;
        padding: 10px 0;
        margin: 20px 0 10px;
    }

    .ImgBlock .ImgBox{
        width: 100%;
    }

    #page.contents{
        padding: 0 20px;
    }

    section {
        padding: 100px 30px;
    }
    * .btn:after {
        right: 15px!important;
    }

    footer .foot_contact {
        padding: 75px 30px 85px;
        background-attachment: initial;
        background-position:center;
        background-size: cover;
    }
    footer .foot_contact .tel_fax dd a {
        font-size: 30px;
        letter-spacing: 0;
    }
    footer .foot_contact .tel_fax dd small {
        font-size: 12px;
    }
    footer .foot_contact dd {
        padding: 30px 10px;
    }
    footer .foot_contact .mail .btn {
        width: 100%;
        padding: 0 35px 0 20px;
        font-size: 15px;
        letter-spacing: 0;
    }
    footer .nav_list > li{
        margin-bottom:30px;
    }
    footer .foot_nav ,
    footer .foot_bottom,
    footer .copyright{
        padding-left:30px;
        padding-right:30px;
    }

    /*　---　*/
}
/* ＋＋end＋＋　タブレット - iPad （1024px）以下　用　＋＋end＋＋　*/






/* 　＋＋＋＋＋＋＋　タブレット - iPad （834px）以下　用　＋＋＋＋＋＋＋　*/

@media screen and ( max-width:834px) {


    /*　---　*/
}
/* ＋＋end＋＋　タブレット - iPad （834px）以下　用　＋＋end＋＋　*/







/* 　＋＋＋＋＋＋＋　スマホ -  （767px）以下　用　＋＋＋＋＋＋＋　*/

@media screen and ( max-width:767px) {

    img {
        width: 100%;
    }
	.sp_only {
		display: block !important;
	}
	.kv {
        padding-top: 60px;
        min-height: 130px;
    }
    .kv h1{
    font-size: 5.5vw;
    letter-spacing: 0.04em;
    }
    section h2{
        font-size: 24px;
        font-size: 5.8vw;
        letter-spacing: 0.04em;
    }
    section h2 span {
        font-size: 10px;
    }
    section {
        padding: 60px 20px;
    }
    header {
        height: 60px;
    }
    header .logo {
        width: auto;
        margin-left: 20px;
    }
    header.scroll .logo {
        width: auto;
    }
    header .logo img {
        width: 50px;
        margin-right: 10px;
    }
    header .logo strong {
        font-size: 3.5vw;
        letter-spacing: 0;
        line-height: 1.25;
    }
    header .logo strong span {
        font-size: 10px;
    }
    #navbtn {
        margin-right: 10px;
        width: 50px;
        padding: 10px;
        box-sizing: border-box;
    }
    header.scroll {
        height: 50px;
    }
    header.scroll .logo strong {
        font-size: 3vw;
        line-height: 1.25;
    }
    header.scroll .logo img {
        width: 40px;
        margin-right: 5px;
    }

    .nav {
        width: calc(100% - 20px);
    }
    .open .nav {
        transform: translateX(20px);
    }
    header .nav > ul {
        padding: 50px 20px;
        display: block;
    }
    header nav .nav_list > li {
        padding: 0px 10px;
        margin-bottom: 30px;
    }
    header nav .nav_list a, header nav .nav_list dt {
        font-size: 16px;
    }
    header nav .nav_list dl dd ul a {
        font-size: 13px;
        padding-left: 20px;
    }
    header nav .nav_list a:after {
        width: 8px;
        height: 8px;
    }
	#page.contents{
		margin:30px auto 50px;
	}
    #page-top {
        height: 50px;
    }
    #page-top a {
        width: 50px;
    }
    #page-top a span {
        font-size: 12px;
    }
	
	h2{
		font-size: 20px;
		line-height: 1.8;
	}
	h3{
    	font-size: 18px;
		line-height: 1.8;
	}
	
    footer .foot_contact {
        padding: 60px 20px;
    }
    footer .foot_contact dl {
        display: block;
    }
    footer .foot_contact dl {
        display: block;
    }
    footer .foot_contact dl .mail {
        margin-top: 40px;
    }
    footer .foot_contact dt {
        position: relative;
        margin-top: 0;
        top: -10px;
        margin-bottom: -10px;
        width: calc(100% + 2px);
        left: -1px;
        font-size: 5vw;
    }

    footer .foot_nav,
    footer .foot_bottom,
    footer .copyright {
        padding-left: 20px;
        padding-right: 20px;
    }
    footer .nav_list > li {
        margin-bottom: 20px;
        flex-basis: calc((100% - 10px) /2);
    }
    footer .nav_list > li:last-of-type{
        margin-bottom: 0;
    }
    footer .nav_list dl dd ul a {
        padding: 5px 0 5px 15px;
        font-size: 12px;
        line-height: 1.75;
    }
    footer .nav_list dl dd {
        margin-top: 5px;
    }

    footer .foot_bottom .box strong {
        font-size: 5vw;
    }
    footer .foot_bottom .box {
        font-size: 11px;
    }
    footer .foot_bottom .box span {
        font-size: 14px;
        margin-bottom: 20px;
    }
    footer .foot_bottom .box p{
        font-size: 12px;
        line-height: 1.75;
    }
    footer .copyright {
        font-size: 10px;
        padding-bottom: 30px;
        line-height: 1.75;
        letter-spacing: 0.02em;
    }
    /*　---　*/
}
/* ＋＋end＋＋　スマホ -  （767px）以下　用　＋＋end＋＋　*/
