@charset "UTF-8";

/*共通部分*/

html{
    font-size:100%;
}

body{
    font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height:1.7;
    /* color:#432; */
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}

/*backgroundImage*/
.big-bg{
    background-size:cover;
    background-position:center;
}
#spotBG{
    min-height:100vh;
    transition: all 0.3s;
}
#spotBG .page-title{
    text-transform:none;
}

/*header*/
.page-header{
    display:flex;
    justify-content: space-between;
    margin-bottom:20px;
}
.logo{
    width:210px;
    margin-top:14px;
}

.logo a{
    color:black;
    font-weight:bold;
    font-size:30px;
}
/*main*/
.spotTitle{
    opacity: 0.8;
    color:#333;
    width:200px;
    display:inline-block;
    font-size:48px;
    margin-bottom:550px;
    /* border-bottom:6px double #000; */
}
.spotTitle:hover{
    opacity: 1;
}
main p{
    font-size: 20px;
    line-height:2;
}

/*ボタン*/
.button{
    font-size:1.375rem;
    background:black;
    color:#fff;
    border-radius:5px;
    padding:15px 32px;
    opacity: 0.5;
    cursor: pointer;
}

.buttons{
    margin-top: 40px;
    text-align: center;
}
    
.button:hover{
    background:#333;
    opacity: 1;
}

.btnRight{
    margin-left: 20px;
}

input{
    display: none;
}

/*レスポンシブ*/
@media (max-width: 625px){
    .wrapper{
        padding: 0 7%;
    }

    .page-header{
        margin-bottom:80px;
    }

    .spotTitle{
        font-size: 38px;
    }
    main p{
        font-size: 18px;
    }
    .button{
        padding: 10px 16px;
    }
    .spotTitle{
        margin-bottom:300px;
    }
}