@charset "utf-8";
html{
    font-size: 62.5%;
}

body{
    min-width: 1024px;
    min-height: 100%;
    font-family: 'Montserrat', 'Noto Sans JP', 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo, sans-serif;
    color: #272727;
    font-size: 1.6em;
    line-height: 2;
}

main{
    display: block;
}
.sp, .sp-mini{
    display: none;
}

#contents{
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}
ul{
    padding: 0;
}
a{
    color: #272727;
    text-decoration: none;
}
.section-title-box{
    color: #0a272f;
    text-align: center;
}
.section-title-box .sub-title{
    color: #37a9cc;
    font-size: 1.8rem;
}
.section-title-en{
    font-size: 5.2rem;
    font-weight: 700;
    line-height: 1;
}
h2{
    font-weight: 500;
    line-height: 1;
    text-align: center;
}

header{
    width: 100%;
    padding-top: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 150ms ease 0s;
}
header.is-fixed{
    background-color: rgba(255, 255, 255, 0.8);
}

nav{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 90.39%;
    min-width: 920px;
    height: 62px;
    margin: 0 auto;
}
.nav-list{
    display: flex;
    flex-wrap: nowrap;
    width: 467px;
    height: 100%;
    list-style-type: none;
    font-size: 1.8rem;
    font-weight: 500;
}
.nav-logo{
    width: 280px;
    margin-right: auto;
    position: relative;
    top: -6px;
}
.nav-item{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    max-width: 140px;
    text-align: center;
    font-weight: 500;
}
.nav-item a{
    padding: 6px 12px;
    position: relative;
    line-height: 1;
    /* transition: all 150ms ease 0s; */
    overflow: hidden;
}

.nav-item a:hover{
    color: #37a9cc;
}

@media (min-width: 769px){
    .nav-item a{
        text-indent: 300px;
    }
    .nav-item a::before,
    .nav-item a::after{
        display: block;
        width: 120%;
        height: 100%;
        padding: 6px 12px;
        position: absolute;
        top: 0;
        left: -10%;
        text-indent: 0;
        transition: all 150ms ease-in 0s;
    }
    .nav-item a::before{
        content: attr(data-nav-en);
        opacity: 1;
        transition-delay: 50ms;
    }
    .nav-item a::after{
        content: attr(data-nav-ja);
        opacity: 0;
        transition-delay: -50ms;
    }
    
    .nav-item a:hover::before{
        opacity: 0;
        transition-delay: -50ms;
    }
    .nav-item a:hover::after{
        opacity: 1;
        transition-delay: 100ms;
    }
}



footer{
    padding: 60px 0 70px;
    position: relative;
}
footer::before{
    content: "";
    display: block;
    width: 100%;
    height: 410px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -150;
    background: url(../images/footer_bg.jpg) no-repeat center / cover;
    transition: opacity 200ms ease 300ms;
}
footer.is-waiting::before{
    opacity: 0;
}
footer.is-iPad::before{
    position: absolute;
}
.footer-inner{
    display: flex;
    flex-wrap: nowrap;
    width: 86.562%;
    margin: 0 auto;
    padding: 56px 0 64px;
    background-color: rgba(255, 255, 255, 0.92);
}

.footer-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 158px;
}
.footer-box.contact-title{
    width: 45.126%;
    border-right: 1px solid #000;
}
.footer-box.contact-title .sub-title{
    margin-bottom: 23px;
}

.footer-box.contact-area{
    width: 54.874%;
}

.footer-tel,
.contact-tel .tel-box{
    display: inline-block;
    margin-bottom: 25px;
    color: #0a272f;
    font-size: 4.6rem;
    font-family: 'Noto Sans JP';
    font-weight: 900;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}
.footer-tel span,
.contact-tel .tel-box span{
    display: inline-block;
    margin-right: 1em;
    font-size: 2.5rem;
    font-family: 'Montserrat';
}
.footer-tel-txt{
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 8px;
}
.footer-contact-link{
    width: 66.94%;
    min-width: 360px;
    margin: 0 auto;
    
}
.footer-contact-link a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 64px;
    color: #37a9cc;
    font-size: 1.7rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    border: 2px solid #37a9cc;
}
.footer-contact-link a:hover{
    color: #FFF;
    background-color: #37a9cc;
}
.copyright-area{
    display: block;
    width: 393px;
    padding: 5px 0;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 5;
    text-align: center;
    background-color: #fff;
    border-radius: 20px 0 0 0;
}
/* 汎用アニメーション系 */
.js-scroll-move{
    transition: all 400ms ease 0s;
}
.js-scroll-move.is-waiting{
    opacity: 0;
}
.js-scroll-move.is-waiting.to-top{
    transform: translateY(20px);
}
.js-scroll-move.is-waiting.to-right{
    transform: translateX(-20px);
}
.js-scroll-move.is-waiting.to-left{
    transform: translateX(20px);
}

