@charset "utf-8";

/* top-button
***************************************************************/

.top-button {
    height: 60px;
    width: 60px;
    position: fixed;
    right: 35px;
    bottom: 30px;
    display: none;
    z-index: 20;
    cursor: pointer;
    background-image: url(../../images/icon_top_button.svg);
    background-size: contain;
    display: none;
}

.top-button.show {
    display: block;
}

/* main
***************************************************************/

.main {
    overflow: hidden;
}

/* fv
***************************************************************/

.fv {
    margin-top: 79px;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 820px;
}

.fv::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    width: 40%;
    height: 1460px;
    background-image: url(../../images/bg-green.jpg);
    background-size: cover;
    z-index: 0;
}

.fv::after {
    content: "";
    position: absolute;
    top: -80px;
    right: 0;
    width: 78%;
    height: 800px;
    background-image: url(../../images/img_fv_bg.jpg);
    background-size: cover;
    z-index: -2;
}

.fv__textbox {
    padding-top: 410px;
    padding-left: 110px;
    color: #fff;
    z-index: 2;
    position: relative;
}

.fv__textbox__title {
    font-size: 80px;
    line-height: 1.2;
    font-weight: 600;
    text-shadow: 0 4px 15px #0c401f;
}

.fv__textbox__text {
    margin-top: 40px;
    font-size: 18px;
    font-weight: bold;
}

.sp__br {
    display: none;
}

.mv__img__wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 820px;
    z-index: 1;
}

.mv__img {
    width: 100%;
    height: 100%;
}

.mv__img__sp {
    display: none;
}

@media (max-width: 1780px) {
    .fv::before {
        width: 26%;
    }
}

@media screen and (max-width: 1060px) {
    .fv__textbox {
        padding-left: 90px;
    }
}

/* about
***************************************************************/

.about {
    position: relative;
    overflow: hidden;
}

.about__box {
    display: flex;
}

.about__box__img {
    width: 640px;
    height: 825px;
}

.about__box__content {
    padding-left: 80px;
    position: relative;
}

.about__title__wrapper {
    position: relative;
}

.about__title__en {
    position: absolute;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    letter-spacing: 0.06rem;
}

.about__title__ja {
    padding-top: 370px;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    margin-top: 20px;
}

.about__box__text__subtitle {
    margin-top: 60px;
    font-size: 30px;
    font-weight: bold;
}

.about__box__text__subtitle span {
    color: #1a8b44;
}

.about__box__text__text {
    margin-top: 30px;
}

.sp_only {
    display: none;
}

@media (max-width: 1780px) {
    .section__title {
        font-size: 150px;
    }

    .about__title__ja {
        padding-top: 300px;
    }
}

@media screen and (max-width: 1600px) {
    .about__box__img {
        width: 400px;
        height: 640px;
    }

    .about__box__content {
        padding-left: 40px;
    }
}

@media screen and (max-width: 1320px) {
    .about .section__title {
        font-size: 90px;
    }

    .about__box__img {
        width: 280px;
        height: 480px;
    }
}

/* achievement
***************************************************************/

.achievement {
    position: relative;
    padding-bottom: 140px;
}

.achievement::after {
    content: "";
    top: 105px;
    left: 0;
    width: 100%;
    height: calc(100% - 105px);
    position: absolute;
    background-color: #fafafa;
    z-index: -100;
}

.achievement__title__wrapper {
    position: relative;
}

.achievement__title__en {
    text-align: center;
    font-size: 180px;
}

.achievement__title__ja {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: bold;
}

.achievement__content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-top: 60px;
}

.achievement__content__item {
    box-shadow: 0 4px 4px rgb(0, 0, 0, 0.06);
}

.achievement__content__text__box {
    padding: 20px 37px 20px 47px;
    color: #333;
}

.achievement__content__title {
    font-size: 24px;
    position: relative;
    font-weight: normal;
}

.achievement__content__title::after {
    content: "";
    width: 1px;
    height: 32px;
    top: 8px;
    left: -10px;
    background-color: #1a8b44;
    position: absolute;
}

.achievement__content__text {
    margin-top: 5px;
}

.achievement__btn {
    margin: 67px auto 0;
}

@media screen and (max-width: 1320px) {
    .achievement .section__title {
        font-size: 110px;
    }

    .achievement__content {
        gap: 20px;
    }

    .achievement__content__text__box {
        height: 189px;
    }
}

