body {
    min-width: 1200px;
}

.inner {
    width: 1100px;
    margin: 40px auto;
}
.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.sp {display: none !important;}
@media all and (min-width: 1024px) {
    .tab {display: none !important;}
}

.page {
    padding: 0;
}
.pageinner {
    background: url(../img/common/bg.jpg) repeat-y top;
    background-size: 1200px;
    padding-bottom: 50px;
    margin-bottom: 100px;
}
.page .mv {
    max-width: 1400px;
    margin: 0 auto;
}
.page h2 {
    text-align: center;
    margin: 80px 0;
}

a.btn {
    font-size: 21px;
    line-height: 1.5;
    position: relative;
    display: block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
    width: 300px;
    margin: 0 auto;
  }
  a.btn-custom {
    margin-bottom: 0.5rem;
    padding: 0;
    border-radius: 0.75rem;
  }
  a.btn-custom:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 100%;
    content: "";
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translate3d(0, 0.4rem, -1rem);
    transform: translate3d(0, 0.4rem, -1rem);
    border: 1px solid #000;
    border-radius: inherit;
    background: #FFF;
    -webkit-box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
  }
  a.btn-custom:after {
    position: absolute;
    top: calc(50% - 1rem);
    left: 1.5rem;
    margin: 0;
    padding: 0;
    content: "";
  }
  .btn_comment {
    position: relative;
    display: block;
    padding: 1rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid #000;
    border-radius: inherit;
    background: #fff500;
  }
  .btn_comment.blue {
    background: #acd1ee;
  }
  .fa-position-left {
    position: absolute;
    top: calc(50% - 0.5em);
    left: 1rem;
  }
  .fa-position-right {
    position: absolute;
    top: calc(50% - 0.5em);
    right: 1rem;
  }
  a.btn-custom:hover {
    -webkit-transform: translate(0, 0.25rem);
    transform: translate(0, 0.25rem);
    background: #fff500;
  }
  a.btn-custom:hover:before {
    -webkit-transform: translate3d(0, 0.2rem, -1rem);
    transform: translate3d(0, 0.2rem, -1rem);
    -webkit-box-shadow: 0 0.2rem 0 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.2rem 0 0 rgba(0, 0, 0, 0.2);
  }
  a.btn-custom:hover:after {
    content: "";
  }
  a.btn-custom:active {
    -webkit-transform: translate(0rem, 0.75rem);
    transform: translate(0rem, 0.75rem);
  }
  a.btn-custom:active:before {
    -webkit-transform: translate3d(0, 0, -1rem);
    transform: translate3d(0, 0, -1rem);
    -webkit-box-shadow: 0 0.2rem 0 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.2rem 0 0 rgba(0, 0, 0, 0.2);
  }
  a.btn-custom:active:after {
    content: "";
  }


/* header */
header {
    height: 80px;
    padding: 15px;
    display: flex;
    align-items: center;
}
header .logo {
    width: 300px;
}
/* hamburger */
.icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
}
.icon-wrapper object {
    width: 100%;
    height: 100%;
    pointer-events: none;
}
#menuText {
    display: block;
    text-align: center;
    font-size: 12px;
    font-family: "Rubik", serif;
    font-weight: bold;
    line-height: 120%;
    transition: opacity 0.3s ease-in-out;
}
#menuToggle.open #menuText {
    opacity: 0;
    visibility: hidden;
}

/* メニュー本体 */
.menu {
    position: fixed;
    top: 0;
    right: -24rem;
    width: 24rem;
    height: 100vh;
    background: #FFF;
    padding-top: 60px;
    transition: right 0.3s ease-in-out;
    z-index: 1001;
}
.menu a {
    display: block;
    padding: 15px;
    color: #000;
    text-decoration: none;
    text-align: center;
}
.menu a:hover {
    opacity: .7;
}
.menu.open {
    right: 0;
    padding: 30px;
}
.menu a span[lang=en] img[src$="text_home.png"] {
    width: 6.34rem;
}
.menu a span[lang=en] img[src$="text_aboutus.png"] {
    width: 11.09rem;
}
.menu a span[lang=en] img[src$="text_works.png"] {
    width: 8.17rem;
}
.menu a span[lang=en] img[src$="text_occupation.png"] {
    width: 13.77rem;
}
.menu a span[lang=en] img[src$="text_interview.png"] {
    width: 12.089rem;
}
.menu a span[lang=en] img[src$="text_recruit.png"] {
    width: 9.1713rem;
}
.menu .instagram {
    text-align: center;
}
.menu .instagram a {
    display: block;
    width: 4rem;
    aspect-ratio: 1/1;
    margin: 0 auto;
}
.menu span {
    display: block;
}

