@charset "UTF-8";

/*-------------------------------------*/
/*　　レイアウト　　　　　　　　　　　 */
/*-------------------------------------*/
.w_style01{
    width: 88%!important;
    margin: 0 auto;
    max-width: calc(1920px - 12%)!important;
}
.w_style02{
    width: 85%!important;
    margin: 0 auto;
    max-width: 1300px!important;
}


/*-------------------------------------*/
/*　　ループ　　　　　　　　　　　　　 */
/*-------------------------------------*/
.loop_box {
    position: relative;
}
.loop_box > div {
    display: flex;
}
.loop_box .garally_normal {
    display: flex;
    gap: 26px;
    margin-right: 26px;
}
.loop_box .garally_normal .item {
    aspect-ratio: 8/5;
    width: clamp(200px, 26vw, 360px);
}
.loop_box .garally_normal .item img {
    height: 100%;
    object-fit: cover;
}

.loop_box .gallery01 {
    -webkit-animation: loop1 100s -50s linear infinite;
    animation: loop1 100s -50s linear infinite;
}
.loop_box .gallery02 {
    -webkit-animation: loop2 100s linear infinite;
    animation: loop2 100s linear infinite;
}
@keyframes loop1 {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}


/*-------------------------------------*/
/*　　header　　　　　　　　　　　　　 */
/*-------------------------------------*/
@media (min-width: 1202px) {
    .h_sp {
        display: none!important;
    }
}
header .fixed_block {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 99;
    width: 100%;
    padding: 15px 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    transition: .2s;
    pointer-events: auto;
    /*max-width: calc(2560px -(16px* 2));*/
    background-color: #ffffff00;
}
body:not(.page-index-html) header .fixed_block{
    background-color:#fff;
    padding: 10px 32px;
}
header .fixed_block::before,header .fixed_block::after {
    display: none;
}
header .fixed_block.aaa {
    top:-20px;
    opacity:0;
    pointer-events:none;
}
/*　ロゴ　*/
header .logo_box {
    width: 206px;
}
header .logo_box > div{
    display: flex;
    align-items: center;
}
/*　PCヘッダーメニュー　*/
header .nav_box {
    width: calc(100% - 320px);
    display: flex;
    justify-content: flex-end;
}
header .fixed_block .nav_box > div {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header .nav_box .navbar-nav {
    display: flex;
    margin-right: 0;
    gap: 8px;
    justify-content: center;
}
header .navbar-nav > li > a {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .navbar-nav > li > a .caret::after {
    display: inline-flex;
    width: 18px;
    height: 18px;
    font-size: clamp(16px, 1.5vw, 18px);
    color: #0075BA;
    content: "\f107";
    font-family: fontawesome;
    margin-left: 5px;
}
.caret {
    display: flex;
    align-items: center;
    margin-left: unset;
    vertical-align: unset;
    border-top: unset;
    border-right: unset;
    border-left: unset;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    border: none;
    border-radius: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}
.dropdown-menu > li > a {
    color: var(--default-font-color)!important;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    background-color: unset;
}
/*　PCヘッダーボタン　*/
header .h_btnbox {
    display: flex;
}
header .h_btnbox .link-text a {
    padding: 22px 36px;
    font-size: clamp(16px, 1.5vw, 18px);
    color: #fff;
    white-space: nowrap;
}
header .h_btnbox .I_descriptions a {
    background-color: #28A838;
    color: #fff;
    border-radius: 5px 0 0 5px;
}
header .h_btnbox .I_entry a {
    background-color: #F06900;
    color: #fff;
    border-radius: 0 5px 5px 0;
}
/*　SPヘッダーメニュー　*/
.ham_box {
    width: 100%;
    height: 0;
    opacity: 0;
    pointer-events: none;
}
.ham_box .navbar-nav {
    margin-right: 0;
    margin-top: 24px;
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
}
.ham_box .navbar-nav::before,.ham_box .navbar-nav::after {
    display: none;
}
.is_open .ham_box {
    height: auto;
    opacity: 1;
    pointer-events: auto;
}
.ham_box .block_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ham_box .block_box .flex_box {
    order: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}
/*　ハンバーガーicon　*/
.ham_icon {
    height: 50px;
}
.ham_icon button {
    width: 50px;
    height: 50px;
    background: #fff;
    position: relative;
    cursor: pointer;
    border: none;
}
.ham_icon button span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--base-color);
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    transition: .4s;
}
.ham_icon button span:nth-child(1) {
    top: 18px;
}
.ham_icon button span:nth-child(2) {
    top: auto;
    bottom: 18px;
}
.is_open .ham_icon button  span:nth-child(1) {
    transform: translateY(6px) rotate(-135deg);
    top: 18px;
}
.is_open .ham_icon button  span:nth-child(2) {
    transform: translateY(-6px) rotate(135deg);
    bottom: 18px;
}
@media (max-width: 1201px) {
    .h_pc {
        display: none!important;
    }
    /*　header　*/
    header .h_btnbox{
        width: 100vw;
        position: fixed;
        bottom: 0;
        left: 0;
    }
    header .h_btnbox > p{
        width:50%;
    }
    header .h_btnbox > p a{
        width: 100%;
        text-align: center;
    }
    header .fixed_block {
        top: 0px;
        width: 100%;
        max-width: 100%;
    }
    header .fixed_block::before{
        content: '';
         position: absolute;
         filter: blur(8px);
    }
    body:not(.page-index-html) header .fixed_block {
        padding: 0px 32px;
    }
    header .h_sp .h_sp_bg{
        display: flex;
        justify-content: space-between;
        padding: 20px 30px;
        top: 8px;
        width: 100%;
    }
    .page-index-html header .h_sp .h_sp_bg {
        background-color: #ffffff00;
    }
    header .nav_box {
        align-items: flex-start;
    }
    header .hum_box {
        position: absolute;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        pointer-events: none;
    }
    header.is_open .hum_box {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        display: block;
        top: 0;
        left: 0;
        z-index: -1;
        background: #fff;
        width: 100%;
        padding: 100px 8% 80px;
        overflow: scroll;
        height: 100vh;
        height: 100dvh;/*iOS15.4より前のSafariでは機能しない*/
    }
    header.is_open .ham_box_img {
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        opacity: 0.4;
    }
    header.is_open .h_sp .h_sp_bg{
        background-color: #fff;
    }
    header .ham_box .navbar-nav {
        display: flex;
        gap: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    header .navbar-nav > li > a{
        font-size: 18px;
        padding: 0px;
        padding-right: 15px;
        border-bottom: 1px solid #d5e2e8;
        padding-bottom: 10px;
        text-align: left;
        justify-content: left;
        position:relative;
        letter-spacing: 0.1em;
    }
    header .navbar-nav > li, header .navbar-nav > li a{
        width: 100%;
        font-weight: 500;
    }
    header .navbar-nav .dropdown-menu a{
        padding: 8px 0px;
        font-size: 15px;
        font-weight:400;
    }
    header .navbar-nav > li > a .caret::after {
        transform: rotate(-90deg);
        position: absolute;
        right: 0;
    }
    header .dropdown-menu{
        display:block;
        background-color: unset;
        position:relative;
        width: 100%;
        margin-left: 20px;
    }
    header .h_btnbox .link-text a {
        padding: 20px 10px;
        border-radius: 0px;
        font-size: 17px;
        letter-spacing: 0.15em;
    }
    header .h_btnbox .I_entry a {
        background-color: rgb(241 105 0 / 0.95);
    }
    header .h_btnbox .I_descriptions a {
        background-color: rgb(39 168 56 / 0.95);
    }
}
@media (max-width: 1080px) {
    header .logo_box {
        width: 240px;
    }

    header .nav_box {
        width: calc(100% - 260px);
    }
}
@media (max-width: 991px) {
    header .fixed_block .nav_box > div {
        justify-content: flex-end;
    }
    header .logo_box {
        width: 220px;
    }
}
@media (max-width: 690px) {
    /*　header　*/
    header .h_sp .h_sp_bg {
        padding: 20px;
    }
    .ham_box .block_box {
        flex-wrap: wrap;
    }
    .ham_box .block_box .flex_box {
        margin: 0 0 20px auto;
    }
    .ham_box .navbar-nav {
        margin-top: 18px;
        display: block;
    }
    header .fixed_block {
        padding: 0px;
        top: 0px;
        width: 100vw;
        max-width: 100%;
    }
    body:not(.page-index-html) header .fixed_block{
        padding: 0px;
    }
}
@media (max-width: 430px) {
    header .logo_box {
        width: 200px;
    }
}


/*-------------------------------------*/
/*　　footer　　　　　　　　　　　　　 */
/*-------------------------------------*/
.f_inner {
    background-color: #EAF9FF;
    padding: 60px 0;
}
.f_inner .f_img img {
    max-width: 420px;
    width: 100%;
    margin: auto;
}
footer .pagetop{
    display:none;
}
/*　footerボタン　*/
.f_inner .f_btnbox {
    margin-top: 30px;
}
/*　footerメニュー　*/
.f_nav {
    padding: 39px 0  48px;
}
.f_nav .navbar-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}
.f_inner .f_nav .dropdown {
    margin-right: 5%;
}
.f_inner .f_nav .dropdown:last-child {
    margin-right: 0px;
}
.f_inner .f_nav .dropdown-menu {
    display: block;
    background-color: unset;
    position: static;
}
.f_inner .f_nav .dropdown-toggle  {
    font-size: clamp(15px, 3vw, 18px);
    font-weight: 600;
}
.f_inner .f_nav .dropdown-toggle::before {
    display: none;
}
.f_inner .f_nav .dropdown-menu > li > a {
    padding: 11px 8px 11px 0;
    font-size: 16px;
    width: 100%;
}
/*　copyright　*/
.copyright {
    font-size: 12px;
    text-align: center;
}
@media (max-width: 1201px){
    .f_inner .f_nav .dropdown {
        margin-right: 0;
    }
    footer .f_inner .f_nav ul.navbar-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px 40px;
        width: 430px;
        margin: 0 auto;
    }
    footer .f_inner .f_nav ul.navbar-nav::before{
        display:none;
    }
    .f_inner .f_nav .dropdown-toggle{
        border-bottom: 1px solid #bfd4dc;
        width: 100%;
        padding-bottom: 10px;
    }
    /*フッター追従ボタン*/
    .h_btnbox .btn_style01 a{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .h_btnbox .btn_style01 a::before {
        display: inline-flex;
        width: 18px;
        height: 18px;
        font-size: 16px;
        color: #fff;
        border: 1px solid #fff;
        content: "\f105";
        font-family: fontawesome;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        padding-left: 4px;
        margin-right: 8px;
        margin-top: 3px;
    }
}
@media screen and (max-width: 768px) {
    footer .f_inner {
        padding: 40px 0 90px;
    }
    footer .f_inner .f_img img {
        max-width: 350px;
    }
    footer .f_inner .f_nav {
        padding: 50px 0 20px;
    }
    footer .f_inner .f_nav ul.navbar-nav > li {
        margin-right: 0;
    }
    footer .f_inner .f_nav ul.navbar-nav > li > a {
        margin: 0px;
    }
    footer .f_inner .f_nav ul.dropdown-menu > li > a {
        padding: 7px 0px 7px 0;
        font-size: 14px;
    }
    footer .pagetop{
        display: block;
        position: absolute;
        right: 20px;
        bottom: 100px;
        z-index:1;
    }
    footer .pagetop a{
        padding: 14px;
        width: 50px;
        height: 50px;
        background-color: #05a6d9;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    footer .copyright {
        opacity: 0.5;
    } 
}
@media screen and (max-width: 500px) {
    footer .f_inner .f_nav ul.navbar-nav{
        width: 100%;
        grid-gap: 20px;
    }
    footer .f_inner .f_nav .dropdown-toggle {
        border-bottom: 1px solid #bfd4dc;
        width: 100%;
        padding-bottom: 10px;
    }
    footer .f_inner .f_btnbox {
        display: block;
    }
    footer .f_inner .f_btnbox .link-text a {
        margin-top:15px;
        width: 100%;
    } 
    footer .btn_style02 a::before {
        font-size: 13px;
        padding-left: 2px;
        margin-right: 3px;
        display:none;
    }
    footer .f_inner .f_nav .dropdown-menu {
        min-width: unset;
    }
    footer .f_inner .f_img img {
        max-width: 300px;
    }
    footer .f_inner .f_nav ul.dropdown-menu > li > a {
        padding: 8px 0px 8px 0;
        letter-spacing:0;
    }
}


