@import 'reset.css';
@import 'base.css';
@import 'footer.css';
/* --------------------------------------
    スクリーン
-------------------------------------- */
.page-screen {
    position: relative;
    width: 100%;
    z-index: -1;
    background: center/cover no-repeat url(/image/firstview-pc.jpg);
    overflow: hidden;
}
@media screen and (max-width: 599px) {
    .page-screen {
        text-align: center;
        background: center/cover no-repeat url(/image/firstview-sp.jpg);
    }
}

/* 装飾 */
.page-screen:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -2;
    background: rgba(0, 0, 0, .8);
}
.page-screen-over:before,
.page-screen-over:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    padding-top: 18%;
}
.page-screen-over:before {
    top: 0;
    background: center/cover no-repeat url(/image/pagescreen-over-top.png);
}
.page-screen-over:after {
    bottom: 0;
    background: center/cover no-repeat url(/image/firstview-over-bottom.png);
}

/* テキスト */
.page-screen-txt {
    position: relative;
    font-weight: 700;
    color: #fff;
    padding: 350px 0;
}
@media screen and (min-width: 600px) and (max-width: 959px) {
    .page-screen-txt {
        padding: 260px 0;
    }
}

@media screen and (max-width: 599px) {
    .page-screen-txt {
        padding: 136px 0;
    }
}

.page-screen-txt-logo {
    text-align: center;
}

@media screen and (max-width: 599px) {
    .page-screen-txt-logo img {
        height: 43px;
        width: auto;
    }
    .page-screen-txt-logo.privacy-policy img {
        height: 91px;
    }
}
.page-screen-txt-ttl {
    font-size: 49px;
    margin-bottom: 3rem;
}
@media screen and (max-width: 599px) {
    .page-screen-txt-ttl {
        font-size: 32px;
    }
}

@media screen and (min-width: 600px) {
    .page-screen-txt-desc {
        font-size: 18px;
    }
}



/* --------------------------------------
    メイン
-------------------------------------- */
/* お問い合わせ */
.contact-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.contact-wrap {
    margin-top: 40px;
}
@media screen and (min-width: 600px) {
    .contact-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.contact-box {
    border-radius: 3px;
    width: 320px;
}
.contact-box.twitter {
    color: #1D9BF0;
    border: 1px solid #1D9BF0;
    font-weight: 700;
}
.contact-box.mail {
    color: #6C4F05;
    border: 1px solid #ADA181;
    font-size: 14px;
    text-align: left;
}
@media screen and (min-width: 600px) {
    .contact-box:first-child {
        margin-right: 16px;
    }
}
@media screen and (max-width: 599px) {
    .contact-box {
        width: 280px;
        margin: 0 auto 16px;
    }
    .contact-box.mail {
        font-size: 12px;
    }
}

.contact-box-inner {
    width: 100%;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.contact-box.twitter .contact-box-inner:hover {
    background: #F0F5F8;
}

.contact-box-inner img,
.contact-box-inner p {
    margin: 0;
}
@media screen and (max-width: 599px) {
    .contact-box-inner {
        height: 90px;
    }
}
.contact-logo {
    width: 40px;
    margin-right: 8px;
}
@media screen and (max-width: 599px) {
    .contact-logo {
        width: 36px;
    }
}
.contact-txt {
    line-height: 1.2;
}
@media screen and (max-width: 599px) {
    .contact-txt {
        width: 180px;
    }
}
.contact-txt p {
    margin: 0;
}
.contact-txt img {
    width: 172px;
    margin-bottom: 4px;
}
@media screen and (max-width: 599px) {
    .contact-txt img {
        width: 160px;
    }
}


/* お知らせ */
.page-news-list li {
    border-bottom: 1px dashed #ADA181;
    padding: 8px 0;
}

@media screen and (min-width: 600px) {
    .page-news-list li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.page-news-list li:not(:last-child) {
    margin-bottom: 16px;
}
@media screen and (max-width: 599px) {
    .page-news-list li:not(:last-child) {
        margin-bottom: 8px;
    }
}

.page-news-list li a:hover {
    text-decoration: underline;
}
.page-news-list li p {
    margin: 0;
}
@media screen and (min-width: 600px) {
    .page-news-list li .news-time {
        width: 110px;
    }
    .page-news-list li .news-txt {
        flex: 1;
    }
}
@media screen and (max-width: 599px) {
    .page-news-list li .news-time {
        margin-bottom: 4px;
    }
}

.page-news-main {
    margin-top: -200px;
}
@media screen and (max-width: 599px) {
    .page-news-main {
        margin-top: -40px;
    }
}