/*==================================
　全体設定
==================================*/

:root {
    --color-theme: #0A6DBC;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ul {
    margin: 0;
    overflow-x: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: inherit !important;
}

p {
    line-height: normal !important;
}

ul {
    padding-left: 0
}

li {
    list-style: none
}

a {
    text-decoration: none !important;
    transition: all .3s;
}

p {
    margin-bottom: 0 !important;
}

a:hover {
    opacity: 0.6;
}

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

.pointer {
    cursor: pointer;
}

.color-theme {
    color: var(--color-theme);
}

.bg-theme {
    background-color: var(--color-theme);
}

.text-shadow {
    text-shadow: 2px 3px 2px rgba(0, 0, 0, 1);
}



.py-100 {
    padding: 100px 0;
}

.h3Subtitle {
    font-size: 1rem;
}

.object-position-top {
    object-position: top;
}

/*==================================
　パララックス
==================================*/

#parallax .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

#parallax .inner img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;

    height: 100vh;
    /* 固定で変更しない */
    z-index: -1;
    object-fit: cover;
}



@media(min-width:992px) {
    #parallax .outer {
        position: relative;

        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding-left: calc(50vw - 50%) !important;
        padding-right: calc(50vw - 50%) !important;

        height: 475px;
        /* パララックスの高さはこれで調節 */
    }

    #parallax .inner .layer {
        width: 100%;
        height: 475px;
        /* パララックスの高さはこれで調節 */
        /* background-color: #064a7f80; */
        color: #fff;
    }

}

@media(max-width:991px) {
    #parallax .outer {
        position: relative;

        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding-left: calc(50vw - 50%) !important;
        padding-right: calc(50vw - 50%) !important;

        height: calc(300px + 100px);
        /* パララックスの高さはこれで調節 */
    }

    #parallax .inner .layer {
        width: 100%;
        height: calc(300px + 100px);
        /* パララックスの高さはこれで調節 */
        /* background-color: #064a7f80; */
        color: #fff;
    }
}


/* container的な対応 */
#parallax .inner .layer .layerFlame {
    width: 100%;
    height: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media(min-width: 576px) {
    #parallax .inner .layer .layerFlame {
        max-width: 540px;
    }
}

@media(min-width: 768px) {
    #parallax .inner .layer .layerFlame {
        max-width: 720px;
    }
}

@media(min-width: 992px) {
    #parallax .inner .layer .layerFlame {
        max-width: 960px;
    }
}

@media(min-width: 1200px) {
    #parallax .inner .layer .layerFlame {
        max-width: 1140px;
    }
}

@media(min-width: 1400px) {
    #parallax .inner .layer .layerFlame {
        max-width: 1320px;
    }
}


/*==================================
　ヘッダー
==================================*/
#head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


@media(min-width:1121px) {
    .menu {
        display: block;
    }

    .hamburgerButton {
        display: none;
    }

}

@media(max-width:1120px) {
    .menu {
        display: none;
    }

    .hamburgerButton {
        display: block
    }
}


@media(min-width:992px) {
    #head {
        height: 84px;
    }

    .siteLogo {
        margin-left: 20px;
        font-size: 0;
    }

    .siteLogo a img {
        width: 160px;
    }

    .menuList {
        padding: 0 30px;
    }


}

@media(max-width:991px) {
    #head {
        height: 74px;
    }

    .siteLogo {
        margin-left: 15px;
        font-size: 0;
    }

    .siteLogo a img {
        width: auto;
        height: 58.7px;
    }
}

.menuListBorder {
    position: relative;
}

.menuListBorder::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    background: #DBDBDB;
    transform: rotate(10deg);
    left: 0px;

}

.clipPathHeader {
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    width: 220px;
}

.menuImg {
    width: 37px;
}



/*==================================
　ヘッダー用汎用クラス
==================================*/
:root {
    --color-blue: #0A6DBC;
}

.bg-theme {
    background-color: var(--color-blue);
}


.bg-white {
    background-color: white;
}

.bg-dark {
    background-color: #212529 !important;
}


.sticky-top {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1020;
}

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

.fs-5 {
    font-size: 1.25em !important;
}

.h-100 {
    height: 100% !important;
}

.w-100 {
    width: 100% !important;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column !important;
}

.align-items-center {
    align-items: center;
}

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

.justify-content-center {
    justify-content: center !important;
}

.text-white {
    color: #fff !important;
}

.text-dark {
    color: #212529 !important;
}

.text-nowrap {
    white-space: nowrap !important;
}


.mt-1 {
    margin-top: .25rem !important;
}

.ms-2 {
    margin-left: .5em !important;
}

.menuItem {
    & .ms-2 {
        margin-left: .4em !important;
    }
}


.me-3 {
    margin-right: 1rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}


.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}


/*==================================
ハンバーガーメニュー
==================================*/
.hamburgerButton {
    width: 40px;
    height: 40px;
}

.hamburger {
    position: absolute;
    cursor: pointer;
    width: 40px;
    height: 40px;
    z-index: 1000;
    /* margin-top: 5px; */
}

.hamburgerList {
    position: fixed;
    z-index: 10;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;

}

