@charset "utf-8";

header {
    border: none;
}

/**********************************************
    * top共通
*********************************************/

.news-list-content {
    display: none;
}

.news-list-content.show {
    display: block;
}

.index_head {
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
}

.index_head:before {
    content: attr(data-en);
    display: block;
    margin-bottom: 5px;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 9.0rem;
    line-height: 1.3;
    color: #0077C0;
    text-transform: capitalize;
}

h2 {
    font-size: 1.8rem;
    font-weight: 500;
    position: relative;
}

.index_link_btn {
    text-align: center;
}

.index_link_btn a {
    display: inline-block;
    position: relative;
    max-width: 273px;
    width: 100%;
    padding: 20px 50px 20px 30px;
    background: #fff;
    border: 1px solid #0077C0;
    border-radius: 50px;
    color: #0077C0;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
    text-decoration: none !important;
    transition: background 0.3s, border 0.3s, color 0.3s;
    text-align: center;
}

.index_link_btn a:hover {
    background: #0077C0;
    border-color: #0077C0;
    color: #fff;
}

.index_link_btn a:after {
    content: '';
    position: absolute;
    display: block;
    background: url(../images/arrow_r_blue.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 17px;
    height: 13px;
    right: 20px;
    top: calc(50% - 6px);
    transition: background 0.3s;
}

.index_link_btn a:hover::after {
    background: url(../images/arrow_r_white.svg);
    animation: icon-arrow 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
}

/*
.index_link_btn a:hover:after {
    background: url(../images/arrow_r_white.svg);
}*/

a {
    text-decoration: none;
}

/*a:hover {
    opacity: 0.7;
}*/

/**********************************************
    * mv
*********************************************/
.mv {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
}

.mv::before {
    content: "";
    width: 100%;
    height: 470px;
    background-image: url(../images/wave-01.svg);
    background-position: top;
    background-size: cover;
    mix-blend-mode: screen;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
	opacity: 0.4;
}

.mv_img_box {
    overflow: hidden;
    height: 100vh !important;
}

.mv_img_box .mv_img {
    transition: transform 15s ease;
    transform: scale(1.2);
    /* 初期状態をズームイン状態にしておく */
}

.mv_img_box.active .mv_img {
    transform: scale(1);
    /* ズームアウト */
}

.mv img {
    display: block;
    /*min-height: 820px;*/
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.mv_txt {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 0 20px;
    max-width: 1360px;
    margin: auto;
    z-index: 1;
}

.mv_txt h1 {
    font-size: 5.2rem;
    font-weight: 500;
    line-height: 1.52;
    color: #fff;
    text-shadow: 3px 3px 12px rgba(36, 83, 132, 0.3);
	margin-top:100px;
}

.mv_title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) scale(0.3);
    animation: fadeUp 0.6s forwards;
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    /* ease-out */
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/**********************************************
    * pickup
*********************************************/

.pickup_wrap {
    position: relative;
    margin-top: 100vh;
    padding: 60px 0 60px 0;
    background: #EFF6FF;
    background: linear-gradient(270deg, rgba(0, 128, 217) 0%, rgba(58, 173, 253) 100%);
}

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

.pickup_wrap h2 {
    font-size: 4.0rem;
    font-weight: 400;
    color: #fff;
    font-family: "Outfit", sans-serif;
    line-height: 1.3;
    text-align: center;
    margin: 0 0 30px 0;
}


/* ===== スライド内要素 ===== */
.pickup_list .pickup_item {
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 5px;
    margin: 0 10px;
}

.pickup_list .pickup_item a:hover img {
    transform: scale(1.05);
}

.pickup_list .pickup_item a {
    display: block;
}

.pickup_list .pickup_item img {
    transition: transform 0.3s ease;
}

/* 余白 */
.pickup_list {
    position: relative;
    padding-bottom: 65px;
    /* 下余白 */
}

/* [Prev][Dots][Next] を中央で横並びに */
.pickup_list .slick-controls {
    position: absolute;
    left: 50%;
    /*bottom: 24px;*/
	bottom:17px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 5;
}

/* dots をフローに乗せる*/
.pickup_list .slick-controls .slick-dots {
    position: static !important;
    transform: none !important;
    bottom: auto !important;
    left: auto !important;
    width: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
}

.pickup_list .slick-dots {
    position: absolute;
    bottom: -33px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    text-align: center;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pickup_list .pickup_item {
    /*padding: 0 10px;*/
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 5px;
    margin: 0 10px;
}

.pickup_list .pickup_item a:hover {
    /*opacity:0.7;*/
}

.pickup_list .pickup_item a:hover img {
    transform: scale(1.05);
}

.pickup_list .pickup_item img {
    /*border-radius: 5px;*/
    transition: transform 0.3s ease;
}

.pickup_wrap .slick-dots li {
    display: inline-block;
    margin: 0 6px;
}

.pickup_wrap .slick-dots button {
    font-size: 0;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #fff;
	display:flex;
}

.pickup_wrap .slick-dots .slick-active button {
    background: #1385DD;
}



.pickup_wrap .slick-prev {
    top: 6px;
    left: -45px;
}

.pickup_wrap .slick-next {
    top: 6px;
    right: -45px;
}

.pickup_wrap .slick-prev::before,
.pickup_wrap .slick-next::before {
    background-color: #ffffff;
    opacity: 0.2;
    /*   	background-color: transparent;
	border: solid 2px #fff; */
}

.pickup_wrap .slick-prev::after,
.pickup_wrap .slick-next::after {
    /*border: solid #EBF2FA;*/
    border: solid #fff;
    border-width: 0 2px 2px 0;
}

.pickup_wrap .slick-prev:hover::before,
.pickup_wrap .slick-next:hover::before {
    background-color: #fff;
    border: 2px solid #fff;
}

.pickup_wrap .slick-prev:hover::after,
.pickup_wrap .slick-next:hover::after {
    border: solid #1385DD;
    border-width: 0 2px 2px 0;
}

/**********************************************
    * news
*********************************************/
.news_wrap {
    padding-bottom: 50px;
    padding-top: 70px;
    background: #fff;
    position: relative;
}

.news_area {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.news_top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    /*margin-top: -45px;*/
    background: #fff;
    /*border-radius: 8px;*/
    position: relative;
    /* padding: 15px 15px 15px 65px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.09);
	border-radius: 9999px;*/
    /*max-width:1100px;
	margin:0 auto;*/
	z-index: 1;
}

.news_head {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
}

.news_head:before {
    content: attr(data-en);
    display: inline-block;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: 700;*/
    font-weight: 400;
    font-style: normal;
    font-size: 6.0rem;
    line-height: 1.3;
    text-transform: capitalize;
    color: #0077C0;
    margin-right: 23px;
}

/*.news_head:after {
    content: attr(data-en);
    display: inline-block;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.3;
    text-transform: capitalize;
    color: #0077C0;
    margin-left: 23px;
}*/

.select_wrap {
    display: none;
}

.news_cat_list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 10px 0 0 0;
}

.news_cat_item {
    position: relative;
    list-style: none;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 2.9rem;
}

.news_cat_item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1px;
    height: 20px;
    background: #ccc;
}

