@charset "utf-8";

/* ========================================
 * 共通
======================================== */
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /*ヘッダーの高さ分設定*/
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #222;
    line-height: 1.7;
    letter-spacing: 0.025em;
    background-color: #fff;
}

img {
    max-width: 100%;
}


/* 共通-オリジナル
======================================== */
.area_header-menu-pc {
    display: block;
}

.area_header-menu-sp {
    display: none;
}

.container {
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
}

.heading {
    font-size: 40px;
    font-family: futura-pt, sans-serif;
    letter-spacing: .2em;
}

.sp-br {
    display: contents;
}

/* ボタン */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn a {
    border: 1px solid #2AA500;
    background: #fff;
    color: #2AA500;
    display: block;
    width: 280px;
    border-radius: 5px;
    text-align: center;
    padding: 15px 25px 15px 15px;
    position: relative;
    transition: .5s;
}

.btn a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #2AA500;
    border-right: 2px solid #2AA500;
    transform: rotate(45deg);
    box-sizing: border-box;
    transition: .5s;
}

.btn a:hover {
    background-image: linear-gradient(120deg, #1FA200, #AAC900);
    color: #fff;
    border: 1px solid transparent;
    transition: .5s;
}

.btn a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: .5s;
}

/* ========================================
 * ヘッダー
======================================== */
.area_header-menu-pc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-left: 30px;
    /* headerを画面上部に固定する */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* スクロールしても他のコンテンツの下にならないようにする */
    z-index: 10;
    /* アニメーションの変化時間 */
    transition: 0.5s;
}

.header-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 5px;
    color: #713412;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.header-logo img {
    display: block;
    max-width: 160px;
}

.header-logo span {
    display: block;
}

.nav_header-pc {
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 2vw;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}

.list_nav-header {
    display: flex;
    column-gap: 2vw;
    align-items: center;
    justify-content: center;
}

.list_nav-header li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.list_nav-header li a:hover {
    color: #222;
    transition: .3s;
}

