@charset "UTF-8";

/* ---------------------------------------------------------
	CSS Document load
--------------------------------------------------------- */

#load {
    width: 100%;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.wf-active #load {
    display: none;
}

.mt-1 { margin-top: 1em; }
.mt-2 { margin-top: 2em; }
.mt-3 { margin-top: 3em; }
.mt-4 { margin-top: 4em; }
.mt-5 { margin-top: 5em; }

.mb-1 { margin-bottom: 1em; }
.mb-2 { margin-bottom: 2em; }
.mb-3 { margin-bottom: 3em; }
.mb-4 { margin-bottom: 4em; }
.mb-5 { margin-bottom: 5em; }

/* ---------------------------------------------------------
	CSS Document Common
--------------------------------------------------------- */

html, body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-feature-settings: "palt";
    font-size: 15px;
    letter-spacing: 0.06em;
    line-height: 1.9;
    word-break: normal;
    word-wrap: break-word;
    color: #333;
}
@media screen and (max-width:767px) {
    html, body {
        font-size: 3.1vmin;
    }
    section h2 + p {
        width: 90%;
        margin: 0 auto;
    }
}

* {
    outline: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-collapse: collapse;
    font-style: normal;
    list-style: none;
}

input, textarea, select, button {
    outline: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-feature-settings: "palt";
    font-size: 15px;
    letter-spacing: 0.06em;
    color: #333;
}

::-webkit-input-placeholder {
    color: #d9d8d8;
}

::-moz-placeholder {
    opacity: 1;
    color: #d9d8d8;
}

:-ms-input-placeholder {
    color: #d9d8d8;
}

select::-ms-expand {
    display: none;
}

img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
    border: 0;
}

a {
    position: relative;
    z-index: 0;
    transition: .4s;
}

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

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

.target {
    margin-top: -70px;
    padding-top: 70px;
}

.sp {
    display: none;
}
.pc {
    display: block;
}
@media screen and (max-width:767px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}
.clearfix:after {
    content: '';
    display: block;
    clear: both;
    height: 1px;
    overflow: hidden;
}

.find {
    cursor: pointer;
    transition: .4s;
}

.target {
    margin-top: -100px;
    padding-top: 100px;
}

.lazyloaded {
    opacity: 0;
    animation: lazyload .9s 0s forwards ease;
}

@keyframes lazyload {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.effect {
    transform: translateY(140px);
    opacity: 0;
    transition: all 0.9s ease-out;
}

.effect.effected {
    transform: translateY(0);
    opacity: 1;
}

.hvr:before {
    content: '';
    background: #0054A7;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition-property: transform;
    transition-duration: 0.1s;
    transition-timing-function: ease-out;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.hvr:hover:before {
    transform: scaleX(1);
}

/* ---------------------------------------------------------
	CSS Document header
--------------------------------------------------------- */

#header .h_logo {
    background: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}

#header h1 {
    background: #FFF;
    padding: 20px;
}
#header h1 img {
    height: 70px;
}
@media screen and (max-width:767px) {
    #header .h_logo {
        background: #FFF;
        height: 19vw;
        align-items: center;
        padding: 3vw;
    }

    #header h1 {
        max-height: 15vw;
        max-width: 60vw;
        text-align: left;
        padding: 0;
        display: flex;
        align-items: center;
    }
    #header h1 img {
        height: 100%;
    }
}


/* ---------------------------------------------------------
	CSS Document swicth
--------------------------------------------------------- */

#swicth {
    width: 70px;
    height: 70px;
    background: #FFF;
    position: relative;
    border: #CDD6DD 1px solid;
    border-radius: 50%;
    z-index: 9;
    cursor: pointer;
    transition: .4s;
    right: 20px;
}

#swicth:hover {
    opacity: 0.6;
}

#swicth span {
    width: 32px;
    height: 2px;
    background: #1E78C8;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: all .4s;
}

#swicth span:nth-of-type(1) {
    top: 22px;
}

#swicth span:nth-of-type(2) {
    top: 32px;
}

#swicth span:nth-of-type(3) {
    top: 42px;
}

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

