@charset "UTF-8";

/* 共通 */

#main {
    padding-top: 0;
}

.top_title01 {
    color: #1e82c8;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: .05em;
    margin-bottom: 40px;
}

.top_title01 .en {
    display: block;
    color: #aaaaaa;
    font-size: 14px;
    position: relative;
    padding-left: 10px;
}

.top_title01 .en::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #1e82c8;
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    border-radius: 50%;
}

.top_title01.white {
    color: #fff;
}

.top_title01.white .en {
    color: #fff;
}

.top_title01.white .en::before {
    background: #fff;
}

.top_btn01 {
    width: 200px;
}

.top_btn01 a {
    display: block;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #1e82c8;
    border-radius: 32px;
    font-size: 16px;
    color: #1e82c8;
    text-align: center;
    background-image: url(../img/common/arrow03.svg);
    background-size: 13px auto;
    background-repeat: no-repeat;
    background-position: right 30px center;
    padding: 10px 30px 10px 10px;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.top_btn01 a:hover {
    background-color: #1e82c8;
    color: #fff;
    background-image: url(../img/common/arrow02.svg);
}

.top_btn02 {
    width: 200px;
}

.top_btn02 a {
    display: block;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background-image: url(../img/common/icon02.svg);
    background-size: 18px auto;
    background-repeat: no-repeat;
    background-position: right 30px center;
    padding: 15px 30px 15px 15px;
}

.top_btn02 a:hover {
    background-color: #fff;
    color: #1e82c8;
    background-image: url(../img/common/icon01.svg);
}

.top_btn03 {
    width: 150px;
}

.top_btn03 a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: .05em;
    font-weight: 600;
    text-align: center;
    padding: 0 40px 0 0;
    position: relative;
}

.top_btn03 a::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: calc(50% - 15px);
    right: 0;
    border-radius: 50%;
    transform: rotate(90deg);
    background-image: url(../img/common/arrow01.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 13px auto;
    background-color: #1e82c8;
}

.top_btn03 a:hover {
    color: #1e82c8;
}

@media only screen and (max-width:768px) {
    .top_title01 {
        font-size: 6vw;
        line-height: 1.3em;
        margin-bottom: 6vw;
    }
    .top_title01 .en {
        font-size: 3.2vw;
        padding-left: 2.4vw;
    }
    .top_title01 .en::before {
        width: 1.4vw;
        height: 1.4vw;
        top: calc(50% - 0.7vw);
    }
    .top_btn01 {
        width: 40vw;
    }
    .top_btn01 a {
        border-radius: 8vw;
        font-size: 3.6vw;
        background-size: 2vw auto;
        background-repeat: no-repeat;
        background-position: right 4vw center;
        padding: 2vw 4vw 2vw 2vw;
        box-shadow: none;
    }
    .top_btn02 {
        width: 40vw;
    }
    .top_btn02 a {
        border-radius: 8vw;
        font-size: 3.6vw;
        background-size: 4vw auto;
        background-position: right 4vw center;
        padding: 2vw 4vw 2vw 2vw;
    }
    .top_btn03 {
        width: 30vw;
    }
    .top_btn03 a {
        font-size: 3.6vw;
        line-height: 5vw;
        text-align: left;
        padding: 0 4vw 0 0;
    }
    .top_btn03 a::after {
        width: 5vw;
        height: 5vw;
        top: calc(50% - 2.5vw);
        background-size: 2vw auto;
    }
}


/* FV */

#fv {
    width: 100%;
    /*height: calc(100vh + 60px);*/
    height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#fv .bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

#fv .bg span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    animation: change-img-anim 16s infinite;
}

#fv .bg span:nth-of-type(1) {
    opacity: 1;
    animation-delay: 0s;
    z-index: 5;
}

#fv .bg span:nth-of-type(2) {
    animation-delay: 4s;
    z-index: 4;
}

#fv .bg span:nth-of-type(3) {
    animation-delay: 8s;
    z-index: 3;
}

#fv .bg span:nth-of-type(4) {
    animation-delay: 12s;
    z-index: 2;
}


/* #fv .bg span:nth-of-type(5) {
    animation-delay: 16s;
    z-index: 1;
} */

#fv .bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@keyframes change-img-anim {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    95% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#fv h1 {
    position: relative;
    z-index: 1;
    font-size: 72px;
    color: #fff;
    animation: change-h1-anim 16s infinite;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 6px rgba(0, 0, 0, 0.4), 0px 1px 19px rgba(0, 0, 0, 0.4);
    font-weight: bold;
    font-feature-settings: "palt";
}

