@charset "utf-8";

/*---------------------------------------------------------
	Top　スクロールエフェクト
---------------------------------------------------------*/
.inview {
    opacity: 0;
    transform: translateY(50px);
}

.inview.on {
    transform: translateY(0) !important;
    opacity: 1 !important;
    transition: transform 1s cubic-bezier(.3, .1, .3, 1), opacity 1s cubic-bezier(.3, .1, .3, 1);
}

/*---------------------------------------------------------
	Top
---------------------------------------------------------*/

.home main {
    letter-spacing: 0.12em;
}

#index_mv {
    position: relative;
    width: 100%;
}

#index_mv::before {
    position: absolute;
    content: "";
    width: 42%;
    height: calc(100% + 100px);
    left: 0;
    top: -100px;
    background-color: #4169E1;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
    z-index: -10;

}

#index_main {
    position: relative;
    background: #fff;
}

#index_main img {
    display: block;
    width: 100%;
    height: 970px;
    object-fit: cover;
}

#index_main img.obj_pos_left {
    object-position: left;
}

#top_h1 {
    position: absolute;
    left: 50%;
    top: 52.9%;
    width: 1700px;
    max-width: 100%;
    padding: 0 20px;
    transform: translate(-50%, -50%);
    -moz-text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
    -webkit-text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
    -ms-text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
}

#top_h1 h1 {
    font-size: 6.0rem;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1.45;
    font-weight: bold;

}

#top_h1 span {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
    padding: 14px 0 0 13px;

}

.top_ttl {
    display: flex;
    align-items: center;
    margin-bottom: 27px;
    position: relative;
}

.top_ttl h2 {
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.top_ttl span {
    display: flex;
    align-items: center;
    /* font-family: 'Work Sans', 'Noto Sans JP', sans-serif; */
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 600;
    position: relative;
    left: 0px;
}

.top_ttl span::after {
    display: block;
    content: '';
    width: 70px;
    height: 1px;
    background: #333;
    margin: 0 29px 0 23px;
}

.top_head {
    position: relative;
}

.top_head .top_head_sub {
    /* font-family: 'Work Sans', 'Noto Sans JP', sans-serif; */
    font-size: 3.5rem;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 600;
    position: relative;
}

.top_head .top_head_h {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.top_btn {
    display: inline-flex;
    align-items: center;
    /* font-family: 'Work Sans', 'Noto Sans JP', sans-serif; */
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
    margin-left: auto;
    position: relative;
    transition: all .3s ease;
}

.top_btn::after {
    display: block;
    content: "";
    width: 104px;
    height: 104px;
    background: url(../img/icon_arrow_blue.svg) no-repeat center / contain;
    margin-left: 38px;
    transition: all .3s ease;
    z-index: 5;
}


.top_btn:hover::after {
    transform: scale(1.1);
}

/*----------------
	price
--------------------*/
#index_price {
    padding: 20px 0 15px;
}

.price_area {
    max-width: 1240px;
    padding: 0 20px;
    margin: auto;
}

.price_link {
    display: flex;
    flex-wrap: wrap;
    color: #222;
    text-decoration: none;
    transition: all .3s ease;
}

.price_link:hover {
    opacity: .75;
}

.price_date {
    font-weight: bold;
    margin-right: 27px;
}

.price_cat {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 23px;
    text-align: center;
    min-width: 90px;
    padding: 0 4px;
    margin-right: 17px;
    border: 1px solid #CCCCCC;
    border-radius: 30px;
}

.price_txt {
    font-weight: bold;
    letter-spacing: 0.1em;
}

.price_viewmore {
    margin-left: auto;
    display: flex;
    align-items: center;
    /* font-family: 'Work Sans', 'Noto Sans JP', sans-serif; */
    font-weight: bold;
    letter-spacing: 0.05em;
    position: relative;
}

.price_viewmore::after {
    display: block;
    content: "";
    width: 9px;
    height: 9px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(-45deg);
    margin: 0 0 0 5px;
    transition: all .3s ease;
}

.price_link:hover .price_viewmore::after {
    transform: rotate(-45deg) translate(5px, 5px);
}

/*----------------
	about
--------------------*/
#index_about {
    padding: 147px 0 48px;
    position: relative;
}

#index_about::after {
    position: absolute;
    content: "";
    height: calc(100% - 440px);
    width: 100%;
    background: #0E097D;
    top: 0;
    z-index: -10;
}

