/* mv */
.mv {
    position: relative;
}
.mv-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: auto;
    padding: 0 50px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: var(--main-column);
}
.mv-text {
    max-width: 318px;
}
.mv-link {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    line-height: 0;
    position: absolute;
    right: 0;
    bottom: 8px;
}
@media (max-width: 976px) {
    .mv {
        background: url(../images/mv.jpg) no-repeat;
        background-position: center;
        background-size: cover;
        height: 500px;
        position: relative;
    }
    .mv-inner {
        padding: 50px 25px 120px;
        position: static;
    }
    .mv .bg {
        display: none;
    }
    .mv-text {
        max-width: 260px;
    }
    .mv-link {
        bottom: 0;
        max-width: 220px;
    }
}
@media (max-width: 776px) {
    .mv-text {
        max-width: 240px;
    }
}
@media (max-width: 576px) {
    .mv-text {
        max-width: 210px;
    }
}
/* thoughts */
.thoughts {
    overflow: hidden;
    padding: 80px 0 0;
}
.thoughts-inner {
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    width: 100%;
}
.thoughts-inner::before {
    background: url(../images/toughts-bg.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 278px;
    margin: auto;
    position: absolute;
    left: 0;
    top: 20%;
    width: 106px;
}
.thoughts-contents {
    margin: 0 auto 45px;
    padding: 0 50px;
    position: relative;
    width: 100%;
    max-width: var(--sub-column);
}
.thoughts-header {
    margin: 0 0 35px;
}
.thoughts-header p {
    font-size: 24px;
    margin: 25px 0 0;
}
.thoughts-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.thougths-text {
    padding: 0;
    width: 50%;
}
.thougths-text p {
    font-size: 16px;
    font-weight: bold;
    line-height: 2.3em;
    margin: 0 0 20px;
}
.thoughts-images {
    flex: 1;
    margin-right: calc(40% - 40vw);
    margin-left: 50px;
    padding-right: 50px;
}
@media (max-width: 976px) {
    .thoughts {
        padding: 80px 0 0;
    }
    .thoughts-inner {
        padding: 0;
    }
    .thoughts-body {
        flex-direction: column-reverse;
    }
    .thoughts-contents {
        padding: 0 20px;
    }
    .thougths-text {
        padding: 25px 0 0;
        width: 100%;
    }
    .thoughts-header p {
        font-size: 18px;
        margin: 20px 0 0;
    }
    .thoughts-images {
        flex: inherit;
        margin-right: 0;
        margin-left: 0;
    }
}
/* story */
.story-panel {
    background-image: url(../images/story-bg1.jpg);
    background-size: cover;
    background-position: center;
    min-height: 600px;
    height: 50vw;
    max-height: 767px;
    width: 100%;
}
.story-panel__inner {
    height: 100%;
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: var(--main-column);
}
.floating-image {
    position: absolute;
    bottom: 10%;
}
.story-panel.right .floating-image {
    left: 0;
}
.story-panel.left .floating-image {
    right: 0;
}
.story-panel__text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 15px 0 100px;
    width: 55%;
}
.story-panel.right .story-panel__text {
    margin: 0 0 0 auto;
}
.story-panel.left .story-panel__text {
    margin: 0 auto 0 0;
}
.story-panel__ttl {
    margin: 0 0 45px;
}
.story-panel__ttl p {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0 0;
    text-transform: uppercase;
}
.story-panel__content p {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 2.3em;
}
@media (max-width: 976px) {
    .story-panel {
        height: 100%;
        max-height: none;
        padding: 50px 0;
    }
    .story-panel__ttl h2 {
        max-width: 250px;
    }
    .floating-image {
        position: static;
    }
    .story-panel__text {
        padding: 0 25px;
        width: 100%;
        max-width: 500px;
    }
    .story-panel.left .story-panel__text,
    .story-panel.right .story-panel__text {
        margin: 0 auto 25px;
    }
}
@media (max-width: 776px) {
    .story-panel__ttl h2 {
        max-width: 200px;
    }
}
/* map */
.map {
    overflow: hidden;
    padding: 0;
}
.mapb {
    padding: 80px 0;
}
.map-inner {
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    width: 100%;
    max-width: var(--sub-column);
}
.mapb .map-inner {
    max-width: var(--main-column);
}
.mapb .map-head {
    margin: 0 auto 85px;
    width: 100%;
    max-width: var(--sub-column);
}
.map-frame iframe {
    aspect-ratio: 16 / 9;
    height: 100%;
    width: 100%;
}
/*.map-image {
    margin-top: -100px;
}*/
@media (max-width: 976px) {
    .mapb .map-head {
        margin: 0 auto 45px;
    }
    .map-head h2 {
        max-width: 200px;
    }
    .map-image {
        margin-top: 0;
    }
}
@media (max-width: 776px) {
    .mapb .map-head {
        margin: 0 auto 35px;
    }
    .map-head h2 {
        max-width: 150px;
    }
    .map-frame iframe {
        aspect-ratio: 1 / 1;
    }
}

/* menu */
.menu {
    overflow: hidden;
    padding: 80px 0;
}
.menu-inner {
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    width: 100%;
    max-width: var(--sub-column);
}
.menu-head {
    margin: 0 auto 85px;
}
.menu-body,
.menu-items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}
.menu-items {
    animation: infinity-scroll-left 30s infinite linear 0.5s both;
    margin-right: 35px;
}
.menu-item {
    line-height: 0;
    width: 300px;
}
.menu-item:not(:last-child) {
    margin-right: 35px;
}
@media (max-width: 976px) {
    .menu-head {
        margin: 0 auto 45px;
    }
    .menu-head h2 {
        max-width: 240px;
    }
    .menu-items {
        margin-right: 30px;
    }
    .menu-item {
        width: 250px;
    }
    .menu-item:not(:last-child) {
        margin-right: 30px;
    }
}
@media (max-width: 776px) {
    .menu-head {
        margin: 0 auto 35px;
    }
    .menu-head h2 {
        max-width: 180px;
    }
    .menu-items {
        margin-right: 25px;
    }
    .menu-item {
        width: 200px;
    }
    .menu-item:not(:last-child) {
        margin-right: 25px;
    }
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}