/*-------------------------------------*/
/*　　トップページ　　　　　　　　　　 */
/*-------------------------------------*/
/*---- top_fsv ----*/
.top_fsv {
    background-color: #EAF9FF;
    padding-top: 134px;
}
.top_fsv .fsv_tit {
    width: 100%!important;
    max-width: clamp(540px, 70vw, 745px) !important;
    margin: auto;
    padding: 0 15px;
    margin: auto;
}

/*---- top_message_1 ----*/
.top_message_1 {
    display: flex;
    padding: 8% 0 40px;
}
.top_message_1 .btn_box {
    justify-content: flex-start;
}
.top_message_1 .img_box {
    margin-top: -27%;
    margin-right: -4%;
}
.top_message_1 .txt_box .pg_text {
    font-weight: 600;
    line-height: 2.5em;
    font-size: clamp(16px, 1.4vw, 21px);
    padding: 3% 0 7%;
}

/*---- top_message_2 ----*/
.top_message_2 {
    padding: 60px 0 100px;
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr;
    gap: 0px 80px;
}
.top_message_2 > div{
    width:100%;
}
.top_message_2 .txt_box h3 {
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.5em;
    font-weight: 600;
}
.top_message_2 .txt_box h3 span {
    color: var(--base-color);
    font-weight: 700;
}
.top_message_2 .txt_box .pg_text {
    padding: 3% 0 8%;
    font-weight: 600;
    line-height: 2em;
}