.about_area {
    max-width: 1240px;
    margin: auto;
    padding: 0 20px;
    position: relative;
}

.about_catch_area {
    color: #fff;
    text-align: center;
    margin-bottom: 136px;
}

.about_copy {
    font-size: 3.7rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 13px;
}

.about_copy_sub {
    display: block;
    /* font-family: 'Work Sans', 'Noto Sans JP', sans-serif; */
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.6rem;
    margin: 0 0 58px;
}

.about_catch_area p {
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 2.3333;
}

.about_area .top_ttl {
    color: #fff;
}

.about_area .top_ttl span::after {
    background-color: #fff;
}

.index_about_list {
    display: flex;
    flex-wrap: wrap;
}

.index_about_item {
    width: calc((100% / 3) - 5.4px);
    margin-right: 8px;
    margin-bottom: 26px;

    position: relative;
}

.index_about_item:nth-child(3) {
    margin-right: 0;
}


.index_about_link {
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.index_about_link img {
    width: 100%;
    object-fit: cover;
    transition: all .6s ease;
}

.index_about_link:hover img {
    transform: scale(1.03);
}

.index_about_txt {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
    width: 100%;
    position: absolute;
    top: 50.5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.index_about_txt::after {
    content: "";
    width: 104px;
    height: 104px;
    background: url(../img/icon_arrow_white.svg) no-repeat center / contain;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    display: block;
    margin: auto;
}

.index_about_link:hover .index_about_txt::after {
    transform: scale(1.1);
}

.index_about_txt span {
    /* font-family: 'Work Sans', 'Noto Sans JP', sans-serif; */
    font-size: 3.5rem;
    letter-spacing: 0.1em;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 14px;
    position: relative;
}

.index_about_txt h3 {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
}

/*----------------
	service
--------------------*/
#index_service {
    padding: 61px 0 140px;
    position: relative;
}

#index_service::after {
    position: absolute;
    content: "";
    height: calc(100% + 390px);
    width: 100%;
    background: #F2F4FA;
    bottom: 0;
    z-index: -10;
}

#index_service .top_ttl {
    max-width: 1240px;
    padding: 0 20px;
    margin: auto auto 25px;
}

.service_box {
    width: calc(100vw - (100vw - 1240px) / 2);
    min-width: 1200px;
    padding-right: 20px;
}

.service_box:first-child {
    margin-bottom: 62px;
}

.service_link {
    color: #222;
    text-decoration: none !important;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}


.service_txt {
    max-width: 250px;
    padding: 5.9% 0 0 0;
    margin: 0 0 0 auto;
    position: relative;
}

.service_txt .top_head {
    margin-bottom: 25.1%;
}

.service_img {
    width: 73.95%;
    max-width: -webkit-calc(100% - 255px);
    max-width: calc(100% - 255px);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    overflow: hidden;
}

.service_link:hover .service_img {
    opacity: .75;
}

.service_img img {
    display: block;
    max-height: 406px;
    width: 100%;
    object-fit: cover;
}

.service_link:hover .top_btn::after {
    transform: scale(1.1);
}

/* 2つめのservice_box */
.service_box.margin_left_auto {
    padding-right: 0;
    padding-left: 20px;
    margin-left: auto;
}

.service_box.margin_left_auto .service_link {
    flex-direction: row;
}

.service_box.margin_left_auto .service_txt {
    margin: 0 auto 0 0;
}

/*----------------
	news
--------------------*/
#index_news {
    padding: 111px 0 121px;
    position: relative;
}

.news_area {
    display: flex;
    flex-wrap: wrap;
    max-width: 1240px;
    margin: auto;
    padding: 0 20px;
    position: relative;
}

.news_box {
    width: 79.333%;
    margin-left: auto;
    position: relative;
}

.news_list_wrap {
    width: 100%;
    margin: 0 0 0 auto;
    position: relative;
}

.news_list {
    position: relative;
    margin: 0 auto 60px;
    padding: 0;
}

.news_list li {
    position: relative;
    border-bottom: 1px solid #CCCCCC;
    list-style: none;
}

.news_list li a {
    display: flex;
    flex-wrap: wrap;
    padding: 23px 15px 24px 23px;
    text-decoration: none;
    position: relative;
}

.news_list li:first-child a {
    padding-top: 0;
}

