@charset "utf-8";


/*========= ローディング画面のためのCSS ===============*/
#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fdfdfd;
    z-index: 9999999;
    text-align: center;
    color: #fff;
}

#splash-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

#splash-logo .fadeUp img{
width: 280px;
height: auto;
}

header {
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: fixed;
    /* background-color: pink; */
    z-index: 120;
}

header h1 {
    width: 200px;

    line-height: 15px;
    font-size: 13px;
    text-align: center;
    font-weight: inherit;
    letter-spacing: 3px;
    color: #006e82;
}




header h1 img {
    width: 200px;
}


nav {
    display: flex;
}

nav ul {
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;

}


nav ul li {
    margin: 0 20px;
}


nav ul li a {
    text-decoration: none;
    color: #333;

}

nav ul li a:hover {
    color: inherit;
    padding-bottom: 5px;
    border-bottom: 1px solid #222;
}

nav div {
    margin: 0 0 0 40px;
}




/* 通常時 */
.header-nav__item a {
    color: #333;
}

/* カレント表示 */
.header-nav__item.current a {
    color: #00AFCC;
}


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


    #splash-logo .fadeUp img {
            width: 250px;
            height: auto;
        }




    header {
        padding: 10px;
    }

    header h1 {
        width: 160px;
        line-height: inherit;
        font-size: 10px;
        line-height: 12px;
    }

    header h1 img {
        width: 160px;
    }
}



/* menu_btn */

.openbtn {
    /* position: fixed; */
    position: relative;
    z-index: 50;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 40px;
    cursor: pointer;
    /* background: red; */
}

.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    /* right: 15px; */
    height: 1px;
    background-color: #333;
}


.openbtn span:nth-of-type(1) {
    top: 9px;
    width: 100%;
}

.openbtn span:nth-of-type(2) {
    top: 19px;
    width: 100%;
}

.openbtn span:nth-of-type(3) {
    top: 29px;
    width: 100%;
}

.openbtn.active span {
    z-index: 40;
}

.openbtn.active span:nth-of-type(1) {
    z-index: 40;
    top: 20px;
    /* left: 25px; */
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
    background-color: #fff;
}

.openbtn.active span:nth-of-type(2) {
    display: none;
}

.openbtn.active span:nth-of-type(3) {
    top: 33px;
    z-index: 40;
    /* left: 25px; */
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
    background-color: #fff;
}

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

    nav ul {
        display: none;
    }


    .openbtn {
        width: 40px;
        right: 10px;
    }


}





/* responsive_nav */

#g-nav {
    position: fixed;
    z-index: 111;
    opacity: 0;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100vh;
    background: #00AFCC;
    transition: all 0.3s;
    text-align: center;
    overflow-y: auto;
}

#g-nav.panelactive {
    opacity: 1;
    z-index: 10;
    right: 0%;
}

/* ナビゲーションの縦スクロール */
#g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    text-align: left;
    overflow-y: auto;
    /* 垂直方向にスクロールできるようにする */
    -webkit-overflow-scrolling: touch;
}

/* ナビゲーション */
#g-nav ul {
    padding: 60px 20px;
    text-align: center;
    display: none;
    width: 100%;
    /* 幅を100%に変更 */
    height: 100%;
    position: absolute;
    z-index: 999;
    /* top: 50px; */
    top: 52%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);

}

#g-nav.panelactive ul {
    display: block;
}

#g-nav li {
    list-style: none;
    text-align: center;
    /* margin: 15px auto; */
    padding: 0;


}

#g-nav ul li a {
    font-size: 15px;
    align-items: center;
    justify-content: space-between;
    display: flex;
    color: #fff;
    text-decoration: none;
    /* display: block; */
    /* text-transform: uppercase; */
    letter-spacing: 0.1em;
    /* width: fit-content; */
    margin: 10px auto;
    padding: 10px 5px;
    /* margin: 20px 0; */
    border-bottom: 0.5px solid #fff;


}




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


    #g-nav {
        position: fixed;
        z-index: 0;
        opacity: 0;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;

        transition: all 0.3s;
