@charset "UTF-8";

/* ===========================================
topCover
============================================*/
section.topCover {
    /* heigthは指定しないこと*/
    position: relative;
    margin-bottom: 0;
}

/* ////////////////　スライダー　////////////////// */
.slide-wrap {
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.slide-item {
    object-fit: cover;
}

.add-animation {
    animation: zoomfade 10s both;
}

@keyframes zoomfade {
    0% {
        /*transform: scale(1.05);*/
        transform: scale(1);
    }

    100% {
        /*transform: scale(1);*/
        transform: scale(1.05);
    }
}

.slider {
    position: relative;
}

.slick-dots li button:before {
    font-size: 8px;
    top: 16px;
    line-height: 1;
}


/* ///////////////////////////////////////// */

.topCover__catch {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #C98D68;
    font-family: var(--font-ttl);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    position: absolute;
    top: 50px;
    right: 23px;
    height: 100%;
}

.topCover__catch_1,
.topCover__catch_2 {
    padding: 12px 7px;
    background-color: rgb(255, 255, 255, 0.8);
    border-radius: 4px;
    letter-spacing: 2px;
    height: fit-content;
}

.topCover__catch_1 {
    margin-left: 16px;
}

.topCover__catch_2 {
    top: 48px;
    position: absolute;
}

/*====== min-width:900px ======*/
@media screen and (min-width:900px) {

    /* mvを左右余白とって丸く */
    section.topCover {
        padding: 0 60px;
    }

    .slider {
        border-radius: 60px;
    }

    .topCover__catch {
        font-size: 3rem;
        top: 50px;
        right: 7%;
    }

    .topCover__catch_1 {
        margin-left: 24px;
    }

    /*====== min-width:900px ======*/
}

/*====== min-width:1360px ======*/
@media screen and (min-width:1360px) {
    .slider {
        border-radius: 80px;
    }

    .topCover__catch {
        font-size: 3.8rem;
    }

    /*====== min-width:1360px ======*/
}

/* ===========================================
topNews
============================================*/
.topNews {
    position: relative;
}

.topNews__container {
    width: 87%;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.10);
    position: relative;
    /* top: -32px; */
    margin-top: 32px;
    font-family: var(--font-ttl);
}

.topNews__head {
    background: var(--accent1);
    border-radius: 20px 20px 0 0;
    padding: 10px 20px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
}

.topNews__main {
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    padding: 24px 16px 24px 16px;
    line-height: 1;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
}

.topNews__date {
    font-size: 1.4rem;
    color: var(--text_pale);
    margin-bottom: 6px;
}

