@charset "shift_jis";


/*===============================================

画面の横幅が769px以上（パソコン用）

===============================================*/

@media all and (min-width: 769px),print {

html{
    font-size: 14px;
    margin: 0px;
    padding: 0px;
  max-height: 100%;
  position: relative;
    }

body {
    font-family: "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
    line-height: 2;
    color: #000;
    margin: 0px;
    padding: 0px;
  max-height: 100%;
    text-align: center;
    background-color: transparent;
    /*スマホで勝手に文字が大きくなる対策*/
    -webkit-text-size-adjust: 100%;
}

    /*リンクカラー*/
a {
    color: #002b55;
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}

/*カーソルオーバー時のリンクカラー*/
a:hover {
    color: #A51A91;
    text-decoration: none;    /*下線を消す設定。残したままがいいならこの１行を削除。*/
    }


/*ヘッダー
---------------------------------------------------------------------------*/
    header {
        width: 100%;
        height: 6.5rem;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        z-index: 10000;
        color: #333;
        background: #fff;
        border-top: 2px solid #012d13;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
    }
    header h1{
        width: 10rem;
        height: 4.5rem;
        margin: 0 1rem;
        padding: 1rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
        order: 2;
    }
    header h1 a{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-decoration: none;
        text-align: center;
    }
    header h1 a:hover{
        opacity: 0.6;
    }
    header h1 a img{
        height: 3rem;
        margin: 0 auto 0 auto;
        display: block;
        position: relative;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
    }
    header h1 a p{
        margin: 0;
        padding: 0 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.3rem;
        line-height: 1.5rem;
        font-weight: normal;
        color: #333;
        font-family: "Shippori Mincho", serif;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
        letter-spacing: 0;
        visibility: visible;
        opacity: 1;
    }
    header h1 a p span.type{
        margin: 0 0.5rem 0 0;
        font-size: 1rem;
        letter-spacing: 0;
    }
    header h1 span.sp_text{
        display: none;
    }
    header .header_menu{
        width: calc(45% - 4rem);
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        position: relative;
    }
    header .header_menu a{
        width: 23%;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-family: "Shippori Mincho", serif;
        font-size: 1.1rem;
        line-height: 2rem;
        text-decoration: none;
        color: #333;
    }
    header .header_menu a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #558d7d;
bottom: -1px;
transform: scale(0, 1);
transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.5s;   /*変形の時間*/
}
    header .header_menu a:hover::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
    header .left_menu{
        order: 1;
    }
    header .right_menu{
        order: 3;
    }
    
    
    header.smaller {
        height: 4rem;
        background: rgba(255,255,255,1);
        box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    }
    header.smaller h1{
        height: 3.5rem;
        padding: 0.5rem 0;
    }
    header.smaller h1 a img{
        height: 3.3rem;
        margin: 0 auto;
    }
    header.smaller h1 a p{
        transform: translateY(-0.5rem);
    }
    header.smaller h1 a p span{
        visibility: hidden;
        opacity: 0;
    }

#wrapper {
overflow: hidden;
min-width: 30%;
height: auto;
padding: 0;
    display: none;
}
    .contents header #wrapper{
        display: block;
    }
#navTgl:checked ~ .contents {
-webkit-transform: translateX(250px);
transform: translateX(250px);
}

/* :::::: toggle button :::::: */
#navTgl {
display: none;
overflow: hidden;
}
label {
cursor: pointer;
position: fixed;
top: 0;
right: 0;
}
.open {
z-index: 2;
width: 15%;
height: 3rem;
color: #fff;
font-size: 2rem;
line-height: 3.5rem;
    padding: 0.5rem 0;
text-align: center;
-webkit-transition: background-color .6s, -webkit-transform .6s;
transition: background-color .6s, transform .6s;
    background-color: none;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
#navTgl:checked + .open {
    color: #ccc;
}
.close {
pointer-events: none;
z-index: 1;
width: 100%;
height: 100%;
transition: .6s;
}
#navTgl:checked ~ .close {
pointer-events: auto;
background-color: rgba(0,0,0,0.5);
}

/* :::::: drawer menu :::::: */
header .menu {
z-index: 1;
position: fixed;
overflow: auto;
top: 0;
left: 83.1%;
width: 17%;
height: 100%;
    margin: 0;
padding: 0;
-webkit-transform: translateX(100%);
transform: translateX(100%);
-webkit-transition: -webkit-transform .6s;
transition: transform .6s;
        background: rgba(40,40,40,1);
}
#navTgl:checked ~ .menu {
-webkit-transform: translateX(0);
transform: translateX(0);
    margin: 0;
}
/*コンテナー
---------------------------------------------------------------------------*/
#container {
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background-color: #fff;
}



/*全体を囲むボックス
---------------------------------------------------------------------------*/
#contents {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

