html{
	/* font-size: 62.5%; */
	-webkit-text-size-adjust: 100%;


}
body{
	line-height: 1.55;
	background: #fff;
	/* font-family:'Noto Sans JP','游ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ','Meiryo',serif; */

    font-family: "Helvetica Neue",
    'ヒラギノ角ゴ Pro W',
    Arial,
    'Hiragino Kaku Gothic ProN',
    'Hiragino Sans',
    'ヒラギノ角ゴ ProN W3',
    'メイリオ',
    'Meiryo'
    ,serif,
    ans-serif;

	font-size: 1.1rem;
	/* color: #3C2C25; */
    color: #1e1e1e;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* font-smoothing: antialiased; */
}
figure{
	text-align: center;
}
img{
	max-width: 100%;
	height: auto;
	-ms-interpolation-mode: bicubic; /* IE8以降で画像が縮小表示された際にきれいに表示*/
	vertical-align: middle;
}
a{
	text-decoration: none;
	/* color: #3C2C25; */
	outline: none;
}
a,p{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}



/********** Template CSS **********/
:root {
    /* --primary: #2f3e92; */
    --primary: #4900ff;    
    --light: #F6F7F8;
    --dark: #1A2A36;
}
.text-primary1{
    color: #4900ff !important;
    font-size: larger;
}
@media screen and (max-width: 959px) {
    .text-primary1{ 
        font-size:large;
    }
}
@media screen and (max-width: 480px) {
    .text-primary1{ 
        font-size:medium;
    }    
}


.text-primary1::before {
    /* background:url(../img/logogunisios40.png) 0 0 no-repeat; */
    content: url(../img/logogunisios40.png) ;
    padding-right: 0.2em;
    text-align:center;
    vertical-align: middle;
    width: 40px;
    max-height: 95%;
}
.text-primary100::before {
    /* background:url(../img/logogunisios40.png) 0 0 no-repeat; */
    content: '';/*何も入れない*/
    background-image: url(../img/logogunisios50_wh.png);
    display: inline-block;
    /* content: url(../img/logogunisios50_wh.png) ; */
    padding-right: 0.1em;
    text-align:center;
    background-size: contain; /*contain 画像の縦横比は維持したまま、疑似要素いっぱいに*/
    vertical-align: middle; /* display: inline-blockで要素と画像を横に並べたいときには、vertical-align: middleを指定しておくと綺麗に横に並ぶ*/
    width: 50px;/*画像の幅*/
    height: 50px;/*画像の高さ*/
    
}
@media screen and (max-width: 959px) {
	/* 959px以下に適用されるCSS（タブレット用） */
    .text-primary100:before {
        /* width: 75%; */
        width: 35px;/*画像の幅*/
        height: 35px;/*画像の高さ*/
    }
}
@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
    .text-primary100:before {
        /* width: 75%; */
        width: 25px;/*画像の幅*/
        height: 25px;/*画像の高さ*/
    }
}

.fw-medium {
    font-weight: 500 !important;
}

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

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
    font-size:large;    /* 2024.10.08 rev*/
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    /* font-size: 15px; */
    /* font-size:large;     */ /* 2024.10.08 rev*/
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        /* 2024.10.3 rev */
        /* min-height: 500px; */ 
        
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        /* カルーセルの文字：グニシオス　本物の力 */
        font-size: 14px !important;
    }
    #guni-pat{
        font-size: 12px !important;
    }
}
@media (max-width: 480px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        /* 2024.10.3 rev */
        /* min-height: 500px; */ 
        
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        /* カルーセルの文字：グニシオス　本物の力 */
        font-size: 12px !important;
    }
    #guni-pat{
        font-size: 10px !important;
    }
}


.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}








.page-header {
    content: '';/*何も入れない*/
    /* background-image: url(../img/715589645-min_2000-700.jpeg) ; */
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/715589645-min_2000-500.jpg) top center no-repeat;
    /* background-size: cover; */
    padding-top: 25%;  /* 縦500px/幅2000px ＝0.25 の比率で　*/
    /* padding-top: 30%;  縦600px/幅2000px ＝0.3 の比率で　*/
    background-size:contain;
    /* background-position: center bottom 8%; */
    background-position: center center;
    height: auto;
    width: 100%;
    position: relative;
    aspect-ratio: 4/1;
} 
.page-header::before{
    content: "";
    display: block;
    padding-top: 0%;
}

.page-header_houjin {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/498403507-min_2000-500.jpg) top center no-repeat;
    /* background-size: cover; */
    padding-top: 25%;  /* 縦500px/幅2000px ＝0.25 の比率で　*/
    /* padding-top: 30%;  縦600px/幅2000px ＝0.3 の比率で　*/
    background-size:contain;
    /* background-position: center bottom 8%; */
    background-position: center center;
    height: auto;
    width: 100%;
    position: relative;
    aspect-ratio: 4/1;
}
.page-header_houjin ::before{
    content: "";
    display: block;
    padding-top: 0%;
}

.page-header_kojin {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/821909974-min_2000-500.jpg) top center no-repeat;
    /* background-size: cover; */
    padding-top: 25%;  /* 縦500px/幅2000px ＝0.25 の比率で　*/
    /* padding-top: 30%;  縦600px/幅2000px ＝0.3 の比率で　*/
    background-size:contain;
    /* background-position: center bottom 8%; */
    background-position: center center;
    height: auto;
    width: 100%;
    position: relative;
    aspect-ratio: 4/1;
    
}
.page-header_kojin::before{
    content: "";
    display: block;
    padding-top: 0%;
}


