/*fv
***************************************************************/
.zoom-fade {
    width: 100%;
    height: 800px;
    margin: 0 auto;
}

.zoom-fade__item {
    object-fit: cover;
}

.slick-slide img {
    display: block;
    height: 800px;
    object-fit: cover;
    width: 100%;
}

/*
  ズーム（ズームイン）させるためのアニメーション
  コメントアウト部分を入れ替えれば、ズームアウトになります。
  
  拡大率（scale()）はお好みで！
  */
.add-animation {
    /* アニメーション名 アニメーションにかかる時間 アニメーションの実行前後の状態 */
    /* zoom-fade 10秒 [実行前]最初のキーフレーム（0%） → [実行後]最後のキーフレーム（100%） */
    animation: zoom-fade 10s both;
}

@keyframes zoom-fade {
    0% {
        /*transform: scale(1.05);*/
        transform: scale(1);
    }

    100% {
        /*transform: scale(1);*/
        transform: scale(1.05);
    }
}

.fv {
    position: relative;
    width: 100%;
    height: 800px;
}

.fv::after {
    content: "";
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 17px;
    height: 82px;
    background-image: url("../../images/fv_scroll.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
}

.fv_title {
    padding: 45px 65px;
    background-color: #fff;
    position: absolute;
    top: 10vw;
    right: 115px;
    height: 466px;
    z-index: 10;
}

.fv_title_en {
    font-size: 70px;
    line-height: 1.14;
    text-align: left;
    padding-bottom: 6px;
    border-bottom: 1px solid #b2b2b2;
    display: inline-block;
}

.fv_title_ja {
    font-size: 30px;
    line-height: 1.5;
    margin-top: 6px;
    font-weight: normal;
}

.sp_only {
    display: none !important;
}

@media screen and (max-width: 1600px) {
    .fv_title {
        padding: 20px 30px;
        top: 20px;
        right: 50px;
        height: 367px;
    }

    .fv_title_en {
        font-size: 60px;
    }

    .fv_title_ja {
        font-size: 27px;
    }
}

@media screen and (max-width: 1200px) {
    .fv_title {
        padding: 20px 30px;
        top: 20px;
        right: 50px;
        height: 249px;
    }

    .fv_title_en {
        font-size: 37px;
    }

    .fv_title_ja {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .sp_only {
        display: block !important;
    }

    .pc_only {
        display: none !important;
    }

    .zoom-fade {
        height: 463px;
    }

    .slick-slide img {
        height: 463px;
    }

    .fv {
        height: 463px;
    }

    .fv::after {
        display: none;
    }

    .fv_title {
        padding: 17px 22px;
        top: unset;
        bottom: -79px;
        right: 0px;
        height: 211px;
    }

    .fv_title_en {
        font-size: 33px;
        line-height: 1.03;
        padding-bottom: 7px;
        letter-spacing: 0.15rem;
        display: block;
    }

    .fv_title_ja {
        font-size: 18px;
        line-height: 1.5;
        margin-top: 7px;
    }
}

/*event
***************************************************************/

.event {
    background-color: #f7f7f7;
    padding-bottom: 90px;
}

.event_slide_wrapper {
    position: relative;
    margin-top: 50px;
}

.event_slide {
    margin-top: 50px;
}

.event_slide_link {
    color: #333;
    transition: all 0.3s ease;
}

.event_slide_item {
    position: relative;
}

.event_slide_item_img {
    width: 100%;
    height: auto;
    position: relative;
}

.event_slide_item_img_cat {
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    width: 117px;
    height: 38px;
    background-color: #333;
    text-align: center;
    line-height: 38px;
}

.event_slide_item_content {
    padding: 10px;
}

.event_slide_item_content_date {
    font-size: 17px;
    letter-spacing: 0.1rem;
    margin-top: 14px;
    padding-bottom: 13px;
    position: relative;
}

.event_slide_item_content_date::after {
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    position: absolute;
    background-image: url(../../images/line.svg);
}

.event_slide_item_content_text {
    font-size: 20px;
    letter-spacing: 0.1rem;
    margin-top: 12px;
}

.event_slide_item_content_place {
    font-size: 20px;
    letter-spacing: 0.1rem;
    margin-top: 12px;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 100%;
    margin: 0 auto;
}

.slider img {
    width: 100%;
    /*スライダー内の画像を横幅100%に*/
    height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin: 0 40px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;
    /*絶対配置にする*/
    top: 32%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    height: 50px;
    width: 50px;
    background-image: url(../../images/slider_l.svg);
    z-index: 10;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background-image: url(../../images/slider_l.svg) !important;
}

.slick-prev {
    /*戻る矢印の位置と形状*/
    left: 75px;
    transform: rotate(0);
}

.slick-next {
    /*次へ矢印の位置と形状*/
    right: 75px;
    transform: rotate(180deg);
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

@media screen and (min-width: 768px) {
    .event_slide_link:hover {
        opacity: 0.7;
    }
}

@media (max-width: 767px) {
    .event {
        padding-top: 129px;
        padding-bottom: 50px;
    }

    .event_slide_wrapper {
        margin-top: 20px;
    }

    .event_slide_item_img_cat {
        width: 70px;
        height: 22px;
        line-height: 22px;
        font-size: 12px;
    }

    .event_slide_item_content {
        padding: 0 20px;
    }

    .event_slide_item_content_date {
        font-size: 14px;
        margin-top: 13px;
        padding-bottom: 7px;
    }

    .event_slide_item_content_date::after {
        height: 1px;
    }

    .event_slide_item_content_text {
        font-size: 14px;
        margin-top: 7px;
    }

    .event_slide_item_content_place {
        font-size: 14px;
        margin-top: 6px;
    }

    /*==================================================
スライダーのためのcss
===================================*/

    .slider .slick-slide {
        margin: 0;
    }

    .slick-prev,
    .slick-next {
        top: 32%;
        width: 25px;
        height: 25px;
        background-image: url(../../images/event_arrow_sp.svg);
    }

    .slick-prev:hover,
    .slick-prev:focus,
    .slick-next:hover,
    .slick-next:focus {
        background-image: url(../../images/event_arrow_sp.svg) !important;
    }

    .slick-prev {
        left: 0 !important;
    }

    .slick-next {
        right: 0 !important;
    }
}

/*feature
***************************************************************/

.feature {
    padding-bottom: 150px;
}

.feature_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 120px;
    position: relative;
}

.feature_wrapper::before {
    content: "";
    bottom: -70px;
    right: 50%;
    width: calc(50% + 70px);
    height: 100%;
    position: absolute;
    background-color: #ececec;
    z-index: -100;
}

.feature_wrapper::after {
    content: "";
    top: -70px;
    left: 50%;
    width: calc(50% + 70px);
    height: 100%;
    position: absolute;
    background-color: #ebf8fa;
    z-index: -100;
}

.feature_item {
    width: 100%;
    height: 140px;
}

.feature_item_link {
    color: #fff;
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.feature_item_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    transition: all 0.3s ease;
}

.feature_item_link_1 {
    padding: 118px 82px 90px;
}

.feature_item_1_num {
    font-size: 32px;
    line-height: 1;
    position: relative;
    text-align: center;
}

.feature_item_1_num::after {
    content: "";
    width: 126px;
    height: 27px;
    background-image: url(../../images/feature_roof.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -29px;
    left: 50%;
    transform: translate(-50%, 0);
}

.feature_item_1_title {
    font-size: 24px;
    margin-top: 10px;
    text-align: center;
    font-weight: normal;
}

.feature_item_1_text {
    font-weight: 500;
    margin-top: 20px;
}

.feature_item_1_text.pc_only {
    margin-top: 0;
}

.feature_box {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
}

.feature_item_link_2,
.feature_item_link_3 {
    padding: 60px 94px 35px;
}

.feature_item_2_num,
.feature_item_3_num {
    font-size: 24px;
    line-height: 1;
    position: relative;
    text-align: center;
}

.feature_item_2_num::after,
.feature_item_3_num::after {
    content: "";
    width: 112px;
    height: 24px;
    background-image: url(../../images/feature_roof.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -29px;
    left: 50%;
    transform: translate(-50%, 0);
}

.feature_item_2_title,
.feature_item_3_title {
    font-size: 24px;
    margin-top: 10px;
    text-align: center;
    font-weight: normal;
}

.feature_item_2_text,
.feature_item_3_text {
    font-weight: 500;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .feature_item_link:hover .feature_item_bg {
        transform: scale(1.2);
    }
}

@media screen and (max-width: 1260px) {
    .feature {
        overflow: hidden;
    }

    .feature_item_link_1 {
        padding: 118px 30px 90px;
    }

    .feature_item_link_2,
    .feature_item_link_3 {
        padding: 60px 30px 35px;
    }
}

@media (max-width: 767px) {
    .feature {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .feature_wrapper {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 30px;
        gap: 30px;
    }

    .feature_wrapper::before {
        display: none;
    }

    .feature_wrapper::after {
        display: none;
    }

    .feature_item {
        position: relative;
    }

    .feature_item::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 26px;
        height: 6px;
        transform: translate(-50%, 0);
        background-image: url(../../images/feature_arrow_sp.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .feature_item_link {
        color: #fff;
        position: relative;
        overflow: hidden;
        display: inline-block;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
    }

    .feature_item_bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -10;
        transition: all 0.3s ease;
        object-fit: cover;
    }

    .feature_item_link_1 {
        padding: 30px 20px 20px;
    }

    .feature_item_1_num {
        font-size: 17px;
        line-height: 18px;
    }

    .feature_item_1_num::after {
        content: "";
        width: 48px;
        height: 10px;
        background-image: url(../../images/feature_roof_sp.svg);
        top: -10px;
    }

    .feature_item_1_title {
        font-size: 17px;
        margin-top: 0;
    }

    .feature_item_1_text {
        margin-top: 5px;
        font-size: 14px;
    }

    .pc_only {
        display: none;
    }

    .feature_box {
        display: grid;
        grid-template-rows: repeat(1, 1fr);
        gap: 30px;
    }

    .feature_item_link_2,
    .feature_item_link_3 {
        padding: 30px 20px 20px;
    }

    .feature_item_2_num,
    .feature_item_3_num {
        font-size: 17px;
        line-height: 24px;
    }

    .feature_item_2_num::after,
    .feature_item_3_num::after {
        content: "";
        width: 48px;
        height: 10px;
        background-image: url(../../images/feature_roof.svg);
        top: -10px;
    }

    .feature_item_2_title,
    .feature_item_3_title {
        font-size: 17px;
        margin-top: 0;
    }

    .feature_item_2_text,
    .feature_item_3_text {
        margin-top: 5px;
        font-size: 14px;
    }
}

/*achievement
***************************************************************/

/*==================================================
スライダーのためのcss
===================================*/
.achievement_slider img {
    width: 100%;
    /*スライダー内の画像を横幅100%に*/
    height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.achievement_slider .slick-slide {
    margin: 0 15px;
    /*スライド左右の余白調整*/
}

.achievement {
    background-image: url(../../images/img_achievement_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -10;
    padding-bottom: 90px;
}

.achievement_slider {
    margin-top: 50px;
}

.achievement_slider img {
    transition: 0.5s;
}

.achievement_link {
    color: #333;
}

.achievement_img_wrapper {
    overflow: hidden;
}

.achievement_date {
    font-weight: 500;
    margin-top: 9px;
}

.achievement_text {
    font-weight: 500;
    margin-top: 7px;
}

.achievement_btn {
    margin-top: 60px;
}

@media (min-width: 768px) {
    .achievement_link:hover .achievement_img {
        transform: scale(1.1);
        transition: all 0.5s ease;
    }
}

@media (max-width: 767px) {
    /*==================================================
スライダーのためのcss
===================================*/

    .achievement_slider .slick-slide {
        margin: 0 12.5px;
        /*スライド左右の余白調整*/
    }

    .achievement {
        background-image: url(../../images/img_achievement_bg_sp.jpg);
        padding-bottom: 50px;
    }

    .achievement_slider {
        margin-top: 30px;
    }

    .achievement_link {
        color: #333;
    }

    .achievement_img_wrapper {
        overflow: hidden;
    }

    .achievement_date {
        font-style: 14px;
        font-weight: 400;
        margin-top: 3px;
    }

    .achievement_text {
        font-size: 14px;
        font-weight: 400;
        margin-top: 5px;
    }

    .achievement_btn {
        margin-top: 30px;
    }
}

/*line up
***************************************************************/

.lineup {
    overflow: hidden;
    padding: 90px 0 139px;
}

.lineup_wrapper {
    margin-top: 60px;
}

.lineup_item {
    margin-top: 50px;
    display: flex;
}

.lineup_item:nth-of-type(2) {
    flex-direction: row-reverse;
}

.lineup_item:first-of-type {
    margin-top: 0;
}

.lineup_img {
    width: calc(50vw + 55px);
    height: 426px;
    margin: 0 0 0 calc(50% - 50vw);
    object-fit: cover;
}

.lineup_item:nth-of-type(2) .lineup_img {
    margin: 0 calc(50% - 50vw) 0 0;
}

.lineup_content {
    text-align: center;
    padding: 85px 42px 0 79px;
}

.lineup_item:nth-of-type(2) .lineup_content {
    padding: 85px 79px 0 42px;
}

.lineup_num {
    font-size: 15px;
    font-weight: bold;
    position: relative;
}

.lineup_num::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 20px;
    height: 2px;
    background-color: #333;
}

.lineup_title {
    font-size: 22px;
    font-weight: bold;
    margin-top: 30px;
}

.lineup_text {
    margin-top: 20px;
    text-align: left;
}

.lineup_btn {
    margin-top: 30px;
}

/*==================================================
fadeIn
===================================*/

.fadeInTrigger_L,
.fadeInTrigger_R {
    opacity: 0;
}

.fadeIn_left {
    animation-name: fadeIn_left_Anime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn_left_Anime {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeIn_right {
    animation-name: fadeIn_right_Anime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn_right_Anime {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (max-width: 1200px) {
    .lineup_item {
        display: block;
        margin-top: 140px;
    }

    .lineup_content {
        padding: 50px 42px 0 79px;
    }

    .lineup_text {
        text-align: center;
    }

    .lineup_img {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .lineup {
        padding: 50px 0;
    }

    .lineup_wrapper {
        margin-top: 30px;
    }

    .lineup_item {
        margin-top: 30px;
        flex-direction: column;
    }

    .lineup_item:nth-of-type(2) {
        flex-direction: column;
    }

    .lineup_img {
        width: 100vw;
        height: 188px;
        margin: 0 calc(50% - 50vw);
    }

    img,
    picture {
        max-width: 100vw;
    }

    .lineup_item:nth-of-type(2) .lineup_img {
        margin: 0 calc(50% - 50vw);
    }

    .lineup_content {
        text-align: center;
        padding: 0;
        margin-top: 15px;
    }

    .lineup_item:nth-of-type(2) .lineup_content {
        padding: 0;
    }

    .lineup_num::after {
        bottom: -12px;
    }

    .lineup_title {
        font-size: 20px;
        font-weight: 500;
        margin-top: 27px;
    }

    .lineup_text {
        margin-top: 15px;
        text-align: left;
        font-size: 14px;
    }

    .lineup_btn {
        margin-top: 25px;
    }

    /*==================================================
    fadeIn
    ===================================*/

    .fadeInTrigger_L,
    .fadeInTrigger_R {
        opacity: 0;
    }

    .fadeIn_left {
        animation-name: fadeIn_left_Anime;
        animation-duration: 2s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes fadeIn_left_Anime {
        from {
            opacity: 0;
            transform: translateX(-100%);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .fadeIn_right {
        animation-name: fadeIn_right_Anime;
        animation-duration: 2s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes fadeIn_right_Anime {
        from {
            opacity: 0;
            transform: translateX(100%);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/*news
***************************************************************/

.news {
    background-color: #f7f7f7;
}

.news_wrapper {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.news_list .news_item {
    display: flex;
    gap: 27px;
    align-items: center;
    position: relative;
}

.news_list .news_item::after {
    content: "";
    display: inline-block;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #bddee5;
}

.news .news_content {
    flex: 1;
}

.news_list:nth-of-type(3) .news_item::after {
    display: none;
}

.news_item_link {
    color: #333;
}

.news_list {
    padding: 22px 0 22px 0;
}

.news_list:first-of-type {
    padding-top: 0;
}

.news_list:last-of-type {
    padding-bottom: 0;
}

.news_img_wrapper {
    overflow: hidden;
}

.news_list .news_img_wrapper {
    width: 189px;
    height: 129px;
}

.news_img {
    transition: all 0.3s ease;
    width: 100%;
}

.news_list .news_img {
    width: 189px;
    height: 129px;
    object-fit: cover;
}

.news_date {
    color: #c5cfd1;
    display: block;
    font-size: 16px;
}

.news_date_L {
    font-size: 17px;
    color: #c5cfd1;
    margin-top: 17px;
    display: block;
}

.news_title_L {
    font-size: 19px;
    margin-top: 7px;
    font-weight: normal;
}

.news_title {
    font-size: 17px;
    margin-top: 8px;
    font-weight: normal;
}

.news_text {
    margin-top: 9px;
}

@media (min-width: 768px) {
    .news_item_link:hover .news_img {
        transform: scale(1.2);
    }
}

@media (max-width: 767px) {
    .news_wrapper {
        margin-top: 30px;
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .news_item_L {
        display: flex;
        gap: 15px;
        position: relative;
        align-items: center;
    }

    .news_item_L::after {
        content: "";
        display: inline-block;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 1px;
        position: absolute;
        background-color: #bddee5;
    }

    .news_list .news_item {
        gap: 15px;
    }

    .news_list .news_item::after {
        bottom: -13px;
    }

    .news_list:nth-of-type(3) .news_item::after {
        display: none;
    }

    .news_item_link {
        color: #333;
    }

    .news_list {
        padding: 13px 0;
    }

    .news_list:first-of-type {
        padding-top: 13px;
        margin-top: 13px;
    }

    .news_list .news_img_wrapper,
    .news_item_L .news_img_wrapper {
        width: 116px;
        height: 77px;
    }

    .news_list .news_img,
    .news_item_L .news_img {
        width: 116px;
        height: 77px;
    }

    .news_item_L .news_ .news_list .news_img,
    .news_item_L .news_img {
        width: 116px;
        height: 77px;
    }

    .news_date {
        font-size: 12px;
    }

    .news_date_L {
        font-size: 12px;
        margin-top: 0px;
    }

    .news_title_L {
        font-size: 14px;
        margin-top: 5px;
    }

    .news_title {
        font-size: 14px;
        margin-top: 5px;
    }

    .pc_only {
        display: none;
    }
}
