@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;
    color: #58A300;
}

.sp-br {
    display: contents;
}

.sp-500 {
    display: contents;
}

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

.btn a {
    border: 1px solid #EF7700;
    background: #fff;
    color: #EF7700;
    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 #EF7700;
    border-right: 2px solid #EF7700;
    transform: rotate(45deg);
    box-sizing: border-box;
    transition: .5s;
}

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

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

.pc-btn_none1180 {
    display: none;
}

.sp-btn_none1180 {
    display: block;
}

/* ========================================
 * ヘッダー
======================================== */
.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;
    background: #fff;
}

.header-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 10px;
}

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

.nav_header-pc {
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 2vw;
    align-items: center;
    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: #2AA500;
    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: linear-gradient(120deg, rgb(31, 162, 0), rgb(170, 201, 0));
    height: 130px;
    color: #fff;
    display: grid;
    place-content: center;
    transition: .3s;
}

.nav_header-pc .btn-contact:hover {
    background: linear-gradient(120deg, rgba(30, 162, 0, 0.7), rgb(170, 201, 0, 0.7));
    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: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.scroll-nav .header-logo a {
    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 {
    aspect-ratio: 4/2;
    background: url(../img/kenzai-index/mv.jpg) no-repeat center center;
    background-size: cover;
    margin-top: 130px;
    position: relative;
}

.area_catch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: #fff;
    border-radius: 5px;
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 3vw;
}

.area_catch_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

.area_catch_inner .catch_l {
    position: relative;
}

.area_catch h2 {
    font-size: clamp(30px, 4.2vw, 60px);
    font-weight: 600;
    letter-spacing: 0.3em;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.area_catch_inner .catch_l img {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 1;
    width: 45%;
}

.area_catch_inner .catch_l span {
    color: #58A300;
}

.area_catch_inner .catch_l .selif {
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    color: #222;
    font-size: clamp(18px, 3.5vw, 50px);
}

.area_catch_inner .catch_r {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
}

.area_catch_inner .catch_r img {
    max-width: 200px;
    margin-left: auto;
}

.area_catch_inner .catch_r p {
    letter-spacing: 0.1em;
    font-size: 14px;
    border-left: 1px solid #D3D3D3;
    padding-left: 20px;
}

.area_catch .vertical-right,
.area_catch .vertical-left {
    position: absolute;
    background: #AF2D2D;
    color: #fff;
    writing-mode: vertical-rl;
    padding: 16px 4px;
    letter-spacing: .4em;
}

.area_catch .vertical-right {
    top: -140px;
    right: 10px;
}

.area_catch .vertical-left {
    top: -115px;
    right: 55px;
}

/* トップ-取り扱いメーカー
======================================== */
.area_top-manufacturer {
    padding: 80px 0;
    background: #FAFAF9;
}

.area_top-manufacturer_heading {
    text-align: center;
    margin-bottom: 40px;
}

@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 / 8);
    background: #fff;
    margin: 0 0 10px 15px;
    border-radius: 5px;
    padding: 15px 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 10px 0px;
    display: grid;
    grid-template-columns: center;
}

.scroll-infinity__item img {
    height: 45px;
    object-fit: contain;
    margin: 0 auto;
}