/*メインコンテンツ1
---------------------------------------------------------------------------*/

    #mov_over{
        width: 100%;
        height: calc(100vh - 6rem);
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #mov_over img{
        height: 50vh;
        margin: auto;
        padding: 0;
        display: block;
        position: absolute;
        right: 5%;
        bottom: -5rem;
        opacity: 0.6;
        z-index: 1;
    }
    #mov_over p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: absolute;
        top: 50%;
        font-size: 3rem;
        line-height: 4rem;
        text-align: center;
        color: #fff;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
        text-shadow: 2px 2px 4px #333;
    }
    #mov_over p span{
        display: block;
        font-size: 1.5rem;
        line-height: 3rem;
    }
    
    #contents_outer{
        width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    .top_border{
        width: 100%;
        height: 5rem;
        margin: 0;
        padding: 0.5rem 0;
        display: block;
        position: relative;
        background: rgba(0,28,14,0.6);
    }
    .top_border p.title{
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 2.5rem;
        line-height: 4rem;
        color: #fff;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
    }
    
    #top{
        width: 100%;
        margin: 0;
        padding: 3rem 0 5rem 0;
        display: block;
        position: relative;
        background: #fff;
    }
    #top p.title{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 2rem;
        line-height: 3rem;
        color: #000;
        font-family: "Shippori Mincho", serif;
    }
    #top p{
        width: 50%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 1.5rem;
        line-height: 3rem;
        font-family: "Yuji Syuku", serif;
        color: #333;
    }
    
    #contents_outer .btn_outer{
        width: 100%;
        margin: 5rem auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }
    #contents_outer .btn_outer a{
        margin: 0;
        padding: 0.5rem 2rem;
        border: 1px solid #012d13;
        color: #fff;
        font-size: 1rem;
        line-height: 2rem;
        text-decoration: none;
        background: #012d13;
    }
    #contents_outer .btn_outer a::after{
        font-family: 'Font Awesome 5 Free';
        margin: 0 0 0 0.5rem;
        padding: 0;
        content: "\f101";
        font-weight: 700;
        display: inline-block;
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
    }
    #contents_outer .btn_outer a:hover{
        color: #012d13;
        background: #fff;
    }
    #contents_outer .btn_outer a:hover::after{
        transform: translate(0.8rem);
    }
    
    #news{
        width: 100%;
        margin: 0;
        padding: 5rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        background: #efefef;
    }
    #news h2{
        width: 87%;
        margin: 0 auto 5rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #news h2 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #news h2 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #news h2 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    
    #news dl.news_outer{
        width: 80%;
        height: 25rem;
        margin: 0 auto;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        overflow-y: scroll;
        background: #fff;
    }
    #news dl.news_outer::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
    #news dl.news_outer::-webkit-scrollbar-track {
        background: #eee;
    }
    #news dl.news_outer::-webkit-scrollbar-thumb {
        background: rgba(200, 200, 200, 1);
        border-radius: 2.5px;
    }
    #news dl.news_outer dt.day{
        width: 13rem;
        margin: 0;
        padding: 0.25rem 1rem;
        display: block;
        position: relative;
        text-align: left
        font-weight: bold;
        font-size: 1rem;
        line-height: 2rem;
        color: #555;
        border-top: 1px solid #ccc;
        letter-spacing: 0.1rem;
    }
    #news dl.news_outer dd.text{
        width: calc(100% - 16rem);
        margin: 0;
        padding: 0.25rem;
        display: block;
        position: relative;
        border-top: 1px solid #ccc;
    }
    #news dl.news_outer dt.day:first-of-type,
    #news dl.news_outer dd.text:first-of-type{
        border: none;
    }
    #news dl.news_outer dd.photo_outer{
        width: calc(100% - 16rem);
        margin: 0 0 0 15.5rem;
        padding: 0.25rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }
    #news dl.news_outer dd.text p.title{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-weight: bold;
        font-size: 1rem;
        line-height: 2rem;
    }
    #news dl.news_outer dd.text p.title span.category{
        margin: 0 0.5rem 0 0;
        padding: 0.1rem 0.5rem;
        color: #fff;
        background: #012d13;
        border-radius: 0.5rem;
    }
    #news dl.news_outer dd.text p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 2rem;
    }
    #news dl.news_outer dd.photo_outer a{
        width: 8rem;
        height: 8rem;
        margin: 0 1rem 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        overflow: hidden;
    }
    #news dl.news_outer dd.photo_outer a:hover{
        opacity: 0.6;
    }
    #news dl.news_outer dd.photo_outer a img{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        object-fit: cover;
    }
    
    #service_info{
        width: 100%;
        margin: 0;
        padding: 5rem 0 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        background-image: url(images/bg_img.jpg);
        background-size: contain;
        background-position: center center;
        background-repeat: repeat;
        background-attachment: fixed;
    }
    #service_info h2{
        width: 87%;
        margin: 5rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #service_info h2 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #service_info h2 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #service_info h2 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #service_info .service_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        flex-flow: row;
        position: relative;
        background: #fff;
    }
    #service_info .service_outer:nth-of-type(2){
        flex-flow: row-reverse;
    }
    #service_info .service_outer .service_inner{
        width: 40%;
        margin: 0;
        padding: 2rem 5%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    #service_info .service_outer .service_inner h3{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.5rem;
        line-height: 3rem;
        font-family: "Shippori Mincho", serif;
        letter-spacing: 0.1rem;
        font-weight: normal;
    }
    #service_info .service_outer .service_inner p{
        width: 92%;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 2.5rem;
    }
    #service_info .service_outer .photo_outer{
        width: 50%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #000;
    }
    #service_info .service_outer .photo_outer img{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        object-fit: cover;
    }
    
    
    
    
    #contents_top{
        width: 90%;
        height: 100vh;
        margin: 0;
        padding: 0 5%;
        display: block;
        position: relative;
    }
    .bg_about{
        background-image: url(images/bg_about.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .bg_service{
        background-image: url(images/bg_service.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .bg_contact{
        background-image: url(images/bg_contact.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    #contents_top h2{
        width: 100%;
        margin: 0;
        padding: 0.5rem 0;
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        background: rgba(0,28,14,0.8);
        font-size: 2.5rem;
        line-height: 4rem;
        color: #fff;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        letter-spacing: 0.2rem;
    }
    
    #message{
        width: 100%;
        margin: 0;
        padding: 5rem 0 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        background: #fff;
    }
    #message h3{
        width: 87%;
        margin: 0 auto 5rem auto;
        padding: 0 6.5%;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #message h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #message h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #message h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #message .message_outer{
        width: 60%;
        margin: 0;
        padding: 5rem 20%;
        display: block;
        position: relative;
        background: #eee;
    }
    #message .message_outer p{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
    }
    #message .message_outer p.signature{
        width: 100%;
        margin: 2rem auto 0 auto;
        text-align: right;
    }
    #message .message_outer p.signature span{
        font-size: 2.5rem;
        line-height: 3.5rem;
        margin: 0 0 0 1rem;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
    }
    
    
    
    
    #staff{
        width: 87%;
        margin: 0;
        padding: 5rem 6.5%;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-size: contain;
        background-position: center center;
        background-repeat: repeat;
        background-attachment: fixed;
    }
    #staff h3{
        width: 100%;
        margin: 0 auto 5rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #staff h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #staff h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #staff h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #staff .staff_member{
        width: 80%;
        margin: 0 10%;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }
    #staff .staff_outer{
        width: 23%;
        min-width: 14rem;
        margin: 0 0 5rem 0;
        padding: 0;
        display: block;
        position: relative;
        background: #fff;
        box-shadow: 4px 4px 8px #333;
        border-bottom: 1rem solid #012d13;
    }
    #staff .staff_outer .photo_inner{
        width: 100%;
        margin: 0;
        padding: 100% 0 0 0;
        display: block;
        position: relative;
        overflow: hidden;
    }
    #staff .staff_outer img{
        width: 90%;
        margin: 0 5%;
        padding: 0;
        display: block;
        position: absolute;
        top: 1rem;
    }
    #staff .staff_outer .profile_outer{
        width: 90%;
        margin: 0;
        padding: 2rem 5%;
        display: block;
        position: relative;
    }
    #staff .staff_outer .profile_outer p.position{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: bold;
        color: #012d13;
    }
    #staff .staff_outer .profile_outer p.name{
        width: 100%;
        margin: 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
    }
    #staff .staff_outer .profile_outer p.name span{
        display: block;
        font-weight: normal;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    #staff .staff_outer .profile_outer p.message{
        width: 100%;
        margin: 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #012d13;
        font-style: italic;
    }
    #staff .staff_outer .profile_outer ul{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .staff_outer .profile_outer ul li{
        width: 90%;
        margin: 0 0 0 10%;
        padding: 0;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    #staff .staff_outer .profile_outer dl{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .staff_outer .profile_outer dl dt{
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #012d13;
    }
    #staff .staff_outer .profile_outer dl dd{
        width: 100%;
        margin: 0 0 0 0;
        padding: 0;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    #staff .staff_outer .profile_outer dl.skill dd::before{
        content: "\f0da";
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
        margin: 0 0.5rem 0 0;
    }
    #staff .ceo{
        width: 80%;
        margin: 0 10% 5rem 10%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    #staff .ceo .staff_inner{
        width: 30%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    
    
    
    #staff .ceo .toggle_outer{
        width: 70%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .ceo .toggle_outer input{
        display: none;
    }
    #staff .ceo .toggle_outer .toggle_title{
        display: none;
		pointer-events: none;
	}
    #staff .ceo .toggle_outer .toggle{
        width: 95%;
        margin: 0;
        padding: 0.5rem 2.5%;
        display: block;
        position: relative;
	}
    #staff .ceo .toggle_outer .toggle dl{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
	}
    #staff .ceo .toggle_outer .toggle dl{
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .ceo .toggle_outer .toggle dl dt{
        width: 98%;
        margin: 0 0 0.5rem 0;
        padding: 0 1%;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #fff;
        background: #012d13;
    }
    #staff .ceo .toggle_outer .toggle dl dd{
        width: calc(100% - 1rem);
        margin: 0;
        padding: 0 0 0 1rem;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 1.8rem;
        text-indent: -1rem;
    }
    #staff .ceo .toggle_outer .toggle dl dd::before{
        content: "\f0da";
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
        margin: 0 0.5rem 0 0;
    }
    #staff .ceo .toggle_outer .toggle dl dd.skill{
        width: 100%;
        margin: 0;
        padding: 0;
        text-indent: 0;
    }
    #staff .ceo .toggle_outer .toggle dl dd.skill::before,
    #staff .ceo .toggle_outer .toggle dl dd.skill dl dd::before{
        content: "";
        margin: 0;
    }
    #staff .ceo .toggle_outer .toggle dl dd.skill dl{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: relative;
    }
    #staff .ceo .toggle_outer .toggle dl dd.skill dl dt{
        width: 15rem;
        margin: 0 0 0.5rem 0;
        padding: 0 0.5rem;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 1.8rem;
        color: #000;
        background: none;
        border-bottom: 1px dashed #ccc;
    }
    #staff .ceo .toggle_outer .toggle dl dd.skill dl dd{
        width: calc(100% - 16.5rem);
        margin: 0 0 0.5rem 0;
        padding: 0 0 0 0.5rem;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 1.8rem;
        border-bottom: 1px dashed #ccc;
        text-indent: 0;
    }
    
    
    
    
    #company_info{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_about.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    #company_info .bg_cover{
        width: 87%;
        margin: 0;
        padding: 5rem 6.5%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
        background: linear-gradient(to right,rgba(255,255,255,0.8) 20%,rgba(255,255,255,1) 50%);
    }
    #company_info .bg_cover h3{
        width: 100%;
        margin: 0 auto 5rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #company_info .bg_cover h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #company_info .bg_cover h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #company_info .bg_cover h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #company_info .bg_cover .message_outer{
        width: 43%;
        margin: 0 auto 0 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #company_info .bg_cover .message_outer p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 2.5rem;
        line-height: 4rem;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
        color: #012d13;
    }
    #company_info .bg_cover .profile_outer{
        width: 50%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #company_info .bg_cover .profile_outer dl{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    #company_info .bg_cover .profile_outer dl dt{
        width: 8rem;
        margin: 0;
        padding: 0.5rem 1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        line-height: 1.8rem;
        font-weight: bold;
        border-bottom: 1px solid #eee;
    }
    #company_info .bg_cover .profile_outer dl dd{
        width: calc(100% - 12rem);
        margin: 0;
        padding: 0.5rem 1rem;
        display: block;
        font-size: 1rem;
        line-height: 1.8rem;
        border-bottom: 1px solid #eee;
    }
    #history{
        width: 100%;
        margin: 0;
        padding: 5rem 0 5rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
        background: #012d13;
    }
    #history h3{
        width: 87%;
        margin: 0 6.5% 5rem 6.5%;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #fff;
    }
    #history h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #history h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #history h3 span::after{
        border-top: 1px solid #fff;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #history .history_outer{
        width: 87%;
        margin: 0;
        padding: 0 0 2rem 0;
        display: block;
        position: relative;
        overflow-x: scroll;
        white-space: nowrap;
    }
    #history .history_outer:active {
        cursor: grabbing;
}
    #history .history_outer::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
    #history .history_outer::-webkit-scrollbar-track {
        background: #eee;
    }
    #history .history_outer::-webkit-scrollbar-thumb {
        background: rgba(200, 200, 200, 1);
        border-radius: 2.5px;
    }
    #history .history_outer .history_inner{
        width: 20%;
        margin: 0 5% 0 0;
        padding: 20% 0 0 0;
        display: inline-block;
        position: relative;
        background: #fff;
        z-index: 0;
        white-space: wrap;
    }
    #history .history_outer .history_inner:last-of-type{
        margin: 0;
    }
    #history .history_outer .history_inner p{
        width: 95%;
        margin: 0;
        padding: 0.5rem 2.5%;
        display: block;
        position: absolute;
        top: 0;
        text-align: right;
        font-size: 4rem;
        line-height: 4rem;
        font-family: "Shippori Mincho", serif;
        color: rgba(0,28,14,0.2);
    }
    #history .history_outer .history_inner dl{
        width: calc(100% - 2rem);
        margin: 0;
        padding: 1rem;
        display: block;
        position: absolute;
        bottom: 0;
    }
    #history .history_outer .history_inner dl dt{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-weight: bold;
    }
    #history .history_outer .history_inner dl dd{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #history .allow_outer{
        width: 6.5%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }
    #history .allow_outer p{
        margin: 0 0 2rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 2rem;
        line-height: 2rem;
        color: #fff;
    }
    
    
    #service{
        width: 100%;
        margin: 0;
        padding: 5rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-size: contain;
        background-position: center center;
        background-repeat: repeat;
        background-attachment: fixed;
    }
    #service h3{
        width: 87%;
        margin: 0;
        padding: 0 6.5% 5rem 6.5%;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #service h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #service h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #service h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #service .service_outer{
        width: 100%;
        margin: 0;
        padding: 5rem 0;
        display: block;
        position: relative;
    }
    #service .service_outer h4{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        font-size: 2rem;
        line-height: 4rem;
        font-family: "Shippori Mincho", serif;
    }
    #service .service_outer h4::after{
        border-top: 1px solid #000;
        content: "";
        width: 8rem; 
        margin: 0 0 0 1rem;
    }
    #service .service_outer h4::before{
        border-top: 1px solid #000;
        content: "";
        width: 8rem; 
        margin: 0 1rem 0 0;
    }
    #service .service_outer p.title{
        width: 100%;
        margin: 0 0 5rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.2rem;
        line-height: 2rem;
    }
    #service .service_outer .service_inner{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        position: relative;
    }
    #service .service_outer .service_inner .text_inner{
        width: 42.5%;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-flow: column;
        position: relative;
        background: #fff;
    }
    #service .service_outer .service_inner:nth-of-type(odd) .text_inner{
        padding: 3rem 0 3rem 2.5%;
    }
    #service .service_outer .service_inner:nth-of-type(even) .text_inner{
        padding: 3rem 2.5% 3rem 0;
    }
    #service .service_outer .service_inner:nth-of-type(even){
        flex-flow: row-reverse;
    }
    #service .service_outer .service_inner .text_inner h5{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.3rem;
        break-inside: 2rem;
        color: #012d13;
    }
    #service .service_outer .service_inner .text_inner p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2.5rem;
    }
    #service .service_outer .service_inner .photo_inner{
        width: 55%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #service .service_outer .service_inner .photo_inner img{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        object-fit: cover;
    }
    #service .service_outer .service_inner .photo_inner .photo_cover{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }
    #service .service_outer .service_inner:nth-of-type(odd) .photo_inner .photo_cover{
        background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 20%);
    }
    #service .service_outer .service_inner:nth-of-type(even) .photo_inner .photo_cover{
        background-image: linear-gradient(-90deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 20%);
    }
    
    #service .contact{
        width: 87%;
        margin: 0;
        padding: 5rem 6.5%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        text-align: center;
    }
    #service .contact p{
        width: 100%;
        margin: 0 0 5rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #012d13;
    }
    #service .contact dl{
        width: 45%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #012d13;
    }
    #service .contact dl dt{
        width: 95%;
        margin: 0;
        padding: 1rem 2.5%;
        display: block;
        position: relative;
        font-size: 2.5rem;
        line-height: 3.5rem;
    }
    #service .contact dl dt a{
        color: #fff;
        text-decoration: none;
        margin: 0;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        letter-spacing: 0.3rem;
    }
    #service .contact dl dt a i{
        margin: 0 1rem 0 0;
        color: #ff0;
    }
    #service .contact dl dd{
        width: 90%;
        margin: 0 2.5%;
        padding: 1rem 2.5%;
        display: block;
        position: relative;
        color: #fff;
        font-size: 1.2rem;
        line-height: 2rem;
        border-top: 1px solid #fff;
    }
    #service .contact p.mail{
        width: 45%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #012d13;
    }
    #service .contact p.mail a{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-flow: column;
        color: #fff;
        text-decoration: none;
        font-size: 2rem;
        line-height: 3rem;
    }
    #service .contact p.mail a i{
        font-size: 3rem;
        line-height: 4rem;
    }
    #service .contact p.mail a:hover{
        color: #ff0;
        background: rgba(255,255,255,0.4);
    }
    
    
    #area{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background-image: url(images/bg_img.jpg);
        background-size: contain;
        background-position: center center;
        background-repeat: repeat;
        background-attachment: fixed;
    }
    #area .area_bg{
        width: 87%;
        margin: 0;
        padding: 5rem 6.5%;
        display: block;
        position: relative;
        background: rgba(100,100,100,0.1)
    }
    #area .area_bg h3{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #area .area_bg h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #area .area_bg h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #area .area_bg h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #area .area_bg .map_outer{
        width: 90%;
        margin: 0;
        padding: 3rem 5%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        background: rgba(255,255,255,0.6);
    }
    #area .area_bg .map_outer .map_inner{
        width: 70%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #area .area_bg .map_outer .map_inner p.title{
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #012d13;
        font-size: 2rem;
        line-height: 2.5rem;
        z-index: 1;
    }
    #area .area_bg .map_outer .map_inner p.title span{
        font-size: 1.1rem;
        line-height: 1.8rem;
        font-weight: normal;
        color: #000;
    }
    #area .area_bg .map_outer .map_inner .area_inner{
        width: 90%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        z-index: 1;
    }
    #area .area_bg .map_outer .map_inner .area_inner dl{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: relative;
    }
    #area .area_bg .map_outer .map_inner .area_inner dl dt{
        width: 100%;
        margin: 0 0 0.5rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #012d13;
        font-size: 1.5rem;
        line-height: 2rem;
    }
    #area .area_bg .map_outer .map_inner .area_inner dl dd{
        width: 6rem;
        margin: 0 0.5rem 0 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 1.5rem;
    }
    #area .area_bg .map_outer img{
        max-height: 130%;
        width: 30%;
        margin: 0;
        padding: 0;
        display: block;
        position: absolute;
        right: -2.5%;
        bottom: -2rem;
        filter: drop-shadow(4px 4px 8px #999);
        z-index: 0;
        object-fit: contain;
    }
    
    
    #price{
        width: 87%;
        margin: 0;
        padding: 5rem 6.5%;
        display: block;
        position: relative;
        background: #efefef;
    }
    #price h3{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #price h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #price h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #price h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #price .price_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }
    #price .price_outer h4{
        width: 100%;
        margin: 5rem 0 3rem 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        font-size: 1.5rem;
        line-height: 3rem;
        font-family: "Shippori Mincho", serif;
    }
    #price .price_outer h4::after{
        border-top: 1px solid #000;
        content: "";
        width: 8rem; 
        margin: 0 0 0 1rem;
    }
    #price .price_outer h4::before{
        border-top: 1px solid #000;
        content: "";
        width: 8rem; 
        margin: 0 1rem 0 0;
    }
    #price .price_outer dl{
        width: 49%;
        margin: 0 0 0.5rem 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }
    #price .price_outer dl dt{
        width: 95%;
        margin: 0 0 0.25rem 0;
        padding: 0.25rem 2.5%;
        display: block;
        position: relative;
        text-align: center;
        background: #012d13;
        color: #fff;
        font-weight: bold;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    #price .price_outer dl dd.data{
        width: 65%;
        margin: 0 0 0.25rem 0;
        padding: 0.25rem 2.5%;
        display: block;
        position: relative;
        text-align: center;
        background: #fff;
        font-size: 1.1rem;
        line-height: 1.8rem;
        border-bottom: 1px solid #999;
    }
    #price .price_outer dl dd.price,
    #price .price_outer dl dd.other{
        width: 24%;
        margin: 0 0 0.25rem 0;
        padding: 0.25rem 2.5%;
        display: block;
        position: relative;
        text-align: center;
        background: #ffffcc;
        font-size: 1.1rem;
        line-height: 1.8rem;
        border-bottom: 1px solid #999;
    }
    #price .price_outer dl dd.price::before{
        content: "\FFE5";
    }
    #price .price_outer p.comingsoon{
        width: 100%;
        margin: 5rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.1rem;
        line-height: 2rem;
        color: #012d13;
    }
    #price p.caution{
        width: 100%;
        margin: 5rem 0 0 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.1rem;
        line-height: 2rem;
    }
    
    
    
    
    
    #flow{
        width: 87%;
        margin: 0;
        padding: 5rem 6.5%;
        display: block;
        position: relative;
        background: #fff;
    }
    #flow h3{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #flow h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #flow h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #flow h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #flow .flow_outer{
        width: 100%;
        margin: 5rem 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    #flow .flow_outer .circle{
        width: 25%;
        padding: 25% 0 0 0;
        border-radius: 50%;
        display: block;
        position: relative;
        overflow: hidden;
    }
    #flow .flow_outer .circle img{
        width: auto;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }
    #flow .flow_outer dl{
        width: 65%;
        margin: 0 0 0 auto;
        padding: 0;
        display: block;
        position: relative;
    }
    #flow .flow_outer dl dt{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
        font-size: 2rem;
        line-height: 4rem;
        border-bottom: 1px solid #012d13;
    }
    #flow .flow_outer dl dt span{
        font-size: 3rem;
        margin: 0 1rem 0 0;
        color: #012d13;
    }
    #flow .flow_outer dl dd{
        width: 100%;
        margin: 0;
        padding: 0.5rem 0;
        display: block;
        position: relative;
        color: #000;
        font-size: 1.2rem;
        line-height: 2.5rem;
    }
    
    .ggmap {
        width: 100%;
        position: relative;
        margin: 0;
        padding-bottom: 30%;
        padding-top: 0;
        height: 0;
        overflow: hidden;
        border: none!important;
    }

    .ggmap iframe,
    .ggmap object,
    .ggmap embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none!important;
    }

    #contact{
        width: 87%;
        margin: 0;
        padding: 5rem 6.5%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-repeat: repeat;
        background-size: contain;
        background-attachment: fixed;
    }
    #contact h3{
        width: 100%;
        margin: 0 auto 5rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #contact h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #contact h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #contact h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #contact .contact_outer{
        width: 44%;
        margin: 0;
        padding: 2rem 2%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        background: #fff;
        box-shadow: 4px 4px 8px #999;
    }
    #contact .contact_outer p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 1.2rem;
        line-height: 2rem;
    }
    #contact .contact_outer img{
        width: 80%;
        margin: 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        object-fit: contain;
    }
    #contact .contact_outer dl.tel_info{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #contact .contact_outer dl.tel_info dt{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.2rem;
        line-height: 2rem;
    }
    #contact .contact_outer dl.tel_info dd{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }
    #contact .contact_outer dl.tel_info dd a{
        font-size: 2.5rem;
        line-height: 4rem;
        text-decoration: none;
        font-weight: bold;
        color: #012d13;
    }
    #contact .contact_outer dl.tel_info dd a i{
        margin: 0 1rem 0 0;
    }
    #contact .contact_outer dl.tel_info dd p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    
    #contact .contact_outer .form_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #contact .contact_outer .form_outer dl{
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        position: relative;
    }
    #contact .contact_outer .form_outer dl dt{
        width: 8rem;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        position: relative;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    #contact .contact_outer .form_outer dl dt.check::before{
        content: "\f00c";
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
        margin: 0 0.5rem 0 0;
        font-size: 1rem;
        color: #f00;
    }
    #contact .contact_outer .form_outer dl dd{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: relative;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    #contact .contact_outer .form_outer dl dd span.checkbox_outer{
        margin: 0 2rem 0 0;
    }
    #contact .contact_outer .form_outer .formbutton{
        width: 100%;
        margin: 2rem 0 0 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }
    #success{
        width: 87%;
        margin: 0;
        padding: 5rem 6.5%;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-repeat: repeat;
        background-size: contain;
        background-attachment: fixed;
    }
    #success p.title{
        width: 100%;
        margin: 0 0 5rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #012d13;
        font-size: 2rem;
        line-height: 4rem;
        text-align: center;
    }
    #success p{
        width: 50%;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2.5rem;
    }
    
    #formWrap{
        width: 87%;
        min-height: 60vh;
        margin: 0;
        padding: 10rem 6.5%;
        display: block;
        position: relative;
        background: #fff;
    }
    #formWrap h3{
        width: 100%;
        margin: 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.3rem;
        break-inside: 2rem;
        color: #012d13;
    }
    #formWrap h4{
        width: 100%;
        margin: 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.1rem;
        break-inside: 2rem;
        color: #f00;
    }
    #formWrap p{
        width: 100%;
        margin: 3rem 0;
        font-size: 1.1rem;
        line-height: 2rem;
        color: #333;
    }
    #formWrap p.error_messe{
        width: 100%;
        margin: 3rem 0;
        color: #f00;
}
    #formWrap table.formTable{
        width:60%;
        margin:2rem auto;
        padding: 0;
        border-collapse:collapse;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    #formWrap table.formTable th{
        width: 10rem;
        margin: 0;
        padding: 0.5rem;
        font-weight:normal;
        background:#efefef;
        text-align:center;
        border:1px solid #ccc;
    }
    #formWrap table.formTable td{
        width: calc(100% - 12rem - 4px);
        margin: 0;
        padding: 0.5rem;
        background: #fff;
        border:1px solid #ccc;
    }
    #formWrap a{
        color: #fcfcfc!important;
    }
    

    #contact .wvlink{
        width: 100%;
        margin: 8rem 0 0rem 0;
        font-size: 1rem;
        padding: 0;
        text-align: center;
        display: block;
        position: relative;
    }
    #contact .wvlink a{
        color: #666;
        text-decoration: none;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border: 1px solid #666;
    }
    #contact .wvlink a::before{
        content: "\f0da";
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
        margin: 0 0.5rem 0 0;
    }
    #contact .wvlink a:hover{
        background: rgba(255,255,255,0.4);
    }


    #recruitment{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    #recruitment .recruitment_bg{
        width: 87%;
        margin: 0;
        padding: 5rem 6.5%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        background: rgba(200,200,200,0.2);
    }
    #recruitment .recruitment_bg h3{
        width: 100%;
        margin: 0 auto 5rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #recruitment .recruitment_bg h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #recruitment .recruitment_bg h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #recruitment .recruitment_bg h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #recruitment .recruitment_bg p.title{
        width: 100%;
        margin: 0 0 5rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #012d13;
        font-size: 2rem;
        line-height: 4rem;
        text-align: center;
    }
    #recruitment .recruitment_bg dl{
        width: 47%;
        margin: 0 0 2rem 0;
        padding: 1rem 1%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        background: #fff;
    }
    #recruitment .recruitment_bg dl dt{
        width: 7rem;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 2rem;
        font-weight: bold;
        color: #012d13;
    }
    #recruitment .recruitment_bg dl dt i{
        margin: 0 0.5rem 0 0;
    }
    #recruitment .recruitment_bg dl dd{
        width: calc(100% - 7rem);
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 2rem;
    }
    #recruitment .recruitment_bg dl dd span.tag{
        margin: 0.25rem 1rem 0.25rem 0;
        padding: 0 0.5rem;
        display: inline-block;
        position: relative;
        border-radius: 0.5rem;
        background: #012d13;
        color: #fff;
    }




