@charset "UTF-8";
body {
    line-height: 1.8;
    font-family: 'Roboto', 'hiragino kaku gothic pro', 'Noto Sans JP', sans-serif;
    /*max-width: 1440px;
    margin: 0 auto;*/
    color: #212529;
}
h1, h2, h3 {
    line-height: 1.6;
}
h2 {
    font-size: 28px;
}
a {
    color: #6244bb;
}
.wrapper {
    width: 980px;
    margin: auto;
}
.button {
    text-decoration: none;
    border-radius: 3px;
}
.wrapper .button {
    padding: 0.5em 2em;
    position: relative;
}
.pc-only {
    display: block;
}
.tabsp-only {
    display: none;
}
.sp-only {
    display: none;
}
.caution {
    width: 100%;
    font-size: 14px;
    opacity: .5;
}
.caption {
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    color: #7c858c;
    line-height: 1.2;
}
.txt-center {
    text-align: center;
}
.txt-indent {
    margin-left: 1em;
}
.copyright {
    margin: 1em 0;
}
/*----- ANIMATION -----*/
.animation-0, .animation-1, .animation-2, .animation-3, .animation-4, .animation-5, .animation-6, .animation-7, .animation-8, .animation-9, .animation-10, .animation-11, .animation-12 {
    transition-duration: .8s;
    transform: translateY(20px);
    opacity: 0;
}
.animation-after {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: .2s;
}
.delay-2 {
    transition-delay: .3s;
}
.delay-3 {
    transition-delay: .4s;
}
.delay-4 {
    transition-delay: .6s;
}
@keyframes fadein {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/*-----SLOPE-----*/
.slope-leftup {
    overflow: hidden;
    padding: calc(100vw * 0.12) 0;
    position: relative;
    top: -8.3vw;
    z-index: 1;
}
.slope-leftup::before {
    content: '';
    position: absolute;
    transform-origin: center;
    transform: rotate(-3deg);
    width: 200vw;
    height: calc(100% - 0.11 * (0.11 * 50% + 50vw) * 2);
    top: calc(0.11 * (0.11 * 50% + 50vw));
    left: -50vw;
    z-index: -1;
}
.slope-rightup {
    overflow: hidden;
    padding: calc(100vw * 0.12) 0;
    position: relative;
    top: -8.3vw;
    z-index: 1;
}
.slope-rightup::before {
    content: '';
    position: absolute;
    transform-origin: center;
    transform: rotate(3deg);
    width: 200vw;
    height: calc(100% - 0.11 * (0.11 * 50% + 50vw) * 2);
    top: calc(0.11 * (0.11 * 50% + 50vw));
    left: -50vw;
    z-index: -1;
}
/*-----GRID-----*/
#grid-pickup-01 {
    margin: -20% 0 0;
    padding: 14% 0;
    background: url("../img/common/bg-sky.jpg");
    background-size: cover;
}
#grid-pickup-02 {
    margin: -20% 0 0;
    padding: 16% 0;
    background: url("../img/common/bg-sky.jpg");
    background-size: cover;
}
.grid h2 {
    text-align: center;
    margin: 0 auto 1em;
}
.grid .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.grid__item {
    position: relative;
    width: 298px;
    height: 360px;
    display: block;
    color: #fff;
    transition-delay: 0s;
    transition-duration: .2s;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    border-radius: 2%;
}
.grid__item:hover {
    transform: scale(1.05);
}
.grid__item::after {
    content: '';
    position: absolute;
    width: 298px;
    height: 360px;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#8c000000', GradientType=0); /* IE6-9 */
    border-radius: 5px;
}
.grid__item p {
    position: absolute;
    margin: 0 1em;
    bottom: 1em;
    text-align: left;
    z-index: 2;
}
.grid__item span {
    display: inline-block;
    font-weight: 700;
    border-bottom: solid 2px #fff;
    margin: 0 0 10px;
}
#grid-recommend {
    padding: 40px 0;
    background: rgba(124, 135, 142, .1);
}
/*-----BANNER-----*/
#bnr {
    padding: 0 0 40px;
    background: rgba(124, 135, 142, .1);
    background-size: cover;
}
#bnr-top {
    margin: -20% 0 0;
    padding: 16% 0 6%;
    background: rgba(124, 135, 142, .1);
    background-size: cover;
}
#bnr-united {
    background-image: url("../img/common/bnr-united.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}
#bnr-united::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: -moz-linear-gradient(left, rgba(12, 35, 64, 0.54) 0%, rgba(12, 35, 64, 0) 51%, rgba(12, 35, 64, 0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(12, 35, 64, 0.54) 0%, rgba(12, 35, 64, 0) 51%, rgba(12, 35, 64, 0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(12, 35, 64, 0.54) 0%, rgba(12, 35, 64, 0) 51%, rgba(12, 35, 64, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8a0c2340', endColorstr='#000c2340', GradientType=1); /* IE6-9 */
    border-radius: 5px;
}
.bnr {
    padding: 2em;
    border-radius: 5px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    transition-duration: .2s;
    display: block;
    color: #0c2340;
    text-decoration: none;
}
.bnr h2 {
    position: relative;
    z-index: 2;
}
.bnr p {
    margin: 0.5em 0 1em;
    position: relative;
    z-index: 2;
    font-size: 90%;
}
.bnr .button {
    position: relative;
    z-index: 2;
}
.bnr:hover {
    transform: scale(1.05);
}
/*-----AGENT-----*/
#bnr-agt {
    padding: 3em 0;
}
#bnr-agt h2 {
    text-align: center;
}
.bnr-agt__img {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    line-height: 1;
}
.bnr-agt__img a {
    width: 48%;
    margin: 1em 0;
    transition-duration: .2s;
}
.bnr-agt__img a:hover {
    transform: scale(1.05);
}
.bnr-agt__img img {
    width: 100%;
    height: auto;
}
/*-----FOOTER-----*/
footer {
    text-align: center;
    font-weight: lighter;
}
footer .wrapper {
    padding: 1.5em 0;
    font-size: 14px;
}
footer .credit {
    opacity: .6;
}
.pagetop-button {
    display: block;
    opacity: .4;
    transition-duration: .2s;
}
.pagetop-button img {
    display: block;
    margin: 1em auto;
}
.pagetop-button:hover {
    opacity: 1;
}
@media screen and (max-width: 1000px) {
    .wrapper {
        width: 95%;
    }
    .grid__item {
        width: 278px;
        height: 330px;
    }
    .grid__item::after {
        width: 278px;
        height: 330px;
    }
}
@media screen and (max-width: 940px) {
    .tabsp-only {
        display: block;
    }
    .grid__item {
        width: 238px;
        height: 290px;
    }
    .grid__item::after {
        width: 238px;
        height: 290px;
    }
}
@media screen and (max-width: 767px) {
    body {
        line-height: 1.6;
        font-size: 15px;
    }
    h2 {
        font-size: 18px;
    }
    .wrapper {
        width: 95%;
    }
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
    .caption {
        font-size: 12px;
    }
    .bnr {
        padding: 20px;
    }
    #bnr-united {
        background-image: url("../img/common/bnr-united_sp.jpg");
        background-position: top center;
        background-repeat: no-repeat;
    }
    #bnr-united::after {
        background: -moz-linear-gradient(left, rgba(12, 35, 64, 0.54) 0%, rgba(12, 35, 64, 0.54) 14%, rgba(12, 35, 64, 0) 51%, rgba(12, 35, 64, 0) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(left, rgba(12, 35, 64, 0.54) 0%, rgba(12, 35, 64, 0.54) 14%, rgba(12, 35, 64, 0) 51%, rgba(12, 35, 64, 0) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, rgba(12, 35, 64, 0.54) 0%, rgba(12, 35, 64, 0.54) 14%, rgba(12, 35, 64, 0) 51%, rgba(12, 35, 64, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8a0c2340', endColorstr='#000c2340', GradientType=1); /* IE6-9 */
    }
    /*-----SLOPE-----*/
    .slope-leftup {
        top: -8.8vw;
        padding: calc(120vw * 0.12) 0;
    }
    /*-----GRID-----*/
    #grid-recommend {
        padding: 40px 0 0;
        background: rgba(124, 135, 142, .1);
    }
    .grid .wrapper {
        width: 100%;
        padding: 0 10px 40px;
        overflow-y: hidden;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
        flex-wrap: nowrap;
        box-sizing: border-box;
    }
    .grid__item {
        margin: auto 10px;
        width: 238px;
        height: 290px;
    }
    .grid__item::after {
        width: 238px;
        height: 290px;
    }
    .grid__item:hover {
        transform: scale(1);
    }
    /*----- ANIMATION -----*/
    .animation-0, .animation-1, .animation-2, .animation-3, .animation-4, .animation-5, .animation-6, .animation-7, .animation-8, .animation-9, .animation-10, .animation-11, .animation-12 {
        transform: translateY(0);
        opacity: 1;
    }
}
@media screen and (max-width: 420px) {
    .grid__item {
        margin: 0 14px 0 0;
    }
    #grid-pickup-01 {
        padding: 16% 0 6%;
    }
    #grid-pickup-02 {
        padding: 16% 0 6%;
    }
    /*-----AGENT-----*/
    #bnr-agt {
        padding: 2em 0;
    }
    #bnr-agt h2 {
        margin: 0 0 1em;
    }
    .bnr-agt__img a {
        width: 100%;
        margin: .25em 0;
    }
    footer .credit {
        font-size: 2.2vw;
    }
    .copyright {
        font-size: 3vw;
    }
    #footer-cpn-logo {
        width: 40%;
        height: auto;
    }
}