@charset "UTF-8";
/* CSS Document */
.menu,.introduction__text,.features {
    font-family:'Zen Old Mincho', serif; 
}
body{
    background-color:#FFFDFD ;
}
.para{
    background-color:#FFFDFD ;
}
/* --------------------------------
Hero
-------------------------------- */

/* ------ slide image ------- */
.hero-slide__img {
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: slideAnime;
    animation-timing-function: ease;
    display: block;
    min-height: 105vh;
    object-fit: cover;
    opacity: 0;
    width: 100%;
}

.hero-slide__item:nth-of-type(1) .hero-slide__img {
    animation-delay: 0s;
}

.hero-slide__item:nth-of-type(2) .hero-slide__img {
    animation-delay: 5s;
}

.hero-slide__item:nth-of-type(3) .hero-slide__img {
    animation-delay: 10s;
}

.hero-slide__item:nth-of-type(4) .hero-slide__img {
    animation-delay: 15s;
}

@keyframes slideAnime {
    0% {
        opacity: 0;
    }

    16% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    49% {
        opacity: 0
    }

    100% {
        opacity: 0;
        transform: translateX(-10%);
    }
}
/* ------ hero area ------- */
.hero {
    height: 95vh;
    overflow: hidden;
    position: relative;
}
@media(max-width:768px) {
    .hero {
        height: 80vh;
    }
}
/* ------ hero title ------- */
.hero__title {
    position: absolute;
    top:50%;
    left:43%;
    width: 15%;
}

.hero-slide__item {
    bottom: 0;
    height: 100%;
    position: absolute;
    right: -10%;
    width: 110%;
}
@media(max-width:768px){
    .hero__title {
        left: 40%;
        width: 20%;
}
}

/* --------------------------------
introduction
-------------------------------- */
.introduction {
    padding-top: 120px;
    text-align: center;
    padding-bottom:120px;
    margin-bottom: 300px;
    background-color:#FFFDFD ;
}
.introduction::after{
    content:"";
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    padding-top: 100px;
    background: url(../img/para.jpg) no-repeat center/cover;
    z-index:-1;
}
.introduction__text {
    font-size: 2rem;
    line-height: 2;
}
.introduction__text:first-child{
    padding-bottom: 30px;
}
@media(max-width:768px) {
    .introduction {
        padding-top: 80px;
        padding-bottom: 80px;
        margin-bottom:180px;
    }
    .introduction__text {
        font-size: 1.6rem;
    }
    .introduction__text:first-child{
        padding-bottom: 20px;
    }
}
/* --------------------------------
features
-------------------------------- */
.features {
    padding-top: 120px;
    padding-bottom: 120px;
}

.features__flex_item{
    flex-basis: 50%;
}

.features__title{
    text-align: center;
}
.features__sub-title-en{
    font-family: 'Klee One', cursive;
    font-size: 2.4rem;
    color: #8B8A8A;
    padding-left: 20px;
}
.features__items {
    margin-top: 56px;
}
.features__item:not(:last-of-type) {
    margin-bottom: 70px;
}
.features__item__title {
    margin:0 0 20px 0;
}

.features__column {
    display: flex;
    align-items: center;
}

.features__image {
    flex-basis: 40%;
}

.features__text {
    flex-basis: 60%;
    padding-right: 100px;
    padding-left: 100px;
}

.features__item__description {
    margin-top: 40px;
    font-size: 1.8rem;
    line-height: 2;
}

.features__item__link {
    font-family: 'Klee One', cursive;
    font-size: 1.6rem;
    padding:0 48px 10px 36px;
    position:relative;
    background: url(../SVG/arrow_right.svg) no-repeat left bottom;
}

.features__item__link_button {
    margin-top: 24px;
    text-align: right;
}

.features__item__link_button:hover {
    transform:translate(10px,0);
    opacity:0.7;
    transition-duration:0.4s;
}

.features__item__description {
    font-family:'Zen Old Mincho', serif; 
}

@media(max-width:768px) {
    .features {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    .features__items {
        margin-top: 40px;
    }
    .features__column {
        display: block;
    }
    .features__image {
        margin-bottom: 30px;
    }
    .features__sub-title-en{
        font-size: 1.4rem;
    }
    .features__item__description {
    margin-top: 30px;
    font-size: 1.6rem;
    }
    .features__text {
        padding-right: 40px;
        padding-left: 40px;
    }
    .features__item__link {
        padding: 0 40px 5px 40px;
        font-size: 1.4rem;
    }
}

/* --------------------------------
access 
-------------------------------- */
.access {
    padding-top: 120px;
}

.access__inner {
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 40px;
    padding-left: 40px;
}

.access__block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access__map {
    margin-top: 56px;
    margin-bottom: 40px;
}

.access__text {
    margin-bottom: 24px;
    text-align: center;
    line-height: 2;
}

.access__text span {
    color:#B5A69D;
}

.access__list {
    font-size: 1.8rem;
}

.access__item {
    padding-left: 2em;
    text-indent: -2em; 
}

.access__item::before {
    content: "●";
    color:#B5A69D;
}
/* end access */

@media(max-width:768px) {
    .access {
        padding-top: 60px;
    }
    .access__map {
        max-width:100%;  
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .access__text {
        font-size: 1.4rem;
    }
    .access__item {
        font-size: 1.4rem;
    }
}
