@charset "UTF-8";
.top-mv__slider,
.top-mv__slider * {
    height: 100vh !important;
}

.top-mv__slider img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

/*SVGの横幅*/
.svganimeblock{
	max-width:600px;
	width:100%;
  margin: 0 auto;
}

/*SVGの可変*/
.svganimeblock svg{
	width:100%;
}

/*アニメーション前のパスの指定*/
.svganimeblock svg path {
		fill-opacity: 0;/*最初は透過0で見えない状態*/
		transition: fill-opacity .5s;/*カラーがつく際のアニメーション0.5秒で変化*/
		fill: none;/*塗りがない状態*/
		stroke: #fff;/*線の色*/
	}

/*アニメーション後に.doneというクラス名が付与された時のパスの指定*/
.svganimeblock svg.done path{
	  fill: #fff;/*塗りの色*/
	  fill-opacity: 1;/*透過1で見える状態*/
	  stroke: none;/*線の色なし*/
	}

.top-mv__copy {
    position: absolute;
    left: 0;
    top: calc(50% - 45px);
    width: 100%;
    font-size: 5.6rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .top-mv__copy {
        font-size: 4rem;
        top: calc(50% - 30px);
    }
}

@media screen and (max-width: 480px) {
  .svganimeblock{
	max-width:400px;
	width:100%;
  margin: 0 auto;
}
    .top-mv__copy {
        font-size: 3rem;
    }
    .top-mv__copy .f-30 {
        font-size: 1.8rem !important;
    }
}

.top-about::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 47%;
    height: 100%;
    background: url(../img/top/about_img02.jpg) no-repeat center / cover;
}

.top-about .w_50 {
    width: 50%;
/*    max-width: 420px;*/
}

@media screen and (max-width: 480px) {
    .top-about::before {
        display: none;
    }
    .top-about .w_50 {
        width: 100%;
        max-width: none;
    }
}

.top-feature ul li {
    width: 48%;
}

.top-feature__ttl {
    padding: 20px 15px 20px 60px;
    overflow: hidden;
}

.top-feature__ttl-num {
    position: absolute;
    top: 50%;
    left: -18px;
    font-size: 6rem;
    color: #E5E5E5;
    line-height: 1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

@media screen and (max-width: 480px) {
    .top-feature ul li {
        width: 100%;
    }
    .top-feature__ttl {
        padding-left: 45px;
    }
    .top-feature__ttl-num {
        left: -10px;
        font-size: 4rem;
    }
}

.top-cafe .top-sec__ttl,
.top-plan .top-sec__ttl,
.top-news.top-sec__ttl,
.top-map .top-sec__ttl {
    position: relative;
    padding-bottom: 28px;
}

.top-cafe .top-sec__ttl::after,
.top-plan .top-sec__ttl::after,
.top-news .top-sec__ttl::after,
.top-map .top-sec__ttl::after {
    content: '';
    position: absolute;
    left: calc(50% - 20px);
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #000;
}

.top-plan .top-sec__ttl::after,
.top-map .top-sec__ttl::after {
    left: 0;
}

.top-news .top-sec__ttl::after {
    background: #fff;
}

.top-cafe__cont {
    padding: 0 5%;
    background: url(../img/top/cafe_area.jpg) no-repeat center / cover;
}

.top-plan .w_50 {
    width: 52%;
    margin-left: 3%;
}

.top-sec__ttl.d-flex .en {
    margin-right: 40px;
}

.top-plan__list li {
    max-width: calc(50% + 470px);
}

.top-plan__list li:nth-child(2n),
.top-plan__list li:nth-child(2n+1) .top-plan__list-cont {
    margin-left: auto;
}

.top-plan__list li figure {
    height: 400px;
}

.top-plan__list li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-plan__list-cont {
    position: relative;
    max-width: 940px;
    margin-top: -50px;
    padding: 40px 50px;
    background: #fff;
    z-index: 2;
}

a.draw-border:hover,
a.draw-border:hover img {
    opacity: 1;
    filter: opacity(1);
    -webkit-filter: opacity(1);
}

a.draw-border button {
    position: relative;
    background: #fff;
    border: 1px solid #707070;
}

a.draw-border button::before,
a.draw-border button::after {
    box-sizing: inherit;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

a.draw-border .spin {
    height: 80px;
    width: 80px;
}

a.draw-border .spin::before,
a.draw-border .spin::after {
    top: 0;
    left: 0;
}

a.draw-border .spin::before {
    border: 2px solid transparent;
}

a.draw-border .spin:hover::before {
    border-top-color: #000;
    border-right-color: #000;
    border-bottom-color: #000;
    transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.10s, border-bottom-color 0.15s linear 0.20s;
}

a.draw-border .spin::after {
    border: 0 solid transparent;
}

a.draw-border .spin:hover::after {
    border-top: 2px solid #000;
    border-left-width: 2px;
    border-right-width: 2px;
    transform: rotate(270deg);
    transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
}

a.draw-border .circle {
    border-radius: 100%;
    box-shadow: none;
}

a.draw-border .circle::before,
a.draw-border .circle::after {
    border-radius: 100%;
}

@media screen and (max-width: 480px) {
    .top-plan__list li figure {
        height: 300px;
    }
    .top-plan__list-cont {
        width: calc(100% - 30px);
        margin-left: 15px !important;
        padding: 30px 10px;
    }
    .top-plan .w_50 {
        width: 100%;
        margin: 15px 0 0 0;
    }
    .top-plan .top-sec__ttl,
    .top-plan__list-cont .flex-1 {
        flex: none;
        width: 100%;
        text-align: center;
    }
    .top-plan__list-cont a.draw-border {
        margin: 15px auto 0;
    }
}

.top-news__ttl {
    background: url(../img/top/news_bg.jpg) no-repeat center / cover;
}

.top-news__list {
    padding: 0 4%;
}

.top-news__list li {
    position: relative;
    width: 50%;
    border-bottom: 1px solid #E3E3E3;
}

.top-news__list li::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: #000;
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
}

.top-news__list li:hover::before {
    width: 100%;
}

.top-news__list li:nth-child(2n+1) {
    padding-right: 4%;
    border-right: 1px solid #E3E3E3;
}

.top-news__list li:nth-child(2n) {
    padding-left: 4%;
}

.top-news__list li a {
    padding-right: 40px;
}

.top-news__list li a::after {
    content: url(../img/common/arrow.png);
    position: absolute;
    right: 0;
    top: calc(50% - 6px);
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
}

.top-news__list li a:hover::after {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}

@media screen and (max-width: 480px) {
    .top-news__list li {
        width: 100%;
    }
    .top-news__list li:nth-child(2n+1) {
        padding-right: 0;
        border-right: none;
    }
    .top-news__list li:nth-child(2n) {
        padding-left: 0;
    }
}

.top-map figure {
    margin-top: -50px;
}

@media screen and (max-width: 768px) {
    .top-map figure {
        margin-top: 15px;
    }
}
