/*
* reset
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,input,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 62.5%;
    background: none;
    vertical-align: baseline;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    color: #000;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
	overflow: auto;
}
body {
	overflow: hidden;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=date],
input[type=button],
input[type=submit],
textarea{
    border: none;
}
button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none; /* 1 */
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit; /* 2 */
}


/* common */
.sp{
    display: none  !important;
}
@media screen and (max-width: 768px) {
    .pc{
        display: none !important;
    }
    .sp{
        display: block;
    }
}
a{
    transition: 0.3s;
}
a:hover{
    opacity: 0.6;
    transition: 0.3s;
}
.common-width{
    max-width: 1400px;
    padding: 80px 20px;
    margin: 0 auto;
    position: relative;
}
.common-width__first{
    padding: 180px 20px 80px;
}
@media screen and (max-width: 768px) {
    .common-width{
        padding: 60px 20px;
    }
    .common-width__first{
        padding: 160px 20px;
    }
}
.common_maxwidth{
    width: 100%;
    padding: 80px 0px;
}
.common-txt{
    font-size: 1.6rem;
    line-height: 2.0;
}
.common-pagettl{
    text-align: center;
    margin-bottom: 60px;
}
.common-pagettl h1{
    font-weight: bold;
    font-size: 3.2rem;
    position: relative;
}
.common-pagettl h1::before{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 6px;
    top: 56px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.news-pagettl h1::before,
.notfound-pagettl h1::before,
.contact-pagettl h1::before{
    background: #6F6F6F;
}
.company-pagettl h1::before{
    background: #FFBD02;
}
.service-pagettl h1::before{
    background: #1555E6;
}
.sdgs-pagettl h1::before{
    background: #27BF20;
}
.common-link-button {
    display: inline-block;
    max-width: 200px;
    width: 100%;
    line-height: 62px;
    border-radius: 31px;
    font-size: 2rem;
}

/* background */
.newsArchive,
.newsSingle,
.contact,
.sdgs,
.privacy{
    background: #F4F4F4;
}
.service{
    background: #EAF7FE;
}
.company{
    background: #FFF8E5;
}

/* Header */
.header{
    position: fixed;
    width: 100%;
    top: 20px;
    left: 0;
    z-index: 100;
    padding: 0px 20px;
    box-sizing: border-box;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    background: #fff;
    border-radius: 100px;
    box-sizing: border-box;
    max-height: 80px;
}

.header__logo img {
    height: 40px !important;
}

.header__navList {
    display: flex;
    gap: 2.5rem;
}

.header__navItem {
    position: relative;
}
.header__navItem__recruit .header__navLink{
    color: #FE3355;
}
.header__navItem__recruit .header__navLink span{
    margin-left: 2px;
}
.header__navItem__recruit .header__navLink span img{
    height: 16px;
}
.header__navLink {
    display: block;
    padding: 1rem 0;
    font-weight: bold;
    transition: 0.3s;
    font-size: 1.6rem;
}
.header__navLink{
    padding-right: 22px;
    position: relative;
}
.header__navItem--hasDropdown__arrow{
    position: absolute;
    right: 0px;
    top: 16px;
}
.header__navItem--hasDropdown__arrow img{
    width: 18px;
}
.header__navItem--hasDropdown:hover .header__dropdown {
    visibility: visible;
    opacity: 1;
}

.header__dropdown {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #fff;
    min-width: 150px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
    border-radius: 16px;
}
.header__dropdown li a {
    display: block;
    padding: 1rem 1.5rem;
    white-space: nowrap;
    font-size: 1.4rem;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .header__hamburger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 10;
    }
    
    .header__hamburger span {
        position: absolute;
        width: 100%;
        height: 2px;
        background: #000;
        transition: 0.3s;
    }
    .header__hamburger span:nth-child(1) { top: 0; }
    .header__hamburger span:nth-child(2) { top: 9px; }
    .header__hamburger span:nth-child(3) { top: 18px; }
    .header__nav {
display: none; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0000008b;
        padding: 60px 0px;
        box-sizing: border-box;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;

    }
    .header__navList {
        flex-direction: column;
        align-items: center;
        min-height: min-content; 
    }
    .header__hamburger.is-active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
    background: #fff;
    }
    .header__hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }
    .header__hamburger.is-active span:nth-child(3) {
        top: 9px;
        transform: rotate(-45deg);
        background: #fff;
    }
    .header__dropdown {
    position: relative;
    opacity: 1 !important;
    visibility: visible;
    background: none;
    }
    .header__navItem a{
        color: #fff;
    }
    .header__navItem--hasDropdown{
        text-align: center;
    }
    .header__navLink{
        padding-right: 0px !important;
    }
    .header__navItem--hasDropdown__arrow {
    right: 30px;
    }
}
/* Footer */
.footer {
    background-color: #27597B;
    color: #fff;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
}
.footer__logoBlock {
    min-width: 400px;
}
.footer__logo {
    width: 80%;
    margin-bottom: 10px;
}
.footer__companyName{
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer__address {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.8;
}
.footer__nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.footer__navCol {
    width: calc((100% - 60px) / 3);
    margin-left: 20px;
    margin-top: 40px;
}
.footer__navTitle {
    margin-bottom: 10px;
    white-space: nowrap;
    border-bottom: solid 2px #fff;
    padding-bottom: 4px;
}
.footer__navTitle_recruit{
    margin-bottom: 10px;
    white-space: nowrap;
    border-bottom: solid 2px  #FE3355;
    padding-bottom: 4px;
}
.footer__navTitle a,
.footer__navTitle_recruit a{
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    transition: color 0.3s;
    position: relative;
}
.footer__navTitle_recruit a span{
    position: absolute;
    right: -20px;
    top: 4px;
}
.footer__navTitle_recruit a span img{
    width: 16px;
}
.footer__navList li {
    margin-bottom: 1rem;
}
.footer__navList a {
    color: #fff;
    transition: color 0.3s;
    font-size: 1.6rem;
}
.footer__copy {
    text-align: center;
    padding: 10px 0px;
    font-size: 1.2rem;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .footer__logoBlock{
        width: 100%;
        min-width: 100%;
    }
}
.footer__breadcrumb{
    background: #000;
}
.footer__breadcrumb-inner{
    max-width: 1400px;
    padding: 10px 20px;
    margin: 0 auto;
}
.footer__breadcrumb-list{
    display: flex;
    justify-content: end;
}
.footer__breadcrumb-listItem,
.footer__breadcrumb-listItem a{
    color: #fff;
    font-size: 1.4rem;
}
/* ---index--- */
.index_cont__title{
    font-size: 12rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #fff;
    font-family: "Racing Sans One", sans-serif;
    position: relative;
    text-align: center;
}
.index_cont__title span{
    position: absolute;
    transform: translate(-50%, -50%);
    top: 60%;
    left: 50%;
    font-size: 3.2rem;
    font-weight: 700;
}
.index_business__title::before{
    content: "";
    width: 100px;
    height: 6px;
    background: #1555E6;
    position: absolute;
    transform: translate(-50%, -50%);
    bottom: 10%;
    left: 50%;
}
.index_recruit__title::before{
    content: "";
    width: 100px;
    height: 6px;
    background: #FE3355;
    position: absolute;
    transform: translate(-50%, -50%);
    bottom: 10%;
    left: 50%;
}
.index_sdgs__title{
    font-size: 3.2rem;
    font-weight: 700;
    position: relative;
    color: #fff;
    margin-bottom: 40px;
}
.index_sdgs__title::before {
    content: "";
    width: 100px;
    height: 6px;
    background: #FFBD02;
    position: absolute;
    transform: translate(-50%, -50%);
    bottom: -40%;
    left: 50%;
}
.index_first-view-img_wrap{
    position: relative;
}
.index_first-view{
    position: relative;
    padding-top: 80px;
}
.first-view-img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.index_first-view_txt{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0000005a;
    padding: 20px 40px;
    box-sizing: border-box;
    width: calc(100% - 40px);
    max-width: 800px;
}
.index_first-view_txt img{
    width: 100%;
}
.index_first-view_txten{
    color: #fff;
    font-size: 4.0rem;
    font-weight: 700;
    text-align: center;
    font-family: "Racing Sans One";
}
.index_news {
    position: relative;
}
.index_news__wrap{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    box-sizing: border-box;
}
.index_news__inner {
    padding: 40px 20px;
    border-radius: 16px;
    background: #fff;
    display: block;
    box-sizing: border-box;
}
.index_news__title_wrap{
    display: flex;
    justify-content:space-between;
    align-items: flex-end;
    padding-bottom: 10px;
}
.index_news__title {
    font-size: 3.2rem;
    font-weight: bold;
}
.index_news__allLink{
    margin-left: 0.5rem;
    font-size: 1.8rem;
    padding-right: 30px;
    position: relative;
    font-weight: 700;
}
.index_news__arrow img{
    height: 18px;
    position: absolute;
    top: 55%;
    right: 0;
    transform: translate(-50%, -50%);
}
.index_news__list {
    padding: 2rem;
}
.index_news__item a{
    display: flex;
    align-items: baseline;
    padding: 10px;
    border-bottom: 1px solid #C7C7C7;
}
.news__list{
    border-top: 1px solid #C7C7C7;
}
.index_news__date {
    font-size: 1.6rem;
    margin-right: 2rem;
    flex-shrink: 0;
    font-weight: 700;
}
.index_business {
    background-color: #EAF7FE;
    padding: 32rem 0 80px;
}
.index_business__description {
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: center;
}
.index_business__cards {
    display: flex;
    justify-content: center;
}
.index_business__card {
    background-color: #1555E6;
    border-radius: 16px;
    overflow: hidden;
    width: calc((100% - 40px) / 3);
    max-width: 800px;
    flex-shrink: 0;
    text-align: center;
    transition: transform 0.3s ease;
    margin: 0px 20px;
}
.index_business__cardImage {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.index_business__cardImage img{
    width: 100%;
}
.index_business__cardTitle {
    font-size: 2.4rem;
    font-weight: bold;
    margin-top: 2rem;
    color: #fff;
}
.index_business__cardText {
    font-size: 1.4rem;
    color: #fff;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}
.index_business__arrows{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    padding: 0 20px;
    box-sizing: border-box;
}
.index_business__arrow{
    border: solid 1px #1555E6;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    pointer-events: auto;
    background: none;
}
.index_business__arrow img{
    height: 24px;
}
.index_business__arrow--prev {
    left: -20px;
}
.index_business__arrow--next {
    right: -20px;
}
.index_business__button {
    display: inline-block;
    color: #000;
    padding: 1.5rem 3rem;
    border-radius: 5px;
    font-size: 1.8rem;
    font-weight: bold;
    transition: background-color 0.3s;
    position: relative;
}
.index_business__button__arrow img{
    height: 18px;
    position: absolute;
    top: 52%;
    right: 0;
    transform: translate(-50%, -50%);
}
.index_sdgs {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/bg-op1.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    text-align: center;
}
.index_sdgs__description {
    font-size: 1.6rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #fff;
}
.index_sdgs__goals {
    margin-bottom: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.index_sdgs__goals img {
    width: calc((100% - 80px) / 5);
    margin-left: 20px;
    margin-top: 20px;
}
.index_sdgs__goals img:nth-child(5n + 1) {
    margin-left: 0;
}
.index_sdgs__buttonWrapper {
    margin-top: 5rem;
}
.index_sdgs__button {
    position: relative;
    display: inline-block;
    color: #fff;
    padding: 1.5rem 3rem;
    border-radius: 5px;
    font-size: 1.8rem;
    font-weight: bold;
}
.index_sdgs__button__arrow img{
    height: 18px;
    position: absolute;
    top: 55%;
    right: 0;
    transform: translate(-50%, -50%);
}
.index_recruit {
    width: 100%;
    background: linear-gradient(
    175deg, #FCE7EA 52%, #fff 52%);
}
.index_recruit__description {
    font-size: 1.6rem;
    text-align: center;
}
.index_recruit__buttonWrapper {
    margin-top: 40px;
    text-align: center;
}
.index_recruit__button {
    display: inline-block;
    background-color: #FE3355;
    color: #fff;
    padding: 1.8rem 6rem;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: bold;
    transition: 0.3s;
    position: relative;
    margin: 0 auto;
}
.index_recruit__button img{
    height: 18px;
    position: absolute;
    top: 52%;
    right: 40px;
    transform: translate(-50%, -50%);
}
.index_recruit__button span {
    margin-left: 1rem;
}
@media screen and (max-width: 768px) {
    .index_news__item a{
    display: block;
    }
    .index_news{
        background: #EAF7FE;
    }
    .index_news__wrap{
    position: relative;
    transform:none;
    top: 0;
    left: 0;
    }
    .index_business{
        padding: 60px 20px;
    }
}

/* ---news archive , news single--- */
.news-area{
    display: flex;
    width: 100%;
}
.news-list-area,
.news-single-txt-area{
    width: 75%;
    margin-right: 40px;
}
.news-single-thumbnail{
    max-width: 800px;
    width: 100%;
    margin: 0 auto 60px;
}
.news-single-thumbnail img{
    width: 100%;
}
.news-list{
    display: flex;
    flex-wrap: wrap;
    row-gap: 80px;
    justify-content: space-between;
}
.news-item{
    width: calc((100% - 80px) / 3);
    position: relative;
}
.news-list::after{
    display: block;
    content: "";
    width: calc((100% - 80px) / 3);
}
.news-hashtag-area{
    width: 25%;
}
.news-hashtag h3{
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.news-hashtag h3{
    color: #6F6F6F;
}
.news-hashtag + .news-hashtag,
.recruit-hashtag + .recruit-hashtag{
    margin-top: 50px;
}
.news-hashtag-item a{
    font-size: 1.6rem;
    padding: 5px 8px;
    border-radius: 4px;
    display: inline-block;
}
.news-hashtag-item + .news-hashtag-item{
    margin-top: 20px;
}
.nav-links{
    text-align: center;
    margin-top: 40px;
}
.nav-links .page-numbers{
    display: inline-block;
    width: 40px;
    line-height: 40px;
    border-radius: 20px;
    margin-left: 5px;
    margin-right: 5px;
    text-align: center;
    vertical-align: middle;
    background-color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    transition: 0.3s;
}
.nav-links .next,
.nav-links .prev{
    background-color: #B3B3B3;
    transition: 0.3s;
}
.nav-links a{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.nav-links .next img,
.nav-links .prev img{
    height: 18px;
    padding: 2px;
}
.nav-links .prev img{
    transform: scale(-1, 1);
}
.nav-links .current{
    background-color: #000000;
    color: #fff;
}
.nav-links-arrow img{
    height: 16px;
    vertical-align: middle;
}
.arrow-reversal{
    transform: scale(-1, 1);
}
.nav-links .page-numbers:hover{
    background-color: #000000;
    color: #fff;
    transition: 0.3s;
    opacity: 1.0;
}
.news-item-common a{
    display: inline-flex;
    flex-direction: column;
}
.news-date{
    color: #888;
    font-size: 1.4rem;
}
.news-category{
    display: flex;
    justify-content: space-between;
}
.news-category-common{
    margin-top: auto;
} 
.news-item img{
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    margin-bottom: 8px;
}
.news-ttl{
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 8px;
    font-weight: 700;
}
.news-category__service{
    font-size: 1.2rem;
    color: #fff;
    padding: 0px 10px;
    border-radius: 20px;
}
.news-category__service.--exterior{
    background: #27BF20;
}
.news-category__service.--management{
    background: #FE3355;
}
.news-category__service.--food{
    background: #1555E6;
}
.news-category__service.--facility{
    background: #FFBD02;
}
@media (max-width: 750px){
    .news-area,
    .recruit-area{
    display: block;
    }
    .news-list-area,
    .news-single-txt-area,
    .recruit-list-area,
    .recruit-single-txt-area{
        width: 100%;
        margin-right: 0;
        margin-bottom: 80px;
    }
    .news-list{
        display: block;
    }
    .news-item{
        width: 100%;
    }
    .news-item + .news-item{
        margin-top: 40px;
    }
    .news-hashtag-area{
        width: 25%;
    }
    .nav-links a{
        width: 36px;
        line-height: 36px;
    }
    .nav-links-numbers-sp{
        display: none;
    }
}
.news-single-head{
    padding-bottom: 20px;
}
.news-single-head-ttl{
    color: #000;
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}
.news-single-main{
    display: flex;
    padding-bottom: 80px;
}
.news-item-occupation{
    display: flex;
}
.news-item-occupation p{
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-item-occupation p + p{
    margin-left: 10px;
}
.news-item-occupation span{
    margin-right: 20px;
    font-size: 1.6rem;
}
.news-single-txt-intro{
    padding-top: 20px;
    margin-bottom: 120px;
    border-top: 1px solid #B3B3B3;
}
.news-single-txt-intro p{
    color: #646464;
    font-size: 1.6rem;
    line-height: 1.8;
}
.news-single-txt-intro p + p{
    margin-top: 26px;
}
.news-single-txt-detail{
    margin-bottom: 8px;
}
@media (max-width: 750px){
    .news-single-head{
        padding-top: 100px;
    }
    .news-single-main{
        display: block;
    }
    .news-item-occupation{
        justify-content: space-between;
    }
    .detail-item th,
    .detail-item td{
        width: 100%;
        display: block;
    }
    .detail-item td{
        padding: 0 20px 20px 20px;
    }
    .news-single-link-button-area{
        width: 100%;
    }
    .news-single-link-button{
        width: 260px;
        margin: 0 auto;
    }
}
.link-button-area {
    text-align: center;
}
.link-button-color02 {
    background-color: #000000;
    color: #fff;
    font-style: italic;
}
/* news-search */
.news-hashtag-items + .news-hashtag-items{
    margin-top: 40px;
}
.news_hashtag-item{
    background: #ffffff;
    display: table;
    padding: 8px 16px;
    border-radius: 6px;
    width: 100%;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
}
.news_single_hashtag-area .news_hashtag-item{
    background: #fff !important;
}
.news_hashtag-item a{
    font-size: 1.6rem;
    font-weight: 700;
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    width: 100%;
}
.news_hashtag-item +.news_hashtag-item{
    margin-top: 8px;
}
.news_hashtag-item input[type="checkbox"] {
    padding-left: 30px;
    vertical-align: middle;
}
.news_hashtag-item input[type="checkbox"]::before,
.news_hashtag-item input[type="checkbox"]::after {
    content: "";
    display: block; 
    position: absolute;
}
.news_hashtag-item input[type="checkbox"]::before {
    background-color: #fff;
    border-radius: 0%;
    border: 1px solid #aeaeae;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.news_hashtag-item.--exterior a{
    color: #27BF20;
}
.news_hashtag-item.--management a{
    color: #FE3355;
}
.news_hashtag-item.--food a{
    color: #1555E6;
}
.news_hashtag-item.--facility a{
    color: #FFBD02;
}
.news_hashtag-item.--all a{
    color: #fff;
}
.news_hashtag-item.--all{
    background: #6F6F6F;
}
.news_hashtag-list{
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 10px;
}
.news_search_content + .news_search_content{
    margin-left: 8px;
}
.news_search_result-txt{
    font-size: 1.6rem;
}
.news_search_result-txt span{
    font-size: 2.0rem;
    font-weight: bold;
    margin-right: 4px;
}
.news_search_notfound_ttl{
    font-size: 2.4rem;
    font-weight: bold;
}
.news_search_notfound_txt{
    font-size: 1.6rem;
    line-height: 2.0;
}
@media (max-width: 750px){
    .news_page-ttl-area{
        height: 100px;
    }
    .news_page-ttl-area::before{
        border-width: 100px 100vw 0 0;
    }
    .news_area_wrap{
        padding-top: 10px;
    }
    .news_item + .news-item{
        margin-top: 40px;
    }
    .news-hashtag-area{
    width: 100%;
    }
}

.company{
    background: #FFF8E5;
}

/* --- Company --- */
.company_inner{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.company_list-item{
    width: calc((100% - 20px) / 2);
}
.company_list-item a{
    display: flex;
}
.company_list-itemImg{
    width: calc(100% / 2);
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.company_list-itemImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.company_list-itemDesk{
    background: #000;
    width: calc(100% / 2);
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center; 

}
.company_list-itemDesk-ttl{
    color: #fff;
    font-size: 4.0rem;
    font-family: "Racing Sans One", sans-serif;
}
.company_list-itemDesk-ttl span{
    color: #fff;
    font-size: 1.4rem;
    display: block;
}
.company_list-itemDesk-arrow{
    min-width: 20px;
    width: 20px;
}
.company_list-itemDesk-arrow img{
    width: 100%;
}
@media (max-width: 750px){
    .company_inner{
        display: block;
    }
    .company_list-item{
        width: 100%;
    }
    .company_list-itemImg{
        width: 100%;
    }
    .company_list-item a{
        display: block;
    }
    .company_list-itemDesk{
        width: 100%;
    }
    .company_list-item + .company_list-item{
        margin-top: 20px;
    }
    .company_list-itemDesk-ttl{
    font-size: 2.4rem;
}
}
.company-about_conts{
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border-top: solid 1px #C7C7C7;
}
.company-about_cont{
    display: flex;
    border-bottom: solid 1px #C7C7C7;
}
.company-about_cont-ttl{
    font-weight: 700;
}
.company-about_cont-ttl,
.company-about_cont-txt{
    font-size: 1.6rem;
    box-sizing: border-box;
    padding: 30px 10px;
}
.company-about_cont-ttl{
    width: 30%;
    background: #F4F4F4;
    text-align: center;
}
.company-about_cont-txt{
    width: 70%;
    background: #fff;
}
@media (max-width: 750px){
    .company-about_cont{
        display: block;
    }
    .company-about_cont-ttl{
        width: 100%;
    }
    .company-about_cont-txt{
        width: 100%;
        text-align: center;
    }
}

/* common-form */
.wpcf7-spinner{
    display: none !important;
}
.common-form{
    max-width: 800px;
    margin: 0 auto;
}
.contact__form dl dd+dt{
    margin-top: 40px;
}
.contact__form dl dt{
    margin-bottom: 6px;
    position: relative;
    display: inline-block;
    padding-left: 36px;
}
.contact__form dl dt p{
    font-size: 1.8rem;
    font-weight: bold;
}
.required::before{
    content: '必須';
    line-height: 1;
    font-size: 1.2rem;
    background: #E6485A;
    color: #fff;
    padding: 4px;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.any::before{
    content: '任意';
    line-height: 1;
    font-size: 1.2rem;
    background: #8e8e8e;
    color: #fff;
    padding: 4px;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.contact__form dl dd input[type="text"],
.contact__form dl dd input[type="date"],
.contact__form dl dd input[type="email"],
.contact__form dl dd input[type="tel"],
.contact__form dl dd .wpcf7-textarea,
.contact__form dl dd select{
    background: #fff;
    padding: 10px;
    width: 100%;
    font-size: 1.6rem;
    box-sizing: border-box;
}
.common-form_select{
    position: relative;
    width: 60%;
}
.contact__form dl dd textarea{
    background: #fff;
    padding: 10px;
    width: 100%;
    height: 100%;
    resize: none;
}
.common-form_select .wpcf7-form-control-wrap::after{
    content: "";
    position: absolute;
    right: 10px;
    top: 16px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ccc;
    border-left: 2px solid #ccc;
    transform: translateY(-50%) translateX(-50%) rotate(-135deg);
    font-size: 20px;
    pointer-events: none;
}

.wpcf7-not-valid-tip{
    font-size: 1.6rem !important;
    color: #dc3232 !important;
    margin-top: 6px !important;
}
.wpcf7-acceptance .wpcf7-list-item-label{
    padding-left: 16px;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
    content: "";
    background-color: #fff;
    border: 1px solid #aeaeae;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.form__common--check .wpcf7-list-item-label:after {
    content: "";
    border-bottom: 4px solid #0049EF;
    border-left: 4px solid #0049EF;
    opacity: 0;
    height: 11px;
    width: 20px;
    transform: rotate(-45deg);
    top: -1px;
    left: -2px;
    position: absolute;
}
.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    opacity: 1;
}
.form__common--check .wpcf7-list-item-label{
    font-size: 1.8rem;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
}
.form__common--check{
    margin-top: 40px;
}
.contact__confirm-btn p{
    display: flex;
}
.wpcf7-submit{
    display: block;
    width: 310px;
    height: 64px;
    line-height: 64px;
    color: #fff;
    background-color: #000;
    text-align: center;
    margin: 40px auto 0px;
    font-size: 1.8rem;
    border-radius: 32px;
}
.wpcf7-previous{
    display: block;
    width: 310px;
    height: 64px;
    line-height: 64px;
    color: #fff;
    background-color: #aeaeae;
    text-align: center;
    margin: 40px auto 0px;
    font-size: 1.8rem;
    border-radius: 32px;
}
.wpcf7-previous + .wpcf7-submit{
    margin-left: 10px;
}
.wpcf7-acceptance .wpcf7-list-item-label a{
    background: linear-gradient(transparent 60%,#85a8f8 60%);
    width: 100%;
    font-size: 1.6rem;
}

.form__sample--check .wpcf7-form-control-wrap{
    display: block;
    text-align: center;
}

.contact__confirm__container dl{
    display: flex;
    flex-wrap: wrap;
    border-top: solid 1px #aeaeae;
}
.contact__confirm__container dl dt{
    width: 180px;
    margin: 0px;
    padding: 0;
}
.contact__confirm__container dl dd{
    width: calc(100% - 180px);
}
.contact__confirm__container dl dt p{
    font-weight: bold;
}
.contact__confirm__container dl dt p,
.contact__confirm__container dl dd p{
    font-size: 1.6rem;
    padding: 24px 10px;
    border-bottom: solid 1px #aeaeae;
}
.wpcf7-radio .wpcf7-list-item{
    width: calc(100% / 6);
}
.recruit-form_sex .wpcf7-list-item-label{
    position: relative;
    cursor: pointer;
}
.wpcf7-form-control-wrap{
    display: block;
}
.wpcf7-form-control.wpcf7-radio{
    display: flex;
}
.wpcf7-list-item-label{
    color: #333;
    cursor: pointer;
    font-size: 13px
}
.recruit-form_sex{
    margin-top: 4px;
}
.wpcf7-list-item{
    margin: 0 !important; 
    font-size: 1.6rem;
}
.wpcf7-list-item .wpcf7-list-item-label{
    font-size: 1.6rem;
}
.wpcf7-list-item-label:before{
    content: '';
    background: #fff;
    border-radius: 100%;
    border: 1px solid #888888;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    top: -0.2em;
    margin-right: 4px;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
}
input[type="radio"]:checked + .wpcf7-list-item-label:before{
    background-color: #0049EF;
    box-shadow: inset 0 0 0 2px #fff;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output{
    font-size: 1.6rem;
    text-align: center;
}
.entry-form_attention{
    argin-top: 10px;
}
@media (max-width: 750px){
    .common-form_select {
    width: 100%;
    }
    .contact__confirm__container dl{
    display: block;
    }
    .contact__confirm__container dl dt{
    border-bottom: none;
    padding: 0px;
    width: 100%;
    }
    .contact__confirm__container dl dt p{
        border-bottom: none;
        padding: 20px 10px 0px;
    }
    .contact__confirm__container dl dd{
    padding: 0px;
    width: 100%;
    }
    .contact__confirm__container dl dd p{
    padding: 0px 10px 20px;
    }
    .contact__confirm-btn p{
    display: block;
    }
    .wpcf7-submit{
        width: 100%;
    }
    .wpcf7-previous{
    width: 100%;
    }
    .wpcf7-previous + .wpcf7-submit{
    margin-top: 20px;
    margin-left: 0px;
    }
    .wpcf7-radio .wpcf7-list-item{
    width: calc(100% / 2);
    }
}
.contact-page-ttl_inner{
    text-align: center;
}
.thanks-txt{
    font-size: 1.6rem;
    line-height: 1.8;
    }
.contact-thanks_txt p{
    text-align: center;
}

/* SDGs */
.sdgs_top-img{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}
.sdgs_top-img img{
    width: 100%;
}
.sdgs_top-desk{
    margin-top: 80px;
}
.sdgs_top-desk-ttl{
    color: #27BF20;
    font-size: 2.6rem;
    font-weight: 700;
}
.sdgs_top-desk-txt{
    margin-top: 20px;
}
.sdgs_conts{
    margin-top: 80px;
    border-top: solid 2px #C7C7C7;
    padding: 80px;
}
.sdgs_cont + .sdgs_cont{
    margin-top: 80px ;
}
.sdgs_cont{
    display: flex;
    justify-content: space-between;
}
.sdgs_cont-icon{
    width: 200px;
}
.sdgs_cont-icon img{
    width: 100%;
}
.sdgs_cont-desk{
    width: calc(100% - 240px);
}
.sdgs_cont-desk-ttl{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 10px;
}
.sdgs-3 {background-color: #DBECD7;}
.sdgs-4 {background-color: #F3D1D5;}
.sdgs-6 {background-color: #D4F2F9;}
.sdgs-8 {background-color: #ECD1D9;}
.sdgs-9 {background-color: #FFE1D3;}
.sdgs-11 {background-color: #FFEBD3;}
.sdgs-12 {background-color: #F2E8D5;}
.sdgs-13 {background-color: #D9E5DA;}
.sdgs-15 {background-color: #DDF2D5;}

@media (max-width: 750px){
    .sdgs_conts{
        padding: 60px 0px;
    }
    .sdgs_cont{
        display: block;
    }
    .sdgs_cont-icon{
        margin: 0px auto 20px;
        width: 100%;
        max-width: 400px;
    }
    .sdgs_cont-desk{
        width: 100%;
    }
}

/* company  - philosophy */
.company-philosophy-ttl{
    font-size: 12rem;
    color: #fff;
    font-family: "Racing Sans One", sans-serif;
    text-align: center;
    position: relative;
}
.company-philosophy-ttl span{
    display: block;
    color: #FFBD02;
    font-size: 3.2rem;
    font-weight: 700;
}
.company-philosophy-ttl span img{
    width: 100%;
    max-width: 800px;
}
.company-philosophy_desk{
    text-align: center;
}
.company-philosophy_cont + .company-philosophy_cont{
    margin-top: 80px;
}
.value_desk-cont{
    display: flex;
    justify-content: space-between;
}
.value_desk-cont + .value_desk-cont{
    margin-top: 40px;
}
.value_desk{
    max-width: 800px;
    width: 100%;
    display: block;
    margin: 0 auto;
}
.value_desk-cont-img{
    width: 100px;
}
.value_desk-cont-img img{
    width: 100%;
}
.value_desk-cont-ttl{
    width: calc(100% - 120px);
}
.value_desk-cont-ttl h3{
    font-size: 3.2rem;
    color: #FFBD02;
    font-family: "Racing Sans One", sans-serif;
    position: relative;
    border-bottom: solid 2px #C7C7C7;
}
.value_desk-cont-ttl span{
    position: absolute;
    top: 6px;
    right: 0px;
}

/* company  - history */

.company-history{
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.company-history-item + .company-history-item{
    margin-top: 20px;
}
.company-history-date,
.company-history-txt{
    display: table-cell;
    vertical-align: middle;
}
.company-history-date{
    font-size: 1.8rem;
    font-weight: bold;
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    text-align: center;
}
.company-history-date span{
    font-size: 3.4rem;
    font-weight: bold;
    color: #FFBD02;
}
.company-history-txt{
    padding-left: 20px;
    color: #000;
}

/* service */
.service-list_cont{
    display: flex;
    justify-content: space-between;
}
.service-list_cont + .service-list_cont{
    margin-top: 80px;
}
.service-list_cont-img{
    width: calc(30% - 10px);
}
.service-list_cont-img img{
    width: 100%;
}
.service-list_cont-desk{
    width: calc(70% - 10px);
    position: relative;
}
.service-list_cont-desk-ttl{
    margin-bottom: 20px;
}
.service-list_cont-desk-ttl h2{
    font-size: 3.2rem;
    font-weight: 700;
}
.service-list_cont-desk-ttl span{
    color: #1555E6;
    font-weight: 500;
    font-size: 2.0rem;
}
.service-list_cont-desk-txt{
    margin-bottom: 40px;
}
.service-list_cont-desk-link{
    width: 100%;
    display: flex;
    justify-content: end;
}
.service-list_cont-desk-link a{
    font-size: 2.0rem;
    font-weight: 700;
}
.ervice-list_cont-desk-link_arrow{
    width: 18px;
}
.service-list_cont-desk-link_arrow img{
    width: 18px;
}


/* service-single */
.service-single-head{
    padding-bottom: 20px;
}
.service-single-head_inner{
    display: flex;
}
.service-single-head_left{
    width: 30%;
    background-color: #1A1A1A;
    position: relative;
}
.service-single-head_left-img{
    position: relative;
}
.service-single-head_left-img-bg{
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}
.service-single-head_left-img::after{
    content: '';
    background-color: rgba(0,0,0,.5);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.service-single-head_left-img-logo{
    width: 60%;
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.service-single-head_left-img-logo img{
    width: 100%;
    border-radius: 50%;
}
.service-single-head_left-content{
    padding: 75px 20px 30px 20px;
    text-align: center;
}
.service-single-head_left-ttl_wrap{
    margin-bottom: 30px;
}
.service-single-head_left-ttl{
    color: #fff;
    font-size: 2.7rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.service-single-head_left-sub{
    color: #999;
    font-size: 1.4rem;
}
.service-single-head_left-link{
    margin-bottom: 30px;
}
.service-single-head_left_sns-group{
    width: 100%;
    display: flex;
    justify-content: center;
}
.service-single-head_left_sns{
    width: calc((90% - 80px) / 5);
    text-align: center;
}
.service-single-head_left_sns + .service-single-head_left_sns{
    margin-left: 20px;
}
.service-single-head_left_sns a{
    display: block;
    width: 100%;
}
.service-single-head_left_sns img{
    width: 100%;
}
.service-single-head-img-sp{
    display: none;
}
.service-single-head_right{
    width: 70%;
}
.service-single-head_right img,
.service-single-head-img-sp img{
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.service-single-content{
    padding-top: 80px;
}
.service-single-item{
    position: relative;
}
.service-single-item + .service-single-item{
    margin-top: 80px;
}
.service-single-item h2{
    color: #1555E6;
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.service-single-item-ttl{
    display: flex;
    margin-bottom: 15px;
}
.service-single-item-ttl span{
    position: relative;
}
.service-single-item-ttl span::before{
    position: absolute;
    content: "";
    width: 25px;
    height: 10px;
    background-color: #1555E6;
    top: 7px;
    border-radius: 5px;
}
.service-single-item-ttl h3{
    color: #1555E6;
    font-size: 2.2rem;
    font-weight: bold;
    position: relative;
    left: 35px;
}
.service-single-item-ttl.another span::before{
    background-color: #646464;
}
.service-single-item-ttl.another h3{
    color: #646464;
}
.service-single-item-txt{
    color: #646464;
    font-size: 1.5rem;
    line-height: 1.8;
}
.service-single-item-img{
    width: 100%;
    background: linear-gradient(0deg, #1555E6 0%, #1555E6 93%, #EAF7FE 7%, #EAF7FE 100%);
    background-color: #FFE9BC;
    position: relative;
    margin-top: 30px;
}
.service-single-item-img::after{
    content: '';
    display: inline-block;
    width: 98%;
    height: 20px;
    background-color: #1555E6;
    position: absolute;
    right: 0;
}
.service-single-item-img ul{
    width: 98%;
    display: flex;
    justify-content: space-between;
}
.service-single-item-img li{
    width: calc((100% - 80px) / 3);
}
.service-single-item-img img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media (max-width: 750px){
    .service-single-item-img{
        background: none;
    }
    .service-single-item-img::after{
        display: none;
    }
    .service-single-item ul{
        width: 100%;
        display: block;
    }
    .service-single-item li{
        width: 100%;
        
    }
    .service-single-item li + li{
        margin-top: 20px;
    }
}
.service-single-item-facilities-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.service-single-item-facilities-item{
    background-color: #fff;
    padding: 14px;
    border-radius: 20px;
    box-sizing: border-box;
}
.service-single-item-facilities-item h4{
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #1555E6;
    padding-bottom: 5px;
}
.service-single-item-facilities-item img{
    width: 100%;
    margin-top: 15px;
}
.service-single-item-facilities-item a{
    box-sizing: border-box;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    background-color: #1555E6;
    display: inline-block;
    width: 100%;
    border-radius: 30px;
    padding: 10px;
    text-align: center;
    margin-top: 15px;
}
@media (max-width: 750px){
    .service-single-item-facilities-list{
        display: block;
    }
}
.service-single-item-indent{
    padding-left: 1em;
    text-indent: -1em;
}
.service-single-news-list-area{
    padding-top: 20px;
}
@media (max-width: 750px){
    .service-single-head{
        padding: 0;
        margin-top: 80px;
        background: none;
    }
    .service-single-head_inner{
        display: block;
    }
    .service-single-head_left{
        width: 100%;
    }
    .service-single-head_left-img,
    .service-single-head_left-img-logo{
        display: none;
    }
    .service-single-head_left-content{
        padding: 50px 20px 20px 20px;
    }
    .service-single-head_left-ttl{
        font-size: 3.2rem;
    }
    .service-single-head_left_sns-group{
        margin-bottom: 30px;
    }
    .service-single-head-img-sp{
        display: block;
        width: 100%;
    }
    .service-single-head_right{
        display: none;
    }
    .service-single-content{
        padding-top: 75px;
        padding-bottom: 80px;
    }
    .service-single-item h2{
        font-size: 2.8rem;
        line-height: 1.4;
    }
    .service-single-news-list-area{
        padding-top: 0;
    }
}

/* 404 NOT FOUND */
.notfound_txt p{
    text-align: center;
}

.privacy-cont p,
.privacy-cont ul li{
    font-size: 1.6rem;
}
.privacy-cont ul li + li{
    margin-top: 40px;
}