@media (min-width: 769px){
    .footer-tel a{
        pointer-events: none;
    }
}

@media (max-width: 768px){
    body{
        min-width: 100%;
    }
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    nav{
        width: 100%;
        min-width: 0%;
    }
    .nav-logo{
        width: 68%;
        max-width: 280px;
        height: 52px;
        position: absolute;
        top: 14px;
        left: 5vw;
        z-index: 300;
    }
    .nav-logo img{
        width: 100%;
        height: auto;
    } 
    .nav-list{
        display: none;
        width: 100%;
        min-width: 100%;
    }
    .nav-btn{
        width: 60px;
        height: 60px;
        position: absolute;
        top: 14px;
        right: 5vw;
        z-index: 300;
        transition: all 300ms ease 0s;
    }
    .nav-btn:hover{
        cursor: pointer;
    }
    .nav-btn span{
        display: inline-block;
        width: 90%;
        height: 0;
        border-bottom: 2px solid #272727;
        position: absolute;
        left: 5%;
        transition: all 150ms ease 0s;
    }
    .nav-btn span:first-of-type{
        top: 25%;
    }
    .nav-btn span:nth-of-type(2){
        top: 48%;
    }
    .nav-btn span:last-of-type{
        bottom: 25%;
    }
    header.is-open .nav-btn{
        transform: rotate(-90deg);
    }
    header.is-open .nav-btn span:first-of-type{
        top: 50%;
        transform: rotate(45deg);
    }
    header.is-open .nav-btn span:nth-of-type(2){
        opacity: 0;
    }
    header.is-open .nav-btn span:last-of-type{
        bottom: auto;
        top: 50%;
        transform: rotate(-45deg);
    }
    
    header.is-open{
        padding-top: 0;
    }
    header.is-open nav {
        height: 100vh;
    }
    header.is-open .nav-list{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 20vh;
        position: relative;
        z-index: 5;
        background-color: rgba(255, 255, 255, 0.8);
    }
    header.is-open .nav-item{
        width: 80%;
        max-width: 100%;
        max-width: inherit;
        margin-bottom: 5vh;
    }
    
    header.is-open .nav-item a{
        width: 100%;
        padding: 16px;
    }

    .section-title-en{
        font-size: 4rem;
    }

    footer{
        padding-bottom: 0;
    }
    footer::before{
        height: 580px;
    }
    .footer-inner{
        flex-direction: column;
        margin-bottom: 30px;
        padding: 36px 0 44px;
    }
    .footer-box.contact-title,
    .footer-box.contact-area{
        width: 100%;
    }
    .footer-box.contact-title{
        width: 80%;
        margin: 0 auto 20px;
        border-right: none;
        border-bottom: 1px solid #0a272f;
    }
    .footer-tel,
    .contact-tel .tel-box{
        font-size: 3rem;
    }
    .footer-tel span,
    .contact-tel .tel-box span{
        margin-right: 0.5em;
    }
	.footer-tel-txt{
        margin-top: 5px;
    }
    .footer-contact-link{
        min-width: 0%;
        min-width: inherit;
    }
    .copyright-area{
        width: 90%;
        max-width: 393px;
        margin-left: auto;
        position: relative;
    }
}
@media (max-width: 420px){
    .sp-mini{
        display: block;
    }
    .nav-logo{
        top: 4vmin;
    }
    .copyright-area{
        width: 240px;
        padding-right: 6%;
        line-height: 1.25;
        text-align: right;
    }
}

/****************************************************

                    トップページ

 ****************************************************/
 .mainView-section{
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
     height: 100vh;
     min-height: 600px;
 }
 .mainView-copy{
     width: 45.39%;
     max-width: 581px;
     height: 50%;
     margin-right: auto;
     margin-left: 10.156%;
     transition: all 1000ms ease 100ms;
 }
 .mainView-copy.is-waiting{
    opacity: 0;
    transform: translateX(-5%);
 }