.news_cat_item:last-child::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 20px;
    background: #ccc;
}

.news_cat_link {
    display: block;
    position: relative;
    margin: 0 20px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    opacity: .5;
}

.news_cat_link:hover,
.on .news_cat_link {
    color: #0C91B1;
    opacity: 1;
}

.news_cat_link::before {
    background: #4BBCD0;
    bottom: -8px;
    content: "";
    display: block;
    height: 4px;
    left: 0;
    position: absolute;
    transition: all 0.2s ease;
    width: 0;
    z-index: 10;
}

.news_cat_link:hover::before,
.on .news_cat_link::before {
    width: 100%;
}

.news_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 130px 40px;
    padding: 0;
    margin-bottom: 50px;
}

.news_thumb {
    position: relative;
    padding-bottom: 62.1359%;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 5px;
}

.news_thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

a:hover .news_thumb img {
    transform: scale(1.05);
}

.news_date {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.42;
    transition: all 0.3s;
}

.news_title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 10px;
    transition: all 0.3s;
}

.news_item .news_link[target="_blank"] {
    background: none;
    padding: 0;
}

.news_item .news_link[target="_blank"] .news_title::after {
    content: '';
    display: inline-block;
    margin-left: 3px;
    width: 14px;
    height: 14px;
    background: url(../images/popup.svg) no-repeat center right;
    background-size: contain;
}