.nav-header-en {
    font-family: futura-pt, sans-serif;
    font-size: 20px;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.nav_header-pc .btn-contact {
    background: #222;
    height: 130px;
    display: grid;
    place-content: center;
    transition: .3s;
}

.nav_header-pc .btn-contact:hover {
    background: #777;
    transition: .3s;
}

.nav-header-contact {
    padding-left: 23px;
    position: relative;
}

.nav-header-contact:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(../img/common/icon-mail.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 11px;
    left: 3px;
    transform: translateY(-50%);
}

/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.scroll-nav {
    background: transparent linear-gradient(119deg, #FFBA02 0%, #EF7700 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.scroll-nav .header-logo a {
    padding: 12px 20px;
    transition: 0.5s;
}

.scroll-nav .nav_header-pc {
    font-size: 10px;
}

.scroll-nav .nav-header-en {
    font-size: 16px;
}

.scroll-nav .btn-contact {
    height: 80px;
}

.scroll-nav .nav-header-contact {
    padding-left: 20px;
}

.scroll-nav .nav-header-contact:before {
    width: 14px;
    height: 14px;
    top: 10px;
    left: 3px;
}

/* メインビジュアル
======================================== */
.area_mv {
    position: relative;
    background: linear-gradient(119deg, #FFBA02, #EF7700);
    padding-top: 130px;
}

.area_catch {
    position: absolute;
    top: 20%;
    left: 5vw;
}

.area_catch h2 {
    font-size: clamp(20px, 2.3vw, 50px);
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #fff;
    margin-bottom: 30px;
}

.area_catch span {
    color: #222;
}

.area_catch p {
    font-family: futura-pt, sans-serif;
    color: #fff;
    letter-spacing: 0.2em;
    font-weight: 400;
    font-size: clamp(12px, 0.8vw, 20px);
}

.area_mv .area_image {
    max-width: 1100px;
    margin-left: auto;
}

.area_mv .area_image img {
    border-radius: 9vw 0 0 0;
    aspect-ratio: 1188/935;
}

/* スクロールダウンの位置 */
.scroll {
    position: absolute;
    left: 5vw;
    bottom: 150px;
    writing-mode: vertical-rl;
    font-family: futura-pt, sans-serif;
    letter-spacing: 0.2em;
    font-weight: 400;
    font-size: 12px;
}

/* 線のアニメーション部分 */
.scroll::before {
    animation: scroll 2s infinite;
    background-color: #000;
    bottom: -76px;
    content: "";
    height: 130px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 25px;
    width: 1px;
}

/* 線のアニメーション */
@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

/* トップ-サービス
======================================== */
.area_top-service {
    margin: 100px 0;
}

.area_top-service_heading {
    background-image: linear-gradient(118deg, rgba(239, 119, 0, 1), rgba(255, 186, 2, 1));
    border-radius: 100px;
    padding: 20px 0;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.area_top-service_heading::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background-image: url(../img/common/icon_male-worker_01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    top: 10px;
    left: 8%;
}

.area_top-service_heading::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background-image: url(../img/common/icon_green-house_01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    top: 10px;
    right: 8%;
}

.area-top-service .heading-text {
    line-height: 2.3;
}

.area-top-service .heading-text span {
    background-color: #fff;
    padding: 4px 10px;
    margin-right: 6px;
    color: #EF7700;
}

.list_top-service {
    max-width: 1000px;
    width: 92%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.list_top-service_contents {
    position: relative;
}

.list_top-service_contents .filter-bk {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    border-radius: 5px;
}

.list_top-service_contents img {
    border-radius: 5px;
}

/* トップ-アバウト
======================================== */
.area_top-about {
    background: #EEEAE7;
    padding: 80px 0 150px;
    text-align: center;
    position: relative;
}

.area_top-about::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 93px;
    background-image: url(../img/reform-index/icon_house.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    left: 20px;
}

.area_top-about::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 69px;
    background-image: url(../img/reform-index/icon_fence.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    right: 20px;
}

.area_top-about_heading {
    margin-bottom: 30px;
    position: relative;
}

.area_top-about_heading::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-image: url(../img/common/icon_female-worker.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -35px;
    right: 12%;
}

.area_top-about_heading .heading {
    margin-bottom: 30px;
}

.area_top-about_heading .heading-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.area_top-about_heading .heading-text::before,
.area_top-about_heading .heading-text::after {
    background-color: #222;
    content: "";
    height: 2px;
    width: 40px;
}

.area_top-about_heading .heading-text::before {
    margin-right: 50px;
    transform: rotate(45deg);
}

.area_top-about_heading .heading-text::after {
    margin-left: 50px;
    transform: rotate(-45deg);
}

@keyframes infinity-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}

.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0;
    animation: infinity-scroll 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
    width: calc(100vw / 5);
}

.list_top-about {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding-top: 60px;
}

.list_top-about_contents {
    background: #fff;
    border-radius: 5px;
    padding: 30px 20px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.list_top-about_contents div {
    width: 100%;
    margin: 0 auto 16px;
}

.list_top-about_contents div img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.list_top-about_contents p {
    line-height: 1.6;
    text-align: center;
}

.list_top-about_contents p span {
    color: #EF7700;
}

/* トップ-ご相談
======================================== */
.area_top-consult {
    min-height: 700px;
    width: 100%;
    background: url(../img/reform-index/bg_top-consult.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area_top-consult .container {
    background: #fff;
    border-radius: 10px;
    padding: 60px 0;
    position: relative;
}

.area_top-consult .container::before,
.area_top-consult .container::after,
.area_top-consult .circle::before,
.area_top-consult .circle::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #FFBA02;
    position: absolute;
}

.area_top-consult .container::before {
    left: 20px;
    top: 20px;
}

.area_top-consult .container::after {
    right: 20px;
    top: 20px;
}

.area_top-consult .circle::before {
    left: 20px;
    bottom: 20px;
}

.area_top-consult .circle::after {
    right: 20px;
    bottom: 20px;
}

.area_top-consult_inner {
    max-width: 1000px;
    width: 92%;
    margin: 0 auto;
}

.area_top-consult h3 {
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    position: relative;
    margin-bottom: 40px;
}

.area_top-consult h3 span {
    color: #EF7700;
}

.area_top-consult h3::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 7px;
    border-radius: 7px;
    background: #FFBA02;
}

.area_top-consult_text {
    display: grid;
    grid-template-columns: 1fr .25fr;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.area_top-consult_text p {
    line-height: 2;
    text-align: justify;
}

/* トップ-お客様のうれしい声
======================================== */
.area_top-voice {
    background: #FAFAF9;
    padding: 80px 0;
}

.area_top-voice_heading {
    background-image: linear-gradient(120deg, #1FA200, #AAC900);
    border-radius: 50px;
    padding: 10px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.area_top-voice_heading img {
    width: 50px;
}

.area_top-voice_heading .heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.area_top-voice_heading span {
    font-size: 14px;
    letter-spacing: .05em;
}

/* スライド */
.slider {
    margin: 50px auto 0;
}

.slider-img {
    margin: 0 20px;
}

.slider-item {
    margin: 0 20px 10px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.slider-item_inner {
    display: grid;
    grid-template-columns: 110px 1fr;
    justify-content: center;
    align-items: center;
    gap: 20px;

}

.voice-info {
    text-align: center;
    display: grid;
    place-content: center;
    font-size: 14px;
}

.voice-info img {
    margin-bottom: 10px;
}

.voice-info p {
    font-size: 12px;
}

.voice-detail h4 {
    color: #EF7700;
    font-weight: 700;
    border-bottom: 1px solid #D3D3D3;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.voice-detail p {
    font-size: 14px;
    text-align: justify;
}

.slick-arrow {
    z-index: 2;
    width: 30px;
    height: 30px;
}

.slick-arrow:before {
    content: "" !important;
}

.slick-prev {
    left: 30px;
    background: url(../img/common/icon_arrow-left.svg) !important;
    background-size: contain;
}

.slick-next {
    right: 30px;
    background: url(../img/common/icon_arrow-right.svg) !important;
    background-size: contain;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: auto !important;
}

/* トップ-スタッフ
======================================== */
.area_top-staff {
    padding: 80px 0;
}

.area_top-staff .container {
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 20px;
}

.area_top-staff_heading .heading-text {
    margin-bottom: 20px;
}

.area_top-staff_heading .btn {
    justify-content: flex-start;
}

/* トップ-ニュース
======================================== */
.area_top-news {
    background-image: linear-gradient(118deg, rgba(239, 119, 0, 1), rgba(255, 186, 2, 1));
    padding: 80px 0;
}

.area_top-news .container {
    background: #fff;
    border-radius: 10px;
    padding: 70px 0;
}

.area_top-news_inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    justify-content: center;
    /* align-items: end; */
    gap: 80px;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

.area_top-news_article-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.area_top-news_article-heading a {
    position: relative;
}

.area_top-news_article-heading .arrow {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    width: 110px;
    transition: .3s;
    font-size: 14px;
}

.area_top-news_article-heading .arrow::before,
.area_top-news_article-heading .arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    background: #222;
    transition: .3s;
}

.area_top-news_article-heading .arrow::before {
    width: 36px;
    transform: translate(30px, 0px);

}

.area_top-news_article-heading .arrow::after {
    width: 13px;
    transform-origin: right center;
    transform: translate(30px, 0px) rotate(25deg);
}

.area_top-news_article-heading .arrow:hover {
    color: #EF7700;
    transition: .3s;
}

.area_top-news_article-heading .arrow:hover::before,
.area_top-news_article-heading .arrow:hover::after {
    background: #EF7700;
    transition: .3s;
}

.list_top-news li {
    display: flex;
    gap: 20px;
    align-items: center;
    background-image: linear-gradient(to right, #000, #000 1px, transparent 1px, transparent 8px);
    background-size: 4px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
    padding: 16px 0;
}

.list_top-news .layout2 {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.list_top-news .date {
    font-family: futura-pt, sans-serif;
}

.list_top-news .category {
    background-color: #2AA500;
    border-radius: 20px;
    padding: 1px 20px;
    font-size: 12px;
    color: #fff;
    vertical-align: middle;
}

.list_top-news h4:hover {
    color: #EF7700;
    transition: .3s;
}

.area_top-news_instagram {
    background: transparent linear-gradient(121deg, #4C64D3 0%, #CF2E92 37%, #F26939 70%, #FFDD83 100%);
    color: #fff;
    border-radius: 10px;
    padding: 30px;
    font-size: 13px;
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.area_top-news_instagram::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background-image: url(../img/reform-index/icon_top-news_instagram.svg);
    background-size: contain;
    background-repeat: no-repeat;
    top: -70px;
    left: -60px;

}

.area_top-news_instagram .layout2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 400;
    padding-bottom: 16px;
}

.img_ceo {
    max-width: 80px;
    border-radius: 5px;
}

.area_top-news_instagram span {
    font-weight: 600;
}

.btn-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    padding: 8px 0;
    border-radius: 30px;
    text-align: center;
    position: relative;
}

.btn-instagram::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 7px;
    height: 7px;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.btn-instagram:hover {
    background: rgba(255, 255, 255, .4);
    transition: .5s;
}

.btn-instagram img {
    padding-right: 5px;
}

/* ========================================
 * フッター
======================================== */
.footer {
    background: url(../img/common/bg_yellow-house.svg) no-repeat bottom left / contain;
}

.area_footer-link .list_link {
    display: grid;
    gap: 10px;
    padding: 80px 0 0;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.area_footer-link .list_link .item {
    background: #fff;
    border: 1px solid #D3D3D3;
    display: grid;
    place-content: center;
    padding: 15px;
}

.area_footer-link .list_link .item img {
    aspect-ratio: 214/35;
    object-fit: contain;
}

.area_footer-menu {
    padding: 60px 0 80px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.list_footer-info {
    margin-bottom: 10px;
}

.footer-sns a {
    display: inline-block;
    background-color: #222;
    padding: 10px;
    border-radius: 20px;
    height: 40px;
    width: 40px;
}

.footer-sns a:hover {
    opacity: .6;
}

.footer-sns img {
    vertical-align: top;
    text-align: center;
}

.footer-privacy {
    display: block;
    width: fit-content;
    font-size: 11px;
    padding: 0 0 10px;
}

.footer-privacy:hover {
    opacity: .6;
}

.nav_footer .footer-menu-heading {
    text-align: center;
    background: #fff;
    box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 3px;
    transition: .3s;
}

.nav_footer .footer-menu-heading:hover {
    box-shadow: 0px 3px 14px 0px rgba(0, 0, 0, 0.4);
    transition: .3s;
}

.nav_footer .layout2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    color: #fff;

}

.nav_footer .kenzai-menu {
    background-image: linear-gradient(120deg, #1FA200, #AAC900);
    border-radius: 5px;
    padding: 30px 40px;
}

.nav_footer .reform-menu {
    background-image: linear-gradient(120deg, #EF7700, #FFBA02);
    border-radius: 5px;
    padding: 30px 40px;
}

.nav_footer .menu-heading {
    padding-bottom: 10px;
}

.nav_footer .menu-heading::before {
    content: "⚫︎";
    padding-right: 5px;
}

.list_footer-menu {
    line-height: 2;
}

.list_footer-menu li {
    letter-spacing: .1em;
    font-size: 12px;
    font-weight: 400;
}

.list_footer-menu li::before {
    content: "・";
    padding-right: 2px;
}

.list_footer-menu li a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    transition: 0.3s;
}

.list_footer-menu li a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: 0.3s;
}

.list_footer-menu li a:hover::before {
    left: 0;
    width: 100%;
}

.list_footer-menu span {
    font-family: futura-pt, sans-serif;
    font-size: 16px;
    padding-right: 10px;
    font-weight: 500;
}

.area_footer-copylight {
    background-image: linear-gradient(120deg, #EF7700, #FFBA02);
    padding: 8px;
}

.area_footer-copylight p {
    font-family: futura-pt, sans-serif;
    font-size: 12px;
    color: #fff;
    text-align: center;
}

/* ========================================
 * 下層ページ共通
======================================== */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
    list-style: none;
    padding: 40px 0 80px 80px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #EF7700;
}

.breadcrumb li:first-child::before {
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
    margin-right: 3px;
    background-image: url(../img/common/icon_home.svg);
    background-repeat: no-repeat;
    content: '';
    background-size: contain;
}

.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .5em;
    height: .5em;
    margin-left: 10px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    content: '';
}

.area_sub-visual {
    position: relative;
    background: linear-gradient(119deg, #FFBA02, #EF7700);
    padding-top: 130px;
}

.area_sub-visual .area_title {
    color: #fff;
    line-height: 1.3;
    text-shadow: 0px 3px 15px #3B3B3BCE;
    position: absolute;
    bottom: 40px;
    left: 80px;
}

.area_sub-visual .title {
    font-size: clamp(20px, 2.60vw, 60px);
    font-family: futura-pt, sans-serif;
    letter-spacing: .2em;
}

.area_sub-visual .title-jp {
    letter-spacing: .2em;
    font-size: clamp(10px, 0.83vw, 16px);
}

.area_sub-visual .area_image img {
    border-radius: 8vw 0 0 0;
}

.area_heading_sub {
    text-align: center;
    margin-bottom: 60px;
}

.area_heading_sub .heading-jp {
    font-size: 14px;
    color: #EF7700;
    letter-spacing: .09em;
}

/* ========================================
 * 施工実績
======================================== */
/* タブ */
.tab-container {
    display: grid;
    grid-template-columns: repeat(3, 270px);
    align-items: center;
    justify-content: center;
    gap: 2vw;
    margin-bottom: 50px;
}

.tab {
    text-align: center;
    padding: 16px;
    background: #fff;
    border: 1px solid #2AA500;
    cursor: pointer;
    border-radius: 50px;
    color: #2AA500;
    position: relative;
}

.tab img {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
}

.tab.active {
    background-image: linear-gradient(120deg, #1FA200, #AAC900);
    color: #fff;
    border: 1px solid transparent;
}

.content {
    margin-bottom: 100px;
}

.list_case {
    display: grid;
    gap: 40px;
    margin-bottom: 50px;
}

.list_case .case-item {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 10px 0px;
    padding: 3vw 4vw;
    border-radius: 10px;
}

.case-name {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
}

.case-name h4 {
    color: #EF7700;
    font-size: 23px;
}

.area_case-contents .case-images {
    display: flex;
    gap: 20px;
}

.area_case-contents .case-images img {
    aspect-ratio: 471/328;
    object-fit: contain;
}

.area_case-contents .case-images .arrow {
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 20px solid #FFBA02;
    align-self: center;
}

.area_case-contents .case-images p {
    font-family: futura-pt, sans-serif;
    padding-top: 5px;
}

.area_case-contents .case-images .after-image p {
    color: #EF7700;
}

.area_case-contents .case-info {
    background: #f5f5f5;
    margin-top: 20px;
    padding: 1.5vw 4vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 20px;
    border-radius: 10px;
}

.list_case-info {
    display: grid;
    gap: 15px;
}

.list_case-info li {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
}

.area_case-contents .case-info .info-heading {
    background: #2AA500;
    color: #fff;
    width: 100px;
    height: 28px;
    padding: 2px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
}

.area_case-contents .case-info .info-text {
    font-size: 14px;
}

.case-info_overview .info-heading {
    margin-bottom: 8px;
}

.case-info_overview .info-text span {
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

/* ========================================
 * ドローン事業
======================================== */

.bg_drone-inspection {
    background: url(../img/drone/bg_inspection.jpg) no-repeat center center;
    min-height: 380px;
    width: 100%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 80px;
}

.bg_drone-inspection p {
    color: #fff;
    background: #EF7700;
    padding: 10px 20px;
    border-radius: 5px;
    letter-spacing: .1em;
    text-align: center;
}

.bg_drone-inspection span {
    padding: 0 10px;
    font-size: 20px;
}

.area_drone-merit {
    background-image: linear-gradient(120deg, rgb(239, 119, 0), rgb(255, 186, 2));
    padding: 80px 0;
}

.heading_02 {
    text-align: center;
    font-size: 25px;
    letter-spacing: .05em;
}

.area_drone-merit .heading_02 {
    color: #fff;
}

.heading_02 span {
    font-size: 40px;
    padding: 8px;
}

.area_drone-merit .heading-text {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.list_drone-merit {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.list_drone-merit li {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
}

.list_drone-merit .number {
    text-align: right;
    font-size: 60px;
    line-height: .8;
    font-family: futura-pt, sans-serif;
    letter-spacing: .05em;
}

.list_drone-merit .item_center {
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.list_drone-merit .item_center img {
    text-align: center;
    display: block;
    margin: 0 auto 16px;
}

.list_drone-merit .list-item_01 .number,
.list_drone-merit .list-item_01 span {
    color: #93AF00;
}

.list_drone-merit .list-item_02 .number,
.list_drone-merit .list-item_02 span {
    color: #6AB700;
}

.list_drone-merit .list-item_03 .number,
.list_drone-merit .list-item_03 span {
    color: #00884E;
}

.area_drone-merit .layout2 {
    display: grid;
    grid-template-columns: 140px 1fr;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.area_drone-merit .balloon {
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 15px;
    padding: 40px;
    border-radius: 20px;
}

.area_drone-merit .balloon::before {
    position: absolute;
    left: -15px;
    width: 18px;
    height: 28px;
    background-color: #fff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    content: '';
}

.area_drone-merit .balloon span {
    color: #EF7700;
}

.area_drone-worries {
    background: #FAFAF9;
    padding: 80px 0;
}

.area_drone-worries .heading_02_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.worries-contents {
    text-align: center;
    margin-bottom: 60px;
}

.worries-contents .top,
.worries-contents .bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.worries-contents .top {
    margin-bottom: 30px;
}

.worries-contents p {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.worries-contents span {
    color: #EF7700;
}

.worries-contents img {
    width: 30%;
}

.text_danger {
    background: #FEB602;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.text_danger .heading_03 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 25px;
    margin-bottom: 16px;
    letter-spacing: .05em;
    font-weight: 600;
}

.dots {
    background-image: radial-gradient(circle at center, #fff 20%, transparent 20%);
    /* 点の色とサイズ調整 */
    background-position: top right;
    /* 点の位置 */
    background-repeat: repeat-x;
    /* 横方向に繰り返し */
    background-size: 1em 0.3em;
    /* 点の間隔とサイズ調整 */
    padding-top: .3em;
    /* 縦方向の位置調整 */
}

.area_drone-send {
    background: #EEEAE7;
    padding: 80px 0;
}

.area_drone-send .heading_02_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.send-contents {
    background: #fff;
    border-radius: 10px;
    padding: 60px 30px;
    text-align: center;
}

.send-contents .text {
    display: inline-block;
    margin-bottom: 50px;
}

.send-contents .text span {
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
    line-height: 2;
}

.send-contents .flow {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr .3fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.send-contents .item img {
    margin-bottom: 30px;
    aspect-ratio: 2/1;
    object-fit: contain;
}

.send-contents .item p {
    background-image: linear-gradient(120deg, #1FA200, #AAC900);
    color: #fff;
    padding: 16px;
    border-radius: 5px;
}

.area_drone-safety {
    background-image: linear-gradient(120deg, rgb(239, 119, 0), rgb(255, 186, 2));
    padding: 80px 0;
}

.area_drone-safety .heading_02 {
    color: #fff;
    max-width: 400px;
    margin: 0 auto 60px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 10px;
}

.list_drone-safety {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.list_drone-safety .item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
}

.list_drone-safety .number {
    position: absolute;
    top: -30px;
    left: -30px;
    background-image: linear-gradient(120deg, #1FA200, #AAC900);
    width: 90px;
    height: 90px;
    text-align: center;
    border-radius: 100px;
    color: #fff;
    font-family: futura-pt, sans-serif;
    font-size: 45px;
    line-height: 1;
    display: grid;
    place-content: center;
}

.list_drone-safety .number span {
    font-size: 10px;
    display: block;
    font-weight: 400;
}

.list_drone-safety h4 {
    text-align: center;
    color: #EF7700;
    font-size: 18px;
    margin-bottom: 20px;
}

.area_drone-construction {
    background: #EEEAE7;
    padding: 80px 0;
}

.area_drone-construction .heading_02_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.area_drone-construction .heading_02_wrapper img {
    height: 200px;
}

.area_drone-construction .image_company {
    margin: -10px 0 30px;
}

.area_drone-construction .text_message {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    background: #fff;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.area_drone-construction .text_message img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.area_drone-construction .text_message p {
    padding: 10px 40px;
    line-height: 2.5;
}

.marker {
    background: linear-gradient(transparent 60%, yellow 40%);
}

.area_contact {
    background: #EEEAE7;
    margin: 80px auto;
    padding: 80px 20px;
    border-radius: 5px;
}

.area_contact .heading-jp {
    color: #222;
    letter-spacing: .04em;
}

.area_contact .btn_contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.area_contact .tel-btn,
.area_contact .mail-btn {
    padding-left: 30px;
    position: relative;
}

.area_contact .tel-btn::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(../img/common/icon_tel_01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 51%;
    left: 31px;
    transform: translateY(-50%);
    transition: .5s;
}

.area_contact .tel-btn:hover::before {
    background: url(../img/common/icon_tel_02.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.area_contact .mail-btn::before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    background: url(../img/common/icon_mail_01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 51%;
    left: 31px;
    transform: translateY(-50%);
    transition: .5s;
}

.area_contact .mail-btn:hover::before {
    background: url(../img/common/icon_mail_02.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.area_under {
    background-image: linear-gradient(120deg, rgb(239, 119, 0), rgb(255, 186, 2));
    padding: 32px;
    position: relative;
}

.area_under::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background-image: url(../img/common/icon_green-house_02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -31px;
    left: 5%;
}

.area_under::after {
    content: '';
    position: absolute;
    width: 170px;
    height: 160px;
    background-image: url(../img/common/icon_male-worker_02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -35px;
    right: 5%;
}

/* ========================================
 * リフォーム事業
======================================== */
.area_renovation-chatch {
    padding: 0 0 80px;
}

.bg_takagi-mark {
    background: url(../img/renovation/icon_takagi-mark.svg) no-repeat center center;
    min-height: 320px;
    width: 100%;
    margin: 0 auto;
    background-size: contain;
    display: grid;
    place-content: center;
}

.bg_takagi-mark .text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #fff;
    letter-spacing: .3em;
}

.bg_takagi-mark .text span {
    background-color: #222;
    padding: 14px 2px;
}

.area_renovation-problems {
    padding: 80px 0;
    background: #FAFAF9;
}

.area_renovation-problems .heading_02_wrapper {
    margin-bottom: 50px;
}

.area_renovation-problems .heading_02 span {
    color: #2AA500;
}

.area_renovation-strength {
    padding: 80px 0 0;
    background: #EEEAE7;
    position: relative;
    z-index: -2;
}

.area_renovation-strength .container {
    padding-bottom: 80px;
}

.area_renovation-strength .heading-jp {
    color: #222;
}

.area_renovation-strength .text_chatch {
    text-align: center;
    margin-bottom: 80px;
}

.area_renovation-strength .text_chatch span {
    background: #2AA500;
    color: #fff;
    font-size: 20px;
    padding: 5px 16px;
    margin-right: 5px;
}

.list_renovation-strength {
    display: grid;
    gap: 70px;
}

.list_renovation-strength li {
    margin-bottom: 30px;
}

.list_renovation-strength .list-item_02 .heading-strength {
    display: flex;
    justify-content: flex-end;
}

.list_renovation-strength .text {
    text-align: justify;
}

.heading-strength h4 {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.heading-strength h4::before {
    position: absolute;
    bottom: 20px;
    left: -20px;
    z-index: -1;
    line-height: 1;
    content: attr(data-number);
    pointer-events: none;
    color: #fff;
    font-size: 70px;
    font-family: futura-pt, sans-serif;
    font-weight: 500;
}

.list_renovation-strength img {
    margin-bottom: 20px;
}

.renovation-strength_worries {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 100px;
}

.renovation-strength_worries h4 {
    font-size: 20px;
    text-align: center;
    letter-spacing: .07em;
    font-weight: 600;
    margin-bottom: 30px;
}

.renovation-strength_worries h4 span {
    color: #2AA500;
    font-size: 25px;
}

.renovation-strength_worries .list_worries {
    display: grid;
    width: 94%;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.renovation-strength_worries .list_worries li {
    text-align: center;
    background: #EEEAE7;
    padding: 5px;
    border-radius: 30px;
    font-size: 14px;
}

.renovation-strength_worries .text {
    text-align: center;
}

.renovation-strength_worries .text span {
    background: #EF7700;
    color: #fff;
    padding: 3px 8px;
    margin-right: 5px;
}

.renovation-strength_worries img {
    position: absolute;
    width: 250px;
    bottom: -100px;
}

.area_renovation-flow {
    padding: 80px 0;
}

.list_renovation-flow .step {
    display: flex;
    align-items: center;
    gap: 3vw;
}

.list_renovation-flow .step .step-number {
    display: grid;
    grid-template-columns: 80px 140px;
    gap: 30px;
    align-items: center;
}

.list_renovation-flow .step .step-number h4 {
    text-align: center;
}

.list_renovation-flow .step .number {
    background: linear-gradient(120deg, #EF7700, #FFBA02);
    text-align: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    color: #fff;
    font-family: futura-pt, sans-serif;
    letter-spacing: .1em;
    font-size: 12px;
    line-height: 1.1;
}

.list_renovation-flow .step .number span {
    display: block;
    font-size: 30px;
}

.list_renovation-flow .step .text {
    text-align: justify;
    font-size: 14px;
    border-left: 1px solid #D3D3D3;
    padding: 0 3vw;
}

.list_renovation-flow .balloon {
    position: relative;
    background-color: #fff;
    border-bottom: solid 1px #222;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.list_renovation-flow .balloon:before,
.list_renovation-flow .balloon:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.list_renovation-flow .balloon:before {
    border: solid 16px transparent;
    border-top: solid 16px #525252;
}

.list_renovation-flow .balloon:after {
    border: solid 18px transparent;
    border-top: solid 18px #fff;
    margin-top: -3px;
}

.list_renovation-flow .balloon p {
    margin: 0;
    padding: 0;
}

.area_renovation-works {
    background: #FAFAF9;
    padding: 80px 0;
}

.area_renovation-works .scroll-infinity__wrap {
    margin-bottom: 50px;
}

.area_renovation-works .scroll-infinity__item {
    width: calc(100vw / 4);
    margin-right: 20px;
    position: relative;
}

.area_renovation-works .scroll-infinity__item p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    text-align: center;
    width: 160px;
    font-size: clamp(13px, 0.72vw, 14px);
}

/* ========================================
 * お知らせ-記事一覧
======================================== */
.area_post-list {
    display: grid;
    grid-template-columns: 1fr 280px;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.list_post_contents {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.post-item {
    padding-bottom: 30px;
    background-image: linear-gradient(to right, #000, #000 1px, transparent 1px, transparent 8px);
    background-size: 4px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
}

.post-item_inner {
    display: grid;
    grid-template-columns: 250px 1fr;
    justify-content: center;
    gap: 20px;
}

.post-image img {
    border-radius: 5px;
    aspect-ratio: 1.91 / 1;
    object-fit: cover;
}

.post-contents .layout2 {
    display: grid;
    grid-template-columns: 90px 90px;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.post-contents .date {
    font-family: futura-pt, sans-serif;
}

.post-contents .category {
    background-color: #2AA500;
    border-radius: 20px;
    padding: 1px 20px;
    font-size: 12px;
    color: #fff;
    vertical-align: middle;
    text-align: center;
}

.post-title {
    margin-bottom: 10px;
}

.post-text {
    font-size: 12px;
    color: #777;
    font-weight: 400;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
    font-family: futura-pt, sans-serif;
}

.pagination li.current {
    background: linear-gradient(120deg, #EF7700, #FFBA02);
    color: #fff;
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 25px;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 25px;
    background-color: #fff;
    color: #EF7700;
    border: 1px solid #EF7700;
}

.sidebar_title {
    background: linear-gradient(120deg, #EF7700, #FFBA02);
    color: #fff;
    border-radius: 5px;
    padding: 12px 20px;
    font-weight: 400;
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar_title span {
    font-family: futura-pt, sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.15em;
    padding-right: 5px;
}

.list_archive {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 10px 0px;
    border-radius: 5px;
    padding: 20px 0;
}

.list_archive .item {
    width: 80%;
    margin: 0 auto;
    font-family: futura-pt, sans-serif;
    color: #EF7700;
    padding-bottom: 14px;
    margin-bottom: 16px;
    background-image: linear-gradient(to right, #000, #000 1px, transparent 1px, transparent 8px);
    background-size: 4px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
}

.list_archive .item.active a p {
    text-decoration: underline;
    color: #be6001;
}

/* ========================================
 * お知らせ-記事
======================================== */
.area_article {
    display: grid;
    grid-template-columns: 1fr 280px;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.article .layout2 {
    display: grid;
    grid-template-columns: 90px 90px;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.article .date {
    font-family: futura-pt, sans-serif;
}

.article .category {
    background-color: #2AA500;
    border-radius: 20px;
    padding: 1px 20px;
    font-size: 12px;
    color: #fff;
    vertical-align: middle;
    text-align: center;
}

.article-title {
    font-size: 25px;
    letter-spacing: .06em;
    margin-bottom: 30px;
}

.article-image {
    margin-bottom: 60px;
}

.article-image img {
    width: 100%;
    border-radius: 5px;
    aspect-ratio: 1.91 / 1;
    object-fit: cover;
}

.article-text {
    margin-bottom: 60px;
}

.list_page-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-btn a {
    display: block;
    color: #fff;
    padding: 5px 30px;
    border-radius: 20px;
    font-family: futura-pt, sans-serif;
    background: linear-gradient(120deg, #EF7700, #FFBA02);
}

/* ========================================
 * 会社概要
======================================== */
.area_message {
    background: #FAFAF9;
    padding: 4vw;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 10px 0px;
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.area_message .message-image img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.message-text .text {
    margin-bottom: 30px;
    text-align: justify;
    font-weight: 400;
}

.message-text .ceo-name {
    text-align: right;
    letter-spacing: .1em;
}

.message-text .ceo-name span {
    font-size: 20px;
    padding-left: 20px;
}

.list_outline {
    display: grid;
    grid-template-columns: .3fr 1fr;
    justify-content: center;
    letter-spacing: .1em;
    border-top: 1px solid #FFCE71;
    margin-bottom: 60px;
}

.list_outline dt {
    background: linear-gradient(120deg, #EF7700, #FFBA02);
    border-bottom: 1px solid #FFCE71;
    color: #fff;
    font-weight: 500;
    padding: 30px 2vw;
    display: flex;
    align-items: center;
}

.list_outline dd {
    display: flex;
    align-items: center;
    padding: 30px 4vw;
    border-bottom: 1px solid #FFCE71;
}

.area_map {
    margin-bottom: 100px;
}

.area_map iframe {
    width: 100%;
    aspect-ratio: 10 / 3;
    border-radius: 5px;
}

/* ========================================
 * プライバシーポリシー
======================================== */
.area_privacy {
    margin-bottom: 100px;
}

.area_privacy .text {
    margin-bottom: 60px;
    text-align: justify;
}

.list_privacy-policy dt {
    font-size: 20px;
    margin-bottom: 8px;
}

.list_privacy-policy dd {
    margin-bottom: 40px;
    text-align: justify;
}

.contact_privacy-policy {
    padding-top: 40px;
}

.contact_privacy-policy p:first-child {
    font-size: 20px;
    font-weight: 600;
}

/* ========================================
 * スタッフ
======================================== */
.area_staff {
    margin-bottom: 100px;
}

.list_staff-icon {
    display: grid;
    grid-template-columns: repeat(6, 140px);
    gap: 1.2vw;
    counter-reset: number;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.list_staff-icon .count {
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.list_staff-icon .count::after {
    counter-increment: number 1;
    content: counter(number, decimal-leading-zero);
    position: absolute;
    left: -7%;
    bottom: -16px;
    font-size: 90px;
    font-family: futura-pt, sans-serif;
    font-weight: 300;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
}

.list_staff-icon .count img {
    filter: brightness(80%);
}

.list_staff-icon .count p {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    color: #fff;
    font-family: futura-pt, sans-serif;
    font-size: 15px;
    letter-spacing: .1em;
    text-align: center;
    line-height: 1.3;
}

.list_staff {
    display: grid;
    gap: 80px;
}

.staff-heading {
    position: relative;
}

.staff-heading img {
    border-radius: 6vw 0 0 0;
}

.staff-heading .info {
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, #EF7700, #FFBA02);
    position: absolute;
    bottom: 30px;
    left: 0;
    padding: 30px 15px 8px 140px;
    color: #fff;
}

.staff-heading .staff-number {
    font-family: futura-pt, sans-serif;
    font-weight: 300;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    font-size: 110px;
    position: absolute;
    bottom: -25px;
    left: -10px;
}

.staff-heading .staff-info {
    border-left: 1px solid #fff;
    padding-left: 14px;
}

.staff-heading .staff-info .department {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .08em;
}

.staff-heading .staff-info .staff-name {
    font-size: 23px;
    letter-spacing: .06em;
}

.staff-heading .staff-info .staff-name span {
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-size: 12px;
    padding-left: 20px;
}

.area_faq {
    background: #EEEAE7;
    padding: 20px;
}

.area_faq_inner {
    background: #fff;
    padding: 30px 0;
    border-radius: 5px;
}

.faq-list {
    width: 90%;
    margin: 0 auto;
}

.faq-list li {
    border-bottom: 1px solid #EEEAE7;
}

.faq-list li:last-child {
    border-bottom: none;
}

.faq-ttl {
    position: relative;
    cursor: pointer;
    margin: 20px 0;
}

.faq-ttl p {
    display: flex;
    align-items: center;
}

.faq-ttl p::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #222;
    margin-right: 16px;
}

.faq-content {
    display: none;
    margin-left: 0;
}

.faq-content p {
    padding: 0 0 30px;
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
}

/* 「+」を追加 */
.faq-ttl::before,
.faq-ttl::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 14px;
    height: 2px;
    margin: auto;
    background-color: #000;
}

.faq-ttl::after {
    transform: rotate(90deg);
    transition: .3s;
}

/* クリックしたときに「+」を「−」に変更 */
.faq-ttl.is-active::after {
    transform: rotate(180deg);
}


/* ========================================
 * 採用情報
======================================== */
.area_recruit {
    margin-bottom: 80px;
}

.list_recruit {
    background: #FAFAF9;
    border-radius: 10px;
    padding: 5vw;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 10px 0px;
}

.recruit-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    justify-content: center;
    margin-bottom: 20px;
}

.recruit-label {
    background-image: linear-gradient(120deg, #1FA200, #AAC900);
    color: #fff;
    text-align: center;
    display: grid;
    align-items: center;
    padding: 14px 0;
}

.recruit-detail {
    border-bottom: 1px solid #6AB700;
    padding-bottom: 8px;
    display: grid;
    align-items: end;
    text-align: justify;
}

.area_recruit-people {
    display: grid;
    grid-template-columns: 1fr .3fr;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.area_recruit-people .area_info {
    background: linear-gradient(120deg, rgb(239, 119, 0), rgb(255, 186, 2));
    padding: 50px 2vw 50px 15vw;
}

.recruit-heading {
    margin-bottom: 30px;
    color: #fff;
}

.recruit-heading .heading_02 {
    text-align: left;
    letter-spacing: .1em;
    margin-bottom: 10px;
}

.recruit-heading .heading_02 span {
    color: #EF7700;
    background: #fff;
    padding: 5px 16px;
    font-size: 30px;
    margin-left: 10px;
}

.recruit-heading .heading_05 {
    text-align: left;
    letter-spacing: .1em;
    margin-bottom: 10px;
}

.recruit-heading .heading_05 span {
    color: #EF7700;
    background: #fff;
    padding: 5px 16px;
    font-size: 30px;
    margin-left: 10px;
}

.list_human-resources {
    display: grid;
    gap: 10px;
    margin-bottom: 30px;
}

.list_human-resources .item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    width: 90%;
    padding: 10px 20px 10px 30px;
    border-radius: 50px;
}

.list_human-resources .item .number {
    font-family: futura-pt, sans-serif;
    font-size: 35px;
    color: #6AB700;
}

.list_human-resources .item span {
    color: #EF7700;
}

.area_recruit-people .area_info .text {
    color: #fff;
    text-align: center;
}

.area_recruit-people .area_info .text span {
    border-bottom: 1px dotted #fff;
    padding-bottom: 10px;
}

.area_recruit-people .area_image img {
    min-height: 534px;
    object-fit: cover;
    object-position: top right;
}

.area_recruit-flow {
    display: grid;
    grid-template-columns: .3fr 1fr;
    gap: 20px;
}

.area_recruit-flow .area_image img {
    min-height: 731px;
    object-fit: cover;
    object-position: top right;
}

.area_recruit-flow .area_info {
    background: #EEEAE7;
    padding: 50px 17vw 50px 2vw;
}

.area_recruit-flow .area_info .heading_05 {
    font-size: 25px;
    color: #222;
}

.area_recruit-flow .area_info .list_flow {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
}

.area_recruit-flow .area_info .list_flow .item {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    gap: 20px;
    background: #fff;
    width: 90%;
    padding: 20px 40px;
    border-radius: 100px;
    position: relative;
}

.area_recruit-flow .area_info .list_flow .item::after {
    position: absolute;
    content: "";
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #222;
}

.area_recruit-flow .area_info .list_flow .item:last-child::after {
    display: none;
}

.area_recruit-flow .area_info .list_flow .item p {
    text-align: justify;
    font-size: 14px;
}

.area_recruit-flow .text {
    text-align: center;
}

/* ========================================
 * お問い合わせ
======================================== */
.area_contact-text .text span {
    color: #EF7700;
}

.area_contact-text .contact-form {
    margin: 50px 0 100px;
}

/* コンタクトフォーム7 */
.cf7-form .form-item p {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cf7-form .form-item label {
    width: 150px;
    margin-right: 10px;
}

.cf7-form .form-item input[type="text"],
.cf7-form .form-item input[type="email"],
.cf7-form .form-item input[type="tel"],
.cf7-form .form-item textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #D3D3D3;
}

.cf7-form .form-item textarea {
    height: 150px;
    resize: none;
}

.cf7-form .required {
    color: #EF7700;
    margin-left: 4px;
}

.cf7-form .form-acceptance {
    font-size: 14px;
    margin: 50px 0 20px;
    text-align: center;
}

.cf7-form .form-acceptance .wpcf7-form-control-wrap {
    padding-right: 8px;
}

.cf7-form .form-acceptance a {
    color: #EF7700;
    text-decoration: underline;
}

.cf7-form .form-submit {
    display: grid;
    justify-content: center;
    align-items: center;
}

.cf7-form .form-submit input[type="submit"] {
    background-image: linear-gradient(120deg, #1FA200, #AAC900);
    color: white;
    padding: 15px;
    width: 250px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s;
}

.cf7-form .form-submit input[type="submit"]:hover {
    opacity: .7;
    transition: .3s;
}

.cf7-form .wpcf7-spinner {
    display: block;
}

/* ========================================
 * 共通ページ(404)
======================================== */
.main-page .bg-area {
    background: linear-gradient(-120deg, #EF7700, #FFBA02);
    padding-top: 130px;
}

.main-page .container {
    padding: 50px;
}

.main-page .page-title {
    font-size: 50px;
    font-weight: 600;
    color: #EF7700;
}

.main-page .btn {
    margin-top: 50px;
}

/* 投稿設定 */
.article-page .article-text p:not(:first-child){
	margin-top:20px;
}