@charset "UTF-8";

* {
    font-size: 15px;
    font-family: Noto Sans CJK JP, Noto Sans JP, sans-serif;
    line-height: 1.9;
    letter-spacing: 0.03em;
    color: rgb(30, 30, 30);
}

/*==============================================================
nav
==============================================================*/

#nav {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(90, 90, 90, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
}

#nav>div {
    width: 100%;
}

#nav>div>p {
    padding: 25px 0;
    margin-left: 3.5%;
    line-height: 1;
    float: left;
}

#nav>div>p>img {
    width: auto;
    height: 25px;
    cursor: pointer;
}

#nav>div>ul {
    float: right;
    line-height: 1;
}

#nav>div>ul>li {
    margin-left: 12px;
    line-height: 1;
    display: inline-block;
    cursor: pointer;
}

#nav>div>ul>li:hover {
    opacity: 0.6;
}

#nav>div>ul>li:last-child {
    margin-left: 20px;
}

#nav>div>ul>li>span {
    font-weight: 500;
    vertical-align: middle;
}

#nav>div>ul>li img {
    width: auto;
    height: 30px;
    margin-right: 12px;
    vertical-align: middle;
}

#nav>div>ul>li>a {
    padding: 30px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    background-color: #000;
    display: block;
}

@media screen and (max-width:896px) {

    #nav>div>p {
        padding: 20px 0 19px;
        margin-left: 2%;
    }

    #nav>div>p>img {
        height: 20px;
    }

    #nav>div>ul>li {
        margin-left: 9px;
    }

    #nav>div>ul>li:last-child {
        margin-left: 15px;
    }

    #nav>div>ul>li img {
        height: 20px;
        margin-right: 9px;
        display: none;
    }

    #nav>div>ul>li>a {
        padding: 22px 15px;
    }

}

@media screen and (max-width:480px) {

    #nav>div {
        position: relative;
    }

    #nav>div>p {
        padding: 21px 0;
        margin-left: 3.5%;
    }

    #nav>div>ul {
        width: 100%;
        background-color: #fff;
        float: none;
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
    }

    #nav>div>ul>li,
    #nav>div>ul>li:last-child {
        width: 100%;
        margin-left: 0;
        line-height: 1;
        text-align: center;
    }

    #nav>div>ul>li {
        padding: 20px 0;
        border-top: 1px solid rgb(200, 200, 200);
    }

    #nav>div>ul>li:last-child {
        padding: 0;
    }

    #nav>div>ul>li>img {
        height: 21px;
        margin-right: 15px;
        display: inline;
    }

    #nav>div>ul>li>span {
        padding-right: 15px;
        font-size: 16px;
        line-height: 1;
    }

    #nav>div>ul>li:last-child a {
        padding: 23px 0;
    }

    #nav>div>button {
        margin: 16px 3.5% 16px 0;
        float: right;
    }

}

/*==============================================================
main
==============================================================*/

#main {
    margin-top: 75px;
    overflow: hidden;
    position: relative;
}

#main:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    display: block;
    position: absolute;
    top: 0;
    right: 50%;
    z-index: 1000;
    -webkit-transform: skew(-15deg, 0);
    -moz-transform: skew(-15deg, 0);
    -ms-transform: skew(-15deg, 0);
    -o-transform: skew(-15deg, 0);
    transform: skew(-15deg, 0);
    -webkit-transition-duration: 1.5s;
    -moz-transition-duration: 1.5s;
    -ms-transition-duration: 1.5s;
    -o-transition-duration: 1.5s;
    transition-duration: 1.5s;
}

#main.open:before {
    right: 120%;
}

#main:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1000;
    -webkit-transform: skew(-15deg, 0);
    -moz-transform: skew(-15deg, 0);
    -ms-transform: skew(-15deg, 0);
    -o-transform: skew(-15deg, 0);
    transform: skew(-15deg, 0);
    -webkit-transition-duration: 1.5s;
    -moz-transition-duration: 1.5s;
    -ms-transition-duration: 1.5s;
    -o-transition-duration: 1.5s;
    transition-duration: 1.5s;
}

#main.open:after {
    left: 120%;
}

.slick-slide img {
    width: 100%;
    height: 630px;
    object-fit: cover;
    object-position: 50% 100%;
}