@keyframes change-h1-anim {
    0% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    22% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    42% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    #fv h1 {
        font-size: 64px;
    }
}

@media only screen and (max-width:768px) {
    #fv {
        /*height: calc(100vh + 8vw);*/
    }
    #fv h1 {
        font-size: 10vw;
        text-align: center;
        line-height: 1.8em;
    }
}


/* 西部技研について */

#sec07 {
    margin-top: -60px;
    max-width: 100%;
    padding: 100px 0 200px;
    background-attachment: fixed;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/top/sec01_bg.png);
    border-radius: 60px 60px 0 0;
    overflow: hidden;
    position: relative;
}

#sec01 .inner {
    max-width: 1280px;
    padding: 0 20px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
#sec07 .banner {
    max-width: 1280px;
    margin: auto;
    display: flex;
    margin-top: 40px;
}
#sec07 .banner ul {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0 auto;
}
#sec07 .banner ul li {
    margin: 0 20px;
}
#sec07 .banner ul li img {
    max-height: 200px;
}

#sec01 .image {
    width: 45.4%;
}

#sec01 .box {
    width: 44%;
}

#sec01 .box p {
    font-size: 14px;
    line-height: 2.5em;
}

#sec01 .box .top_btn01 {
    margin-top: 50px;
}

@media only screen and (max-width:768px) {
    #sec07 {
        margin-top: -8vw;
        padding: 16vw 0 16vw;
        border-radius: 8vw 8vw 0 0;
    }
    #sec01 .inner {
        max-width: 100%;
        /*padding: 0 6vw;*/
        padding: 0;
        flex-wrap: wrap;
    }
    #sec01 .image {
        width: 100%;
        padding: 0 4vw;
        order: 2;
    }
    #sec01 .box {
        width: 100%;
        order: 1;
    }
    #sec01 .box p {
        font-size: 3.6vw;
        line-height: 1.8em;
    }
    #sec01 .box .top_btn01 {
        margin: 8vw auto 12vw;
    }
    #sec01 .box .top_btn01 a {
        font-weight: 600;
        background-color: transparent;
    }
}


/* 事業・製品 */

#sec02 {
    background: #fff;
    position: relative;
    padding: 150px 0;
}

#sec02::before {
    content: '';
    display: block;
    background: #1e82c8;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
}

#sec02::after {
    content: '';
    display: block;
    background: #1e82c8;
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 23%;
    border-radius: 0 0 60px 0;
}

#sec02 .inner {
    max-width: 1280px;
    padding: 0 20px;
    margin: auto;
    position: relative;
    z-index: 2;
}

#sec02 .image {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 130px;
    bottom: 130px;
    width: 42%;
    border-radius: 60px 0 0 60px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

#sec02 .image img {
    display: none;
    object-fit: cover;
    object-position: 0 50%;
    width: 100%;
    height: 100%;
}

#sec02 .image img.current {
    display: block;
}

#sec02 .inner .box {
    padding-right: 50%;
}

#sec02 .inner .box p {
    color: #fff;
    font-size: 14px;
    line-height: 2.5em;
    margin-bottom: 40px;
}

#sec02 .inner .box ul li a {
    display: block;
    text-decoration: none;
    padding: 40px;
    font-size: 24px;
    color: #fff;
    border-top: 1px solid #fff;
    padding-left: 120px;
    position: relative;
}

#sec02 .inner .box ul li:last-child a {
    border-bottom: 1px solid #fff;
}

#sec02 .inner .box ul li a span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    left: 40px;
    top: calc(50% - 29px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

#sec02 .inner .box ul li:hover a {
    color: #1a79c8;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 70px;
}

#sec02 .inner .box ul li:hover a::after {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #1a79c8;
    background-image: url(../img/common/arrow02.svg);
    background-size: 13px auto;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 40px;
    top: calc(50% - 15px);
}

#sec02 .inner .box ul li:hover+li+li a {
    border-top: 1px solid #1a79c8;
}

#sec02 .inner .box ul li:hover a span {
    background: #1a79c8;
    color: #fff;
}

#sec02 .inner .top_btn01 {
    position: absolute;
    right: 50%;
    top: 0;
}

#sec02 .inner .top_btn01 a {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    background-image: url(../img/common/arrow02.svg);
    box-shadow: none;
}