.news_item .news_link[href$=".pdf"] .news_title::after {
    content: '';
    display: inline-block;
    margin-left: 3px;
    width: 14px;
    height: 14px;
    background: url('../images/icon_pdf.svg') no-repeat center center;
    background-size: contain;
}

a:hover .news_title,
a:hover .news_date {
    color: #0077C0;
}

.news_cate {
    border: 1px solid #0077C0;
    padding: 3px 8px 4px;
    border-radius: 9999px;
    color: #0077C0;
    font-size: 1.3rem;
    line-height: 2.2rem;
    text-align: center;
}

.news_link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #333 !important;
    text-decoration: none !important;
    transition: border 0.3s;
}

.news_wrap .link_btn {
    text-align: center;
}



.tab_content {
    display: none !important;
    flex-wrap: wrap;
    gap: 20px;
}

.tab_content.active {
    /*display: flex !important;*/
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    /*grid-template-rows: repeat(2, 1fr);*/
    grid-column-gap: 42px;
    grid-row-gap: 35px;
}

.news_tab {
    display: flex;
    flex-wrap: wrap;
    /*gap: 10px;*/
    list-style: none;
    padding: 0;
}

.news_tab .tab_item {
    cursor: pointer;
    padding: 18px 20px;
    transition: all 0.3s;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    color: #222;
    border-left: 1px solid #EEEEEE;
    min-width: 190px;
    display: flex;
    justify-content: center;
    transition: all ease 0.2s;
}

.news_tab .tab_item:hover .tab_link {
    color: #0077C0;
}

.news_tab .tab_item.active {
    color: #0077C0;
}

.news_tab .tab_item .tab_link {
    text-decoration: none;
    display: inline-block;
    color: inherit;
    transition: all ease 0.2s;
}

/* ニュースリスト共通 */
.news_list_area {
    margin-top: 40px;
}

.news_list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news_item {
    /*width: calc(33.333% - 13.333px);*/
    overflow: hidden;
}

.news_link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/*.news_thumb img {
    width: 100%;
    height: auto;
    display: block;
}*/





/* タブ切り替え表示 */
.tab_content {
    display: none;
}

/*.tab_content.active {
    display: flex;
    flex-wrap: wrap;
}*/



/**********************************************
    * business
*********************************************/
.business_wrap {
    position: relative;
    background: #fff;
    padding: 60px 0 94px 0;
}

.business_area {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.business_head {
    position: relative;
    margin-bottom: 70px;
}

.business_head .index_link_btn {
    /*position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    margin: auto;
    height: 100%;
	max-width: 273px;
    width: 100%;*/
}

.business_area .index_link_btn {
    margin-top: 50px;
}

.business_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 3%;
    grid-row-gap: 0px;
}

.business_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.business_img {
    margin-bottom: 50px;
}

.business_img img {
    display: block;
    max-width: 100%;
}

.business_content {
    padding: 165px 55px 50px 55px;
    margin-top: -165px;
    background: #EFF6FF;
    height: 100%;
    border-radius: 8px;
}

.business_content h3 {
    font-size: 3.0rem;
    font-weight: 700;
    line-height: 1.46;
    color: #0077C0;
    margin-bottom: 40px;
    text-align: center;
}