/* footer */
@keyframes footer-illust-bg {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.footer__illust {
    position: relative;
    height: 300px;
}
.footer__illust .fuji {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 120px;
    background: url(../img/common/footer/illust-fuji.png) repeat-x;
    background-size: auto cover;
    will-change: background-position;
}
.footer__illust .mountain {
    position: absolute;
    bottom: 128px;
    right: 0;
    width: 100%;
    height: 136px;
    background: url(../img/common/footer/illust-mountain.png) repeat-x;
    background-size: auto cover;
    will-change: background-position;
}
.footer__illust .town {
    position: absolute;
    bottom: 110px;
    right: 0;
    min-width: 100%;
    height: 100px;
    background: url(../img/common/footer/illust-town.png) repeat-x left center;
    background-size: auto 100%;
    will-change: background-position;
}
.footer__illust .road {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    min-width: 1300px;
    height: 119px;
    background: url(../img/common/footer/illust-road.png) repeat-x left center;
    background-size: auto 100%;
    will-change: background-position;
}
.footer__illust .car {
    position: absolute;
    bottom: 50px;
    right: calc(15% - 107px);
    width: 300px;
    height: 216.5px;
    background: url(../img/common/footer/illust-car.gif) no-repeat center bottom;
    background-size: contain;
}
.footer .footer_info {
    background: #e5e5e5;
    margin: 0;
    padding: 30px 0 20px 0;
}
.footer .footer_info .inner {
    padding: 0;
    margin: 0 auto;
}
.footer .footer_info .home {
    margin-bottom: 20px;
}
.footer .footer_info .home h2 {
    font-size: 26px;
    font-weight: bold;
    line-height: 160%;
    text-align: left;
    margin: 5px 0 0 0;
}
.footer .footer_info .home a {
    text-decoration: none;
}
.footer .footer_info .flex {
    align-items: flex-start;
    justify-content: left;
}
.footer .footer_info .address {
    margin-right: 50px;
}
.footer .footer_info li {
    width: 150px;
}
.footer .footer_info li a {
    background: url(../img/common/icon_electronic.png) no-repeat 0 center;
    background-size: 13px;
    padding-left: 20px;
}
.footer .footer_info .instagram {
    margin-top: 20px;
}
.footer .footer_info .instagram a {
    width: 25px;
    display: block;
}
.footer .copyright {
    text-align: center;
    font-family: "Rubik", serif;
    font-size: 12px;
    line-height: 130%;
    margin-top: 50px;
}
.banner {
    position: fixed;
    bottom: -200px;
    right: 0;
    width: 150px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.5s ease-in-out;
    z-index: 2000;
}
.banner button {
    border: none;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    background: rgba(255,255,255,.8);
    position: absolute;
    bottom: 130px;
    right: 10px;
    border-radius: 50%;
}

/* -------------------------
   page
------------------------- */
.page .pageinner {
    width: 1100px;
    margin: 0 auto;
}

/* splide */
.splide {
    margin: 0;
    line-height: 0;
    font-size: 0; display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    height: auto;
}
.splide__slide img {
    display: block;
    width: 100%;
    height: auto;
}
.splide__track {
    overflow: hidden;
}
splide__track {
    max-width: 0;
    margin: 60px auto;
}
.splide__list {
    height: auto;
}


/* -------------------------
   index
------------------------- */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #DDD;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 1;
    transition: opacity 1.5s ease;
}
#loading img {
    width: 250px;
}
#content {
    display: none;
}

