@charset 'UTF-8';


.header_start {
    position: fixed;
    justify-content: space-between;
}
.header_start .logo {
    display: block;
}
.other_page_wrap {
    margin: 0 auto;
    padding: 200px 0;
    background-image: url(../img/bg01.png);
    background-size: cover;
}
.other_page_inner {
    width: 1000px;
    margin: 0 auto;
}
 h2{
    padding-bottom: 48px;
    font-size: 40pt;
    color: #464646;
    text-align: center;     
}
.other_page_wrap p {
    margin-bottom: 40px;
    font-family: "Noto Serif JP", serif, Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    line-height: 2.0;
}
.button {
    margin: 120px auto 64px;
}
.other_page_wrap a {
    color: #FFF;
    border-bottom: 1px solid #FFF;
    transition: 0.3s ease-in-out;
}
.other_page_wrap a:hover {
    opacity: .7;
}

@media screen and (max-width: 1024px) {
    .other_page_inner {
        width: 100%;
        padding: 0 40px;
    }
}

@media screen and (max-width: 700px) {
    h2 {
        font-size: 22pt;
    }
    .other_page_wrap {
        padding: 100px 0;
    }
    .other_page_inner {
        width: 100%;
        padding: 0 24px;
    }
    .other_page_wrap p {
        font-size: 13px;
    }
}