/*---- top_work ----*/
.top_work {
    padding-bottom: 77px;
}
.top_work .tit_box {
    text-align: center;
}
.top_work .tit_box .pg_text {
    display: inline-block;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 500;
    color: #fff;
    background-color: var(--base-color);
    padding: .5em 6%;
    letter-spacing: .1em;
    box-shadow: 0px 8px 0px 0px #FFE3CD;
    border-radius: 40px;
}
.top_work .tit_box h2 {
    margin-top: 30px;
}
.top_work .work_item {
    display: flex;
    gap: 45px;
    padding: 41px 0;
}
.top_work .work_item h3 {
    font-size: clamp(18px, 2.8vw, 30px);
    font-weight: 600;
    text-align: center;
    margin: 24px 0 10px;
}
.top_work .work_item h3 span {
    display: inline-block;
    font-size: clamp(14px, 2vw, 20px);
    padding-bottom: 7px;
}
.top_work .work_item .electrical h3 span,
.top_work .work_item .electrical .btn_style03 a::after {
    color: #F5A200;
}
.top_work .work_item .facilities h3 span,
.top_work .work_item .facilities .btn_style03 a::after{
    color: #00A6D9;
}
.top_work .work_item .energy h3 span,
.top_work .work_item .energy .btn_style03 a::after{
    color: #28A838;
}
.top_work .work_item .pg_text {
    margin: 0 2%;
}

