@charset "utf-8";

/*--------------------------------------------------------------
  common
--------------------------------------------------------------*/
html {
    overflow: auto;
}
body {
    font-family: tbudgothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000033;
    letter-spacing: 0.1em;
    overflow: hidden;
}
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
input[type="text"] {
    border: none;
    outline: none;
}
button,input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
}
a { text-decoration: none; }

/*--------------------------------------------------------------
  header
--------------------------------------------------------------*/
header {
    width: 100%;
    height: 90px;
    background: #9D0200;
    position: fixed;
    top: 0;
    z-index: 1000;
}
header .header-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 90px;
}
header .header-logo {
    width: 240px;
    margin: 0 auto 0 0;
}
header nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav ul li {
    position: relative;
}
header nav ul li::before {
    content: "";
    position: absolute;
    border-left: 1px solid #fff;
    left: 0;
    top: 0;
    height: 100%;
}
header nav ul li:first-child::before,
header nav ul li:last-child::before  {
    border-left: none;
}
header nav ul li a {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 34px;
    display: flex;
    padding: 0 20px;
    border: 1px solid transparent;
    transition: all .4s;
}
header nav ul li a:hover {
    background: #fff;
    border: 1px solid #707070;
    color: #9D0200;
}
header nav ul li.header-btn {
    margin-left: 10px;
}
header nav ul li.header-btn a {
    width: 180px;
    line-height: 50px;
    display: block;
    background: #fff;
    border-radius: 30px;
    border: 2px solid #9D0200;
    color: #9D0200;
    text-align: center;
    transition: all .4s;
}
header nav ul li.header-btn a:hover {
    background: #9D0200;
    border: 2px solid #fff;
    color: #fff;
}

@media screen and (max-width: 1000px) {
    header .header-inner {
        width: 96%;
    }
    header .header-logo {
        width: 180px;
    }
    header nav ul li a {
        padding: 0 15px;
        font-size: 14px;
        line-height: 30px;
    }
    header nav ul li.header-btn a {
        width: 140px;
        line-height: 40px;
    }
}
@media screen and (max-width: 768px) {
    header {
        display: none;
    }
}

/*--------------------------------------------------------------
  contents
--------------------------------------------------------------*/
.sp-only { display: none; }
.pc-only { display: block; }

main {
    padding-top: 90px;
}
main a {
    text-decoration: underline;
    color: #9D0200;
}
main a:hover {
    text-decoration: none;
    color: #9D0200;
}
.inner-block {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}
.bg-gray {
    background: #EFEFEF;
}

.txt-block {
    margin: 0 0 60px;
}
.txt-block:last-child {
    margin: 0;
}
.txt-block h3 {
    font-size: 18px;
    margin: 0 0 20px;
}
.txt-block p {
    font-size: 16px;
    margin: 0 0 20px;
}
.txt-block p:last-child {
    margin: 0;
}

.btn-red {
    width: 240px;
    line-height: 60px;
    display: block;
    margin: 40px auto 0;
    background: #9D0200;
    border-radius: 60px;
    border: 2px solid #9D0200;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .4s;
}
.btn-red:hover {
    background: #fff;
    border: 2px solid #9D0200;
    color: #9D0200;
}

.btn-white {
    width: 240px;
    line-height: 60px;
    display: block;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 60px;
    border: 2px solid #9D0200;
    font-size: 20px;
    color: #9D0200;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .4s;
}
.btn-white:hover {
    background: #9D0200;
    border: 2px solid #9D0200;
    color: #fff;
}

@media screen and (max-width: 1000px) {
    .inner-block {
        width: 92%;
    }
}

@media screen and (max-width: 768px) {
    .sp-only { display: block; }
    .pc-only { display: none; }

    main {
        padding-top: 0;
    }
    .inner-block {
        width: 90%;
        padding: 40px 0;
    }
    .txt-block {
        margin: 0 0 40px;
    }
    .txt-block h3 {
        font-size: 18px;
        margin: 0 0 15px;
    }
    .txt-block p {
        font-size: 16px;
        margin: 0 0 15px;
    }

    .btn-red {
        line-height: 50px;
        font-size: 18px;
    }
    .btn-white {
        line-height: 50px;
        font-size: 18px;
    }

}

/* mv */
.mv {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 0 50px;
    position: relative;
}
.mv h1 {
    width: 45%;
    position: relative;
    z-index: 3;
}
.mv .mv-pic {
    width: 660px;
    height: 327px;
    background: url(../img/main-visual.svg) no-repeat;
    position: absolute;
    top: 100px;
    right: -80px;
    z-index: 1;
}
.mv .mv-concept {
    width: 45%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}
