@charset "utf-8";
/* 文字のカラー */
:root {
    --font-color: rgb(59, 64, 67);
    --accent-color: rgb(174, 183, 162);
    --accent-color-opa: rgba(174, 183, 162, .9);
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf');
}
@font-face {
    font-family: 'NotoSans';
    src: url('../fonts/NotoSansJP-Regular.ttf');
}
html {
    /* 文字色 */
    color: var(--font-color);

    font-size: 16px;

    font-family: "Hiragino Sans W5", "Hiragino Kaku Gothic ProN W5", "NotoSans", sans-serif;

    /* スクロールをスムーズにする */
    scroll-behavior: smooth;
}
a {
    cursor: pointer;
    text-decoration: none;
}
img {
    vertical-align: top;
}
/* ボタンを左右中央にする */
.btn_area {
    margin: 0 auto;
    text-align: center;
    width: 90%;
}
/* ボタンに見えるデザインにするクラス */
.btn {
    background-color: var(--accent-color);
    color: white;
    padding: 14px 120px;
    font-size: 14px;
}

/* scroll_up */
.scroll_up,.scroll_up_soon {
    transition: .8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
    /* z-index: 10; */
}
.scroll_up.on,.scroll_up_soon.on {
    transform: translateY(0);
    opacity: 1.0;
}

/* -----------------
<header>ここから
----------------- */
header {
    position: relative;
}
#header_logo {
    width: 176px;
}
.header_slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}  
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    transition: opacity 3.0s ease;
}
.slide.s-active {
    opacity: 1;
    transition: opacity 3.0s ease;
}
#company_header_bg {
    background-image: url(../imgs/company_header_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    width: 100%;
}
header > h1 {
    left: 5%;
    position: absolute;
    top: 3%;
}
#navi {
    position: absolute;
    right: 2%;
    top: 2%;
    writing-mode: vertical-lr;
}
#navi ul {
    list-style-type: none;
}
#navi ul li {
    padding: 3px 0.3rem;
}
.nav_link{
    position:relative;
    display:block;
    text-decoration: none;
    color: rgba(255, 255, 255, .9);
    font-family: "Montserrat";
    font-size: 10px;
    font-weight: bold;
    letter-spacing: .15em;
    text-shadow: 1px 1px 5px black;
    z-index:1;
}
.nav_link::before{
    display:block;
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    background-color:green;
    transform: scaleY(0);
    transform-origin: bottom;
    z-index:-1;
    transition: .32s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.nav_link:hover{
    text-shadow: none;
    color:var(--font-color);
    transition: .32s cubic-bezier(0.39, 0.575, 0.565, 1);

}
.nav_link:hover:before{
    transform: scaleY(1);
    transform-origin: top;
}
.nav_link_hover {
    --base: #fff;
    --hover: #000;
    position: relative;
    z-index: 1;
    transition: color .32s cubic-bezier(0.39, 0.575, 0.565, 1)
}
.nav_link_hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--base);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .48s cubic-bezier(0.39, 0.575, 0.565, 1)
}
.nav_link_hover:hover {
    color: var(--hover);
    transition: color .48s cubic-bezier(0.39, 0.575, 0.565, 1) .12s
}
.nav_link_hover:hover::before {
    transform: scaleY(1);
    transform-origin: top
}
#navi ul a:hover {
    background-color: rgba(255, 255, 255, .9);
    color: var(--font-color);
    cursor: pointer;
    transition: .5s;
}

#ham,.hamnavi {
    display: none;
}

