@charset "UTF-8";

body {
    margin: 0;
    padding: 0;
    background: url(./img/minamo.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    font-family: "Noto Sans", sans-serif;
    color: #040148;
    font-size: 14px;
    line-height: 150%;
}

.background {
    width: 100%;
}

.contents {
    width: 100%;
    max-width: 428px;
    margin: 0 auto;
    background-color: #fff;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.wrapper {
    width: 90%;
    margin: 0 auto;
}

/* button */
.buttonb {
    display: block;
    width: 60%;
    margin: 20px auto 0 auto;

    background-color: #040148;
    border: 1px solid #040148;
    border-radius: 30px;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.50);

    color: #FFFFFF;
    font-family: "Noto Serif JP", serif;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s ease;
}

.buttonb:hover {
    color: #040148;
    border: 1px solid #040148;
    background-color: #FFFFFF;
}

.buttonw {
    display: block;
    width: 60%;
    margin: 20px auto 0 auto;

    background-color: #FFFFFF;
    border: 1px solid #040148;
    border-radius: 30px;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.50);

    font-family: "Noto Serif JP", serif;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s ease;
}

.buttonw:hover {
    color: #FFFFFF;
    border: 1px solid #040148;
    background-color: #040148;
}

/* contact */
.contact {
    background-image: url(./img/contact.jpg);
    background-size: cover;
    background-position: center;
}

.contact_block {
    padding: 30px 0 30px 0;
    align-items: center;
}

.contact_title {
    text-align: center;
    font-size: 18px;
    color: #FFFFFF;
}

.copyright {
    display: block;
    text-align: center;
}

/* 下層共通 */
.subpage .header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 428px;
    z-index: 1000;

    background-image: url(./img/header.jpg);
    background-size: cover;
    background-position: center;

    font-family: "Noto Serif JP", serif;
    color: #fff;
}

.header_block {
    width: 60%;
    margin: 0 auto;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
}

.subpage .contents {
    padding-top: 50px;
}

.header_link:hover {
    opacity: 0.7;
    transition: all 0.5s ease;
}

.section_title {
    display: block;
    background-color: #040148;
    padding: 10px 0;

    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-size: 20px;
    text-align: center;
}