#swicth.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    animation: swicth 0.8s forwards;
    animation-fill-mode: both;
}

@keyframes swicth {
    100% {
        height: 0;
    }
}

#swicth.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
}
@media screen and (max-width:767px) {
    #swicth {
        width: 12vw;
        height: 12vw;
        position: relative;
        top: initial;
        right: initial;
    }
    #swicth span {
        width: 5vw;
        height: 2px;
    }
    #swicth span:nth-of-type(1) {
        top: 3.5vw;
    }

    #swicth span:nth-of-type(2) {
        top: 5.5vw;
    }

    #swicth span:nth-of-type(3) {
        top: 7.5vw;
    }
    #swicth.active span:nth-of-type(1) {
        transform: translateY(2vw) rotate(-45deg);
    }
    #swicth.active span:nth-of-type(3) {
        transform: translateY(-2vw) rotate(45deg);
    }
}
/* ---------------------------------------------------------
	CSS Document navi
--------------------------------------------------------- */

#navi {
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 0;
    transition: .5s;
}

#navi.open {
    right: 0;
    z-index: 8;
}

#navi .overlay {
    width: 518px;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: auto;
    margin-left: auto;
    background: #fff url(../images/h_logo.svg) no-repeat 45px 24px / auto 24px;
}
@media screen and (max-width:767px) {
    #navi .overlay {
        width: 100%;
    }
}

#navi .h_navi {
    padding: 120px 0 25px;
    text-align: left;
}

#navi .h_navi li:not(:last-of-type):after {
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, transparent 0%, transparent 80%, #333 80%, #333 100%, transparent);
    background-size: 4px 1px;
}

#navi .h_navi li a {
    display: flex;
    align-items: center;
    height: 64px;
    padding-left: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    color: #333;
    position: relative;
}

#navi .h_navi li.this a,
#navi .h_navi li a:hover {
    color: #fff;
}

#navi .h_navi li a:after {
    content: '';
    width: 5px;
    height: 5px;
    margin-top: -4px;
    border-top: solid 1px #064FA4;
    border-right: solid 1px #064FA4;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 30px;
    transition: .4s;
}

#navi .h_navi li.this a:before {
    background: #0054A7;
    transform: scaleX(1);
}

#navi .h_navi li.this a:after,
#navi .h_navi li a:hover:after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
}

#navi .h_navi li a .kana {
    display: block;
    font-size: 14px;
}

#navi .h_navi li.h_mini a {
    height: 46px;
    font-size: 16px;
}

#navi .h_navi li.h_mini.this a {
    color: #fff;
}

#navi .h_navi li.h_mini i {
    display: inline-block;
    vertical-align: top;
    content: '';
    width: 10px;
    height: 10px;
    margin-right: 10px;
    border-radius: 100%;
    border: solid 3px #064FA4;
    transition: .4s;
}

#navi .h_navi li.h_mini.this a i,
#navi .h_navi li.h_mini a:hover i {
    border: solid 3px #fff;
}

#navi .h_navi li.h_contact a {
    color: #fff;
}

#navi .h_navi li.h_contact a:before {
    background: #E60000;
}

#navi .h_navi li.h_contact a:after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
}

#navi .h_navi li.h_contact i {
    content: '';
    background: #333;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -2;
}

#navi .h_siaa {
    display: flex;
    justify-content: flex-end;
}

#navi .h_siaa li {
    width: 83px;
    height: 70px;
    margin-right: 30px;
}

/* ---------------------------------------------------------
	CSS Document main
--------------------------------------------------------- */

#mv picture img{
    width: 100%;
}

/* ---------------------------------------------------------
	CSS Document contact
--------------------------------------------------------- */

#contact {
    margin: 0 30px 110px;
    text-align: left;
}

#contact h2 {
    margin-bottom: 30px;
    text-align: left;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.5;
}

#contact h2:before {
    display: block;
    content: '';
    width: 60px;
    height: 2px;
    margin-bottom: 40px;
    background: #76BFF1;
}

#contact p {
    margin-bottom: 4vw;
}

#contact em {
    color: #CE0101;
}

#contact .flex {
    display: flex;
    justify-content: space-between;
}