.mv .mv-concept li {
    flex-basis: 30%;
}

/* catchcopy */
.catchcopy {
    width: 100%;
    height: 180px;
    background: url(../img/bg-gray-pc.png) no-repeat center top;
    background-size: cover;
}
.catchcopy p {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    padding-top: 80px;
}

/* title */
.sec-title {
    width: 100%;
    background: url(../img/title-bg-pc.jpg) no-repeat center center;
    background-size: cover;
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    text-align: center;
    font-size: 30px;
    padding: 60px 0;
    position: relative;
}
.sec-title::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #630200 transparent transparent transparent;
    border-width: 20px 20px 0 20px;
}

/* sec01 */
.sec01-block01 {
    background: #BE4342;
    margin-top: 100px;
}
.sec01-block01 .block01-txt {
    width: 420px;
    margin: 0 auto;
    padding: 20px 0 60px;
    color: #fff;
    position: relative;
}
.sec01-block01 .block01-txt p {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px;
}
.sec01-block01 .block01-txt ul li {
    font-size: 18px;
    border-bottom: 1px dotted #fff;
    margin: 0 0 20px;
    padding: 0 0 15px 35px;
    position: relative;
}
.sec01-block01 .block01-txt ul li strong {
    font-weight: 900;
}
.sec01-block01 .block01-txt ul li::before {
    content: "";
    background: url(../img/check.svg) no-repeat left top;
    background-size: 25px 25px;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    left: 0;
}
.sec01-block01 .block01-txt img {
    position: absolute;
    bottom: -20px;
    right: -200px;
}

.sec01-block02 {
    background: #fff;
    padding: 70px 0;
}
.sec01-block02 p {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}


/* slide */
.slide-block {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    top: -50px;
}
.slide-block .slide {
    display: flex;
    justify-content: space-between;
}
.slide-block .slide li {
    flex-basis: 32%;
}
.slide-block .slide li img {
    box-shadow: 1px 2px 10px rgba(0,0,0,0.15);
}


/* sec02 */
.sec02-block01 {
    display: flex;
    justify-content: space-between;
}
.sec02-block01 .txt {
    width: 48%;
}
.sec02-block01 .txt h3 {
    font-size: 28px;
    font-weight: 700;
    color: #9D0200;
    margin: 0 0 20px;
}
.sec02-block01 .txt p {
    font-size: 20px;
    margin: 0 0 20px;
}
.sec02-block01 .txt p:last-child {
    margin: 0;
}
.sec02-block01 .pic {
    width: 48%;
}

/* sec03 */
.merit-block {
    background: #EFEFEF;
    border-radius: 10px;
    padding: 50px 50px;
    margin: 0 0 60px;
}
.merit-block:last-child {
    margin: 0;
}

.merit-title {
    margin-bottom: 40px;
}
.merit-title h3 {
    font-size: 24px;
    font-weight: 700;
    border-bottom: 2px dotted #9D0200;
    padding: 10px 0 20px 60px;
    margin: 0 0 20px;
    position: relative;
}
.merit-title h3::before {
    content: "";
    width: 35px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
}
.sec03-merit01 .merit-title h3::before {
    background: url(../img/merit-icon-01.svg) no-repeat left center;
    background-size: 35px 60px;
}
.sec03-merit02 .merit-title h3::before {
    background: url(../img/merit-icon-02.svg) no-repeat left center;
    background-size: 35px 60px;
}
.sec03-merit03 .merit-title h3::before {
    background: url(../img/merit-icon-03.svg) no-repeat left center;
    background-size: 35px 60px;
}
.merit-title p {
    font-size: 18px;
    text-align: center;
}

.merit-detail h4 {
    font-size: 24px;
    font-weight: 700;
    color: #9D0200;
    margin: 0 0 15px;
}
.merit-detail p {
    font-size: 20px;
    margin: 0 0 15px;
}
.merit-detail p:last-child {
    margin: 0;
}

.sec03-merit01 .merit-detail {
    display: flex;
    justify-content: space-between;
}
.sec03-merit01 .merit-detail .txt {
    width: 60%;
}
.sec03-merit01 .merit-detail .pic {
    width: 35%;
}