/* トップ-キャッチ
======================================== */
.area_top-catch {
    min-height: 480px;
    width: 100%;
    background: url(../img/kenzai-index/bg_top-catch.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area_top-catch .container {
    border: solid 1px #fff;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(5px);
    padding: 3vw;
    border-radius: 5px;
}

.area_top-catch .container .image {
    max-width: 250px;
    width: 90%;
    margin: 0 auto 20px;
}

.area_top-catch .container h2 {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    letter-spacing: .25em;
}

.area_top-catch .container h2 span {
    font-size: 25px;
}

/* トップ-選ばれる3つの理由
======================================== */
.area_top-strength {
    padding: 80px 0;
}

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

.list_strength {
    display: grid;
    gap: 50px;
}

.list_strength .strength_item {
    max-width: 1560px;
}

.list_strength .strength_01,
.list_strength .strength_03 {
    margin-left: auto;
}

.list_strength .strength_info {
    max-width: 1200px;
    margin-bottom: 30px;
}

.list_strength .strength_02 .strength_info {
    margin-left: auto;
    text-align: right;
}

.list_strength .number {
    font-size: 60px;
    font-family: futura-pt, sans-serif;
    line-height: 1.3;
}

.list_strength .strength_01 .number {
    color: #006EBF;
}

.list_strength .strength_02 .number {
    color: #6FC3AC;
}

.list_strength .strength_03 .number {
    color: #FFE246;
}

.list_strength h4 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}

.list_strength .text-area {
    display: flex;
    justify-content: space-between;
}

.list_strength .strength_02 .text-area {
    display: block;
}

.strength_image .list_image {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.strength_image .list_image .item {
    position: relative;
}

.strength_image .list_image .item p {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 6px 40px;
    border-radius: 15px 0 0 0;
    font-size: 14px;
}

/* トップ-スタッフ
======================================== */
.area_top-staff {
    padding: 80px 0;
    background: #EEEAE7;
    position: relative;
    overflow: hidden;
}

.area_top-staff .bg-image_01,
.area_top-staff .bg-image_02 {
    position: absolute;
    border-radius: 200px;

}

.area_top-staff .bg-image_01 {
    width: clamp(80px, 15%, 300px);
    top: 30px;
    right: -20px;
}

.area_top-staff .bg-image_02 {
    width: clamp(60px, 12%, 220px);
    bottom: 20px;
    left: -20px;
}

.area_top-staff_heading .staff_heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.area_top-staff_heading .sub-text {
    margin-bottom: 60px;
}

.area_top-staff_heading .sub-text span {
    background: linear-gradient(transparent 60%, #fff 40%);
}

.list_staff-btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.list_staff-btn li {
    background: #fff;
    border-radius: 5px;
    padding: 50px 3vw 30px;
    position: relative;
}

.list_staff-btn img {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 30%;
    border-radius: 20vw;
}

.list_staff-btn .item_heading {
    margin-bottom: 30px;
    font-weight: 600;
}

.list_staff-btn h4 {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.list_staff-btn h4::before {
    position: absolute;
    top: -20px;
    left: -20px;
    line-height: 1;
    z-index: -1;
    pointer-events: none;
    color: #EEEAE7;
    font-size: 50px;
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    letter-spacing: .15em;
}

.list_staff-btn .item_staff h4::before {
    content: "STAFF";
}

.list_staff-btn .item_recruit h4::before {
    content: "RECRUIT";
}

/* トップ-ニュース
======================================== */
.area_top-news {
    background-image: linear-gradient(120deg, #1FA200, #AAC900);
    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 h3 {
    color: #222;
}

.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: #2AA500;
    transition: .3s;
}

.area_top-news_article-heading .arrow:hover::before,
.area_top-news_article-heading .arrow:hover::after {
    background: #2AA500;
    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: #EF7700;
    border-radius: 20px;
    padding: 1px 20px;
    font-size: 12px;
    color: #fff;
    vertical-align: middle;
}

.list_top-news h4:hover {
    color: #2AA500;
    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/kenzai-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;
}

/* ========================================
 * コンタクト
======================================== */
.area_contact {
    min-height: 650px;
    width: 100%;
    background: url(../img/common/bg_kenzai-contact.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area_contact .container {
    border: solid 1px #fff;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(5px);
    padding: 80px 20px;
    border-radius: 5px;
}

.area_contact .area_heading_sub {
    margin-bottom: 40px;
}

.area_contact .heading {
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
}

.area_contact .heading span {
    font-size: 30px;
}

.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_03.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_03.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;
}

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

.area_footer-menu {
    padding: 80px 0;
    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, #1FA200, #AAC900);
    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: #58A300;
}

.breadcrumb li:first-child::before {
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
    margin-right: 3px;
    background-image: url(../img/common/icon_home_02.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_materials {
    z-index: 0;
    position: relative;
}

.area_sub-visual {
    position: relative;

    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_heading_sub {
    text-align: center;
    margin-bottom: 60px;
}

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

/* ========================================
 * 建材一覧
======================================== */
/* タブ */
/* .tab-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-content: center;
  gap: 1vw;
  margin-bottom: 50px;
}

.tab {
  text-align: center;
  position: relative;
  color: #fff; 
  cursor: pointer;
}
.tab::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  border-radius: 5px;
  transition: .3s;
}
.tab img{
  border-radius: 5px;
}
.tab p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-shadow: 0px 3px 15px #3B3B3BCE;
  letter-spacing: .08em;
}

.tab.active::before {
  background-color: rgba(0, 0, 0, 0.2);
  transition: .3s;
}
.content-container{
  background: #FAFAF9;
  padding: 80px 0;
  position: relative;
  z-index: -2;
}
.content {
  display: none;
}

.content.show {
  display: block;
}  */


.area_contents-btn {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: center;
    gap: 1vw;
    margin-bottom: 50px;

}

.contents-btn {
    text-align: center;
    position: relative;
    color: #fff;
}

.contents-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border-radius: 5px;
    transition: .3s;
}

.contents-btn:hover::before {
    background-color: rgba(0, 0, 0, 0.2);
}

.area_contents-btn .light::before {
    background-color: rgba(0, 0, 0, 0.2);
}

.contents-btn img {
    border-radius: 5px;
}

.contents-btn p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-shadow: 0px 3px 15px #3B3B3BCE;
    letter-spacing: .08em;
}

.area_materials-info {
    background: #FAFAF9;
    padding: 80px 0;
    position: relative;
    z-index: -2;
}

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

.materials-heading_wrapper {
    position: relative;
}

.materials-heading_wrapper::after {
    content: "";
    width: 30%;
    height: 150px;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: -1;
    border-radius: 0 3vw 0 0;
}

.list_matelials .layout2 {
    max-width: 1560px;
    width: 94%;
    margin: 0 0 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.area_materials-heading {
    display: flex;
    gap: 3vw;
}

.heading_02 {
    writing-mode: vertical-rl;
    font-size: 30px;
    letter-spacing: .2em;
    line-height: 1.2;
    text-align: right;
    align-self: start;
}

.heading_02 span {
    display: block;
    font-size: 16px;
    padding: 8px;
    font-family: futura-pt, sans-serif;
    color: #58A300;
    font-weight: 400;
    letter-spacing: .1em;
}

.area_materials-heading .heading-text {
    align-self: center;
    text-align: justify;
}

.list_manufacture-materials {
    display: grid;
    gap: 60px;
}

.manufacture-info .layout2_02 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.manufacture-heading {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 40px;
}

.manufacture-heading img {
    width: 150px;
    height: 50px;
    object-fit: contain;
}

.manufacture-heading h4 {
    position: relative;

}

.manufacture-heading h4::before {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #D3D3D3;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.external-link a {
    border: 1px solid #222;
    display: inline-block;
    width: 120px;
    font-size: 14px;
    text-align: center;
    padding: 3px 10px 3px 0;
    border-radius: 3px;
    position: relative;
    transition: .3s;
}

.external-link a:before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: url(../img/materials/icon_external-link_01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    transition: .3s;
}

.external-link a:hover {
    background: #222;
    color: #FAFAF9;
}

.external-link a:hover::before {
    background: url(../img/materials/icon_external-link_02.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.manufacture-info .text {
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-align: justify;
}

.list_matelial-image {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.space {
    margin-bottom: 40px;
}

.item_material .image {
    position: relative;
    margin-bottom: 5px;
}

.item_material .image p {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #222;
    color: #fff;
    padding: 6px 20px;
    border-radius: 0 15px 0 0;
    font-size: 14px;
}

.material-name {
    font-size: 14px;
}

.contents-none h4::before {
    content: none;
}

.area_info-text .area_text_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.heading_03 {
    font-size: 20px;
}

.area_info-text .text {
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-align: justify;
}

/* 板金役物 */
.area_sheet-metal-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.area_sheet-metal-info h4 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 1px solid #222;
    margin-bottom: 15px;
}

.area_sheet-metal-info .text {
    text-align: justify;
}

.area_sheet-metal-info .info-text span {
    color: #EF7700;
}

.area_sheet-metal-info .info-note {
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 20px;
}

.area_sheet-metal-info .note_inner {
    display: grid;
    place-content: center;
}

.area_sheet-metal-info .info-note .text {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    padding: 3vw;

}

.area_sheet-metal-info .info-note .text span {
    background: linear-gradient(transparent 60%, yellow 40%);
}

.area_sheet-metal-info .info-note img {
    align-self: end;
}

.area_sheet-metal-consultation {
    padding: 60px 0;
    color: #fff;
    background-image: linear-gradient(120deg, #1FA200, #AAC900);
}

.area_sheet-metal-consultation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.area_sheet-metal-consultation h4 {
    font-size: 22px;
    letter-spacing: .1em;
    line-height: 2.3;
}

.area_sheet-metal-consultation h4 span {
    border-bottom: 2px dotted #fff;
    padding-bottom: 5px;
}

.area_sheet-metal-image {
    padding: 60px 0 0;
    position: relative;
}

.area_sheet-metal-image::after {
    content: "";
    width: 50%;
    height: 400px;
    background: #EEEAE7;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: -1;
    border-radius: 0 3vw 0 0;
}

.area_sheet-metal-image .image-heading {
    position: relative;
    max-width: 220px;
    width: 90%;
    margin: 40px 0;
}

.area_sheet-metal-image .image-heading h4 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.area_sheet-metal-image .image-heading p {
    color: #fff;
    font-size: 45px;
    letter-spacing: .2em;
    line-height: 1.3;
    font-family: futura-pt, sans-serif;
}

.area_sheet-metal-image img {
    border-radius: 5px;
}

/* 波板・角波 */
.item_corrugated-plate {
    background: #EEEAE7;
    padding: 80px 0;
}

.item_corrugated-plate .materials-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5vw;
    margin-bottom: 60px;
}

.item_corrugated-plate .heading_03_wrapper {
    background: #fff;
    border-radius: 0 3vw 0 0;
    display: grid;
    place-content: center;
    padding: 20px;
}

.item_corrugated-plate .heading_03 {
    margin-bottom: 20px;
}

.corrugated-plate_images {
    display: grid;
    grid-template-columns: .49fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
}

.image1 {
    grid-area: 1 / 1 / 2 / 2;
}

.image2 {
    grid-area: 2 / 1 / 3 / 2;
}

.image3 {
    grid-area: 1 / 2 / 3 / 3;
}

.image4 {
    grid-area: 1 / 3 / 3 / 4;
}

/* 雨樋在庫 */
.area_stock {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 10px 0px;
    margin-top: 60px;
    padding: 4vw;
    border-radius: 10px;
}

.heading_04 {
    font-size: 20px;
    font-weight: 600;
    color: #EF7700;
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}

.heading_04::before {
    content: "";
    background: #EF7700;
    width: 7px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.area_stock .heading-text {
    padding-left: 20px;
    margin-bottom: 20px;
}

.list_stock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.list_stock .item {
    background: #F5F5F5;
    padding: 30px;
    border-radius: 5px;
}

.list_stock .ttl {
    background: #EF7700;
    color: #fff;
    padding: 5px 10px;
    width: 200px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 20px;
}

.list_stock .deta_stock {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.list_stock .deta_stock dt,
.list_stock .deta_stock dd {
    display: flex;
    align-items: center;
}

.list_stock .deta_stock dt {
    width: 30%;
    margin-bottom: 5px;
    background-color: #FEB602;
    justify-content: center;
    padding: 10px;
    color: #fff;
}

.list_stock .deta_stock dd {
    width: 70%;
    background-color: #fff;
    margin-bottom: 5px;
    padding: 10px;
}

.list_stock .stock {
    background: #fff;
    padding: 20px;
}

/* 雨どいの名称 */
.item_rain-gutter-name {
    background: #fff;
    padding-bottom: 80px;
}

.item_rain-gutter-name .container_bg {
    background-image: linear-gradient(120deg, #1FA200, #AAC900);
    color: #fff;
    padding: 60px 0;
    margin-bottom: 60px;
}

.item_rain-gutter-name .heading_03 {
    margin-bottom: 20px;
}

/* グリッドスタイル */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    /* 画像間の余白 */
}

.image-grid p {
    color: #fff;
    background: #EF7700;
    margin-bottom: 5px;
    width: 180px;
    text-align: center;
    font-size: 14px;
}

/* サムネイル画像のスタイル */
.thumbnail {
    width: 100%;
    /* 幅を100%に設定 */
    cursor: pointer;
}

.thumbnail:hover {
    opacity: .5;
}

/* モーダルのスタイル */
.modal {
    display: none;
    /* 初期状態は非表示 */
    position: fixed;
    /* スクロールしても位置が固定 */
    z-index: 100;
    /* 他の要素の上に表示 */
    left: 0;
    top: 0;
    width: 100%;
    /* 幅は全体 */
    height: 100vh;
    /* 高さも全体 */
    overflow: auto;
    /* コンテンツが多い場合はスクロール */
    background-color: rgba(0, 0, 0, 0.7);
    /* 背景の透明度 */
}

.modal-content {
    margin: 10% auto;
    /* 中央寄せ */
    display: block;
    /* ブロック要素 */
    max-width: 700px;
    /* 最大幅を設定 */
    width: 80%;
    /* 幅は80% */
}

.close {
    position: absolute;
    top: 80px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/* 寸法 */
.item_rain-gutter-large .area_stock {
    background-image: linear-gradient(120deg, #1FA200, #AAC900);
}

.item_rain-gutter-large .heading_04 {
    color: #fff;
}

.item_rain-gutter-large .heading_04::before {
    background: #fff;
}

.item_rain-gutter-large .list_stock {
    grid-template-columns: 1fr 2fr;
}

.item_rain-gutter-large .list_stock .item {
    background: #fff;
    display: grid;
    place-content: center;
}

.list_size {
    display: grid;
    gap: 10px;
}

.list_size li {
    color: #58A300;
}

.list_size li span {
    background: #58A300;
    color: #fff;
    display: inline-block;
    width: 110px;
    text-align: center;
    margin-right: 10px;
}

/* カタログ */
.area_catalog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 10px 0px;
    position: relative;
    z-index: -2;
}

.area_catalog dl {
    display: grid;
    align-items: center;
    padding: 20px;
    width: 90%;
    margin: 0 auto;
}

.area_catalog dl dt {
    background: #EF7700;
    text-align: center;
    color: #fff;
    padding: 5px 10px;
    border-radius: 30px;
    font-weight: 500;
}

.area_catalog dl dd {
    width: 70%;
    margin: 0 auto;
    position: relative;
}

.area_catalog dl dd::before {
    content: "";
    display: block;
    width: 130px;
    height: 100px;
    background: url(../img/materials/icon_catalog.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -35%;
    left: -58px;
    z-index: -1;
}

/* ========================================
 * お知らせ-記事一覧
======================================== */
.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: #EF7700;
    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-image: linear-gradient(120deg, #1FA200, #AAC900);
    color: #fff;
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 25px;
}

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

.sidebar_title {
    background-image: linear-gradient(120deg, #1FA200, #AAC900);
    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: #58A300;
    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: #3b6f00;
}

/* ========================================
 * お知らせ-記事
======================================== */
.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: #EF7700;
    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-image: linear-gradient(120deg, #1FA200, #AAC900);
}

/* ========================================
 * 会社概要
======================================== */
.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 #B8E300;
    margin-bottom: 60px;
}

.list_outline dt {
    background: linear-gradient(120deg, #1FA200, #AAC900);
    border-bottom: 1px solid #B8E300;
    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 #B8E300;
}

.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, #1FA200, #AAC900);
    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, #EF7700, #FFBA02);
    color: #fff;
    text-align: center;
    display: grid;
    align-items: center;
    padding: 14px 0;
}

.recruit-detail {
    border-bottom: 1px solid #EF7700;
    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-image: linear-gradient(120deg, #1FA200, #AAC900);
    padding: 50px 2vw 50px 15vw;
}

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

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

.recruit-heading .heading_05 span {
    color: #2AA500;
    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: #EF7700;
}

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

.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: #58A300;
    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, #EF7700, #FFBA02);
    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 {
    margin-top: 130px;
    border-top: 1px solid #F5F5F5;
}

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

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

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

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