#contact .flex dl {
    display: flex;
    width: 47%;
    margin-bottom: 20px;
}

#contact dt {
    font-weight: 500;
    line-height: 50px;
}

#contact .flex dt {
    width: 6em;
    margin-bottom: 0;
}

#contact dd {
    flex: 1;
}

#contact small {
    font-size: 12px;
}

#contact input[type='tel'],
#contact input[type='email'],
#contact input[type='text'],
#contact textarea {
    width: 100%;
    padding: 0 0.8em;
    border-radius: 0;
    border: 0;
    background: #F2F2F2;
    box-shadow: none;
    letter-spacing: 0.05em;
}

#contact input[type='tel'],
#contact input[type='email'],
#contact input[type='text']{
    height: 50px;
}

#contact textarea {
    vertical-align: top;
    padding: 0.8em;
}

#contact .submit {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

#contact .submit li {
    width: 48%;
}

#contact .submit li.confirm {
    width: 260px;
    margin-left: auto;
}

#contact .submit li.send {
    margin-left: 4%;
}

#contact .submit button {
    vertical-align: top;
    width: 100%;
    height: 60px;
    border-radius: 0;
    background: #0054A7;
    text-align: left;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #fff;
    position: relative;
    z-index: 0;
    cursor: pointer;
    transition: .4s;
}

#contact .submit button:before {
    background: #E60000;
}

#contact .submit .confirm button:after {
    content: '';
    width: 0.4em;
    height: 0.4em;
    margin-top: -0.2em;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 1em;
}

#contact .submit .confirm button {
    padding-left: 1.5em;
}

#contact .submit button i {
    content: '';
    background: #0054A7;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -2;
}

#contact .submit .back button {
    background: #333;
}

/* ---------------------------------------------------------
	CSS Document confirm
--------------------------------------------------------- */

#confirm {
    margin-bottom: 110px;
    padding: 0 50px;
    text-align: left;
}

#confirm h2 {
    margin-bottom: 30px;
    text-align: left;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.5;
}

#confirm h2:before {
    display: block;
    content: '';
    width: 60px;
    height: 2px;
    margin-bottom: 40px;
    background: #76BFF1;
}

#confirm p {
    margin-bottom: 30px;
}

#confirm em {
    color: #CE0101;
}

#confirm .flex {
    display: flex;
    justify-content: space-between;
}

#confirm dl {
    margin-bottom: 20px;
}

#confirm .flex dl {
    display: flex;
    width: 47%;
    line-height: 50px;
}

#confirm dt {
    margin-bottom: 10px;
    font-weight: 500;
}

#confirm .flex dt {
    width: 6em;
    margin-bottom: 0;
}

#confirm .flex dd {
    flex: 1;
    padding-left: 1em;
    border-left: solid 1px #eee;
}

#confirm .submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

#confirm .submit li {
    margin-left: 15px;
}

#confirm .submit button {
    vertical-align: top;
    width: 100%;
    height: 60px;
    border-radius: 0;
    background: transparent;
    text-align: left;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #fff;
    position: relative;
    z-index: 0;
    cursor: pointer;
    transition: .4s;
}

#confirm .submit button:before {
    background: #E60000;
}

#confirm .submit button i {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -2;
}

#confirm .submit .back button {
    width: 140px;
    padding-right: 1.5em;
    text-align: right;
}

#confirm .submit .back button i {
    background: #848484;
}

#confirm .submit .back button:after {
    content: '';
    width: 0.4em;
    height: 0.4em;
    margin-top: -0.2em;
    border-left: solid 2px #fff;
    border-bottom: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 1em;
}

#confirm .submit .send button {
    width: 260px;
    padding-left: 1.5em;
}

#confirm .submit .send button i {
    background: #0054A7;
}

#confirm .submit .send button:after {
    content: '';
    width: 0.4em;
    height: 0.4em;
    margin-top: -0.2em;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 1em;
}

/* ---------------------------------------------------------
	CSS Document f_estimate
--------------------------------------------------------- */

#f_estimate a {
    display: block;
    padding: 45px 0 45px 60px;
    text-decoration: none;
    text-align: left;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    position: relative;
}

