@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');


/* font-family CSS
    │ Hanken Grotesk =>   font-family: "Hanken Grotesk", system-ui;
    └ Noto Sans JP => font-family: 'Noto Sans JP', sans-serif;
*/

/*=======================================
    Color-Definition
=======================================*/

:root {
    --white:#ffffff;
    --deepNavy: #112E51;
    --deepBlack: #15181f;
    --darkBlack: #212631;
    --middle-darkBlack: #333333;
    --darkGray: #4d505c;
    --middleGray:#e2e5e9;
    --lightGray: #fafbfb;
    --Point-Blue: #50abe7;
    --Point-darkBlue: #0071bc;
    --Point-lightBlue: #f6fafb;
}


/*=========================*
    Common-Definition
*===========================*/

*, ::after, ::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Noto Sans JP", sans-serif !important;
    overflow-x:hidden;
    scroll-behavior: smooth;
}

ul {
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    text-decoration: none;
    margin-bottom: 0px;
    padding-left: 0rem !important;
    margin-bottom: 0rem ;
}

li {
    list-style: none;
}


h3{
    display: block;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

h4 {
    display: block;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

h5 {
    display: block;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

p {
    display: block;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    margin: 0;
    margin-bottom: 0rem ;
}

hr {
    display: block;
    unicode-bidi: isolate;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: auto;
    margin-inline-end: auto;
    overflow: hidden;
    border-style: solid;
    border-width: 1px;
    border-top: none;
}

table {
    border-spacing: 0px;
}

input[type="submit" i] {
    appearance: auto;
    user-select: none;
    white-space-collapse: preserve;
    text-wrap: nowrap;
    align-items: flex-start;
    text-align: center;
    cursor: default;
    box-sizing: border-box;
    padding: 0px;
    border-width: 0px;
    border-style: none;
    border-color: none;
    border-image: initial;
}

input{
    border-width: 1px;
    border-style: solid;
}

:focus-visible {
    outline: unset;
}

.dropdown-toggle::after{
    border-top: unset !important; 
    border-right: unset !important;
    border-bottom: 0;
    border-left: unset !important;
}


/*=======================================
    SP/PC Responsive CSS
=======================================*/

    .pc-only{
        display: block;
    }

    .sp-only{
        display: none !important;
    }

@media screen and (max-width:768px) {
    
    .pc-only{
        display: none !important;
    }

    .sp-only{
        display: block !important;
    }

}

@media screen and (max-width: 1023px) and (min-width: 768px) {

    .tb-only{
        display: none !important;
    }

}


/*=======================================
    CSS-width-Definition
=======================================*/
   

    .max1200{
        max-width: 1200px;
        margin: 0 auto;
    }

    .max1100{
        max-width: 1100px;
        margin: 0 auto;
    }

    .max876{
        max-width: 876px;
        margin: 0 auto;
    }
.p-logo-view img{
		width: 300px;
	}


@media screen and (max-width: 1200px) and (min-width: 768px) {
    .tb-max-94{
        width: 94%;
        margin: 0 auto;
    }
	.p-logo-view img{
		width: 300px;
	}
}

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

    .sp-max-94{
        width: 94%;
        margin: 0 auto;
    }

    .sp-max-90{
        width: 90%;
        margin: 0 auto;
    }

}


/*=======================================
    CSS-Font-Definition
=======================================*/

/*==== List-style ====*/

.ls-circle > li{
    list-style: disc inside;
}

/*==== Font-Family ====*/

    .ff-hg{
        font-family: "Hanken Grotesk", system-ui;
        -webkit-font-family: "Hanken Grotesk", system-ui;
        font-optical-sizing: auto;
        font-style: normal;
    }

/*==== font-uppercase ====*/

    .f-upper{
        text-transform: uppercase;
    }


/*==== Font-align ====*/

    .fa-left{
        text-align: left;
    }

    .fa-center{
        text-align: center;
    }

    .fa-right{
        text-align: right;
    }

    .fa-justify{
        text-align: justify;
    }

/*==== line-height ====*/

    .lh-40{
        line-height: 40px;
    }

    .lh-19{
        line-height: 19px;
    }

    .lh-18{
        line-height: 18px;
    }


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

    .sp-lh-32{
        line-height: 32px;
    }

}



/*==== letter-spacing-css ====*/

    .ls-01{
        letter-spacing: -0.1px;
    }

    .ls-02{
        letter-spacing: -0.2px;
    }

    .ls-03{
        letter-spacing: -0.3px;
    }

    .ls-04{
        letter-spacing: -0.4px;
    }



    
/*-----------------------------
   smartPhone-CSS-definition 
------------------------------*/

@media screen and (max-width: 768px) {
    
    .sta-l{
        text-align: left;
    }

    .sta-c{
        text-align: center;
    }

    .sta-r{
        text-align: right;
    }

}

/*==== 【PC】Font-Size ====*/

    .fs-68{
        font-size: 68px;
    }

    .fs-56{
        font-size: 56px;
    }

    .fs-40{
        font-size: 40px;
    }

    .fs-36{
        font-size: 32px;
    }

    .fs-32{
        font-size: 32px;
    }

    .fs-28{
        font-size: 28px;
    }

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

    .fs-24{
        font-size: 24px;
    }

    .fs-22{
        font-size: 22px;
    }

    .fs-20{
        font-size: 20px;
    }

    .fs-18{
        font-size: 18px;
    }

    .fs-17{
        font-size: 17px;
    }

    .fs-16{
        font-size: 16px;
    }

    .fs-15{
        font-size: 15px;
    }

    .fs-14{
        font-size: 14px;
    }

    .fs-13{
        font-size: 13px;
    }

    .fs-12{
        font-size: 12px;
    }

/*==== 【SP】Font-Size ====*/
@media screen and (max-width:768px) {

    .sp-fs-52{
        font-size: 52px;
    }

    .sp-fs-40{
        font-size: 40px;
    }

    .sp-fs-36{
        font-size: 36px;
    }

    .sp-fs-32{
        font-size: 32px;
    }

    .sp-fs-28{
        font-size: 28px;
    }

    .sp-fs-24{
        font-size: 24px;
    }

    .sp-fs-22{
        font-size: 20px;
    }

    .sp-fs-20{
        font-size: 20px;
    }

    .sp-fs-18{
        font-size: 18px;
    }

    .sp-fs-16{
        font-size: 16px;
    }

    .sp-fs-15{
        font-size: 40px;
    }

    .sp-fs-14{
        font-size: 14px;
    }

    .sp-fs-13{
        font-size: 13px;
    }

    .sp-fs-12{
        font-size: 12px;
    }

    .sp-fs-11{
        font-size: 11px;
    }

    .sp-fs-10{
        font-size: 10px;
    }

    .sp-fs-7{
        font-size: 7px;
    }

}


/*==== 【Tablet】Font-Size ====*/

@media screen and (max-width: 1023px) and (min-width: 769px) {

    .tb-fs-48{
        font-size: 48px;
    }

    .tb-fs-18{
        font-size: 18px;
    }

    .tb-fs-16{
        font-size: 16px;
    }

    .tb-fs-14{
        font-size: 14px;
    }

    .tb-fs-12{
        font-size: 12px;
    }
}

/*==== Font-Weight ====*/

    .fw-bk{
        font-weight: 900;
    }

    .fw-eb{
        font-weight: 800;
    }

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

    .fw-sb{
        font-weight: 600;
    }

    .fw-m{
        font-weight: 500;
    }

    .fw-r{
        font-weight: 400;
    }

    .fw-l{
        font-weight: 300;
    }

/*==== Font-Decoration ====*/

    .bottom-line{
        text-decoration: underline;
    }



/*=======================================
    margin-Definition
=======================================*/

/*---- margin-Top ----*/

    .mt-120{
        margin-top: 120px;
    }

    .mt-72{
        margin-top: 72px;
    }


    .mt-64{
        margin-top: 64px;
    }

    .mt-56{
        margin-top: 56px;
    }

    .mt-40{
        margin-top: 40px;
    }

    .mt-24{
        margin-top: 24px;
    }

    .mt-20{
        margin-top: 20px;
    }

    .mt-16{
        margin-top: 16px;
    }

    .mt-12{
        margin-top: 12px;
    }

    .mt-8{
        margin-top: 8px;
    }

    

/*---- margin-Top-SP ----*/   
@media screen and (max-width:767px) {

    .sp-mt-80{
        margin-top: 80px;
    }

    .sp-mt-56{
        margin-top: 56px;
    }

    .sp-mt-40{
        margin-top: 40px;
    }

    .sp-mt-32{
        margin-top: 16px;
    }

    .sp-mt-16{
        margin-top: 16px;
    }

    .sp-mt-4{
        margin-top: 4px;
    }

}

/*---- margin-Bottom-PC ----*/    

    .mb-200{
        margin-bottom: 200px;
    }

    .mb-160{
        margin-bottom: 160px;
    }

    .mb-120{
        margin-bottom: 120px;
    }

    .mb-88{
        margin-bottom: 88px;
    }

    .mb-80{
        margin-bottom: 80px;
    }

    .mb-72{
        margin-bottom: 72px;
    }

    .mb-64{
        margin-bottom: 64px;
    }

    .mb-56{
        margin-bottom: 56px;
    }

    .mb-48{
        margin-bottom: 48px;
    }

    .mb-40{
        margin-bottom: 40px;
    }

    .mb-32{
        margin-bottom: 32px;
    }

    .mb-28{
        margin-bottom: 28px;
    }


    .mb-24{
        margin-bottom: 24px;
    }

    .mb-20{
        margin-bottom: 20px;
    }

    .mb-16{
        margin-bottom: 16px;
    }

    .mb-12{
        margin-bottom: 12px;
    }

    .mb-8{
        margin-bottom: 8px;
    }


/*---- margin-Bottom-SP ----*/   
@media screen and (max-width:767px) {

    .sp-mb-160{
        margin-bottom: 160px;
    }

    .sp-mb-120{
        margin-bottom: 120px;
    }

    .sp-mb-56{
        margin-bottom: 56px;
    }

    .sp-mb-56{
        margin-bottom: 56px;
    }

    .sp-mb-40{
        margin-bottom: 40px;
    }

    .sp-mb-32{
        margin-bottom: 32px;
    }

    .sp-mb-24{
        margin-bottom: 24px;
    }

    .sp-mb-20{
        margin-bottom: 20px;
    }

    .sp-mb-16{
        margin-bottom: 16px;
    }

    .sp-mb-12{
        margin-bottom: 12px;
    }

    .sp-mb-4{
        margin-bottom: 4px;
    }    

}



/*=======================================
    a:hover CSS
=======================================*/

    a {
        color: var(--deepBlack);
        text-decoration: none !important;
    }

    .disable-auto-tel a[href^="tel:"] {
        color: inherit !important;
        text-decoration: none;
        pointer-events: none;
    }

    a:any-link {
        color: var(--deepBlack);
    }
      

    a:hover {
        --bs-link-color-rgb: var(--deepBlack) !important;
    }

    a:visited {
        color: var(--deepBlack);
    }

    a:focus, a:hover{
        text-decoration: none !important;
        color: var(--deepBlack) !important;
        /* transition: .25s ease-in-out; */
    }

/*----- header-menu-list:focus / :hover -----*/

    .header-menu-list a:focus{
        color: var(--white) !important;
    }

    .menu-left a:before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      transition: width 0s ease, background .35s ease;
    }

    .menu-left a:after {
      content: '';
      display: block;
      position: absolute;
      right: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      background: #fff;
      transition: width .35s ease;
    }

    .menu-left a:hover:before {
      width: 100%;
      background: #fff;
      transition: width .35s ease;
    }

    .menu-left a:hover:after {
      width: 100%;
      background: transparent;
      transition: all 0s ease;
    }

    .menu-left .header-menu-list .header-menu-list-link:hover{
        color: var(--white) !important;
    }

