@charset "utf-8";

/*--------------------*/
/*base
/*--------------------*/
html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    letter-spacing: .05em;
    color: #606060;
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
}

img {
    width: 100%;
    vertical-align: bottom;
}

.sp-br {
    display: none;
}

a {
    text-decoration: none;
    color: #606060;
    display: inline-block;
}

a:hover {
    opacity: .7;
    transition: .3s;
}

.section-wrapper {
    padding: 135px 0 100px;
    text-align: center;
}

.section-wrapper:last-of-type {
    padding: 135px 0 0;
}

.section-title {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: .5rem;
    margin: 0 auto;
    padding: 20px 20px 50px;
}

.content-wrapper {
    max-width: 1000px;
    padding: 0 30px;
    margin: 0 auto;
}

.flex-box1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-box2 {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.flex-box3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-title {
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.text-lead,
.text-second {
    text-align: start;
}

.lines {
    line-height: 1.5;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

/*--------------------*/
/*top button
/*--------------------*/
.pagetop {
    display: none;
    position: fixed;
    right: 6vw;
    bottom: 70px;
}

.pagetop a {
    display: block;
    font-size: 20px;
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #D9C6BA;
    border-radius: 50%;
    line-height: 50px;
}

/*--------------------*/
/*header
/*--------------------*/
.flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-top {
    position: fixed;
    top: 4.5vw;
    left: 6vw;
    z-index: 1;
}

.nav-wrapper {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    /*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
}

.header-nav {
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2;
}

.nav-list {
    display: block;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -45%);
    text-align: start;
}

.nav-item {
    margin-right: 0;
    margin-bottom: 30px;
}

.menu-en {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .18em;
    line-height: 1.25;
    vertical-align: baseline;
}

.menu-ja {
    margin-left: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.5;
    vertical-align: baseline;
}

/* ハンバーガーボタン（メニューが開いていないとき） */
.burger-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 5vw;
    right: 6vw;
    z-index: 3;
}

.bar {
    display: block;
    background-color: #606060;
    height: 4px;
    width: 28px;
    border-radius: 1px;
}

.bar_top {
    transform: translateY(-4px);
    transition: transform .3s;
}

.bar_bottom {
    transform: translateY(4px);
    transition: transform .3s;
}

.menu {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    color: #606060;
    font-weight: bold;
    margin-top: 10px;
}

/* ハンバーガーボタン（メニューが開いたとき） */
.burger-btn.close .bar_top {
    transform: translateY(4px)rotate(25deg);
    transition: transform .3s;
}

.burger-btn.close .bar_mid {
    opacity: 0;
    transition: opacity .3s;
}

.burger-btn.close .bar_bottom {
    transform: translateY(-4px)rotate(-25deg);
    transition: transform .3s;
}

/* ハンバーガーメニューが開いたとき */
body.noscroll {
    overflow: hidden;
}

/*--------------------*/
/*fv
/*--------------------*/
.fv {
    height: 100vh;
    min-height: 100%;
    position: relative;
    background-image: url(../img/top-bg.png);
    background-size: cover;
    background-position: center;
}

.first-line {
    position: absolute;
    top: 20%;
    left: 50%;
    font-size: 6rem;
    font-weight: 900;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    height: 300px;
    letter-spacing: 2rem;
    line-height: 2.5;
    text-align: start;
}

.second-line {
    position: absolute;
    top: 31%;
    left: 47%;
    font-size: 6rem;
    font-weight: 900;
    /*-ms-writing-mode: tb-rl;*/
    writing-mode: vertical-rl;
    height: 400px;
    letter-spacing: 2rem;
    text-align: start;
}

.fluid {
    position: absolute;
    top: 25%;
    left: 33%;
    width: 280px;
    /*横幅*/
    height: 280px;
    /*縦幅*/
    background: #F2E6A7;
    /*背景色*/
    animation: fluidrotate 30s ease 0s infinite;
    /*アニメーションの設定*/
}

@keyframes fluidrotate {

    0%,
    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}

/*スクロールダウン全体の場所*/
.scrolldown2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span {
    /*描画位置*/
    position: absolute;
    left: 10px;
    bottom: 10px;
    /*テキストの形状*/
    color: #606060;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    /*縦書き設定*/
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: -4px;
    /*丸の形状*/
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #606060;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
    animation:
        circlemove 1.6s ease-in-out infinite,
        cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
    0% {
        bottom: 45px;
    }

    100% {
        bottom: -5px;
    }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }
}

/* 線の描写 */
.scrolldown2:after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: 0;
    /*線の形状*/
    width: 1px;
    height: 50px;
    background: #606060;
}

/*--------------------*/
/*concept
/*--------------------*/

.s1::before {
    content: "";
    display: inline-block;
    background-color: #F2E6A7;
    width: 15px;
    height: 80px;
    margin-right: 30px;
    vertical-align: middle;
}

.s1::after {
    content: "方針";
    font-weight: 400;
    font-size: 16px;
    display: block;
    margin-left: 50px;
    margin-top: -23px;
}

.fluid-s {
    width: 200px;
    /*横幅*/
    height: 200px;
    /*縦幅*/
    background: #F2E6A7;
    /*背景色*/
    animation: fluidrotate 30s ease 0s infinite;
    /*アニメーションの設定*/
}

.text-wrapper_concept {
    max-width: 35%;
    margin-left: 50px;
}

/*--------------------*/
/*message
/*--------------------*/
#message {
    background: #f7f6f5;
}