#f_estimate a:before {
    background: #E60000;
}

#f_estimate a:after {
    content: '';
    width: 0.4em;
    height: 0.4em;
    margin-left: 0.2em;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 46%;
    right: 30px;
}

#f_estimate i {
    content: '';
    background: #0054A7;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -2;
}

#f_estimate .en {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.08em;
    position: relative;
}

#f_estimate .en:before {
    content: '';
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 45%;
    left: -35px;
}

/* ---------------------------------------------------------
	CSS Document footer
--------------------------------------------------------- */

#footerArea {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    border-top: #707070 1px solid;
    margin-top: 150px;
}

#footerArea .footerNav {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}
#footerArea .footerNav li {
    padding: 0 2em;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    line-height: 1.4;
}
#footerArea .footerNav li+ li {
    border-left: 0;
    border-right: 1px solid #000;
}

#footerArea .footerLogo {
    margin-bottom: 20px;
}

#footerArea .footerLogo img {
    height: 9.43396226415094vw;
    max-width: 300px;
}

#footerArea #footerCopy {
    font-size: 12px;
    line-height: 1;
    margin: 40px 0 30px 0;
}
@media screen and (max-width:767px) {
    #footerArea {
        margin-top: 10vw;
        padding-top: 10vw;
    }
    #footerArea .footerNav {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0.5em;
    }
    #footerArea .footerNav li {
        width: 100%;
        text-align: center;
    }
}
/* ---------------------------------------------------------
	CSS Document pagetop
--------------------------------------------------------- */

#pagetop {
    display: none;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 100%;
    background: #0054A7;
    font-size: 26px;
    line-height: 50px;
    color: #fff;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9;
    cursor: pointer;
    transition: .4s;
}

#pagetop:hover {
    opacity: 0.6;
}

/* ---------------------------------------------------------
	CSS Document Error Message
--------------------------------------------------------- */
.error {
    background: #f9f9f9;
    margin-bottom: 2em;
    color: #f00;
    padding:1.5em;
}

.morilink {
    padding: 2em;
    background: #f0f0f0;
    font-size: 0.9rem;
}
.bg-grad {
    background-image: linear-gradient(90deg, rgba(217, 245, 255, 1), rgba(180, 220, 255, 1) 100%, rgba(177, 233, 255, 1) 50%);
}
.box-round {
    border-radius: 1em;
}

section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-top: 1em;
    margin-bottom: 1em;
}
section h2 span {
    color: #1E78C8;
}
section h2 span.en {
    font-family: Montserrat;
    font-size: 18px;
    display: block;
}
@media screen and (max-width:767px) {
    section h2 {
        text-align: center;
        font-size: 5.8vmin;
    }
    section h2 span.en {
        font-size: 4vmin;
    }
}
.heading-inner {
    margin-top: 40px;
    background: linear-gradient(90deg, rgba(217, 245, 255, 1) 0%, rgba(217, 245, 255, 1) 50%, #FFF 50%, #FFF 100%);
}
.heading-inner .title {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto 50px auto;
}
.heading-inner .title h2 {
    width: 80%;
    text-align: left;
    height: 300px;
    padding-top: 1em;
}
@media screen and (max-width:1080px) {
    .heading-inner .title {
        width: 90%;
    }
}
@media screen and (max-width:767px) {
    .heading-inner .title {
        width: 100%;
        margin-bottom: 5em;
    }
    .heading-inner .title h2 {
        padding: 1em 5% 0 5%;
        width: 100%;
        height: 10em;
    }
    .heading-inner .title h2.box-round {
        border-radius: 0;
    }
}

#bread {
    max-width: 1080px;
    width: 100%;
    margin: 150px auto 0 auto;
    text-align: left;
}
#bread ol li {
    display: inline-block;
}
#bread ol li a {
    color: #CDD6DD;
    text-decoration: none;
}

#bread ol li::before {
    content: "/";
    margin-left: .5em;
    margin-right: .5em;
}
#bread ol li:first-child::before {
    content: none;
}
@media screen and (max-width:1080px) {
    #bread {
        width: 90%;
    }
}