/*----- dropdown-item:focus / :hover -----*/

    .dropdown-item:focus, .dropdown-item:hover {
        color: var(--bs-dropdown-link-hover-color);
        background-color: var(--white) !important; 
        transition: all .35s ease;
    }

    .d-link-box:hover > a{
        color: var(--Point-Blue) !important;
        background-color: unset !important;
        transition: all .35s ease;
    }

    .d-link-box:hover > svg path{
        fill: var(--Point-Blue) !important;
        transition: all .35s ease;
    }


/*----- footer:focus / :hover / :visited -----*/

    .f-menulist-title a:focus, 
    .f-menulist-title a:hover,
    .f-menulist-title a:visited {
        text-decoration: none !important;
        color: var(--white) !important;
        opacity: .85;
    }

    .f-menulist a:focus, 
    .f-menulist a:hover,
    .f-menulist a:visited {
        text-decoration: none !important;
        color: #b4b7c0 !important;
        opacity: .85;
    }


/*----- breadcrumb-list:focus / :hover -----*/

    .breadcrumb-list-box a:hover{
        /* color: var(--Point-Blue) !important; */
        opacity: .75;
        transition: all .35s ease;
    }




/*=======================================
    Header
=======================================*/

    header{
        width: calc(100%);
        top: 0px;
        position: absolute;
        /* background-color: var(--darkBlack); */
    }

    .header_container{
        display: flex;
        flex-direction: row;
        height: 56px;
        justify-content: space-between;
        align-items: center;
        padding: 0px;
    }

    .header-logo_box{
        display: block;
    }

    .header-menu-box{
        display: block;
    }

    .dropdown-menu{
        --bs-dropdown-item-padding-x: 0rem !important;
        --bs-dropdown-item-padding-y: 0rem !important;
    }

    .dropdown-menu.show {
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr;
        border-radius: 0px !important;
        /* padding: 0 4%; */
        margin: 16px 0 0 0 !important;
         position: relative !important;
        transform: translate(0px, 0px) !important;
    }
    
    .d-link-box:first-child{
        padding: 60px 0 8px 0 !important;
    }

    .d-link-box{
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 8px 0 !important;
    }

    .mr-line{
       border-right: none; 
    }

    .mt-line{
        border-top: 2px solid #EDF2FB !important; 
    }

    .dropdown-btn-box{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .dropdown-btn-box img{
        margin-left: 8px;
        transform: rotate(90deg);
        transition: all .35s ease;
    }

    .dropdown-btn-box.show img{
        margin-left: 8px;
        transform: rotate(-90deg);
        transition: all .35s ease;
    }
    
    .dropdown-toggle.show {
        transition: all .35s ease;
    }

    .header-menu-list-box{
        /* overflow-y: scroll; */
    }


    .header-menu-list-box li{
        text-align: center;
        padding-left: 0px;
    }

    .header-menu-list-box .header-menu-list:first-child{
        border-top: 2px solid #edf2fb;
        padding-left: 0px;
    }

    .header-menu-list-box .header-menu-list{
        width: 100%;
        text-align: center;
        padding-left: 0px;
        padding: 24px 0px;
        border-bottom: 2px solid #edf2fb;
    }


    .dropdown-menu{
        z-index: 9997;
        transform: translateZ(1px);
        /* position: relative !important;
        transform: translate(0px, 0px) !important; */
    }

    .d-link-box a{
        color: var(--middle-darkBlack) !important;
    }

    .dropdown-item a{
        margin-right: 18px;
    }

    .dropdown-item svg{
        position: relative;
        top: 1px;
    }

    .header-menu-list a{
        /* padding: 0 8px; */
        font-weight: 500;
        line-height: 32px;
        color: var(--white);
    }

    .menu-left a {
      display: inline-block;
      position: relative;
      padding-bottom: 0px;
      transition: color .35s ease;
    }

    header {
        z-index: 9999;
        transform: translateZ(1px);
        will-change: transform;
        transition: background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
        transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
        transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }


    ul.menu-left {
      display: none;
      max-height: 0;
      overflow: hidden;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
      z-index: 10;
    }

    ul.menu-left:before {
      content: '';
      display: table;
      clear: both;
    }

    ul.sp-menu-left{
        height: auto;
        max-height: 100% !important;
    }

    ul.sp-menu-left.collapse {
        overflow-y: scroll;
        z-index: 1000;
        width: 100%;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 56px;
        align-items: center;
        background: var(--white);
        padding: 40px 24px 680px;
        padding-left: 24px !important;
        box-shadow: 0px 0px 2px 2px rgba(51, 51, 51, 0.25);
    }

    .nav-toggle {
      display: block;
      background-color: var(--Point-darkBlue);
      height: 56px;
      width: 56px;
      cursor: pointer;
      padding: 20px 15px;
    }

    .nav-toggle.open span:first-child {
      transform: rotate(45deg) translate(6.2px, 6.2px);
    }

    .nav-toggle.open span:nth-child(2) {
      width: 0%;
      opacity: 0;
    }

    .nav-toggle.open span:last-child {
      transform: rotate(-45deg) translate(6.2px, -6.2px);
    }

    .nav-toggle span:first-child {
        margin-top: 0px;
    }

    .nav-toggle span {
      position: relative;
      display: block;
      height: 1px;
      width: 26px;
      margin-top: 8px;
      background-color: var(--white) !important;
      transition: all .25s;
    }


@media screen and (min-width:1000px) {

/*---- header-logo-responsive Start ----*/

    .p-logo-view{
        display: block;
    }

    .s-logo-view{
        display: none;
    }

/*---- header-logo-responsive End ----*/

    .header_container{
        height: 88px;
        padding: 0 4%;
    }

    ul.menu-left {
        display: flex;
        flex-direction: row;
        max-height: none;
        margin-bottom: 0px;
    }   

    .header-menu-list-box .header-menu-list:first-child{
        border-top: none;
        padding-left: 0px;
    }

    .header-menu-list-box .header-menu-list{
        width: auto;
        text-align: left;
        padding: 0px 0px 0px 48px;
        border-bottom: none;
    }

    .dropdown-menu.show {
        z-index: 9999;
        /* transform: translateZ(1px); */
        width: 92%;
        position: absolute !important;
        display: block;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        inset: 96px auto auto 0px !important;
        -webkit-inset: 96px auto auto 0px !important;
        transform: translate(0px, 0px) !important;
        -webkit-transform: translateZ(1px) !important;
        border-radius: 0px !important;
        padding: 16px;
        margin: 0 4% !important;
    }

    .nav-toggle {
        display: none;
    }
    
    .header-sp-only{
        display: none !important;
    }

    .mr-line{
        border-right: 2px solid #EDF2FB !important; 
    }

    .d-link-box:first-child{
        padding: 8px 0 8px 0 !important;
    }

}

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

/*---- header-logo-responsive Start ----*/

    .p-logo-view{
        display: none;
    }

    .s-logo-view{
        display: block;
        position: absolute;
        bottom: 8%;
        left: 2%;
    }
    
/*---- header-logo-responsive End ----*/

    .header-menu-list a:focus{
        color: var(--middle-darkBlack) !important;
    }

    .header-sp-only{
        display: none;
    }

    .header-menu-list a{
        /* padding: 0 8px; */
        font-weight: 500;
        line-height: 32px;
        color: var(--middle-darkBlack);
    }

    .dropdown-menu{
        border: none !important;
    }

}