#sec02 .inner .top_btn01 a:hover {
    background-color: #fff;
    color: #1e82c8;
    background-image: url(../img/common/arrow03.svg);
}

@media only screen and (max-width:768px) {
    #sec02 {
        padding: 14vw 0;
    }
    #sec02::before {
        width: 50%;
    }
    #sec02::after {
        width: 50%;
        border-radius: 0 0 8vw 0;
    }
    #sec02 .inner {
        max-width: 100%;
        padding: 0 6vw;
    }
    #sec02 .image {
        display: none;
    }
    #sec02 .inner .box {
        padding-right: 0;
    }
    #sec02 .inner .box p {
        font-size: 3.6vw;
        line-height: 1.8em;
        margin-bottom: 6vw;
    }
    #sec02 .inner .box ul li {
        margin-top: 4vw;
    }
    #sec02 .inner .box ul li a,
    #sec02 .inner .box ul li:hover a {
        padding: 3vw 4vw 3vw 18vw;
        font-size: 4.4vw;
        color: #1a79c8;
        background: #fff;
        border: 1px solid #fff;
        border-radius: 30vw;
    }
    #sec02 .inner .box ul li a span {
        width: 10vw;
        height: 10vw;
        left: 4vw;
        color: #fff;
        background: #1a79c8;
        top: calc(50% - 5vw);
        border-radius: 50%;
    }
    #sec02 .inner .box ul li a::after,
    #sec02 .inner .box ul li:hover a::after {
        content: '';
        display: block;
        width: 6vw;
        height: 6vw;
        background-color: #1a79c8;
        background-image: url(../img/common/arrow02.svg);
        background-size: 2vw auto;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 50%;
        position: absolute;
        right: 4vw;
        top: calc(50% - 3vw);
    }
    #sec02 .inner .box ul li.sp {
        margin-top: 14vw;
        margin-right: -6vw;
    }
    #sec02 .inner .top_btn01 {
        position: static;
        margin: auto auto 12vw;
    }
}


/* 製品ピックアップ */

#sec03 {
    width: 100%;
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
}

#sec03::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 400px;
    background: #e2ecf1;
}

#sec03 .bg {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    width: 1080px;
    left: calc(50% - 540px);
    bottom: 0;
}

#sec03 .inner {
    padding: 0;
    margin: auto;
    position: relative;
    z-index: 2;
}

#sec03 .inner .top_title01 {
    max-width: 1080px;
    margin: auto auto 60px;
}

#sec03 .slide a {
    display: block;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
}

#sec03 .slide .image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 78%;
    height: 0;
    margin-bottom: 20px;
}

#sec03 .slide .image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#sec03 .slide .category {
    width: auto;
    font-size: 12px;
    line-height: 1em;
    padding: 4px 10px;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 10px;
}

#sec03 .slide .category:empty {
    display: none !important;
}

#sec03 .slide .title {
    width: 100%;
    font-size: 18px;
    line-height: 1.7em;
    font-weight: 600;
}

#sec03 .slick-slider {
    max-width: 1080px;
    margin: auto;
    overflow: visible;
}

#sec03 .slick-list {
    overflow: visible;
}

#sec03 .slick-slide {
    width: 344px;
    margin-left: 24px;
}

#sec03 .slick-slide:first-child {
    margin-left: 0;
}

#sec03 .slick-prev,
#sec03 .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 100px;
    width: 64px;
    height: 64px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px auto;
    background-color: #fff;
    border: 1px solid #aaaaaa;
    z-index: 2;
}

#sec03 .slick-prev:hover,
#sec03 .slick-next:hover {
    border: 1px solid #187fc3;
}

#sec03 .slick-prev:hover:before,
#sec03 .slick-prev:focus:before,
#sec03 .slick-next:hover:before,
#sec03 .slick-next:focus:before,
#sec03 .slick-prev#sec03 .slick-disabled:before,
#sec03 .slick-next#sec03 .slick-disabled:before {
    opacity: 1;
}

#sec03 .slick-prev:before,
#sec03 .slick-next:before {
    font-size: 0;
    line-height: 0;
    opacity: 1;
}

#sec03 .slick-prev {
    transform: rotate(180deg);
    left: -32px;
    border-radius: 50%;
    background-image: url(../img/common/arrow04.svg);
}

#sec03 .slick-prev:hover {
    background-image: url(../img/common/arrow05.svg)
}