#news {
    color:#fff;
    display: flex;
    line-height:1.6em;
    align-items: stretch;
    /* font-size: 0.75rem; */
    position: absolute;
    right: 8%;
    bottom: 8%;
    text-shadow: 1px 1px 5px black;
}
#news h2 {
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: normal;
    letter-spacing: .2em;
    margin-right: 2rem;
}
#news ul.news-list {
    list-style: none;
    margin:0;
}
li.news-list-item{
    margin-bottom:0.5rem;
}
.news-list-item a{
    display:flex;
    color:#fff;
}
.news-list-item a:hover{
    opacity:0.7;
    transition:.3s;
}
span.news-list-date{
    display:block;
    font-size: 12px;
    margin-right:1.5em;
    width:6em;
}
span.news-list-content{
    display: block;
    font-size: 12px;
    /* line-height:1.6em; */
}
.lHeader::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 2px;
    left: 50%;
    height: 18px;
    background-color: #fff;
}

.lHeader_01 {
    /* font-size: 0.75rem; */
    left: 50%;
    letter-spacing: .5em;
    position: absolute;
    text-shadow: 1px 1px 5px black;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    writing-mode: vertical-lr;
}

.lHeader_01 h2 {
    color: white;
    font-family: "Montserrat";
    font-size: 18px;
    letter-spacing: .3em;
    /* writing-mode: vertical-lr; */
}

.lHeader_02 {
    font-size: 0.4rem;
    letter-spacing: .2em;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.lHeader_02 h2 {
    color: white;
    font-family: "Montserrat";
    font-size: 12px;
}
/* ----------------
<header>ここまで
---------------- */


/* ----------------
<main>ここから
---------------- */
#f_navi {
    background-color: rgba(170, 174, 164, .6);
    display: none;
    /* padding: 5px; */
    font-family: sans-serif;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}

#f_navi ul {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

#f_navi ul li {
    padding-bottom: 8px;
    padding-top: 8px;
}

#f_navi ul li a {
    padding-left: 11px;
    padding-right: 11px;
    position: relative;
}
.fnav_link{
    position:relative;
    display:block;
    text-decoration: none;
    color:#FFF;
    display: flex;
    letter-spacing: .1em;
    padding: 0 4px;
    z-index:1;
}
.fnav_link::before{
    display:block;
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    transform: scaleX(0);
    transform-origin: right;
    z-index:-1;
    transition: .32s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.fnav_link:hover{
    color:#000;
    transition: .32s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.fnav_link:hover:before{
    transform: scaleX(1);
    transform-origin: left;
}
.fHover__backIn {
    --base: #fff;
    --hover: #000;
    position: relative;
    z-index: 1;
    transition: color .32s cubic-bezier(0.39, 0.575, 0.565, 1)
}

.fHover__backIn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--hover);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .48s cubic-bezier(0.39, 0.575, 0.565, 1)
}

.fHover__backIn:hover {
    color: var(--hover);
    transition: color .48s cubic-bezier(0.39, 0.575, 0.565, 1) .12s
}

.fHover__backIn:hover::before {
    transform: scaleX(1);
    transform-origin: left
}

#f_navi ul li:first-of-type {
    padding-left: 11px;
}

#f_navi ul li:last-of-type {
    padding-right: 11px;
}

#f_navi ul li a span {
    color: var(--font-color);
    font-family: "Montserrat";
    font-size: 12px;
    font-weight: bold;
    height: 100%;
    letter-spacing: .1em;
    width: 100%;
}
#f_navi ul li a span:hover {
    color: var(--base);
    cursor: pointer;
}

.container_width {
    margin-left: auto;
    margin-right: auto;
    width: 500px;
}
.bg_company {
    background-color: var(--accent-color);
}
.lLeft {
    position: relative;
}

.lLeft::before {
    display: none;
    background-color: var(--font-color);
    content: "";
    height: 1px;
    left: 0;
    position: fixed;
    top: 59.5%;
    width: 1vw;
    z-index: 99;
}

.lLeft_01 {
    left: 2%;
    position: fixed;
    top: 56%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 99;
}

