@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html {
    scroll-padding-top: 83px;
}

:root {
    --base-font: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --base-color: #2C2C2C;
    --color-theme: #FAB223;

    --font-roboto: "Roboto", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
    font-family: var(--base-font);
    line-height: 1.8;
    color: var(--base-color);
}
h1, h2, h3, h4, h5, h6, p,
.h1, .h2, .h3, .h4, .h5, .h6, .p{
    font-family: var(--base-font);
}
a{
    transition: .2s;
    cursor: pointer;
}

/* HEADER */
.navbar-brand img{
    width: 200px;
}
.navbar-brand span{
    font-size: 16px;
    text-align: center;
    display: block;
    color: #fff;
}
.main-menu ul li a{
    font-family: var(--base-font);
}
header.main-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 40px 0 0;
    margin: 0;
    transition: .2s;
}
.btn-default{
    border: 1px solid var(--accent-color);
}
.navbar{
    transition: .2s;
}
.hero.bg-section{
    margin-top: 40px;
}
body.modal-open header.main-header,
header.main-header.over{
    padding: 0;
    background-color: #fff;
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, .06);
}
body.modal-open header.main-header .navbar,
header.main-header.over .navbar{
    padding: 10px 20px;
}
body.modal-open header.main-header .navbar .main-menu ul li a,
header.main-header.over .main-menu ul li a{
    color: var(--base-color);
}
body.modal-open header.main-header .navbar-brand span,
header.main-header.over .navbar-brand span{
    color: var(--base-color);
}


/* FOOTER */
.main-footer{
    padding: 60px 0 20px;
    background-color: #fff;
}
/* .footer-flex{
    justify-content: space-between;
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
} */
.footer-flex__info{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.footer-flex__info-address{
    font-size: 14px;
    margin: 0;
}
.footer-flex__info-address a{
    display: inline-block;
    color: #7D568A;
    font-weight: 500;
    font-size: 15px;
    text-decoration: underline;
}
@media screen and (min-width: 992px) {
    .footer-flex__info-address a:hover{
        opacity: 0.6;
    }
}
.footer-flex__link{
    text-align: center;
    margin-top: 20px;
}
.footer-flex__link p{
    margin: 0;
}
.footer-flex__link-text a{
    display: inline-block;
    color: #7D568A;
    font-weight: 500;
    text-decoration: underline;
}
.footer-flex__link-copy{
    font-size: 13px;
}



/* INDEX */
.anchor-padding{
    padding-top: 100px;
}
.hero-slider-layout .hero-slide{
    padding: 0;
}
.hero-slider-layout .hero-slide .hero-content{
    height: calc(100svh - 80px);
    max-width: 100% !important;
}
.hero-slider__title{
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 3;
    color: #fff;
    font-size: 3.4vw;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1.4;
}
.about-us__text{
    text-align: center;
    font-weight: 500;
    font-size: 20px;
}
.section-subtitle h3{
    text-align: center;
}
.section-subtitle h3 > div > div{
    padding-bottom: 10px;
}
.section-subtitle h3 > div > div::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background-color: var(--color-theme);
}
.our-service__grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px 35px;
}
.our-service__grid-item{
    background-color: #fff;
    border-radius: 40px;
    padding: 40px 35px;
    border: 1px solid var(--divider-color);
}
.our-service__grid-item__num{
    font-size: 34px;
    color: var(--color-theme);
    font-family: var(--font-roboto);
    font-weight: 900;
    margin-bottom: 30px;
}
.our-service__grid-item__title{
    margin-bottom: 10px;
    font-size: 1.3rem;
}
.our-service .blog-item{
    background-color: #fff;
}
.our-service .blog-item .post-item-body{
    margin-bottom: 5px;
}
.our-service .blog-item a{
    display: block;
}
.our-service .blog-item h4{
    transition: .2s;
}
@media screen and (min-width: 992px) {
    .our-service .blog-item a:hover h4{
        color: var(--color-theme);
    }
}
.our-service .blog-item .readmore-btn{
    display: inline;
}
.section-title h3{
    text-transform: initial;
}
.quote-section__text a{
    color: var(--base-color);
    display: inline-block;
    text-decoration: underline;
}
.section-title h2{
    font-size: 38px;
    letter-spacing: 0.05em;
}
.works-section__text{
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    padding: 0 2vw 2vw;
    color: #fff;
    z-index: 3;
    font-weight: bold;
    text-align: left;
    font-size: 1.2vw;
    transition: .2s;
}
.works-section .project-item a{
    position: relative;
    display: block;
}
.works-section .project-item a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0) 13.02%, rgba(0, 0, 0, 0.51) 42.5%, rgba(0, 0, 0, 0.63) 70%, #000000 100%);
    border-radius: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}