/*---- top_about ----*/
.top_about_bg {
    background-color: #FFF5EE;
}
.top_about {
    padding-bottom: 48px;
}
.top_about h2 {
    text-align: center;
}
.top_about h2 .en {
    margin-bottom: 13px;
}
.top_about h2 .ye {
    background-color: #F5A200;
    color: #fff;
    padding: 0 8px;
    margin: 0 2px;
}
.top_about h2 .gr {
    background-color: #28A838;
    color: #fff;
    padding: 0 8px;
    margin: 0 2px;
}
.top_about h2 .bl {
    background-color: #00A6D9;
    color: #fff;
    padding: 0 8px;
    margin: 0 2px;
}
.top_about .graph {
    margin: auto;
}
/*data*/
.data {
    display: flex;
    gap: 32px;
    margin-top: 44px;
}
.data .item {
    background-color: #fff;
    box-shadow: #0000001F 0 0 9px;
    border-radius: 20px;
    text-align: center;
    padding: 33px 20px;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.data .item h4,
.data .item p {
    font-weight: 600;
    font-size: clamp(17px, 2vw, 24px);
}
.data .item h4 {
    margin-bottom: 11px;
    font-size: clamp(18px, 2vw, 25px);
    line-height: 1.5em;
}
.data .item p span {
    display: inline-block;
    font-size: clamp(28px, 4.5vw, 70px);
    font-family: var(--fontfamily02);
    color: var(--base-color);
    margin-top: 11px;
    line-height: 1em;
    padding: 0 3px;
    vertical-align: -2px;
}
.kome p {
    font-size: 11px;
    text-align: right;
    margin-top: 17px;
}

/*---- top_project ----*/
.top_project_bg {
    position: relative;
}
.top_project_bg .svg_top {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: calc(100% + 1.3px);
    height: 50%;
    transform: rotateX(180deg);
    z-index: 0;
}
.top_project_bg .svg_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: calc(100% + 1.3px);
    height: 50%;
    transform: rotateY(180deg);
    z-index: 0;
}
.top_project_bg .shape-fill {
    fill: #FEFAD9;
}
.top_project {
    padding: 52px 0 140px;
    position: relative;
    z-index: 1;
}
.top_project h2 {
    text-align: right;
}
.top_project .garally-fadein .fade_item {
    display: flex;
    align-items: center;
    width: 100%;
}
.top_project .garally-fadein .txt_box,
.top_project .garally-fadein .img_box,
.top_project .garally-fadein div h3,
.top_project .garally-fadein div p,
.top_project .garally-fadein div .btn_box {
    position: static;
    opacity: 1;
}
.top_project .garally-fadein .img_box {
    width: 60%;
    max-width: 680px;
}
.top_project .garally-fadein .txt_box {
    width: 40%;
}
.top_project .garally-fadein .txt_box > img {
    max-width: clamp(30px, 20vw, 350px);
    margin-left: -30%;
}
.top_project .garally-fadein .txt_box h3 {
    margin-left: -25%;
    margin-top: -7%;
}
.top_project .garally-fadein .txt_box h3 span {
    color: #0075BA;
    background-color: #fff;
    display: block;
    margin-bottom: 12px;
    padding: 18px 10px;
    white-space: nowrap;
    width: fit-content;
    font-size: clamp(23px, 3vw, 47px);
    box-shadow: #0000001F 0 0 9px;
}
.top_project .garally-fadein .txt_box p {
    margin: 2em 0;
}
.top_project .garally-fadein .btn_box {
    display: flex;
    justify-content: flex-end;
}
.top_project .garally-fadein .btn_box a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    width: 125px;
    height: 125px;
    background-color: #0075BA;
    border-radius: 50%;
    font-size: 15px;
    color: #fff;
    gap: 2px;
    box-shadow: #0000001F 0 0 9px;
}
.top_project .garally-fadein .btn_box a::before {
    margin-right: 0;
    width: 19px;
    height: 19px;
    font-size: 19px;
    padding-bottom: 2px;
    background-color: #F0F72B;
    color: #0075BA;
}

