@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;
}
input,
select,
textarea {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}
select {
    color: #000;
    /* background-color: #fff; */
}
/* ボタンを左右中央にする */
.btn_area {
    margin: 0 auto;
    text-align: center;
    width: 90%;
}
/* ボタンに見えるデザインにするクラス */
.btn {
    background-color: var(--accent-color);
    color: white;
    font-size: 14px;
    padding-top: 14px;
    padding-bottom: 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 {
    /* height: 100vh; */
    position: relative;
    /* width: 100%; */
    /* overflow: hidden; */
}
#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;
    transition: opacity 3.0s ease;
    object-fit: cover;
}
.slide.s-active {
    opacity: 1;
    transition: opacity 3.0s ease;
}
#index_header_bg {
    background-image: url(../imgs/index_header_bg_small.jpg);
}
#company_header_bg {
    background-image: url(../imgs/company_header_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    width: 100%;
}

header > h1 {
    left: 5%;
    position: absolute;
    top: 3%;
}
#navi {
    display: none;
    position: absolute;
    right: 2%;
    top: 2%;
}
#navi ul {
    display: flex;
    list-style-type: none;
}

#ham {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 998;
}
.hamnavi_toggle {
    display: block;
    position: relative;
    width: 1.75rem;
    height: 1.5rem;
}
.hamnavi_toggle i {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    position: absolute;
    transition: transform .5s, opacity .5s;
    box-shadow: 1px 1px 2px #555;
}
.hamnavi_toggle i:nth-child(1) {
    top: 0;
}
.hamnavi_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}
.hamnavi_toggle i:nth-child(3) {
    bottom: 0;
}
.hamnavi_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}
.hamnavi_toggle.show i:nth-child(2) {
    opacity: 0;
}
.hamnavi_toggle.show i:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
}
.hamnavi {
    position: fixed;
    top: -200px;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
    z-index: 997;
}
.hamnavi.show {
    right: 0;
    top: 0;
    opacity: 1;
    transition: .8s;
    visibility: visible;
}
.hamnavi_menu_ul {
    background-color: rgba(0, 0, 0, .6);
    list-style-type: none;
    font-family: sans-serif;
    padding-top: 50px;
    padding-bottom: 10px;
    width: 100%;
}
.hamnavi_menu_ul .hamnavi_menu_li {
    padding-bottom: 5px;
    padding-top: 5px;
}
.hamnavi_menu_ul .hamnavi_menu_li a {
    color: white;
    font-size: 0.875rem;
    letter-spacing: .1em;
    padding-right: 20px;
    padding-left: 20px;
    writing-mode: vertical-lr;
    min-height: 50px;
    min-width: 18px;
}
#news {
    color:#fff;
    display: block;
    /* display: flex; */
    line-height: 1.6rem;
    /* font-size: 12px; */
    position: absolute;
    bottom: 6%;
    left: 5%;
    right: auto;
    text-shadow: 1px 1px 5px black;
}
#news h2 {
    font-family: "Montserrat";
    font-size: 10pt;
    font-weight: bold;
    letter-spacing: .2em;
    margin-right: 10px;
}
#news ul {
    padding: 0;
    list-style: none;
    /* text-shadow: 1px 1px 1px white; */
}
.news-list-item a{
    color:#fff;
}
span.news-list-date{
    font-size: 12px;
    margin-right:1.5em;
}
span.news-list-content{
    font-size: 12px;
    /* line-height:1.6em; */
}
.lHeader::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 2px;
    left: 50%;
    height: 37px;
    background-color: #fff;
}

.lHeader_01 {
    font-size: 12pt;
    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%);
    line-height: 0;
}

.lHeader_01 h2 {
    color: white;
    font-family: "Montserrat";
    font-size: 17px;
    letter-spacing: .5em;
    writing-mode: vertical-lr;
}