/*.s2 {
    padding: 0 20px 80px;
}*/

.s2::before {
    content: "";
    display: inline-block;
    background-color: #D9C6BA;
    width: 15px;
    height: 80px;
    margin-right: 30px;
    vertical-align: middle;
}

.s2::after {
    content: "お客様へ";
    font-weight: 400;
    font-size: 16px;
    display: block;
    margin-left: 50px;
    margin-top: -23px;
}

.text-wrapper_message {
    max-width: 40%;
    margin: 0 50px;
}

/*--------------------*/
/*service
/*--------------------*/

#service {
    background: #f7f6f5;
}

.s3::before {
    content: "";
    display: inline-block;
    background-color: #D0D9B0;
    width: 15px;
    height: 80px;
    margin-right: 30px;
    vertical-align: middle;
}

.s3::after {
    content: "サービス内容";
    font-weight: 400;
    font-size: 16px;
    display: block;
    margin-left: 43px;
    margin-top: -23px;
}

.service-wrapper {
    display: flex;
    width: 300px;
    max-width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.service-img-wrapper {
    margin-bottom: 20px;
    vertical-align: bottom;
}

.text-wrapper_service {
    padding: 0 10px;
    margin: 0 auto;
}

/*--------------------*/
/*works
/*--------------------*/

.s4::before {
    content: "";
    display: inline-block;
    background-color: #CEE1F2;
    width: 15px;
    height: 80px;
    margin-right: 30px;
    vertical-align: middle;
}

.s4::after {
    content: "実績";
    font-weight: 400;
    font-size: 16px;
    display: block;
    margin-left: 43px;
    margin-top: -23px;
}

.card-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.card-img {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05)
}

.link-btn-blue {
    background-color: #CEE1F2;
    width: 150px;
    line-height: 36px;
    font-size: 1.2rem;
    display: block;
    text-align: center;
    font-weight: bold;
    margin: 50px auto 0;
    box-shadow: 3px 3px 0px 0px #C0C0C0;
}

.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tab-label {
    color: #606060;
    font-weight: bold;
    background: #fff;
    border: 1px solid #CEE1F2;
    text-align: center;
    padding: .5em 1em;
    cursor: pointer;
    order: -1;
    flex: 1;
    border-radius: 3px;
    position: relative;
    line-height: 1.4em;
}

.tab-label:hover {
    background: #CEE1F2;
}