@media screen and (min-width: 992px) {
    .works-section .project-item a:hover .works-section__text{
        color: var(--color-theme);
    }
    .works-section .project-item a:hover img{
        transform: scale(1.1);
    }
}
.works-section{
    background: #13213B;
}
.works-section .section-title h2{
    color: #fff;
}
.works-slider .swiper-pagination{
	position: relative;
	text-align: center;
	bottom: 0px;
	margin-top: 0;
}

.works-slider .swiper-pagination .swiper-pagination-bullet{
	height: 12px;
	width: 12px;
	border-radius: 50%;
	background-color: var(--accent-color);
	opacity: 1;
	margin: 0px 6px;
}

.works-slider .swiper-pagination .swiper-pagination-bullet-active{
	background-color: var(--primary-color);
	opacity: 1;
}
.works-slider .swiper-pagination .swiper-pagination-bullet{
    background-color: #fff;
}
.works-slider .swiper-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}
.author-content h3{
    font-size: 18px;
}
.author-content p{
    font-size: 14px;
}
.accordion-body a{
    color: var(--color-theme);
    text-decoration: underline;
}
.faq-accordion .accordion-item .accordion-button{
    font-size: 18px;
    line-height: 1.6;
}
.faq-accordion .accordion-item .accordion-collapse .accordion-body{
    font-size: 16px;
}
.recruit-sec__grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.recruit-sec,
.contact-sec{
    padding: 120px 0;
}
.recruit-sec__grid-img{
    padding-left: 80px;
}
.recruit-sec__grid-item__text{
    font-size: 16px;
    line-height: 1.8;
}
.recruit-sec__grid-item__text a{
    display: inline-block;
    text-decoration: underline;
    color: initial;
}
@media screen and (min-width: 992px) {
    .recruit-sec__grid-item__text a:hover{
        opacity: 0.6;
    }
}
.our-faqs,
.contact-sec{
    background: var(--secondary-color);
}
.contact-sec .section-title{
    text-align: center;
}
.contact-sec__grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px 38px;
}
.contact-sec__grid-item{
    background-color: #fff;
    border-radius: 40px;
    padding: 40px 35px;
    border: 1px solid var(--divider-color);    
}
.contact-sec__grid-item__icon{
    margin-bottom: 30px;
}
.contact-sec__grid-item__lead{
    font-size: 20px;
    margin-bottom: 10px;
}
.contact-sec__grid-item__text{
    font-size: 16px;
}
.contact-sec__grid-item__btn{
    text-align: center;
}
.contact-sec__grid-item__btn a{
    font-size: 14px;
}
.section-title p.our-service__text{
    margin-top: 0;
}
.section-title p.our-service__lead{
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}
.recruit-sec__grid-item__lead{
    font-size: 20px;
    color: #FFB703;
    font-weight: bold;
    margin-bottom: 6px;
}
.hero-slider__title br.sp-br{
    display: none;
}
.our-faqs .sp-only{
    display: none;
}
.post-featured-image figure{
    aspect-ratio: 1/0.65;
    overflow: hidden;
}
.post-featured-image figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* MODAL */
.modal-content{
    position: relative;
}
.modal-content .btn-close{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    color: var(--color-theme);
}
.modal-dialog {
    max-width: 600px;
}
.modal-body{
    padding: 40px;
}
.modal-body__ttl{
    color: var(--color-theme);
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
}
.modal-body__img{
    text-align: center;
    margin: 30px 0;
}
.modal-body__text{
    font-size: 16px;
}
.modal-footer{
    justify-content: center;
}
.modal-footer button{
    background-color: var(--color-theme);
    border-color: var(--color-theme);
}
@media screen and (min-width: 992px) {
    .modal-footer button:hover{
        background-color: #e8a51f;
        border-color: #e8a51f;
    }
}