.page-header_works {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/854339688-min_2000-500.jpg) top center no-repeat;
    /* background-size: cover; */
    padding-top: 25%;  /* 縦500px/幅2000px ＝0.25 の比率で　*/
    /* padding-top: 30%;  縦600px/幅2000px ＝0.3 の比率で　*/
    background-size:contain;
    /* background-position: center bottom 8%; */
    background-position: center center;
    height: auto;
    width: 100%;
    position: relative;
    aspect-ratio: 4/1;
}
.page-header_works::before{
    content: "";
    display: block;
    padding-top: 0%;
}
.page-header_inquiry{
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/955190082-min_2000-500.jpg) top center no-repeat;
    /* background-size: cover; */
    /* background-size: cover; */
    padding-top: 25%;  /* 縦500px/幅2000px ＝0.25 の比率で　*/
    /* padding-top: 30%;  縦600px/幅2000px ＝0.3 の比率で　*/
    background-size:contain;
    /* background-position: center bottom 8%; */
    background-position: center center;
    height: auto;
    width: 100%;
    position: relative;
    aspect-ratio: 4/1;
}
.page-header_inquiry::before{
    content: "";
    display: block;
    padding-top: 0%;
}

.header_inquiry::before{
    content: "";
    display: block;
    padding-top: 0%;
}