input[type=text],
input[type=tel],
input[type=date]{
    width: calc(100% - 2px - 1rem);
    margin: 0;
    padding: 0 0.5rem;
    border-radius: 0.3rem;
    border:#a9a9a9 1px solid;
    font-size: 0.9rem;
    line-height: 1.5rem;
}


input[type=checkbox]{
    margin:0.5rem 0.5rem 0 0;
        position: relative;
        top: 0.2rem;
}
input[type=radio] {
    margin: 0;
        position: relative;
        top: 0.2rem;
}
select{
    width: calc(100% - 2px);
    margin: 0;
    padding: 2px 0.5rem;
    line-height: 2rem;
    border-radius: 0.3rem;
    border:#a9a9a9 1px solid;
    }


textarea{
    width: calc(100% - 2px - 1rem);
    height: 10rem;
    margin: 0;
    padding: 0 0.5rem;
    line-height: 2rem;
    font-size: 1rem;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border:#a9a9a9 1px solid;
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
}

textarea:focus {
    border:solid 1px #20b2aa;
}

textarea, select {
    outline: none;
}


input[type="file"]{
    width: 100%;
    margin: 0 0 0.5rem 0;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.5rem;
}

    input[type=submit]{
    font-size: 1rem;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border:#a9a9a9 1px solid;
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    width: 10rem;
    height: 2rem;
    padding:0 1% 0 1%;
    margin: 0em;
}
    input[type=reset]{
    font-size: 1rem;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border:#a9a9a9 1px solid;
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    width: 10rem;
    height: 2rem;
    padding:0 1% 0 1%;
    margin: 0em;
}
    input[type=button]{
    font-size: 1rem;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border:#a9a9a9 1px solid;
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    width: 10rem;
    height: 2rem;
    padding:0 1% 0 1%;
    margin: 0em;
}


/*背面動画
---------------------------------------------------------------------------*/
    .bgmovie{
        position: fixed;
        min-width: 100%;
        min-height: 100%;
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0;
        margin: 0;
        overflow: hidden;
        z-index: 0;
        display: block;
    }
    .bgmovie video{
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        display:-ms-flexbox;
        -ms-flex-pack: center;
        -ms-flex-align: center;
        text-align:center;
        margin: auto;
        min-height: 100%;
        min-width: 100%;
        height: auto;
        background-color: #000;
    }
@media all and (-ms-high-contrast: none){
  .bgmovie video{
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      display:-ms-flexbox;
      -ms-flex-pack: center;
      -ms-flex-align: center;
      text-align:center;
      margin: auto;
      min-height: 100%;
      min-width: 100%;
      width: 100%;
      height: auto;
      background-color: #000;
    }
}
  @media (aspect-ratio: 16/9), (min-aspect-ratio: 16/9) {
    video {
        height: 100%;
        top: 50%;
        transform: translateY(-50%);
    }
  }
  @media (max-aspect-ratio: 16/9) {
    .bgmovie video {
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
  }

.bgmovie .pattern {
  width: 100%;
  height: 100%;
  background: url(images/pattern.png);
    background-size: 8px;
    display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}


/*スライダー
---------------------------------------------------------------------------*/

/*左右の矢印*/
.slick-next {
    display: none!important;
}
.slick-prev {
    display: none!important;
}
    .slick-dots{
        display: none!important;
        position: relative;
        bottom: -1rem!important;
        margin-top: 0rem!important;
    }


/*フッター
---------------------------------------------------------------------------*/

footer {
    width: 87%;
    margin: 0;
    padding: 2rem 6.5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    position: relative;
    color: #333;
        background: #012d13;
    color: #fff;
}
    footer .footer_info{
        width: 55%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer.comingsoon .footer_info{
        text-align: center;
    }
    footer .footer_info h2{
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 2.5rem;
        line-height: 3.5rem;
        font-family: "Shippori Mincho", serif;
        letter-spacing: 0.1rem;
    }
    footer .footer_info h2 span{
        font-size: 1.5rem;
        margin: 0 1rem 0 0;
    }
    footer .footer_info p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    footer .footer_menu{
        width: 15%;
        margin: 0;
        padding: 2rem 0 0 0;
        display: block;
        position: relative;
    }
    footer .footer_menu dl{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer .footer_menu dl a{
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: #fff;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    footer .footer_menu dl a:hover{
        color: #ff0;
    }
    footer .footer_menu dl a i{
        margin: 0 0.5rem 0 0;
    }
    footer .footer_menu dl dt{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer .footer_menu dl dd{
        width: calc(100% - 1.5rem);
        margin: 0;
        padding: 0 0 0 1.5rem;
        display: block;
        position: relative;
    }
    footer .footer_menu ul{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer .footer_menu ul li{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer .footer_menu ul li a{
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: #fff;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    footer .footer_menu ul li a:hover{
        color: #ff0;
    }
    footer .footer_menu a i{
        margin: 0 0.5rem 0 0;
    }
    footer p.copy{
        width: 100%;
        margin: 2rem 0 0 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }

/*その他
---------------------------------------------------------------------------*/
    .pcnone{
        display: none!important;
    }

.color1 {
    color: #FF0000;
}

.color2 {
    color: #0000FF;
}

.color3 {
    color: darkorange;
    font-weight: bold;
}

.color4 {
    color: #336699;
}

.color5 {
    color: #009edc;
    font-weight: bold;
}

.color6 {
    color: #FFFF00;
    font-weight: normal;
}

.strong{
    font-weight: bold;
}
.br:before {
    content: "\A" ;
    white-space: pre ;
}

.pccounter {
    display: none;
}

/*戻るボタン
---------------------------------------------------------------------------*/

.pagetop {
    display: none;
    position: fixed;
    bottom: 5rem;
    right: 0;
    z-index: 1000;
    margin: 0;
}
.pagetop a {
    display: block;
    background-color: #012d13;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    padding: 0.8rem;
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    margin: 0;
        line-height: 0rem;
}
.pagetop a:hover {
    opacity: 0.85 ;
}
    .pagetop span{
        font-size: 1rem;
        margin: 0;
    }
    .pagetop span::before{
        white-space: pre;
        content: "\a";
    }


}


/*===============================================

スマホ横型対策

===============================================*/

@media all and (min-width: 600px) and (max-width: 768px) {

html{
    font-size: 85%;
    margin: 0px;
    padding: 0px;
    min-height: 100%;
    position: relative;
    }


body {
    font-family:"ヒラギノ角ゴ Pro W3",メイリオ,Osaka,Arial,Verdana
,"ＭＳ Ｐゴシック",sans-serif;
    line-height: 2;
    color: #000;
    margin: 0px;
    padding: 0px;
    text-align: center;
    background: #fff;
}


    /*リンクカラー*/
a {
    color: #002b55;
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}

/*カーソルオーバー時のリンクカラー*/
a:hover {
    color: #A51A91;
    text-decoration: none;    /*下線を消す設定。残したままがいいならこの１行を削除。*/
}


a.hover_img2{
    width: 100%;
    background-color:#fff; /*背景に白を設定*/
    display:inline-block;
    }

a.hover_img2 img{
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}

a:hover.hover_img2 img{
    opacity: 0.6;
    filter: alpha(opacity=60);
}



a.hover_img3 img{
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}

a:hover.hover_img3 img{
    opacity: 0.6;
    filter: alpha(opacity=60);
}

/*ヘッダー
---------------------------------------------------------------------------*/


    header {
        width: 90%;
        height: 5rem;
        margin: 0;
        padding: 0 5%;
        display: block;
        position: fixed;
        top: 0;
        z-index: 10000;
        color: #333;
        background: #fff;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
        border-top: 5px solid #012d13;
    }
    header h1{
        width: 90%;
        height: 4rem;
        margin: 0 auto 0 0;
        padding: 0.5rem 0;
        display: block;
        position: relative;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
    }
    header h1 a{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        text-decoration: none;
        text-align: center;
    }
    header h1 a:hover{
        opacity: 0.6;
    }
    header h1 a img{
        height: 2rem;
        margin: 0 0.5rem 0 0;
        display: block;
        position: relative;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
    }
    header h1 a p{
        width: 100%;
        margin: 0;
        padding: 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-end;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2.5rem;
        font-weight: normal;
        color: #333;
        font-family: "Shippori Mincho", serif;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
        letter-spacing: 0.1rem;
    }
    header h1 a p span.type{
        margin: 0 0.5rem 0 0;
        font-size: 1rem;
        line-height: 1.5rem;
        letter-spacing: 0;
    }
    header h1 a p span.name{
        margin: 0 0.5rem 0 0;
    }
    header h1 span.sp_text{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 0.9rem;
        line-height: 2rem;
        font-weight: normal;
        visibility: visible;
        opacity: 1;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
    }
    header .header_menu{
        display: none;
    }
    header.smaller {
        height: 3.5rem;
        background: rgba(255,255,255,1);
        box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    }
    header.smaller:hover{
        background: rgba(255,255,255,1);
    }
    header.smaller h1{
        width: 90%;
        height: 3rem;
        margin: 0 auto 0 0;
        padding: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    header.smaller h1 a img{
        height: 2.5rem;
        margin: 0 0.5rem 0 0;
    }
    header.smaller h1 span.sp_text{
        visibility: hidden;
        opacity: 0;
    }
    
#wrapper {
overflow: hidden;
min-width: 30%;
height: auto;
padding: 0;
    display: block;
}
#navTgl:checked ~ .contents {
-webkit-transform: translateX(250px);
transform: translateX(250px);
}

/* :::::: toggle button :::::: */
#navTgl {
display: none;
overflow: hidden;
}
label {
cursor: pointer;
position: fixed;
top: 0;
right: 0;
}
.open {
z-index: 2;
width: 15%;
height: 3rem;
color: #012d13;
font-size: 2rem;
line-height: 4.5rem;
    padding: 0.5rem 0;
text-align: center;
-webkit-transition: background-color .6s, -webkit-transform .6s;
transition: background-color .6s, transform .6s;
    background-color: none;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 10000;
}
    header.smaller .open{
        line-height: 4rem;
    }
#navTgl:checked + .open {
    color: #fff;
}
.close {
pointer-events: none;
z-index: 1;
width: 100%;
height: 100%;
transition: .6s;
}
#navTgl:checked ~ .close {
pointer-events: auto;
background-color: rgba(0,0,0,0.5);
}

/* :::::: drawer menu :::::: */
header .menu {
z-index: 1;
position: fixed;
overflow: auto;
top: 0;
left: 40.1%;
width: 60%;
height: 100%;
    margin: 0;
padding: 0;
-webkit-transform: translateX(100%);
transform: translateX(100%);
-webkit-transition: -webkit-transform .6s;
transition: transform .6s;
        background: #012d13;
    background-image: url(images/bg_menu.jpg);
    background-size: auto;
    background-repeat: repeat;
}
#navTgl:checked ~ .menu {
-webkit-transform: translateX(0);
transform: translateX(0);
    margin: 0;
}
header .menu li a {
color: #fff;
}
header nav ul {
    width: 100%;
    list-style-type: none;
    margin: 5rem 0 0 0;
    padding: 0;
}
header .menu li {
    width: 100%;
    background: none;
    font-size: 1rem;
    line-height: 2rem;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
    border-bottom: 2px solid #fff;
}
    header .menu li.sub{
        width: 100%;
        padding: 0 0 0 0;
    }
header .menu li a {
    width: 80%;
    display: block;
    padding: 0.4rem 10%;
    text-decoration: none;
    transition: .6s;
    color: #fff;
    font-weight: bold;
}
header .menu li a:hover {
background-color: #fff;
    color: #012d13;
}
    header .menu li a i{
        margin: 0 0.5rem 0 0
    }
header .menu li.sub a{
    width: 70%;
    padding: 0.4rem 10% 0.4rem 20%;
}


.modal_wrap input{
    display: none;
}

.modal_overlay{
        display: none;
}

.modal_trigger{
        display: none;
}

.modal_content{
        display: none;
}

.close_button{
        display: none;
}

.modal_wrap input:checked ~ .modal_overlay{
        display: none;
}

.modal_wrap input:checked ~ .modal_overlay .modal_content{
        display: none;
}


    header .menu img{
        width: 30%;
        margin: 2rem auto;
        padding: 0;
        display: block;
        position: relative;
    }

/*コンテナー
---------------------------------------------------------------------------*/
#container {
    text-align: left;
    width: 100%;
    margin-right: 0rem;
    margin-left: 0rem;
    border: none;
}


/*全体を囲むボックス
---------------------------------------------------------------------------*/
#contents {
    clear: both;
    width: 100%;
    margin-left: 0rem;
    margin-right: 0rem;
    padding-top: 0;
}