@media screen and (max-width: 980px) {
    .achievement__content {
        display: block;
    }
}

/*our-service
***************************************************************/

.our-service {
    position: relative;
    overflow: hidden;
}

.our-service .container {
    position: relative;
}

.our-service .container::after {
    content: "";
    display: inline-block;
    width: calc(100vw - 344px);
    height: 532px;
    background-image: url(../../images/img_our-service_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    margin: 0 calc(50% - 50vw);
}

.our-service__title__en {
    text-align: center;
    color: #333;
    font-size: 180px;
}

.our-service__box {
    display: flex;
    margin: 42px calc(50% - 50vw) 0;
    align-items: flex-start;
}

.our-service__title__ja {
    font-size: 32px;
    line-height: 1;
    color: #fff;
    white-space: pre;
    margin-right: 110px;
    margin-left: 295px;
    position: relative;
    display: inline-block;
}

.our-service__title__ja::after {
    content: "";
    display: inline-block;
    bottom: -38px;
    left: 50%;
    height: 1px;
    width: 43px;
    position: absolute;
    background-color: #fff;
    transform: translateX(-50%);
}

.slider__item {
    margin-right: 50px;
    width: 394px;
}

.our-service__slider__img {
    height: 366px;
    border-top: 8px solid #1a8b44;
}

.our-service__slider__title__en {
    font-size: 35px;
    line-height: 1;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
    letter-spacing: 0;
}

.our-service__slider__title__ja {
    font-size: 14px;
    line-height: 1;
    margin-top: 13px;
    letter-spacing: 0;
    color: #1a8b44;
    text-align: center;
}

.our-service__slider__text {
    margin-top: 23px;
    font-weight: 500;
    height: 96px;
}

.our-service__slider__link-container {
    margin-top: 20px;
    text-align: right;
}

@media (max-width: 1780px) {
    .our-service__title__en {
        font-size: 150px;
    }

    .our-service__title__ja {
        margin-left: 90px;
    }

    .slider__item {
        width: 340px;
    }

    .our-service__slider__img {
        height: 300px;
    }

    .slick-arrow:before {
        top: -180px !important;
        left: -12px !important;
    }

    .our-service .container::after {
        height: 455px;
    }
}

@media screen and (max-width: 1160px) {
    .our-service__title__en {
        font-size: 122px;
    }
}

/*==================================================
スライダーのためのcss
===================================*/

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
/* 矢印のスタイルをリセット */

.slick-arrow:before {
    content: "" !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    left: 0;
    top: -210px;
}

.slick-next:before {
    background: url(../../images/icon_arrow_our-service_r.svg) !important;
    background-size: contain !important;
}

.slick-prev:before {
    background: url(../../images/icon_arrow_our-service-l.svg) !important;
    background-size: contain !important;
}

.slick-arrow {
    z-index: 2 !important;
    width: 50px !important;
    height: 50px !important;
}

.slick-next {
    left: -152px !important;
}

.slick-prev {
    left: -235px !important;
}

.slider {
    display: none;
}

.slider.slick-initialized {
    display: block;
}

/*feature
***************************************************************/

.feature__bg {
    position: relative;
    overflow: hidden;
    margin-top: 131px;
}

.feature {
    padding-bottom: 140px;
}

.feature__bg::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 66%;
    height: 100%;
    background-image: url("../../images/img_feature_bg_w.jpg");
    background-size: cover;
    /* 画像を要素のサイズに合わせて拡大縮小 */
    background-position: center center;
    /* 画像の中心を表示 */
    background-repeat: no-repeat;
    /* 画像を繰り返さない */
    z-index: -1;
    /* 他のコンテンツの背後に配置 */
}

.feature__title__wrapper {
    position: relative;
}

.feature__title__en {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    text-align: right;
    font-size: 250px;
}

.feature__title__ja {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    line-height: 1;
    font-weight: bold;
}

.feature__title__ja::after {
    content: "";
    bottom: -30px;
    left: 13px;
    width: 43px;
    height: 1px;
    position: absolute;
    background-color: #1a8b44;
}

.feature__box {
    margin-top: 142px;
}

.feature__item {
    display: flex;
    margin-top: 170px;
    gap: 50px;
}

.feature__item__r {
    flex-direction: row-reverse;
}