#main>div {
    position: absolute;
    left: 3.5%;
    bottom: 7.5%;
}

#main>div>p {
    line-height: 1;
}

#main>div>p.en {
    margin-bottom: 20px;
}

#main>div>p.en>span {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    display: inline-block;
    opacity: 0;
    -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    -ms-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transform: scale(2, 2);
    -moz-transform: scale(2, 2);
    -ms-transform: scale(2, 2);
    -o-transform: scale(2, 2);
    transform: scale(2, 2);
}

#main>div>p.en>span.scale {
    opacity: 1.0;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transform: scale(1, 1);
}

#main>div>p.en>span.space {
    margin-left: 20px;
}

#main>div>p.jp {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    opacity: 0;
    -webkit-transition-duration: 1.2s;
    -moz-transition-duration: 1.2s;
    -ms-transition-duration: 1.2s;
    -o-transition-duration: 1.2s;
    transition-duration: 1.2s;
}

#main>div>p.jp.fadein {
    opacity: 1;
    -webkit-transition-delay: 0.8s;
    -moz-transition-delay: 0.8s;
    -ms-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

@media screen and (max-width:896px) {

    #main {
        margin-top: 59px;
    }

    .slick-slide img {
        height: 480px;
    }

    #main>div {
        bottom: 9%;
    }

    #main>div>p.en>span {
        font-size: 50px;
    }

    #main>div>p.en>span.space {
        margin-left: 0;
    }
}

@media screen and (max-width:480px) {

    #main {
        margin-top: 62px;
    }

    .slick-slide img {
        height: 80vh;
        object-position: 50% 50%;
    }

    #main>div {
        bottom: 10%;
    }

    #main>div>p.en {
        margin-bottom: 8px;
        line-height: 1.8;
    }

    #main>div>p.en>span {
        font-size: 42px;
    }

    #main>div>p.jp {
        font-size: 17px;
        font-weight: 500;
        line-height: 1.5;
    }

}

/*==============================================================
about
==============================================================*/

#about {
    padding: 8% 0;
}

#about>h1 {
    margin-bottom: 4%;
    text-align: center;
}

#about>h1>span {
    padding-bottom: 20px;
    border-bottom: 2px solid rgb(30, 30, 30);
    font-size: 23px;
    font-weight: 500;
}

#about>p {
    font-size: 19px;
    font-weight: 500;
    text-align: center;
    line-height: 2.5;
}

@media screen and (max-width:896px) {

    #about {
        padding: 10% 0;
    }

    #about>h1 {
        margin-bottom: 5%;
    }

    #about>h1>span {
        padding-bottom: 12px;
        font-size: 20px;
    }

    #about>p {
        font-size: 17px;
        line-height: 2.2;
    }

}

@media screen and (max-width:480px) {

    #about {
        padding: 17% 0 15%;
    }

    #about>h1 {
        margin-bottom: 10%;
    }

    #about>h1>span {
        padding-bottom: 10px;
        line-height: 1;
        display: inline-block;
    }

    #about>h1>span:first-child {
        margin-bottom: 18px;
    }

    #about>p {
        padding: 0 6%;
        font-size: 17px;
        line-height: 2.2;
        text-align: justify;
    }

    #about>p>br {
        font-size: 14px;
        line-height: 1.9;
        display: none;
        letter-spacing: 0;
    }

}

/*==============================================================
type
==============================================================*/

#type {
    padding: 8% 0 0;
    background-color: rgb(234, 234, 234);
}

#type>div {
    width: 93%;
    max-width: 1280px;
    margin: 0 auto;
}

#type>div>h2 {
    margin-bottom: 5%;
    line-height: 1;
    text-align: center;
    position: relative;
}

#type>div>h2>span {
    font-size: 21px;
    position: relative;
}

#type>div>h2>span:before {
    content: "";
    width: 150px;
    height: 2px;
    margin-top: -1px;
    display: block;
    background-color: #000;
    position: absolute;
    top: 50%;
    right: 130%;
}

#type>div>h2>span:after {
    content: "";
    width: 150px;
    height: 2px;
    margin-top: -1px;
    display: block;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 130%;
}