/*メインコンテンツ1
---------------------------------------------------------------------------*/

    #mov_over{
        width: 100%;
        height: 0;
        margin: 0 0 -6rem 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #mov_over img{
        width: 40%;
        height: auto;
        max-height: 50vh;
        margin: auto;
        padding: 0;
        display: block;
        position: absolute;
        right: 1rem;
        bottom: -3rem;
        opacity: 0.6;
        z-index: 1;
        object-fit: contain;
    }
    
    #mov_over p{
        width: 90%;
        margin: 0;
        padding: 0 5%;
        display: block;
        position: absolute;
        top: -40vh;
        font-size: 3rem;
        line-height: 4rem;
        text-align: center;
        color: #fff;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
        text-shadow: 2px 2px 4px #333;
    }
    #mov_over p span{
        display: block;
        font-size: 1.3rem;
        line-height: 3rem;
    }
    
    #contents_outer{
        width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    .top_border{
        width: 100%;
        height: 5rem;
        margin: 0;
        padding: 0.5rem 0;
        display: block;
        position: relative;
        background: rgba(0,28,14,0.6);
    }
    .top_border p.title{
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 2.5rem;
        line-height: 4rem;
        color: #fff;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
    }
    
    #top{
        width: 100%;
        margin: 0;
        padding: 3rem 0 5rem 0;
        display: block;
        position: relative;
        background: #fff;
    }
    #top p.title{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 2rem;
        line-height: 3rem;
        color: #000;
        font-family: "Shippori Mincho", serif;
    }
    #top p{
        width: 80%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 1.5rem;
        line-height: 3rem;
        font-family: "Yuji Syuku", serif;
        color: #333;
    }
    
    #contents_outer .btn_outer{
        width: 100%;
        margin: 5rem auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }
    #contents_outer .btn_outer a{
        margin: 0;
        padding: 0.5rem 2rem;
        border: 1px solid #012d13;
        color: #fff;
        font-size: 1rem;
        line-height: 2rem;
        text-decoration: none;
        background: #012d13;
    }
    #contents_outer .btn_outer a::after{
        font-family: 'Font Awesome 5 Free';
        margin: 0 0 0 0.5rem;
        padding: 0;
        content: "\f101";
        font-weight: 700;
        display: inline-block;
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
    }
    #contents_outer .btn_outer a:hover{
        color: #012d13;
        background: #fff;
    }
    #contents_outer .btn_outer a:hover::after{
        transform: translate(0.8rem);
    }
    
    #news{
        width: 100%;
        margin: 0;
        padding: 5rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        background: #efefef;
    }
    #news h2{
        width: 90%;
        margin: 0 auto 5rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #news h2 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #news h2 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #news h2 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    
    #news dl.news_outer{
        width: 90%;
        height: 20rem;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        overflow-y: scroll;
        background: #fff;
    }
    #news dl.news_outer::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
    #news dl.news_outer::-webkit-scrollbar-track {
        background: #eee;
    }
    #news dl.news_outer::-webkit-scrollbar-thumb {
        background: rgba(200, 200, 200, 1);
        border-radius: 2.5px;
    }
    #news dl.news_outer dt.day{
        width: 95%;
        margin: 0;
        padding: 0.25rem 2.5%;
        display: block;
        position: relative;
        text-align: left
        font-weight: bold;
        font-size: 1rem;
        line-height: 2rem;
        color: #555;
        border-top: 1px solid #ccc;
        letter-spacing: 0.1rem;
    }
    #news dl.news_outer dd.text{
        width: 95%;
        margin: 0;
        padding: 0.25rem 2.5%;
        display: block;
        position: relative;
        border-top: 1px solid #ccc;
    }
    #news dl.news_outer dt.day:first-of-type,
    #news dl.news_outer dd.text:first-of-type{
        border: none;
    }
    #news dl.news_outer dd.photo_outer{
        width: 95%;
        margin: 0;
        padding: 0.25rem 2.5%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }
    #news dl.news_outer dd.text p.title{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-weight: bold;
        font-size: 1rem;
        line-height: 2rem;
    }
    #news dl.news_outer dd.text p.title span.category{
        margin: 0 0.5rem 0 0;
        padding: 0.1rem 0.5rem;
        color: #fff;
        background: #012d13;
        border-radius: 0.5rem;
    }
    #news dl.news_outer dd.text p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 2rem;
    }
    #news dl.news_outer dd.photo_outer a{
        width: 6rem;
        height: 6rem;
        margin: 0 1rem 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        overflow: hidden;
    }
    #news dl.news_outer dd.photo_outer a:hover{
        opacity: 0.6;
    }
    #news dl.news_outer dd.photo_outer a img{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        object-fit: cover;
    }
    
    #service_info{
        width: 100%;
        margin: 0;
        padding: 5rem 0 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        background-image: url(images/bg_img.jpg);
        background-size: contain;
        background-position: center center;
        background-repeat: repeat;
        background-attachment: fixed;
    }
    #service_info h2{
        width: 90%;
        margin: 5rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #service_info h2 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #service_info h2 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #service_info h2 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #service_info .service_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #fff;
    }
    #service_info .service_outer .service_inner{
        width: 100%;
        margin: 0;
        padding: 2rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    #service_info .service_outer .service_inner h3{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.5rem;
        line-height: 3rem;
        font-family: "Shippori Mincho", serif;
        letter-spacing: 0.1rem;
        font-weight: normal;
    }
    #service_info .service_outer .service_inner p{
        width: 92%;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 2.5rem;
    }
    #service_info .service_outer .photo_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #000;
    }
    #service_info .service_outer .photo_outer img{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        object-fit: cover;
    }
    
    
    #contents_top{
        width: 90%;
        height: 100vh;
        margin: 0;
        padding: 0 5%;
        display: block;
        position: relative;
    }
    .bg_about{
        background-image: url(images/bg_about.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .bg_service{
        background-image: url(images/bg_service.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .bg_contact{
        background-image: url(images/bg_contact.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    #contents_top h2{
        width: 100%;
        margin: 0;
        padding: 0.25rem 0;
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        background: rgba(0,28,14,0.8);
        font-size: 2rem;
        line-height: 4rem;
        color: #fff;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        letter-spacing: 0.2rem;
    }
    
    #message{
        width: 100%;
        margin: 0;
        padding: 5rem 0 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        background: #fff;
    }
    #message h3{
        width: 90%;
        margin: 0 auto 5rem auto;
        padding: 0 6.5%;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #message h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #message h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #message h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #message .message_outer{
        width: 80%;
        margin: 0;
        padding: 5rem 10%;
        display: block;
        position: relative;
        background: #eee;
    }
    #message .message_outer p{
        width: 100%;
        margin: 0 0 0.5rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
    }
    #message .message_outer p.signature{
        width: 100%;
        margin: 1rem auto 0 auto;
        text-align: right;
    }
    #message .message_outer p.signature span{
        font-size: 2.5rem;
        line-height: 3.5rem;
        margin: 0 0 0 1rem;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
    }
    
    
    
    
    #staff{
        width: 90%;
        margin: 0;
        padding: 5rem 5%;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-size: contain;
        background-position: center center;
        background-repeat: repeat;
        background-attachment: fixed;
    }
    #staff h3{
        width: 100%;
        margin: 0 auto 5rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #staff h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #staff h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #staff h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #staff .staff_member{
        width: 100%;
        margin: 0 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }
    #staff .staff_outer{
        width: 48%;
        min-width: none;
        margin: 0 0 5rem 0;
        padding: 0;
        display: block;
        position: relative;
        background: #fff;
        box-shadow: 4px 4px 8px #333;
        border-bottom: 1rem solid #012d13;
    }
    #staff .staff_outer .photo_inner{
        width: 100%;
        margin: 0;
        padding: 100% 0 0 0;
        display: block;
        position: relative;
        overflow: hidden;
    }
    #staff .staff_outer img{
        width: 90%;
        margin: 0 5%;
        padding: 0;
        display: block;
        position: absolute;
        top: 1rem;
    }
    #staff .staff_outer .profile_outer{
        width: 90%;
        margin: 0;
        padding: 2rem 5%;
        display: block;
        position: relative;
    }
    #staff .staff_outer .profile_outer p.position{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: bold;
        color: #012d13;
    }
    #staff .staff_outer .profile_outer p.name{
        width: 100%;
        margin: 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
    }
    #staff .staff_outer .profile_outer p.name span{
        display: block;
        font-weight: normal;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    #staff .staff_outer .profile_outer p.message{
        width: 100%;
        margin: 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #012d13;
        font-style: italic;
    }
    #staff .staff_outer .profile_outer ul{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .staff_outer .profile_outer ul li{
        width: 90%;
        margin: 0 0 0 10%;
        padding: 0;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
    }
        #staff .staff_outer .profile_outer dl{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .staff_outer .profile_outer dl dt{
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #012d13;
    }
    #staff .staff_outer .profile_outer dl dd{
        width: 100%;
        margin: 0 0 0 0;
        padding: 0;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    #staff .staff_outer .profile_outer dl.skill dd::before{
        content: "\f0da";
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
        margin: 0 0.5rem 0 0;
    }
    
    #staff .ceo{
        width: 100%;
        margin: 0 0 5rem 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    #staff .ceo .staff_inner{
        width: 30%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    
    
    
    #staff .ceo .toggle_outer{
        width: 70%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .ceo .toggle_outer input{
        display: none;
    }
    #staff .ceo .toggle_outer .toggle_title{
        display: none;
		pointer-events: none;
	}
    #staff .ceo .toggle_outer .toggle{
        width: 95%;
        margin: 0;
        padding: 0.5rem 2.5%;
        display: block;
        position: relative;
	}
    #staff .ceo .toggle_outer .toggle dl{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
	}
    #staff .ceo .toggle_outer .toggle dl{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .ceo .toggle_outer .toggle dl dt{
        width: 98%;
        margin: 0 0 0.5rem 0;
        padding: 0 1%;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #fff;
        background: #012d13;
    }
    #staff .ceo .toggle_outer .toggle dl dd{
        width: calc(100% - 1rem);
        margin: 0;
        padding: 0 0 0 1rem;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.6rem;
        text-indent: -1rem;
    }
    #staff .ceo .toggle_outer .toggle dl dd::before{
        content: "\f0da";
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
        margin: 0 0.5rem 0 0;
    }
    #staff .ceo .toggle_outer .toggle dl dd.skill{
        width: 100%;
        margin: 0;
        padding: 0;
        text-indent: 0;
    }
    #staff .ceo .toggle_outer .toggle dl dd.skill::before,
    #staff .ceo .toggle_outer .toggle dl dd.skill dl dd::before{
        content: "";
        margin: 0;
    }
    #staff .ceo .toggle_outer .toggle dl dd.skill dl{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .ceo .toggle_outer .toggle dl dd.skill dl dt{
        width: calc(100%- 1rem);
        margin: 0;
        padding: 0 0.5rem;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.6rem;
        color: #000;
        background: none;
        border-bottom: 1px dashed #ccc;
    }
    #staff .ceo .toggle_outer .toggle dl dd.skill dl dd{
        width: calc(100%- 1rem);
        margin: 0 0 0.25rem 0;
        padding: 0 0.5rem;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.6rem;
        border-bottom: 1px dashed #ccc;
        text-indent: 0;
    }
    
    
    
    
    #company_info{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_about.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    #company_info .bg_cover{
        width: 90%;
        margin: 0;
        padding: 5rem 5%;
        display: block;
        position: relative;
        background: linear-gradient(to right,rgba(255,255,255,0.8) 20%,rgba(255,255,255,1) 50%);
    }
    #company_info .bg_cover h3{
        width: 100%;
        margin: 0 auto 5rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #company_info .bg_cover h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #company_info .bg_cover h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #company_info .bg_cover h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #company_info .bg_cover .message_outer{
        width: 100%;
        margin: 0 0 5rem 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #company_info .bg_cover .message_outer p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 2.5rem;
        line-height: 4rem;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
        color: #012d13;
    }
    #company_info .bg_cover .profile_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: rgba(255,255,255,0.6);
    }
    #company_info .bg_cover .profile_outer dl{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    #company_info .bg_cover .profile_outer dl dt{
        width: 6rem;
        margin: 0;
        padding: 0.25rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: bold;
        border-bottom: 1px solid #eee;
    }
    #company_info .bg_cover .profile_outer dl dt:nth-of-type(even){
        margin: 0 0 0 0.5rem;
    }
    #company_info .bg_cover .profile_outer dl dd{
        width: calc(50% - 7.5rem);
        margin: 0;
        padding: 0.25rem;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        font-size: 1rem;
        line-height: 1.5rem;
        border-bottom: 1px solid #eee;
    }
    #history{
        width: 100%;
        margin: 0;
        padding: 5rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
        background: #012d13;
    }
    #history h3{
        width: 90%;
        margin: 0 5% 5rem 5%;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #fff;
    }
    #history h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #history h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #history h3 span::after{
        border-top: 1px solid #fff;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #history .history_outer{
        width: 90%;
        margin: 0;
        padding: 0 0 2rem 0;
        display: block;
        position: relative;
        overflow-x: scroll;
        white-space: nowrap;
    }
    #history .history_outer:active {
        cursor: grabbing;
}
    #history .history_outer::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
    #history .history_outer::-webkit-scrollbar-track {
        background: #eee;
    }
    #history .history_outer::-webkit-scrollbar-thumb {
        background: rgba(200, 200, 200, 1);
        border-radius: 2.5px;
    }
    #history .history_outer .history_inner{
        width: 30%;
        margin: 0 5% 0 0;
        padding: 30% 0 0 0;
        display: inline-block;
        position: relative;
        background: #fff;
        z-index: 0;
        white-space: wrap;
    }
    #history .history_outer .history_inner:last-of-type{
        margin: 0;
    }
    #history .history_outer .history_inner p{
        width: 95%;
        margin: 0;
        padding: 0.5rem 2.5%;
        display: block;
        position: absolute;
        top: 0;
        text-align: right;
        font-size: 3rem;
        line-height: 3rem;
        font-family: "Shippori Mincho", serif;
        color: rgba(0,28,14,0.2);
    }
    #history .history_outer .history_inner dl{
        width: calc(100% - 2rem);
        margin: 0;
        padding: 1rem;
        display: block;
        position: absolute;
        bottom: 0;
    }
    #history .history_outer .history_inner dl dt{
        width: 100%;
        margin: 0 0 0.5rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-weight: bold;
    }
    #history .history_outer .history_inner dl dd{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    #history .allow_outer{
        width: 5%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }
    #history .allow_outer p{
        margin: 0 0 2rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 2rem;
        line-height: 2rem;
        color: #fff;
    }
    
    
    #service{
        width: 100%;
        margin: 0;
        padding: 5rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-size: contain;
        background-position: center center;
        background-repeat: repeat;
        background-attachment: fixed;
    }
    #service h3{
        width: 90%;
        margin: 0;
        padding: 0 5% 5rem 5%;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #service h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #service h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #service h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #service .service_outer{
        width: 100%;
        margin: 0;
        padding: 5rem 0;
        display: block;
        position: relative;
    }
    #service .service_outer h4{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        font-size: 2rem;
        line-height: 4rem;
        font-family: "Shippori Mincho", serif;
    }
    #service .service_outer h4::after{
        border-top: 1px solid #000;
        content: "";
        width: 8rem; 
        margin: 0 0 0 1rem;
    }
    #service .service_outer h4::before{
        border-top: 1px solid #000;
        content: "";
        width: 8rem; 
        margin: 0 1rem 0 0;
    }
    #service .service_outer p.title{
        width: 90%;
        margin: 0 auto 5rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.2rem;
        line-height: 2rem;
    }
    #service .service_outer .service_inner{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        position: relative;
    }
    #service .service_outer .service_inner .text_inner{
        width: 42.5%;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-flow: column;
        position: relative;
        background: #fff;
    }
    #service .service_outer .service_inner:nth-of-type(odd) .text_inner{
        padding: 3rem 0 3rem 2.5%;
    }
    #service .service_outer .service_inner:nth-of-type(even) .text_inner{
        padding: 3rem 2.5% 3rem 0;
    }
    #service .service_outer .service_inner:nth-of-type(even){
        flex-flow: row-reverse;
    }
    #service .service_outer .service_inner .text_inner h5{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.3rem;
        break-inside: 2rem;
        color: #012d13;
    }
    #service .service_outer .service_inner .text_inner p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2.5rem;
    }
    #service .service_outer .service_inner .photo_inner{
        width: 55%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #service .service_outer .service_inner .photo_inner img{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        object-fit: cover;
    }
    #service .service_outer .service_inner .photo_inner .photo_cover{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }
    #service .service_outer .service_inner:nth-of-type(odd) .photo_inner .photo_cover{
        background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 20%);
    }
    #service .service_outer .service_inner:nth-of-type(even) .photo_inner .photo_cover{
        background-image: linear-gradient(-90deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 20%);
    }
    
    #service .contact{
        width: 90%;
        margin: 0;
        padding: 5rem 5%;
        display: block;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        text-align: center;
    }
    #service .contact p{
        width: 100%;
        margin: 0 0 5rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #012d13;
    }
    #service .contact dl{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        background: #012d13;
    }
    #service .contact dl dt{
        width: 95%;
        margin: 0;
        padding: 1rem 2.5%;
        display: block;
        position: relative;
        font-size: 2.5rem;
        line-height: 3.5rem;
    }
    #service .contact dl dt a{
        color: #fff;
        text-decoration: none;
        margin: 0;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        letter-spacing: 0.3rem;
    }
    #service .contact dl dt a i{
        margin: 0 1rem 0 0;
        color: #ff0;
    }
    #service .contact dl dd{
        width: 90%;
        margin: 0 2.5%;
        padding: 1rem 2.5%;
        display: block;
        position: relative;
        color: #fff;
        font-size: 1.2rem;
        line-height: 2rem;
        border-top: 1px solid #fff;
    }
    #service .contact p.mail{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #012d13;
    }
    #service .contact p.mail a{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 1rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-flow: column;
        color: #fff;
        text-decoration: none;
        font-size: 2rem;
        line-height: 3rem;
    }
    #service .contact p.mail a i{
        font-size: 3rem;
        line-height: 4rem;
    }
    #service .contact p.mail a:hover{
        color: #ff0;
        background: rgba(255,255,255,0.4);
    }
    
    
    #area{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background-image: url(images/bg_img.jpg);
        background-size: contain;
        background-position: center center;
        background-repeat: repeat;
        background-attachment: fixed;
    }
    #area .area_bg{
        width: 90%;
        margin: 0;
        padding: 5rem 5%;
        display: block;
        position: relative;
        background: rgba(100,100,100,0.1)
    }
    #area .area_bg h3{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #area .area_bg h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #area .area_bg h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #area .area_bg h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #area .area_bg .map_outer{
        width: 90%;
        margin: 0;
        padding: 3rem 5%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        background: rgba(255,255,255,0.6);
    }
    #area .area_bg .map_outer .map_inner{
        width: 75%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #area .area_bg .map_outer .map_inner p.title{
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #012d13;
        font-size: 2rem;
        line-height: 2.5rem;
        z-index: 10;
    }
    #area .area_bg .map_outer .map_inner p.title span{
        font-size: 1.1rem;
        line-height: 1.8rem;
        font-weight: normal;
        color: #000;
    }
    #area .area_bg .map_outer .map_inner .area_inner{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        z-index: 1;
    }
    #area .area_bg .map_outer .map_inner .area_inner dl{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: relative;
    }
    #area .area_bg .map_outer .map_inner .area_inner dl dt{
        width: 100%;
        margin: 0 0 0.5rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #012d13;
        font-size: 1.5rem;
        line-height: 2rem;
    }
    #area .area_bg .map_outer .map_inner .area_inner dl dd{
        width: calc((100% / 6) - 0.5rem);
        margin: 0 0.5rem 0.5rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 1.5rem;
    }
    #area .area_bg .map_outer img{
        width: 30%;
        margin: 0;
        padding: 0;
        display: block;
        position: absolute;
        right: -2.5%;
        bottom: -2rem;
        filter: drop-shadow(4px 4px 8px #999);
        z-index: 0;
    }
    
    
    #price{
        width: 90%;
        margin: 0;
        padding: 5rem 5%;
        display: block;
        position: relative;
        background: #efefef;
    }
    #price h3{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #price h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #price h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #price h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #price .price_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }
    #price .price_outer h4{
        width: 100%;
        margin: 5rem 0 3rem 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        font-size: 1.5rem;
        line-height: 3rem;
        font-family: "Shippori Mincho", serif;
    }
    #price .price_outer h4::after{
        border-top: 1px solid #000;
        content: "";
        width: 8rem; 
        margin: 0 0 0 1rem;
    }
    #price .price_outer h4::before{
        border-top: 1px solid #000;
        content: "";
        width: 8rem; 
        margin: 0 1rem 0 0;
    }
    #price .price_outer dl{
        width: 100%;
        margin: 0 0 0.5rem 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }
    #price .price_outer dl dt{
        width: 95%;
        margin: 0;
        padding: 0.25rem 2.5%;
        display: block;
        position: relative;
        text-align: center;
        background: #012d13;
        color: #fff;
        font-weight: bold;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    #price .price_outer dl dd.data{
        width: 65%;
        margin: 0 0 0.25rem 0;
        padding: 0.25rem 2.5%;
        display: block;
        position: relative;
        text-align: center;
        background: #fff;
        font-size: 1.1rem;
        line-height: 1.8rem;
        border-bottom: 1px solid #999;
    }
    #price .price_outer dl dd.price,
    #price .price_outer dl dd.other{
        width: 24%;
        margin: 0 0 0.25rem 0;
        padding: 0.25rem 2.5%;
        display: block;
        position: relative;
        text-align: center;
        background: #ffffcc;
        font-size: 1.1rem;
        line-height: 1.8rem;
        border-bottom: 1px solid #999;
    }
    #price .price_outer dl dd.price::before{
        content: "\FFE5";
    }
    #price .price_outer p.comingsoon{
        width: 100%;
        margin: 5rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.1rem;
        line-height: 2rem;
        color: #012d13;
    }
    
    #price p.caution{
        width: 100%;
        margin: 5rem 0 0 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.1rem;
        line-height: 2rem;
    }
    
    
    
    #flow{
        width: 90%;
        margin: 0;
        padding: 5rem 5%;
        display: block;
        position: relative;
        background: #fff;
    }
    #flow h3{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #flow h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #flow h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #flow h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #flow .flow_outer{
        width: 100%;
        margin: 5rem 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    #flow .flow_outer .circle{
        width: 25%;
        padding: 25% 0 0 0;
        border-radius: 50%;
        display: block;
        position: relative;
        overflow: hidden;
    }
    #flow .flow_outer .circle img{
        width: auto;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }
    #flow .flow_outer dl{
        width: 65%;
        margin: 0 0 0 auto;
        padding: 0;
        display: block;
        position: relative;
    }
    #flow .flow_outer dl dt{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
        font-size: 2rem;
        line-height: 4rem;
        border-bottom: 1px solid #012d13;
    }
    #flow .flow_outer dl dt span{
        font-size: 3rem;
        margin: 0 1rem 0 0;
        color: #012d13;
    }
    #flow .flow_outer dl dd{
        width: 100%;
        margin: 0;
        padding: 0.5rem 0;
        display: block;
        position: relative;
        color: #000;
        font-size: 1.2rem;
        line-height: 2.5rem;
    }
    
    .ggmap {
        width: 100%;
        position: relative;
        margin: 0;
        padding-bottom: 50%;
        padding-top: 0;
        height: 0;
        overflow: hidden;
        border: none!important;
    }

    .ggmap iframe,
    .ggmap object,
    .ggmap embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none!important;
    }

    #contact{
        width: 90%;
        margin: 0;
        padding: 5rem 5%;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-repeat: repeat;
        background-size: contain;
        background-attachment: fixed;
    }
    #contact h3{
        width: 100%;
        margin: 0 auto 5rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #contact h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #contact h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #contact h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #contact .contact_outer{
        width: 95%;
        margin: 0 0 3rem 0;
        padding: 2rem 2.5%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        background: #fff;
        box-shadow: 4px 4px 8px #999;
    }
    #contact .contact_outer p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 1.2rem;
        line-height: 2rem;
    }
    #contact .contact_outer img{
        width: 80%;
        margin: 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        object-fit: contain;
    }
    #contact .contact_outer dl.tel_info{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #contact .contact_outer dl.tel_info dt{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.2rem;
        line-height: 2rem;
    }
    #contact .contact_outer dl.tel_info dd{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }
    #contact .contact_outer dl.tel_info dd a{
        font-size: 2.5rem;
        line-height: 4rem;
        text-decoration: none;
        font-weight: bold;
        color: #012d13;
    }
    #contact .contact_outer dl.tel_info dd a i{
        margin: 0 1rem 0 0;
    }
    #contact .contact_outer dl.tel_info dd p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    
    #contact .contact_outer .form_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #contact .contact_outer .form_outer dl{
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        position: relative;
    }
    #contact .contact_outer .form_outer dl dt{
        width: 8rem;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        position: relative;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    #contact .contact_outer .form_outer dl dt.check::before{
        content: "\f00c";
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
        margin: 0 0.5rem 0 0;
        font-size: 1rem;
        color: #f00;
    }
    #contact .contact_outer .form_outer dl dd{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: relative;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    #contact .contact_outer .form_outer dl dd span.checkbox_outer{
        margin: 0 2rem 0 0;
    }
    #contact .contact_outer .form_outer .formbutton{
        width: 100%;
        margin: 2rem 0 0 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }
    #success{
        width: 90%;
        margin: 0;
        padding: 5rem 5%;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-repeat: repeat;
        background-size: contain;
        background-attachment: fixed;
    }
    #success p.title{
        width: 100%;
        margin: 0 0 5rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #012d13;
        font-size: 2rem;
        line-height: 4rem;
        text-align: center;
    }
    #success p{
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2.5rem;
    }
    
    #formWrap{
        width: 90%;
        min-height: 60vh;
        margin: 0;
        padding: 10rem 5%;
        display: block;
        position: relative;
        background: #fff;
    }
    #formWrap h3{
        width: 100%;
        margin: 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.3rem;
        break-inside: 2rem;
        color: #012d13;
    }
    #formWrap h4{
        width: 100%;
        margin: 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.1rem;
        break-inside: 2rem;
        color: #f00;
    }
    #formWrap p{
        width: 100%;
        margin: 3rem 0;
        font-size: 1.1rem;
        line-height: 2rem;
        color: #333;
    }
    #formWrap p.error_messe{
        width: 100%;
        margin: 3rem 0;
        color: #f00;
}
    #formWrap table.formTable{
        width:100%;
        margin:2rem auto;
        padding: 0;
        border-collapse:collapse;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    #formWrap table.formTable th{
        width: 10rem;
        margin: 0;
        padding: 0.5rem;
        font-weight:normal;
        background:#efefef;
        text-align:center;
        border:1px solid #ccc;
    }
    #formWrap table.formTable td{
        width: calc(100% - 12rem - 4px);
        margin: 0;
        padding: 0.5rem;
        background: #fff;
        border:1px solid #ccc;
    }
    #formWrap a{
        color: #fcfcfc!important;
    }
    

    #contact .wvlink{
        width: 100%;
        margin: 8rem 0 0rem 0;
        font-size: 1rem;
        padding: 0;
        text-align: center;
        display: block;
        position: relative;
    }
    #contact .wvlink a{
        color: #666;
        text-decoration: none;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border: 1px solid #666;
    }
    #contact .wvlink a::before{
        content: "\f0da";
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
        margin: 0 0.5rem 0 0;
    }
    #contact .wvlink a:hover{
        background: rgba(255,255,255,0.4);
    }


    #recruitment{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    #recruitment .recruitment_bg{
        width: 90%;
        margin: 0;
        padding: 5rem 5%;
        display: block;
        position: relative;
        background: rgba(200,200,200,0.2);
    }
    #recruitment .recruitment_bg h3{
        width: 100%;
        margin: 0 auto 5rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #recruitment .recruitment_bg h3 span{
        font-size: 1.2rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #recruitment .recruitment_bg h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #recruitment .recruitment_bg h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #recruitment .recruitment_bg p.title{
        width: 100%;
        margin: 0 0 5rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #012d13;
        font-size: 2rem;
        line-height: 4rem;
        text-align: center;
    }
    #recruitment .recruitment_bg dl{
        width: 98%;
        margin: 0 0 2rem 0;
        padding: 1rem 1%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        background: #fff;
    }
    #recruitment .recruitment_bg dl dt{
        width: 7rem;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        position: relative;
        font-size: 1.1rem;
        line-height: 2rem;
        font-weight: bold;
        color: #012d13;
    }
    #recruitment .recruitment_bg dl dt i{
        margin: 0 0.5rem 0 0;
    }
    #recruitment .recruitment_bg dl dd{
        width: calc(100% - 7rem);
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 2rem;
    }
    #recruitment .recruitment_bg dl dd span.tag{
        margin: 0.25rem 1rem 0.25rem 0;
        padding: 0 0.5rem;
        display: inline-block;
        position: relative;
        border-radius: 0.5rem;
        background: #012d13;
        color: #fff;
    }




