@charset "UTF-8";

/** 初期設定 */
.pc-none {
    display: none;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: "MyYuGothicM";
    font-weight: normal;
    src: local("YuGothic-Medium"),
    local("Yu Gothic Medium"),
    local("YuGothic-Regular");
}
@font-face {
    font-family: "MyYuGothicM";
    font-weight: bold;
    src: local("YuGothic-Bold"),
    local("Yu Gothic");
}
html {
    font-size: 62.5%;
}
body {
    position: relative;
    font-family: MyYuGothicM,
    YuGothic,
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
}
h1, h2, h3 {
    margin: 0;
    padding: 0;
    font-size: 2.4rem;
    font-weight: 100;
    letter-spacing: 0.2rem;
}
h2, h3 {
    text-align: center;
}
img {
    border: 0;
    width: 100%;
}
a {
    text-decoration: none;
    color: black;
}
p {
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1280px;
    min-width: 1000px;
    margin: 0 auto;
}
label, input[type='checkbox'] {
    cursor: pointer;
}

/** ヘッダー */
header {
    position: relative;
    width: 100%;
    height: 70px;
}
header:after {
    content: '';
    display: block;
    clear: both;
}
header > .container {
    height: 100%;
}
h1 {
    float: left;
    width: 25%;
    height: 100%;
}
h1 > a > img {
    height: 20px;
    width: auto;
    margin: 25px 0 0 20%;
}
.nav-pc {
    float: left;
    width: 75%;
    height: 100%;
}
nav > ul {
    height: 100%;
    width: 100%;
    list-style: none;
    font-size: 0;
    padding: 0;
    margin: 0;
}
.nav-pc > ul > li {
    position: relative;
    width: 19.8%;
    height: 100%;
    display: inline-block;
}
.nav-pc > ul > li > a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 1.2rem;
    text-align: center;
    padding-top: 27px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.nav-pc > ul > li > a:hover > span {
    border-bottom: 2px solid #f9dd3d;
}

/** フッター */
footer {
    background-color: #666666;
    padding: 2rem 0;
}
footer h2 {
    font-size: 1.5rem;
    color: #dce7ea;
}
footer h2 img {
    width: 18%;
    margin: 0 41%;
}
footer ul {
    list-style: none;
    font-size: 0;
    padding: 0;
    margin: 2rem 0;
}
footer li {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;
}
footer li a {
    color: white;
    border-bottom: 1px solid;
}
.copyright {
    font-size: 1.3rem;
    color: white;
    text-align: center;
}

/** 共通 */
::-webkit-input-placeholder{
    color: black;
    opacity: 1;
    font-size: 1rem;
}
:-moz-placeholder {
    color: black;
    font-size: 1rem;
}
::-moz-placeholder {
    color: black;
    opacity: 1;
    font-size: 1rem;
}
:-ms-input-placeholder {
    color: black;
    font-size: 1rem;
}

/** お問い合わせ・リリース通知 共通フォーム */
.privacy-policy {
    width: 100%;
    text-align: center;
}
.privacy-policy > label > a {
    color: #000099;
}
.privacy-policy > label > a:hover {
    border-bottom: solid 1px;
}
.submit-button {
    width: 280px;
    height: 50px;
}
.submit-button > button {
    width: 100%;
    height: 100%;
    background-color: #f9dd3d;
    border: none;
    font-size: 1.7rem;
    border-radius: 3px;
}
.submit-button > button:hover {
    background-color: #f9cb35;
}
.submit-button > button > i {
    padding-right: 1rem;
}

/** SPサイズ */
@media (max-width: 768px) {
    .pc-none {
        display: block;
    }
    .sp-none {
        display: none;
    }
    html {
        font-size: 110%;
    }
    .container {
        min-width: unset;
    }

    /** header */
    header {
        height: 100px;
    }
    h1 {
        width: 50%;
    }
    h1 > a > img {
        height: 30px;
        width: auto;
        margin: 35px 0 0 10%;
    }
    .menu {
        width: 50%;
        height: 100%;
        float: left;
    }
    .menu:after {
        content: '';
        display: block;
        clear: both;
    }
    .menu > img {
        height: 30px;
        width: auto;
        float: right;
        margin: 35px 10% 0 0;
    }
    .nav-sp {
        display: none;
        width: 50%;
        height: 100%;
        position: fixed;
        top: 0;
        right: 0;
        margin: 0;
        background-color: black;
        z-index: 1;
    }
    .menu-close {
        position: fixed;
        top: 4%;
        right: 5%;
        height: 30px;
        width: auto;
    }
    .nav-sp > ul {
        padding-top: 30%;
    }
    .nav-sp > ul > li {
        width: 80%;
        height: auto;
        position: static;
        display: block;
        padding: 8% 10%;
    }
    .nav-sp > ul > li > a {
        width: 100%;
        height: auto;
        color: white;
        text-align: left;
        position: static;
        font-size: 1.7rem;
        padding: 0;
    }
    .nav-sp > ul > li > a:hover > span {
        border-bottom: none;
    }

    /** footer */
    footer h2 {
        font-size: 2rem;
    }
    footer h2 img {
        width: 50%;
        margin: 0 25%;
    }
    footer li {
        font-size: 1.6rem;
    }
    .copyright {
        font-size: 1rem;
    }

    /** 共通 */
    .submit-button {
        width: 70%;
        height: 80px;
        margin: 0 15% 0 15%;
    }
}

/** SPサイズ */
@media (max-width: 414px) {
    html {
        font-size: 62.5%;
    }
    header {
        height: 70px;
    }
    /** header */
    h1 > a > img {
        height: 17px;
        margin: 30px 0 0 10%;
    }
    .menu > img {
        height: 17px;
        margin: 30px 10% 0 0;
    }
    .menu-close {
        height: 17px;
    }
    .nav-sp > ul > li {
    }
    .nav-sp > ul > li > a {
        font-size: 1.5rem;
    }
    .nav-sp > ul > li > a:hover > span {
        border-bottom: none;
    }

    /** footer */
    footer h2 {
        font-size: 1.8rem;
    }
    footer li {
        font-size: 1.3rem;
    }

    /** 共通 */
    .submit-button {
        width: 80%;
        height: 50px;
        margin: 0 10% 0 10%;
    }
}