.sec03-merit02 .merit-detail {
    display: flex;
    justify-content: space-between;
}
.sec03-merit02 .merit-detail .txt {
    width: 48%;
}
.sec03-merit02 .merit-detail .plan {
    width: 46%;
    display: flex;
    justify-content: space-between;
}
.sec03-merit02 .merit-detail .plan .plan-box {
    width: 48%;
    margin: 35px 0 0;
}
/* plan-box */
.sec03-merit02 .merit-detail .plan .plan-box dt {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    padding: 15px 0;
}
.sec03-merit02 .merit-detail .plan .plan-box dt span {
    font-size: 12px;
    display: block;
}
.sec03-merit02 .merit-detail .plan .plan-box dd {
    padding: 15px 10px;
}
.sec03-merit02 .merit-detail .plan .plan-box dd .price {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 10px;
    padding: 0 0 10px;
}
.sec03-merit02 .merit-detail .plan .plan-box dd .price span {
    font-size: 12px;
}
.sec03-merit02 .merit-detail .plan .plan-box dd .point {
    font-size: 14px;
    text-align: center;
}

.sec03-merit02 .merit-detail .plan .plan-year {
    border: 1px solid #84CBD6;
    background: #fff;
}
.sec03-merit02 .merit-detail .plan .plan-year dt {
    background: #84CBD6;
    position: relative;
}
.sec03-merit02 .merit-detail .plan .plan-year dt::before {
    content: "";
    background: url(../img/calendar01.svg) no-repeat center top;
    background-size: 100% auto;
    width: 40px;
    height: 45px;
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    margin: auto;
}
.sec03-merit02 .merit-detail .plan .plan-year dd .price {
    border-bottom: 2px dotted #84CBD6;
}

.sec03-merit02 .merit-detail .plan .plan-month {
    border: 1px solid #D68484;
    background: #fff;
}
.sec03-merit02 .merit-detail .plan .plan-month dt {
    background: #D68484;
    position: relative;
}
.sec03-merit02 .merit-detail .plan .plan-month dt::before {
    content: "";
    background: url(../img/calendar02.svg) no-repeat center top;
    background-size: 100% auto;
    width: 120px;
    height: 35px;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
}
.sec03-merit02 .merit-detail .plan .plan-month dd .price {
    border-bottom: 2px dotted #D68484;
}


.sec03-merit03 .merit-detail {
    display: flex;
    justify-content: space-between;
}
.sec03-merit03 .merit-detail .txt {
    width: 48%;
}
.sec03-merit03 .merit-detail .pic {
    width: 46%;
}


/* sec04 */
.step-block {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.step-block li {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0 0 60px;
    position: relative;
}
.step-block li::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -40px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #9D0200 transparent transparent transparent;
    border-width: 20px 15px 0 15px;
}

.step-block li:last-child {
    margin: 0;
}
.step-block li:last-child::after {
    position: static;
    border: none;
}

.step-block li .step-no {
    flex-basis: 12%;
    border-right: 2px solid #9D0200;
    padding: 0 20px 0 0;
}
.step-block li .step-detail {
    flex-basis: 88%;
    padding-left: 80px;
    position: relative;
}
.step-block li .step-detail::before {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto;
}
.step-block li.step01 .step-detail::before {
    background: url(../img/step01.png) no-repeat left center;
    background-size: 100% auto;
}
.step-block li.step02 .step-detail::before {
    background: url(../img/step02.png) no-repeat left center;
    background-size: 100% auto;
}
.step-block li.step03 .step-detail::before {
    background: url(../img/step03.png) no-repeat left center;
    background-size: 100% auto;
}
.step-block li.step04 .step-detail::before {
    background: url(../img/step04.png) no-repeat left center;
    background-size: 100% auto;
}
.step-block li.step05 .step-detail::before {
    background: url(../img/step05.png) no-repeat left center;
    background-size: 100% auto;
}