.message-section{
    padding: 100px 0 167px;
    background-color: #fff;
}
.message-inner{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 63.812%;
    min-width: 820px;
    margin: 0 auto;
}
.message-section .section-title-box .sub-title{
    margin-bottom: 20px;
    font-size: 1.9rem;
    font-weight: 500;
}
.message-section h2{
    color: #0a272f;
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 0 auto 80px;
}
.message-txt-box{
    margin: 0 auto 74px;
    font-size: 1.7rem;
    line-height: 2;
    text-align: center;
}
.message-txt-box p:not(:last-of-type){
    margin-bottom: 20px;
}
.massage-name-box{
    margin-left: auto;
    text-align: right;
}
.massage-name-box > p {
    margin-bottom: 20px;
}
.message-ceo-name {
    font-size: 2.6rem;
}
.message-ceo-name img{
    display: inline-block;
}
.works-section{
    padding: 125px 0 175px;
    position: relative;
}
.works-section::after{
    content: "";
    display: block;
    width: 100%;
    height: calc(56.289% + 4px);
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 0;
    background-color: #fff;
}
.works-section .section-title-box,
.works-inner{
    position: relative;
    z-index: 5;
}
.works-section .section-title-box{
    margin-top: -195px;
    margin-bottom: 105px;
}
.works-section .section-title-box .sub-title{
    margin-bottom: 27px;
}
.works-inner{
    width: 85.078%;
    max-width: 1089px;
    margin: 0 auto;
}
.works-list{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    list-style: none;
}
.works-item{
    width: 29.411%;
    max-width: 320px;
    position: relative;
    z-index: 5;
}
.works-item::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 20px;
    right: -20px;
    z-index: -1;
    background-color: #fff;
}
.works-img-box{
    padding-top: 125%;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.works-img-box .works-img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.works-item .works-title-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 70px;
    margin-bottom: 20px;
}
.works-item h3{
    color: #0a272f;
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1.5;
    white-space: nowrap;
    position: relative;
}
.works-item h3::after{
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    position: absolute;
    bottom: -12px;
    left: 0;
    background-color: #37a9cc;
}
.works-list li:nth-of-type(odd) .works-txt{
    width: calc(100% + 1em);
}

.about-visual{
    width: 87.812%;
    margin-bottom: -13.125vw;
    padding-top: 32.473%;
    position: relative;
    z-index: 5;
    background: url(../images/about_img01.jpg) no-repeat center / 100%;
}
.about-section{
    padding-bottom: 38px;
    background-color: #fff;
    
}
.about-inner{
    width: 81.562%;
    padding-top: calc(13.125vw + 119px);
    padding-left: 44px;
    padding-bottom: 104px;
    position: relative;
    left: 18.438%;
    background-color: #f2fcfe;
}
.about-section .section-title-box {
    display: inline-block;
    margin-bottom: 67px;
    position: relative;
    left: -64px;
}
.about-section .section-title-box .sub-title{
    margin-bottom: 20px;
}

.about-table{
    width: 54.597%;
    min-width: 473px;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo, sans-serif;
    font-size: 1.8rem;
    border-collapse: collapse;
}

.about-table th,
.about-table td{
    padding-top: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}
.about-table th{
    width: 32.413%;
    text-align: center;
    vertical-align: top;
    font-weight: 500;
}
.about-table td{
    padding-left: 20px;
    padding-right: 8px;
}
.about-bg{
    width: 31.357%;
    max-width: 400px;
    padding-top: 65.583%;
    position: absolute;
    top: 30%;
    right: 5.736%;
}
.about-bg img{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px){
    .mainView-section{
        height: 100vmax;
        min-height: 0%;
        min-height: inherit;
    }
    .mainView-copy{
        width: 70%;
        max-width: 366px;
        margin-left: 5%;
    }
    .mainView-copy span{
        margin-top: -80px;
    }
    .message-inner{
        width: 88%;
        min-width: 0%;
        min-width: inherit;
    }
    .message-section h2{
        font-size: 3rem;
        line-height: 1.25;
    }

    .works-section{
        padding-bottom: 100px;
    }
    .works-section::after{
        height: 10%;
    }
    .works-inner{
        width: 80%;
    }
    .works-list{
        flex-direction: column;
        align-items: center;
    }
    .works-item{
        width: 100%;
    }
    .works-list li:not(:last-of-type){
        margin-bottom: 60px;
    }
    .works-item::after {
        content: "";
        display: block;
        width: calc(100% + 20px);
        height: 100%;
        position: absolute;
        top: 40px;
        right: 0;
        z-index: -1;
        background-color: #fff;
    }
    .works-list li:nth-of-type(odd) .works-txt{
        width: 100%;
    }

    .about-visual{
        padding-top: 42.5%;
        background-size: cover;
    }
    .about-inner{
        width: 90%;
        left: 10%;
    }
    .about-table{
        width: 94%;
        min-width: 0%;
        font-size: 1.5rem;
    }
    .about-table th, .about-table td{
        display: block;
        padding-top: 14px;
        padding-bottom: 13px;
    }
    .about-table th{
        width: 100%;
        padding-bottom: 0;
        text-align: left;
        border-bottom: none;
    }
    .about-table td{
        padding-top: 6px;
        padding-left: 15px;
        padding-right: 2px;
    }

}
@media (max-width: 420px){
    .mainView-copy{
        width: 74%;
    }
}