input[type=text],
input[type=tel],
input[type=date]{
    width: calc(100% - 2px - 1rem);
    margin: 0;
    padding: 0 0.5rem;
    border-radius: 0.3rem;
    border:#a9a9a9 1px solid;
    font-size: 0.9rem;
    line-height: 1.5rem;
}


input[type=checkbox]{
    margin:0.5rem 0.5rem 0 0;
        position: relative;
        top: 0.2rem;
}
input[type=radio] {
    margin: 0;
        position: relative;
        top: 0.2rem;
}
select{
    width: calc(100% - 2px);
    margin: 0;
    padding: 2px 0.5rem;
    line-height: 2rem;
    border-radius: 0.3rem;
    border:#a9a9a9 1px solid;
    }


textarea{
    width: calc(100% - 2px - 1rem);
    height: 10rem;
    margin: 0;
    padding: 0 0.5rem;
    line-height: 2rem;
    font-size: 1rem;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border:#a9a9a9 1px solid;
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
}

textarea:focus {
    border:solid 1px #20b2aa;
}

textarea, select {
    outline: none;
}


input[type="file"]{
    width: 100%;
    margin: 0 0 0.5rem 0;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.5rem;
}

    input[type=submit]{
    font-size: 1rem;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border:#a9a9a9 1px solid;
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    width: 10rem;
    height: 2rem;
    padding:0 1% 0 1%;
    margin: 0em;
        color: #000;
}
    input[type=reset]{
    font-size: 1rem;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border:#a9a9a9 1px solid;
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    width: 10rem;
    height: 2rem;
    padding:0 1% 0 1%;
    margin: 0em;
}
    input[type=button]{
    font-size: 1rem;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border:#a9a9a9 1px solid;
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    width: 10rem;
    height: 2rem;
    padding:0 1% 0 1%;
    margin: 0em;
}