.step-block li .step-detail .step-txt {
    display: flex;
    align-items: center;
}
.step-block li .step-detail .step-txt p {
    font-size: 26px;
    font-weight: 700;
}
.step-block li .step-detail .step-txt span {
    font-size: 13px;
}
.step-block li .step-detail .step-icon {
    display: flex;
    margin: 10px 0 0;
}
.step-block li .step-detail .step-icon span {
    font-size: 13px;
    line-height: 25px;
    padding: 0 10px;
    margin-right: 10px;
}
.step-block li .step-detail .step-icon span:last-child {
    margin-right: 0;
}
.step-block li .step-detail .step-icon span.customer { background: #F3DCDC; }
.step-block li .step-detail .step-icon span.agent { background: #D1EBEF; }


@media screen and (max-width: 1000px) {
    /* mv */
    .mv h1 {
        margin-left: 30px;
    }
    .mv .mv-concept {
        margin-left: 30px;
    }

    .slide-block {
        width: 92%;
    }
}

@media screen and (max-width: 768px) {
    /* mv */
    .mv {
        padding: 50px 0 0;
        position: relative;
    }
    .mv h1 {
        width: 75%;
        max-width: 446px;
        margin: 0 auto;
        padding: 0;
    }
    .mv .mv-pic {
        width: 120%;
        height: auto;
        background: url(../img/main-visual.svg) no-repeat top center;
        background-size: contain;
        position: absolute;
        top: 30%;
        right: 0;
        bottom: 0;
        left: -14%;
        margin: auto;
        z-index: 1;
    }
    .mv .mv-concept {
        width: 90%;
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        padding-top: 63%;
    }
    .mv .mv-concept li {
        flex-basis: 32%;
    }

    /* catchcopy */
    .catchcopy {
        height: 150px;
    }
    .catchcopy p {
        font-size: 16px;
        padding-top: 60px;
    }

    /* title */
    .sec-title {
        width: 100%;
        background: url(../img/title-bg-sp.png) no-repeat center center;
        background-size: cover;
        font-size: 16px;
        padding: 40px 0;
        position: relative;
    }
    .sec-title::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: -15px;
        left: 0;
        width: 0px;
        height: 0px;
        margin: auto;
        border-style: solid;
        border-color: #630200 transparent transparent transparent;
        border-width: 15px 15px 0 15px;
    }

    /* sec01 */
    .sec01-block01 {
        margin-top: 70px;
    }
    .sec01-block01 .block01-txt {
        width: 90%;
        margin: 0 auto;
        padding: 0 0 30px;
        position: static;
    }
    
    .sec01-block01 .block01-txt p {
        font-size: 20px;
        margin: 0 0 20px;
    }
    .sec01-block01 .block01-txt ul li {
        font-size: 16px;
        margin: 0 0 20px;
        padding: 0 0 10px 35px;
    }
    .sec01-block01 .block01-txt img {
        display: none;
    }

    .sec01-block02 {
        padding: 50px 0;
    }
    .sec01-block02 p {
        font-size: 22px;
    }

    /* slide */
    .slide-block {
        width: 100%;
        position: relative;
        top: -50px;
        padding: 0 20px;
    }
    .slide-block .slide {
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
        display: block;
        position: static;
    }
    .slide-block .slide li {
        flex-basis: 100%;
    }
    .prev {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 100;
        margin: auto;
        width: 32px;
        height: 58px;
    }
    .next {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 100;
        margin: auto;
        width: 32px;
        height: 58px;
    }
    
    /* sec02 */
    .sec02-block01 {
        display: block;
    }
    .sec02-block01 .txt {
        width: 100%;
    }
    .sec02-block01 .txt h3 {
        font-size: 20px;
        margin: 0 0 15px;
    }
    .sec02-block01 .txt p {
        font-size: 16px;
        margin: 0 0 15px;
    }
    .sec02-block01 .pic {
        width: 100%;
        max-width: 481px;
        margin: 30px auto 0;
    }

    /* sec03 */
    .merit-block {
        padding: 30px 20px 40px;
        margin: 0 0 30px;
    }

    .merit-title {
        margin-bottom: 30px;
    }
    .merit-title h3 {
        font-size: 18px;
        text-align: center;
        padding: 0 0 15px 50px;
        margin: 0 0 20px;
        position: relative;
    }
    .merit-title p {
        font-size: 16px;
        text-align: left;
    }

    .merit-detail h4 {
        font-size: 18px;
        text-align: center;
        margin: 0 0 15px;
    }
    .merit-detail p {
        font-size: 16px;
        margin: 0 0 15px;
    }
    .merit-detail p:last-child {
        margin: 0;
    }

    .sec03-merit01 .merit-detail {
        display: block;
    }
    .sec03-merit01 .merit-detail .txt {
        width: 100%;
        margin: 30px 0 0;
    }
    .sec03-merit01 .merit-detail .pic {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .sec03-merit02 .merit-detail {
        display: block;
    }
    .sec03-merit02 .merit-detail .txt {
        width: 100%;
    }
    .sec03-merit02 .merit-detail .plan {
        width: 100%;
        margin: 20px 0 0;
    }
    /* plan-box */
    .sec03-merit02 .merit-detail .plan .plan-box dt {
        font-size: 18px;
        padding: 15px 0;
    }

    .sec03-merit03 .merit-detail {
        display: block;
    }
    .sec03-merit03 .merit-detail .txt {
        width: 100%;
        margin: 30px 0 0;
    }
    .sec03-merit03 .merit-detail .pic {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
    }

    /* sec04 */
    .step-block {
        width: 100%;
    }
    .step-block li {
        width: 100%;
        display: flex;
        align-items: center;
        margin: 0 0 60px;
        position: relative;
    }
    .step-block li::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: -40px;
        left: 0;
        width: 0px;
        height: 0px;
        margin: auto;
        border-style: solid;
        border-color: #9D0200 transparent transparent transparent;
        border-width: 20px 15px 0 15px;
    }

    .step-block li .step-no {
        flex-basis: 12%;
        border-right: 1px solid #9D0200;
        padding: 0 15px 0 0;
    }
    .step-block li .step-detail {
        flex-basis: 88%;
        padding-left: 60px;
        position: relative;
    }
    .step-block li .step-detail::before {
        content: "";
        width: 35px;
        height: 35px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 15px;
        margin: auto;
    }
    .step-block li .step-detail .step-txt {
        display: block;
    }
    .step-block li .step-detail .step-txt p {
        font-size: 18px;
    }
    .step-block li .step-detail .step-txt span {
        font-size: 13px;
    }
    .step-block li .step-detail .step-icon {
        display: flex;
        margin: 10px 0 0;
    }
    .step-block li .step-detail .step-icon span {
        font-size: 13px;
        line-height: 25px;
        padding: 0 10px;
        margin-right: 10px;
    }
    .step-block li .step-detail .step-icon span:last-child {
        margin-right: 0;
    }
}

/* ページ内リンク調整 */
#sec02,#sec03,#sec04,#inquiry {
    display: block;
    margin-top: -90px;
    padding-top: 90px;
}
@media screen and (max-width: 768px) {
    #sec02,#sec03,#sec04,#inquiry {
        display: block;
        margin-top: 0;
        padding-top: 0;
    }
}