.feature__item:first-of-type {
    margin-top: 0;
}

.feature__img__wrapper {
    position: relative;
}

.feature__img {
    position: relative;
    width: 640px;
    height: 430px;
    z-index: 1;
}

.feature__img__green {
    position: absolute;
    top: -80px;
    /* 上に80pxはみ出る */
    left: -110px;
    /* 左に110pxはみ出る */
    width: 220px;
    height: 260px;
    z-index: 0;
    /* img_feature1の下、img_feature1_bgの上に表示 */
}

.feature__img__green__r {
    top: -80px;
    /* 上に80pxはみ出る */
    right: -110px;
    /* 右に110pxはみ出る */
    left: auto;
    /* leftプロパティを無効にする */
    width: 220px;
    height: 260px;
    z-index: 0;
    /* img_feature1の下、img_feature1_bgの上に表示 */
}

.feature__item__content {
    padding-top: 76px;
    width: 448px;
}

/* .feature__item__r .feature__item__content {
    padding-left: 80px;
    padding-right: 66px;
} */

.feature__item__number {
    font-size: 137px;
    line-height: 1;
    font-weight: 300;
    color: #eeeeee;
    position: relative;
    left: -37px;
}

.feature__item__title {
    font-size: 35px;
    line-height: 1;
    font-weight: bold;
    position: relative;
    color: #1a8b44;
    margin-left: 20px;
    margin-top: -45px;
}

.feature__item__title::after {
    content: "";
    top: -1px;
    left: -20px;
    width: 2px;
    height: 46px;
    position: absolute;
    background-color: #1a8b44;
}

.feature__item__text {
    margin-top: 30px;
}

.feature__item__link__container {
    text-align: right;
    margin-top: 30px;
}

@media screen and (max-width: 1480px) {
    .feature__img {
        width: 400px;
        height: 300px;
    }
}

@media screen and (max-width: 980px) {
    .feature__title__en {
        font-size: 205px;
    }

    .feature__item__title {
        font-size: 31px;
    }
}

/*message
***************************************************************/

.message {
    position: relative;
}

.message::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100% - 69px);
    background-image: url("../../images/img_message_bg.jpg");
    background-size: cover;
    /* 画像を要素のサイズに合わせて拡大縮小 */
    background-position: center center;
    /* 画像の中心を表示 */
    background-repeat: no-repeat;
    /* 画像を繰り返さない */
    z-index: -1;
    /* 他のコンテンツの背後に配置 */
    margin-right: 0 calc(50% - 50vw);
}

.message__title__en {
    text-align: end;
    color: #187015;
    font-size: 150px;
}

.message__box {
    margin-top: 72px;
    display: flex;
}

.message__content {
    margin-top: -98px;
    padding-left: 120px;
    padding-right: 40px;
}

.message__title__ja {
    font-size: 40px;
    line-height: 1.5;
    color: #fff;
    white-space: nowrap;
}

.message__text {
    margin-top: 38px;
    color: #fff;
}

.message__img {
    width: 673px;
    height: 418px;
}

@media screen and (max-width: 1400px) {
    .message__content {
        padding-left: 30px;
    }

    .message__img {
        width: 450px;
        height: 295px;
    }
}

@media screen and (max-width: 1040px) {
    .message__box {
        display: block;
    }

    .message__img {
        width: 80%;
        height: 80%;
        margin: 30px auto 0;
    }
}

/*news
***************************************************************/

.news__box {
    display: flex;
}

.news__title__wrapper {
    padding-right: 90px;
}

.news__title__en {
    font-size: 150px;
}

.news__title__ja {
    font-size: 32px;
    font-weight: 500;
    margin-top: 10px;
}

.news__content {
    padding-right: 97px;
}

.news__info {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.news__info__date {
    width: 20%;
    font-size: 14px;
    color: #84ba98;
    padding: 15px 0 19px 2px;
    border-bottom: 0.5px solid #eeeeee;
}

.news__info__text {
    width: 80%;
    padding: 15px 0;
    border-bottom: 0.5px solid #eeeeee;
}

.news__info__text a {
    color: #333;
}

.news__info__text span {
    position: relative;
    display: inline-block;
}

.news__info__text span::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0c401f;
    transition: width 0.3s ease;
}

.news__info__text:hover span::after {
    width: 100%;
}