#sec03 .slick-prev:before {
    content: '';
}

#sec03 .slick-next {
    right: -32px;
    border-radius: 50%;
    background-image: url(../img/common/arrow04.svg);
}

#sec03 .slick-next:hover {
    background-image: url(../img/common/arrow05.svg)
}

#sec03 .slick-next:before {
    content: '';
}

@media only screen and (max-width:768px) {
    #sec03 {
        padding: 14vw 6vw;
        overflow: hidden;
    }
    #sec03::after {
        height: 60vw;
    }
    #sec03 .bg {
        width: 71%;
        left: 6vw;
        bottom: 0;
    }
    #sec03 .inner {
        padding: 0;
        margin: auto;
        position: relative;
        z-index: 2;
    }
    #sec03 .inner .top_title01 {
        max-width: 100%;
        margin: auto auto 6vw;
    }
    #sec03 .slide a {
        display: block;
        text-decoration: none;
        display: flex;
        flex-wrap: wrap;
    }
    #sec03 .slide .image {
        width: 100%;
        margin-bottom: 3vw;
    }
    #sec03 .slide .category {
        font-size: 2.6vw;
        padding: 1vw 2vw;
        border-radius: 2vw;
        margin-bottom: 2vw;
    }
    #sec03 .slide .title {
        font-size: 4vw;
    }
    #sec03 .slick-slider {
        max-width: 100%;
    }
    #sec03 .slick-slide {
        width: 55vw;
        margin-left: 8vw;
    }
    #sec03 .slick-prev,
    #sec03 .slick-next {
        top: 16vw;
        width: 10vw;
        height: 10vw;
        background-size: 4vw auto;
    }
    #sec03 .slick-prev {
        left: -5vw;
    }
    #sec03 .slick-next {
        right: -5vw;
    }
}


/* 技術 */

#sec04 {
    padding: 120px 20px;
}

#sec04 .inner {
    max-width: 1080px;
    margin: auto;
    position: relative;
}

#sec04 .bnr {
    position: relative;
    display: block;
    background-image: url(../img/top/sec04_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 50px;
    margin-bottom: 20px;
    border-radius: 30px;
    text-decoration: none;
}

#sec04 .bnr::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    top: calc(50% - 32px);
    right: 80px;
    border-radius: 50%;
    border: 1px solid #fff;
    transform: rotate(90deg);
    background-image: url(../img/common/arrow01.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px auto;
}

#sec04 .bnr:hover {
    opacity: 0.7;
}

#sec04 .bnr h2 {
    margin: 0;
}

#sec04 .box {
    display: flex;
}

#sec04 .box h3 {
    width: 250px;
    text-align: center;
    color: #1e82c8;
    font-size: 24px;
    font-weight: 600;
}

#sec04 .box p {
    width: calc(100% - 250px);
    font-size: 14px;
    line-height: 2.6em;
}

@media only screen and (max-width:768px) {
    #sec04 {
        padding: 14vw 6vw;
    }
    #sec04 .inner {
        max-width: 100%;
    }
    #sec04 .bnr {
        padding: 20vw 4vw;
        margin-bottom: 4vw;
        border-radius: 4vw;
        background-image: url(../img/top/sec04_bg_sp.png);
    }
    #sec04 .bnr::after {
        width: 12vw;
        height: 12vw;
        top: calc(50% - 6vw);
        right: 6vw;
        background-size: 4vw auto;
    }
    #sec04 .bnr h2 {
        margin: 0;
    }
    #sec04 .box {
        display: block;
    }
    #sec04 .box h3 {
        width: 100%;
        text-align: left;
        font-size: 4.6vw;
    }
    #sec04 .box p {
        width: 100%;
        font-size: 3.6vw;
        line-height: 1.7em;
    }
}


/* サステナビリティ */

#sec05 {
    padding: 100px 20px;
    background-image: url(../img/top/sec05_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#sec05::after {
    content: '';
    display: block;
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.6);
}

#sec05 .inner {
    max-width: 1080px;
    padding: 0 0 0 620px;
    margin: auto;
    position: relative;
    z-index: 2;
}

#sec05 .inner .box p {
    font-size: 14px;
}

#sec05 .top_btn01 {
    margin-top: 50px;
}

#sec05 .top_btn01 a {
    background-color: transparent;
    font-weight: 600;
    box-shadow: none;
}

#sec05 .top_btn01 a:hover {
    background-color: #187fc3;
}