#index header {
    height: auto;
    padding: 0;
}
#index .mv {
    width: 100%;
    height: 40vh;
    padding: 40px;
    min-height: 800px;
    background: #98aed7 url(../img/contents/index/mv.jpg) no-repeat center;
    background-size: contain;
    overflow-x: hidden;
}
#index .mv .text {
    clip-path: inset(0 100% 0 0);
    display: inline-block;
    font-size: 60px;
    line-height: 100%;
    padding: 5px 5px 11px 5px;
    font-weight: bold;
    color: #FFF;
    margin: 0 0 10px 0;
    background: #000;
}
@media all and (min-width: 1281px) {
    #index .mv {
        background-size: auto 110%;
        background-position: bottom;
    }
    #index .mv .text {
        font-size: 58px;
        font-weight: bold;
        line-height: 100%;
    }
}
@media all and (max-width: 1280px) {
    #index .mv .text {
        font-size: 46px;
        font-weight: bold;
        line-height: 100%;
    }
}
#index .mv .text.first {
    animation: textanimation 1s 1s forwards;
}
#index .mv .text.second {
    animation: textanimation 1s 2s forwards;
}
#index .mv .text.third {
    animation: textanimation 1s 3s forwards;
    margin: 0;
}
@keyframes textanimation {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0);
    }
}

/* intro */
#index .intro {
    padding: 130px 0;
    text-align: center;
    margin: 0;
}
#index .intro .ttl img {
    width: 395px;
}
#index .intro h2 {
    font-size: 53px;
    line-height: 160%;
    margin: 20px 0 40px 0;
}
#index .intro .btn {
    margin-top: 50px;
}

/* works */
#index .constructionworks {
    background: #FFF;
    padding: 100px 0;
    text-align: center;
}
#index .constructionworks h2 img {
    width: 265px;
}
#index .constructionworks h2 span,
#index .business_details span {
    display: block;
    font-size: 26px;
    line-height: 160%;
    margin-top: 10px;
}
#index .constructionworks .lists {
    margin: 50px 0 80px 0;
}
#index .constructionworks .splide__slide {
    position: relative;
    border-radius: 8px;
    height: 400px;
    overflow: hidden;
}
#index .constructionworks .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#index .constructionworks .splide__slide a {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
#index .constructionworks .splide__slide a .txt {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
}
#index .constructionworks .splide__slide a:hover .txt {
    display: flex;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    transition: none;
    opacity: 1;
    z-index: 3;
}
#index .constructionworks .splide__slide a h3,
#index .constructionworks .splide__slide a p {
    margin: 0;
    padding: 0;
    color: white;
    visibility: visible;
    opacity: 1; 
    font-size: 1rem;
    line-height: 1.5;
}
#index .constructionworks .splide__slide a h3 {
    font-size: 28px;
    font-weight: nomal;
    line-height: 120%;
    margin-bottom: 10px;
}
#index .constructionworks .splide__arrow,
#index .constructionworks .splide__toggle {
    position: absolute;
    align-items: center;
    background: #ccc;
    border: 0;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .9;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 3em;
    width: 3em;
    z-index: 1;
    border-radius: 0;
}
#index .constructionworks .splide__arrows  {
    position: absolute;
    right: 0;
    bottom: 0;
}
#index .constructionworks .splide__arrow--prev,
#index .constructionworks .splide__arrow--next {
    top: auto !important;
    bottom: -5em;
}
#index .constructionworks .splide__arrow--prev {
    right: 7em !important;
    left: auto !important;
}
#index .constructionworks .splide__arrow--next {
    right: 0 !important;
}
#index .constructionworks .splide__toggle {
    left: auto !important;
    top: auto !important;
    bottom: -5em !important;
    right: 3.5em !important;
}
#index .constructionworks .splide__toggle__play,
#index .constructionworks .splide__toggle__pause {
    text-indent: -9999px;
}
#index .constructionworks .splide__toggle.is-active .splide__toggle__play {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22currentColor%22%20class%3D%22bi%20bi-pause-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Cpath%20d%3D%22M5.5%203.5A1.5%201.5%200%200%201%207%205v6a1.5%201.5%200%200%201-3%200V5a1.5%201.5%200%200%201%201.5-1.5m5%200A1.5%201.5%200%200%201%2012%205v6a1.5%201.5%200%200%201-3%200V5a1.5%201.5%200%200%201%201.5-1.5%22%2F%3E%3C%2Fsvg%3E') no-repeat;
    background-size: 100%;
    width: 1.5em;
    height: 1.5em;
    display: block;
}
#index .constructionworks .splide__toggle .splide__toggle__pause {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22currentColor%22%20class%3D%22bi%20bi-play-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Cpath%20d%3D%22m11.596%208.697-6.363%203.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01%201.233-.696l6.363%203.692a.802.802%200%200%201%200%201.393%22%2F%3E%3C%2Fsvg%3E') no-repeat;
    background-size: 100%;
    width: 1.5em;
    height: 1.5em;
    display: block;
}
#index .constructionworks .splide__toggle.is-active .splide__toggle__pause {
    display: none;
}