.hamburgerList.open {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.overlay.open {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    background: black;
    opacity: 0.6;
}

@media(min-width:992px) {
    .overlay.open {
        margin-top: 84px;
    }

    .hamburgerList {
        top: 84px;
    }

    .hamburgerList.open {
        top: 84px;
    }
}

@media(max-width:991px) {
    .overlay.open {
        margin-top: 74px;
    }

    .hamburgerList {
        top: 74px;
    }

    .hamburgerList.open {
        top: 74px;
    }
}



.hamburger span {
    /*3本の線を作る*/
    transition: all .3s;
    position: absolute;
    height: 2px;
    background-color: #000000;
    width: 40px;
    z-index: 10;
}

.toggle_contents li {
    padding-top: 1rem;
}

.hamburger span:nth-of-type(1) {
    /*上の線の位置*/
    top: 3px;
}

.hamburger span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 17px;
}

.hamburger span:nth-of-type(3) {
    /*下の線の位置*/
    top: 30px;
}

.hamburger.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 10px;
    transform: translateY(6px) rotate(-33deg);
}

.hamburger.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
}

.hamburger.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 22px;
    transform: translateY(-6px) rotate(33deg);
}


/*==================================
　メインビジュアル
==================================*/


@media(min-width:992px) {
    .main {
        position: relative;
        background: url(../img/main_visual_pc.webp);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 625px;
        margin-top: 84px;
    }


    .mainText {
        position: absolute;
        left: 100px;
        top: 50%;
        transform: translate(0px, -50%);
    }

    .mainText01 {
        font-size: 3rem;
    }

    .mainText02 {
        font-size: 2rem;
    }
}

@media(max-width:991px) {

    .main {
        position: relative;
        background: url(../img/main_visual.webp);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: calc(100vh - 74px);
        margin-top: 74px;
        /* padding-top: 74px; */
    }


    .main::after {
        content: "";
        display: block;
        padding-top: 50%;
    }

    .mainText {
        position: absolute;
        left: 20px;
        width: calc(100% - 40px);
        top: 50%;
        transform: translate(0px, -50%);
    }

    .mainText01 {
        font-size: 0.8rem;
    }

    .mainText02 {
        font-size: 1.5rem;
    }
}


/* アニメーションのキーを定義 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(0px, -10%);
    }

    100% {
        opacity: 1;
        transform: translate(0px, -50%);
    }
}

/* アニメーションを適用する要素のスタイル */
.fade-in-up {
    opacity: 0;
    /* 初期状態では透明 */
    animation: fadeInUp 0.5s ease-out 0.5s forwards;
    /* アニメーション設定 */
}


/*==================================
　サブビジュアル
==================================*/
#subVisual {
    background-image: url(../img/concept_back.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF;
}

.subVisualContent {
    max-width: 900px;
}

.moreButton {
    width: 255px;
    padding: 15px;
}

.subVisualMore::after {
    content: "";
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 15.82px;
    height: 27.9px;
    background-image: url(../img/icon_arrow_2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*==================================
　ハイブリッドスクロール
==================================*/
.scroll_container {
    height: 400vh;
}

.sticky_wrap {
    /* overflow: hidden; */
    position: sticky;
    top: 0;
    height: 100vh;
}

.horizontal_scroll {
    position: absolute;
    top: 0;
    height: 100%;
    width: 400vw;
    will-change: transform;
    display: flex;
    justify-content: space-between;
    /* margin-top: 84px; */
    /* padding-bottom: 84px; */
}

.scroll_contents {
    height: 100%;
    width: 100vw;
}

@media(min-width:992px) {
    /* .horizontal_scroll {
        padding-top: 84px;
    }

    .scroll_contents {
        margin-top: -84px;
    } */

}

@media(max-width:991px) {
    /* .horizontal_scroll {
        margin-top: 74px;
    }

    .scroll_contents {
        margin-top: -74px;
    } */

}

/*==================================
　サービス
==================================*/
#service {
    background-image: url(../img/business_back.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subTitleBorder01 {
    position: relative;
    padding-bottom: 30px;
}

.subTitleBorder01::after {
    content: "";
    display: block;
    width: 75px;
    height: 1px;
    background-color: var(--color-blue);
    position: absolute;
    bottom: 0;
    left: 0px;
}

.serviceText::after {
    content: "";
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 15.82px;
    height: 27.9px;
    background-image: url(../img/icon_arrow_2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cardBox {
    height: 180px;
}

/*==================================
　導入事例
==================================*/
#sampleCase {
    background-image: url(../img/case_back.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.sampleCase-Button {
    width: 40px;
    height: 40px;
}

/* 
.sampleCaseBox-before {
    display: block;
    position: absolute;
    background-color: #000000;
    width: 40px;
    height: 40px;
    top: 50%;
    left: -5%;
    transform: translate(0%, -50%);
}

.sampleCaseBox-after {
    display: block;
    position: absolute;
    background-color: #000000;
    width: 40px;
    height: 40px;
    top: 50%;
    right: -5%;
    transform: translate(0%, -50%);
} */


/* 
.sampleCaseText::after {
    content: "";
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 15.82px;
    height: 27.9px;
    background-image: url(../img/icon_arrow_2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
} */

#sampleCase .leftButton,
#sampleCase .rightButton {
    z-index: 1;
}

@media(min-width:992px) {
    #sampleCase .leftButton {
        transform: translate(0%, -50%);
        top: 50%;
        left: -5%;
        background-color: white;
        border-radius: 50%;
        box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    }

    #sampleCase .rightButton {
        transform: translate(0%, -50%);
        top: 50%;
        right: -5%;
        background-color: white;
        border-radius: 50%;
        box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    }
}



@media(max-width:991px) {
    #sampleCase .leftButton {
        transform: translate(0%, -50%);
        top: 50%;
        left: 0%;
        border-radius: 50%;
        box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);

    }

    #sampleCase .rightButton {
        transform: translate(0%, -50%);
        top: 50%;
        right: 0%;
        border-radius: 50%;
        box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    }
}


