@charset "utf-8";
/**
 * TOPページCSS
 */
/*** スタイル打消し ***/
@media screen and (min-width: 768px) {
    #navigation {
        border-bottom: none!important;
        height: 69px; /* - border */
    }
}
/*** 見出し ***/
#jumbotron {
}
.jumbotron-inner {
    min-height: 550px;
}
.jumbotron-scroll {
    width: 10%;
    max-width: 100px;
    text-align: center;
}
.facebook-link {
    display: block;
    margin-bottom: 20px;
}
.scroll-btn {
    color: #333;
    font-size: 10px;
    letter-spacing: 3px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.scroll-btn:hover {
    color: #333;
    opacity: 0.8;
    text-decoration: none;
}
.scroll-btn .scroll-animation {
    display: inline-block;
    position: relative;
    width: 1px;
    height: 100px;
    margin-top: 20px;
    background: #ccc;
}
@keyframes scrollAnimation {
    0% {
        top: 0px;
        height: 0px;
        animation-timing-function: ease-in;
    }
    33% {
        top: 0px;
        height: 50px;
        animation-timing-function: linear;
    }
    66% {
        top: 50px;
        height: 50px;
        animation-timing-function: linear;
    }
    100% {
        top: 100px;
        height: 0px;
        animation-timing-function: ease-out;
    }
}
.scroll-btn .scroll-animation::after {
    display: inline-block;
    position: absolute;
    width: 1px;
    content: "";
    background: #333;
    animation: scrollAnimation 1.5s infinite;
}
.jumbotron-img {
    position: relative;
}
/** slideshow start **/
.slideshow {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 0;
    list-style-type: none;
    overflow: hidden;
    z-index: -1;
}
.slideshow li {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
}
.slideshow li.active {
    opacity: 1;
    -webkit-animation: fadeInOut 6s forwards linear;
    -moz-animation: fadeInOut 6s forwards linear;
    -ms-animation: fadeInOut 6s forwards linear;
    animation: fadeInOut 6s forwards linear;
}
.slideshow li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}
@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    16.67% {
        opacity: 1;
    }
    83.33% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes animationRL {
    from {
        -webkit-transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
        -moz-transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
        -ms-transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
        transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
    }
    to {
        -webkit-transform: translate(-3%, 0) scale(1.03) rotate(0.0001deg);
        -moz-transform: translate(-3%, 0) scale(1.03) rotate(0.0001deg);
        -ms-transform: translate(-3%, 0) scale(1.03) rotate(0.0001deg);
        transform: translate(-3%, 0) scale(1.03) rotate(0.0001deg);
    }
}
.slideshow li[data-direction=rl] img {
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
}
.slideshow li[data-direction=rl].active img {
    -webkit-animation: animationRL 6s forwards linear;
    -moz-animation: animationRL 6s forwards linear;
    -ms-animation: animationRL 6s forwards linear;
    animation: animationRL 6s forwards linear;
}

@keyframes animationLR {
    from {
        -webkit-transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
        -moz-transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
        -ms-transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
        transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
    }
    to {
        -webkit-transform: translate(3%, 0) scale(1.03) rotate(0.0001deg);
        -moz-transform: translate(3%, 0) scale(1.03) rotate(0.0001deg);
        -ms-transform: translate(3%, 0) scale(1.03) rotate(0.0001deg);
        transform: translate(3%, 0) scale(1.03) rotate(0.0001deg);
    }
}
.slideshow li[data-direction=lr] img {
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}
.slideshow li[data-direction=lr].active img {
    -webkit-animation: animationLR 6s forwards linear;
    -moz-animation: animationLR 6s forwards linear;
    -ms-animation: animationLR 6s forwards linear;
    animation: animationLR 6s forwards linear;
}

@keyframes animationBT {
    from {
        -webkit-transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
        -moz-transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
        -ms-transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
        transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
    }
    to {
        -webkit-transform: translate(0, -3%) scale(1.03) rotate(0.0001deg);
        -moz-transform: translate(0, -3%) scale(1.03) rotate(0.0001deg);
        -ms-transform: translate(0, -3%) scale(1.03) rotate(0.0001deg);
        transform: translate(0, -3%) scale(1.03) rotate(0.0001deg);
    }
}
.slideshow li[data-direction=bt] img {
    -webkit-transform-origin: 50% 0%;
    -moz-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
}
.slideshow li[data-direction=bt].active img {
    -webkit-animation: animationBT 6s forwards linear;
    -moz-animation: animationBT 6s forwards linear;
    -ms-animation: animationBT 6s forwards linear;
    animation: animationBT 6s forwards linear;
}