.lHeader_02 {
    font-size: 6pt;
    letter-spacing: .2em;
    position: absolute;
    bottom: 40px;
    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;
    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;
}
#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%;
    z-index: 10;
}
#f_navi ul li a span:before {
    background: var(--font-color);
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    transition: .32s cubic-bezier(0.39, 0.575, 0.565, 1);
    width: 0;
    z-index: -1;
}

#f_navi ul li a span:hover {
    /* background-color: var(--font-color); */
    color: white;
    cursor: pointer;
}

#f_navi ul li a span:hover:before {
    width: 100%;
}
.container_width {
    margin-left: auto;
    margin-right: auto;
    width: 85%;
}

.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: 58%;
    width: 1vw;
    z-index: 99;
}

.lLeft_01 {
    left: 2%;
    position: fixed;
    top: 55%;
    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-weight: bold;
    font-size: 0.5rem;
    writing-mode: vertical-lr;
}

    /* index.htmlの<main> */
    .white-box{
        display:inline-block;
        background-color: rgba(255, 255, 255, .9);
        padding: 8px;
    }
    .white-box-spacer{
        margin-left:0.5em;
    }
    #index_section01,
    #index_section02 {
        display: flex;
        justify-content: space-between;
        margin-bottom: 200px;
        margin-top: 200px;
    }

    #index_section01 {
        flex-direction: column-reverse;
    }
    
    #index_section01 > div,#index_section02 > div {
        margin-bottom: auto;
        margin-top: auto;
    }

    #index_section01 > div:nth-child(1) {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }

    #index_section01 > div:nth-child(2),#index_section02 > div:nth-child(2) {
        width: 100%;
        /* width: 40%; */
    }

    #index_section01 > div:nth-child(2) > div:nth-child(1),#index_section02 > div:nth-child(2) > div:nth-child(1) {
        display: flex;
        justify-content: space-between
    }

    #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;
        left: 0;
        top: 8%;
    }
    #index_main01_shape {
        border-right: 2px solid #333;
        position: absolute;
        left: 36%;
        top: 90px;
        height: 10%;
        transform: rotate(-65deg);
    }

    #index_main01_img {
        margin-top: 100px;
    }

    #index_main01_img,#index_main03_img,#index_main04_img,#index_main06_img {
        width: 100%;
    }
    #index_section01_h2,#index_section02_h2 {
        margin-top: auto;
        font-size: 24.5px;
        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: 20px;
    }
    .index_section01_p_box,
    .index_section02_p_box{
        background-position: right top;
        background-repeat: no-repeat;
        padding-top:12px;
    }
    .index_section01_p_box{
        background-image: url("../imgs/index_main02.png");
        background-size: 25%;
        background-position: right top;
    }
    .index_section02_p_box{
        background-image: url("../imgs/index_main05.png");
        background-size: 20%;
    }
    #index_section01_p01 {
        margin-bottom: 16px;
    }

    #index_section02 {
        flex-direction: column;
    }
    #index_section02_h2 {
        letter-spacing: .15em;
        margin-bottom: 10px;
        margin-top: 20px;
    }
    #index_section02_p01,
    #index_section02_p02 {
        display: none;
    }
    #index_section02_p01 {
        margin-bottom: 0;
    }
    #index_section02_p02 {
        line-height: 2em;
        margin-bottom: 40px;
        margin-top: 0;
    }
    #index_section02_p02_small {
        /* display: none; */
        display: block;
        line-height: 2em;
        margin-bottom: 40px;
        margin-top: 0;
    }
    #index_section02 > div:nth-child(1) {
        width: 100%;
        /* width: 50%; */
    }
    #index_section02 > div:nth-child(2) {
        width: 100%;
        /* width: 45%; */
    }
    #index_main04_img {
        display: none;
    }
    #index_main04_img_small {
        display: inline;
        width: 85%;
    }
    #index_main05_img {
        width: 50%;
    }
    #index_main06_img {
        margin-left: 25%;
        margin-top: 20px;
        width: 75%;
    }
    
    #index_section03 {
        position: relative;
        text-align: center;
        margin-top: 100px;
        margin-bottom: 12px;
    }
    #index_main07_back {
        width: 80%;
        display: none;
    }
    #index_main07_back_small {
        /* display: none; */
        background-image: url(../imgs/index_main07.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        height: 100vh;
        width: 100%;
    }
    #index_section03 .vertical_text {
        text-align: left;
        writing-mode: vertical-rl
    }
    #index_section03 .vertical_text .vertical_text_right {
        position: absolute;
        top: 6%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    #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: 12px;
        font-weight: bold;
        letter-spacing: .4em;
    }
    #index_section03 .vertical_text p,
    #index_section04 .vertical_text p,
    #index_section05 .vertical_text p {
        font-size: 10px;
    }
    #index_section04 {
        position: relative;
        text-align: center;
        margin-top: 12px;
        margin-bottom: 100px;
        width: 100%;
    }
    #index_main08_back {
        width: 80%;
        display: none;
    }
    #index_main08_back_small {
        background-image: url("../imgs/index_main08.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        height: 100vh;
        width: 100%;
        /* display: none; */
    }

    #index_main08_left {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translate(-50%, -0%);
        width: 280px;
    }
    #index_section04 .vertical_text {
        text-align: left;
        writing-mode: vertical-rl;
    }
    .index_section04_h2_01 {
        margin-left: 20px;
    }
    #index_section05 {
        position: relative;
        margin-top: 100px;
        margin-bottom: 100px;
        overflow: hidden;
        height: 900px;
    }
    #index_main09_back {
        width: 100%;
        display: none;
    }
    #index_main09_back_small {
        background-image: url("../imgs/index_main09_sp02.png");
        background-position: 50% 45px;
        background-repeat: no-repeat;
        background-size: cover;
        display: none;
        height: 100vh;
        width: 100%;
    }
    #index_main09_worldmap_sp_div {
        position: relative;
        overflow: hidden;
        height: 100%;
    }
    #index_main09_worldmap_sp {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 600px;
        height: 100%;
        transform: translate(-50%, -50%);
    }
    #index_main09_worldmap {
        position: absolute;
        top: 70px;
        width: 100%;
        left: 0;
        display:none;
    }
    #index_main09_img {
        position: absolute;
        top: 28%;
        right: 22%;
        display: none;
    }
    #index_section05 .vertical_text {
        text-align: left;
        writing-mode: vertical-rl;
    }
    #index_section04 .vertical_text div,
    #index_section05 .vertical_text div {
        position: absolute;
        display: block;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    #index_section04 .vertical_text div {
        top: 6%;
    }
    #index_section05 .vertical_text div {
        /* top: 48%; */
        bottom: 5px;
    }
    #index_section05 .vertical_text h2 span.white-box {
        color: black;
        font-family: serif;
        letter-spacing: .3em;
        background-color:#A9B29D;
    }

    #index_section05 .vertical_text p span.white-box {
        color: var(--font-color);
        background-color:#A9B29D;
    }

    #index_main09_text {
        display: none;
        font-family: "Montserrat";
        font-size: 12px;
        font-style: italic;
        font-weight: bold;
        line-height: 1.5em;
        letter-spacing: .1em;
        text-align: right;
        position: absolute;
        left: 50%;
        top: 46%;
    }
    #index_main09_shape {
        display: none;
        border-top: 1px solid #333;
        position: absolute;
        left: 45%;
        top: 47.5%;
        width: 8%;
        transform: translateY(-50%) translateX(-50%) rotate(10deg);
    }
    #btn_munakatagyu {
        padding: 16px 24px;
    }

    #index footer {
        margin-top: 200px;
    }

    /* company.htmlの<main>内 */
    #company_info {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 100px;
        padding-top: 100px;
    }
    .company_info_content {
        margin-bottom:7rem;
    }
    .company_history_content{
        margin-bottom:1rem;
    }
    #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 {
        position:relative;
        height:400px;
    }
    .company_history_visual_content_wrap {
        position:relative;
        height: 75vw;
    }
    #company_img_info {
        position:absolute;
        width: 100vw;
        height:400px;
        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: 400px;
        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: 1.6em;
        text-align: left;
    }
    .company_table th,
    .company_table td{
        padding:0.5rem 0;
        vertical-align: top;
    }
    .company_table th {
        font-weight: normal;
        padding-right: 6px;
    }
    .honsya_th,
    .honsya_td,
    .jigyounaiyou_th,
    .jigyounaiyou_td {
        line-height: 1.7em;
        padding-bottom: 0.3em;
    }
    .company_table .company_table_th {
        padding-top: 0.8em;
        line-height: 1.4em;
        width: 50px;
    }
    .history_age_newline {
        display: inline-block;
        padding-top: 0.2em;
        line-height: 1.4em;
        width: 48px;
    }
    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: 2rem;
    }
    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 {
        font-family: "Montserrat";
        font-size: 11px;
        letter-spacing: .1em;
    }
    .base_company_link_eng {
        margin-right: 4px;
    }
    .map_link_eng {
        margin-right: 4px;
    }
    .map_link_spacer {
        margin-left: 8px;
        margin-right: 4px;
    }
    #company_history > div {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-left: auto;
        margin-right: auto;
    }
    #greetings {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-left: auto;
        margin-right: auto;
    }
    #greetings div:nth-child(1) {
        margin-top: 30px;
        width: 65%;
    }
    #greetings div:nth-child(2) {
        width: 100%;
    }
    #company_img_greeting01 {
        width: 100%;
    }
    #greetings_right {
        margin-top: 40px;
        position: relative;
    }
    #company_img_greeting02 {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 144px;
    }
    #greetings h2 {
        margin-top: 50px;
        width: 70%;
        border-bottom: 1px solid #ccc;
    }
    #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: 50vh;
            width: 100%;
        }
        #recruit_area {
            margin-top: 100px;
            margin-bottom: 100px;
        }
        #recruit_area h2 {
            margin-bottom: 0.6em;
            font-size: 14px;
            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;
            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;
            letter-spacing: 0.2em;
            vertical-align: top;
            width: 34px;
        }
        #recruit_table td {
            padding-left: 1em;
            padding-right: 1em;
            letter-spacing: 0.2em;
        }
        #entry_btn {
            display: inline-block;
            position: relative;
            width: 50%;
        }
        #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: 50vh;
            width: 100%;
        }
        #contact #tel_area, #contact #mail_form {
            margin: 100px auto 0;
            text-align: center;
        }
        #contact #tel_area {
            width: 100%;
        }
        #contact #mail_form {
            width: 80%;
        }
        #tel_area h2 {
            border-bottom: 1px solid #3b4043;
            display: inline-block;
            text-align: center;
            margin-bottom: 100px;
            padding-bottom: 4px;
            font-family: "Montserrat";
            font-size: 16px;
            font-weight: bold;
            letter-spacing: .1em;
        }
        #tel_area p {
            font-size: 14px;
        }
        #tel_area #thanks_info01,
        #tel_area #thanks_info02 {
            text-align: center;
        }
        #tel_area p:nth-of-type(1) {
            margin-bottom: 100px;
            text-align: left;
            line-height: 1.9rem;
        }
        #tel_area p:nth-of-type(2) {
            margin-bottom: 50px;
        }
        #tel_area p:nth-of-type(3) {
            margin-bottom: 250px;
        }
        #open-p {
            position: relative;
        }
        #open-p span:nth-of-type(1) {
            position: absolute;
            left: auto;
            transform: translateX(-50%);
            width: 100%;
        }
        #open-p span:nth-of-type(2) {
            position: absolute;
            top: 30px;
            left: auto;
            transform: translateX(-50%);
        }
        #tel-fax-p {
            position: relative;
        }
        #tel-fax-p span:nth-of-type(1) {
            position: absolute;
            left: auto;
            top: 60px;
            transform: translateX(-50%);
            width: 100%;
        }
        #tel-fax-p span:nth-of-type(2) {
            position: absolute;
            left: auto;
            top: 90px;
            transform: translateX(-50%);
            width: 100%;
        }
        #tel_area #tel-fax-p {
            font-size: 1rem;
        }
    
        #mail_form h2 {
            border-bottom: 1px solid #3b4043;
            display: inline-block;
            text-align: center;
            margin-bottom: 100px;
            font-family: "Montserrat";
            font-size: 16px;
            font-weight: bold;
            letter-spacing: .1em;
        }
        #hissu {
            display: inline-block;
        }
        #hissu p:nth-of-type(1) {
            font-size: 12px;
            line-height: 1.4em;
            text-align: left;
        }
        #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;
        }
        #text-privacy {
            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 #form_postcode1,
        #mail_form_ul  #form_postcode2 {
            width: auto;
        }
        #text-privacy {
            font-size: 14px;
            line-height: 1.4em;
        }
        .privacy_link {
            border-bottom: 1px solid var(--accent-color);
        }
        .mfp_buttons {
            margin-top: 30px;
        }
        #mail_form .btn {
            border: none;
            width: 100%;
        }
        #mail_form .btn:hover {
            cursor: pointer;
        }
        #contact .sp_area {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            width: 95%;
        }
        /* mail.php */
        #formwrap form {
            margin-top: 100px;
        }
        #formWrap .formTable  {
            width: 80%;
            margin-left: auto;
            margin-right: auto;
        }
        #formWrap .formTable dl {
            /* display: block; */
            text-align: left;
            margin-top: 1.4em;
            margin-bottom: 1.4em;
            padding: 1em;
        }
        #formWrap .formTable dt {
            margin-bottom: 0.1em;
            padding: 0.2rem;
            font-weight: bold;
            /* width: auto; */
        }
        #formWrap .formTable dd {
            margin: 0;
            padding: 0.2rem;
            /* width: auto; */
        }
        #formWrap .wording-text-box .wording-text {
            text-align: left;
        }
        .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: 150px;
            width: 70%;
        }
        #privacy_area > p{
            font-size: 0.85rem;
            margin-bottom: 30px;
        }
    /* news.html内の<main>タグ */
    #news-main .lLeft::before {
        top: 57%;
    }
    #news_header_bg {
        background-image: url(../imgs/news_header_bg.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 50vh;
        width: 100%;
    }
    #archives {
        margin-top: 100px;
        margin-bottom: 100px;
        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-around;
        margin-bottom: 100px;
        width: 100%;
    }
    #article_area>div {
        margin-bottom: 50px;
        width: 100%;
    }
    #article_area img {
        width: 100%;
    }
    #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: 50vh;
        width: 100%;
    }
    #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.5em;
    }
    .link-container {
        text-align: center;
        display: flex;
        justify-content: space-around;
    }
    #content_area .content_vertical_pic {
        width: 50%;
    }
    .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: 85%;
    overflow: hidden;
}
#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: 118px;
    left: 0;
}
#footer_company_info {
    font-size: 12px;
    line-height: 1.7em;
    position: absolute;
    left: 0;
    bottom: 90px;
}
#footer_img01 {
    position: absolute;
    top: 20%;
    left: 212px;
    width: 90px;
}
#footer_return_top {
    display: none;
}
#footer_return_top_sp {
    bottom: 95px;
    position: absolute;
    right: 4px;
}
#footer_return_top_sp img {
    width: 56px;
}
#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: 120px;
    right: 6px;
    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>ここまで
---------------- */
.small_off {
    display: none;
}