.sampleCaseImg {
    height: 155px;
}

.subTitleBorder02 {
    position: relative;
    padding-bottom: 30px;
}

.subTitleBorder02::after {
    content: "";
    display: block;
    width: 75px;
    height: 1px;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0px;
}

#sampleCase .slide {
    transition: 500ms transform;
    transform: translateX(-200%);
}

/*==================================
　お知らせ
==================================*/
@media(min-width:992px) {}

@media(max-width:991px) {
    .newsBorder {
        border-bottom: 1px solid #ddd;
    }
}



.newsCategory {
    border: var(--color-blue) 1px solid;
}

/*==================================
　バナー
==================================*/
.h-banner {
    height: 230px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner01 {
    background-image: url(../img/menu_1.webp);
}

.banner01::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #1d383b;
    opacity: 0.4;
    transition: 0.2s;

}

.banner01::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid #FFF;

}


.banner02 {
    background-image: url(../img/menu_2.webp);
}

.banner02::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #1d383b;
    opacity: 0.46;
    transition: 0.2s;
}

.banner02::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid #FFF;
}

.bannerLink .bannerLinkText {
    transition: 0.2s;
}

.bannerLink .bannerLinkText:hover {
    background-color: #1d383b;
    transition: 0.2s;
}

/*==================================
　お問い合わせ
==================================*/
#contact {
    background-image: url(../img/contact_back.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.contactButton {
    color: white;
}

.contactButton:hover {
    background-color: white;
    color: #000000;
    opacity: 1;
}

@media(min-width:992px) {
    .border-res-end {
        border-right: 1px white solid;
    }
}

@media(max-width:991px) {
    .border-res-end {
        border: none;
    }
}



/*==================================
　フッター
==================================*/
#footer {
    background-color: var(--color-blue);
}

.footerLogo {
    width: 150px;
}



/* 直書きフッター */

/*==================================
　お問い合わせ
==================================*/
.py-100 {
    padding: 100px 0;
}

#contact {
    background-image: url(../img/contact_back.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.contactButton {
    color: white !important;
}

.contactButton:hover {
    background-color: white;
    color: #000000 !important;
    opacity: 1;
}

@media(min-width:992px) {
    .border-res-end {
        border-right: 1px white solid;
    }
}

@media(max-width:991px) {
    .border-res-end {
        border: none;
    }
}


/*==================================
　フッター
==================================*/
#footer {
    background-color: var(--color-blue);
}

.footerLogo {
    width: 150px;
}


/* bootstrap */


/* 文字 */
.text-white {
    color: #fff;
}

.fs-5 {
    font-size: 1.25rem;
}

.fs-2 {
    font-size: calc(1.325rem + .9vw);
}

.text-nowrap {
    white-space: nowrap;
}

.fw-bold {
    font-weight: 700;
}

@media (min-width: 1200px) {
    .fs-2 {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .text-lg-end {
        text-align: right;
    }
}

/* border */
.border-3 {
    border-width: 3px;
}

.rounded-3 {
    border-radius: .3rem;
}

.border-white {
    border-color: #fff;
}

.border {
    border: 1px solid #dee2e6;
}

.border-end {
    border-right: 1px solid #dee2e6;
}



/* margin */
.ms-0 {
    margin-left: 0;
}

.mb-1 {
    margin-bottom: .25rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: .5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.me-3 {
    margin-right: 1rem;
}

@media (min-width: 992px) {
    .ms-lg-3 {
        margin-left: 1rem;
    }

    .me-lg-3 {
        margin-right: 1rem;
    }

    .mb-lg-0 {
        margin-bottom: 0;
    }
}

/* padding */
.pe-3 {
    padding-right: 1rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-4 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}


.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.px-3 {
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 992px) {
    .p-lg-3 {
        padding: 1rem;
    }
}

/* flex */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

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

@media (min-width: 992px) {
    .d-lg-flex {
        display: flex;
    }

    .justify-content-lg-end {
        justify-content: flex-end;
    }

    .align-items-lg-center {
        align-items: center;
    }
}


/* display */
.d-block {
    display: block;
}

@media (min-width: 992px) {
    .d-lg-inline {
        display: inline;
    }
}