/*背面動画
---------------------------------------------------------------------------*/
    .bgmovie{
        position: relative;
        width: 100%;
        padding: 0;
        overflow: hidden;
        z-index: 0;
        display: block;
        margin: 0;
    }
    .bgmovie::before{
        content: "";
        display: block;
        padding: 100vh 0 0 0;
    }
    .bgmovie video{
        position: absolute;
        top: 0;
        z-index: 2;
        display: block;
        margin: auto;
        background-color: #fff;
    }
    @media all and (-ms-high-contrast: none){
  .bgmovie video{
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      display:-ms-flexbox;
      -ms-flex-pack: center;
      -ms-flex-align: center;
      text-align:center;
      margin: auto;
      min-height: 100%;
      min-width: 100%;
      width: 100%;
      height: auto;
      background-color: #000;
    }
}
    @media (aspect-ratio: 16/9), (min-aspect-ratio: 16/9) {
    video {
        width: 100%;
        top: 100%;
    }
  }
    @media (max-aspect-ratio: 16/9) {
    .bgmovie video {
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
  }


.bgmovie .pattern {
  width: 100%;
  height: 100%;
  background: url(images/pattern.png);
    background-size: 8px;
    display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}



/*左右の矢印*/
.slick-next {
    display: none!important;
}
.slick-prev {
    display: none!important;
}
    .slick-dots{
        display: none!important;
        position: relative;
        bottom: -1rem!important;
        margin-top: 0rem!important;
    }

/*フッター
---------------------------------------------------------------------------*/

footer {
    width: 87%;
    margin: 0;
    padding: 2rem 6.5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    position: relative;
    color: #333;
        background: #012d13;
    color: #fff;
}
    footer .footer_info{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer .footer_info h2{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 2.5rem;
        line-height: 3.5rem;
        font-family: "Shippori Mincho", serif;
        letter-spacing: 0.1rem;
        text-align: center
    }
    footer .footer_info h2 span{
        font-size: 1.5rem;
        margin: 0 1rem 0 0;
    }
    footer .footer_info p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 1.8rem;
        text-align: center;
    }
    footer .footer_menu{
        width: calc(100% / 3);
        margin: 0;
        padding: 2rem 0 0 0;
        display: block;
        position: relative;
    }
    footer .footer_menu dl{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer .footer_menu dl a{
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: #fff;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    footer .footer_menu dl a:hover{
        color: #ff0;
    }
    footer .footer_menu dl a i{
        margin: 0 0.5rem 0 0;
    }
    footer .footer_menu dl dt{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer .footer_menu dl dd{
        width: calc(100% - 1.5rem);
        margin: 0;
        padding: 0 0 0 1.5rem;
        display: block;
        position: relative;
    }
    footer .footer_menu ul{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer .footer_menu ul li{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer .footer_menu ul li a{
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: #fff;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    footer .footer_menu ul li a:hover{
        color: #ff0;
    }
    footer .footer_menu a i{
        margin: 0 0.5rem 0 0;
    }
    footer p.copy{
        width: 100%;
        margin: 2rem 0 0 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }

/*その他
---------------------------------------------------------------------------*/
    .spnone{
        display: none!important;
    }
.color1 {
    color: #FF0000;
}

.color2 {
    color: #0000FF;
}

.color3 {
    color: darkorange;
    font-weight: bold;
}

.color4 {
    color: #336699;
}

.color5 {
    color: #009edc;
    font-weight: bold;
}

.color6 {
    color: #FFFF00;
    font-weight: normal;
}

.strong{
    font-weight: bold;
}
.look {
    background-color: #E4E4E4;
}

.mb1em {
    margin-bottom: 1em;
}

.clear {
    clear: both;
}

.clear hr {
    display:none;
    }

.clearsp {
    display:none;
    }
.br01 {
    margin-bottom: 1rem;
    clear: both;
}

.br01 hr {
    display:none;
    }


.br03 {
    margin-bottom: 3rem;
    clear: both;
}

.br03 hr {
    display:none;
    }


.pcbr03 {
    margin-bottom: 3rem;
    clear: both;
}

.pcbr03 hr {
    display:none;
    }


.spbr03 {
    display: none;
}

.spbr03 hr {
    display:none;
    }


.br-03 {
    margin-bottom: -3rem!important;
    clear: both;
}

.br-03 hr {
    display:none;
    }

.br06 {
    margin-bottom: 6rem;
    clear: both;
}

.br06 hr {
    display:none;
    }

.br40 {
    margin-bottom: 40rem;
    clear: both;
}

.br40 hr {
    display:none;
    }

span.no-robots-2
    {
    display: none;
    }

.br:before {
    content: "\A" ;
    white-space: pre ;
}

.pccounter {
    position: relative;
    top: 0rem;
    left: 0;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    border: none;
    color: #333;
    display: none;
}
.pccounter iframe {
    width: 100%;
    height: 3rem;
    border: none;
    background: none;
    overflow: hidden;
    vertical-align: bottom;
    background-color: transparent;
    }

    .pccounter img{
        position: relative;
        top: 0;
        left: 5%;
    }


/*戻るボタン
---------------------------------------------------------------------------*/

.pagetop {
    display: none;
    position: fixed;
    bottom: 0rem;
    right: 0;
    z-index: 1000;
    margin: 0;
}
.pagetop a {
    display: block;
    background-color: #012d13;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    padding: 0.8rem;
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    margin: 0;
        line-height: 0rem;
}
.pagetop a:hover {
    opacity: 0.85 ;
}
    .pagetop span{
        font-size: 1rem;
        margin: 0;
    }
    .pagetop span::before{
        white-space: pre;
        content: "\a";
    }

}

/*===============================================

画面の横幅が600pxまで（スマホ用）

===============================================*/

@media screen and (max-width: 600px){

html{
    font-size: 85%;
    margin: 0px;
    padding: 0px;
    min-height: 100%;
    position: relative;
    }


body {
    font-family:"ヒラギノ角ゴ Pro W3",メイリオ,Osaka,Arial,Verdana
,"ＭＳ Ｐゴシック",sans-serif;
    line-height: 2;
    color: #000;
    margin: 0px;
    padding: 0px;
    text-align: center;
    background: #fff;
}


    /*リンクカラー*/
a {
    color: #002b55;
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}

/*カーソルオーバー時のリンクカラー*/
a:hover {
    color: #A51A91;
    text-decoration: none;    /*下線を消す設定。残したままがいいならこの１行を削除。*/
}


a.hover_img2{
    width: 100%;
    background-color:#fff; /*背景に白を設定*/
    display:inline-block;
    }

a.hover_img2 img{
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}

a:hover.hover_img2 img{
    opacity: 0.6;
    filter: alpha(opacity=60);
}



a.hover_img3 img{
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}

a:hover.hover_img3 img{
    opacity: 0.6;
    filter: alpha(opacity=60);
}

/*ヘッダー
---------------------------------------------------------------------------*/

    header {
        width: 90%;
        height: 5rem;
        margin: 0;
        padding: 0 5%;
        display: block;
        position: fixed;
        top: 0;
        z-index: 10000;
        color: #333;
        background: #fff;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
        border-top: 5px solid #012d13;
    }
    header h1{
        width: 90%;
        height: 4rem;
        margin: 0 auto 0 0;
        padding: 0.5rem 0;
        display: block;
        position: relative;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
    }
    header h1 a{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        text-decoration: none;
        text-align: center;
    }
    header h1 a:hover{
        opacity: 0.6;
    }
    header h1 a img{
        height: 2rem;
        margin: 0 0.5rem 0 0;
        display: block;
        position: relative;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
    }
    header h1 a p{
        width: 100%;
        margin: 0;
        padding: 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-end;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2.5rem;
        font-weight: normal;
        color: #333;
        font-family: "Shippori Mincho", serif;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
        letter-spacing: 0.1rem;
    }
    header h1 a p span.type{
        margin: 0 0.5rem 0 0;
        font-size: 1rem;
        line-height: 1.5rem;
        letter-spacing: 0;
    }
    header h1 a p span.name{
        margin: 0 0.5rem 0 0;
    }
    header h1 span.sp_text{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 0.9rem;
        line-height: 2rem;
        font-weight: normal;
        visibility: visible;
        opacity: 1;
    -webkit-transition: 0.5s ease-in-out;
       -moz-transition: 0.5s ease-in-out;
         -o-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
    }
    header .header_menu{
        display: none;
    }
    header.smaller {
        height: 3.5rem;
        background: rgba(255,255,255,1);
        box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
    }
    header.smaller:hover{
        background: rgba(255,255,255,1);
    }
    header.smaller h1{
        width: 90%;
        height: 3rem;
        margin: 0 auto 0 0;
        padding: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    header.smaller h1 a img{
        height: 2rem;
        margin: 0 0.5rem 0 0;
    }
    header.smaller h1 span.sp_text{
        visibility: hidden;
        opacity: 0;
    }
    
#wrapper {
overflow: hidden;
min-width: 30%;
height: auto;
padding: 0;
    display: block!important;
}
#navTgl:checked ~ .contents {
-webkit-transform: translateX(250px);
transform: translateX(250px);
}

/* :::::: toggle button :::::: */
#navTgl {
display: none;
overflow: hidden;
}
label {
cursor: pointer;
position: fixed;
top: 0;
right: 0;
}
.open {
z-index: 2;
width: 15%;
height: 3rem;
color: #012d13;
font-size: 2rem;
line-height: 4.5rem;
    padding: 0.5rem 0;
text-align: center;
-webkit-transition: background-color .6s, -webkit-transform .6s;
transition: background-color .6s, transform .6s;
    background-color: none;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 10000;
}
    header.smaller .open{
        line-height: 4rem;
    }
#navTgl:checked + .open {
    color: #fff;
}
.close {
pointer-events: none;
z-index: 1;
width: 100%;
height: 100%;
transition: .6s;
}
#navTgl:checked ~ .close {
pointer-events: auto;
background-color: rgba(0,0,0,0.5);
}

/* :::::: drawer menu :::::: */
header .menu {
z-index: 1;
position: fixed;
overflow: auto;
top: 0;
left: 40.1%;
width: 60%;
height: 100%;
    margin: 0;
padding: 0;
-webkit-transform: translateX(100%);
transform: translateX(100%);
-webkit-transition: -webkit-transform .6s;
transition: transform .6s;
        background: #012d13;
    background-image: url(images/bg_menu.jpg);
    background-size: auto;
    background-repeat: repeat;
}
#navTgl:checked ~ .menu {
-webkit-transform: translateX(0);
transform: translateX(0);
    margin: 0;
}
header .menu li a {
color: #fff;
}
header nav ul {
    width: 100%;
    list-style-type: none;
    margin: 5rem 0 0 0;
    padding: 0;
}
header .menu li {
    width: 100%;
    background: none;
    font-size: 1rem;
    line-height: 2rem;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
    border-bottom: 2px solid #fff;
}
    header .menu li.sub{
        width: 100%;
        padding: 0 0 0 0;
    }
header .menu li a {
    width: 80%;
    display: block;
    padding: 0.4rem 10%;
    text-decoration: none;
    transition: .6s;
    color: #fff;
    font-weight: bold;
}
header .menu li a:hover {
background-color: #fff;
    color: #012d13;
}
    header .menu li a i{
        margin: 0 0.5rem 0 0
    }
header .menu li.sub a{
    width: 70%;
    padding: 0.4rem 10% 0.4rem 20%;
}


.modal_wrap input{
    display: none;
}

.modal_overlay{
        display: none;
}

.modal_trigger{
        display: none;
}

.modal_content{
        display: none;
}

.close_button{
        display: none;
}

.modal_wrap input:checked ~ .modal_overlay{
        display: none;
}

.modal_wrap input:checked ~ .modal_overlay .modal_content{
        display: none;
}


    header .menu img{
        width: 50%;
        margin: 2rem auto;
        padding: 0;
        display: block;
        position: relative;
    }

/*コンテナー
---------------------------------------------------------------------------*/
#container {
    text-align: left;
    width: 100%;
    margin-right: 0rem;
    margin-left: 0rem;
    border: none;
}


/*全体を囲むボックス
---------------------------------------------------------------------------*/
#contents {
    clear: both;
    width: 100%;
    margin-left: 0rem;
    margin-right: 0rem;
    padding-top: 0;
}