/* business details */
#index .business_details {
    text-align: center;
    padding: 130px 0;
}
#index .business_details h2 img {
    width: 738px;
}
#index .business_details .lists {
    margin-top: 120px;
    align-items:normal;
    width: 1100px;
    margin: 80px auto;
}
#index .business_details .lists .box {
    width: 250px;
    background: #FFF;
    position: relative;
    padding: 20px 20px 80px 20px;
}
#index .business_details .lists .box::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    border-bottom: 30px solid #fff;
    border-left: 250px solid transparent;
}
#index .business_details .lists .box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 30px solid #DDD;
    border-left: 250px solid transparent;
  }
#index .business_details .lists .box h3 {
    font-size: 30px;
    font-weight: normal;
    line-height: 160%;
    background: url(../img/contents/index/business_list_ttl.png) no-repeat bottom center;
    background-size: 100%;
    padding-bottom: 15px;
}
#index .business_details .lists .box .image-container {
    position: relative;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
#index .business_details .lists .box .image-container .animated-image {
    position: absolute;
    bottom: 0;
    width: auto;
    height: 100%;
    transform: translateY(100%);
    animation: none;
}
#index .business_details .lists .box .image-container.active .animated-image {
    animation: smoothRise 0.6s cubic-bezier(0.5, 0, 0.3, 1) forwards;
}
@keyframes smoothRise {
    0% {
        transform: translateY(100%);
    }
    60% {
        transform: translateY(0);
    }
    80% {
        transform: translateY(-2%);
    }
    100% {
        transform: translateY(0);
    }
}
#index .business_details .lists ul {
    text-align: left;
}
#index .business_details .lists ul li {
    background: url(../img/common/icon_electronic.png) no-repeat 0 0;
    background-size: 13px;
    padding-left: 20px;
    line-height: 140%;
    margin-bottom: 15px;
}

/* -------------------------
   company
------------------------- */
#company .mv {
    width: 100%;
    height: 40vh;
    min-height: 800px;
    background: url(../img/contents/company/mv.jpg) no-repeat center;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#company h1 {
    text-align: center;
}
#company h1 img {
    width: 380px;
}
#company h1 span {
    display: block;
    color: #FFF;
    font-size: 26px;
    line-height: 160%;
    margin-top: 10px;
}
#company section {
    padding: 50px 0;
}
#company .intro {
    text-align: center;
}
#company .profile h2 img {
    width: 590px;
}
#company h2 {
    font-size: 53px;
    line-height: 160%;
    margin: 0;
}
#company .business_details h2 img {
    width: 635px;
}
#company .profile h2 span,
#company .business_details h2 span {
    display: block;
    margin-top: 15px;
    font-size: 26px;
    line-height: 160%;
}
#company .profile .flex {
    align-items: stretch;
}
#company .profile .box {
    width: 49%;
    background: url(../img/contents/company/line_yoko.png) no-repeat bottom center;
    padding: 70px 30px 70px 30px;
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#company .profile .box::after {
    background: url(../img/contents/company/line_tate.png) no-repeat center;
    content: "";
    width: 32px;
    height: 100%;
    display: block;
    position: absolute;
    right: -10px;
    top: 0;
}
#company .profile .box:nth-child(2n)::after {
    background: none;
}
#company .profile .box h3 {
    font-size: 36px;
    line-height: 160%;
    margin: 0 0 30px 0;
}
#company .profile .box dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}
#company .profile .box dl dt {
    width: 25%;
    padding: 5px 0;
    margin: 0;
}
#company .profile .box dl dd {
    width: 70%;
    padding: 5px 0;
    margin: 0;
}
#company .profile .box ul li {
    background: url(../img/common/icon_electronic.png) no-repeat 0 center;
    background-size: 13px;
    padding-left: 20px;
}
#company .profile .box .ecoaction {
    width: 150px;
}
#company .business_details .detailinfo {
    width: 1000px;
    margin: 0 auto;
}
#company .business_details .info {
    margin-top: 40px;
    text-align: center;
}
#company .business_details .flex {
    align-items: flex-start;
}
#company .business_details .flex .box {
    width: 472px;
    margin-bottom: 30px;
}
#company .business_details .flex .box .txt {
    margin: 0 10px;
}
#company .business_details .flex .box .txt .flex {
    justify-content: start;
}
#company .business_details .flex .box .txt ul {
    margin-right: 30px;
}
#company .business_details .flex .box .txt ul li {
    background: url(../img/common/icon_electronic.png) no-repeat 0 center;
    background-size: 13px;
    padding-left: 20px;
}
#company .business_details .electricalwork img {
    margin-top: -10px;
}
#company .business_details .airconditioning img {
    margin-top: -14px;
}