@keyframes animationTB {
    from {
        -webkit-transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
        -moz-transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
        -ms-transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
        transform: translate(0, 0) scale(1.03) rotate(0.0001deg);
    }
    to {
        -webkit-transform: translate(0, 3%) scale(1.03) rotate(0.0001deg);
        -moz-transform: translate(0, 3%) scale(1.03) rotate(0.0001deg);
        -ms-transform: translate(0, 3%) scale(1.03) rotate(0.0001deg);
        transform: translate(0, 3%) scale(1.03) rotate(0.0001deg);
    }
}
.slideshow li[data-direction=tb] img {
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}
.slideshow li[data-direction=tb].active img {
    -webkit-animation: animationTB 6s forwards linear;
    -moz-animation: animationTB 6s forwards linear;
    -ms-animation: animationTB 6s forwards linear;
    animation: animationTB 6s forwards linear;
}
/** slideshow end **/
.jumbotron-img .caption {
    position: absolute;
    right: 40px;
    bottom: 26px;
    color: #fff;
}
.jumbotron-content {
    height: 100%;
    max-width: 445px;
}
.jumbotron-text {
    margin-top: 30px;
    margin-left: 30px;
    padding: 32px;
    background: #b6983e;
    color: #fff;
    opacity: 0.9;
}
.jumbotron-text h1 {
    font-size: 25px;
    line-height: 1.7;
    letter-spacing: 2px;
    font-weight: normal;
}
.jumbotron-text p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.9;
}
.jumbotron-bnr {
    margin-left: 30px;
    margin-bottom: 32px;
}
.jumbotron-slider {
    width: 100%;
    max-width: calc(338px + 2px * 2);
    text-align: center;
}
.jumbotron-slider .slick-list {
    border: 2px solid #fff;
    max-height: 94px;
}
.jumbotron-slider .slick-slide a {
    display: block;
}
.jumbotron-slider img {
    width: 100%;
}
.jumbotron-slider .slick-prev,
.jumbotron-slider .slick-next {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -25px;
    margin: auto;
    display: block;
    width: 20px;
    height: 20px;
    /* button reset from*/
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    color: transparent;
    /* button reset to */
    opacity: 1;
    transition: left .15s, right .15s;
}
.jumbotron-slider .slick-next {
    right: -25px;
    left: auto;
}
.jumbotron-slider .slick-prev:hover {
    left: -28px;
}
.jumbotron-slider .slick-next:hover {
    right: -28px;
}
.jumbotron-slider .slick-prev::before,
.jumbotron-slider .slick-next::before,
.jumbotron-slider .slick-prev::after,
.jumbotron-slider .slick-next::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 11px;
    border-right: 1px solid #fff;
}
.jumbotron-slider .slick-prev::before {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    top: 0;
}
.jumbotron-slider .slick-prev::after {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    bottom: 0;
}
.jumbotron-slider .slick-next::before {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    top: 0;
}
.jumbotron-slider .slick-next::after {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    bottom: 0;
}
.jumbotron-slider .slick-dots {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -12px;
    padding: 0;
    list-style: none;
    /* Safari対応 余白 */
    font-size:0;
    letter-spacing: -1px;
}
.jumbotron-slider .slick-dots li {
    display: inline-block;
    height: 4px;
    width: 22px;
    margin-right: 5px;
    margin-left: 5px;
    /* Safari対応 余白 */
    letter-spacing: normal;
}
.jumbotron-slider .slick-dots li button {
    background-color: #bdbdbd;
    opacity: 1;
    display: block;
    height: 100%;
    width: 100%;
    line-height: 0;
    color: transparent;
    border: 0;
    outline: none;
}
.jumbotron-slider .slick-dots li.slick-active button {
    background-color: #b6983e;
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .jumbotron-text h1 {
        font-size: calc(21px + ((1vw - .768rem) * 2.679)); /* 27 to 21 */
    }
}
/* スマホ */
@media screen and (max-width: 767px) {
    .jumbotron-img {
        height: 100%;
    }
    .jumbotron-img .caption {
        position: static;
        text-align: center;
    }
    .jumbotron-content {
        height: calc(100% - 30px);
        width: auto;
        margin: 0 auto;
        padding: 45px 40px 36px;
    }
    .jumbotron-text {
        width: 100%;
        margin: 0 auto;
        padding: 26px 24px;
    }
    .jumbotron-text h1 {
        text-align: center;
        font-size: 21px;
        line-height: 1.5;
    }
    .jumbotron-text p {
        font-size: 14px;
        line-height: 1.9;
        margin-top: 26px;
    }
    .jumbotron-bnr {
        margin: 0;
    }
    .jumbotron-slider {
        max-width: calc(292px + 2px * 2);
        margin: 0 auto;
    }
}
.sp-jumbotron-text p {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.8;
}