.tab-content {
    width: 100%;
    display: none;
}

.tab-switch:checked+.tab-label {
    background-color: #CEE1F2;
}

.tab-switch:checked+.tab-label+.tab-content {
    display: block;
}

.tab-switch {
    display: none;
}

/*--------------------*/
/*skills
/*--------------------*/
/*.s5 {
    padding: 0 20px 80px;
}*/

.s5::before {
    content: "";
    display: inline-block;
    background-color: #F2E6A7;
    width: 15px;
    height: 80px;
    margin-right: 30px;
    vertical-align: middle;
}

.s5::after {
    content: "スキル内容";
    font-weight: 400;
    font-size: 16px;
    display: block;
    margin-left: 43px;
    margin-top: -23px;
}

.skill-box {
    width: 450px;
    max-width: 100%;
    margin: 0 auto;
    border: solid #fff;
    padding: 20px;
    background-color: #F2E6A7;
    border-radius: 50px 20px 50px 20px;
}

.skill-list {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 20px;
    color: #606060;
    font-weight: 500;
}

.skill-list:last-child {
    margin-bottom: 0;
}

.text-wrapper_skills {
    width: 450px;
    max-width: 100%;
    margin: 30px auto 0;
    text-align: left;
}

.text-skills-title {
    font-weight: bold;
    margin-bottom: 10px;
}

/*--------------------*/
/*about
/*--------------------*/

.s6::before {
    content: "";
    display: inline-block;
    background-color: #D9C6BA;
    width: 15px;
    height: 80px;
    margin-right: 30px;
    vertical-align: middle;
}

.s6::after {
    content: "事業概要";
    font-weight: 400;
    font-size: 16px;
    display: block;
    margin-left: 43px;
    margin-top: -23px;
}

.about-wrapper {
    max-width: 1000px;
    padding: 0 30px;
    margin: 0 auto;
}

page-layout {
    width: 600px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px;
}

.page-style .dl-small {
    border-bottom: 1px rgba(200, 200, 200, 0.5) dashed;
}

.page-style dl {
    width: 380px;
    margin: 0 0 25px;
    border-bottom: 1px #ddd solid;
}

.page-style .dl-small dt {
    padding: 1.1em 2% 0;
    line-height: 1.6;
    font-size: 14px;
    border-top: 1px rgba(200, 200, 200, 0.5) dashed;
}

.page-style dt {
    clear: both;
    float: left;
    width: 30%;
    padding: 1.5em 2%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-top: 1px #ddd solid;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
    text-align: start;
}

.page-style .dl-small dd {
    padding: 1.1em 2% 1em 4%;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px rgba(200, 200, 200, 0.5) dashed;
}

.page-style dd {
    width: 70%;
    float: left;
    padding: 1.5em 1% 1.5em 4%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-top: 1px #ddd solid;
    font-size: 15px;
    line-height: 2;
    font-size: 14px;
    line-height: 1.8;
    text-align: start;
}

.about-img-wrapper {
    width: 400px;
    max-width: 100%;
    margin-left: 50px;
}

/*--------------------*/
/*contact
/*--------------------*/
.s7::before {
    content: "";
    display: inline-block;
    background-color: #F2E6A7;
    width: 15px;
    height: 80px;
    margin-right: 30px;
    vertical-align: middle;
}

.s7::after {
    content: "お問い合わせ";
    font-weight: 400;
    font-size: 16px;
    display: block;
    margin-left: 43px;
    margin-top: -23px;
}

.text-wrapper_contact {
    margin: 0 auto 50px;
    width: 420px;
    max-width: 100%;
}

/*--------------------*/
/*form#mail_form, dl, dt, dd 
/*--------------------*/

form#mail_form * {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
}

form#mail_form {
    width: 1000px;
    margin: 25px auto 0px;
    background: #ffffff;
    line-height: 1.8;
}