.news_list li a::after {
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #0E097D;
    transition: all .5s ease;
}

.news_list li a:hover::after {
    width: 100%
}

/* .news_list li a:hover {
    background: #F2F5F7;
} */

.news_date {
    font-weight: bold;
    display: inline-block;
    line-height: 1.5;
    margin-right: 12px;
}

.news_cate {
    display: inline-block;
    text-align: center;
    padding: 1px 10px;
    min-width: 137px;
    font-size: 1.3rem;
    font-weight: 500;
    margin-right: 21px;
    box-sizing: border-box;
}

.news_list a {
    display: block;
    color: #000;
    transition: all .3s;
}

.news_list a:hover {
    text-decoration: none;
}

.news_title {
    line-height: 1.5;
    max-width: calc(100% - 269px);
    transition: all .3s ease;
}

.news_list li:hover .news_title {
    color: #064070;
    transition: all .3s ease;
}

.news_btn {
    text-align: right;
}

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

    /*---------------------------------------------------------
		Top　スクロールエフェクト
	---------------------------------------------------------*/

    /*  */
    #top_h1 {
        max-width: 100%;
    }

    #top_h1 h1 {
        font-size: 4.0rem;
    }

    #top_h1 span {
        font-size: 1.5rem;
    }

    #index_mv::before {
        width: calc(100% - 80px);
    }

    #index_main {
        margin-left: 0;
    }

    #index_main img {
        height: calc(100vh - 65px);
        object-fit: cover;
        max-height: 750px;
    }

    /* #page_top_h1 {
        bottom: 60px;
        max-width: 100%;
        top: 200px;
        font-size: 200%;
    }

    #page_top_h1 h1 {
        bottom: 60px;
        max-width: 100%;
        top: 0;
        font-size: 200%;
        margin-bottom: 10px;
        left: 45px;
    } */

    /* .top_ttl {
        display: flex;
        align-items: center;
        margin-bottom: 27px;
        position: relative;
    } */

    .top_ttl h2 {
        font-size: 1.5rem;
        /* font-weight: 600;
        letter-spacing: 0.1em; */
    }

    .top_ttl span {
        /* display: flex;
        align-items: center;
        font-family: 'Work Sans', 'Noto Sans JP', sans-serif; */
        font-size: 1.6rem;
        /* line-height: 1;
        letter-spacing: 0.1em;
        font-weight: bold;
        position: relative;
        left: 0px; */
    }

    .top_ttl span::after {
        width: 15px;
        margin: 0 8px;
    }

    .top_head .top_head_sub {
        font-size: 2.5rem;
    }

    .top_head .top_head_h {
        font-size: 1.4rem;
    }

    /* .top_btn {
        display: inline-flex;
        align-items: center;
        font-family: 'Work Sans', 'Noto Sans JP', sans-serif;
        font-weight: 600;
        letter-spacing: 0.1em;
        color: #222;
        text-decoration: none;
        white-space: nowrap;
        margin-left: auto;
        position: relative;
        transition: all .3s ease;
    } */

    .top_btn::after {
        width: 80px;
        height: 80px;
        margin-left: 28px;
    }


    /*----------------
        price
    --------------------*/
    #index_price {
        padding: 15px 0 15px;
    }

    /* .price_area {
        max-width: 1240px;
        padding: 0 20px;
        margin: auto;
    } */

    /* .price_link {
        display: flex;
        flex-wrap: wrap;
        color: #222;
        text-decoration: none;
        transition: all .3s ease;
    } */

    /* .price_link:hover {
        opacity: .75;
    } */

    .price_date {
        line-height: 1.7;
    }

    .price_cat {
        font-size: 1.2rem;

        padding: 0px 4px 2px;
    }

    .price_txt {
        width: 100%;
        margin: 4px 0;
    }

    .price_viewmore {
        margin-left: auto;
        display: flex;
        align-items: center;
        /* font-family: 'Work Sans', 'Noto Sans JP', sans-serif; */
        letter-spacing: 0.05em;
        position: relative;
    }

    .price_viewmore::after {
        display: block;
        content: "";
        width: 8px;
        height: 8px;
        border-right: 2px solid;
        border-bottom: 2px solid;
        transform: rotate(-45deg);
        margin: 0 0 2px 5px;
        transition: all .3s ease;
    }

    .price_link:hover .price_viewmore::after {
        transform: rotate(-45deg) translate(5px, 5px);
    }

    /*----------------
        about
    --------------------*/
    #index_about {
        padding: 60px 0 40px;
    }

    #index_about::after {
        height: calc(100% - 360px);
    }

    /* .about_area {
        max-width: 1240px;
        margin: auto;
        padding: 0 20px;
        position: relative;
    } */

    .about_catch_area {
        margin-bottom: 70px;
    }

    .about_copy {
        font-size: 2.4rem;
        margin-bottom: 10px;
    }

    .about_copy_sub {
        font-size: 1.4rem;
        margin: 0 0 35px;
    }

    /* .about_catch_area p {
        letter-spacing: 0.1em;
        line-height: 2.3333;
    } */

    /* .about_area .top_ttl {
        color: #fff;
    } */

    /* .about_area .top_ttl span::after {
        background-color: #fff;
    } */

    /* .index_about_list {
        display: flex;
        flex-wrap: wrap;
    } */

    .index_about_item {
        width: calc(50% - 3px);
        margin-right: 6px;
        margin-bottom: 6px;
    }

    .index_about_item:nth-child(2n) {
        margin-right: 0;
    }

    .index_about_item:nth-child(3) {
        width: 100%;
        margin-bottom: 0;
    }

    .index_about_item:nth-child(3) .index_about_link img {
        max-height: 220px;
    }

    /* .index_about_link {
        display: flex;
        align-items: flex-start;
        position: relative;
        overflow: hidden;
    } */
    .index_about_link img {
        max-height: 727px;
    }

    /* .index_about_link img {
        max-width: 100%;
        object-fit: cover;
        transition: all .6s ease;
    } */

    /* .index_about_link:hover img {
        transform: scale(1.03);
    } */

    .index_about_txt {
        top: 53%;
    }

    .index_about_txt::after {
        width: 80px;
        height: 80px;
    }

    .index_about_link:hover .index_about_txt::after {
        transform: scale(1.1);
    }

    .index_about_txt span {
        font-size: 5.5vw;
        margin-bottom: 6px;
    }

    .index_about_txt h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    /*----------------
        service
    --------------------*/
    #index_service {
        padding: 30px 0 70px;
    }

    #index_service::after {
        height: calc(100% + 320px);
    }

    .service_box {
        width: 100%;
        min-width: auto;
        padding: 0 !important;
    }

    .service_link {
        display: block;
    }

    .service_txt {
        max-width: none;
        padding: 0 20px 10px;
    }

    .service_txt .top_head {
        margin-bottom: 18px;
    }

    .service_txt .top_btn {
        position: absolute;
        top: 50%;
        right: 10%;
    }

    .service_txt .top_btn .en {
        display: none;
    }

    .service_img {
        width: calc(100% - 20px);
        max-width: none;
    }

    .service_img img {
        min-height: 200px;
    }

    /* 2つめのservice_box */
    /* .service_box.margin_left_auto {
        padding-right: 0;
        padding-left: 20px;
        margin-left: auto;
    } */

    .service_box.margin_left_auto .service_img {
        margin-left: auto;
    }

    /* .service_box.margin_left_auto .service_txt {
        margin: 0 auto 0 0;
    } */


    /*----------------
	    news
    --------------------*/
    #index_news {
        padding: 60px 0 70px;
    }

    .news_area .top_head {
        margin-bottom: 25px;
    }

    .news_box {
        width: 100%;
    }

    .news_box::before {
        width: 100%;
        height: 180px;
    }

    /* .news_list_wrap {
        width: calc(100% - 20px);
        padding: 10px 20px 25px;
        margin: auto;
    } */

    .news_list {
        width: 100%;
        margin: 0 auto 35px;
    }

    .news_list li {
        padding: 0;
    }

    .news_list li a {
        padding: 15px 0 !important;
    }

    .news_date {
        position: relative;
        line-height: 1.6;
        margin-right: 10px;
    }

    .news_list a {
        display: inline-block;
        margin-left: 0;
    }

    .news_cate {
        font-size: 1.2rem;
        line-height: 1.3;
        margin: 0;
        /* padding: 5px 5px; */
    }

    .news_title {
        font-size: 1.6rem;
        width: 100%;
        max-width: none;
    }

    .news_box .top_btn {
        margin: auto;
    }

}