/*メインコンテンツ1
---------------------------------------------------------------------------*/

    #mov_over{
        width: 100%;
        height: 100vh;
        margin: 0;
        padding: 0;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }
    #mov_over img{
        width: 60%;
        margin: 0;
        padding: 0;
        display: block;
        position: absolute;
        right: 5%;
        bottom: 4rem;
        opacity: 0.6;
        z-index: 1;
    }
    #mov_over p{
        width: 90%;
        margin: 0;
        padding: 0 5%;
        display: block;
        position: absolute;
        top: 40%;
        font-size: 2.5rem;
        line-height: 4rem;
        text-align: center;
        color: #fff;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
        text-shadow: 2px 2px 4px #333;
    }
    #mov_over p span{
        display: block;
        font-size: 1.1rem;
        line-height: 2rem;
    }
    
    #contents_outer{
        width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    .top_border{
        width: 100%;
        height: 4rem;
        margin: 0;
        padding: 0.5rem 0;
        display: block;
        position: relative;
        background: rgba(0,28,14,1);
    }
    .top_border p.title{
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 2rem;
        line-height: 4rem;
        color: #fff;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
    }
    
    #top{
        width: 100%;
        margin: 0;
        padding: 3rem 0 5rem 0;
        display: block;
        position: relative;
        background: #fff;
    }
    #top p.title{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.8rem;
        line-height: 3rem;
        color: #000;
        font-family: "Shippori Mincho", serif;
    }
    #top p{
        width: 90%;
        margin: 0 auto 1rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 1.3rem;
        line-height: 2rem;
        font-family: "Yuji Syuku", serif;
        color: #333;
    }
    
    #contents_outer .btn_outer{
        width: 100%;
        margin: 5rem auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }
    #contents_outer .btn_outer a{
        margin: 0;
        padding: 0.5rem 2rem;
        border: 1px solid #012d13;
        color: #fff;
        font-size: 1rem;
        line-height: 2rem;
        text-decoration: none;
        background: #012d13;
    }
    #contents_outer .btn_outer a::after{
        font-family: 'Font Awesome 5 Free';
        margin: 0 0 0 0.5rem;
        padding: 0;
        content: "\f101";
        font-weight: 700;
        display: inline-block;
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
    }
    #contents_outer .btn_outer a:hover{
        color: #012d13;
        background: #fff;
    }
    #contents_outer .btn_outer a:hover::after{
        transform: translate(0.8rem);
    }
    
    #news{
        width: 100%;
        margin: 0;
        padding: 3rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        background: #efefef;
    }
    #news h2{
        width: 90%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #news h2 span{
        font-size: 1rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #news h2 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #news h2 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    
    #news dl.news_outer{
        width: 90%;
        height: 25rem;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        overflow-y: scroll;
        background: #fff;
    }
    #news dl.news_outer::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
    #news dl.news_outer::-webkit-scrollbar-track {
        background: #eee;
    }
    #news dl.news_outer::-webkit-scrollbar-thumb {
        background: rgba(200, 200, 200, 1);
        border-radius: 2.5px;
    }
    #news dl.news_outer dt.day{
        width: calc(100% - 1rem);
        margin: 0;
        padding: 0.25rem 0.5rem;
        display: block;
        position: relative;
        text-align: left
        font-weight: bold;
        font-size: 1rem;
        line-height: 2rem;
        color: #555;
        letter-spacing: 0.1rem;
    }
    #news dl.news_outer dd.text{
        width: calc(100% - 1rem);
        margin: 0;
        padding: 0.25rem 0.5rem;
        display: block;
        position: relative;
        border-top: 1px solid #ccc;
    }
    #news dl.news_outer dd.text:first-of-type{
        border: none;
    }
    #news dl.news_outer dd.photo_outer{
        width: calc(100% - 1rem);
        margin: 0;
        padding: 0.25rem 0.5rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }
    #news dl.news_outer dd.text p.title{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-weight: bold;
        font-size: 1rem;
        line-height: 2rem;
    }
    #news dl.news_outer dd.text p.title span.category{
        margin: 0 0.5rem 0 0;
        padding: 0.1rem 0.5rem;
        color: #fff;
        background: #012d13;
        border-radius: 0.5rem;
    }
    #news dl.news_outer dd.text p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    #news dl.news_outer dd.photo_outer a{
        width: 4rem;
        height: 4rem;
        margin: 0 1rem 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        overflow: hidden;
    }
    #news dl.news_outer dd.photo_outer a:hover{
        opacity: 0.6;
    }
    #news dl.news_outer dd.photo_outer a img{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        object-fit: cover;
    }
    
    #service_info{
        width: 100%;
        margin: 0;
        padding: 3rem 0 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        background-image: url(images/bg_img.jpg);
        background-size: contain;
        background-position: center center;
        background-repeat: repeat;
        background-attachment: fixed;
    }
    #service_info h2{
        width: 90%;
        margin: 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #service_info h2 span{
        font-size: 1rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #service_info h2 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #service_info h2 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #service_info .service_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-flow: column;
        position: relative;
        background: #fff;
    }
    #service_info .service_outer .service_inner{
        width: 90%;
        margin: 0;
        padding: 2rem 5%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
        order: 1;
    }
    #service_info .service_outer .service_inner h3{
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.5rem;
        line-height: 3rem;
        font-family: "Shippori Mincho", serif;
        letter-spacing: 0.1rem;
        font-weight: normal;
    }
    #service_info .service_outer .service_inner p{
        width: 92%;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 2rem;
    }
    #service_info .service_outer .photo_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #fff;
        order: 2;
    }
    #service_info .service_outer .photo_outer img{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        object-fit: cover;
    }
    
    
    
    
    #contents_top{
        width: 90%;
        height: 100vh;
        margin: 0;
        padding: 0 5%;
        display: block;
        position: relative;
    }
    .bg_about{
        background-image: url(images/bg_about.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .bg_service{
        background-image: url(images/bg_service.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .bg_contact{
        background-image: url(images/bg_contact.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    #contents_top h2{
        width: 100%;
        margin: 0;
        padding: 0.5rem 0;
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        background: rgba(0,28,14,0.8);
        font-size: 2rem;
        line-height: 4rem;
        color: #fff;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        letter-spacing: 0.2rem;
    }
    
    #message{
        width: 100%;
        margin: 0;
        padding: 3rem 0 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        background: #fff;
    }
    #message h3{
        width: 87%;
        margin: 0 auto 3rem auto;
        padding: 0 6.5%;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #message h3 span{
        font-size: 1rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #message h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #message h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #message .message_outer{
        width: 90%;
        margin: 0;
        padding: 3rem 5%;
        display: block;
        position: relative;
        background: #eee;
    }
    #message .message_outer p{
        width: 100%;
        margin: 0 0 0.5rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 1.8rem;
        font-family: "Shippori Mincho", serif;
    }
    #message .message_outer p.signature{
        width: 100%;
        margin: 1rem auto 0 auto;
        text-align: right;
        font-size: 1rem;
    }
    #message .message_outer p.signature span{
        font-size: 2rem;
        line-height: 3rem;
        margin: 0 0 0 1rem;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
    }
    
    
    
    
    #staff{
        width: 90%;
        margin: 0;
        padding: 3rem 5%;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-size: contain;
        background-position: center center;
        background-repeat: repeat;
        background-attachment: fixed;
    }
    #staff h3{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #staff h3 span{
        font-size: 1rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #staff h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #staff h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #staff .staff_member{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }
    #staff .staff_outer{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        background: #fff;
        box-shadow: 4px 4px 8px #333;
        border-bottom: 1rem solid #012d13;
    }
    #staff .staff_outer .photo_inner{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .staff_outer img{
        width: 90%;
        margin: 0 5%;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .staff_outer .profile_outer{
        width: 90%;
        margin: 0;
        padding: 1rem 5%;
        display: block;
        position: relative;
    }
    #staff .staff_outer .profile_outer p.position{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: bold;
        color: #012d13;
    }
    #staff .staff_outer .profile_outer p.name{
        width: 100%;
        margin: 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
    }
    #staff .staff_outer .profile_outer p.name span{
        display: block;
        font-weight: normal;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    #staff .staff_outer .profile_outer p.message{
        width: 100%;
        margin: 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #012d13;
        font-style: italic;
    }
    #staff .staff_outer .profile_outer ul{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .staff_outer .profile_outer ul li{
        width: 90%;
        margin: 0 0 0 10%;
        padding: 0;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    #staff .staff_outer .profile_outer dl{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .staff_outer .profile_outer dl dt{
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #012d13;
    }
    #staff .staff_outer .profile_outer dl dd{
        width: 100%;
        margin: 0 0 0 0;
        padding: 0;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    #staff .staff_outer .profile_outer dl.skill dd::before{
        content: "\f0da";
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
        margin: 0 0.5rem 0 0;
    }
    
    #staff .ceo{
        width: 100%;
        margin: 0 0 3rem 0;
        display: block;
        position: relative;
        border-bottom: none;
    }
    #staff .ceo .staff_inner{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    
    #staff .ceo .toggle_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .ceo .toggle_outer input{
        display: none;
    }
    #staff .ceo .toggle_outer .toggle_title{
        width: 95%;
        margin: 0;
        padding: 1rem 2.5%;
        display: block;
        position: relative;
        color: #fff;
        font-size: 1.2rem;
        line-height: 1.5rem;
        font-weight: bold;
        text-align: center;
        background-color: #012d13;
		pointer-events: all;
	}
    #staff .ceo .toggle_outer .toggle_title::before{
    content: "\f0d7";
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    margin: 0 1rem 0 0;
    font-size: 1.5rem;
    line-height: 1.5rem;
    }
    #staff .ceo .toggle_outer .toggle{
		height: 0;
		padding: 0 8px;
		transition: .2s;
	}
    #staff .ceo .toggle_outer input:checked + .toggle{
		height: auto;
		padding: 8px;
	}
    #staff .ceo .toggle_outer .toggle dl{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
		visibility: hidden;
		opacity: 0;
		transition: 
			padding .2s,
			line-height .2s,
			visibility .1s,
			opacity .1s;
	}
    #staff .ceo .toggle_outer input:checked + .toggle dl{
		visibility: visible;
		opacity: 1;
	}
    #staff .ceo .toggle_outer input:checked + .toggle dl dt{
        width: 98%;
        margin: 0 0 0.5rem 0;
        padding: 0 1%;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #fff;
        background: #012d13;
    }
    #staff .ceo .toggle_outer input:checked + .toggle dl dd{
        width: calc(100% - 1rem);
        margin: 0;
        padding: 0 0 0 1rem;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
        text-indent: -1rem;
    }
    #staff .ceo .toggle_outer input:checked + .toggle dl dd::before{
        content: "\f0da";
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
        margin: 0 0.5rem 0 0;
    }
    #staff .ceo .toggle_outer input:checked + .toggle dl dd.skill{
        width: 100%;
        margin: 0;
        padding: 0;
        text-indent: 0;
    }
    #staff .ceo .toggle_outer input:checked + .toggle dl dd.skill::before,
    #staff .ceo .toggle_outer input:checked + .toggle dl dd.skill dl dd::before{
        content: "";
        margin: 0;
    }
    #staff .ceo .toggle_outer input:checked + .toggle dl dd.skill dl{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #staff .ceo .toggle_outer input:checked + .toggle dl dd.skill dl dt{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 1.8rem;
        color: #000;
        background: none;
        border-bottom: none;
    }
    #staff .ceo .toggle_outer input:checked + .toggle dl dd.skill dl dd{
        width: 100%;
        margin: 0 0 0.5rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
        border-bottom: 1px dashed #ccc;
        text-indent: 0;
    }
    
    
    #company_info{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_about.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    #company_info .bg_cover{
        width: 90%;
        margin: 0;
        padding: 3rem 5%;
        display: block;
        position: relative;
        background: linear-gradient(to right,rgba(255,255,255,0.8) 20%,rgba(255,255,255,1) 50%);
    }
    #company_info .bg_cover h3{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #company_info .bg_cover h3 span{
        font-size: 1rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #company_info .bg_cover h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #company_info .bg_cover h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #company_info .bg_cover .message_outer{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #company_info .bg_cover .message_outer p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.5rem;
        line-height: 2.5rem;
        font-family: "Yuji Syuku", serif;
        font-weight: 400;
        font-style: normal;
        color: #012d13;
    }
    #company_info .bg_cover .profile_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: rgba(255,255,255,0.6);
    }
    #company_info .bg_cover .profile_outer dl{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    #company_info .bg_cover .profile_outer dl dt{
        width: 6rem;
        margin: 0;
        padding: 0.5rem 0.5rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: bold;
        border-bottom: 1px solid #ccc;
    }
    #company_info .bg_cover .profile_outer dl dd{
        width: calc(100% - 8rem);
        margin: 0;
        padding: 0.5rem 0.5rem;
        display: block;
        font-size: 1rem;
        line-height: 1.5rem;
        border-bottom: 1px solid #ccc;
    }
    #history{
        width: 100%;
        margin: 0;
        padding: 3rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
        background: #012d13;
    }
    #history h3{
        width: 90%;
        margin: 0 5% 3rem 5%;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #fff;
    }
    #history h3 span{
        font-size: 1rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #history h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #history h3 span::after{
        border-top: 1px solid #fff;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #history .history_outer{
        width: 85%;
        margin: 0;
        padding: 0 0 1rem 0;
        display: block;
        position: relative;
        overflow-x: scroll;
        white-space: nowrap;
    }
    #history .history_outer:active {
        cursor: grabbing;
}
    #history .history_outer::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
    #history .history_outer::-webkit-scrollbar-track {
        background: #eee;
    }
    #history .history_outer::-webkit-scrollbar-thumb {
        background: rgba(200, 200, 200, 1);
        border-radius: 2.5px;
    }
    #history .history_outer .history_inner{
        width: 80%;
        margin: 0 2.5% 0 0;
        padding: 80% 0 0 0;
        display: inline-block;
        position: relative;
        background: #fff;
        z-index: 0;
        white-space: wrap;
    }
    #history .history_outer .history_inner:last-of-type{
        margin: 0;
    }
    #history .history_outer .history_inner p{
        width: 95%;
        margin: 0;
        padding: 0.5rem 2.5%;
        display: block;
        position: absolute;
        top: 0;
        text-align: right;
        font-size: 4rem;
        line-height: 4rem;
        font-family: "Shippori Mincho", serif;
        color: rgba(0,28,14,0.2);
    }
    #history .history_outer .history_inner dl{
        width: calc(100% - 2rem);
        margin: 0;
        padding: 1rem;
        display: block;
        position: absolute;
        bottom: 0;
    }
    #history .history_outer .history_inner dl dt{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-weight: bold;
    }
    #history .history_outer .history_inner dl dd{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #history .allow_outer{
        width: 5%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }
    #history .allow_outer p{
        margin: 0 0 2rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 2rem;
        line-height: 2rem;
        color: #fff;
    }
    
    
    #service{
        width: 100%;
        margin: 0;
        padding: 3rem 0;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-size: contain;
        background-position: center center;
        background-repeat: repeat;
        background-attachment: fixed;
    }
    #service h3{
        width: 90%;
        margin: 0;
        padding: 0 5% 3rem 5%;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #service h3 span{
        font-size: 1rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #service h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #service h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #service .service_outer{
        width: 100%;
        margin: 0;
        padding: 3rem 0;
        display: block;
        position: relative;
    }
    #service .service_outer h4{
        width: 90%;
        margin: 0 0 3rem 0;
        padding: 0 5%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        font-size: 1.5rem;
        line-height: 3rem;
        font-family: "Shippori Mincho", serif;
    }
    #service .service_outer h4::after{
        border-top: 1px solid #000;
        content: "";
        width: 3rem; 
        margin: 0 0 0 1rem;
    }
    #service .service_outer h4::before{
        border-top: 1px solid #000;
        content: "";
        width: 3rem; 
        margin: 0 1rem 0 0;
    }
    #service .service_outer p.title{
        width: 90%;
        margin: 0 0 3rem 0;
        padding: 0 5%;
        display: block;
        position: relative;
        text-align: left;
        font-size: 1.2rem;
        line-height: 2rem;
    }
    #service .service_outer .service_inner{
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-flow: column;
        position: relative;
    }
    #service .service_outer .service_inner .text_inner{
        width: 90%;
        margin: 0;
        padding: 3rem 5%;
        display: block;
        position: relative;
        background: #fff;
    }
    #service .service_outer .service_inner .text_inner h5{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.3rem;
        break-inside: 2rem;
        color: #012d13;
    }
    #service .service_outer .service_inner .text_inner p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    #service .service_outer .service_inner .photo_inner{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #service .service_outer .service_inner .photo_inner img{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        object-fit: cover;
    }
    #service .service_outer .service_inner .photo_inner .photo_cover{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 25%);
    }
    #service .contact{
        width: 90%;
        margin: 0;
        padding: 3rem 5%;
        display: block;
        position: relative;
        text-align: center;
    }
    #service .contact p{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.5rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #012d13;
    }
    #service .contact dl{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        background: #012d13;
    }
    #service .contact dl dt{
        width: 95%;
        margin: 0;
        padding: 1rem 2.5%;
        display: block;
        position: relative;
        font-size: 2rem;
        line-height: 3rem;
    }
    #service .contact dl dt a{
        color: #fff;
        text-decoration: none;
        margin: 0;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        letter-spacing: 0.3rem;
    }
    #service .contact dl dt a i{
        margin: 0 0.5rem 0 0;
        color: #ff0;
    }
    #service .contact dl dd{
        width: 90%;
        margin: 0 2.5%;
        padding: 0.5rem 2.5%;
        display: block;
        position: relative;
        color: #fff;
        font-size: 1.1rem;
        line-height: 1.8rem;
        border-top: 1px solid #fff;
    }
    #service .contact p.mail{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #012d13;
    }
    #service .contact p.mail a{
        width: 100%;
        margin: 0;
        padding: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-flow: column;
        color: #fff;
        text-decoration: none;
        font-size: 1.5rem;
        line-height: 2rem;
    }
    #service .contact p.mail a i{
        font-size: 2.5rem;
        line-height: 3rem;
    }
    #service .contact p.mail a:hover{
        color: #ff0;
        background: rgba(255,255,255,0.4);
    }
    
    
    #area{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background-image: url(images/bg_img.jpg);
        background-size: contain;
        background-position: center center;
        background-repeat: repeat;
        background-attachment: fixed;
    }
    #area .area_bg{
        width: 90%;
        margin: 0;
        padding: 3rem 5%;
        display: block;
        position: relative;
        background: rgba(100,100,100,0.1)
    }
    #area .area_bg h3{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #area .area_bg h3 span{
        font-size: 1rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #area .area_bg h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #area .area_bg h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #area .area_bg .map_outer{
        width: 90%;
        margin: 0;
        padding: 1rem 5%;
        display: block;
        position: relative;
        background: rgba(255,255,255,0.6);
    }
    #area .area_bg .map_outer .map_inner{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #area .area_bg .map_outer .map_inner p.title{
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #012d13;
        font-size: 1.5rem;
        line-height: 2rem;
        z-index: 1;
    }
    #area .area_bg .map_outer .map_inner p.title span{
        font-size: 1.1rem;
        line-height: 2rem;
        font-weight: normal;
        color: #000;
    }
    #area .area_bg .map_outer .map_inner .area_inner{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        z-index: 1;
    }
    #area .area_bg .map_outer .map_inner .area_inner dl{
        width: 70%;
        margin: 0 30% 0.5rem 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: relative;
    }
    #area .area_bg .map_outer .map_inner .area_inner dl dt{
        width: 100%;
        margin: 0 0 0.5rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        color: #012d13;
        font-size: 1.3rem;
        line-height: 2rem;
    }
    #area .area_bg .map_outer .map_inner .area_inner dl dd{
        width: calc(33% - 0.25rem);
        margin: 0 0.25rem 0.25rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    #area .area_bg .map_outer img{
        width: 40%;
        margin: 0;
        padding: 0;
        display: block;
        position: absolute;
        right: -2%;
        bottom: -1rem;
        filter: drop-shadow(4px 4px 8px #999);
        z-index: 0;
    }
    
    
    #price{
        width: 90%;
        margin: 0;
        padding: 3rem 5%;
        display: block;
        position: relative;
        background: #efefef;
    }
    #price h3{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #price h3 span{
        font-size: 1rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #price h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #price h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #price .price_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #price .price_outer h4{
        width: 100%;
        margin: 2rem 0 1rem 0;
        padding: 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        font-size: 1.2rem;
        line-height: 3rem;
        font-family: "Shippori Mincho", serif;
    }
    #price .price_outer h4::after{
        border-top: 1px solid #000;
        content: "";
        width: 2rem; 
        margin: 0 0 0 1rem;
    }
    #price .price_outer h4::before{
        border-top: 1px solid #000;
        content: "";
        width: 2rem; 
        margin: 0 1rem 0 0;
    }
    #price .price_outer dl{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }
    #price .price_outer dl dt{
        width: 95%;
        margin: 0;
        padding: 0.25rem 2.5%;
        display: block;
        position: relative;
        text-align: center;
        background: #012d13;
        color: #fff;
        font-weight: bold;
        font-size: 1rem;
        line-height: 1.5rem;
        order: 1;
    }
    #price .price_outer dl dd.data{
        width: 95%;
        margin: 0;
        padding: 0.25rem 2.5%;
        display: block;
        position: relative;
        text-align: center;
        background: #fff;
        font-size: 0.9rem;
        line-height: 1.3rem;
        border-bottom: 1px solid #999;
        order: 3;
    }
    #price .price_outer dl dd.price,
    #price .price_outer dl dd.other{
        width: 95%;
        margin: 0;
        padding: 0.25rem 2.5%;
        display: block;
        position: relative;
        text-align: center;
        background: #ffffcc;
        font-size: 1rem;
        line-height: 1.5rem;
        border-bottom: 1px solid #999;
        order: 2;
    }
    #price .price_outer dl dd.price::before{
        content: "\FFE5";
    }
    #price .price_outer p.comingsoon{
        width: 100%;
        margin: 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1rem;
        line-height: 1.8rem;
        color: #012d13;
    }
    
    #price p.caution{
        width: 100%;
        margin: 3rem 0 0 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    
    
    #flow{
        width: 90%;
        margin: 0;
        padding: 3rem 5%;
        display: block;
        position: relative;
        background: #fff;
    }
    #flow h3{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #flow h3 span{
        font-size: 1rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #flow h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #flow h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #flow .flow_outer{
        width: 100%;
        margin: 3rem 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #flow .flow_outer .circle{
        width: 50%;
        margin: 0 auto;
        padding: 50% 0 0 0;
        border-radius: 50%;
        display: block;
        position: relative;
        overflow: hidden;
    }
    #flow .flow_outer .circle img{
        width: auto;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }
    #flow .flow_outer dl{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #flow .flow_outer dl dt{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
        font-size: 1.5rem;
        line-height: 3rem;
        border-bottom: 1px solid #012d13;
    }
    #flow .flow_outer dl dt span{
        font-size: 2.5rem;
        margin: 0 0.5rem 0 0;
        color: #012d13;
    }
    #flow .flow_outer dl dd{
        width: 100%;
        margin: 0;
        padding: 0.5rem 0;
        display: block;
        position: relative;
        color: #000;
        font-size: 1.1rem;
        line-height: 2rem;
    }
    
    .ggmap {
        width: 100%;
        position: relative;
        margin: 0;
        padding-bottom: 100%;
        padding-top: 0;
        height: 0;
        overflow: hidden;
        border: none!important;
    }

    .ggmap iframe,
    .ggmap object,
    .ggmap embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none!important;
    }

    #contact{
        width: 90%;
        margin: 0;
        padding: 3rem 5%;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-repeat: repeat;
        background-size: contain;
        background-attachment: fixed;
    }
    #contact h3{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
        letter-spacing: -0.1rem;
    }
    #contact h3 span{
        font-size: 1rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #contact h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #contact h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #contact .contact_outer{
        width: 95%;
        margin: 2rem 0;
        padding: 1rem 2.5%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        background: #fff;
        box-shadow: 4px 4px 8px #999;
    }
    #contact .contact_outer p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    #contact .contact_outer img{
        width: 90%;
        margin: 1rem auto;
        padding: 0;
        display: block;
        position: relative;
        object-fit: contain;
    }
    #contact .contact_outer dl.tel_info{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #contact .contact_outer dl.tel_info dt{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    #contact .contact_outer dl.tel_info dd{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }
    #contact .contact_outer dl.tel_info dd a{
        width: 95%;
        margin: 1rem 0;
        padding: 0.5rem 2.5%;
        display: block;
        position: relative;
        font-size: 2rem;
        line-height: 3rem;
        text-decoration: none;
        font-weight: bold;
        color: #fff;
        background: #012d13;
    }
    #contact .contact_outer dl.tel_info dd a i{
        margin: 0 0.5rem 0 0;
        color: #ff0;
    }
    #contact .contact_outer dl.tel_info dd p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    
    #contact .contact_outer .form_outer{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #contact .contact_outer .form_outer dl{
        width: 100%;
        margin: 0 0 1rem 0;
        padding: 0;
        display: block;
        position: relative;
    }
    #contact .contact_outer .form_outer dl dt{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    #contact .contact_outer .form_outer dl dt.check::before{
        content: "\f00c";
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
        margin: 0 0.5rem 0 0;
        font-size: 1rem;
        color: #f00;
    }
    #contact .contact_outer .form_outer dl dd{
        width: 100%;
        margin: 0;
        padding: 0 0 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: relative;
        font-size: 1rem;
        line-height: 1.8rem;
        color: #000;
    }
    #contact .contact_outer .form_outer dl dd span.checkbox_outer{
        margin: 0 2rem 0 0;
    }
    #contact .contact_outer .form_outer .formbutton{
        width: 100%;
        margin: 3rem 0 0 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        color: #000;
    }
    
    #success{
        width: 90%;
        margin: 0;
        padding: 3rem 5%;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-repeat: repeat;
        background-size: contain;
        background-attachment: fixed;
    }
    #success p.title{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #012d13;
        font-size: 1.5rem;
        line-height: 2.5rem;
        text-align: center;
        letter-spacing: -0.1rem;
    }
    #success p{
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.2rem;
        line-height: 2.5rem;
    }
    
    #formWrap{
        width: 90%;
        min-height: 100vh;
        margin: 0;
        padding: 5rem 5%;
        display: block;
        position: relative;
        background: #fff;
    }
    #formWrap h3{
        width: 100%;
        margin: 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.3rem;
        break-inside: 2rem;
        color: #012d13;
    }
    #formWrap h4{
        width: 100%;
        margin: 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        font-size: 1.1rem;
        break-inside: 2rem;
        color: #f00;
    }
    #formWrap p{
        width: 100%;
        margin: 3rem 0;
        font-size: 1.1rem;
        line-height: 2rem;
        color: #333;
    }
    #formWrap p.error_messe{
        width: 100%;
        margin: 3rem 0;
        color: #f00;
}
    #formWrap table.formTable{
        width:100%;
        margin:2rem auto;
        padding: 0;
        border-collapse:collapse;
        font-size: 1rem;
        line-height: 1.8rem;
        display: block;
    }
    #formWrap table.formTable th{
        width: calc(100% - 0.5rem - 2px);
        margin: 0;
        padding: 0.25rem;
        display: block;
        font-weight:normal;
        background:#efefef;
        text-align:center;
        border:1px solid #ccc;
    }
    #formWrap table.formTable td{
        width: calc(100% - 0.5rem - 2px);
        margin: 0 0 0.5rem 0;
        padding: 0.25rem;
        display: block;
        background: #fff;
        border:1px solid #ccc;
    }
    #formWrap a{
        color: #fcfcfc!important;
    }
    

    #contact .wvlink{
        width: 100%;
        margin: 8rem 0 0rem 0;
        font-size: 1rem;
        padding: 0;
        text-align: center;
        display: block;
        position: relative;
    }
    #contact .wvlink a{
        color: #666;
        text-decoration: none;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border: 1px solid #666;
    }
    #contact .wvlink a::before{
        content: "\f0da";
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
        margin: 0 0.5rem 0 0;
    }
    #contact .wvlink a:hover{
        background: rgba(255,255,255,0.4);
    }


    #recruitment{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        background: #fff;
        background-image: url(images/bg_img.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    #recruitment .recruitment_bg{
        width: 90%;
        margin: 0;
        padding: 3rem 5%;
        display: block;
        position: relative;
        background: rgba(200,200,200,0.2);
    }
    #recruitment .recruitment_bg h3{
        width: 100%;
        margin: 0 auto 3rem auto;
        padding: 0;
        display: block;
        position: relative;
        text-align: left;
        font-size: 2rem;
        line-height: 2rem;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #000;
    }
    #recruitment .recruitment_bg h3 span{
        font-size: 1rem;
        line-height: 2rem;
        letter-spacing: 0.1rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    #recruitment .recruitment_bg h3 span::before{
        white-space: pre;
        content: "\a";
        margin: 0;
    }
    #recruitment .recruitment_bg h3 span::after{
        border-top: 1px solid #000;
        content: "";
        width: 5rem; 
        margin: 0 0 0 0.5rem;
    }
    #recruitment .recruitment_bg p.title{
        width: 100%;
        margin: 0 0 3rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-family: "Shippori Mincho", serif;
        font-weight: normal;
        color: #012d13;
        font-size: 1.5rem;
        line-height: 2.5rem;
        text-align: left;
    }
    #recruitment .recruitment_bg dl{
        width: 98%;
        margin: 0 0 1rem 0;
        padding: 0 1%;
        display: block;
        position: relative;
        background: #fff;
    }
    #recruitment .recruitment_bg dl dt{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 2rem;
        font-weight: bold;
        color: #012d13;
    }
    #recruitment .recruitment_bg dl dt i{
        margin: 0 0.5rem 0 0;
    }
    #recruitment .recruitment_bg dl dd{
        width: 100%;
        margin: 0;
        padding: 0 0 0.5rem 0;
        display: block;
        position: relative;
        font-size: 1rem;
        line-height: 1.8rem;
    }
    #recruitment .recruitment_bg dl dd span.tag{
        margin: 0.25rem 1rem 0.25rem 0;
        padding: 0 0.5rem;
        display: inline-block;
        position: relative;
        border-radius: 0.5rem;
        background: #012d13;
        color: #fff;
    }