#type>div>ul {
    margin-bottom: 3%;
    line-height: 1;
    text-align: center;
    letter-spacing: 0;
    font-size: 0;
}

#type>div>ul>li {
    max-width: 25%;
    margin-bottom: 35px;
    display: inline-block;
}

#type>div>ul>li:nth-last-child(-n+4) {
    margin-bottom: 0;
}

#type>div>ul>li>p {
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

#type>div>p.text {
    margin-bottom: 108px;
    text-align: center;
}

#type>div>.store {
    padding-bottom: 90px;
}

#type>div>.store>.text {
    margin-bottom: 33px;
    text-align: center;
}

#type>div>.store>.text>span {
    padding: 0 30px;
    font-size: 18px;
    font-weight: bold;
    line-height: 36px;
    color: rgb(60, 60, 60);
    display: inline-block;
    position: relative;
}

#type>div>.store>.text>span::before,
#type>div>.store>.text>span::after {
    content: "";
    width: 36px;
    height: 36px;
    display: block;
    position: absolute;
    top: 0;
}

#type>div>.store>.text>span::before {
    border-left: 3px dotted rgb(60, 60, 60);
    transform: rotate(-18deg);
    left: 0;
}

#type>div>.store>.text>span::after {
    border-right: 3px dotted rgb(60, 60, 60);
    transform: rotate(18deg);
    right: 0;
}

#type>div>.store>a {
    width: 100%;
    max-width: 270px;
    padding: 30px 0;
    margin: 0 auto;
    line-height: 1;
    text-align: center;
    background-color: rgb(45, 45, 45);
    display: block;
}

#type>div>.store>a:hover {
    background-color: rgb(90, 90, 90);
}

#type>div>.store>a img {
    width: 72%;
    max-width: 150px;
}

.material {
    display: none;
}

.material>ul {
    line-height: 1;
}

.material>ul>li {
    width: 48%;
    float: left;
}

.material>ul>li:first-child {
    margin-right: 4%;
}

.material>ul>li>p {
    font-size: 18px;
    text-align: center;
}

.material>ul>li>p:first-child {
    margin-bottom: 6px;
}

.fancybox-content {
    max-width: 450px;
}

.fancybox-content>li>p:nth-child(1) {
    margin-bottom: 30px;
}

.fancybox-content>li>h3 {
    margin-bottom: 24px;
    text-align: center;
}

.fancybox-content>li>p:nth-child(3) {
    font-size: 14px;
}

@media screen and (max-width:896px) {

    #type {
        padding: 12% 0 0;
    }

    #type>div>h2 {
        margin-bottom: 6%;
    }

    #type>div>ul {
        margin-bottom: 4%;
    }

}

@media screen and (max-width:480px) {

    #type {
        padding: 18% 0;
    }

    #type>div>h2 {
        margin-bottom: 12%;
    }

    #type>div>h2>span {
        font-size: 22px;
        font-weight: 500;
    }

    #type>div>h2>span:before {
        width: 50px;
    }

    #type>div>h2>span:after {
        width: 50px;
    }

    #type>div>ul {
        margin-bottom: 8%;
    }

    #type>div>ul>li {
        max-width: 47%;
        margin-right: 6%;
        margin-bottom: 20px;
    }

    #type>div>ul>li:nth-of-type(2n) {
        margin-right: 0;
    }

    #type>div>ul>li:nth-last-child(-n+4) {
        margin-bottom: 20px;
    }

    #type>div>ul>li:nth-last-child(-n+2) {
        margin-bottom: 0;
    }

    #type>div>ul>li>p {
        width: 100%;
        max-width: 100%;
    }

    #type>div>p.text {
        margin-bottom: 81px;
        font-size: 14px;
    }

    #type>div>.store>a {
        max-width: 100%;
    }

    .material.fancybox-content {
        padding: 30px 35px 50px;
    }

    .material>ul>li>p {
        font-size: 15px;
    }

}

/*==============================================================
philosophy
==============================================================*/

#philosophy>img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

#philosophy>div {
    width: 93%;
    max-width: 30%;
    padding: 9% 0;
    margin: 0 auto;
    text-align: center;
}

#philosophy>div>p:nth-child(1) {
    margin-bottom: 40px;
}

#philosophy>div>h2 {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