/*** 様々な会員サービス ***/
#service {
}
#service .btn-detail {
    border: 1px solid #898989;
    width: 80%;
    max-width: 280px;
    margin-top: 40px;
    padding: calc((46px - 15px * 1.5) / 2) 0;
}
#service h5 {
    font-size: 18px;
    letter-spacing: 5px;
}
#service h6 {
    font-size: 18px;
    line-height: 1.5;
    margin-top: calc(24px - (18px * 1.5 - 18px) / 2); /* 24px - (line-height - font-size) / 2 */
}
.service-unit {
    margin-top: 52px;
}
.service-unit:first-of-type {
    margin-top: 16px;
}
.service-unit > .row {
    align-items: center;
}
.service-unit img {
    width: 100%;
}
/* タイトル前の横線 */
.service-introduce::before {
    position: absolute;
    top: calc(18px * 1.5 / 2); /* line-height(px) / 2 */
    left: 0;
    margin: auto;
    content: "";
    width: 25px;
    height: 1px;
    background: #b6983e;
}
.service-introduce p {
    margin-top: calc(24px - (15px * 1.8 - 15px) / 2);
    font-size: 15px;
    line-height: 1.8;
}
.service-introduce .btn {
    padding-right: 36px;
    padding-left: 0;
    font-size: 13px;
}
.service-introduce .btn img {
    width: auto;
}
/* PC・タブレット */
@media screen and (min-width: 768px) {
    .service-introduce {
        position: relative;
        margin-left: calc(50px - 15px); /* 50px - col#padding-left */
        margin-right: calc(80px - 15px);
        padding-left: 40px;
    }
    .service-introduce-left {
        margin-right: 50px!important;
        margin-left: calc(80px - 15px);
    }
}
/* Large Desktop */
@media screen and (min-width: 1200px) {
    .service-introduce {
        margin-right: calc(80px - 15px + (100vw - 1200px) / 2);
    }
    .service-introduce-left {
        margin-left: calc(80px - 15px + (100vw - 1200px) / 2);
    }
}
/* スマホ */
@media screen and (max-width: 767px) {
    #service h5 {
        font-size: 24px;
        text-align: center;
    }
    #service .caption {
        padding-right: 15px;
    }
    .service-unit {
        margin-top: auto;
    }
    .service-unit img {
        margin-top: 24px;
    }
    .service-introduce::before {
        content: normal;
    }
    #service hr{
        margin: 3.6rem -15px;
    }
    #service .btn-detail {
        margin-top: 4rem;
    }
}

/*** PREMIST CLUB コラム ***/
#column {
    background: rgba(182, 152, 62, 0.85);
    padding-bottom: 40px;
    text-align: center;
}
#column h1 {
    font-weight: normal;
}
#column p {
    font-size: 15px;
    line-height: 1.8;
}
.column-title {
    position: relative;
    margin-top: 40px;
    padding-left: 40px;
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    text-align: left;
}
/* タイトル前の横線 */
.column-title::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    width: 25px;
    height: 1px;
    background: #fff;
}
#column .column-card {
    height: 100%;
    margin-top: 16px;
    border: none;
}
#column .column-card-img-top {
    width: 100%;
}
#column .column-card-body {
    position: relative;
    padding: 24px 20px 60px;
    background: #fff;
}
#column .column-card-text {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
}
#column .column-card-text .spacer {
    display: block;
    width: 1px;
    height: 15px;
}
#column .column-card .btn {
    position: absolute;
    right: 20px;
    bottom: 24px;
    padding-right: 36px;
    font-size: 13px;
}
#column .column-link .btn {
    margin-top: 24px;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 10px;
}
/* PC・タブレット */
@media screen and (min-width: 768px) {
    #column {
        padding-right: calc(80px - 28px); /* 80px - col#padding-x */
        padding-left: calc(80px - 28px);
    }
    .column-row .col-md-6:first-of-type {
        padding-right: 30px;
    }
    .column-row .col-md-6:last-of-type {
        padding-left: 30px;
    }
}
/* スマホ */
@media screen and (max-width: 767px) {
    #column p {
        text-align: left;
    }
    .column-title {
        font-size: 18px;
    }
    .column-row .col-12 {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/*** INFORMATION (unused) ***/
#information {
}
.imformation-list {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.8;
}
.imformation-list dl {
    padding: 19px 0;
    margin-bottom: 0;
    border-top: 1px solid #f0f0f0;
}
.imformation-list dl:last-child {
    border-bottom: 1px solid #f0f0f0;
}
.imformation-list dt {
    float: left;
    width: 7em;
    font-weight: normal;
}
#information a {
    color: currentColor;
}
/* PC・タブレット */
@media screen and (min-width: 768px) {
    #information {
        padding-right: calc(80px - 15px); /* 80px - col#padding-x */
        padding-left: calc(80px - 15px);
    }
}
/* スマホ */
@media screen and (max-width: 767px) {
    .imformation-list dt {
        float: none;
    }
}