/* -------------------------
   koma
------------------------- */
#komaroom h1 {
    width: 100%;
    height: 40vh;
    min-height: 800px;
    background: url(../img/contents/komashow/mv.jpg) no-repeat center;
    text-indent: -9999px;
    border-radius: 20px;
}
#komaroom h2 img {
    width: 400px;
}
#komaroom .prof .box {
    width: 520px;
    height: 200px;
    background: url(../img/contents/komashow/prof_bg.png) no-repeat;
    background-size: 100%;
    padding: 0 40px;
}
#komaroom .prof .box .txt {
    width: 65%;
}
#komaroom .prof .box .ttl {
    font-family: "Rubik", serif;
    font-weight: bold;
    font-size: 36px;
    line-height: 160%;
    margin: 0;
    display: block;
}
#komaroom .prof .box .name {
    font-weight: bold;
    font-size: 21px;
    line-height: 160%;
    margin: 0 0 10px 0;
    display: block;
}
#komaroom .prof .box .img {
    width: 30%;
    text-align: center;
}
#komaroom .prof .box .sub {
    display: flex;
    align-items: center;
}
#komaroom .prof .box .txt .shima {
    width: 30px;
    margin-left: 2px;
}
#komaroom .interview_box {
    width: 900px;
    margin: 50px auto;
}
#komaroom .interview_box .interviewer,
#komaroom .interview_box .guest {
    margin-bottom: 40px;
}
#komaroom .interview_box .interviewer p,
#komaroom .interview_box .guest p {
    margin: 0 0 10px 0;
}
#komaroom .interview_box .interviewer p:last-child,
#komaroom .interview_box .guest p:last-child {
    margin: 0;
}
#komaroom .interview_box .interviewer .nyaa {
    color: #0093ff;
    font-family: "Rubik", serif;
    font-weight: bold;
    margin-bottom: 5px;
}
#komaroom .interview_box .interviewer .icon,
#komaroom .interview_box .guest .icon {
    font-size: 14px;
    font-weight: bold;
    line-height: 140%;
    text-align: center;
    width: 120px;
}
#komaroom .interview_box .interviewer .icon::before {
    content: "";
    display: block;
    background: #FFF url(../img/contents/komashow/koma.png) no-repeat center;
    background-size: 50%;
    padding: 15px;
    border: 1px solid #000;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    box-sizing: border-box;
}
#komaroom .interview_box .guest .icon::before {
    content: "";
    display: block;
    background: #FFF url(../img/contents/komashow/shacho.png) no-repeat center;
    background-size: 60%;
    padding: 15px;
    border: 1px solid #000;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    box-sizing: border-box;
}
#komaroom .interview_box .comment {
    width: 84%;
}
#komaroom .interview_box .comment a {
    color: #333;
}
#komaroom .interview_box .comment a::before {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%230093ff%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M9%2018l6-6-6-6%22%2F%3E%3C%2Fsvg%3E') no-repeat;
    background-size: 16px;
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
}
#komaroom .interview_box .shima {
    background: #FFF;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
#komaroom .interview_box .shima img {
    width: 55px;
    margin-right: 10px;
}
#komaroom .interview_box .shima .name {
    font-size: 21px;
    font-weight: bold;
    line-height: 160%;
    display: block;
}

