@charset "UTF-8";

.hero {
    position: relative;
}

.hero::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.25;
    z-index: 1;
}

.hero .hero_ttl {
    position: absolute;
    top: 50%;
    right: 9%;
    transform: translateY(-50%);
    line-height: 1.2;
    font-size: 70px;
    color: #fff;
    z-index: 1;
}

.hero .hero_ttl span {
    display: block;
    padding-top: 28px;
    font-size: 24px;
    letter-spacing: .2rem;
}

@keyframes zoomUp {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
        /* 拡大率 */
    }
}

.fade_animation {
    animation: zoomUp 10s linear 0s normal both;
}

.hero .slick-slide {
    overflow: hidden;
}

.hero .slick-slide img {
    width: 100%;
    height: auto;
}

.hero .slick-slide .vis-sp {
    display: none;
}

.scroll {
    position: absolute;
    left: 15px;
    bottom: 148px;
    z-index: 10;
}

.scroll span {
    display: block;
    rotate: -90deg;
    font-size: 16px;
    color: #fff;
}

@keyframes scroll-move {
    0% {
        height: 0;
        opacity: 0;
        top: 210%;
    }

    30% {
        opacity: 1;
    }

    100% {
        height: 44px;
        opacity: 0;
        top: 250%;
    }
}

.scroll::after {
    position: absolute;
    left: 50%;
    animation: scroll-move 1.4s ease-in-out infinite;
    background: #ffffff;
    content: "";
    transform: translateX(-50%);
    width: 1px;
}

.abt .inner {
    display: flex;
    margin-bottom: 130px;
    padding-top: 102px;
}

.abt_ttl {
    font-size: 221px;
    /*文字を縦に*/
    writing-mode: vertical-rl;
}

.abt_body {
    padding-top: 37px;
}

.abt_body p {
    margin-bottom: 44px;
    font-size: 35px;
    font-weight: bold;
}

.news {
    padding: 72px 0 48px;
    background-color: #000000;
    color: #fff;
}

.news .inner {
    display: flex;
    gap: 89px;
}

.news_ttl {
    margin-bottom: 22px;
    line-height: 1;
    font-size: 24px;
}

.news_ttl span {
    display: block;
    font-size: 100px;
    line-height: 0.7;
}

.news_body {
    width: 100%;
}

.news_body P {
    width: 100%;
}

/*========= テキストを滑らかに出現させるためのCSS ===============*/
.-smooth_txt {
    overflow: hidden;
    display: block;
}

/* アニメーションで傾斜がついている文字列を水平に戻す*/
.-smooth_txt_trig {
    transition: .6s ease-in-out;
    transform: translate3d(0, 100%, 0) skewY(12deg);
    transform-origin: left;
    display: block;
    opacity: 0;
}

.-smooth_txt_trig.-smooth_txt_up {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
}

@media screen and (max-width:1030px) {
    .hero {
        width: 100svw;
        height: 100svh;
    }

    .hero .hero_ttl {
        top: auto;
        bottom: 41px;
        left: 15px;
        font-size: 82px;
    }

    .hero .hero_ttl span {
        font-size: 22px;
    }

    .fade_animation {}

    .hero .hero_slide,
    .hero .slick-slider,
    .hero .slick-list,
    .slick-track {
        height: 100%;
    }

    .hero .slick-slide img {
        height: 100%;
        object-fit: cover;
    }

    .hero .slick-slide .hide-sp {
        display: none !important;
    }

    .hero .slick-slide .vis-sp {
        display: block;
    }

    .hero .slick-slide img {}

    .scroll {
        display: none;
    }

    .scroll span {}

    .scroll::after {}

    .abt .inner {
        margin-bottom: 58px;
        padding-top: 64px;
        flex-direction: column;
    }

    .abt_ttl {
        font-size: 112px;
        line-height: 1;
        writing-mode: horizontal-tb;
    }

    .abt_body {
        padding-top: 0;
    }

    .abt_body p {
        font-size: 32px;
    }

    .abt_body .cmn_btn a {
        margin: auto;
    }
}

@media screen and (max-width:640px) {

    .hero .hero_ttl {
        top: auto;
        bottom: 41px;
        left: 15px;
        font-size: 42px;
    }

    .hero .hero_ttl span {
        font-size: 14px;
    }

    .abt .inner {
        margin-bottom: 58px;
        padding-top: 16px;
        flex-direction: column;
    }

    .abt_ttl {
        font-size: 100px;
        line-height: 1;
        writing-mode: horizontal-tb;
    }

    .abt_body {
        padding-top: 0;
    }

    .abt_body p {
        font-size: 20px;
    }

    .abt_body .cmn_btn a {
        margin: auto;
    }

    .news {}

    .news .inner {
        gap: 19px;
        flex-direction: column;
    }

    .news_ttl {
        margin-bottom: 0;
    }

    .news_ttl span {}

    .news_body {}

    .news_body ul {
        flex-direction: column;
        border-top: solid 1px #fff;
        border-left: none;
    }

    .news_body li a {
        gap: 7px 11px;
        padding: 24px 0;
        border-bottom: solid 1px #fff;
        border-right: none;
    }

    .news .cmn_btn a {
        margin: 21px auto 0;
    }
}

@media print {
}