#philosophy>div>p:nth-child(3) {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.9;
}

#philosophy>div>p:nth-child(4) {
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

@media screen and (max-width:896px) {

    #philosophy>img {
        height: 280px;
    }

    #philosophy>div {
        padding: 8% 0;
    }

    #philosophy>div>p:nth-child(1) {
        margin-bottom: 40px;
    }

    #philosophy>div>h2 {
        margin-bottom: 30px;
        font-size: 20px;
    }

}

@media screen and (max-width:480px) {

    #philosophy>img {
        height: 250px;
    }

    #philosophy>div {
        padding: 9% 0;
    }

    #philosophy>div>p:nth-child(1) {
        margin-bottom: 40px;
    }

    #philosophy>div>h2 {
        margin-bottom: 30px;
        font-size: 25px;
    }

    #philosophy>div {
        max-width: 93%;
        padding: 12% 0;
    }

    #philosophy>div>p:nth-child(3) {
        font-size: 16px;
    }

}

/*==============================================================
work
==============================================================*/

#work {
    margin: 9% 0;
}

#work>div {
    width: 93%;
    max-width: 1280px;
    margin: 0 auto;
}

#work>div>h2 {
    margin-bottom: 6%;
    line-height: 1;
    text-align: center;
    position: relative;
}

#work>div>h2>span {
    font-size: 21px;
    position: relative;
}

#work>div>h2>span:before {
    content: "";
    width: 150px;
    height: 2px;
    margin-top: -1px;
    display: block;
    background-color: #000;
    position: absolute;
    top: 50%;
    right: 130%;
}

#work>div>h2>span:after {
    content: "";
    width: 150px;
    height: 2px;
    margin-top: -1px;
    display: block;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 130%;
}

#work>div>ul>li {
    width: 30%;
    margin-right: 5%;
    float: left;
}

#work>div>ul>li:nth-child(3) {
    margin-right: 0;
}

#work>div>ul>li>img {
    margin-bottom: 9%;
}

#work>div>ul>li>h3 {
    margin-bottom: 6%;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
}

#work>div>ul>li>p {
    font-size: 15px;
    line-height: 1.8;
}

@media screen and (max-width:896px) {

    #work {
        margin: 12% 0 14%;
    }

    #work>div>ul>li {
        width: 32%;
        margin-right: 2%;
    }

    #work>div>ul>li>img {
        margin-bottom: 20px;
    }

    #work>div>ul>li>h3 {
        margin-bottom: 15px;
        font-size: 17px;
        line-height: 1;
    }

    #work>div>ul>li>p {
        font-size: 15px;
        line-height: 1.7;
    }

}

@media screen and (max-width:480px) {

    #work {
        margin: 15% 0;
    }

    #work>div>h2 {
        margin-bottom: 15%;
    }

    #work>div>h2>span:before {
        width: 50px;
    }

    #work>div>h2>span:after {
        width: 50px;
    }

    #work>div>ul>li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 9%;
    }

    #work>div>ul>li:last-child {
        margin-bottom: 0;
    }

    #work>div>ul>li>img {
        margin-bottom: 30px;
    }

    #work>div>ul>li>h3 {
        margin-bottom: 20px;
        font-size: 19px;
    }

    #work>div>ul>li>p {
        line-height: 1.9;
    }

}

/*==============================================================
company
==============================================================*/

#company {
    padding: 10% 0;
    background-color: rgb(60, 60, 60);
}

#company>div {
    width: 93%;
    max-width: 1280px;
    margin: 0 auto;
}

#company>div>h2 {
    margin-bottom: 5%;
    font-size: 25px;
    color: #fff;
}

#company>div>dl {
    margin-bottom: 6%;
    line-height: 1;
}

#company>div>dl>dt {
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
}

#company>div>dl>dd {
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
}

#company>div>dl>dd:last-child {
    margin-bottom: 0;
}

#company>div>p {
    padding: 3px;
    line-height: 1;
    background-color: #fff;
}

#company>div>p>iframe {
    width: 100%;
    height: 360px;
}

@media screen and (max-width:896px) {

    #company {
        padding: 12% 0;
    }

}

