@charset "UTF-8";
/*-----ARTICLE-HERO-----*/
.article-hero {
    height: 690px;
    position: relative;
    background-size: cover;
    text-align: center;
}
.article-hero h1 {
    animation-duration: 1.5s;
    animation-name: fadein;
}
.article-hero::after {
    content: '';
    width: 100%;
    height: 690px;
    position: absolute;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(12, 35, 64, 0) 0%, rgba(12, 35, 64, 0) 21%, rgba(12, 35, 64, 0.46) 58%, rgba(12, 35, 64, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(12, 35, 64, 0) 0%, rgba(12, 35, 64, 0) 21%, rgba(12, 35, 64, 0.46) 58%, rgba(12, 35, 64, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(12, 35, 64, 0) 0%, rgba(12, 35, 64, 0) 21%, rgba(12, 35, 64, 0.46) 58%, rgba(12, 35, 64, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000c2340', endColorstr='#0c2340', GradientType=0); /* IE6-9 */
}
.article-hero .wrapper {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%); /* Safari用 */
    transform: translateX(-50%);
    bottom: 36px;
    z-index: 2;
    color: #fff;
}
.article-hero h2 {
    margin: -36px auto 10px;
    font-size: 42px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}
/*-----ARTICLE-----*/
#article-wrapper {
    padding: 40px 0;
}
#article-wrapper article {
    margin: 0 0 60px;
    display: flex;
    flex-wrap: wrap;
}
/*ARTICLE-IMAGE*/
.article__img {
    width: 100%;
    position: relative;
    margin: 0 0 24px;
}
.article__img img {
    width: 100%;
    height: auto;
}
.article__img figcaption {
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    color: #7c858c;
    line-height: 1.4;
}
.article__img--catch-copy {
    position: absolute;
}
.copy-location_A {
    top: 40px;
    left: -40px;
}
.copy-location_B {
    top: 340px;
    left: -40px;
}
.article__img--catch-copy p {
    margin: 5px 0;
    padding: 0 14px;
    font-size: 28px;
    font-weight: 700;
    display: inline-block;
}
/*ARTICLE-TITLE*/
.article__title {
    width: 35%;
    padding: 0 30px 0 0;
    box-sizing: border-box;
}
.article__title h3 {
    font-size: 28px;
}
.article__title h3 p {
    margin: 4px 0 20px;
    font-size: 18px;
    color: #7c858c;
}
.article__title--btn {
    text-decoration: none;
    border: solid 2px #6244bb;
    color: #6244bb;
    font-weight: 500;
}
.article__title--btn img {
    padding: 2px 0;
}
/*ARTICLE-CONTENTS*/
.article__contents {
    width: 65%;
    padding: 0 0 0 30px;
    border-left: solid 1px #d2d2ce;
    box-sizing: border-box;
}
.article__contents--txt p {
    margin: 0 0 1em;
}
.article__contents--txt figcaption {
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    color: #7c858c;
    opacity: .8;
    margin: 0 0 1.5em;
    line-height: 1.4;
}
/*ARTICLE-INFORMATION*/
.info a {
    text-decoration: none;
    color: #212529;
}
.info__list {
    margin: 10px 0;
}
.info__list--title {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
    box-sizing: border-box;
    background: rgba(182, 184, 220, .3);
    cursor: pointer;
    font-weight: 600;
}
.info__list--title-btn {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
    box-sizing: border-box;
    background: rgba(182, 184, 220, .3);
    cursor: pointer;
    font-weight: 600;
}
.info__list--contents {
    display: none;
    background: rgba(182, 184, 220, .1);
    padding: 10px 20px;
}
.info__list--contents dl {
    display: flex;
    margin: 10px 0;
    font-size: 13px;
}
.info__list--contents dt {
    width: 30%;
}
.info__list--contents dd {
    width: 70%;
}
.info__list--contents a {
    color: #6244bb;
    text-decoration: underline;
}
@media screen and (max-width: 1090px) {
    .copy-location_A {
        top: 5px;
        left: -10px;
    }
    .copy-location_B {
        top: 34vw;
        left: -10px;
    }
}
@media screen and (max-width: 940px) {
    .article-hero {
        height: 70vw;
    }
    .article-hero::after {
        height: 70vw;
    }
    .article-hero .wrapper {
        bottom: 2vw;
        padding: 0 10px;
    }
    .article-hero h1 img {
        width: 40%;
        height: auto;
    }
    .article-hero h2 {
        margin: -42px auto 0;
        font-size: 30px;
    }
    .article__img img {
        width: 100%;
        height: auto;
    }
    .copy-location_A {
        top: 5px;
        left: -5px;
    }
    .copy-location_B {
        top: 34vw;
        left: -5px;
    }
    /*GOOGLE-MAP*/
    #google-map iframe {
        width: 100%
    }
}
@media screen and (max-width: 767px) {
    .article-hero {
        height: 90vw;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .article-hero::after {
        height: 90vw;
        background: -moz-linear-gradient(top, rgba(12, 35, 64, 0) 1%, rgba(12, 35, 64, 0) 41%, rgba(12, 35, 64, 0.25) 59%, rgba(12, 35, 64, 1) 77%, rgba(12, 35, 64, 1) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top, rgba(12, 35, 64, 0) 1%, rgba(12, 35, 64, 0) 41%, rgba(12, 35, 64, 0.25) 59%, rgba(12, 35, 64, 1) 77%, rgba(12, 35, 64, 1) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, rgba(12, 35, 64, 0) 1%, rgba(12, 35, 64, 0) 41%, rgba(12, 35, 64, 0.25) 59%, rgba(12, 35, 64, 1) 77%, rgba(12, 35, 64, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000c2340', endColorstr='#0c2340', GradientType=0); /* IE6-9 */
    }
    .article-hero .wrapper {
        bottom: 3vw;
        padding: 0 10px;
    }
    .article-hero h1 img {
        width: 46%;
        height: auto;
    }
    .article-hero h2 {
        margin: -20px auto 4px;
        font-size: 5.5vw;
    }
    .article__img--catch-copy p {
        margin: 2px 0;
        padding: 0 7px;
        font-size: 16px;
    }
    /*-----ARTICLE-----*/
    #article-wrapper {
        padding: 20px 0;
    }
    /*ARTICLE-IMAGE*/
    .article__img {
        margin: 0 0 10px;
    }
    .article__img figcaption {
        font-size: 12px;
    }
    /*ARTICLE-TITLE*/
    .article__title {
        width: 100%;
        padding: 0;
    }
    .article__title h3 {
        font-size: 18px;
    }
    .article__title h3 p {
        margin: 0 0 0.5em;
        font-size: 16px;
    }
    .article__title .button {
        display: inline-block;
        margin: 0 0 20px;
        padding: 0.25em 1em;
        text-align: center;
        font-size: 12px;
        border: solid 1px #6244bb;
    }
    /*ARTICLE-CONTENTS*/
    .article__contents {
        width: 100%;
        padding: 0;
        border-left: none;
    }
    /*GOOGLE-MAP*/
    #google-map iframe {
        height: 300px;
    }
}
@media screen and (max-width: 560px) {
    .article-hero {
        height: 100vw;
    }
    .article-hero::after {
        height: 100vw;
    }
}
@media screen and (max-width: 420px) {
    .article-hero {
        height: 120vw;
    }
    .article-hero::after {
        height: 120vw;
    }
    .article__title h3 {
        font-size: 4.8vw;
    }
    .article__title h3 p {
        font-size: 3.8vw;
    }
    .article-hero p {
        font-size: 3.9vw;
    }
}