@media screen and (max-width: 1540px) {
    p{
        font-size: 16px;
    }

    /* HEADER */
    .main-menu ul li a{
        font-size: 14px;
    }
    .btn-default{
        font-size: 16px;
    }
}

@media screen and (max-width: 991px) {
    html {
        scroll-padding-top: 68px;
    }
    .hero-slider-layout .hero-slide .hero-content{
        height: 500px;
    }
    .hero-slider__title{
        font-size: 30px;
    }
    .hero-slider__title br.sp-br{
        display: block;
    }
    .our-service__grid{
        grid-template-columns: repeat(2,1fr);
    }
    .recruit-sec__grid-img{
        padding: 0;
        margin-top: 30px;
    }
    .recruit-sec__grid{
        grid-template-columns: repeat(1,1fr);
    }
    .contact-sec__grid{
        grid-template-columns: repeat(1,1fr);
    }
    .our-faqs .sp-none{
        display: none;
    }
    .our-faqs .sp-only{
        display: block;
        margin-top: 20px;
    }
    .hero.bg-section{
        margin: 0;
    }
    header.main-header{
        padding: 0;
    }
    body.modal-open header.main-header .navbar,
    header.main-header .navbar,
    header.main-header.over .navbar{
        padding: 15px 0;
    }
    
}

@media screen and (max-width: 767px) {
    p{
        font-size: 14px;
    }
    .navbar-brand img{
        width: 140px;
    }


    /* FOOTER */
    .main-footer{
        padding: 40px 0 20px;
        text-align: center;
    }
    .footer-flex__info{
        display: block;
        margin-bottom: 20px;
    }
    .footer-flex{
        display: block;
    }
    .footer-flex__info-logo{
        margin-bottom: 10px;
    }
    .footer-flex__info-logo img{
        width: 180px;
    }
    .footer-flex__link{
        text-align: center;
    }


    /* INDEX */
    .about-us__text{
        font-size: 18px;
        text-align: left;
    }
    .about-us__text br{
        display: none;
    }
    .section-title h2{
        font-size: 28px;
    }
    .section-subtitle h3{
        font-size: 20px;
    }
    .our-service__grid{
        grid-template-columns: repeat(1,1fr);
        gap: 10px 0;
    }
    .our-service__grid-item{
        padding: 20px 30px;
    }
    .our-service__grid-item__num{
        font-size: 26px;
        margin-bottom: 10px;
    }
    .anchor-padding{
        padding-top: 60px;
    }
    .recruit-sec, .contact-sec{
        padding: 80px 0;
    }
    .section-title p.our-service__lead{
        font-size: 16px;
    }
    .section-title p.our-service__text{
        font-size: 16px;
        text-align: left;
    }
    .our-service__grid-item__text{
        font-size: 16px;
    }
    .quote-section__text{
        font-size: 16px;
    }
    .service-footer-btn{
        margin-top: 20px;
    }
    .faq-accordion .accordion-item .accordion-collapse .accordion-body{
        padding: 10px 0;
    }
    .faq-accordion .accordion-item .accordion-collapse .accordion-body p{
        font-size: 16px;
    }
    .slicknav_nav .slicknav_row, .slicknav_nav li a{
        font-size: 18px;
        padding: 20px;
    }
    .slicknav_menu ul ul li a{
        font-size: 16px;
    }
    .slicknav_menu ul.slicknav_nav > li > a{
        font-weight: bold;
    }
    .slicknav_menu ul ul li a::before{
        content: "・";
    }
    .slicknav_menu ul ul{
        display: block !important;
    }
    .slicknav_nav .slicknav_arrow{
        display: none !important;
    }
    .slicknav_nav a[href="#"]{
        pointer-events: none;
    }
    .slicknav_nav a:hover{
        color: #fff;
    }
    .cb-cursor{
        display: none !important;
    }

    

    /* MODAL */
    .modal-body__ttl{
        font-size: 20px;
    }
    .modal-body__img{
        margin: 20px 0;
    }
    .modal-body{
        padding: 30px 20px;
    }
    .works-section__text{
        font-size: 16px;
        padding: 0 20px 30px;
    }
    .recruit-sec__grid-item__text{
        font-size: 14px;
    }

    .navbar-brand span{
        font-size: 11px;
    }
}