/* -------------------------
   recruit
------------------------- */
#recruit .mv {
    width: 100%;
    height: 40vh;
    min-height: 800px;
    background: url(../img/contents/recruit/mv.jpg) no-repeat center;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#recruit h1 {
    text-align: center;
    margin-top: -60px;
}
#recruit h1 img {
    width: 340px;
}
#recruit h1 span {
    display: block;
    color: #FFF;
    font-size: 26px;
    line-height: 160%;
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
#recruit .intro {
    text-align: center;
    margin: 80px 0;
}
#recruit h2 {
    font-size: 60px;
    line-height: 160%;
    margin: 0 0 40px 0;
}
#recruit .recommendation {
    margin: 80px 0;
}
#recruit .requirements {
    margin: 130px 0;
}
#recruit .entry {
    margin: 30px 0 0 0;
    border-radius: 10px 10px 0 0;
    padding: 15px 20px;
    background: #fff500;
    font-size: 1.3em;
    line-height: 2em;
}
#recruit .entry p {
    margin: 0;
    text-align: center;
}
#recruit .requirements ul.btns {
    display: flex;
    justify-content: space-between;
    background: #FFF;
    padding: 20px 30px;
    border-radius: 0 0 10px 10px;
}
#recruit .requirements ul.btns li {
    text-align: center;
    width: 20%;
}
#recruit .requirements ul.btns li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.5s;
}
#recruit .requirements ul.btns li a::after {
    display: block;
    content: "";
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M6%209l6%206%206-6%22%2F%3E%3C%2Fsvg%3E') no-repeat center top;
    background-size: 90%;
    width: 30px;
    height: 30px;
}
#recruit .requirements ul.btns li a:hover::after {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M6%209l6%206%206-6%22%2F%3E%3C%2Fsvg%3E') no-repeat center bottom;
    background-size: 90%;
}
#recruit .requirements .occupation {
    margin: 80px 0;
    padding: 0 50px 60px 50px;
    background: url(../img/contents/recruit/line.png) no-repeat bottom center;
}
#recruit .requirements .occupation .ttl {
    display: flex;
    align-items: center;
}
#recruit .requirements .occupation .ttl h3 {
    font-size: 30px;
    line-height: 160%;
    margin-right: 15px;
}
#recruit .requirements .occupation .ttl span {
    background: #FFF;
    font-size: 12px;
    line-height: 140%;
    padding: 5px 20px;
    border-radius: 50px;
    margin: 0 5px 0 0;
}
#recruit .requirements .occupation .flex {
    align-items: flex-start;
}
#recruit .requirements .occupation dl {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 48%;
}
#recruit .requirements .occupation dl dt {
    width: 25%;
    padding: 5px 5px 30px 5px;
    margin: 0;
}
#recruit .requirements .occupation dl dd {
    width: 70%;
    padding: 5px 5px 30px 5px;
    margin: 0;
}
#recruit .contact_area {
    text-align: center;
    margin-bottom: 80px;
}
#recruit .contact_area p {
    font-size: 21px;
    line-height: 160%;
}

/* -------------------------
   occupation
------------------------- */
#occupation .mv {
    width: 100%;
    height: 40vh;
    min-height: 800px;
    background: url(../img/contents/occupation/mv.jpg) no-repeat center;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#occupation h1 {
    text-align: center;
    margin-top: -60px;
}
#occupation h1 img {
    width: 340px;
}
#occupation h1 span {
    display: block;
    color: #FFF;
    font-size: 26px;
    line-height: 160%;
    margin-top: 10px;
}
#occupation .dictionary h2 {
    font-size: 60px;
    line-height: 160%;
}
#occupation .dictionary ul li {
    width: 30%;
    text-align: center;
    margin-bottom: 50px;
}
#occupation .dictionary ul li span {
    display: block;
    font-size: 21px;
    font-weight: bold;
    line-height: 160%;
    margin-top: 20px;
}
#occupation .dictionary ul li .modal__trigger {
  position: relative;
}
#occupation .dictionary ul li .modal__trigger .touch {
    position: absolute;
    bottom: 100px;
    left: 50%;
    margin: 0 0 0 -35%;
    width: 70%;
    opacity: 0;
}
@keyframes poyoyon {
      0% {
        transform: translateY(50px);
        opacity: 0;
      }
      50% {
        transform: translateY(0);
      }
      65% {
        transform: translateY(20px);
      }
      100% {
        transform: translateY(0);
      }
      20%, 100% {
        opacity: 1;
      }
}
.animate {
    animation: poyoyon 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}