@media screen and (max-width:480px) {

    #company {
        padding: 15% 0 20%;
    }

    #company>div>h2 {
        margin-bottom: 8%;
        font-size: 25px;
        text-align: center;
    }

    #company>div>dl {
        margin-bottom: 12%;
    }

    #company>div>dl>dt {
        line-height: 1.6;
    }

    #company>div>dl>dd {
        line-height: 1.6;
    }

}

/*==============================================================
contact
==============================================================*/

#contact {
    padding: 12% 0;
}

#contact>div {
    width: 93%;
    max-width: 1280px;
    margin: 0 auto;
}

#contact>div>h2 {
    margin-bottom: 6%;
    line-height: 1;
    text-align: center;
    position: relative;
}

#contact>div>h2>span {
    font-size: 21px;
    position: relative;
}

#contact>div>h2>span:before {
    content: "";
    width: 150px;
    height: 2px;
    margin-top: -1px;
    display: block;
    background-color: #000;
    position: absolute;
    top: 50%;
    right: 130%;
}

#contact>div>h2>span:after {
    content: "";
    width: 150px;
    height: 2px;
    margin-top: -1px;
    display: block;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 130%;
}

#contact>div>form {
    padding: 4.5% 4.5% 7.5%;
    border: 1px solid rgb(30, 30, 30);
    background-color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

#contact>div>form>dl {
    margin-bottom: 6%;
    line-height: 1;
}

#contact>div>form>dl>dt {
    margin-bottom: 24px;
}

#contact>div>form>dl>dd {
    margin-bottom: 24px;
}

#contact>div>form>dl>dd:last-child {
    margin-bottom: 0;
}

#contact>div>form>dl>dd>input,
#contact>div>form>dl>dd>textarea {
    width: 100%;
    padding: 9px 6px;
    border: 1px solid rgb(30, 30, 30);
    border-radius: 3px;
    font-size: 18px;
    color: rgb(60, 60, 60);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

#contact>div>form>dl>dd>input:focus,
#contact>div>form>dl>dd>textarea:focus {
    border: 1px solid rgb(40, 120, 250);
}

#contact>div>form>dl>dd>textarea {
    height: 240px;
}

#contact>div>form>button {
    width: 100%;
    max-width: 300px;
    padding: 30px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 1;
    color: #fff;
    background-color: rgb(30, 30, 30);
    display: block;
}

#contact>div>form>button:hover {
    background-color: rgb(40, 120, 250);
}

@media screen and (max-width:896px) {}

@media screen and (max-width:480px) {

    #contact {
        padding: 15% 0;
    }

    #contact>div>h2 {
        margin-bottom: 9%;
    }

    #contact>div>h2>span:before {
        width: 50px;
    }

    #contact>div>h2>span:after {
        width: 50px;
    }

    #contact>div>form>dl>dt {
        margin-bottom: 18px;
        font-size: 18px;
    }

    #contact>div>form>dl>dt span {
        font-size: 18px;
    }

    #contact>div>form>dl>dd {
        margin-bottom: 18px;
    }

    #contact>div>form>button {
        max-width: 100%;
        font-size: 18px;
    }

}

/*==============================================================
footer
==============================================================*/

#footer img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

@media screen and (max-width:896px) {

    #footer img {
        height: 450px;
    }

}

@media screen and (max-width:480px) {

    #footer img {
        height: 300px;
    }

}

/*==============================================================
copyright
==============================================================*/

#copyright {
    padding: 35px 0;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    color: #fff;
    background-color: rgb(30, 30, 30);
}

@media screen and (max-width:896px) {}

@media screen and (max-width:480px) {

    #copyright {
        padding: 25px 0;
        margin-bottom: 60px;
        font-size: 16px;
    }
}

/*==============================================================
goup
==============================================================*/

#goup {
    width: 50px;
    height: 50px;
    background-image: url(../img/scroll.gif);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
}

#goup:hover {
    background-image: url(../img/scroll_on.gif);
}

/*==============================================================
モバイル用問い合わせボタン
==============================================================*/