/***************************************
 *
 *            お問い合わせページ
 *
 ***************************************/
.contact-mv{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 411px;
}
.contact-mv h1{
    min-height: 0%;
    position: relative;
}
.contact-mv h1::before{
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    position: absolute;
    bottom: -20px;
    left: calc((100% - 80px) / 2);
    background-color: #0A272F;
}

 .contact-contents{
     position: relative;
 }
 .contact-contents::before{
     content: "";
     display: block;
     width: 820px;
     height: 100%;
     position: absolute;
     top: 0;
     left: calc((100% - 820px) / 2);
     z-index: -1;
     background-color: #edfbfe;
 }
 .contact-contents h2{
     width: 37.734%;

     padding-right: 6.557%;
     padding-bottom: 12px;
     position: relative;
     font-size: 2rem;
     text-align: right;
     font-weight: 700;
     border-bottom: 3px solid #37a9cc;
 }


.contact-mv{
    margin-bottom: 132px;
}

 .contact-inner{
     width: 560px;
     margin: 0 auto;
 }

 .contact-tel{
     padding: 70px 0 120px;
     margin-bottom: 105px;
     text-align: center;
 }
 .contact-tel h2{
     margin-bottom: 77px;
 }
 .contact-tel .tel-box span{
     position: relative;
     bottom: 8px;
 }
 .contact-tel .contact-reception{
     font-size: 2rem;
     font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo, sans-serif;
     font-weight: 500;
 }

 .contact-form{
     padding: 67px 0 130px;
 }
 .contact-form h2{
     margin-bottom: 80px;
 }
 .contact-form input,
 .contact-form textarea{
     -webkit-appearance: none;
 }
 .contact-form input[type="text"],
 .contact-form input[type="email"],
 .contact-form input[type="tel"],
  textarea{
      -webkit-appearance: none;
     width: 100%!important;
     padding: 6px;
     font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo, sans-serif;
     border-radius: 0;
     border: 1px solid #37a9cc;
 }
 .contact-form .form-require{
    display: inline-block;
    margin-left: 8px;
    padding: 0 8px;
    font-weight: 400;
    color: #fff;
    font-size: 0.8em;
    text-align: center;
    line-height: 1.75;
    border-radius: 4px;
    background-color: #37a9cc;
 }

.contact #mailformpro .mailform dt{
    padding-bottom: 0;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
}
.contact #mailformpro .mailform dd{
    padding-top: 4px;
    padding-bottom: 30px;
}
.contact #mailformpro .mailform dd:last-of-type{
    margin-bottom: 90px;
    padding-bottom: 0;
}
.contact .contact-radio-box{
    padding-left: 14px;
    margin-bottom: 14px;
}
.contact .contact-radio-box .contact-radio-btn{
    position: relative;
}
.contact .contact-radio-box .contact-radio-btn::before{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    position: relative;
    top: 3px;
    background-color: #fff;
    border: 1px solid #272727;
    border-radius: 50%;
}
.contact .contact-radio-box label:hover{
    cursor: pointer;
}
.contact .contact-radio-box .contact-radio-btn::after{
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 3px;
    left: 5px;
    z-index: 10;
    background-color: #37a9cc;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 150ms ease 0s;
}
.contact .contact-radio-item input[type="radio"]:checked ~ .contact-radio-btn::after{
    transform: scale(1);
}
.contact #mailformpro .contact-radio-item input[type="radio"]{
    width: 0!important;
    height: 0!important;
    border: none;
}
.contact .contact-radio-item{
    margin-bottom: 6px;
}