#occupation .modal {
    padding: 200px 0;
}
#occupation .inner {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 20px;
}
#occupation .modal__trigger {
    cursor: pointer;
}
#occupation .modal__trigger:nth-child(n + 2) {
    margin-top: 60px;
}
#occupation .modal__wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
}
#occupation .modal__layer {
    height: 100%;
    background: rgba(50, 50, 50, .85);
    cursor: pointer;
}
#occupation .modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(calc(100% - 40px), 600px);
    padding: 0;
    background: #fff;
    border-radius: 10px;
}
#occupation .modal__inner {
    position: relative;
    overflow-y: auto;
    height: 100%;
    padding: 0;
    text-align: center;
}
#occupation .modal__inner img {
      width: 60%;
      padding-top: 20px;
}
#occupation .modal__inner .txt {
      text-align: left;
      font-size: 16px;
      line-height: 180%;
      background: #fffa79;
      padding: 30px;
      border-radius: 0 0 10px 10px;
      margin-top: -40px;
}
#occupation .modal__inner .txt h3 {
      font-size: 36px;
      line-height: 160%;
      margin: 0;
      text-align: center;
      background: url(../img/contents/occupation/line.png) no-repeat bottom center;
      padding-bottom: 20px;
}
#occupation .modal__inner .txt p {
    margin: 20px 15px 0 15px;
}
#occupation .modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(50, 50, 50, 1);
    cursor: pointer;
    transition: opacity .6s;
}
#occupation .modal__close:hover {
    opacity: .6;
}
#occupation .modal__close:before,
#occupation .modal__close:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
    content: '';
}
#occupation .modal__close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}
#occupation .modal__close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
#occupation .modal__content {
}
#occupation .recruit {
    background: #fffa79 url(../img/contents/occupation/recruit_03.png) no-repeat 95% 100%;
    padding: 60px;
    border-radius: 10px;
    border: 1px solid #000;
    margin: 80px auto;
    width: 1000px;
    position: relative;
}
#occupation .recruit::before {
    background: url(../img/contents/occupation/recruit_01.png) no-repeat top left;
    display: block;
    width: 110px;
    height: 220px;
    position: absolute;
    top: 10%;
    left: -111px;
    content: "";
}
#occupation .recruit::after {
    background: url(../img/contents/occupation/recruit_02.png) no-repeat top right;
    display: block;
    width: 97px;
    height: 233px;
    position: absolute;
    top: 20%;
    right: -98px;
    content: "";
}
#occupation .recruit h2 {
    margin: 0 0 40px 0;
    text-align: left;
    font-size: 60px;
    line-height: 140%;
}
#occupation .recruit .btn {
    margin: 30px 0 0 0;
    width: 300px;
}
#occupation .recruit .btn .btn_comment {
    padding: 1rem;
    background: #aed3ee;
}