.business_content p {
    font-size: 1.6rem;
    line-height: 1.875;
    margin-bottom: 25px;
}

.business_link_list {}

.business_link_list li {
    border-bottom: 1px solid rgba(19, 133, 221, 0.24);
}

.business_link_list li a {
    display: block;
    position: relative;
    padding: 20px 40px 20px 4px;
    color: #222;
    font-size: 1.6rem;
    line-height: 1.5;
    text-decoration: none !important;
    transition: color 0.3s;
}

.business_link_list li a:hover {
    color: #0077C0;
}

.business_link_list li a:after {
    content: '';
    position: absolute;
    display: block;
    background: url(../images/arrow_r_blue.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 14px;
    height: 10px;
    right: 10px;
    top: calc(50% - 5px);
    transition: background 0.3s;
}

.business_link_list li a:hover::after {
    animation: icon-arrow 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
}

/**********************************************
    * company
*********************************************/

.company_wrap {
    position: relative;
    background: #3AADFD;
    background: linear-gradient(0deg, rgba(0, 128, 217, 1) 0%, rgba(58, 173, 253, 1) 100%);
    /*border-radius: 80px;*/
    /*padding:150px 0 150px 0;*/
    padding: 150px 0 200px 0;
}

.company_curve_top,
.company_curve_bottom {
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.company_curve_top {
    top: 0;
}

.company_curve_bottom {
    bottom: 0;
}

.company_area {
    position: relative;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.company_head .index_head,
.company_head .index_head:before {
    color: #fff;
}

.company_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    /*grid-column-gap: 3%;*/
    grid-row-gap: 0px;
    margin: 60px 0 50px 0;
}

.company_item {
    margin: 0 32px;
}

.company_item a {
    color: #fff !important;
    text-decoration: none;
}

.company_img {
    border-radius: 5px;
    overflow: hidden;
}

.company_img img {
    transition: transform 0.3s ease;
}

.company_item a:hover .company_img img {
    transform: scale(1.05);
}

.company_txt {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.company_txt_in {
    margin-top: 20px;
    padding-right: 150px;
    transition: all ease 0.2s;
}

.company_item a:hover .company_txt_in {
    opacity: .8;
}

.link_arrow {
    position: absolute;
    display: block;
    right: 0;
    bottom: -10px;
    width: 72px;
    height: 72px;
}

.link_arrow:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.link_arrow:after {
    content: '';
    position: absolute;
    display: block;
    background: url(../images/arrow_r_white.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 24px;
    height: 18px;
    right: calc(50% - 12px);
    top: calc(50% - 9px);
    transition: background 0.3s;
}

.company_item a:hover .link_arrow::after {
    animation: icon-arrow 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
}


@keyframes icon-arrow {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(0.8rem);
    }

    51% {
        transform: translateX(0.8rem);
    }

    100% {
        transform: translateX(0);
    }
}

.company_txt h3 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.42;
    margin-bottom: 12px;
    color: #fff;
}

.company_txt p {
    font-size: 1.6rem;
    line-height: 1.75;
    color: #fff;
}

.company_area .index_link_btn a {
    background: #fff;
    border: 1px solid #fff;
    color: #0077C0;
}

.company_area .index_link_btn a:hover {
    background: #0077C0;
    border: 1px solid #0077C0;
    color: #fff;
}

.company_bg_txt {
    position: absolute;
    bottom: 105px;
    left: -56px;
    font-family: "Outfit", sans-serif;
    font-size: 15.0rem;
    line-height: 1.33;
    color: rgb(255 255 255 / 15%);
}

.company_bg_txt {
    display: flex;
    white-space: nowrap;
    animation: scrollLoop 20s linear infinite;
}

.company_bg_txt span {
    padding-right: 50px;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/**********************************************
    * bnr
*********************************************/

.bnr_wrap {
    position: relative;
    padding: 50px 0;
    background: #fff;
}

.bnr_area {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.bnr_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-row-gap: 0px;
    margin: 90px 0 80px 0;
}

.bnr_list li {
    margin: 0 32px;
}

.bnr_list li a {
    position: relative;
    color: #fff !important;
    text-decoration: none;
	display:block;
	background: none;
	padding: 0;
}

.bnr_img {
    overflow: hidden;
    border-radius: 5px;
}

.bnr_img img {
	width: 100%;
    transition: transform 0.3s;
}

.bnr_list li a:hover .bnr_img img {
    transform: scale(1.05);
}

.bnr_wrap .index_head {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    flex-direction: column;
    width: 100%;
    height: 100%;
	bottom:0;
	left:0;
	right:0;
}

.bnr_wrap .index_head:before {
    color: #fff;
    font-size: 6.0rem;
}


/**********************************************
    * link
*********************************************/

.link_wrap {
    position: relative;
    background: #fff;
    padding-bottom: 65px;
}

.link_area {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 20px;
}

.link_head {
    max-width: 1340px;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.3;
    border-top: 1px solid #D5DFE9;
    padding-top: 32px;
    margin: 0 auto 63px auto;
}

.link_item {
    margin: 0 15px;
    border: 1px solid #EEEEEE;
    overflow: hidden;
    border-radius: 5px;
}

.link_item a {
    display: block;
}

.link_item img {
    transition: transform 0.3s;
}

.link_item:hover img {
    transform: scale(1.05);
}

.link_list.slick-slider {
    max-width: 1340px;
    margin: 0 auto;
}

/**********************************************
    * certification
*********************************************/

.certification_wrap {
    position: relative;
    background: #fff;
    padding-bottom: 55px;
}

.certification_area {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.certification_head {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.3;
    border-top: 1px solid #D5DFE9;
    padding-top: 32px;
    margin-bottom: 63px;
}

.certification_list {
    display: flex;
    justify-content: space-between;
}

.certification_item {
    margin-right: 20px;
}

.certification_item:last-child {
    margin-right: 0;
}

.certification_item a:hover {
    opacity: 0.7;
}


/* slick */

.slick-prev,
.slick-next {
    position: absolute;
    bottom: -21%;
    transform: translateY(-50%);
    z-index: 10;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    /* デフォルト文字を非表示に */
    font-size: 0;
    line-height: 0;
    color: transparent;
    text-shadow: none;
}

/* 丸い背景 */
.slick-prev::before,
.slick-next::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-color: #EBF2FA;
    border-radius: 50%;
    transition: all ease 0.3s;
}

.slick-prev::after,
.slick-next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 18px;
    width: 3.8px;
    height: 6.62px;
    border: solid #1385DD;
    border-width: 0 1px 1px 0;
    padding: 3px;
    transform: translate(-50%, -50%) rotate(135deg);
    transition: all ease 0.3s;
}

.link_wrap .slick-prev,
.link_wrap .slick-next {
    top: 50%;
    bottom: auto;
}

/* 次へ（右向き）だけ矢印向きを調整 */
.slick-next::after {
    transform: translate(-50%, -50%) rotate(-45deg);
    left: 15px;
}

/* 矢印の左右位置（調整） */
.slick-prev {
    left: -45px;
}

.slick-next {
    right: -45px;
}

.slick-prev:hover::before,
.slick-next:hover::before {
    background-color: #1385DD;
}

.slick-prev:hover::after,
.slick-next:hover::after {
    border: solid #fff;
    border-width: 0 1px 1px 0;
}

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

    .pickup_list.slick-slider {
        /*padding:0 40px;*/
    }

    .link_area {
        max-width: 1360px
    }

    .link_list.slick-slider {
        padding: 0 35px;
    }
    .slick-prev {
        left: 0;
    }

    .slick-next {
        right: 0;
    }

}


@media screen and (max-width: 1100px) {
    .news_tab .tab_item {
        min-width: 150px;
    }
}



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

    .mv img {
        min-height: auto;
    }

    .mv_txt h1 {
        font-size: 3.6rem;
    }

    .pickup_list {
        padding-bottom: 70px;
        /* 下余白を少し縮める */
    }

    .pickup_list .slick-controls {
        gap: 20px;
        /*bottom: 20px;*/
		bottom:3px;
    }

    .pickup_wrap .slick-prev,
    .pickup_wrap .slick-next {
        width: 40px;
        height: 40px;
    }

    .pickup_wrap .slick-prev {
        /*top: 15px;*/
        left: -45px;
    }

    .pickup_wrap .slick-next {
        /*top: 15px;*/
        right: -45px;
    }


    .news_top {
        /*justify-content: center;*/
        padding-left: 30px;
    }

    .news_tab .tab_item {
        min-width: 120px;
    }


    /*.business_head .index_link_btn{
		position:relative;
		margin-top:30px;
	}*/
    .business_area .index_link_btn {
        margin-top: 0;
    }

    .company_item {
        margin: 0 10px;
    }

    .company_txt_in {
        padding-right: 90px;
    }


}



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

    .index_head {
        font-size: 1.5rem;
    }

    .index_head:before {
        font-size: 4.5rem;
        margin-bottom: 3px;
    }

    /**********************************************
        * mv
    *********************************************/
    .mv {}

	.mv::before {
/*         background-image: url(../images/wave-01.svg); */
		height: 260px;
        background-position: 90%;
        bottom: 70px;
    }
    .mv img {
        width: 100%;
    }

    .mv_txt {
        align-items: flex-start;
        padding: 0 20px 0 27px;
        margin-top: 10px;
    }

    .mv_txt h1 {
        font-size: 2.5rem;
        text-align: left;
    }


    /**********************************************
        * pickup
    *********************************************/

    .pickup_wrap {
        padding: 30px 0 50px 0;
    }

    .pickup_area {
        padding: 0;
    }

    .pickup_wrap h2 {
        font-size: 3.0rem;
        margin-bottom: 20px;
    }

    .pickup_list.slick-slider {
        /*padding:0;*/
    }

    .pickup_list {
        padding-bottom: 50px;
    }

    .pickup_list .pickup_item {
        /*padding: 0 5px;*/
        margin: 0 5px;
    }

    /**********************************************
        * news
    *********************************************/
    .news_wrap {
        padding: 29px 20px 20px 20px;
    }

    .news_area {
        /*padding: 60px 20px 100px;*/
        padding: 0;
    }

    .news_head {
        display: block;
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1.45;
        text-align: center;
    }

    .news_head:before {
        font-size: 4.5rem;
        content: attr(data-en);
        display: block;
        margin-bottom: 3px;
        margin-right: 0;
        font-family: "Outfit", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        /* font-size: 9.0rem; */
        line-height: 1.3;
        color: #0077C0;
        text-transform: capitalize;
    }



    .news_category_select_area {
        position: relative;
		margin-top: 20px;
    }