@media only screen and (max-width:768px) {
    #sec05 {
        padding: 14vw 6vw 30vw;
        background-image: url(../img/top/sec05_bg.png);
    }
    #sec05::after {
        width: 100%;
    }
    #sec05 .inner {
        max-width: 100%;
        padding: 0;
    }
    #sec05 .inner .box p {
        font-size: 3.6vw;
    }
    #sec05 .top_btn01 {
        margin: 6vw auto auto;
    }
    #sec05 .top_btn01 a:hover {
        background-color: #187fc3;
    }
}


/* サステナビリティ */

#sec06 {
    padding: 120px 20px;
}

#sec06 .inner {
    max-width: 1280px;
    padding: 100px 80px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/top/sec06_bg.png);
    border-radius: 30px;
}

#sec06 .top_title01 {
    line-height: 1.5em;
}

#sec06 .box {
    width: 50%;
}

#sec06 p {
    width: 50%;
    color: #fff;
    font-size: 14px;
    line-height: 2.7em;
    padding-left: 100px;
}

@media only screen and (max-width:768px) {
    #sec06 {
        padding: 14vw 6vw;
    }
    #sec06 .inner {
        max-width: 100%;
        padding: 0;
        margin: auto;
        display: block;
        background: none;
        border-radius: 0;
    }
    #sec06 .top_title01 {
        line-height: 1.5em;
    }
    #sec06 .box {
        width: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url(../img/top/sec06_bg_sp.png);
        border-radius: 4vw;
        padding: 8vw 4vw;
    }
    #sec06 .box .top_btn02 {
        margin: 30vw auto auto;
    }
    #sec06 p {
        width: 100%;
        color: #333333;
        font-size: 3.6vw;
        line-height: 1.7em;
        padding: 0;
        margin-top: 4vw;
    }
}


/* 新着情報 */

#sec01 {
    padding: 120px 20px 160px;
}

#sec06+#sec07 {
    padding: 0 20px 160px;
}

#sec07 .inner {
    max-width: 1080px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#sec07 .box {
    width: 280px;
}

#sec07 .news_list {
    width: calc(100% - 280px);
    border-top: 1px solid #c9c9c9;
}

#sec07 .news_list li {
    border-bottom: 1px solid #c9c9c9;
}

#sec07 .news_list li a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    text-decoration: none;
    padding: 20px 70px 20px 0;
}

#sec07 .news_list li a::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    right: 30px;
    background-image: url(../img/common/arrow03.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px auto;
}

#sec07 .news_list li a:hover {
    opacity: 0.7;
}

#sec07 .news_list li a .date {
    font-size: 14px;
    width: 100px;
}

#sec07 .news_list li a .category {
    font-size: 14px;
    color: #187fc3;
}

#sec07 .news_list li a .title {
    width: 100%;
    font-size: 14px;
    line-height: 1.5em;
}

@media only screen and (max-width:768px) {
    #sec01 {
        padding: 14vw 6vw 24vw;
        position: relative;
    }
    #sec07 .inner {
        max-width: 100%;
        padding: 0 6vw;
        flex-wrap: wrap;
    }
    #sec06+#sec07 {
        padding: 0 6vw 24vw;
    }
    #sec07 .inner {
        max-width: 100%;
        margin: auto;
        display: block;
    }
    #sec07 .banner {
        max-width: 100%;
        padding: 0 6vw;
        display: block;
        margin-top: 20px;
    }
    #sec07 .banner ul {
        flex-wrap: wrap;
    }
    #sec07 .banner ul li {
        margin: 10px 0;
    }
    #sec07 .box {
        width: 100%;
    }
    #sec07 .box .top_btn03 {
        position: absolute;
        right: 6vw;
        /*bottom: 14vw;*/
        bottom: 2em;
    }
    #sec07 .news_list {
        width: 100%;
    }
    #sec07 .news_list li a {
        padding: 3vw 10vw 3vw 0;
    }
    #sec07 .news_list li a::after {
        width: 3.2vw;
        height: 3.2vw;
        top: calc(50% - 1.6vw);
        right: 2vw;
        background-size: 3.2vw auto;
    }
    #sec07 .news_list li a .date {
        font-size: 3vw;
        width: 20vw;
    }
    #sec07 .news_list li a .category {
        font-size: 3vw;
    }
    #sec07 .news_list li a .title {
        font-size: 3.6vw;
    }
}