main {
    max-width: 1280px;
    text-align: left;
    margin: -180px auto 0 auto;
}
main section {
    max-width: 1080px;
    width: 100%;
    text-align: left;
    margin: 0 auto;
}
body.body-top main {
    max-width: 100%;
    margin-top: 0;
}
@media screen and (max-width:1080px) {
    main section {
        width: 90%;
        margin-top: -12em;
    }
    body.body-top main {
        width: 100%;
    }
}


/* お問い合わせ */
section.contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 120px;
    max-width: 1080px;
    margin: 100px auto 0 auto;
}
section.contact h2 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
}
section.contact .title p {
    font-size: 16px;
}
section.contact .buttons {
    display: block;
    width: 55%;
    position: relative;
    padding-left: 80px;
}
section.contact .buttons:before {
    content: '';
    width: 1px;
    height: 100%;
    background-color:rgba(255,255,255,0.6);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
section.contact .buttons ul {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}
section.contact .buttons ul li {
    display: block;
    height: 80px;
    min-height: 80px;
}
section.contact .buttons ul li a {
    display: flex;
    align-items: center;
    height: 100%;
    border-radius: 10px;
    background-color:rgba(255,255,255,0.6);
    color: #1E78C8;
    text-decoration: none;
    position: relative;
    line-height: 1;
    padding-left: 100px;
    padding-right: 100px;
    min-width: 360px;
    max-width: 100%;
    font-size: 18px;
    font-weight: 500;
}
section.contact .buttons ul li a:before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background-image: url(/assets/img/common/ico_home.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}
section.contact .buttons ul li a:before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background-image: url(/assets/img/common/ico_corp.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}
section.contact .buttons ul li a:after {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(/assets/img/common/ico_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.overlay section.contact {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    width: 90%;
    margin: 4em auto 0 auto;
}
.overlay section.contact .title {
    width: 100%;
}
.overlay section.contact .title p {
    width: 100%;
}
.overlay section.contact h2 {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}
.overlay section.contact .buttons {
    display: block;
    width: 100%;
    padding-left: 0;
    border-top: none;
    padding-top: 0;
    margin-top: 20px;
}
.overlay section.contact .buttons ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}
.overlay section.contact .buttons ul li {
    display: block;
    width: 100%;
    height: 60px;
    min-height: 4em;
}
.overlay section.contact .buttons ul li a {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    padding-left: 80px;
}
.overlay section.contact .buttons ul li a:before {
    width: 40px;
    height: 40px;
    left: 20px;
}
.overlay section.contact .buttons ul li a:after {
    width: 35px;
    height: 35px;
}
.overlay section.contact .buttons:before {
    content: none;
}

@media screen and (max-width:767px) {
    section.contact {
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        padding: 5vw;
        width: 90%;
        margin: 10em auto 0 auto;
    }
    .overlay section.contact {
        width: 90%;
        margin: 10vw auto 0 auto;
    }
    section.contact .title {
        width: 100%;
    }
    section.contact .title p {
        width: 100%;
    }
    section.contact h2 {
        text-align: center;
        margin-bottom: 5vw;
        width: 100%;
    }
    section.contact .buttons {
        display: block;
        width: 100%;
        padding-left: 0;
        border-top: rgba(255,255,255,0.6) 1px solid;
        padding-top: 5vw;
        margin-top: 5vw;
    }
    section.contact .buttons ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        row-gap: 5vw;
    }
    section.contact .buttons ul li {
        display: block;
        width: 100%;
        height: 17vw;
        min-height: 4em;
    }
    section.contact .buttons ul li a {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        font-size: 4vmin;
        padding-left: 22vw;
    }
    section.contact .buttons ul li a:before {
        width: 13vw;
        height: 13vw;
        left: 5vw;
    }
    section.contact .buttons ul li a:after {
        width: 8vw;
        height: 8vw;
    }
    section.contact .buttons:before {
        content: none;
    }
}


a.button-light {
    width: auto;
    border: #999 1px solid;
    background: #F0F0F0;
    border-radius: 9999px;
    padding: 1.3em 4em;
    line-height: 1;
    display: inline-block;
    color: #999;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}