@media screen and (max-width: 1280px) {
    .news__box {
        display: block;
    }

    .news__content {
        padding-left: 97px;
    }
}

/*contact
***************************************************************/

.contact__bg {
    padding: 140px 0;
    background-image: url(../../images/img_contact_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact {
    text-align: center;
}

.contact__title__ja {
    font-size: 32px;
    line-height: 1;
    color: #fff;
    position: relative;
}

.contact__title__ja::after {
    content: "";
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 43px;
    height: 1px;
    position: absolute;
    background-color: #fff;
}

.contact__text {
    font-weight: 500;
    margin-top: 50px;
    color: #fff;
}

.contact__box {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact__item__w,
.contact__item__g {
    width: calc((100% - 80px) / 2);
    color: #fff;
}

.contact__item__w {
    background-color: #fff;
    color: #0c401f;
}

.contact__item__w:hover {
    background-color: transparent;
    color: #fff;
}

.contact__item__g:hover {
    background-color: #fff;
    color: #0c401f;
}

.contact__item {
    border: 1px solid #fff;
    height: 287px;
    display: flex;
    /* Flexbox を使用 */
    flex-direction: column;
    /* 垂直方向に要素を配置 */
    justify-content: center;
    /* 垂直方向に中央揃え */
    align-items: center;
    /* 水平方向に中央揃え */
    text-align: center;
    /* テキストを中央揃え */
}

.contact__img__wrapper {
    position: relative;
    width: 74px;
    height: 74px;
}

.contact__img,
.contact__img__hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.contact__img__hover {
    opacity: 0;
}

.contact__item:hover .contact__img__hover {
    opacity: 1;
}

.contact__item:hover .contact__img {
    opacity: 0;
}

.contact__item__title {
    font-size: 24px;
    margin-top: 15px;
}
@media screen and (max-width: 1280px) {
    .contact__item__w,
    .contact__item__g {
        width: calc((100% - 20px) / 2);
    }
}
@media (max-width: 767px) {
    /* top-button
***************************************************************/

    .top-button {
        height: 45px;
        width: 45px;
        right: 15px;
        bottom: 15px;
    }

    /*fv
***************************************************************/

    .fv {
        margin-top: 49px;
        height: 500px;
    }

    .fv::before {
        top: -50px;
        width: 40%;
        height: 716px;
    }

    .fv::after {
        content: "";
        position: absolute;
        top: -50px;
        right: 0;
        width: 85%;
        height: 246px;
        background-image: url(../../images/img_fv_bg.jpg);
        background-size: cover;
        z-index: -2;
    }

    .fv__textbox {
        padding-top: 234px;
        padding-left: 20px;
    }

    .fv__textbox__title {
        font-size: 35px;
        line-height: 1.5;
        text-shadow: none;
    }

    .fv__textbox__text {
        margin-top: 20px;
        font-size: 14px;
        font-weight: 500;
    }

    .sp__br {
        display: block;
    }

    .mv__img__wrapper {
        position: absolute;
        top: 0;
        right: 0;
        width: 85%;
        height: 500px;
    }

    .mv__img {
        display: none;
    }

    .mv__img__sp {
        display: block;
        width: 100%;
        height: 100%;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
        /* X軸、Y軸、ぼかし、色（10%不透明度） */
    }

    /*about
***************************************************************/

    .about {
        position: relative;
        overflow: hidden;
    }

    .about__box {
        display: flex;
        flex-direction: column;
    }

    .about__box__img {
        width: 50%;
        height: auto;
    }

    .about__box__content {
        padding-left: 0;
        position: relative;
    }

    .about__title__wrapper {
        position: relative;
        top: -35vw;
        left: calc(50% + 20px);
    }

    .about .about__title__en {
        font-size: 33.5px;
        position: absolute;
        width: 100vw;
        margin-right: calc(50% - 50vw);
        letter-spacing: 0.06rem;
        top: 0;
        left: 0;
    }

    .about__title__ja {
        padding-top: 75px;
        font-size: 14px;
        line-height: 1;
        font-weight: 500;
        margin-top: 0;
    }

    .about__box__text__subtitle {
        margin-top: -40px;
        font-size: 18px;
    }

    .about__box__text__text {
        margin-top: 20px;
        font-size: 14px;
    }

    .sp_only {
        display: block;
    }

    /*achievement
***************************************************************/

    .achievement {
        padding-bottom: 50px;
    }

    .achievement::after {
        top: 32px;
        height: calc(100% - 32px);
    }

    .achievement .achievement__title__en {
        font-size: 50px;
    }

    .achievement__title__ja {
        top: 70%;
        font-size: 24px;
    }

    .achievement__content {
        flex-direction: column;
        margin-top: 30px;
        gap: 30px;
    }

    .achievement__content__item {
        box-shadow: none;
        display: flex;
    }

    .achievement__img {
        width: 40%;
    }

    .achievement__content__text__box {
        width: 60%;
        padding: 0 0 0 21px;
    }

    .achievement__content__title {
        font-size: 16px;
    }

    .achievement__content__title::after {
        width: 0.5px;
        height: 23px;
        top: 1px;
        left: -4px;
    }

    .achievement__content__text {
        font-size: 14px;
    }

    .achievement__btn {
        margin: 35px auto 0;
    }

    /*our-service
***************************************************************/

    .our-service .container::after {
        width: 100vw;
        height: 192px;
    }

    .our-service__title__en {
        font-size: 50px;
        line-height: 1;
    }

    .our-service__box {
        flex-direction: column;
        margin: 42px calc(50% - 50vw) 0;
        align-items: normal;
    }

    .our-service__title__ja {
        font-size: 24px;
        margin-right: auto;
        margin-left: auto;
        margin-top: -65px;
        padding-top: 0;
    }

    .our-service__title__ja::after {
        bottom: -15px;
        left: 48px;
        height: 1px;
        width: 52px;
    }

    .slider__item {
        margin-right: 0;
        width: 100px;
        padding: 0 20px;
        margin-top: 40px;
    }

    .our-service__slider__img {
        height: auto;
        border-top: 8px solid #1a8b44;
    }

    .our-service__slider__title__en {
        margin-top: 15px;
        font-size: 24px;
    }

    .our-service__slider__title__ja {
        font-size: 18px;
        line-height: 1.5;
        margin-top: 10px;
    }

    .our-service__slider__text {
        margin-top: 15px;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
    }

    .our-service__slider__link-container {
        margin-top: 20px;
        text-align: center;
    }

    .slick-arrow:before {
        top: -15px !important;
        left: 0px !important;
    }

    /*==================================================
スライダーのためのcss
===================================*/

    .slick-next:before {
        background: url(../../images/icon_arrow_our-service_r_b.svg) !important;
        opacity: 1 !important;
    }

    .slick-prev:before {
        background: url(../../images/icon_arrow_our-service-l_b.svg) !important;
        opacity: 1 !important;
    }

    .slick-arrow {
        width: 23px !important;
        height: 23px !important;
    }

    .slick-next {
        left: unset !important;
        right: 10px !important;
    }

    .slick-prev {
        left: 10px !important;
    }

    .slick-prev,
    .slick-next {
        top: 43% !important;
    }

    .slider__item {
        padding: 0;
    }

    .slider {
        padding: 0 20px;
    }

    /*feature
***************************************************************/
    .feature__bg {
        margin-top: 50px;
    }

    .feature {
        padding-bottom: 0;
    }

    .feature__bg::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 66%;
        height: 100%;
        background-image: url("../../images/img_feature_bg_w.jpg");
        background-size: cover;
        /* 画像を要素のサイズに合わせて拡大縮小 */
        background-position: center center;
        /* 画像の中心を表示 */
        background-repeat: no-repeat;
        /* 画像を繰り返さない */
        z-index: -1;
        /* 他のコンテンツの背後に配置 */
    }

    .feature__title__wrapper {
        position: relative;
    }

    .feature__title__en {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        text-align: right;
        font-size: 50px;
        line-height: 1;
    }

    .feature__title__ja {
        bottom: -24px;
        font-size: 24px;
    }

    .feature__title__ja::after {
        content: "";
        bottom: -10px;
        left: 50%;
        width: 40px;
        transform: translateX(-50%);
    }

    .feature__box {
        margin-top: 70px;
    }

    .feature__item {
        flex-direction: column;
        margin-top: 70px;
        gap: 0;
    }

    .feature__item__r {
        flex-direction: column;
    }

    .feature__img__wrapper {
        position: relative;
        text-align: end;
    }

    .feature__img__wrapper_r {
        text-align: justify;
    }

    .feature__img {
        position: relative;
        width: calc(100% - 25px);
        height: auto;
        z-index: 1;
    }

    .feature__img__green {
        position: absolute;
        top: -20px;
        /* 上に80pxはみ出る */
        left: 0;
        /* 左に110pxはみ出る */
        width: 84px;
        height: 100px;
        z-index: 0;
        /* img_feature1の下、img_feature1_bgの上に表示 */
    }

    .feature__img__green__r {
        top: -20px;
        /* 上に80pxはみ出る */
        right: 0;
        /* 右に110pxはみ出る */
        left: auto;
        /* leftプロパティを無効にする */
        width: 84px;
        height: 100px;
        z-index: 0;
        /* img_feature1の下、img_feature1_bgの上に表示 */
    }

    .feature__item__content {
        padding-left: 0px;
        padding-top: 5px;
        padding-right: 0px;
        width: 307px;
        margin-left: 31px;
    }

    .feature__item__r .feature__item__content {
        padding-left: 0px;
        padding-right: 0px;
    }

    .feature__item__number {
        font-size: 60px;
    }

    .feature__item__title {
        font-size: 18px;
        line-height: 1.5;
        margin-left: 0;
        margin-top: -22px;
    }

    .feature__item__title::after {
        content: "";
        top: 0;
        left: -10px;
        width: 1px;
        height: 25px;
        position: absolute;
        background-color: #1a8b44;
    }

    .feature__item__text {
        margin-top: 10px;
        font-size: 14px;
    }

    .feature__item__link__container {
        text-align: right;
        margin-top: 5px;
        margin-right: 20px;
    }

    /*message
***************************************************************/

    .message::after {
        top: 0;
        left: 20px;
        width: 80%;
        height: 78%;
        margin-right: 0;
    }

    .message__title__en {
        text-align: center;
        font-size: 50px;
        line-height: 1;
    }

    .message__box {
        margin-top: 5px;
        flex-direction: column;
    }

    .message__content {
        margin-top: 0;
        padding-left: 0;
        padding-right: 20px;
        margin-left: 33px;
        margin-bottom: 30px;
        width: 80%;
    }

    .message__title__ja {
        font-size: 20px;
    }

    .message__text {
        margin-top: 14px;
        font-weight: 500;
        font-size: 14px;
    }

    .message__img {
        width: 90%;
        height: auto;
        margin: 0 0 0 auto;
    }

    /*news
***************************************************************/

    .news__box {
        flex-direction: column;
    }

    .news__title__wrapper {
        padding-right: 0;
        text-align: center;
    }

    .news__title__en {
        font-size: 50px;
        line-height: 1;
    }

    .news__title__ja {
        font-size: 24px;
        margin-top: -20px;
    }

    .news__content {
        padding-left: 0;
        padding-right: 0;
        margin: 0 auto;
    }

    .news__info {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .news__info__date {
        width: 100%;
        font-size: 14px;
        color: #84ba98;
        padding: 10px 0 0 10px;
        border-bottom: none;
    }

    .news__info__date:nth-of-type(4),
    .news__info__date:nth-of-type(5),
    .news__info__date:nth-of-type(6) {
        display: none;
    }

    .news__info__text {
        width: 100%;
        padding: 5px 0 10px 10px;
        border-bottom: 0.5px solid #eeeeee;
    }

    .news__info__text:nth-of-type(4),
    .news__info__text:nth-of-type(5),
    .news__info__text:nth-of-type(6) {
        display: none;
    }
}

/*contact
***************************************************************/

@media screen and (max-width: 900px) {
    .contact__bg {
        padding: 50px 0 78px;
    }

    .contact__title__ja {
        font-size: 24px;
        line-height: 1;
        color: #fff;
        position: relative;
    }

    .contact__title__ja::after {
        bottom: -10px;
        width: 40px;
    }

    .contact__text {
        font-size: 14px;
        font-weight: 500;
        margin-top: 30px;
        color: #fff;
        text-align: left;
    }

    .contact__box {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact__item__w,
    .contact__item__g {
        width: 100%;
    }

    .contact__item__g {
        margin-top: 20px;
    }

    .contact__item__title {
        font-size: 14px;
        margin-top: 5px;
    }

    .contact__item__text {
        font-size: 12px;
    }

    .contact__img__wrapper {
        position: relative;
        width: 20px;
        height: 20px;
    }

    .contact__item {
        height: 120px;
    }
}