.lLeft_01 h2 {
    display: none;
    color: var(--font-color);
    font-family: "Montserrat";
    font-size: 8px;
    font-weight: bold;
    letter-spacing: .1em;
    writing-mode: vertical-lr;
}

    /* index.htmlの<main> */
    .variable-section{
        width:100%;
        margin:0 auto;
        position:relative;
    }
    .white-box{
        display:inline-block;
        background-color: rgba(255, 255, 255, .9);
        padding:0.6em;
    }
    .white-box-spacer{
        margin-left:0.5em;
    }
    #index_section05 .white-box {
        background-color: var(--accent-color-opa);
    }
    #index_section01,#index_section02 {
        display: flex;
        justify-content: space-around;
        margin-bottom: 200px;
        margin-top: 200px;
    }
    
    #index_section01 > div,#index_section02 > div {
        margin-bottom: auto;
        margin-top: auto;
    }

    #index_section01 > div:nth-child(1) {
        position: relative;
        width: 40%;
    }

    #index_section01 > div:nth-child(2),#index_section02 > div:nth-child(2) {
        width: 40%;
    }
    #index_main01_text_area {
        height: 80px;
        position: relative;
        width: 100%;
    }
    #index_main01_text {
        margin: 0;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: italic;
        font-weight: bold;
        line-height: 1.5em;
        letter-spacing: .1em;
        position: absolute;
        top: 20px;
        left: 15%;
    }
    #index_main01_shape {
        border-right: 2px solid #333;
        left: 46%;
        top: 80px;
        height: 10%;
        position: absolute;
    }
    #index_main01_img {
        margin-top: 100px;
    }

    #index_main01_img,#index_main03_img,#index_main04_img,#index_main06_img {
        width: 100%;
    }
    #index_main04_img_small {
        display: none;
    }

    #index_section01_h2,#index_section02_h2 {
        margin-top: auto;
        padding-top: 12px;
        font-size: 19px;
        font-family: "Hiragino Mincho ProN W5","NotoSerif",serif;
        font-weight: normal;
        letter-spacing: .5em;
    }

    #index_section01_p01,#index_section02_p01 {
        line-height: 2em;
        margin-top: 10px;
    }
    .index_section01_p_box,
    .index_section02_p_box{
        background-position: right top;
        background-repeat: no-repeat;
        padding-top:20px;
    }
    .index_section01_p_box{
        background-image: url("../imgs/index_main02.png");
        background-size: 30%;
        background-position: right top;
    }
    .index_section02_p_box{
        background-image: url("../imgs/index_main05.png");
        background-size: 20%;
        background-position: right top;
    }
    #index_section01_p01 {
        margin-bottom: 10px;
        font-size: 14px;
    }

    #index_section02_p01 {
        margin-bottom: 0;
        font-size: 14px;
    }

    #index_section02_p02 {
        font-size: 14px;
        line-height: 2em;
        margin-bottom: 10px;
        margin-top: 0;
    }

    #index_section02_p02_small {
        display: none;
    }

    #index_section02 > div:nth-child(1) {
        width: 48%;
    }

    #index_section02 > div:nth-child(2) {
        width: 40%;
    }

    #index_section03 {
        text-align: center;
        margin-top: 100px;
        margin-bottom: 100px;
    }
    #index_main07_back,#index_main08_back {
        width: 100%;
    }
    #index_main07_back_small {
        display: none;
    }
    #index_main08_back_small {
        display: none;
    }
    #index_section03 .vertical_text,
    #index_section04 .vertical_text {
        text-align: left;
        writing-mode: vertical-rl;
    }
    #index_section03 .vertical_text .vertical_text_right,
    #index_section04 .vertical_text .vertical_text_right {
        position: absolute;
        top: 5%;
        z-index: 10;
    }
    #index_section03 .vertical_text .vertical_text_right {
        top: 2%;
        right: 12%;
    }
    #index_section03 .vertical_text h2,
    #index_section04 .vertical_text h2,
    #index_section05 .vertical_text h2 {
        color: black;
        font-family: "Hiragino Mincho ProN W5","NotoSerif",serif;
        font-size: 15px;
        font-weight: bold;
        letter-spacing: .4em;
    }
    #index_section03 .vertical_text p,
    #index_section04 .vertical_text p,
    #index_section05 .vertical_text p {
        font-size: 12px;
        letter-spacing: .1em;
    }
    #index_section04 {
        text-align: center;
        margin-top: 100px;
        margin-bottom: 100px;
    }
    #index_main08_left {
        position: absolute;
        top: 20%;
        left: 18%;
        width: 35%;
    }
    #index_section04 .vertical_text .vertical_text_right {
        top: 2%;
        right: 18%;
    }

    #index_section05 {
        position: relative;
        text-align: center;
        margin-top: 100px;
        margin-bottom: 200px;
    }
    #index_main09_back {
        width: 100%;
    }
    #index_main09_back_small {
        display: none;
    }
    #index_main09_worldmap_sp {
        display: none;
    }
    #index_main09_worldmap {
        position: absolute;
        top: 0;
        width: 100%;
        left: 0;
    }

    #index_main09_img {
        position: absolute;
        top: 28%;
        right: 22%;
    }

    #index_section05 .vertical_text {
        text-align: left;
        writing-mode: vertical-rl;
    }

    #index_section05 .vertical_text div {
        position: absolute;
        top: 10%;
        right: 2%;
        z-index: 10;
    }
    .index_section05_p_box {
        position: absolute;
        top: 10%;
        right: 15%;
        background-image:url("../imgs/index_main09_img.png");
        background-position: right 40px bottom;
        background-size: 70%;
        background-repeat: no-repeat;
        padding-top: 53px;
        padding-bottom:30px;
    }
    #index_main09_text {
        font-family: "Montserrat";
        font-size: 16px;
        font-style: italic;
        font-weight: bold;
        line-height: 1.5em;
        letter-spacing: .1em;
        text-align: right;
        position: absolute;
        top: 44%;
        left: 27%;
    }
    #index_main09_shape {
        border-top: 2px solid #333;
        position: absolute;
        left: 31.5%;
        top: 39.0%;
        width: 12%;
        transform: rotate(120deg);
    }
    #btn_munakatagyu {
        padding: 16px 36px;
    }
    #index footer {
        margin-top: 200px;
    }

    /* company.htmlの<main>内 */
    #company_info {
        display: block;
        /* justify-content: space-around; */
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 200px;
        padding-top: 200px;
    }
    .company_info_content,
    .company_history_content{
        margin-bottom:7rem;
        margin-left: auto;
        margin-right: auto;
        width: 480px;
    }
    #company_info h2,
    #company_history h2,
    #greetings h2 {
        border-bottom: 1px solid var(--font-color);
        display: inline-block;
        padding-bottom: 3.5px;
        margin-bottom: 24px;;
        font-family: "Montserrat";
        font-size: 13px;
        font-weight: bold;
        letter-spacing: .15em;
    }
    .company_info_visual_content_wrap,
    .company_history_visual_content_wrap {
        position:relative;
        height:500px;
    }
    #company_img_info {
        position:absolute;
        width: 100vw;
        height:500px;
        object-fit: cover;
        left: 50%;
        top: 0%;
        transform: translate(-50%, 0%);
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        z-index:-1;
    }
    #company_img_history_wrap {
        position: relative;
    }
    #company_img_history {
        position:absolute;
        width: 100vw;
        max-height: 600px;
        object-fit: contain;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0%);
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        z-index:-1;
    }
    .company_table {
        color: var(--font-color);
        font-size: 14px;
        font-weight: normal;
        line-height: 2.3em;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        width: 480px;
    }
    .company_table th {
        font-weight: normal;
        padding-right: 24px;
        vertical-align: top;
    }
    .honsya_th,
    .honsya_td,
    .jigyounaiyou_th,
    .jigyounaiyou_td {
        line-height: 1.7em;
        padding-bottom: 0.6em;
    }
    .history-age {
        margin-right: 1em;
    }
    a.base-company-link,
    #map-link{
        display:inline-block;
        border-bottom: 1px solid var(--font-color);
        color: var(--font-color);
        font-size: 12px;
        line-height: 1.6rem;
        transition:0.3s;
    }
    a.base-company-link{
        margin-left: 1rem;
        padding-right: 0;
    }
    #map-link {
        margin-top: 5rem;
    }
    a.base-company-link::after,
    a#map-link::after{
        display:inline-block;
        content:"";
        width:1rem;
        height:1rem;
        background-image:url("../imgs/company_img_window.png");
        background-repeat:no-repeat no-repeat;
        background-size:contain;
        background-position: center center;
        vertical-align: text-top;
    }
    a.base-company-link:hover,
    a#map-link:hover{
        opacity:.6;
    }
    .base_company_link_eng,
    .map_link_eng {
        margin-right: 16px;
        font-family: "Montserrat";
        font-size: 12px;
        letter-spacing: .1em;
    }
    .map_link_spacer {
        margin-left: 24px;
        margin-right: 8px;
    }
    .base_company_link_eng {
        margin-right: 4px;
    }
    #company_history > div {
        display: block;
        /* justify-content: space-around; */
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 0;
        /* padding-top: 200px; */
    }
    #greetings {
        display: block;
        /* justify-content: space-around; */
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 50px;
    }
    #company_img_greeting01 {
        display:block;
        width: 61%;
        margin-top:3.5rem;
    }
    #greetings_right {
        margin-top: 40px;
        position: relative;
    }
    #company_img_greeting02 {
        position: absolute;
        top: 5px;
        right: 0;
        width: 144px;
    }
    #greetings h2 {
        margin-top: 50px;
        padding-bottom: 3px;
        width: 100%;
        border-bottom: 1px solid #CCC;
    }
    #greetings #name {
        color: var(--font-color);
        font-family: serif;
        font-size: 13pt;
    }
    #greetings_name {
        margin-right: 2em;
        font-family: "Hiragino Mincho ProN W5","NotoSerif",serif;
        font-size: 18.3px;
    }
    #greetings_name_eng {
        font-family: "Montserrat";
        font-size: 12px;
    }
    #greetings p {
        color: var(--font-color);
        font-size: 14px;
        line-height: 2.7em;
    }
        /* recruit.html内の<main> */
        #recruit_header_bg {
            background-image: url(../imgs/recruit_header_bg.jpg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 300px;
            width: 100%;
        }
        #recruit_small_container_width {
            padding-left: 30px;
            padding-right: 30px;
            box-sizing: border-box;
            width: 600px;
        }
        #recruit_area {
            margin-top: 100px;
            margin-bottom: 100px;
        }
        #recruit_area h2 {
            margin-bottom: 0.6em;
            font-size: 16px;
            font-weight: bold;
            line-height: 1.4em;
        }
        #recruit_area p {
            font-size: 14px;
            line-height: 2em;
        }
        #recruit_table {
            border-collapse: collapse;
            color: var(--font-color);
            font-size: 12px;
            font-weight: normal;
            line-height: 1.4em;
            margin: 50px auto 0;
            text-align: left;
        }
        #recruit_table tbody tr {
            border-top: 1px solid var(--accent-color);
        }
        #recruit_table tbody tr:last-of-type {
            border-bottom: 1px solid var(--accent-color);
        }
        #recruit_table th {
            background-color: #F0F3F5;
            font-weight: normal;
            padding: 0.8em 1em;
            letter-spacing: 0.2em;
            vertical-align: top;
            width: 72px;
        }
        #recruit_table td {
            padding-left: 1em;
            padding-right: 1em;
            letter-spacing: 0.2em;
        }
        #entry_btn {
            position: relative;
        }
        #entry_btn::after {
            position: absolute;
            content:">";
            right: 10%;
        }
        /* contact.html内の<main> */
        #mail_form_br {
            display: inline;
        }
        #contact_header_bg {
            background-image: url(../imgs/contact_header_bg.jpg);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 300px;
            width: 100%;
        }
        #contact #tel_area, #contact #mail_form{
            margin: 200px auto 0;
            text-align: center;
            width: 80%;
        }
        #tel_area h2 {
            border-bottom: 1px solid #3b4043;
            display: inline-block;
            margin-bottom: 70px;
            padding-bottom: 4px;
            font-family: "Montserrat";
            font-size: 16px;
            font-weight: bold;
            letter-spacing: .1em;
        }
        #tel_area p:nth-of-type(1) {
            margin-bottom: 150px;
            line-height: 1.9rem;
            text-align: left;
        }
        #tel_area p:nth-of-type(2) {
            margin-bottom: 50px;
        }
        #tel_area p:nth-of-type(3) {
            margin-bottom: 150px;
        }
        #tel_area #tel-fax-p {
            font-size: 1rem;
        }
        #tel_area #tel-fax-p span {
            display: inline-block;
            margin-right: 2rem;
        }        
        #mail_form h2 {
            border-bottom: 1px solid #3b4043;
            display: inline-block;
            margin-bottom: 70px;
            font-family: "Montserrat";
            font-size: 16px;
            font-weight: bold;
            letter-spacing: .1em;
        }
        #mailfield {
            width: 50%;
            margin-right: auto;
            margin-left: auto;
        }
        #hissu {
            display: inline-block;
        }
        #hissu p:nth-of-type(1) {
            font-size: 12px;
            line-height: 1.4em;
        }
        #hissu p:nth-of-type(2) {
            font-size: 0.6875rem;
            margin-top: 9px;
            margin-bottom: 30px;
            text-align: left;
        }
        #mail_form_ul {
            list-style-type: none;
            text-align: left;
        }
        #mail_form_ul li {
            margin-bottom: 1.4em;
        }
        #mail_form_ul li:last-child {
            margin-bottom: 89px;
        }
        #mail_form_ul label {
            display: inline-block;
            font-size: 12px;
            vertical-align: top;
        }
        #mail_form_ul input,
        #mail_form_ul #form_selectsubject,
        #mail_form_ul textarea {
            border: 1px solid #3b4043;
            font-size: 13px;
            padding: 0.3rem;
            width: 100%;
        }
        #mail_form_ul input {
            padding: 0.2rem;
        }
        #mail_form_ul #form_postcode1,
        #mail_form_ul  #form_postcode2 {
            width: auto;
        }
        #text-privacy {
            text-align: left;
        }
        #text-privacy {
            font-size: 14px;
        }
        .privacy_link {
            border-bottom: 1px solid var(--accent-color);
        }
        .mfp_buttons {
            margin-top: 30px;
        }
        #mail_form .btn {
            border: none;
            padding-left: 10em;
            padding-right: 10em;
        }
        #mail_form .btn:hover {
            cursor: pointer;
        }
        #contact .sp_area {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            width: 90%;
        }
    /* mail.php */
    #formwrap form {
        margin-top: 100px;
    }
    #formWrap .formTable  {
        width: 75%;
        margin-left: auto;
        margin-right: auto;
    }
    #formWrap .formTable dl {
        display: flex;
        text-align: left;
        padding: 1em;
        margin-top: 1.4em;
        margin-bottom: 1.4em;
    }
    #formWrap .formTable dt {
        margin-bottom: 0.1em;
        padding: 0.2rem;
        font-weight: bold;
        width: 20%;
    }
    #formWrap .formTable dd {
        margin: 0;
        padding: 0.2rem;
        width: 75%;
    }
    .r-form-btn-wrap {
        margin-bottom: 20px;
        margin-top: 40px;
    }
    #mail_form #formWrap .btn {
        padding-left: 0;
        padding-right: 0;
        width: 200px;
    }
    /* thanks.html */
    #thanks {
        margin-top: 100px;
        text-align: center;
    }
    #thanks .main_section .container_width>h2 {
        border-bottom: 1px solid #000;
        padding-bottom: 4px;
        display: inline-block;
        margin-bottom: 30px;
    }
    #thanks .main_section .container_width>p {
        margin-bottom: 100px;
    }
    #thanks #tel_area h2 {
        margin-bottom: 30px;
    }
    #thanks #tel_area p:nth-of-type(1) {
        margin-bottom: 50px;
    }
    /* privacy.html内の<main>タグ */
    #privacy_lHeader .lHeader_01 h2 {
        writing-mode: horizontal-tb;
    }
    #privacy_section {
        margin-left: auto;
        margin-right: auto;
        margin-top: 100px;
        width: 70%;
    }
    #privacy_area > p{
        font-size: 0.85rem;
        margin-bottom: 30px;
    }
    /* news.html内の<main>タグ */
    #news-main .lLeft::before {
        top: 58%;
    }
    #news_header_bg {
        background-image: url(../imgs/news_header_bg.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 300px;
        width: 100%;
    }
    #archives {
        margin-top: 100px;
        margin-bottom: 100px;
        margin-left: 13%;
        display: inline-table;
    }
    #archives > h2 {
        border-bottom: 1px solid black;
        font-family: "Montserrat";
        font-weight: normal;
        letter-spacing: .1em;
        margin-bottom: 10px;
        padding-bottom: 3px;
        width: 6.5em;
    }
    #archives details summary {
        display: block;
        font-size: 14px;
        line-height: 2em;
    }
    #archives details summary::before {
        border-top: 1px solid #000;
        content: "";
        display: inline-block;
        margin-bottom: 5px;
        margin-right: 1em;
        width: 20px;
    }
    #archives details li {
        list-style-type: none;
        font-size: 14px;
        line-height: 2em;
    }
    #archives details li::before {
        border-top: 1px solid #000;
        content: "";
        display: inline-block;
        margin-bottom: 5px;
        margin-left: 2em;
        margin-right: 1em;
        width: 20px;
    }
    #article_area {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin:0 auto;
        margin-bottom: 100px;
        width: 90%;
    }
    #article_area>div {
        margin-bottom: 50px;
        width: 40%;
    }
    .list-group-item-img {
        width: 250px;
        height: 166px;
    }
    .list-group-item-img img{
        width: 250px;
        height: 166px;
        object-fit: cover;
    }
    #article_area .list-group-item p {
        margin-top: 12px;
        font-size: 14px;
        letter-spacing: .1em;
        line-height: 1.5em;
    }
    .page_btn {
        color: var(--font-color);
        font-size: 1rem;
        letter-spacing: .1em;
        padding: 0.7em 1em;
    }
    .active{
        background-color: rgb(174, 183, 162);
    }
    .pagination {
        display: flex;
        list-style-type: none;
    }
    .pagination-container {
        width: 120px;
    margin-left: auto;
    margin-right: auto;
    }
    .pagination li {
        padding: 12px 16px;
        font-size: 12px;
    }
    .pageNumbers {
        background-color: rgb(174, 183, 162);
    }
    /* news記事.html内の<main>タグ */
    #news_article_header_bg {
        background-image: url(../imgs/news_article_header_bg.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 300px;
        width: 100%;
    }
    #news_article_container {
        width: 500px;
    }
    #content_area {
        margin-bottom: 100px;
        margin-top: 100px;
    }
    #content_area img {
        width: 100%;
    }
    #content_date {
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 0.875rem;
    }
    #content_area h2 {
        margin-bottom: 50px;
        padding-bottom: 16px;
        letter-spacing: 0.15em;
        border-bottom: 1px solid rgb(174, 183, 162);
    }

    /* 2026/1/1追加 ここから */
    #content_area h3,
    #content_area h4 {
        margin-bottom: 1.5rem;
    }
    #content_area .flex-yoko h4{
        margin-bottom:.25rem;
    }
    .blog-area-sec{
        margin-bottom:5rem;
    }
    .blog-area-sec p{
        font-size: 0.875rem;
        text-align: justify;
        line-height: 1.7em;
    }
    .blog-area-sec .flex-yoko{
        display:flex;
        flex-direction: column;
        flex-wrap: wrap-reverse;
        margin-bottom:2rem;
        align-items:center;
    }
    .blog-area-sec .flex-yoko div:nth-child(1){
        width:100%;
        margin:0 auto 1.5rem;
    }
    .blog-area-sec .flex-yoko div:nth-child(2){
        flex: 2;
        box-sizing:border-box;
        /* padding-left:2rem; */
    }
    .blog-area-list{
        list-style-position: inside;
    }
    .blog-area-list li{
        margin-right:0;
    }
    /* 2026/1/1追加 ここまで */

    .content_text {
        margin-top: 2rem;
        margin-bottom: 2rem;
        font-size: 0.875rem;
        text-align: justify;
        line-height: 1.6em;
    }
    #news_article_container {
        margin-left: auto;
        margin-right: auto;
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }
    #content_area .content_vertical_pic {
        width: 50%;
    }
    .link-container {
        text-align: center;
        display: flex;
        justify-content: space-around;
    }
      
    .link {
        display: inline-block;
        margin: 10px;
        padding: 5px 10px;
        font-size: 0.875rem;
        color: var(--font-color);
        text-decoration: none;
        border-radius: 5px;
    }    
    .link:hover {
        cursor: pointer;
    }

    /* sitemaps.html */
    #sitemaps .main_section {
        width: 60%;
        margin-top: 100px;
        margin-left: auto;
        margin-right: auto;
    }
    #sitemaps li {
        padding-bottom: 12px;
    }
    #sitemaps ul {
        list-style-type: none;
        padding-bottom: 8px;
    }
    #sitemaps ul > ul {
        margin-left: 24px;
    }
    .sitemaps_bold {
        font-weight: bold;
    }