/*---- top_interview ----*/
.top_interview h2 {
    text-align: center;
}
.top_interview .btn_style02 {
    text-align: right;
}
.top_interview .btn_style02 a {
    width: 270px;
    border-radius: 40px;
    font-size: 16px;
    border: 1px solid #CBCBCB;
    padding: .8em;
    text-align: center;
}
.top_interview .btn_style02.sp{
    display:none;
} 
/*インタビューカルーセル*/
.top_interview .slick-slide .garraly_slick_caption {
    margin-top: -45%;
    display: flex;
    align-items: flex-start;
    height: 300px;
    justify-content: flex-start;
    gap: 2.2em;
}
.top_interview .slick-slide .garraly_slick_caption h4 {
    writing-mode: vertical-rl;
    margin-left: 2em;
}
.top_interview .slick-slide .garraly_slick_caption h4 span {
    color: #fff;
    display: inline-block;
    margin-bottom: 12px;
    padding: 18px 10px;
    white-space: nowrap;
    width: fit-content;
    font-size: clamp(17px, 3vw, 24px);
}
.top_interview .slick-slide .garraly_slick_caption h4 span + span {
    margin-right: 10px;
}
.top_interview .slick-slide .gijyutu + .garraly_slick_caption h4 span,
.top_interview .slick-slide .gijyutu + .garraly_slick_caption .tantou {
    background-color: #00A6D9;
}
.top_interview .slick-slide .sagyou + .garraly_slick_caption h4 span,
.top_interview .slick-slide .sagyou + .garraly_slick_caption .tantou {
    background-color: #F5A200;
}
.top_interview .slick-slide .eigyou-kikaku + .garraly_slick_caption h4 span,
.top_interview .slick-slide .eigyou-kikaku + .garraly_slick_caption .tantou {
    background-color: #28A838;
}
.top_interview .slick-slide .sougo + .garraly_slick_caption h4 span,
.top_interview .slick-slide .sougo + .garraly_slick_caption .tantou {
    background-color: #16af9b;
}