padding: 50px 20px 400px;
        text-align: center;

    }


    #g-nav.panelactive {
        opacity: 1;
        z-index: 10;
        right: 0%;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        /* right: 0; */
        width: 100%;
        height: 100vh;
        /*表示する高さ*/

        text-align: left;
    }


    #g-nav ul {
        padding: 100px 0 150px;
        text-align: left;
        display: none;
        width: 100%;
        height: fit-content;

        position: absolute;
        z-index: 999;
        top: 480px;
        left: 50%;
        text-align: center;
        font-size: 13px;
    }

    #g-nav li a {
        padding: 15px 5px;
        margin: 20px 0;
        border-bottom: 1px solid #fff;
    }

}









footer {
    background-image: url("../img/head/footer_back.webp");

    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 60px 60px 150px;
    text-align: left;
    font-size: 15px;
    line-height: 55px;
}



footer .flex {
    justify-content: space-between;
}

footer .footer_company h1 {
    width: 300px;
    /* text-align: center; */
    /* background-color: red; */
    font-size: 13px;
    line-height: 20px;
    font-weight: inherit;
    letter-spacing: 2px;
    text-align: left;
}

footer .footer_company h1 img {
    width: 300px;
}

footer .footer_company h1 p {
    color: #c1c1c1;
}

.footer_company_info {
    letter-spacing: 1px;
    line-height: 40px;
    margin: 30px 0 60px;

}

footer .site_map {
    /* border-left: 0.5px solid #c1c1c1; */
}

footer .site_map ul {
    margin: 0 0 0 50px;
    color: #d1d1d1;
    letter-spacing: 3px;
}




#copyright {
    background-color: #00AFCC;
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 10px;
    text-align: center;
}









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



    footer {
        padding: 20px 20px 40px;
        font-size: 13px;
        line-height: 45px;
    }

    footer .flex {
        display: block;
    }

    footer .footer_company h1 {
        width: 200px;
        font-size: 10px;
        line-height: 18px;
    }

    footer .footer_company h1 img {
        width: 200px;
    }

    .footer_company_info {
        line-height: 30px;
        margin: 20px 0 40px;
    }

    footer .site_map ul {
        margin: 0;
        letter-spacing: 1px;
    }

    footer .site_map ul li {
        border-bottom: 0.5px solid #fff;
        padding: 0 10px;
        margin: 0 0 10px;

    }

    #copyright {
        font-size: 10px;
        letter-spacing: 1px;
        padding: 5px;
    }






}













/* サブ */


.sub_header {
    background-image: url("../img/page/sub_header.webp");
    background-position: center;
    background-size: cover;
    width: 100%;
    text-align: center;
}


.sub_header h2 {
    color: #fff;
    padding: 150px 0 80px;
    font-size: 35px;
    font-weight: inherit;
    -moz-text-shadow: 3px 0px 5px rgba(0, 0, 0, 0.46);
        -webkit-text-shadow: 3px 0px 5px rgba(0, 0, 0, 0.46);
        -ms-text-shadow: 3px 0px 5px rgba(0, 0, 0, 0.46);
        text-shadow: 3px 0px 5px rgba(0, 0, 0, 0.46);
}


.breadcrumbs {
    padding: 20px 0 0 60px;
}





@media screen and (max-width:820px) {
.sub_header {
        background-color: rgba(0, 0, 0, 0.5);
        /* 黒の半透明背景を追加 */
        background-blend-mode: overlay;
        /* 背景画像と色を合成 */
    }

    .sub_header h2 {
        color: #fff;
        padding: 100px 0 40px;
        font-size: 28px;
        font-weight: inherit;
    }


    .breadcrumbs {
        padding: 10px 0 0 20px;
    }

}





.behavioral{
    line-height: 50px;
}

.products_section .img{
    width: 300px;
    margin: 80px auto 30px;
}