form#mail_form dl {
    width: 90%;
    margin: 0 auto;
    border-bottom: 1px solid #cccccc;
}

form#mail_form dl:after,
form#mail_form dl dt:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

form#mail_form dl dt {
    width: 30%;
    float: left;
    padding: 35px 0 25px;
    text-align: left;
    font-weight: bold;
}

form#mail_form dl dd {
    width: 65%;
    float: right;
    padding: 30px 0 25px;
}

form#mail_form dl dt i {
    float: left;
    position: relative;
    top: -2px;
}

/*--------------------*/
/*span.required, span.optional 
/*--------------------*/
form#mail_form dl dt span.required {
    display: inline-block;
    font-size: 85%;
    padding: 1px 6px;
    margin-left: 10px;
    border-radius: 10px;
}

form#mail_form dl dt span.required {
    background: #606060;
    color: #fff;
}

/*--------------------*/
/*error message 
/*--------------------*/
form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
    display: block;
    color: #ff0000;
    margin-top: 5px;
}

/*--------------------*/
/*loading 
/*--------------------*/
div.loading-layer {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 10000;
}

span.loading {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-top: 5px solid rgba(255, 255, 255, 0.2);
    border-right: 5px solid rgba(255, 255, 255, 0.2);
    border-bottom: 5px solid rgba(255, 255, 255, 0.2);
    border-left: 5px solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load-circle 1.0s linear infinite;
    animation: load-circle 1.0s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
}

@-webkit-keyframes load-circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load-circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*--------------------*/
/*input, select, textarea 
/*--------------------*/

form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"] {
    width: calc(100% - 4% - 2px);
    padding: 7px 2%;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background: #fafafa;
    -webkit-appearance: none;
    font-size: 16px;
    font-family: inherit;
    line-height: normal;
}

form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form textarea:focus {
    box-shadow: 0px 0px 5px #55ccff;
    border: 1px solid #55ccff;
    background: #ffffff;
}

form#mail_form select {
    padding: 7px 2%;
    border: 1px solid #cccccc;
    font-size: 16px;
    font-family: inherit;
    line-height: normal;
}

form#mail_form textarea {
    display: block;
    width: calc(100% - 4% - 2px);
    height: 200px;
    padding: 7px 2%;
    resize: none;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background: #fafafa;
    -webkit-appearance: none;
    font-size: 16px;
    font-family: inherit;
    line-height: normal;
}

/*--------------------*/
/*ul, li
/*--------------------*/
form#mail_form ul {
    list-style-type: none;
}

form#mail_form ul li label {
    display: block;
    margin-top: 10px;
    padding: 7px 2%;
    border-radius: 3px;
    background: #f0f0f0;
}

form#mail_form ul li:first-child label {
    margin-top: 0px;
}

form#mail_form ul li label:hover {
    cursor: pointer;
    background: #e0e0e0;
}

/*--------------------*/
/*button
/*--------------------*/
form#mail_form p#form_submit {
    width: 65%;
    padding: 30px 0 0;
}

form#mail_form input[type="button"] {
    padding: 7px 20px;
    border: 1px solid #F2E6A7;
    border-radius: 3px;
    background: #F2E6A7;
    font-size: 16px;
    font-weight: bold;
    color: #606060;
    box-shadow: 3px 3px 0px 0px #C0C0C0;
    font-family: inherit;
    -webkit-appearance: none;
}

form#mail_form input[type="button"]:hover {
    cursor: pointer;
    background: #e7d260;
    border: 1px solid #e7d260;
}

form#mail_form input[type="button"] {
    margin-left: 28%;
}