/*---- Header-Sticky-CSS ----*/

.sticky{
    position: fixed;
    top: 0; 
    left: 0;
    z-index: 9999;
    background-color: none;
    transition: all .35s ease;
}

.sticky .s-logo-view{
    display: none;
}



@media screen and (min-width: 1000px) {

    .sticky{
        position: fixed;
        top: 0; 
        left: 0;
        z-index: 9999;
        background-color: var(--Point-darkBlue);
    }

}

/* .sticky .header-menu-list a{
    color: var(--darkBlack);
} */


/*=======================================
    footer
=======================================*/


    footer{
        width: calc(100%);
        background-color: var(--deepBlack);
        padding-top: 72px;
        padding-bottom: 76px;
    }

    .footer-above-container{
        width: calc(100%);
        display: grid;
        grid-template-columns: 1fr;
        justify-content: space-between;
        margin-bottom: 56px;
    }

    .f-logo-box{
        display: flex;
        justify-content: center;
        margin-bottom: 56px;
    }

    .f-menulist-container{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .f-menulist-box{
        font-size: 14px;
        padding-right: 80px;
    }

    .f-menulist-box:last-child{
        padding-right: 0px;
    }

    .f-menulist-title{
        margin-bottom: 24px;
    }

    .f-menulist-title a{
        color: var(--white);
    }

    .f-menulist{
        margin-bottom: 12px;
    }

    .f-menulist a{
        color: #b4b7c0;
    }

    .footer-below-container{
        width: calc(100%);
        display: grid;
        grid-template-columns: 1fr;
        justify-content: space-between;
        justify-items: center;
        align-items: end;
        /* font-definition */
        color: #b4b7c0;
    }
    
    .footer-info-box{
        margin-bottom: 56px;
        /* border-bottom: 2px solid var(--darkGray); */
    }

    .f-hr{
        display: block;
        width: 100%;
        border: 1px solid var(--darkGray);
        margin: 0;
        opacity: 1;
    }

    
    .footer-info-box p{
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 0px;
    }

    .footer-copyRight-box p{
        font-size: 13px;
        text-align: right;
        margin-top: 16px;
        margin-bottom: 0px;
    }


/*----- footer-sp-menulist -----*/

    .f-link-box.dropdown-item:focus, .f-link-box.dropdown-item:hover {
        color: var(--bs-dropdown-link-hover-color);
        background-color: unset !important;
        transition: all .35s ease;
    }

    .f-sp-menulist{
        text-align: center;
        padding: 24px 0px;
        border-top: 2px solid var(--darkGray);
    }

    .f-sp-menulist:last-child{
        border-bottom: 2px solid var(--darkGray);
    }

    .f-dropdown-btn-box {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .f-link-box:first-child{
        padding: 32px 0 8px 0 !important;
    }

    .f-link-box{
        display: flex !important;
        position: relative;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 8px 0 !important;
    }

    .f-link-box a{
        color: #b4b7c0 !important;
    }

    .f-link-box img{
        top: 1px;
        position: relative;
    }

    .dropdown-menu.show.fm-0{
        margin: 0px !important;
        padding: 0px !important;
    }

    .fm-0{
        margin: 0px !important;
    }

    .f-dropdown-btn-box a{
        color: var(--white) !important;
    }

    .f-dropdown-btn-box img{
        margin-left: 8px;
        transform: rotate(90deg);
        transition: all .35s ease;
    }

    .f-dropdown-btn-box.show img{
        margin-left: 8px;
        transform: rotate(-90deg);
        transition: all .35s ease;
    }

    .f-mt-line{
        border-top: 2px solid var(--darkGray) !important;
    }

    .f-bg{
        background-color: var(--deepBlack) !important;
    }
    


@media screen and (max-width: 1100px) and (min-width: 769px) {

/*---- footer-responsive Start ----*/
    .footer-above-container{
        grid-template-columns: 1fr !important;
    }

    .f-logo-box{
        margin-bottom: 48px;
    }
}

@media screen and (min-width: 768px) {

    footer{
        padding-bottom: 56px;
    }

/*---- footer-responsive Start ----*/
    .footer-above-container{
        grid-template-columns: 1fr 1fr;
        margin-bottom: 120px;
    }

    .f-logo-box{
        justify-content: flex-start;
    }

    .footer-below-container{
        grid-template-columns: 1fr 1fr;
        justify-content: space-between;
        justify-items: stretch;
        align-items: end;
    }

    .footer-info-box{
        margin-bottom: 0px;
    }

    .f-hr{
        display: none;
    }

    .footer-copyRight-box p{
        margin-top: 0px;
    }


}




/*------ topBtn ------*/

    .go-top {
        z-index: 4000;
        display: flex;
        width: 56px;
        height: 56px;
        right:0rem;
        bottom:0rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--Point-Blue);
        position:fixed;
    }

    .go-top img{
        /* transform: rotate(270deg); */
        width: 18px;
    }

    .go-top p{
        position: relative;
        top: 2px;
        color:var(--white);
        line-height: 14px;
    }



/*=======================================
    Slider-CSS
=======================================*/


    .service-slide_container{
        background-color: #F6FAFB;
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .service-slide_box{
        max-width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .swiper {
      width: 100%;
      max-width: 296px;
      height: 100%;
    }   
    
    .swiper-wrapper{
        z-index: 2;
    }

    .swiper-slide {      
        width: calc(100%);
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        box-shadow: 0px 4px 4px 0px rgba(186, 224, 243, 0.25);
    }   

    .slide-image-box{
        height: 120px;
        background-position: cover;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .slide-text-box{
        height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: var(--middle-darkBlack);
        padding: 0px 24px;
    }

    .slide-service-title{
        margin-bottom: 4px;
    }

    .slide-service-subtitle{
        margin-bottom: 0px;
    }

    .swiper-button-prev:after{
        position: absolute;
        right: 8px;
    }

    .swiper-button-next:after{
        position: absolute;
        left: 8px;
    }

    .swiper-button-prev:after{
        content: url(../../assets/images/slider/slider-circle-leftArrow_sp.svg) !important;
    }

    .swiper-button-next:after{
        content: url(../../assets/images/slider/slider-circle-rightArrow_sp.svg) !important;
    }

    .swiper-pagination {
        bottom: -29px !important;
    }

    .swiper-pagination-bullet-active{
        background: var(--Point-darkBlue) !important;
    }

/*---- Slider-images ----*/

    .s-slider-img1{
        background-image: url(../../assets/images/slider/slider-consulting.jpg);
    }

    .s-slider-img2{
        background-image: url(../../assets/images/slider/slider-adverting.jpg);
    }

    .s-slider-img3{
        background-image: url(../../assets/images/slider/slider-webProduction.jpg);
    }

    .s-slider-img4{
        background-image: url(../../assets/images/slider/slider-videoProduction.jpg);
    }

    .s-slider-img5{
        background-image: url(../../assets/images/slider/slider-restaurantBusiness.jpg);
    }

    .s-slider-img6{
        background-image: url(../../assets/images/slider/slider-estheticSalon.jpg);
    }    


 
@media screen and (max-width: 1040px) and (min-width: 768px) {



}
    

@media screen and (min-width: 1100px) {


    .service-slide_box{
        max-width: 916px;
    }

    .swiper {
        max-width: 100%;
    } 

    .swiper-button-prev:after{
        position: absolute;
        right: 56px;
    }

    .swiper-button-next:after{
        position: absolute;
        left: 56px;
    }

    .swiper-button-prev:after{
        content: url(../../assets/images/slider/slider-circle-leftArrow.svg) !important;
    }

    .swiper-button-next:after{
        content: url(../../assets/images/slider/slider-circle-rightArrow.svg) !important;
    }

}




@media screen and (min-width: 768px) {


}

.f-logo-box img {
	width: 250px;
}
