@charset "UTF-8";

/*-------------------------------------------------------
component
-------------------------------------------------------*/
/* c_titleH2
------------------------*/
.c_titleH2>div>div:only-child:before,
.c_titleH2>div>div.h2:before,
[class^=c_p-] .c_titleH2 h2:before {
    left: 0;
}

@media screen and (max-width: 767px) {
    .c_spReplac-title+.m_slider:not(:first-child) {
        margin-top: 50px;
    }
}

/*-------------------------------------------------------
unique style
-------------------------------------------------------*/

/* mainvisual 藤瀬追記
------------------------*/
.mv-slider {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.mv-slider-inner {
    position: absolute;
    left: 50%;
    bottom: 12%;
    width: 90%;
    margin: auto;
    transform: translateX(-50%);
    z-index: 5;
}

@media screen and (max-width: 767px) {
    .mv-slider-inner {
        width: 90%;
        bottom: 8%;
    }
}

.mv-slider .mv-title {
    position: relative;
    margin-bottom: 20px;
    font-size: 4vw;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.25rem;
    text-shadow: 2px 2px 3px #000000;
}

@media screen and (max-width: 767px) {
    .mv-slider .mv-title {
        margin-bottom: 20px;
        font-size: 9.8vw;
    }
}

.mv-slider .mv-title.-jp {
    margin-bottom: 35px;
    font-size: 3.6111111111vw;
}

@media screen and (max-width: 767px) {
    .mv-slider .mv-title.-jp {
        margin-bottom: 20px;
        font-size: 7.7333333333vw;
    }
}

/* .leadImage
------------------------*/
.leadImage {
    overflow: hidden;
    position: relative;
    background-color: #000;
    margin: 0 -20px;
}

.leadImage__link a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    z-index: 1;
}

.leadImage__inner {
    max-width: 1440px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    body:not(.s_touchDevice) .leadImage {
        position: relative;
        overflow: hidden;
    }

    body:not(.s_touchDevice) .leadImage__inner img {
        position: relative;
        transform-origin: center;
        transition: transform 0.2s;
    }

    body:not(.s_touchDevice) .leadImage__link:hover~.leadImage__inner img {
        transform: scale(1.1);
    }
}

/* s_feature
------------------------*/
.s_feature {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1300px;
    margin: 20px auto;
}

.s_feature__inner>div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    height: auto;
    max-width: 1300px;
    margin: 0 60px;
    overflow: hidden;
    padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .s_feature__inner>div {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }
}

.s_feature__item {
    position: relative;
    max-width: calc(33.33% - 20px);
    height: 350px;
    margin-right: 9px;
    margin-left: 9px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .s_feature {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .s_feature__inner {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .s_feature__item {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        width: 100%;
        max-width: none;
        height: 250px;
        margin: 0 0 15px 0;
    }

    .s_feature__item:not(:first-of-type) {
        margin-top: 15px;
    }
}

.s_feature__item>div,
.s_feature__item>div>div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    height: 100%;
}

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

    .s_feature__item>div,
    .s_feature__item>div>div {
        display: unset;
        height: unset;
    }
}

.s_feature__item:first-of-type {
    margin-left: 0;
}

.s_feature__item:last-of-type {
    margin-right: 0;
}

.s_feature__link {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    width: 100%;
    text-decoration: none !important;
}

@media screen and (max-width: 767px) {
    .s_feature__link {
        position: unset;
        display: unset;
    }
}

.s_feature__link:hover img {
    transform: scale(1.1);
    border-radius: 10px;

}

@media screen and (max-width: 767px) {
    .s_feature__link:hover img {
        transform: unset;
    }
}

.s_feature__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, #003F65 100%);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

@media screen and (max-width: 767px) {
    .s_feature__link::after {
        height: 34.6666666667vw;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
    }
}

.s_feature__image {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.s_feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
    border-radius: 10px;
}

@media screen and (max-width: 767px) {
    .s_feature__image img {
        max-width: unset;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
    }
}

.s_feature__text {
    margin: 0 auto;
    padding-right: 1.3888888889vw;
    padding-bottom: 2.0833333333vw;
    padding-left: 2.7777777778vw;
    z-index: 1;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .s_feature__text {
        position: relative;
        padding: 0 30px 15px;
        padding-right: 8vw;
        padding-bottom: 4vw;
        padding-left: 8vw;
    }
}

@media screen and (max-width: 767px) {
    .s_feature__text .c_titleH2>div>div:only-child {
        padding-bottom: 6px;
    }
}

.s_feature__text .c_titleH2>div>div:only-child::before {
    width: 118px;
}

@media screen and (max-width: 767px) {
    .s_feature__text .c_titleH2>div>div:only-child::before {
        width: 94px;
    }
}

.s_feature__note.-jp.-sustainability::after {
    content: "";
    display: inline-block;
    width: 18rem;
}

.s_feature__note.-jp.-ir::after {
    content: "";
    display: inline-block;
    width: 13rem;
}

.s_feature h2 {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.2;
}

@media screen and (max-width: 767px) {
    .s_feature h2 {
        font-size: 2.8rem;
    	line-height: 1.2;
    }
}

.s_feature .text-more {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .s_feature .text-more {
        font-size: 1.3rem;
    }
}

.s_feature .text-more::after {
    content: "";
    display: inline-block;
    width: 0.6em;
    height: 0.6em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 0.3em;
    vertical-align: middle;
}

@media screen and (max-width: 767px) {
    .s_feature .text-more::after {
        border-top-width: 1px;
        border-right-width: 1px;
    }

.c_banner.col-1 img {
  width: 100%;
  height: auto;
  display: block;
}
}

@media screen and (min-width: 768px) {
    .s_feature__item {
        flex: 1 1 33.33%;
        max-width: calc(33.33% - 20px);
    }

  .s_feature__link {
    flex: 1 1 auto;
    width: auto;
  }

  .s_feature__item > div,
  .s_feature__item > div > div {
    width: 100%;
    justify-content: flex-start; 
    align-items: stretch;  
  }

  .s_feature__link {
    flex: 1 1 auto; 
    width: auto; 
  }

  .s_feature__text {
    margin: 0;     
    width: 100%;
    text-align: left; 
    padding-left: 2.4vw;
    padding-right: 1.3888888889vw;
    padding-bottom: 2.0833333333vw;
  }

  .s_feature__text h2,
  .s_feature__text p,
  .s_feature__text .text-more {
    margin: 0;
    padding: 0;
  }
}