.top_interview .slick-slide .garraly_slick_caption p {
    display: flex;
    flex-direction: column;
    margin-top: 50%;
}
.top_interview .slick-slide .garraly_slick_caption p span {
    display: inline-block;
    width: fit-content;
}
.top_interview .slick-slide .gijyutu + .garraly_slick_caption p {
    color: #00A6D9;
}
.top_interview .slick-slide .sagyou + .garraly_slick_caption p {
    color: #F5A200;
}
.top_interview .slick-slide .eigyou-kikaku + .garraly_slick_caption p {
    color: #28A838;
}
.top_interview .slick-slide .sougo + .garraly_slick_caption p {
    color: #16af9b;
}
.top_interview .slick-slide .garraly_slick_caption p .tantou {
    padding: .1em 1.2em;
    border-radius: 30px;
    color: #fff;
}
.top_interview .slick-slide .garraly_slick_caption p .name {
    font-size: clamp(16px, 3vw, 21px);
    margin-left: .5em;
    margin-top: .2em;
    font-weight: 600;
}
.top_interview .slick-slide .garraly_slick_caption p .year {
    margin-left: .5em;
}

/*---- top_company ----*/
.top_company {
    text-align: center;
    padding: 42px 0 116px;
}
.top_company h3 {
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.5em;
    font-weight: 600;
    margin: 0 0 17px;
}
.top_company h3 span {
    color: var(--base-color);
}
.top_company .pg_text p {
    font-weight: 600;
}
.top_company .btn_box {
    margin: 53px 0 77px;
}

/*-------------------------------------*/
/*　　1201px以下　　　　　　　　　　　 */
/*-------------------------------------*/
@media (max-width: 1201px){
    /*---- top_message_2 ----*/
    .top_message_2 {
        gap: 40px;
        align-items: start;
    }
    /*---- top_project ----*/
    .top_project {
        padding: 0px 0 50px;
    }
    .top_project h2 {
        text-align: center;
        margin-bottom: 10px;
    }
    .top_project .garally-fadein div p {
        padding: 0 0px;
    }   
    /*---- data ----*/
    .data {
        display: grid;
        gap: 10px;
        grid-template-columns: 1fr 1fr;
    }
    .data .item p span {
        margin-top: 0px;
    }
}

/*-------------------------------------*/
/*　　991px以下　　　　　　　　　　 　 */
/*-------------------------------------*/
@media screen and (max-width: 991px) {
    /*---- top_message_2 ----*/
    .top_message_2 {
        padding: 60px 0 100px;
        display: block;
    }
    .top_message_2 img{
        display: none;
    }
}