@media screen and (max-width: 1440px) {
    .page-header .page-header_kojin .page-header_houjin .page-header_works .page-header_inquiry{ 
       
        padding-top: 1rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
}
@media screen and (max-width: 959px) {
    .page-header .page-header_kojin .page-header_houjin .page-header_works .page-header_inquiry{ 
        
        padding-top: 1rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
}
@media screen and (max-width: 480px) {
    .page-header .page-header_kojin .page-header_houjin .page-header_works .page-header_inquiry{ 

        padding-top: 1rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }    
}

/* ＳＯＬＵＴＩＯＮ 2024.10.18 */
.img-fluid-guni{
    padding: 15%;
    display: block;
    border:rgb(190, 229, 255) 1px solid;
    margin-bottom: 2em;
    margin: 0 auto;
    /* object-fit:contain; */
}
.guni-sl{
    background-color:#164883;
    border:rgb(14, 177, 226) 1px solid;
    margin-bottom: 2em;
    background-image: url(../img/Snapshot_743241526_m_600440r_2000-500.jpg);
    background-repeat: no-repeat;
    background-position: top;
    object-fit:cover;

}
.container-sl{
    height: 100%;
    width: 70%;
    height: 100%;
    margin: 0 auto;
}
.container-sl::before{
    content: "";
    display: block;
    padding-top: 0%;
}

.container-sl-inner{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 90%;
    height: 8.2rem;  
}

@media screen and (max-width: 1440px) {
    .img-fluid-guni{
        width: 80%; margin-bottom: 2em;
        margin-bottom: 2em;
    }
    .container-sl{ 
        width: 75%;
    }
}
@media screen and (max-width: 959px) {
    .container-sl{ 
        width: 85%;
    }
}
@media screen and (max-width: 480px) {
    .img-fluid-guni{
        width: 70%;
        padding: 8%;
    }
    .container-sl{ 
        width: 100%;
    }   
}

/* イメージに合わせて 2024.10.03 */
.container{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.container::before{
    content: "";
    display: block;
    padding-top: 0%;
}

.container-inner{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 90%;
    height: 8.2rem;  
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.title-gunib1{
    font-size: 3.44vw !important;  
}
.title-gunib2{
    font-size: 2.44vw !important;  
}
.title-gunib3{
    font-size:small !important;  
}

    /* 2024.10.03 add   suzuki */
    @media screen and (max-width: 959px) {
        /* 959px以下に適用されるCSS（タブレット用） */
        .title-gunib1{
            font-size: 3.75vw !important;  
        }
        .title-gunib2{
            font-size:small !important;  
        }
        .title-gunib3{
            font-size:smaller !important;  
        }
        
    }
    @media screen and (max-width: 480px) {
        /* 480px以下に適用されるCSS（スマホ用） */
        .title-gunib1{
            font-size:small !important;  
        }
        .title-gunib2{
            font-size:small !important;  
        }
        .title-gunib3{
            font-size:xx-small !important;  
        }
        
    }





















/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    /* background: var(--dark); */
    background: #1a2a364f;
    transition: .8s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        /* max-width: 100% !important; */
        max-width:98% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


    /*** Team ***/
    .team-item {
        box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    }

    .team-item img {
        border-radius: 8px 60px 0 0;
    }

    .team-item .team-social {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        background: #FFFFFF;
        transition: .5s;
    }


    /*** Testimonial ***/
    .testimonial-carousel::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
        z-index: 1;
    }

    .testimonial-carousel::after {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
        z-index: 1;
    }

    @media (min-width: 768px) {
        .testimonial-carousel::before,
        .testimonial-carousel::after {
            width: 200px;
        }
    }

    @media (min-width: 992px) {
        .testimonial-carousel::before,
        .testimonial-carousel::after {
            width: 300px;
        }
    }

    .testimonial-carousel .owl-nav {
        position: absolute;
        width: 350px;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: space-between;
        opacity: 0;
        transition: .5s;
        z-index: 1;
    }

    .testimonial-carousel:hover .owl-nav {
        width: 300px;
        opacity: 1;
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        position: relative;
        color: var(--primary);
        font-size: 45px;
        transition: .5s;
    }

    .testimonial-carousel .owl-nav .owl-prev:hover,
    .testimonial-carousel .owl-nav .owl-next:hover {
        color: var(--dark);
    }

    .testimonial-carousel .testimonial-img img {
        width: 100px;
        height: 100px;
    }

    .testimonial-carousel .testimonial-img .btn-square {
        position: absolute;
        bottom: -19px;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-item .testimonial-text {
        margin-bottom: 30px;
        box-shadow: 0 0 45px rgba(0, 0, 0, .08);
        transform: scale(.8);
        transition: .5s;
    }

    .testimonial-carousel .owl-item.center .testimonial-text {
        transform: scale(1);
    }



    /*** Contact ***/
    @media (min-width: 992px) {
        .container.contact {
            max-width: 100% !important;
        }

        .contact-text  {
            padding-left: calc(((100% - 960px) / 2) + .75rem);
        }
    }

    @media (min-width: 1200px) {
        .contact-text  {
            padding-left: calc(((100% - 1140px) / 2) + .75rem);
        }
    }

    @media (min-width: 1400px) {
        .contact-text  {
            padding-left: calc(((100% - 1320px) / 2) + .75rem);
        }
    }


    /*** Footer ***/
    .footer .btn.btn-social {
        margin-right: 5px;
        color: #9B9B9B;
        border: 1px solid #9B9B9B;
        border-radius: 38px;
        transition: .3s;
    }

    .footer .btn.btn-social:hover {
        color: var(--primary);
        border-color: var(--light);
    }

    .footer .btn.btn-link {
        display: block;
        margin-bottom: 5px;
        padding: 0;
        text-align: left;
        color: #9B9B9B;
        font-weight: normal;
        text-transform: capitalize;
        transition: .3s;
    }

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        color: #FFFFFF;
        letter-spacing: 1px;
        box-shadow: none;
    }

    .footer .copyright {
        padding: 25px 0;
        border-top: 1px solid rgba(256, 256, 256, .1);
    }

    .footer .copyright a {
        color: var(--light);
    }

    .footer .copyright a:hover {
        color: var(--primary);
    }



    /* Reset */
    *{
        margin: 0;
        padding: 0;
        /* 2024.10.03 */
        box-sizing: border-box;  
    }
    
    /* wrapper */
    .wrapper {
        /* width: 100vw; */
        /* max-width: 100%; */
        /* height:900px; */
        /* max-height:100%; */
        /* height: 100vh; 2024.10.03 revised   suzuki */
        /* overflow:hidden; */
        /* aspect-ratio: 1/1; */
        /* background-position: center bottom 1%; */
    }
    .wrapper::before{
        /* heightは親要素wrapper と同じ */
        content: "";
        display:block;
        /* padding-top: 100%; */
    }
    .wrapper__video{
        /* postion: relative; */
        width: 100%; 
        /* height: 100vh; */

        /* object-fit:cover; */
        /* width: 100%; */
        /* height: 100%; */
    }

    /* .video-wrapper:after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        background-image: radial-gradient(black 20%, transparent 20%),
        radial-gradient(black 20%, transparent 20%);
        background-size: 6px 6px;
        background-position: 0 0, 3px 3px;
    } */
    .okyakusamahe{
        font-size:larger;
    }
    .gunisioscp  p{
        font-size:larger;
    }
    .guniquick a{
        font-size:larger;
    }
    .tsuyomi{
        font-size: calc(1.275rem + .3vw) !important;
    }
    .companymsg{
        font-size: calc(1.275rem + .3vw) ;
    }
    .solutiontitle{
        font-size:xx-large!important;
    }
    .solutionmsg{
        font-size: calc(1.275rem + .3vw) ;
        padding-bottom: 0.5em;
    }
    .aboutmon .footersmon{
        font-size: small;
        
    }
    .linkservice{
        font-size:large;
    }
    .gaiyouguni {
        font-size:larger;
    }
    .gaiyouguni p {
        font-size:x-large;
    }
    .card-bodyguni{
        font-size:larger;
    }

    /* 2024.10.03 add   suzuki */
    @media screen and (max-width: 959px) {
        /* 959px以下に適用されるCSS（タブレット用） */
        .wrapper{
            /* height: 500px!important; */
            background-position: center bottom 8%;
        }
        .header-carousel-wrapper {
            /* height: 500px!important; */
        }
        .wrapper__video .wrapper__video-inner {
        position: absolute;
        width: auto;
        height: 100%;
        top: 50%;
        left: 50%;
        min-height: 100%;
        min-width: 100%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);

        }
        .okyakusamahe{
            height: 220px;
            font-size: medium;
        }
        .gunisioscp  p{
            font-size:large;
        }
        .guniquick a{
            font-size:large;
        }        
        .gaiyouguni {
            font-size:small;
        }
        .gaiyouguni p {
            font-size:x-large;
        }
        .card-bodyguni{
            font-size:small;
        }
        .tsuyomi h3{
            font-size:large;
        }
        .companymsg{
            font-size:large!important;
        }
        .solutiontitle{
            font-size:x-large!important;
        }
        .solutionmsg{
            font-size:large!important;
        }
        .aboutmon {
            font-size: small;
        }
        .footersmon{
            font-size: small;
        }
        .linkservice{
            font-size:smaller;  
            padding-right: 1rem !important;
            padding-left: 1rem !important;
        }
    }
    @media screen and (max-width: 480px) {
        /* 480px以下に適用されるCSS（スマホ用） */
        .wrapper {
            /* height:300px !important; */
            background-position: center bottom 8%;
        }
        .header-carousel-wrapper {
            /* height: 400px!important; */
        }
        .okyakusamahe {
            height: auto;
            font-size:medium;
        }        
        .gunisioscp  p{
            font-size:medium;
        }
        .guniquick a{
            font-size:large;
        }   
        .gaiyouguni{
            font-size:small;
        }
        .gaiyouguni p{
            font-size:large;
        }
        .card-bodyguni{
            font-size:small;
        }
        .tsuyomi h3{
            font-size: medium;
        }
        .companymsg{
            font-size:medium!important;
        }
        .solutiontitle{
            font-size:medium!important;
        }
        .solutionmsg{
            font-size:medium!important;
        }
        .aboutmon{
            font-size: small;        
        }
        .footersmon{
            font-size: small;        
        }
        .linkservice{
            font-size:xx-small;
            padding-right: 0.7rem !important;
            padding-left: 0.7rem !important;
            padding-left: 1rem !important;
            text-align: center;
            vertical-align: middle;
            display: table;
        }
    }

    




    .c-table1 {
        width: 100%;
        color: #101920;
        font-size: 1.25em;;
    }
    table {
        border-collapse: collapse;
        border-spacing: 0;
        font-size: inherit;
    }
    * {
        box-sizing: border-box;
        word-break: normal;
        word-wrap: break-word;
        white-space: normal;
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }
    user agent stylesheet
    table {
        display: table;
        border-collapse: separate;
        box-sizing: border-box;
        text-indent: initial;
        unicode-bidi: isolate;
        border-spacing: 2px;
        border-color: #dfdfdf;
    }
    .c-table1__head {
        white-space: nowrap;
        border-color: #dfdfdf;
    }

    .c-table1__head, .c-table1__item {
        text-align: left;
        vertical-align: top;
        line-height: 1.75;
        border-bottom: 1px solid;
        padding: 1.25rem;
    }
    .c-table1__item {
        /* border-color: #dfdfdf; */
    }

    .c-table1__head, .c-table1__item {
        text-align: left;
        vertical-align: top;
        line-height: 1.75;
        padding: 1.25rem;
    }
    .trmsg td{
        padding-left: 2rem!important;
    }

    @media screen and (max-width:500px){
        .c-table1__head {
            width: 12.2580645161vw; /* 200(px) / 620(px) * 100vw */
        }
        .c-table1__head, .c-table1__item {
            font-size:large;
        }
    }
    @media screen and (max-width:768px){
        .c-table1__head {
            width: 12.2580645161vw; /* 200(px) / 620(px) * 100vw */
        }
    }

    .c-table1 table {
        margin: 20px auto;
        display: table;
        border-collapse: separate;
        box-sizing: border-box;
        text-indent: initial;
        unicode-bidi: isolate;
        border-spacing: 2px;
        border-color: #dfdfdf;
    }
    .c-table1 th {
        /* background: #ffffff; */
        /* border: solid 1px #bebdbd; */
        color: #101920;
        padding: 10px;
    }
    .c-table1 td {
        /* border: solid 1px #dfdfdf; */
        padding: 10px;  
    }
    .card-text{
        font-size:x-large;
    }

    @media screen and (max-width: 640px) {
        .last td:last-child {
            border-bottom: solid 1px #dfdfdf;
            width: 100%;
        }
        .c-table1 {
            width: 98%;
        }
        .c-table1 th{
            /* border-bottom: none; */
            border-bottom:0.5px solid #e6e3e3;
            display: block;
            width: 100%;
        }
        .c-table1 td {
            border-bottom:0.5px solid #535353;
            display: block;
            width: 100%;
        }
        .card-text{
            font-size:large;
        }
    }






    /*	content
    ------------------------------------------*/
    .inner{
        width: 100%;
        max-width: 1150px;
        margin: 0 auto;
        padding: 0 30px;
    }
    .col {
        display: flex;
    }

    /*	caption
    ------------------------------------------*/
    .person01,.person02{
        align-items: flex-start;
    }
    .caption_balloon{
        position: relative;
        padding: 15px 30px;
        border-radius: 10px;
        max-width: 580px;
        color: #fff;
        font-size: 1.6rem;
        line-height: 1.5;
        letter-spacing: 0.2em;
    }
    .caption_balloon::after{
        content: "";
        position: absolute;
        bottom: -12px;
        display: inline-block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 7px 6px;
    }
    .person01 .caption_balloon{
        background-color:#2f3e92; /*  #3C2C25; */

        border-radius: 10px;
    }
    .person01 .caption_balloon::after{
        left: 25px;
        border-color: #3C2C25 transparent transparent #3C2C25;
    }
    .person02 .caption_balloon{
        background-color: #0dcaf0;
        padding: 15px 18px;
        top: 2.5em;
        font-size: 1.1em;
        text-align: left;
    }
    .person02 .caption_balloon::after{
        right: 25px;
        /* border-color: #93CF30 #93CF30 transparent transparent; */
        border-color: #0dcaf0 #0dcaf0 transparent transparent;
        
    }
    .person03 .caption_balloon::after{
        right: 25px;
        /* border-color: #93CF30 #93CF30 transparent transparent; */
        border-color: #0dcaf0 #0dcaf0 transparent transparent;
        
    }
    .caption_balloon p + p{
        margin-top: 6px;
    }
    .person01 .caption_fg{
        width: 233px;
        margin-right: 15px;
    }
    .person02 .caption_fg{
        width: 210px;
        margin-left: 15px;
    }
    .person03 .caption_fg{
        width: 210px;
        margin-left: 15px;
    }
    @media screen and (max-width:500px){
        .caption_balloon{
            padding: 15px 18px;
            font-size: 1.3rem;
            letter-spacing: 0.15em;
        }
        .person01 .caption_balloon{
            border-radius: 10px;
        }
    }
    /*	flow
    ------------------------------------------*/
    .flow{
        opacity: 1;
        /* animation: si_fade 1.5s ease-in; */
        overflow: hidden;
        padding: 70px 0 105px;
        background: url("../img/main_bg03.svg") no-repeat center bottom / 100%,url(../img/flow_bg01_1.png) no-repeat left 14% / 32vw,url("../img/25134496.png") no-repeat right 65% / 12vw;
    }
    @media screen and (max-width:1440px){
        .flow{
            background: url(../img/main_bg03.svg) no-repeat center bottom / 100%,url(../img/flow_bg01_1.png) no-repeat left 14% / 463px,url(../img/flow_bg01_r.png) no-repeat right 65% / 480px;
        }
    }
    @media screen and (max-width:768px){
        .flow{
            padding: 40px 0 70px;
            background: url(../img/main_bg03.svg) no-repeat center bottom / 1020px,url(../img/flow_bg01_1.png) no-repeat left 14% / 55%,url(../img/flow_bg01_r.png) no-repeat right 65% / 55%;
        }
    }
    @media screen and (max-width:500px){
        .flow{
            background: url(../img/flow_bg01_1.png) no-repeat left 14% / 20vw,url("../img/flow_bg01_1.png)") no-repeat right 65% / 12vw;
            /*要素の左端から2px、要素の上端から-3pxの位置に背景画像を表示*/
            background-position: 0px 450px;
            /* background: url(../img/main_bg03.svg) no-repeat center bottom / 1020px,url(../img/flow_bg01_1.png) no-repeat left 14% / 85%,url(../img/flow_bg01_r.png) no-repeat right 65% / 85%; */
        }
    }
    /*	flow_list-------------------------------*/
    .flow_list{
        max-width: 820px;
        margin: 0 auto 80px;
        counter-reset: number 0;
    }
    .flow_listItem{
        position: relative;
        z-index: 10;
        justify-content: center;
        align-items: flex-start;
    }
    .flow_listItem:nth-last-of-type(n+2)::before{
        content: "";
        position: absolute;
        bottom: -15%;
        left: 37px;
        z-index: 1;
        display: block;
        width: 0;
        height: calc(100% - 78px - 20px);
        border-right: 2px dotted #3C2C25;
    }
    .flow_listItem + .flow_listItem{
        margin-top: 25px;
    }
    .flow_listItem .step{
        position: relative;
        z-index: 10;
        margin-right: 20px;
        padding-top: 5px;
    }
    .flow_listItem .step::before{
        counter-increment: number 1; 
        content: "STEP " counter(number, decimal-leading-zero);
        display: block;
        font-size: 1.4rem;
        font-weight: 700;
        color: #0dcaf0;
        text-align: center;
    }
    .flow_listItem .step .ic{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 78px;
        height: 78px;
        background-color:#0dcaf0;/* #FF8E3F;*/
        border-radius: 15%;
        box-shadow: 0 2px 3px rgba(125, 55, 4, 0.26);
    }.flow_listItem_content .ttl
    .flow_listItem_content{
        width: calc(100% - 78px);
    }
    .flow_listItem_content .ttl{
        margin-bottom: 10px;
        font-size: 2.4rem;
        font-weight: 700;
        margin-top: 2.5em;
    }
    .flow_listItem_content .txtBox{
        padding: 20px 25px;
        font-size: 1.4rem;
        box-shadow: 0 2px 3px rgba(4, 110, 209, 0.16);
        text-align: left;
        opacity: 0.9;
    }
    @media screen and (max-width:768px){
        .flow_list{
            margin-bottom: 50px;
        }
    }
    @media screen and (max-width:500px){
        /* 2024.10.05 rev 携帯縦のときflowの変更 */
        .flow_listItem{
            display: block !important;
        }
        .flow_listItem .step .ic{
            display:none!important;
        }
        .flow_listItem_content{
            /* width:250px; */
            min-width:90%;
        }
        .flow_h2{
            font-size:16px!important;
        }
        .flow_listItem:nth-last-of-type(n+2)::before{
            left: calc( ( 100% ) / 2 - 25px );
            width: 30px;
            height: 30px;
            border: 2px solid;
            border-color: transparent transparent #0dcaf0 #0dcaf0;
            transform: rotate(-45deg);

            /* 横方向の>中央寄せ  縦方向の>の中央寄せ 親要素との距離*/
            text-align: center; 
            vertical-align:middle; 
            text-align: center;
            margin: 0 auto;
            display: inline-block;
            /* margin-right: .3rem;  */
        }
        .flow_list{
            padding-left: 1%;
        }
        .flow_listItem .step{
            padding-top: 10%;
        }
        .card-body{
            padding: 1% 1%;
        }
        .flow{

        }
        .flow_listItem + .flow_listItem{
            margin-top: 20px;
        }
        .flow_listItem:nth-last-of-type(n+2)::before{
            bottom: -12%;
        }
        .flow_listItem_content .ttl{
            margin-bottom: 6px;
            font-size: 1.2rem;
        }
        .flow_listItem_content .txtBox{
            padding: 5px;
            font-size: 1.0rem;
            text-align: left;
        }
    }





    /*	txtBox
    ------------------------------------------*/
    .txtBox{
        padding: 25px 30px;
        background: #f1f8fa;/* #F7F5F0; */
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(4, 110, 209, 0.16);
        font-size: 1.6rem;
    }
    .bold{
        font-weight: 700;
    }
    .txtBox p + p{
        margin-top: 15px;
    }
    @media screen and (max-width:768px){
        .txtBox{
            font-size: 1.4rem;
        }
    }
    /*	flow_caption-------------------------------*/
    .flow_caption{
        position: relative;
    }
    .flow_caption .person01{
        justify-content: flex-end;
        flex-direction: row-reverse;
    }
    .flow_caption .person01 .caption_fg{
        margin-top: 40px;
        margin-bottom: 35px;
    }
    .flow_caption .person02{
        position: absolute;
        top: 23%;
        right: 0;
        flex-direction: row-reverse;
        width: 100%;
    }
    .flow_caption .person02 .caption_balloon{
        width: calc(100% - 245px - 230px);
    }
    @media screen and (max-width:768px){
        .flow_caption{
            max-width: 600px;
            margin: 0 auto;
        }
        .flow_caption .person01{
            align-items: center;
        }
        .flow_caption .person02{
            position: static;
            align-items: center;
            margin-top: 0;
        }
        .flow_caption .caption_fg{
            width: 35%;
        }
        .flow_caption .person01 .caption_fg{
            margin-top: 0;
            margin-bottom: 0; 
        }
        .flow_caption .caption_balloon{
            width: 65%!important;
        }
        .flow_caption .person02 .caption_balloon{
            margin-top: 0;
        }
        .flow_caption .caption_balloon::after{
            bottom: 16px;
            border-width: 8px 10px;
        }
        .flow_caption .person01 .caption_balloon::after{
            left: -18px;
            border-color: transparent #3C2C25 transparent transparent;
        }
        .flow_caption .person02 .caption_balloon::after{
            right: -18px;
            border-color: transparent transparent transparent #93CF30;
        }
    }
    @media screen and (max-width:500px){
        .flow_caption .person02{
            margin-top: 15px;
        }
    }
    @media screen and (max-width: 500px) {
        .inner {
            padding: 0 20px 0;
        }
    }
    @media screen and (max-width: 768px) {
        .inner {
            padding: 0 30px 0;
        }
    }
    @media screen and (max-width: 1024px) {
        .inner {
            width: 100% !important;
        }
    }






    .sdgsstyl{
        margin-left: 3em;
    }
    /* PC用のCSSはメディアクエリの外に記述する */

    @media screen and (max-width: 959px) {
        /* 959px以下に適用されるCSS（タブレット用） */
        .sdgsstyl{
            margin-left: 1em;
        }
    }
    @media screen and (max-width: 480px) {
        /* 480px以下に適用されるCSS（スマホ用） */
        .sdgsstyl{
            margin-left: 1em;
        }
    }


    .policysite {
        background-color: #28a9f3;
        background-image: linear-gradient(#166593, #0dcaf0);
    }


    .flow_h2{
        position: relative;
        margin-bottom: 60px;
        font-size: 4.0rem;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.15em;
        line-height: 1.4;

    }
    .flow_h2 {
        font-size: 26px;
    }

    .flow_h2 span {
        display: flex;
        align-items: center;
        color: #498ee0;
        font-size: 18px;
        text-transform: uppercase;
    }

    .flow_h2 span::before {
        content: '';
        display: inline-block;
        margin-right: 20px;
        width: 40px;
        height: 1px;
        background-color: #498ee0;
    }




    .inner{
        max-width: 1000px;
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        padding: 10px 20px 50px;
        /* main_bg03.svg　は波画像*/
        background: url(../img/main_bg03.svg) no-repeat center bottom / 100%, url(../img/25134496_200.png) no-repeat left -3% top 1% / 8vw;
        
        /* background: url(../img/main_bg03.svg) no-repeat center bottom / 100%, url(../img/flow_fg02_1.png) no-repeat left 15% / 8vw, url(../img/flow_fg02_1.png) no-repeat right 1% / 5vw;
        */
    }
    @media screen and (max-width: 959px) {
        /* 959px以下に適用されるCSS（タブレット用） */
        .inner{
            background: url(../img/main_bg03.svg) no-repeat center bottom / 100%;
        }
    }
    @media screen and (max-width: 480px) {
        /* 480px以下に適用されるCSS（スマホ用） */
        .inner{
            background: url(../img/main_bg03.svg) no-repeat center bottom / 100%;
        }
    }


  .worksl3::before{
    content: "";
    display: block;
    background-image: url(../img/main_bg03.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100px;
    position:relative;
    left: 0;
    bottom: 0;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
  .card1{
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    /* background-color: #fff; */
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 8px;
  }    

  .box{
    display: flex;
    flex-direction: row;
  }
  .box + .box{
    margin-top: 80px;
  }
  .box__body{
    width: 50%;
    padding: 0 20px;
  }
  .box__ttl {
    font-size: 20px;
    text-transform: uppercase;
  }
  .box__txt {
    margin-top: 20px;
  }
  .box__image{
    width: 50%;
  }
  .box__image img{
    height: 100%;
    object-fit: cover;
  }
  .box.reverse{
    flex-direction: row-reverse;
  }
    @media screen and (max-width:767px){
        .box {
        display: block;
        }
        .box + .box{
        margin-top: 60px;
        }
        .box__body{
        width: 100%;
        padding: 0;
        }
        .box__image{
        margin-top: 20px;
        width: 100%;
        }
    }


    .sectiondiagonal{
        /* clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%); 
        background-color:#c4e3f8;
        background: linear-gradient(to bottom, rgb(249, 251, 252), rgb(204, 227, 243));
    background: -webkit-linear-gradient(top, rgb(249, 251, 252), rgb(204, 227, 243));
    background: -moz-linear-gradient(top, rgb(249, 251, 252), rgb(204, 227, 243));
        padding: 100px 150px;*/
        /* background: url(../img/main_bg03.svg) no-repeat center bottom / 100%, url(../img/tnm1.png) no-repeat left 14% / 32vw, url(../img/quote.jpg) no-repeat right 65% / 33vw; */
    }




    .gaiyou h1 {
        position: relative;
        border-top: solid 2px #066bbe;
        border-bottom: solid 2px #066bbe;
        background: #deecf1;
        line-height: 1.4;
        padding: 0.4em 0.5em;
        margin: 2em 0 0.5em;
        padding: 1rem 2rem;
        border-left: 15px solid #066bbe;
        background: #eaf2fc;

        background: linear-gradient(to right, #d1eaff, #ffffff);
        background: -webkit-linear-gradient(left, #d1eaff, #ffffff);
        background: -moz-linear-gradient(left, #d1eaff, #ffffff);
    }
  
    .gaiyou h1:after {
        /*タブ*/
        position: absolute;
        font-family: "Font Awesome 5 Free",'Times New Roman','Quicksand','Avenir','Arial',sans-serif;
        font-weight: 900;
        /* content: '\f0a7\ GUNISIOS'; */
        background: #047fb8;
        color: #fff;
        left: 0px;
        bottom: 100%;
        border-radius: 5px 5px 0 0;
        padding: 5px 7px 3px;
        font-size: 0.7em;
        line-height: 1;
        letter-spacing: 0.05em;

    }


    .numbering {
        position:relative;
        top: -40px;
        left: 2px;
        color: #fff;
        background: #0D1B37;
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 42px;
        text-align: center;
    }
    .theme_font {
        font-family: 'Oswald', sans-serif;
        font-weight: normal;
    }
    .title_usecase {
        border-bottom: 1px solid;
        font-size: 25px;
        font-weight: bold;
        letter-spacing: 3px;
        padding-bottom: .3em;
    }

    .title_usecasetop {
        border-top: 1px solid;
        font-size: 25px;
        font-weight: bold;
        letter-spacing: 3px;
        padding-bottom: .3em;
        height: 1.5em;

    }

    .box__bodyxxxxx ol > li:before {
        content: counter(li);
        counter-increment: li;
        position: absolute;
        left: -1.8em;
        top: 1px;
        width: 2em;
        padding: 4px 0;
        color: #fff;
        background: #0D1B37;
        font-weight: normal;
        font-family: 'Oswald', sans-serif;
        text-align: center;
        font-size: 90%;
    }


    #kesiki111 {
        position:fixed;
        top:0;
        z-index:-2;
        background-repeat:repeat-y;
    }
    #kabe111 {
        background-color: #066bbe;
        position:absolute;
        top:1200px;
        z-index:-1;
        
        /*safari対策*/
        transform:translateZ(-1px); 
    }
    .content111 {
        width:80%;
        height:10em;
        border:solid 6px gray;
    }
    #sikaku {
        mask:url(#mask);
    }
    #madoarea111 {
        width:60%;
        height:10em;
        margin:0 auto;
        border:solid 5px crimson;
    }


    /* worksのfif*/
    .parent-2 {
        position: relative;
        width: 100%;
        max-width: 900px; /* 最大で900pxの幅を持つ */
        margin: 0 auto;
    }

    .parent__inner-2 {
        position: relative;
        width: 100%;
    }

    .image-static-2 {
        width: 98%;
        height: auto; /* オリジナルのアスペクト比を保つため、widthに合わせる */
        object-fit: cover; /* img要素が要素のボックスに対してどのように表示されるかを指定 */
        filter: drop-shadow(6px 5px 3px rgba(0,0,0,0.7)); /* 画像の影 */
    }

    .child-2 {
        position: absolute;
        top: 45%; /* GIF画像の位置調整 */
        left: 85%; /* GIF画像の位置調整 */
        transform: translateX(-50%);
        width: 33vw;
        max-width: 500px; /* 最大幅を300px */
    }

    .image-gif-2 {
        width: 100%; /* 親要素にフィットするように設定 */
        height: auto; /* ここにも auto を指定した場合、元の画像比率が維持されます */
        max-width: 500px; /* 最大幅を300pxに設定 */
        max-height: 500px; /* 最大高さを300pxに設定 */
        object-fit: cover; /* ここも cover で描画エリア全体にフィットさせる */
    }


    .repkakusu{
        display:none;
    }
    @media screen and (max-width: 460px){
        .repkakusu{
            display:block;
        }
    }
    @media screen and (max-width:768px){
        .repkakusu{
            display:block;
        }
    }


    .guniboxshadow{
        box-shadow:
        0 10px 0 -5px rgb(215, 237, 243),
        0 20px 0 -10px rgb(105, 171, 209),
        0 30px 0 -15px #4900ff;
        /* 0 30px 0 -15px #03037c; */
        
        width: 50%;    margin: 0 auto;
    }

    /* 交差線 */
    .conkline{
        width: 100%;
    }
    .kline {
        line-height: 2.6em;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        margin: 0 auto;
        position: relative;
        padding: 0.25em 1em;
        border-top: solid 2px black;
        border-bottom: solid 2px black;
        box-shadow:
        0 10px 0 -5px rgb(215, 237, 243),
        0 20px 0 -10px rgb(105, 171, 209),
        0 30px 0 -15px #03037c;


        /*コレ 2024.10.20 */
    display: inline-block;
    /* border: 1px solid #333; */
    padding: 5px;
    /* background: #df7070; */
    margin: 5px 0;
      }
      .kline:before, .kline:after {
        content: '';
        position: absolute;
        top: -7px;
        width: 2px;
        height: -webkit-calc(100% + 14px);
        height: calc(100% + 14px);
        background-color: black;
      }
      .kline:before {
        left: 7px;
      }
      .kline:after {
        right: 7px;
      }

      .solutionmsg-bkimg{
        /* background-color: #066bbe; */
        /* width: 100vh; */
        max-width: 100%;
        height: 120px;
        /* max-height: 100%; */
        /* background-size: 50%; */
        background-image: url(../img/handworks.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 250px;
        /* background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/handworks.png) top center no-repeat; */
        content: '';/*何も入れない*/
        display: inline-block;
        /* content: url(../img/logogunisios50_wh.png) ; */
        /* padding-right: 0.1em; */
        text-align:center;
        background-size: contain; /*contain 画像の縦横比は維持したまま、疑似要素いっぱいに*/
        vertical-align: middle; /* display: inline-blockで要素と画像を横に並べたいときには、vertical-align: middleを指定しておくと綺麗に横に並ぶ*/
      }
    @media screen and (max-width:768px){
        .solutionmsg-bkimg{
            background-size: 90px;
        }
    }
    @media screen and (max-width: 460px){
        .solutionmsg-bkimg{
            background-size: 60px;
        }
    }




/* 改行 */
    .hidden-pc {
        display: none;
    }
    .hidden-pc-indent2m {
        display: none;
    }
    
    @media screen and (max-width: 767px) {
        .hidden-pc {
            display: block;
        }
        .hidden-pc-indent2m {
            display: block;
            text-indent: 2em;
        }
        .hidden-sp {
            display: none;
        }
    }
    /* worksのボックスレイアウト */
    /* .workswrapguni {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
      }
      
      .worksitemguni {
        padding: 30px;
        width: 32%;
        background-color: #fff;
      }
      
      @media not all and (min-width: 768px) {
        .worksitemguni {
          width: 100%;
        }
      
        .worksitemguni:not(:last-child) {
          margin-bottom: 30px;
        }
      } */
      .workswrapguni {
        display: flex;
        flex-wrap: wrap;
        padding-top: 20px;
        padding-bottom: 20px;
        /* background-image: url(../img/AdobeStock_938031786_Preview.jpeg);
        background-repeat: no-repeat;
        background-size: cover; */
        
      }
      
      .worksitemguni {
        padding: 30px;
        width: 49%;
        /* background-color: #f1d21d; */
        display: flexbox;
        background-color: #fffffffa;
        font-weight: bold;
      }
      
      .worksitemguni:not(:nth-child(2n+2)) {
        margin-right: 2%;
        /* margin-top: 1% */
      }
      
      .worksitemguni:nth-child(n+3) {
        margin-top: 30px;
      }
      
      @media not all and (min-width: 768px) {
        .worksitemguni {
          width: 100%;
        }
      
        .worksitemguni:not(:nth-child(2n+2)) {
          margin-right: 0;
          /* background-color: #93CF30; */
        }
      
        .worksitemguni:nth-child(n+3) {
          margin-top: 30px;
        }
      }


      /* タグ */
      /* .worksitemguni p {
        display:inline-block;
        margin: 0 .8em 1.6em 0;
        padding: 1.2em;
        line-height: 1.8em;
        text-decoration: none;
        color: #03037c;
        background-color: #fff;
        border: 1px solid #03037c;
        border-left: 8px solid #03037c;
        font-size:large;
    } */

    
    /* .worksitemguni p::before {
        content: '';
        width: 40px;
        height: 40px;
        margin: 0 auto;
        background-color: #a31515;

        background-image: url(../img/bill.svg);
        background-repeat: no-repeat;
        background-size: contain;
        vertical-align: middle;

        padding-right: 2.8em;
        text-align:center;
        vertical-align: middle;
        display: inline-block;

        white-space: nowrap;
      } */

      
      .workswrapgun_title{
        margin-top: 10%;
        height: 6rem;
        text-align: center;
        font-size: xx-large;
        font-weight: bold;
      }
      .workswrapgun_title::after { /* 下の三角形 */
        /* content: "";
        width: 0;
        height: 0;
        border-top: 10px solid #4682b4;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        position:relative;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);  */
        /* transformがセンタリングしたい要素の縦、横幅分を引いてくれるので中央になる */
        background: #000000;
        content: "";
        display: block;
        height: 65px;
        margin: 0 auto 20px;
        width: 2px;
      }

      .worksitemguni ol{
        padding-left: 0em!important;
        /* padding-top: 25%;
        padding-bottom: 25%; */
        
      }
      .worksitemguni ol, .worksitemguni li{
        padding-left: 50px;
        margin-bottom: 0rem;
      }
    .worksitemguni ol li {
        list-style: none;
        width: 200px;
        /* padding-left: 55px; */
        line-height: 5em;
        background: left top no-repeat;
        background-size: 30px auto;
        /* background-color: #60ec3d; */
    }
    .worksitemguni ol li{
        /* 画像部分 */
        content: '';/*何も入れない*/
        width: 100%;
        /* height: 40px; */
        margin: 0 auto;
        /* padding-right: 2.8em; */
        /* background-image: url(../img/bill.svg); */
        /* background-color: #e65252; */
        background-repeat: no-repeat;
        background-size: 40px;
        background-position-x: 0px;
        background-position-y: center;
        /* vertical-align: middle; */
        /* margin: 0 .8em 1.6em 0; */
        /* padding: 1.2em; */
        border: 1px solid #03037c;
        border-left: 8px solid #03037c;
        /* font-size:large; */
        /* line-height: 2em; */
        font-size: calc(0.25vw + 1.2rem);
        
        vertical-align: middle;
        box-shadow:
        0 10px 0 -5px rgb(215, 237, 243),
        0 20px 0 -10px rgb(105, 171, 209),
        0 30px 0 -15px #03037c;
    }
    @media screen and (max-width: 1840px) {
        .worksitemguni ol li{
            /* font-size: calc(0.25vw + 0.6rem); */
            /* font-size:clamp(0.5rem, 0.291rem + 0.73vw, 1.125rem); */
            font-size:clamp(1rem, 0.823rem + 0.59vw, 1.5rem);
            /* line-height: 1.8em; */
            background-size: 30px;
            /* line-height:2.5em; */
            line-height: 1.8em;
            padding: 2% 15%;
            height: 105px;
            display: grid;
            vertical-align: middle;
        }
        .worksitemguni:nth-child(n+3) {
            margin-top:auto;
        }
        .worksitemguni:not(:nth-child(2n+2)) {
            margin-top:auto;
        }
    }
    @media screen and (max-width: 460px){
        .worksitemguni ol li{
            /* font-size: calc(0.25vw + 0.6rem); */
            font-size:clamp(0.563rem, 0.563rem + 1.09vw, 0.875rem);
            /* font-size:clamp(0.625rem, 0.625rem + 1.25vw, 1rem) */
            /* line-height: 1.8em; */
            background-size: 25px;
            line-height:2.5em;
            padding: 2%;
            height: 75px;
        }
        .worksitemguni:nth-child(n+3) {
            margin-top:auto;
        }
        .worksitemguni:not(:nth-child(2n+2)) {
            margin-top:auto;
        }
    }
    .worksitemguni-1 ol li:nth-child(1){
        /* 画像部分 */
        background-image: url(../img/bill.svg);
        background-position: 20px; 
        /*要素の左端から10px、要素の上端からxxの位置に背景画像を表示*/
    }
    .worksitemguni-2 ol li:nth-child(1){
        /* 画像部分 */
        background-image: url(../img/factory.svg);
        background-position: 20px; 
        /*要素の左端から10px、要素の上端からxxの位置に背景画像を表示*/
    }
    .worksitemguni-3 ol li:nth-child(1){
        /* 画像部分 */
        background-image: url(../img/houi.svg);
        background-position: 20px; 
        /*要素の左端から10px、要素の上端からxxの位置に背景画像を表示*/
    }
    .worksitemguni-4 ol li:nth-child(1){
        /* 画像部分 */
        background-image: url(../img/dollar.svg);
        background-position: 20px; 
        /*要素の左端から10px、要素の上端からxxの位置に背景画像を表示*/
    }
    .worksitemguni-5 ol li:nth-child(1){
        /* 画像部分 */
        background-image: url(../img/open.svg);
        background-position: 20px; 
        /*要素の左端から10px、要素の上端からxxの位置に背景画像を表示*/
    }
    .worksitemguni-6 ol li:nth-child(1){
        /* 画像部分 */
        background-image: url(../img/money.svg);
        background-position: 20px; 
        /*要素の左端から10px、要素の上端からxxの位置に背景画像を表示*/
    }