/*--------------------*/
/*responsive
/*--------------------*/
/* 1000pixel start */
@media screen and (max-width: 1000px) {


    /* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */

    form#mail_form {
        width: 95%;
        font-size: 100%;
    }

    form#mail_form dl dt {
        width: auto;
        float: none;
        padding: 25px 0 10px;
        text-align: left;
        font-weight: bold;
    }

    form#mail_form dl dd {
        width: auto;
        float: none;
        padding: 0px 0 20px 0px;
    }

    form#mail_form dl dt i {
        float: none;
        position: static;
        font-weight: normal;
    }

    /* -- button -------------------------------------------------------------------------------- */

    form#mail_form p#form_submit {
        padding: 25px 0;
    }

    form#mail_form input[type="button"] {
        margin-left: 3%;
    }

    form#mail_form p#form_submit {
        width: 38%;
    }

    form#mail_form input[type="button"] {
        font-size: 14px;
    }


}

/* 1000pixel end */


/*--------------------*/
/*footer
/*--------------------*/
.footer {
    text-align: center;
    line-height: 100px;
    font-size: smaller;
    font-weight: bold;
    padding-top: 20px;
}

@media screen and (max-width:768px) {

    /*--------------------*/
    /*base_sp
　　/*--------------------*/

    body {
        font-size: 1.4rem;
    }

    .sp-br {
        display: block;
    }

    .section-wrapper {
        padding: 60px 0;
    }

    .section-wrapper:last-of-type {
        padding: 60px 0 0;
    }

    .section-title {
        padding: 0 4vw;
        font-size: 3rem;
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .content-wrapper {
        padding: 0 4vw;
    }

    .flex-box1,
    .flex-box2,
    .flex-box3 {
        flex-direction: column;
        align-items: center;
    }

    .text-lead {
        margin-bottom: 30px;
    }

    .text-second {
        margin-bottom: 0;
    }

    .skills-inner {
        padding: 0 4vw;
    }

    .form-list {
        padding: 0 4vw;
    }

    /*--------------------*/
    /*top button-sp
    /*--------------------*/
    .pagetop {
        right: 4vw;
    }

    .pagetop a {
        font-size: 15px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    /*--------------------*/
    /*header_sp
    /*--------------------*/
    .logo-top {
        top: 20px;
        left: 4vw;
    }

    .burger-btn {
        top: 30px;
        right: 4vw;
    }

    .nav-list {
        top: 40%;
        left: 40%;
        transform: translate(-40%, -40%);
    }


    /* デフォルトのbuttonスタイルをリセット */
    button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: transparent;
        border: 0;
        border-radius: 0;
        color: inherit;
        cursor: pointer;
        font: inherit;
        margin: 0;
        outline: none;
        padding: 0;
        vertical-align: middle;
    }

    /*--------------------*/
    /*fv-sp
    /*--------------------*/
    .fv {
        background-image: url(../img/top-bg-sp.png);
    }

    .first-line {
        top: 25%;
        left: 60%;
        font-size: 5rem;
        letter-spacing: 1.5rem;
        line-height: 2.5;
    }

    .second-line {
        top: 30%;
        left: 50%;
        font-size: 5rem;
        height: 280px;
        letter-spacing: 1.5rem;
    }

    .fluid {
        top: 30%;
        left: 15%;
        width: 250px;
        height: 250px;
    }

    /*--------------------*/
    /*concept-sp
    /*--------------------*/
    .text-wrapper_concept {
        width: 90%;
        max-width: 100%;
        margin: 30px auto 0;
    }

    /*--------------------*/
    /*works-sp
    /*--------------------*/

    .card-list {
        grid-template-columns: 1fr;
    }

    .tab-wrap {
        gap: 10px;
    }

    /*--------------------*/
    /*about-sp
    /*--------------------*/
    .about-wrapper {
        flex-direction: column-reverse;
    }

    .about-img-wrapper {
        width: 90%;
        max-width: 100%;
        margin: 0 auto 30px;
    }

    /*--------------------*/
    /*contact-sp
    /*--------------------*/
    .text-wrapper_contact {
        width: 90%;
        max-width: 100%;
        margin: 30px auto 0;
    }

    /*--------------------*/
    /*footer-sp
    /*--------------------*/
    .footer {
        line-height: 70px;
    }
}