@charset "utf-8";

/* カラー */
:root {
    --maincolor:  #B7D200;
   
    /* メインカラー */
    --subcolor: #8EC31E;
    /* サブカラー */
    /* --basecolor: */
    --accentcolor: #F9A70D;
    --accentcolor2: #F39800;
    /* アクセントカラー */
    --backgroundcolor: #fff;
    --footercolor: #eee;
    /* フッター背景 */
}

/*共通*/
html {
    scroll-behavior: smooth;
}

#content {
    background-color: var(--backgroundcolor);
}

.outer {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.inner {
    width: 100%;
    padding: 10px;
}

/* メインイメージ */

#home #content {
    /* メインイメージの高さ分コンテンツを下げる */
    /* margin-top: 43.75%; */
    /*margin-top メイン画像の(画像の高さ / 画像の横幅) × 100  */
}


/* 列_1列 */
.in1wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.in1 {
    width: 100%;
}

/* 列_2列 */
.in2wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.in2 {
    width: 100%;
}

/* 列_3列 */
.in3wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.in3 {
    width: 100%;
}

/* 1:2の列 */
.in1_2wrap {
    display: flex;
    flex-wrap: wrap;
}

.in1_2_1st {
    width: 100%;
}

.in1_2_2nd {
    width: 100%;
}

/* スマホのみ改行/スマホで非表示 */
.br-sp {
    display: block;
}

.no-sp {
    display: none;
}

/* タイトル */
h1,
h2,
h3,
h4 {
    margin: 50px 0px 0px 0px;
}

.heading00 {
    font-size: 30px;
    font-weight: bold;
    position: relative;
    margin-left: 15px;
}

.heading00::before {
    content: "";
    width: 8px;
    height: 35px;
    display: inline-block;
    position: absolute;
    left: -15px;
    top: 2px;
    background-color: var(--maincolor);
}

.heading01 {
    font-weight: bold;
    width: 100%;
    text-align: center;
    margin: 20px 0px;
    font-size: 25px;
    position: relative;
}

.heading01::after {
    content: "";
    width: 100%;
    height: 3px;
    display: block;
    margin-top: 10px;
    position: absolute;
    background-color: var(--maincolor);
}

/* ハンバーガー */
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: none;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: var(--maincolor);
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check {
    display: none;
}

/* ハンバーガーX */
#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* メニュー */
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    transition: all 0.5s;
    /*アニメーション設定*/
    background-color: var(--maincolor);
}

#menu-btn-check:checked~.menu-content {
    left: 0;
    /*メニューを画面内へ*/
}

.menu-content ul {
    padding: 70px 10px 0;
}

.menu-content ul li {
    border-bottom: solid 1px #fff;
    list-style: none;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}

.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

/* ヘッダー */
header .outer {
    justify-content: left;
    height: 85px;
    /* border-bottom: 1px solid #eee; */
}

header #logo {
    background-image: url(../image/logo/jichikan.png);
    margin: 20px 5px;
    width: 200px;
    height: 40px;
}

/* フッター */
footer {
    padding: 50px 0px;
    background-color: var(--footercolor);
}

footer .in3 {
    padding: 10px;
}

#footerlogo li {
    margin: 50px 0px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.addressarea {
    line-height: 30px;
}

/* SNS */
#sns {
    background-color: var(--footercolor);
}

#sns dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 50px;
}

#sns dd a {
    font-size: 25px;
    min-width: 330px;
    display: block;
}

#sns dd a img {
    margin-right: 10px;
}

/* フッターナビ */
.footernav ul {
    border-top: 1px solid #eee;
}

.footernav li {
    border-bottom: 1px solid #ccc;
}

.footernav li a {
    line-height: 50px;
    display: block;
    text-indent: 20px;
}

/* TOPへ戻る */
#page-top {
    position: fixed;
    right: 0px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--maincolor);
    display: block;
    border: 1px solid #fff;
}