.products_section .img img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.products_section video{
    width: 100%;
}



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


    .products_section .img {
        width: 150px;
        margin: 30px auto 10px;
    }

    .products_section .img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .products_section video {
        width: 100%;
    }

}







/* スライダー全体 */
.equ-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 80px 0 40px;
}


/* ラッパー：flexレイアウト */
.equ-swiper .swiper-wrapper {
    display: flex;
    transition-timing-function: linear;
}


/* 各スライドの基本設定 */
/* .equ-swiper .swiper-slide {
    transition: transform 0.5s, opacity 0.5s;
    transform: scale(0.8);
    opacity: 0.5;
} */


/* アクティブなスライド */
/* .equ-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
} */


/* スライド内のリンクと画像 */
.equ-swiper .swiper-slide {
    width: 100%;
   height: 200px; 
  margin: 0 10px;
    display: block;
    text-decoration: none;
}


.equ-swiper .swiper-slide img{
    width:100%;
    height: 100%;
    border-radius:  8px;
    object-fit: cover;
}


.sections{
    position: relative;
    z-index: -100;
    background-color: #fff;
}



/* スライド内のh3のスタイル */
.equ-swiper .swiper-slide h3 {
    position: absolute;
    bottom: 10px;
    /* 画像の下端から少し余裕を持たせる */
    left: 10px;
    /* 画像の左端から少し余裕を持たせる */
    background: rgba(0, 0, 0, 0.5);
    /* 半透明の背景でテキストの可読性を向上 */
    color: #fff;
    /* テキストカラーを白に */
    padding: 5px 10px;
    /* 背景に余白を持たせる */
    font-size: 18px;
    /* フォントサイズを少し大きく */
    font-weight: bold;
    /* 太字にして強調 */
    border-radius: 5px;
    /* 背景の角を丸くする */
    max-width: 90%;
    /* 画像の幅に合わせて最大幅を設定 */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    /* テキストに影をつけてさらに読みやすくする */
    transition: all 0.3s ease-in-out;
    /* ホバー時にスムーズに変化 */
}

/* ホバー時にテキストを大きくするエフェクト */
.equ-swiper .swiper-slide:hover h3 {
    transform: scale(1.1);
    /* 少しテキストを大きく */
    background: rgba(0, 0, 0, 0.7);
    /* ホバー時に背景色を強調 */
}


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



    .equ-swiper {
        padding: 50px 0 20px;
    }

    .equ-swiper .swiper-slide {
        width: 100%;
        height: 150px;
        margin: 0 10px;
        display: block;
        text-decoration: none;
    }


    .equ-swiper .swiper-slide img {
        width: 100%;
        height: 100%;
        border-radius: 8px;
        object-fit: cover;
    }


    .sections {
        position: relative;
        z-index: -100;
        background-color: #fff;
    }



    /* スライド内のh3のスタイル */
    .equ-swiper .swiper-slide h3 {
        position: absolute;
        bottom: 10px;
        /* 画像の下端から少し余裕を持たせる */
        left: 10px;
        /* 画像の左端から少し余裕を持たせる */
        background: rgba(0, 0, 0, 0.5);
        /* 半透明の背景でテキストの可読性を向上 */
        color: #fff;
        /* テキストカラーを白に */
        padding: 5px 10px;
        /* 背景に余白を持たせる */
        font-size: 14px;
        /* フォントサイズを少し大きく */
        font-weight: bold;
        /* 太字にして強調 */
        border-radius: 5px;
        /* 背景の角を丸くする */
        max-width: 90%;
        /* 画像の幅に合わせて最大幅を設定 */
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        /* テキストに影をつけてさらに読みやすくする */
        transition: all 0.3s ease-in-out;
        /* ホバー時にスムーズに変化 */
    }

    /* ホバー時にテキストを大きくするエフェクト */
    .equ-swiper .swiper-slide:hover h3 {
        transform: scale(1.1);
        /* 少しテキストを大きく */
        background: rgba(0, 0, 0, 0.7);
        /* ホバー時に背景色を強調 */
    }


}




