
/*-- ナビゲーションメニュー --*/
.main-nav{
    display: flex;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-top: 34px;
    list-style: none;
}

.main-nav li{
    margin-left: 36px;
}

.main-nav a{
    color: #fff;
}

.main-nav a:hover{
    color: #0bd;
}

.top a{
    color: #fff;
}

.top a:hover{
    color: #0bd;
}

/*------------------------------*/


/*-- ロゴとナビゲーションメニューの横並び --*/
.page-header{
    display: flex;
    justify-content: space-between;
    
}

.wrapper{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}
/* -------------------------------------*/

/* HOME
----------------------------------------*/
.home-content{
    text-align: center;
    margin-top: 10%;
    background-size: cover;
    color: #fff;
}
.home-content p{
    font-size: 1.125rem;
    margin-top: 10px 0 42px;
}
/*-------------------------------------*/

/* 見出し--------------*/
.page-title{
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: normal;
}
/* ------------------------*/

/* ------ ボタン ----------------- */
.button{
    font: siza 1.375rem;
    background-color: #0bd;
    color: #fff;
    border-radius: 5px;
    padding: 18px 32px;
}
.button:hover{
    background: #0090aa;
}


/* 大きな画像---------------------------------------------------------------------- */
.big-bg{
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat ; 
}

#home{
    background-image: url(../image-gridman/dandasan21IMGL47261900_TP_V.jpg);
    min-height: 100vh;
}
/* --------------------------------------------------------------------------------- */

/* CONTACT---------------------------------*/
#contact{
    background-image:url(../image-gridman/post-contact2.jpg);
    min-height: 100vh;
}

/* CONTACT フォームの装飾--------------------------------------*/
form div{
    margin-bottom: 14px;
}
label{
    font-size: 1.125rem;
    margin-bottom: 10px;
    display: block;
}
input[type="text"],
input[type="email"],
textarea{
    background: rgba(255, 255, 255, .5);
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}
input[type="text"],
input[type="email"]{
    width: 100%;
    max-width: 240px;
}
textarea{
    width: 100%;
    max-width: 480px;
    height: 6rem;
}
input[type="submit"]{
    border: none;
    cursor: pointer;
    line-height: 1;
}
/*-----------------------------------------------------*/

/* モバイル版
------------------------------------ */
@media(max-width:600px){
    .page-title{font-size: 2.5rem;

    }
}