@media screen and (max-width:480px) {

    #mb_contact {
        width: 100%;
        border-top: 1px solid rgb(90, 90, 90);
        background-color: rgb(30, 30, 30);
        position: fixed;
        bottom: 0;
        left: 0;
        display: none;
    }

    #mb_contact>a,
    #mb_contact>button {
        width: 50%;
        padding: 15px 0;
        font-size: 18px;
        line-height: 30px;
        text-align: center;
        color: #fff;
        display: block;
        float: left;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
    }

    #mb_contact>a {
        border-right: 1px solid rgb(90, 90, 90);
    }

    #mb_contact span {
        margin-right: 9px;
    }

    #mb_contact span img {
        width: 30px;
        height: 30px;
    }

}

/*==============================================================
送信内容の確認
==============================================================*/

#nav>div>p.under_logo {
    width: 100%;
    margin-left: 0;
    text-align: center;
}

#check {
    width: 93%;
    max-width: 1280px;
    padding: 6% 0 12%;
    margin: 75px auto 0;
}

#check>p {
    margin-bottom: 30px;
}

#check>p>button {
    margin: 0 5px;
    text-decoration: underline;
}

#check>p>button:hover {
    text-decoration: none;
}

#check>form>dl {
    margin-bottom: 40px;
}

#check>form>dl>dt {
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
}

#check>form>dl>dd {
    margin-bottom: 20px;
    font-size: 18px;
}

#check>form>div>button {
    width: 100%;
    max-width: 300px;
    padding: 20px 0;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1;
    background-color: #000;
    display: block;
}

#check>form>div>button:hover {
    opacity: 0.7;
}

@media screen and (max-width:896px) {

    #check {
        margin: 59px auto 0;
    }

}

@media screen and (max-width:480px) {

    #check {
        padding: 12% 0 20%;
        margin: 62px auto 0;
    }

    #check>p {
        margin-bottom: 30px;
    }

    #check>p,
    #check>button {
        font-size: 15px;
        line-height: 1.7;
        letter-spacing: 0;
    }

    #check>p>br {
        display: none;
    }

    #check>form>dl {
        margin-bottom: 30px;
    }

    #check>form>dl>dt {
        font-size: 16px;
    }

    #check>form>dl>dd {
        margin-bottom: 16px;
        font-size: 16px;
    }

    #check>form>div>button {
        max-width: 100%;
        padding: 25px 0;
    }

    #copyright.under {
        margin-bottom: 0;
    }

}

/*==============================================================
thanksページ
==============================================================*/

#thanks {
    width: 93%;
    max-width: 1280px;
    padding: 8% 0 10%;
    margin: 75px auto 0;
}

#thanks>h2 {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 50px;
}

#thanks>h3 {
    margin-bottom: 30px;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
    line-height: 1;
}

#thanks>p {
    margin-bottom: 40px;
    text-align: center;
}

#thanks>a {
    width: 100%;
    max-width: 300px;
    padding: 25px 0;
    margin: 0 auto;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    color: #fff;
    background-color: #000;
    display: block;
}

#thanks>a:hover {
    opacity: 0.7;
}

@media screen and (max-width:896px) {

    #thanks {
        padding: 10% 0 15%;
        margin: 59px auto 0;
    }

}

@media screen and (max-width:480px) {

    #thanks {
        padding: 12% 0 18%;
        margin: 62px auto 0;
    }

    #thanks>h2 {
        width: 80%;
        max-width: 80%;
        margin: 0 auto 50px;
    }

    #thanks>h3 {
        margin-bottom: 20px;
        font-size: 19px;
    }

    #thanks>p {
        margin-bottom: 35px;
    }

    #thanks>a {
        width: 100%;
        max-width: 100%;
    }

}

/*==============================================================
//
レスポンシブ｜表示・非表示
//
==============================================================*/

@media screen and (min-width:897px) {
    .pc {
        display: block
    }

    .tb {
        display: none
    }

    .mb {
        display: none
    }

    .pc_tb {
        display: block
    }

    .tb_mb {
        display: none
    }
}

@media screen and (max-width:896px) {
    .pc {
        display: none
    }

    .tb {
        display: block
    }

    .mb {
        display: none
    }

    .pc_tb {
        display: block
    }

    .tb_mb {
        display: block
    }
}


@media screen and (max-width:480px) {
    .pc {
        display: none
    }

    .tb {
        display: none
    }

    .mb {
        display: block
    }

    .pc_tb {
        display: none
    }

    .tb_mb {
        display: block
    }
}