/*-------------------------------------*/
/*　　　768px以下　　　　　　　　　　　*/
/*-------------------------------------*/
@media screen and (max-width: 768px) {
    /*---- top_fsv ----*/
    .top_fsv {
        padding-top: 200px;
    }
    .top_fsv .fsv_tit {
        width: 85%;
        max-width: 530px;
        margin-bottom: 40px;
    }
    /*---- top_message_1 ----*/
    .top_message_1 {
        display: flex;
        flex-direction: column;
        padding-top: 40px;
    }
    .top_message_1 p{
        font-weight: 500;
        line-height: 2em;
    }
    .top_message_1 .img_box {
        margin-top: 0;
        margin-right: 0;
    }
    .top_message_1 .btn_box {
        flex-direction: column;
    }
    .top_message_1 .img_box{
        position: absolute;
        bottom: -100px;
        right: -20px;
        max-width: 290px;
        width: 50%;
    }
    /*---- top_message_2 ----*/
    .top_message_2 p{
        font-weight: 500;
        line-height: 2em;
    }
    /*---- top_work ----*/
    .top_work {
        padding-bottom: 0px;
    }
    .top_work p{
        line-height: 1.6em;
    }
    .top_work .work_item {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 0;
    }
    .top_work .work_item h3 {
        font-size: 20px;
        font-weight: 700;
        margin: 15px 0 10px;
    }
    .top_work .work_item img{
        max-width:360px;
    }
    .top_work .work_item .block_box{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5%;
    }
    .top_work .work_item > div{
        border-radius: 20px;
    }
    .top_work .work_item > div:nth-child(1) {
        background-color: #fff6e6;
    }
    .top_work .work_item > div:nth-child(2) {
        background-color: #e9f7fc;
    }
    .top_work .work_item > div:nth-child(3) {
        background-color: #e9f9eb;
    }
    /*---- top_project ----*/
    .top_project {
        padding: 45px 0 50px;
    }
    .top_project .garally-fadein .fade_item {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .top_project .garally-fadein .txt_box > img{
        position: absolute;
        top: 0;
        margin: 0;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }
    .top_project .garally-fadein .img_box {
        width: 100%;
        max-width: 460px;
        padding-top: 8%;
        padding-right: 25px;
    }
    .top_project .garally-fadein .txt_box {
        width: 100%;
        margin-top: -75px;
    }
    .top_project .garally-fadein .txt_box h3 {
        margin-left: 0%;
        margin-top: 0%;
    }
    .top_project .garally-fadein .txt_box h3 span {
        margin-bottom: 8px;
        padding: 10px 10px;
    }
    .top_project .garally-fadein .txt_box p {
        margin: 15px 0;
        line-height: 1.6em;
    }
    .top_project .garally-fadein .btn_box {
        justify-content: center;
    }
    .top_project .garally-fadein .btn_box a {
        width: 110px;
        height: 110px;
    }
    /*---- top_interview ----*/
    .top_interview .btn_style02{
        display:none;
        text-align: center;
        margin-bottom: 50px;
    }
    .top_interview .btn_style02.sp{
        display:block;
    } 
    .top_interview .garally_slick{
        margin-top:10px;
    }
    .top_interview .slick-slide .garraly_slick_caption h4 {
        margin-left: 1em;
    }
    /*---- top_about ----*/
    .top_about h2 {
        font-size: clamp(23px, 4vw, 28px);
        line-height: 1.6em;
    }
    .top_about .graph{
        width:100%!important;
        margin-top: 20px;
    }
    .data .item p span {
        line-height: 0.75;
        font-size: clamp(30px, 8vw, 32px);
        letter-spacing: 0em;
    }
    .data .item {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        padding: 10px;
        height: 120px;
    }
    /*---- top_company ----*/
    .top_company .btn_box {
        margin: 40px 0 90px;
    }
    .top_company {
        padding: 42px 0 50px;
    }
}

/*-------------------------------------*/
/*　　500px以下　　　　　　　　　　　 */
/*-------------------------------------*/
@media screen and (max-width: 500px) {
    /*---- top_fsv ----*/
    .top_fsv .fsv_tit {
        margin-bottom: 60px;
    }
    /*---- top_message_1 ----*/
    .top_message_1{
        padding-bottom: 300px;
    }
    .top_message_1 .txt_box .pg_text {
        padding: 15px 0 30px;
    }
    .top_message_1 .ttl_style02 span.en{
        font-size: clamp(30px, 10vw, 40px);
    }
    .top_message_1 .img_box {
        position: absolute;
        bottom: -115px;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
    /*---- top_message_2 ----*/
    .top_message_2 {
        padding: 80px 0 80px;
    }
    .top_message_2 .txt_box h3 {
        font-size: clamp(24px, 7vw, 27px);
        line-height: 1.4em;
        margin-bottom: 15px;
    }
    .top_message_2 .txt_box h3 span {
        font-size: clamp(19px, 6vw, 30px);
        letter-spacing: 0;
    }
    /*---- top_work ----*/
    .top_work .tit_box h2 {
        margin-top: 18px;
    }
    /*---- top_company ----*/
    .top_company h3 {
        font-size: clamp(22px, 6vw, 30px);
        text-align: left;
    }
    .top_company .btn_box {
        margin: 30px 0 60px;
    }
    .top_company .pg_text p {
        text-align: left;
        font-weight: 500;
        line-height: 2em;
    }
    /*---- top_about ----*/
    .top_about h2 {
        font-size: clamp(20px, 6vw, 24px);
        font-weight: 600;
    }
    .top_about h2 .en {
        padding-top: 25px;
    }
    .data .item h4 {
        margin-bottom: 10px;
        font-size: clamp(14px, 4vw, 18px);
        line-height: 1.3em;
    }
    /*---- top_interview ----*/
    .top_interview{
        margin-bottom: 70px;
    }
    .top_interview .slick-slide .garraly_slick_caption{
        height:250px;
    }
    .top_interview .slick-slider{
        margin-bottom:20px;
    }
}