/* -------------------------
   works
------------------------- */
#works .mv {
    width: 100%;
    height: 40vh;
    min-height: 800px;
    background: #CCC url(../img/contents/works/mv.jpg) no-repeat center;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
}
#works h1 {
    text-align: center;
}
#works h1 img {
    width: 267px;
}
#works h1 span {
    display: block;
    font-size: 26px;
    line-height: 160%;
    margin-top: 10px;
}
#works .dictionary h2 {
    font-size: 60px;
    line-height: 160%;
}
#works .tab-switch {
    display: flex;
    flex-wrap: wrap;
    margin: 80px auto;
    justify-content: flex-start;
    gap: 0 20px;
}
#works .tab-switch > label {
    order: -1;
    position: relative;
    padding: 30px 0 30px 100px;
    background-color: #FFF;
    color: #000;
    text-align: center;
    cursor: pointer;
    transition:.3s all;
    width: 400px;
    border: 1px solid #000;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    font-size: 32px;
    font-weight: bold;
    list-style: 160%;
}
#works .tab-switch > label:hover,
#works .tab-switch label:has(:checked) {
    background-color: #aed3ee;
}
#works .tab-switch > label.government::before {
    content: "";
    background: url(../img/contents/works/tab_k.png) no-repeat;
    background-size: 100%;
    display: block;
    width: 90px;
    height: 120px;
    position: absolute;
    bottom: 0;
    left: 40px;
}
#works .tab-switch > label.building::before {
    content: "";
    background: url(../img/contents/works/tab_s.png) no-repeat;
    background-size: 100%;
    display: block;
    width: 120px;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
}
#works .tab-switch input {
    display: none;
}
#works .tab-switch > div {
    display: none;
    width: 100%;
    padding: 50px 30px;
    background: #FFF;
    border: 1px solid #000;
    border-radius: 0 10px 10px 10px;
}
#works .tab-switch label:has(:checked) + div {
    display: block;
}
#works .workslist .box {
    margin-bottom: 50px;
}
#works .workslist .box:last-child {
    margin-bottom: 0;
}
#works .workslist .box:nth-child(even) {
    flex-direction: row-reverse;
}
#works .workslist .box .img {
    width: 50%
}
#works .workslist .box .img img {
    border-radius: 10px;
}
#works .workslist .box .txt {
    width: 50%;
    padding: 50px;
    border-radius: 0 10px 10px 0;
    background: #EEE;
    transition: .5s;
}
#works .workslist .box .txt a.btn {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    margin: 0;
    width: 250px;
}
#works .workslist .box .txt a.btn .btn_comment {
    padding: 1rem;
}
#works .workslist .box:nth-child(even) .txt {
    border-radius: 10px 0 0 10px;
}
#works .workslist .box:hover .txt {
    background: #aed3ee;
}
#works .workslist .box:hover .txt a.btn {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}
#works .workslist .box .txt h2 {
    text-align: left;
    margin: 0 0 10px 0;
}
#works .workslist .box .txt .construction {
    display: block;
    margin-bottom: 30px;
}
#works .bim {
    background: #fffa79;
    border-radius: 10px;
    border: 1px solid #000;
    padding: 50px;
}
#works .bim h2 {
    margin: 0;
    text-align: left;
    font-size: 53px;
    line-height: 160%;
}
#works .bim p {
    margin: 20px 0 30px 0;
}
#works .bim a {
    margin: 0;
}

/* detail */
#works_detail,
#works_bim {
    margin: 130px 0;
}
#works_detail .mv,
#works_bim .mv {
    margin-top: 80px;
}
#works_detail .mv img,
#works_bim .mv img {
    border-radius: 20px;
}
#works_detail h1,
#works_bim h1 {
    text-align: center;
    margin-top: -60px;
}
#works_detail h1 img,
#works_bim h1 img {
    width: 267px;
}
#works_detail h1 span,
#works_bim h1 span {
    display: block;
    font-size: 26px;
    line-height: 160%;
    margin-top: 10px;
}
#works_detail .date {
    margin-bottom: 20px;
    text-align: right;
}
#works_detail .info {
    margin-bottom: 30px;
}
#works_detail .info_wide {
    display: block;
    margin: 80px 0;
}
#works_detail .info h2 {
    font-size: 43px;
    line-height: 160%;
    text-align: left;
    width: 30%;
    margin: 0;
}
#works_detail .info_wide h2 {
    width: 100%;
    text-align: center;
}
#works_detail .info .comment {
    width: 65%;
}
#works_detail .spec {
    padding: 20px;
    border: 1px solid #000;
    border-radius: 10px;
    background: #FFF;
}
#works_detail .spec p {
    margin: 0;
}
#works_detail .photo {
    margin: 130px 0;
}
#works_detail .photo img {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    border-radius: 10px;
}

/* bim */
#works_bim .intro {
    text-align: center;
}
#works_bim h2 {
    font-size: 36px;
    line-height: 160%;
    margin-bottom: 30px;
}
#works_bim .parse {
    margin: 80px auto;
    width: 1000px;
}
#works_bim .parse .box {
    margin-bottom: 80px;
}
#works_bim .parse .box h3 {
    font-size: 36px;
    line-height: 160%;
    margin: 0 0 30px 0;
    text-align: center;
    background: url(../img/contents/occupation/line.png) no-repeat bottom center;
    padding-bottom: 20px;
}
#works_bim .parse .box p {
    text-align: center;
}
#works_bim .parse .box .img {
    background: #FFF;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}