.contact button[type="submit"]{
    width: 40%;
    min-width: 240px;
    padding: 16px 0;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    background-color: #37a9cc;
    border: 2px solid #37a9cc;
    border-radius: 6px;
}

div#mfp_overlay_inner h4{
    color: #37a9cc;
    text-align: center;
}
table#mfp_confirm_table{
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo, sans-serif;
}
.contact div.mfp_buttons{
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact div.mfp_buttons button:hover{
    cursor: pointer;
}

.contact #mfp_overlay_background{
    height: 110vh!important;
}
table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td{
    border-top: solid 1px #37a9cc;
}
table#mfp_confirm_table tr.mfp_colored{
    background-color: #fff;
}

.contact div.mfp_buttons button#mfp_button_send{
    order: 2;
    width: 25%;
    min-width: 150px;
    margin-left: 20px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background-color: #37a9cc;
    border: 2px solid #37a9cc;
}
.contact div.mfp_buttons button#mfp_button_cancel{
    color: #616161;
    text-align: center;
    background-color: #fff;
    border: 2px solid #6a6a6a;
}

 body.contact footer{
     padding: 0;
 }
body.contact footer::before{
    display: none;
}
/* thanksページ */
.contact.thanks main{
    padding-bottom: 120px;
}
.contact.thanks .contact-contents{
    padding: 60px 0 100px;
}
.contact.thanks h2{
    margin-bottom: 77px;
}
.contact.thanks .contact-inner{
    padding: 0 20px;
}
.contact.thanks .contact-inner p:last-of-type{
    margin-bottom: 80px;
}
.contact.thanks .contact-contents::before{
    height: 100vh;
}
.contact.thanks .thanks_to_top{
    display: block;
    width: 30%;
    min-width: 240px;
    margin: 0 auto;
    padding: 16px 24px;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    background-color: #37a9cc;
    border: 2px solid #37a9cc;
    border-radius: 6px;
}

@media (max-width: 768px){
    .contact-mv{
        height: 280px;
    }
    .contact-mv h1{
        width: 30%;
        max-width: 222px;
    }
    .contact-mv h1 img{
        width: 100%;
        height: auto;
    }
    .contact-contents::before{
        width: 90%;
        left: 5%;
    }
    .contact-contents h2{
        width: 47%;
        min-width: 260px;
        padding-right: 2%;
    }
    .contact-inner{
        width: 88%;
    }
    .contact-tel .tel-box span{
        bottom: 0;
    }
    .contact-tel .contact-reception{
        font-size: 1.8rem;
    }
    .contact-form{
        padding-bottom: 100px;
    }
    .contact #mailformpro .mailform dt,
    .contact #mailformpro .mailform dds{
        font-size: 1.6rem;
    }
    .contact .contact-radio-box{
        margin-bottom: 0;
    }
    .contact #mailformpro .contact-radio-box label{
        display: flex;
        flex-wrap: wrap;
    }
    .contact .contact-radio-box .contact-radio-btn::before{
        top: 3px;
    }
    .contact .contact-radio-box .contact-radio-btn::after{
        top: 8px;
    }
    .contact .contact-radio-item{
        margin-bottom: 12px;
        line-height: 1.65;
    }
    .contact #mailformpro .mailform dd:last-of-type{
        margin-bottom: 60px;
    }
    .contact #mailformpro .mailform textarea{
        height: 200px;
    }
    div#mfp_overlay_background{
        height: 100vh!important;
    }
    .contact button[type="submit"],
    .contact.thanks .thanks_to_top{
        font-size: 2.4rem;
    }
    .contact table#mfp_confirm_table tr th,
    .contact table#mfp_confirm_table tr td{
        display: block;
        width: 100%;
    }
    .contact table#mfp_confirm_table tr th{
        padding-bottom: 0;
    }
    .contact table#mfp_confirm_table tr td{
        border-top: none;
        padding: 0 0 6px 1.5em;
    }
    .contact .copyright-area{
        position: absolute;
    }
}

/* Safariで100vh表示できるようにする */
@supports (-webkit-touch-callout: none) {
    body.contact {
      height: -webkit-fill-available;
    }
  }