.topNews__main-text {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.topNews__main-text:hover {
    color: var(--accent1);
}

.topNews__arrow {
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    letter-spacing: normal;
}

.topNews__arrow::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(./img/top/arrow_news.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 10px;
    -webkit-transition: -webkit-transform 280ms ease;
    transition: -webkit-transform 280ms ease;
    -o-transition: transform 280ms ease;
    transition: transform 280ms ease;
    transition: transform 280ms ease, -webkit-transform 280ms ease;
}

.topNews__arrow:hover::after {
    transform: translate3d(4px, 0, 0);
}

/*====== min-width:900px ======*/
@media screen and (min-width:900px) {
    .topNews {
        position: relative;
    }

    .topNews__container {
        max-width: 700px;
        display: flex;
        justify-content: center;
        position: absolute;
        width: 70%;
        top: -70px;
        left: 28px;
        border-radius: 100px;
    }

    .topNews__head {
        width: 23%;
        font-size: 1.4rem;
        padding: 20px 0px 20px 10px;
        border-radius: 100px 0 0 100px;
        letter-spacing: 1.6px;
        text-align: center;
    }

    .topNews__main {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 77%;
        border-radius: 0 100px 100px 0;
        padding: 20px 20px 20px 16px;
    }

    .topNews__date {
        font-size: 1.4rem;
        margin-bottom: 0;
    }

    .topNews__main-text {
        font-size: 1.4rem;
        margin-right: 40px;
        margin-bottom: 0;
    }

    /*====== min-width:900px ======*/
}

/* ===========================================
topAttractive 
============================================*/
.topAttractive {
    position: relative;
    margin-bottom: 80px;
}

.topAttractive__main {
    display: block;
    height: 75vw;
    width: 75vw;
    margin: 0 auto;
}

.topAttractive__main:hover .topAttractive__main-img img {
    transform-origin: 50% 50%;
    transform: scale(1.05);
    opacity: 0.85;
    transition: transform 1s cubic-bezier(.33, .73, 0, .83);
}

.topAttractive__main:hover .topAttractive__btn {
    background-color: var(--hover);
}

.topAttractive__main-img {
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.topAttractive__main-img img {
    height: 75vw;
    /* width: 75vw; */
    object-fit: cover;
    cursor: pointer;
    transition: transform 1s cubic-bezier(.33, .73, 0, .83);
}

.topAttractive__btn {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/*====== min-width:900px ======*/
@media screen and (min-width:900px) {
    .topAttractive {
        max-width: 1360px;
        margin: 0 auto;
        margin-bottom: 160px;
    }

    .topAttractive__main {
        height: 378px;
        width: 75vw;
        max-width: 1060px;
    }

    .topAttractive__main-img {
        border-radius: 320px;
    }

    .topAttractive__main-img img {
        height: 378px;
        width: 75vw;
    }

    .topAttractive__main img {
        max-width: 1060px;
    }

    .topAttractive__btn {
        bottom: -23px;
    }

    /*====== min-width:900px ======*/
}




/* topAttractive_icon ////////////////// */
.topAttractive__icon li {
    width: 40px;
    position: absolute;
    animation: 5s linear infinite icon_rotate;
    animation-timing-function: steps(2);
}

@keyframes icon_rotate {
    100% {
        transform: rotate(60deg);
    }
}

/*====== min-width:900px ======*/
@media screen and (min-width:900px) {
    .topAttractive__icon li {
        width: 70px;
    }

    /*====== min-width:900px ======*/
}

/* /////////////////// */
.icon_1 {
    top: 16%;
    left: 12%;
}

@media screen and (min-width:900px) {
    .icon_1 {
        top: 13%;
        left: 5%;
    }
}

/* /////////////////// */
.icon_2 {
    top: 81%;
    left: 9%;
    transform: rotate(120deg);
}

@media screen and (min-width:900px) {
    .icon_2 {
        top: 81%;
        left: 8%;
    }
}

/* /////////////////// */
.icon_3 {
    top: 16%;
    right: 10%;
    transform: rotate(210deg);
}

@media screen and (min-width:900px) {
    .icon_3 {
        top: 13%;
        right: 5%;
    }
}

/* /////////////////// */
.icon_4 {
    top: 81%;
    right: 9%;
    transform: rotate(280deg);
}

@media screen and (min-width:900px) {
    .icon_4 {
        top: 85%;
        right: 9%;
    }
}

/* /////////////////// */
.icon_5 {
    top: 41px;
    left: 33px;
}

.icon_6 {
    top: 41px;
    left: 33px;
}

.icon_7 {
    top: 41px;
    left: 33px;
}


/* ===========================================
topFeature 
============================================*/
.topSection__container {
    margin: 0 6.4%;
    text-align: center;
    margin-bottom: var(--pc_gutter_40);
}

.topSection__item {
    margin-bottom: var(--pc_gutter_40);
    cursor: pointer;
    display: block;
}

.topSection__item:hover .topSection__item-btn {
    opacity: 0.85;
    background-color: var(--hover);
}

.topSection__item:hover .topSection__item-img img {
    transform-origin: 50% 50%;
    transform: scale(1.05);
    opacity: 0.85;
    transition: transform 1s cubic-bezier(.33, .73, 0, .83);
}

.topSection__item-img {
    overflow: hidden;
    border-radius: 32px;
    margin-bottom: 12px;
}

.topSection__item-img img {
    /* height: 240px; */
    object-fit: cover;
    transition: transform 1s cubic-bezier(.33, .73, 0, .83);
}

.topSection__item-text {
    text-align: left;
    margin-bottom: var(--sp_gutter_12);
}

.topSection__item--title {
    margin: 12px auto;
}

/*====== min-width:900px ======*/
@media screen and (min-width:900px) {

    .topSection__container {
        display: flex;
        justify-content: space-between;
        width: calc(100% - 60px);
        max-width: 1260px;
        margin: 0 auto;
        margin-bottom: var(--pc_gutter_120);
    }

    .topSection__item {
        width: calc(100%/3 - 20px);
        margin-bottom: 0;
    }

    .topSection__item--title {
        margin: 16px auto;
    }

    .topSection__item-text {
        text-align: left;
        margin-bottom: 14px;
    }

    /*====== min-width:900px ======*/
}


/* ===========================================
topLifestyle
============================================*/
.topLifestyle {
    margin-top: 80px;
    margin-bottom: 0;
    position: relative;
}

.bg-nami {
    background-image: url(./img/naminami.svg);
    background-color: #ebefd77a;
    height: auto;
    width: 100%;
    background-size: auto 14px;
    background-repeat: repeat-x;
    padding-bottom: 40px;
}

.bg-nami:after {
    background-image: url(./img/naminami.svg);
    transform: rotate(180deg);
    background-color: #ebefd77a;
    content: '';
    display: block;
    width: 100%;
    height: 14px;
    background-size: auto 14px;
    background-repeat: repeat-x;
    position: absolute;
    left: 0;
    bottom: -14px;
}

.topLifestyle__container {
    justify-content: center;
    gap: 50px;
}

.topLifestyle__title {
    padding-top: 60px;
}

@media screen and (min-width:900px) {
    section.topLifestyle {
        margin-top: 120px;
        margin-bottom: 0;
    }

    .bg-nami {
        background-size: auto 30px;
        padding-bottom: 120px;
    }

    .bg-nami:after {
        height: 30px;
        background-size: auto 30px;
        bottom: -30px;
    }

    .topLifestyle__container {
        justify-content: center;
        gap: 50px;
    }

    .topLifestyle__title {
        padding-top: 120px;
    }

    .topLifestyle__item {
        width: calc(100%/2 - 100px);
        margin-bottom: 0;
    }

    .topLifestyle__item-img img {
        height: 300px;
        object-fit: cover;
        transition: transform 1s cubic-bezier(.33, .73, 0, .83);
    }

    /*====== min-width:900px ======*/
}

/* ===========================================
access 
============================================*/
.topAccess-title {
    margin-top: 50px;
}

.topAccess-map {
    height: 450px;
    margin: 0 auto;
    overflow: hidden;
}

/*====== min-width:900px ======*/
@media screen and (min-width:900px) {

    .topAccess-title {
        margin-top: 120px;
    }

    .topAccess-map {
        width: 77.94117647058824%;
        max-width: 1060px;
        height: 450px;
        margin: 0 auto;
        overflow: hidden;
    }
}

/*====== min-width:900px ======*/