/*
    .news_category_select_area:after {
        position: absolute;
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        border-top: 9px solid #0077c0;
        border-bottom: 0;
        top: 0;
        bottom: 0;
        right: 23px;
        margin: auto;
    }*/
/*
    #news-category-select {
        display: block;
        width: 100%;
        padding: 14px 40px 14px 25px;
        background: #fff;
        color: #0077c0 !important;
        font-family: var(--noto);
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.5;
        webkit-appearance: none;
        appearance: none;
        cursor: pointer;
        border: 1px solid #CCCCCC;
        border-radius: 26px;
        margin-top: 20px;
    }*/



    .news_top {
        display: block;
        padding: 0;
        margin: 0;
        background: none;
        box-shadow: unset;
    }

    .news_item {
        margin-bottom: 30px;
    }

    .news_link {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .news_list {
        margin-top: 18px;
        margin-bottom: 0;
        display: block;
    }

    .tab_content.active {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 0;
    }

    .news_list li {
        position: relative;
        padding-bottom: 0;
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .news_list li a {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .news_thumb {
        width: 100%;
        /*margin-right: 13px;
        padding-bottom: 90px;*/
        margin-bottom: 0;
    }

    .news_txt {
        margin-top: 11px;
    }

    .news_title {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-top: 5px;
    }


    .news_date {
        font-size: 1.2rem;
        margin-right: 10px;
        /*margin-top: 1px;*/
    }

    .news_cate {
        font-size: 1.1rem;
        padding: 3px 8px 2px;
    }


    /**********************************************
        * business
    *********************************************/

    .business_wrap {
        padding: 30px 0 50px 0;
    }

    .business_head {
        margin-bottom: 25px;
    }

    .business_list {
        grid-template-columns: repeat(1, 1fr);
    }

    .business_content {
        padding: 115px 20px 32px 20px;
        margin-top: -140px;
        width: 100%;
    }

    .business_item {
        margin-bottom: 40px;
    }

    .business_img img {
        width: 90%;
        margin: 0 auto;
    }

    .business_content h3 {
        margin-top: 14px;
        font-size: 2.4rem;
    }

    .business_content p {
        font-size: 1.5rem;
        margin-bottom: 11px;
    }

    .business_link_list li a {
        padding: 18px 40px 18px 0;
        font-size: 1.5rem;
    }

    /**********************************************
        * company
    *********************************************/

    .company_wrap {
        padding: 0;
        /*border-radius:25px;*/
    }

    .company_area {
        padding: 120px 20px;
    }

    .company_list {
        grid-template-columns: repeat(1, 1fr);
        margin: 25px 0 15px 0;
    }

    .company_item {
        margin: 0 0 35px 0;
    }

    .company_txt_in {
        margin-top: 15px;
        padding-right: 55px;
    }

    .company_txt h3 {
        font-size: 2.0rem;
    }

    .company_txt p {
        font-size: 1.5rem;
    }

    .link_arrow {
        width: 42px;
        height: 42px;
        bottom: 0;
    }

    .link_arrow:before {
        width: 42px;
        height: 42px;
    }

    .link_arrow:after {
        width: 14px;
        height: 11px;
        right: calc(100% - 28px);
        top: calc(50% - 5px);
    }

    .company_curve_top,
    .company_curve_bottom {
        height: 50px;
    }

    /**********************************************
        * bnr
    *********************************************/

    .bnr_list {
        grid-template-columns: repeat(1, 1fr);
        margin: 45px auto 0 auto;
    }

    .bnr_list li {
        margin: 0 0 35px 0;
    }

    .bnr_wrap .index_head:before {
        font-size: 3.8rem;
    }




    /**********************************************
        * link
    *********************************************/

    .link_head {
        font-size: 1.5rem;
        padding-top: 30px;
        margin-bottom: 25px;
    }

    .link_list.slick-slider {
        padding: 0;
    }

    .link_list .slick-track {
        margin-left: 0 !important;
    }

    .link_item {
        margin: 0 15px 0 15px;
    }


    .link_wrap .slick-prev {
        left: unset;
        right: 45px;
        top: -35px;
    }

    .link_wrap .slick-next {
        right: 0;
        top: -35px;
    }

    .slick-slide img {
        display: block;
        width: 100%;
    }

    /**********************************************
        * certification
    *********************************************/

    .certification_head {
        font-size: 1.5rem;
        padding-top: 30px;
        margin-bottom: 25px;
    }

    .certification_list.slick-slider {
        padding: 0;
    }

    .certification_list .slick-track {
        margin-left: 0 !important;
    }

    .certification_item {
        margin: 0 15px 0 0;
    }


    .slick-prev {
        left: unset;
        right: 45px;
        top: -35px;
    }

    .slick-next {
        right: 0;
        top: -35px;
    }

    .slick-slide img {
        display: block;
        width: 100%;
    }
}