#page-top a {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    width: 100%;
    height: 60px;
    display: block;
    text-align: center;
    line-height: 70px;
    position: relative;
}

#page-top a::before {
  content: "";
    position: absolute;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #fff;
    border-left: 8px solid transparent;
    bottom: 40px;
    right: 22px;
    transition: all 0.3s;
}

#page-top a span{
    position: absolute;
    height: 8px;
    width: 100%;
    display: block;
    background-color: #F9A70D;
    bottom: 0px;
}
#page-top a span::before,
#page-top a span::after{
    content: "";
    position: absolute;
    display: block;
    height: 8px;
    width: calc( 100% / 3);
}
#page-top a span::before{
    background-color: #8EC31E;
    left: 0px;
}
#page-top a span::after{
    background-color:#F39800;
    right: 0px;
}
  
#page-top a:hover::before {
    bottom: 45px;

}

/* コピーライト */
#copy {
    background-color: var(--footercolor);
}

address {
    text-align: center;
}

/* お問い合わせ遷移ボタン */
#fotrequest .outer {
    background-color: var(--maincolor);
}

#fotrequest h2 {
    color: #fff;
}

#fotrequest h2::after {
    background-color: #fff;
}

#fotrequest article {
    text-align: center;
    margin-bottom: 50px;
}

#fotrequest article p {
    margin: 50px 5px 150px 5px;
    /* color: #fff; */
    display: inline-block;
    padding: 20px;
    width: 330px;
    margin-bottom: 50px;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
}

#fotrequest article p::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 30px solid #fff;
    border-right: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid transparent;
    position: absolute;
    bottom: -50px;
    right: calc(50% - 25px);
}

#fotrequest article #requestbutton {
    margin: 0px 0px;
    display: flex;
    justify-content: center;
}

#fotrequest article #requestbutton a {
    border: 3px solid;
    border-color: #fff;
    width: 330px;
    height: 150px;
    line-height: 150px;
    display: block;
    border-radius: 80px;
    position: relative;
    font-weight: bold;
    font-size: 25px;
    color: #fff;
    transition: all 0.5s;
}

#fotrequest article #requestbutton a:hover {
    color: #fff;
    transition: all 0.5s;
}

/* お問い合わせ遷移ボタン_矢印 */
.arrow_right {
    position: relative;
    padding-left: 5px;
}

.arrow_right::before {
    /* くの字の表示設定 */
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 13px;
    /* くの字を山なりに見た時、左側の長さ */
    height: 13px;
    /* くの字を山なりに見た時、右側の長さ */
    border-top: 3px solid;
    /* border-color: #8FC322; */
    border-color: #fff;
    /* くの字を山なりに見た時、左側の太さと色 */
    border-right: 3px solid;
    /* border-color: #8FC322; */
    border-color: #fff;
    /* くの字を山なりに見た時、右側の太さと色 */
    transform: rotate(45deg);
    /* くの字の向き */
    transition: all 0.5s;
}

.arrow_right::after {
    content: "";
    margin: auto;
    position: absolute;
    top: calc(50% - 1.5px);
    left: 21px;
    width: 20px;
    border-top: 3px solid;
    border-color: #fff;
    transition: all 0.5s;
}

.arrow_right:hover:before {
    border-color: #fff;
    left: 52px;
    transition: all 0.5s;
}

.arrow_right:hover:after {
    border-color: #fff;
    width: 45px;
    transition: all 0.5s;
}

/* not found */
#notfound {
    height: 700px;
    position: relative;
}

#notfound article {
    display: flex;
    justify-content: center;
}

#notfound p {
    position: absolute;
    top: calc(50% - 100px);
    line-height: 40px;
}

/* 会社概要 */
#about #content dl {
    border-top: 1px solid #000;
    margin-top: 30px;
    width: 100%;
    width: calc(100% - 20px);
}