/*--------------------------------------------------------------
  form
--------------------------------------------------------------*/
.form-block {
    width: 100%;
    max-width: 760px;
    padding: 0 20px;
    margin: 0 auto;
}
.form-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0 0 30px;
}
.form-row dt {
    display: flex;
    align-items: center;
    width: 35%;
}
.form-row dt label {
    font-size: 20px;
    font-weight: 700;
    padding-right: 10px;
}
.form-row dt .tag {
    display: block;
    font-size: 13px;
    color: #fff;
    text-align: center;
    line-height: 22px;
    padding: 0 8px;
    border-radius: 5px;
}
.form-row dt .tag-required { background: #9D0200; }
.form-row dt .tag-optional { background: #C6C6C6; }

.form-row dd {
    width: 60%;
}
.form-control {
    display: block;
    width: 100%;
    padding: 10px 10px;
    font-size: 16px;
    line-height: 1.25;
    color: #000033;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: none;
    overflow: hidden;
    border-radius: 10px;
}
::placeholder{
    color:#DDDDDD;
}
.text-danger {
    display: block;
    font-size: 14px;
    color: #9D0200;
    margin: 10px 0 0;
}

.form-check {
    text-align: center;
    font-size: 16px;
}
textarea {
    height: 140px;
    overflow: auto;
}

@media screen and (max-width: 768px) {
    .form-block {
        width: 100%;
        max-width: 100%;
        padding: 0 0;
    }
    .form-row {
        display: block;
        margin: 0 0 30px;
    }
    .form-row dt {
        display: flex;
        align-items: center;
        width: 100%;
        margin: 0 0 10px;
    }
    .form-row dt label {
        font-size: 18px;
        padding-right: 10px;
    }
    .form-row dd {
        width: 100%;
    }

}

/*--------------------------------------------------------------
  lower
--------------------------------------------------------------*/
/* 会社概要 */
.outline h3 {
    text-align: center;
    font-size: 20px;
    margin: 0 0 40px;
}
.outline-block {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.outline-detail {
    margin: 0 0 30px;
}
.outline-detail:last-child {
    margin: 0;
}
.outline-detail h4 {
    font-size: 18px;
    text-align: center;
    border-top: 1px solid #EFEFEF;
    border-bottom: 1px solid #EFEFEF;
    padding: 15px 0;
    margin: 0 0 20px;
}
.outline-detail dl {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
}
.outline-detail dl dt {
    width: 20%;
}
.outline-detail dl dd {
    width: 78%;
}


/*--------------------------------------------------------------
  footer
--------------------------------------------------------------*/
footer {
    background: #000033;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}
footer a {
    color: #fff;
}
footer .footer-nav {
    padding: 20px 0;
}
footer .footer-nav li {
    padding: 10px 0;
}
footer .footer-nav li a {
    text-decoration: underline;
}
footer .footer-nav li a:hover {
    text-decoration: none;
}