input[type=text],
input[type=tel]{
    -webkit-appearance: none;
    width: calc(100% - 2px - 1rem);
    margin: 0!important;
    padding: 0 0.5rem!important;
    border-radius: 0.3rem!important;
    border:#a9a9a9 1px solid!important;
    font-size: 0.9rem!important;
    line-height: 1.5rem!important;
}
    input[type=date]{
    -webkit-appearance: none;
    width: 100%!important;
        height: 21px!important;
    margin: 0!important;
    padding: 0.2rem 0.5rem!important;
    border-radius: 0.3rem!important;
    border:#a9a9a9 1px solid!important;
    font-size: 1rem!important;
    line-height: 1.5rem!important;
        box-sizing: border-box!important;
    }


input[type=checkbox]{
    margin:0.5rem 0.5rem 0 0;
        position: relative;
        top: 0.2rem;
}
input[type=radio] {
    margin: 0;
        position: relative;
        top: 0.2rem;
}
select{
    width: calc(100% - 2px);
    margin: 0;
    padding: 2px 0.5rem;
    line-height: 2rem;
    border-radius: 0.3rem;
    border:#a9a9a9 1px solid;
    }


textarea{
    width: calc(100% - 2px - 1rem);
    height: 10rem;
    margin: 0;
    padding: 0 0.5rem;
    line-height: 2rem;
    font-size: 1rem;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border:#a9a9a9 1px solid;
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
}

textarea:focus {
    border:solid 1px #20b2aa;
}

textarea, select {
    outline: none;
}


input[type="file"] {
    -webkit-appearance: none;
    width: 100%;
    margin: 0 0 0.5rem 0!important;
    padding: 0!important;
    border-radius: 0.3rem!important;
    font-size: 0.9rem!important;
    line-height: 1.5rem!important;
}

    input[type=submit]{
    -webkit-appearance: none;
    font-size: 1rem;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border:#a9a9a9 1px solid;
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    width: 10rem;
    height: 2rem;
    padding:0 1%;
    margin: 0;
        background: #fff;
        color: #000;
}
    input[type=reset]{
    font-size: 1rem;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border:#a9a9a9 1px solid;
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    width: 10rem;
    height: 2rem;
    padding:0 1% 0 1%;
    margin: 0em;
}
    input[type=button]{
    font-size: 1rem;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border:#a9a9a9 1px solid;
    -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
    width: 10rem;
    height: 2rem;
    padding:0 1% 0 1%;
    margin: 0em;
}
    #contact .wvlink{
        width: 100%;
        margin: 5rem 0 0rem 0;
        font-size: 1rem;
        padding: 0;
        text-align: center;
        display: block;
        position: relative;
    }
    #contact .wvlink a{
        color: #666;
        text-decoration: none;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border: 1px solid #666;
    }
    #contact .wvlink a::before{
        content: "\f0da";
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
        margin: 0 0.3rem 0 0;
    }
/*背面動画
---------------------------------------------------------------------------*/
    .bgmovie{
        position: relative;
        width: 100%;
        padding: 0;
        overflow: hidden;
        z-index: 0;
        display: block;
        margin: 0;
    }
    .bgmovie::before{
        content: "";
        display: block;
        padding: 90vh 0 0 0;
    }
    .bgmovie video{
        position: absolute;
        top: 0;
        z-index: 2;
        display: block;
        margin: auto;
        background-color: #fff;
    }
    @media all and (-ms-high-contrast: none){
  .bgmovie video{
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      display:-ms-flexbox;
      -ms-flex-pack: center;
      -ms-flex-align: center;
      text-align:center;
      margin: auto;
      min-height: 100%;
      min-width: 100%;
      width: 100%;
      height: auto;
      background-color: #000;
    }
}
    @media (aspect-ratio: 16/9), (min-aspect-ratio: 16/9) {
    video {
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
    }
  }
    @media (max-aspect-ratio: 16/9) {
    .bgmovie video {
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
  }


.bgmovie .pattern {
  width: 100%;
  height: 100%;
  background: url(images/pattern.png);
    background-size: 8px;
    display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}



/*左右の矢印*/
.slick-next {
    display: none!important;
}
.slick-prev {
    display: none!important;
}
    .slick-dots{
        display: none!important;
        position: relative;
        bottom: -1rem!important;
        margin-top: 0rem!important;
    }

/*フッター
---------------------------------------------------------------------------*/

footer {
    width: 90%;
    margin: 0;
    padding: 2rem 5% 1rem 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    color: #333;
        background: #012d13;
    color: #fff;
}
    footer .footer_info{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
    }
    footer .footer_info h2{
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 2rem;
        line-height: 3rem;
        font-family: "Shippori Mincho", serif;
        letter-spacing: 0.1rem;
    }
    footer .footer_info h2 span{
        font-size: 1.2rem;
        margin: 0 1rem 0 0;
    }
    footer .footer_info p{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    footer .footer_menu{
        width: 50%;
        margin: 0;
        padding: 1rem 0 0 0;
        display: block;
        position: relative;
    }
    footer .footer_menu dl{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer .footer_menu dl a{
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: #fff;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    footer .footer_menu dl a:hover{
        color: #ff0;
    }
    footer .footer_menu dl a i{
        margin: 0 0.5rem 0 0;
    }
    footer .footer_menu dl dt{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer .footer_menu dl dd{
        width: calc(100% - 1.5rem);
        margin: 0;
        padding: 0 0 0 1.5rem;
        display: block;
        position: relative;
    }
    footer .footer_menu ul{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer .footer_menu ul li{
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    footer .footer_menu ul li a{
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: #fff;
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    footer .footer_menu ul li a:hover{
        color: #ff0;
    }
    footer .footer_menu a i{
        margin: 0 0.5rem 0 0;
    }
    footer p.copy{
        width: 100%;
        margin: 2rem 0 0 0;
        padding: 0;
        display: block;
        position: relative;
        text-align: center;
        color: #fff;
        font-size: 0.9rem;
        line-height: 1rem;
    }

/*その他
---------------------------------------------------------------------------*/
    .spnone{
        display: none!important;
    }
.color1 {
    color: #FF0000;
}

.color2 {
    color: #0000FF;
}

.color3 {
    color: darkorange;
    font-weight: bold;
}

.color4 {
    color: #336699;
}

.color5 {
    color: #009edc;
    font-weight: bold;
}

.color6 {
    color: #FFFF00;
    font-weight: normal;
}

.strong{
    font-weight: bold;
}
.look {
    background-color: #E4E4E4;
}

.mb1em {
    margin-bottom: 1em;
}

.clear {
    clear: both;
}

.clear hr {
    display:none;
    }

.clearsp {
    display:none;
    }
.br01 {
    margin-bottom: 1rem;
    clear: both;
}

.br01 hr {
    display:none;
    }


.br03 {
    margin-bottom: 3rem;
    clear: both;
}

.br03 hr {
    display:none;
    }


.pcbr03 {
    margin-bottom: 3rem;
    clear: both;
}

.pcbr03 hr {
    display:none;
    }


.spbr03 {
    display: none;
}

.spbr03 hr {
    display:none;
    }


.br-03 {
    margin-bottom: -3rem!important;
    clear: both;
}

.br-03 hr {
    display:none;
    }

.br06 {
    margin-bottom: 6rem;
    clear: both;
}

.br06 hr {
    display:none;
    }

.br40 {
    margin-bottom: 40rem;
    clear: both;
}

.br40 hr {
    display:none;
    }

span.no-robots-2
    {
    display: none;
    }

.br:before {
    content: "\A" ;
    white-space: pre ;
}

.pccounter {
    position: relative;
    top: 0rem;
    left: 0;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    border: none;
    color: #333;
    display: none;
}
.pccounter iframe {
    width: 100%;
    height: 3rem;
    border: none;
    background: none;
    overflow: hidden;
    vertical-align: bottom;
    background-color: transparent;
    }

    .pccounter img{
        position: relative;
        top: 0;
        left: 5%;
    }


/*戻るボタン
---------------------------------------------------------------------------*/

.pagetop {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1000;
    margin: 0;
}
.pagetop a {
    display: block;
    background-color: #012d13;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    padding: 0.8rem;
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    margin: 0;
        line-height: 0rem;
}
.pagetop a:hover {
    opacity: 0.85 ;
}
    .pagetop span{
        font-size: 1rem;
        margin: 0;
    }
    .pagetop span::before{
        white-space: pre;
        content: "\a";
    }

}