#about #content dl dt {
    margin: 20px;
    font-weight: bold;
}

#about #content dl dd {
    margin: 20px;
}

.map img {
    width: 100%;
}

@media screen and (min-width: 769px) {

    /*	▼▼▼タブレット(769px以上)▼▼▼ ----------------------------------------------------------------- */
    .inner {
        max-width: 700px;
    }

    /* スマホじゃないから改行しない/スマホじゃないから表示する */
    .br-sp {
        display: none;
    }

    .no-sp {
        display: inline-block;
    }

    /*	▲▲▲タブレット▲▲▲ ----------------------------------------------------------------- */
}

@media screen and (min-width: 961px) {

    /*	▼▼▼小PC(961px以上)▼▼▼ ----------------------------------------------------------------- */
    .inner {
        max-width: 900px;
    }

    /* 列_2列 */
    .in2 {
        width: calc(100% / 2);
    }

    /* 列_3列 */
    .in3 {
        width: calc(100% / 3);
    }

    /* 1:2の列 */
    .in1_2_1st {
        width: calc(100% / 3);
    }

    .in1_2_2nd {
        width: calc(100% / 3 * 2);
    }

    /* ヘッダー */
    header {
        position: fixed;
        z-index: 1;
        width: 100vw;
        background-color: rgba(255, 255, 255, 0.9);
    }

    #headerpadding {
        padding: 42px;

    }
/* 無料資料請求はこちら */
header #request01 {
    right: 15px;
}
    /* ハンバーガー */
    .menu-btn {
        display: none;
    }

    /* メニュー */
    .menu-content {
        width: 750px;
        height: 95px;
        position: absolute;
        top: 0;
        left: auto;
        /*leftの値を変更してメニューを画面外へ*/
        right: 220px;
        background-color: unset;
    }

    .menu-content ul {
        display: flex;
        flex-wrap: nowrap;
        padding: 0px;
        justify-content: right;
    }

    .menu-content ul li {
        border: none;
        position: relative;
        margin-left: 10px;
    }

    .menu-content ul li a {
        color: #000;
        font-weight: bold;
        line-height: 80px;
        margin-left: 10px;
    }

    .menu-content ul li a::after {
        content: "";
        display: block;
        height: 3px;
        width: 0px;
        position: absolute;
        bottom: 35px;
        transition: all 0.5s;
        background-color: var(--accentcolor);
    }

    .menu-content ul li a:hover:after {
        width: calc(100% - 25px);
        transition: all 0.5s;
    }

    .menu-content ul li::before {
        content: "|";
        display: inline-block;
        color: #000;
        border: none;
        transform: rotate(0deg);
        position: absolute;
        bottom: 40px;
        right: -10px;
    }

    .menu-content ul li:last-child::before {
        content: "";
    }

    .menu-content ul li a::before {
        border-top: none;
        border-right: none;
    }

    /* フッター */
    footer .in3:nth-of-type(2),
    footer .in3:nth-of-type(3) {
        border-left: 1px solid #ccc;
        padding-left: 50px;
    }

    .footernav ul {
        border: none;
    }

    .footernav li {
        border: none;
    }

    .footernav li a {
        display: inline-block;
        text-indent: 0px;
        position: relative;
    }

    .footernav li a::after {
        content: "";
        display: block;
        height: 1px;
        width: 0%;
        background-color: #000;
        position: absolute;
        bottom: 10px;
        transition: all 0.5s;
    }

    .footernav li a:hover:after {
        width: 100%;
        transition: all 0.5s;
    }

    /*	▲▲▲小PC▲▲▲ ----------------------------------------------------------------- */
}

@media screen and (min-width: 1281px) {

    /*	▼▼▼大画面PC(1281px以上)▼▼▼ ----------------------------------------------------------------- */
    .inner {
        max-width: 1200px;
    }

    /*	▲▲▲大画面PC▲▲▲ ----------------------------------------------------------------- */
}