@charset "utf-8";

*{
    margin: 0;
    padding: 0;
}

html{
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
    height: 100%;
}

body{
    font-family: 'Noto Sans JP', sans-serif;
    height: 100%;
}

.splitBox{
	position:absolute;
	height:100%;
}

.leftBox{
    width:70%;
    height: 100%;
	left:0;
    overflow-y:scroll;
}

.rightBox{
    width:30%;
    height: 100%;
	right:0;
    background-color: #2D9CFB;
    overflow: scroll;
}

.topPage{
    margin-bottom: 160px;
}

.logo{
    width: 50%;
    display: flex;
    justify-content: center;
    margin: 200px auto 80px auto;
}

/* ========= ↓↓↓スクロールバー↓↓↓ ========= */

/*スクロールダウン全体の場所*/
.scrollDown{
    /*描画位置※位置は適宜調整してください*/
    position:absolute;
    left:50%;
    bottom: -100px;
    /*全体の高さ*/
    height:50px;
}

/*Scrollテキストの描写*/
.scrollDown span{
    /*描画位置*/
    position: absolute;
    left:-26px;
    top: -15px;
    /*テキストの形状*/
    color: #fff;
    font-size: 2rem;
    letter-spacing: 0.05em;
}

/* 線の描写 */
.scrollDown::after{
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    /*線の形状*/
    width: 1px;
    height: 30px;
    background: #fff;
    margin-top: 10px;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
    0%{
        height:0;
        top:0;
        opacity: 0;
    }
    30%{
        height:30px;
        opacity: 1;
    }
    100%{
        height:0;
        top:50px;
        opacity: 0;
    }
}

#header{
    width:100%;
    height: 100px;
    position: relative;
} 

#header:before{
    content: '';
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height: 100vh;
}

@media screen and (max-width:768px){
    #header,
    #header:before{
    height: 90vh;    
    }
    
}

/* ========= ↑↑↑スクロールバー↑↑↑ ========= */

.thanksAdjust{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.container{
    padding: 40px 64px;
}

.topPadding0{
    padding: 0 64px 40px 64px;
}

.bgBlack{
    background-color: #000000;  
}

.bgLightGray{
    background-color: #F2F2F2;  
}

.bgWhite{
    background-color: #ffffff;
}

.whiteText{
    color: #ffffff;
}

.blackText{
    color: #000000;
}

.blueText{
    color: #2D9CFB;
    font-weight: bold;
}

p{
    font-size: 2rem;
    line-height: 3.5rem;
}

.m0{
    margin: 0 auto;
}

.mt40px{
    margin-top: 40px;
}

.mr20px{
    margin-right: 20px;
}

.mr30px{
    margin-right: 30px;
}

.mb20px{
    margin-bottom: 20px;
}

.mb40px{
    margin-bottom: 40px;
}

.textCenter{
    text-align: center;
}

.watermarkFlex{
    display: flex;
}

.watermarkImg{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.watermarkText{
    text-align: center;
    margin-top: 10px;
}

.twoButton{
    display: flex;
    justify-content: center;
    margin: 40px;
}

.lastButton{
    margin-bottom: 0;
}

.section{
    margin: 40px 0;
}

.lastSection{
    margin-top: 40px;
}

.whiteCard{
    background-color: #fff;
    border-radius: 8px;
    padding: 20px 40px;
    margin-bottom: 20px;
}

.grayCard{
    border: 4px solid #D9D9D9;
    border-radius: 8px;
    padding: 20px 40px;
    margin-bottom: 20px;
}

.contactForm{
    /* margin-top: 20px; */
    width: 100%;
    padding: 20px;
    text-align: center;
    color: #000000;
    padding: 40px;
}

.h1{
    font-size: 2.4rem;
    font-weight: bold;
}

.h1Margin{
    margin: 10px 0;
}

.form{
    text-align: left;
}

.labelText{
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.mast{
    font-size: 1.6rem;
    background-color:#ED3669;
    padding:0 10px;
    border-radius:4px;
    margin-right:10px;
    color:#ffffff;
    
}

.midForm{
    height: 40px;
    background-color: #ffffff;
    box-sizing: border-box;
    padding:10px;
    width:100%;
    border:1px solid #D9D9D9;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    
}

.longForm{
    line-height: 1.5;
    background-color: #ffffff;
    box-sizing: border-box;
    padding:10px;
    width:100%;
    max-height: 100vh;
    border:1px solid #D9D9D9;
    border-radius: 4px;
    margin-bottom: 20px;
    min-height: 150px;
    resize: vertical;
    font-size: 1.6rem;
}

.sendButton{
    border: solid 1px #ffffff;
    margin: 0 auto 20px auto;
}

.primaryButton{
    font-size: 1.6rem;
    font-weight: bold;
    width: 148px;
    height: 44px;
    padding: 10px;
    background-color: #2D9CFB;
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.secondaryButton{
    font-size: 1.6rem;
    font-weight: bold;
    width: 148px;
    height: 44px;
    padding: 10px;
    border: 1px solid #ffffff;   
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blackBorder{
    border: 1px solid #000000;   
}

.footer{
    background-color: #000000;
    color: #ffffff;
    border-top: 0.5px solid #919191;
    font-size: 1.6rem;
    height: 30px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    position: fixed;
    width: 100%;
    z-index: 999;
}