/* ----------------
<main>ここまで
---------------- */


/* ----------------
<footer>ここから
---------------- */
footer {
    background-color: var(--accent-color);
    height: 350px;
    margin-top: 100px;
}

#footer_area {
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 70%;
}

#footer_logo {
    left: 0;
    position: absolute;
    top: 50px;
}
#footer_logo img {
    width: 201px;
}
#footer_company_name {
    font-size: 0.8rem;
    line-height: 1.5em;
    position: absolute;
    top: 120px;
    left: 0;
}

#footer_company_info {
    font-size: 12px;
    line-height: 1.7em;
    position: absolute;
    left: 0;
    bottom: 90px;
}

#footer_img01 {
    position: absolute;
    bottom: 90px;
    left: 132px;
    width: 200px;
}

#footer_return_top {
    bottom: 78px;
    position: absolute;
    right: 0;
}
#footer_return_top img {
    width: 90%;
}
#footer_return_top_sp {
    display: none;
}
#footer_return_top_sp img {
    display: none;
}
#copyrights {
    position: absolute;
    bottom: 50px;
    left: 50%;
    font-size: 11px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);  
}
#footer_sitemaps {
    position: absolute;
    top: 119px;
    right: 16px;
    font-size: 11px;
}
#sitemaps_link {
    display:inline-block;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--font-color);
    color: var(--font-color);
    transition:0.3s;
}
#sitemaps_link::after {
    display:inline-block;
    margin-left: 0.5em;
    content:"";
    width:1em;
    height:1em;
    background-image:url("../imgs/company_img_window.png");
    background-repeat:no-repeat no-repeat;
    background-size:contain;
    background-position: center center;
    vertical-align: text-top;
}
#sitemaps_link:hover{
    opacity:.6;
}

/* ----------------
<footer>ここまで
---------------- */
.br_sp_on {
    display: none;
}