@charset "utf-8";

/* CSS Document */


/* ------------------------------
	[1] 共通部分
		[1-1] 汎用クラスなど
		[1-2] ヘッダー
		[1-3] フッター
		[1-4] ハンバーガーメニュー
	[2] トップページ
	[3] 会社案内
	[4] 賃貸物件
	[5] 売買／テナント
		[5-1] 物件詳細
	[6] クリーニング
	[7] お問い合わせ
		[7-1] 確認ページ
		[7-2] サンクスページ
	[8] 業者ログインページ
	[9] 業者専用ページ
	[10] プライバシー
	[11] 404 error
	[12]pop-up
    [13]line
------------------------------ */


/* ****************************************************
	[1] 共通部分
**************************************************** */


/* -----------------------------------
	[1-1] 汎用クラスなど
----------------------------------- */

body {
    font-family: 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-weight: 600;
}


/* IE CSS Hack ここから */

body:not(:target) {
    line-height: 1.3\9;
    /* IE9,10 (上書きされて結果的にIE9のみ) */
}

@media all and (-ms-high-contrast: none) {
    body:not(:target) {
        /* 詳細度の関係でこっちにも:not(:target)つける */
        line-height: 1.3;
        /* IE10,11 (上書きされて結果的にIE10のみ) */
    }
    *::-ms-backdrop,
    body:not(:target) {
        /* 詳細度の関係でこっちにも:not(:target)つける */
        line-height: 1.3;
        /* IE11のみ */
    }
}



/* IE CSS Hack ここまで */

h2 {
    color: #4d4d4d;
}


/* スマホでのスタイル崩れ防止 ここから */

input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
}


/* スマホでのスタイル崩れ防止 ここまで */


/* 下層ページのコンテンツ中央寄せ */

.lowerContent {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 20px;
}

@media screen and (max-width: 767px) {
    .lowerContent {
        margin: 10px auto 40px;
    }
}

.lowerContent h2 {
    font-size: 24px;
    margin-bottom: 25px;
    padding: 0 10px 5px;
    border-bottom: 2px dotted #006837;
}

.mintyo {
    font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

.marugo {
    font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
    letter-spacing: 3px;
    font-weight: bold;
}

.cf::after {
    content: "";
    clear: both;
    height: 0;
}

img{
    max-width: 100%;
    height: auto;
}

.rinenimg{
    margin-top: 45px;

}
.rinenimg img {
    display: block;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}

/* -----------------------------------
	[1-2] ヘッダー
----------------------------------- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1;
    background: #fff;
    opacity: 0;
    background: rgba(255, 255, 255, 0.7);
    transition: all 400ms ease;
}

@media screen and (max-width: 767px) {
    .home header {
        opacity: 0;
        position: fixed;
    }
    header {
        opacity: 1;
        position: relative;
    }
}

header.active {
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .home header.active {
        opacity: 0;
        position: fixed;
    }
    header.active {
        opacity: 1;
        position: relative;
    }
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    max-width: 1200px;
    margin: auto;
}

@media screen and (max-width: 767px) {
    header .inner {
        padding: 10px 20px;
    }
}

header .inner .logo {
    width: 144.5px;
    height: 49px;
}

header .inner .logo a img {
    max-width: 100%;
}

header .inner .access {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 767px) {
    header .inner .access {
        display: none;
    }
}

header .inner .access .box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #009E3E;
    width: 65px;
    height: 36px;
    margin-right: 15px;
}

header .inner .access .box .contact {
    width: 42px;
    font-size: 12px;
    color: #fff;
    line-height: 14px;
    letter-spacing: 2px;
    text-align: center;
}

header .inner .access .text {
    text-align: left;
}

header .inner .access .text .tel a {
    color: green;
    display: block;
    font-size: 27px;
    padding-left: 35px;
    text-decoration: none;
    background: url("../img/icon_tel.png") no-repeat left 50%;
    background-size: 26px;
}

header .inner .access .text .response {
    color: gray;
    font-size: 12px;
}


/* -----------------------------------
	[1-3] フッター
----------------------------------- */

footer {
    width: 100%;
    min-height: 600px;
    background: #006837;
    color: #fff;
    padding-top: 20px;
    position: fixed;
    top: calc(100% - 10px);
    left: 0;
    z-index: 10;
    transition: none;
}

@media screen and (max-width: 767px) {
    footer {
        position: relative;
    }
}

footer.active {
    top: calc(100% - 72px);
    transition: all 300ms ease;
}

footer.bottom {
    position: relative;
    top: 0;
    transition: all 300ms ease;
}

footer .footerTab {
    position: absolute;
    background: #006837;
    letter-spacing: 2px;
    font-weight: normal;
    top: 0;
    left: 50%;
    transform: translateY(-100%) translateX(-50%);
    padding: 8px 20px;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    footer .footerTab {
        display: none;
    }
}

footer .globalNav {
    margin-bottom: 30px;
    font-weight: normal;
}

footer .globalNav .list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}


/* IE CSS Hack ここから */

footer .globalNav .list:not(:target) {
    flex-wrap: nowrap\9;
    /* IE9,10 (上書きされて結果的にIE9のみ) */
}

@media all and (-ms-high-contrast: none) {
    footer .globalNav .list:not(:target) {
        /* 詳細度の関係でこっちにも:not(:target)つける */
        flex-wrap: nowrap;
        /* IE10,11 (上書きされて結果的にIE10のみ) */
    }
    *::-ms-backdrop,
    footer .globalNav .list:not(:target) {
        /* 詳細度の関係でこっちにも:not(:target)つける */
        flex-wrap: nowrap;
        /* IE11のみ */
    }
}

@media all and (-ms-high-contrast: none) and (max-width: 767px) {
    footer .globalNav .list:not(:target) {
        /* 詳細度の関係でこっちにも:not(:target)つける */
        flex-wrap: wrap;
        /* IE10,11 (上書きされて結果的にIE10のみ) */
    }
    *::-ms-backdrop,
    footer .globalNav .list:not(:target) {
        /* 詳細度の関係でこっちにも:not(:target)つける */
        flex-wrap: wrap;
        /* IE11のみ */
    }
}


/* IE CSS Hack ここまで */


/* edge CSS Hack ここから */

@supports (-ms-ime-align:auto) {
    @media screen and (max-width: 767px) {
        footer .globalNav .list {
            flex-wrap: wrap;
        }
    }
}


/* edge CSS Hack ここから */

footer .globalNav .list .item {
    width: calc(100% / 6);
}

@media screen and (max-width: 767px) {
    footer .globalNav .list .item {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 413px) {
    footer .globalNav .list .item {
        width: 50%;
    }
}


/* IE CSS Hack ここから */

@media all and (-ms-high-contrast: none) and (max-width: 767px) {
    footer .globalNav .list .item:not(:target) {
        /* 詳細度の関係でこっちにも:not(:target)つける */
        width: 33.33%;
    }
    *::-ms-backdrop,
    footer .globalNav .list .item:not(:target) {
        /* 詳細度の関係でこっちにも:not(:target)つける */
        width: 33.33%;
    }
}

@media all and (-ms-high-contrast: none) and (max-width: 413px) {
    footer .globalNav .list .item:not(:target) {
        /* 詳細度の関係でこっちにも:not(:target)つける */
        width: 50%;
    }
    *::-ms-backdrop,
    footer .globalNav .list .item:not(:target) {
        /* 詳細度の関係でこっちにも:not(:target)つける */
        width: 50%;
    }
}


/* IE CSS Hack ここまで */


/* edge CSS Hack ここから */

@supports (-ms-ime-align:auto) {
    footer .globalNav .list .item {
        width: 16.66%;
    }
    @media screen and (max-width: 767px) {
        footer .globalNav .list .item {
            width: 33.33%;
        }
    }
    @media screen and (max-width: 413px) {
        footer .globalNav .list .item {
            width: 50%;
        }
    }
}


/* edge CSS Hack ここから */

footer .globalNav .list .item a {
    display: block;
    padding: 8px 0;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: 0.2s all ease;
}

@media screen and (max-width: 767px) {
    footer .globalNav .list .item a {
        padding: 10px 0;
    }
}

footer .globalNav .list .item a:hover {
    color: #bbb;
}

footer .access {
    margin: 0 auto 50px;
    display: flex;
    justify-content: center;
    max-width: 1000px;
    padding: 0 20px;
}

@media screen and (max-width: 767px) {
    footer .access {
        flex-wrap: wrap;
        margin-bottom: 30px;
        padding: 0 5%;
    }
}

footer .access .map {
    margin-right: 20px;
    width: calc(60% - 10px);
}

@media screen and (max-width: 767px) {
    footer .access .map {
        width: 100%;
        height: 50vh;
        margin-right: 0;
        min-height: 50vw;
    }
}

footer .access .map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer .access .box {
    width: calc(40% - 10px);
    font-weight: normal;
}

@media screen and (max-width: 767px) {
    footer .access .box {
        width: 100%;
    }
}


/* IE CSS Hack ここまで */

footer .access .box * {
    margin-bottom: 5px;
    line-height: 150%;
}

footer .access .box .logo {
    text-align: left;
    padding: 40px 0 20px;
}

@media screen and (max-width: 767px) {
    footer .access .box .logo {
        text-align: center;
    }
}

footer .access .box .logo img {
    margin-bottom: 0;
}

footer .access .box .privacy {
    margin: 0 0 25px;
}

@media screen and (max-width: 767px) {
    footer .access .box .privacy {
        text-align: center;
    }
}

footer .access .box .privacy a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}

footer .access .box .business {
    font-size: 14px;
    line-height: 170%;
}

footer .access .box .address {
    font-size: 18px;
}

footer .access .box .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 18px;
}

footer .access .box .list .item {
    width: 15%;
}

footer .access .box .list .text {
    width: 85%;
}

footer .copyright {
    padding: 10px;
    font-size: 12px;
    text-align: center;
    font-weight: normal;
    line-height: 150%;
}


/* -----------------------------------
	[1-4] ハンバーガーメニュー
----------------------------------- */

.hamMenu {
    display: none;
}

.hamMenu .hamButton {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 11;
}

.hamMenu .hamList {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: #006837;
    transform: translateY(-100%);
    transition: 0.2s all ease-out;
}

.hamMenu .hamList.acrive {
    transform: none;
}

.hamMenu .hamList li a {
    padding: 10px 0;
    text-decoration: none;
    color: #fff;
    text-align: center;
}


/* ****************************************************
	[2] トップページ
**************************************************** */


/* .mainImg */

.mainImg {
    position: relative;
    height: 450px;
}

.mainImg .mainBgWrap {
    overflow: hidden;
    min-height: 100%;
    position: relative;
}

.mainImg .mainBgWrap .mainBg {
    max-height: 100%;
    line-height: 0;
    font-size: 0;
    display: flex;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.mainImg .mainBgWrap .mainBg .block1,
.mainImg .mainBgWrap .mainBg .block2,
.mainImg .mainBgWrap .mainBg .block3,
.mainImg .mainBgWrap .mainBg .block4,
.mainImg .mainBgWrap .mainBg .block5,
.mainImg .mainBgWrap .mainBg .block6 {
    max-height: 450px;
}

.mainImg .mainBgWrap .mainBg .block3 {
    width: 681px;
}

.mainImg .mainBgWrap .mainBg .block3 .inner:nth-of-type(1) {
    display: flex;
    height: 60%;
}

.mainImg .mainBgWrap .mainBg .block3 .inner:nth-of-type(2) {
    display: flex;
    height: 40%;
}

.mainImg .mainBgWrap .mainBg .block3 .inner img {
    object-fit: cover;
    max-height: 100%;
}

.mainImg .mainBgWrap .mainBg .block3 .inner:nth-of-type(1) img:first-of-type {
    width: 70%;
}

.mainImg .mainBgWrap .mainBg .block3 .inner:nth-of-type(1) img:last-of-type {
    width: 30%;
}

.mainImg .mainBgWrap .mainBg .block3 .inner:nth-of-type(2) img:first-of-type {
    width: 40%;
}

.mainImg .mainBgWrap .mainBg .block3 .inner:nth-of-type(2) img:last-of-type {
    width: 60%;
}

.mainImg .mainBgWrap .mainBg .block4 {
    width: 176px;
}

.mainImg .mainBgWrap .mainBg .block6 {
    width: 681px;
}

.mainImg .mainBgWrap .mainBg .block6 .inner:nth-of-type(1) {
    display: flex;
    height: 40%;
}

.mainImg .mainBgWrap .mainBg .block6 .inner:nth-of-type(2) {
    display: flex;
    height: 60%;
}

.mainImg .mainBgWrap .mainBg .block6 .inner img {
    object-fit: cover;
    max-height: 100%;
}

.mainImg .mainBgWrap .mainBg .block6 .inner:nth-of-type(1) img:first-of-type {
    width: 55%;
}

.mainImg .mainBgWrap .mainBg .block6 .inner:nth-of-type(1) img:last-of-type {
    width: 45%;
}

.mainImg .mainBgWrap .mainBg .block6 .inner:nth-of-type(2) img:first-of-type {
    width: 70%;
}

.mainImg .mainBgWrap .mainBg .block6 .inner:nth-of-type(2) img:last-of-type {
    width: 30%;
}

.mainImg .mainBgWrap .mainBg .block img {
    max-height: 100%;
}

.mainImg .box {
    background: rgba(0, 100, 0, 0.6);
    padding: 44px 40px 38px 60px;
    position: absolute;
    width: auto;
    height: 106px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .mainImg .box {
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 190px;
        height: calc(100%);
        top: 0;
        left: 0;
        transform: none;
        padding: 0;
    }
}

.mainImg .box img {
    width: 106px;
    height: 106px;
}

@media screen and (max-width: 767px) {
    .mainImg .box img {
        width: 126px;
        height: 126px;
        margin-bottom: 20px;
    }
}

.mainImg .box .text {
    width: 470px;
    color: #fff;
    font-size: 26px;
    font-weight: normal;
    margin-left: 15px;
    line-height: 1.2;
}

@media screen and (max-width: 767px) {
    .mainImg .box .text {
        width: auto;
        text-align: center;
        font-size: 16px;
        margin-left: 0;
        line-height: 2;
    }
}

.mainImg .box .text .sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .mainImg .box .text .sp {
        display: inline;
    }
}


/* .message */

.message {
    padding: 50px 0 50px;
    text-align: center;
}

.message .text {
    font-size: 21px;
    margin-bottom: 33px;
    letter-spacing: 4px;
}

@media screen and (max-width: 767px) {
    .message .text {
        font-size: 5vw;
    }
}


/* .concept */

.concept {
    max-width: 1000px;
    display: flex;
    margin: 0 auto 100px;
    padding: 0 20px;
}

@media screen and (max-width: 767px) {
    .concept {
        flex-wrap: wrap;
        padding: 0 5%;
    }
}

.concept .img {
    min-width: calc((100% - 40px) * 0.5);
    margin-right: 40px;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .concept .img {
        width: 100%;
        margin: 0 0 20px;
        text-align: center;
    }
}

.concept .img img {
    max-width: 100%;
}

.concept .box {
    min-width: calc((100% - 40px) * 0.5);
}

.concept .box h2 {
    font-size: 32px;
    margin-bottom: 50px;
    font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
    .concept .box h2 {
        font-size: 8vw;
        margin-bottom: 30px;
        text-align: center;
    }
}

.concept .box .text {
    font-size: 18px;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .concept .box .text {
        font-size: 4vw;
    }
}


/* .property */

.property {
    max-width: 1000px;
    margin: 0 auto 100px;
    overflow: hidden;
}

.property h2 {
    font-size: 32px;
    margin-bottom: 34px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .property h2 {
        font-size: 8vw;
    }
}

.card a {
    display: block;
}


/*---------- カルーセル ここから ----------*/

.slick-list {
    height: 245px;
}

.slick-slide {
    display: block;
    height: 245px;
    margin: 0 10px;
    position: relative;
    background: rgba(0, 100, 0, 0.2);
    overflow: hidden;
}

.slick-prev {
    width: 40px;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}

.slick-prev:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slick-prev::after {
    content: "";
    width: 0;
    height: 0;
    background: none;
    border-top: 20px solid transparent;
    border-right: 20px solid rgba(0, 100, 0, 0.7);
    border-bottom: 20px solid transparent;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 2;
    cursor: pointer;
}

.slick-prev:hover::after {
    border-right: 20px solid rgba(0, 100, 0, 0.9);
}

.slick-next {
    width: 40px;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    position: absolute;
    z-index: 99;
    top: 0;
    right: 0;
}

.slick-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slick-next::after {
    content: "";
    width: 0;
    height: 0;
    background: none;
    border-top: 20px solid transparent;
    border-left: 20px solid rgba(0, 100, 0, 0.7);
    border-bottom: 20px solid transparent;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 99;
    cursor: pointer;
}

.slick-next:hover::after {
    border-left: 20px solid rgba(0, 100, 0, 0.9);
}


/*---------- カルーセル ここまで ----------*/

.card img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card .overlay {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: calc(100% - 20px);
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    font-weight: bold;
}

.card .overlay .info {
    width: calc(100% - 145px);
    margin-right: 6px;
}

.card .overlay .info .address {
    font-size: 13px;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card .overlay .info .price {
    font-size: 36px;
    color: #009E3E;
}

.card .overlay .info .price .unit {
    font-size: 22px;
    vertical-align: middle;
}

@media screen and (max-width: 374px) {
    .card .overlay .info .price {
        font-size: 30px;
    }
    .card .overlay .info .price .unit {
        font-size: 20px;
    }
}

.card .overlay .tagList {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    width: 139px;
}

.card .overlay .tagList .tag {
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
    width: 67px;
    height: 23px;
    font-size: 12px;
    line-height: 23px;
    text-align: center;
}

.card .overlay .tagList .tag:nth-of-type(-n+2) {
    margin-bottom: 5px;
}

.card .overlay .tagList .tag:nth-of-type(2n-1) {
    margin-right: 5px;
}

.card .overlay .tagList .tag.active {
    background: #009E3E;
}


/* 売買／テナント用スタイル ここから */

.sale .card .overlay .info,
.tenant .card .overlay .info {
    width: 100%;
    margin: 0;
}

.sale .card .overlay .tagList,
.tenant .card .overlay .tagList {
    width: 67px;
}

.sale .card .overlay .tagList .tag,
.tenant .card .overlay .tagList .tag {
    margin: 0 0 5px;
}

.sale .card .overlay .tagList .tag:last-of-type,
.tenant .card .overlay .tagList .tag:last-of-type {
    margin-bottom: 0;
}


/* 売買／テナント用スタイル ここまで */


/* .telSupport */

.telSupport {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 10px;
}

@media screen and (max-width: 767px) {
    .telSupport {
        padding: 0;
    }
}

.telSupport .pc {
    max-width: 100%;
}

@media screen and (max-width: 767px) {
    .telSupport .pc {
        display: none;
    }
}

.telSupport .sp {
    display: none;
    background: #E6E6E6;
    padding: 44px 5% 5px;
}

@media screen and (max-width: 767px) {
    .telSupport .sp {
        display: block;
    }
}

.telSupport .sp .symbol {
    color: #009E3E;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 2px;
    font-weight: bold;
    border: 2px solid #009E3E;
    border-radius: 10px;
    margin: 0 auto 30px;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.telSupport .sp h2 {
    font-size: 8vw;
    color: #009E3E;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.2;
}

.telSupport .sp .text {
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 4vw;
}

.telSupport .sp .box {
    background: rgba(255, 255, 255, 0.6);
    color: #333333;
    padding: 29px 20px 22px;
    margin-bottom: 26px;
}

.telSupport .sp .box h3 {
    font-size: 6vw;
    line-height: 1.2;
    color: #009E3E;
    margin-bottom: 20px;
    text-align: center;
}

.telSupport .sp .box .daytime {
    text-align: left;
    font-size: 16px;
    max-width: 300px;
    margin: 0 auto;
}

.telSupport .sp .box .daytime img {
    max-width: 100%;
    height: auto;
}

.telSupport .sp .box .img {
    text-align: center;
    margin: 5px auto;
    max-width: 100%;
    height: auto;
}

.telSupport .sp .box .nighttime {
    text-align: right;
    font-size: 16px;
    max-width: 300px;
    margin: 0 auto;
}

.telSupport .sp .box .nighttime img {
    max-width: 100%;
    height: auto;
}

.telSupport .sp .list {
    padding: 0 5px;
    font-size: 4vw;
}

.telSupport .sp .list .item {
    color: #333;
    font-weight: 800;
}

.telSupport .sp .list .text {
    color: #333;
    margin-bottom: 15px;
    font-size: 3vw;
}


/* .techSupport */

.techSupport {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

@media screen and (max-width: 767px) {
    .techSupport {
        padding: 0 5%;
    }
}

.techSupport h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .techSupport h2 {
        font-size: 8vw;
    }
}

.techSupport .inner {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .techSupport .inner {
        display: block;
    }
}

.techSupport .inner .feature {
    margin-right: 20px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .techSupport .inner .feature {
        margin: 0 0 40px;
    }
}

.techSupport .inner .feature:last-of-type {
    margin-right: 0;
}

.techSupport .inner .feature .img {
    margin-bottom: 15px;
}

.techSupport .inner .feature:last-of-type .img img {
    transform: translateX(16px);
}

.techSupport .inner .feature .caption {
    font-size: 21px;
    color: #009E3E;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .techSupport .inner .feature .caption {
        font-size: 7vw;
    }
}

.techSupport .inner .feature .text {
    font-size: 16px;
    text-align: left;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    .techSupport .inner .feature .text {
        max-width: 340px;
        margin: 0 auto;
        font-size: 4vw;
    }
}


/* .contactInfo */

.contactInfo {
    max-width: 1000px;
    margin: 0 auto 150px;
    display: flex;
    padding: 0 10px;
}

@media screen and (max-width: 767px) {
    .contactInfo {
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 5%;
    }
}

.contactInfo .bnr {
    width: calc(40% - 10px);
    height: 382px;
    margin-right: 30px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .contactInfo .bnr {
        width: 100%;
        height: auto;
        margin: 0 0 20px;
    }
}

.contactInfo .bnr img {
    max-width: 100%;
}

.contactInfo .inner {
    width: calc(60% - 10px);
}

@media screen and (max-width: 767px) {
    .contactInfo .inner {
        width: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

.contactInfo .inner .text {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .contactInfo .inner .text {
        font-size: 4vw;
        margin-bottom: 30px;
    }
}

.contactInfo .inner .info {
    color: #006837;
    font-size: 20px;
}

.contactInfo .inner .info .contact {
    padding-left: 21px;
    position: relative;
    margin-bottom: 13px;
}

@media screen and (max-width: 767px) {
    .contactInfo .inner .info .contact {
        font-size: 6vw;
        padding-left: 8vw;
    }
}

.contactInfo .inner .info .contact::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background: #006837;
    border-radius: 50%;
}

@media screen and (max-width: 767px) {
    .contactInfo .inner .info .contact::before {
        width: 6vw;
        height: 6vw;
    }
}

.contactInfo .inner .info .tel {
    font-size: 54px;
    margin-bottom: 15px;
    padding-left: 70px;
    background: url("../img/icon_tel.png") no-repeat left 50%;
}

@media screen and (max-width: 767px) {
    .contactInfo .inner .info .tel {
        font-size: 10vw;
        padding-left: 8vw;
        background-size: 6vw;
    }
}

.contactInfo .inner .info .tel a {
    color: #006837;
    text-decoration: none;
}

.contactInfo .inner .info .fax {
    font-size: 28px;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .contactInfo .inner .info .fax {
        font-size: 6vw;
    }
}

.contactInfo .inner .info .fax a {
    color: #006837;
    text-decoration: none;
}

.contactInfo .inner .info .response {
    color: #333;
}

@media screen and (max-width: 767px) {
    .contactInfo .inner .info .fax {
        font-size: 5vw;
    }
}


/* ****************************************************
	[3] 会社案内
**************************************************** */

.president p {
    font-weight: normal;
    line-height: 2;
}

.president p:last-of-type {
    margin-top: 20px;
}

.overview dl {
    display: flex;
    flex-wrap: wrap;
    font-weight: normal;
    line-height: 1.3;
}

.overview dl dt {
    width: 140px;
    padding: 12px 10px;
    border-bottom: 1px dotted #ccc;
}

.overview dl dd {
    width: calc(100% - 170px);
    padding: 10px 10px 10px 0;
    border-bottom: 1px dotted #ccc;
}

@media screen and (max-width: 767px) {
    .overview dl dt {
        width: 100px;
    }
    .overview dl dd {
        width: calc(100% - 130px);
    }
}


/* ****************************************************
	[4] 賃貸物件
**************************************************** */

.refine {
    padding: 20px;
    margin: 20px;
    border: 1px solid #ccc;
    text-align: right;
}

.refine .block {
    border-bottom: 1px dotted #ccc;
    padding: 10px 0;
    text-align-last: left;
}

.refine .block:first-of-type {
    display: flex;
    flex-wrap: wrap;
}

.refine .block:first-of-type .box {
    width: 25%;
}

@media screen and (max-width: 680px) {
    .refine .block:first-of-type .box {
        width: 50%;
    }
    .refine .block:first-of-type .box:nth-of-type(-n+2) {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 410px) {
    .refine .block:first-of-type .box {
        width: 100%;
    }
    .refine .block:first-of-type .box:nth-of-type(-n+3) {
        margin-bottom: 10px;
    }
}

.refine .block h3 {
    color: #666;
    margin-bottom: 5px;
}

.refine .block ul {
    display: flex;
    flex-wrap: wrap;
}

.refine .block ul li {
    width: 25%;
    margin-bottom: 5px;
}

@media screen and (max-width: 865px) {
    .refine .block ul li {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 680px) {
    .refine .block ul li {
        width: 50%;
    }
}

@media screen and (max-width: 510px) {
    .refine .block ul li {
        width: 100%;
    }
}

.refine .block select {
    padding: 2px;
    vertical-align: middle;
}

.refine input[type="submit"] {
    display: inline-block;
    background: #009E3E;
    width: 90px;
    color: #fff;
    border: none;
    padding: 3px 0;
    margin-top: 20px;
    border-radius: 8px;
    transition: 0.15s all ease;
}

.refine input[type="submit"]:hover {
    background: #006837;
}


/* 物件リスト：売買／テナントと共通 */

.propertyList {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 20px 0;
}

.propertyList .card {
    width: 300px;
    margin-right: calc((100% - 900px) / 2);
    margin-bottom: 40px;
}

.propertyList .card a {
    text-decoration: none;
    color: #009E3E;
}

.propertyList .card:nth-of-type(3n) {
    margin-right: 0;
}

@media screen and (max-width: 960px) {
    .propertyList .card {
        margin-left: calc((100% - 600px) / 4);
        margin-right: calc((100% - 600px) / 4);
    }
    .propertyList .card:nth-of-type(3n) {
        margin-right: calc((100% - 600px) / 4);
    }
}

@media screen and (max-width: 660px) {
    .propertyList .card {
        margin-left: calc((100% - 300px) / 2);
        margin-right: calc((100% - 300px) / 2);
    }
    .propertyList .card:nth-of-type(3n) {
        margin-right: calc((100% - 300px) / 2);
    }
}

.propertyList .card .cardTitle {
    min-height: 16px;
    margin-bottom: 7px;
}

.propertyList .card .cardInner {
    width: 300px;
    height: 200px;
    overflow: hidden;
    background: rgba(0, 100, 0, 0.2);
}

.propertyList .card .cardInner img {
    position: relative;
}

.propertyList .card a {
    position: relative;
    height: 100%;
}

.wp-pagenavi {
    text-align: center;
    font-size: 16px;
    padding-top: 50px;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #fff;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    margin: 0 2px;
    padding: 0;
    color: #aaa;
    line-height: 32px;
    transition: all 300ms 0s ease;
}

.wp-pagenavi span.extend {
    border: none;
}

.wp-pagenavi span.extend:hover {
    background: none;
    color: #aaa;
    border: none;
    cursor: default;
}

.wp-pagenavi span.current {
    background-color: #aaa;
    color: #fff;
    font-weight: bold;
    border: 1px solid #aaa;
}

.wp-pagenavi span.current {
    cursor: default;
}

.wp-pagenavi a:hover,
.wp-pagenavi span:hover {
    background: #aaa;
    color: #fff;
    font-weight: bold;
    border: 1px solid #aaa;
}


/* ****************************************************
	[5] 売買／テナント
**************************************************** */

.propertyEmpty {
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin: 50px auto 20px;
    color: green;
    height: 40px;
    line-height: 40px;
    border-top: 1px solid green;
    border-bottom: 1px solid green;
}


/* ****************************************************
	[5-1] 物件詳細
**************************************************** */

.photo .gallery {
    width: 100%;
    max-height: none;
    text-align: center;
    margin-bottom: 30px;
}

.photo .gallery img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 500px;
}

.photo .thumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 20px;
    line-height: 0;
    font-size: 0;
}

.photo .thumb li {
    width: 150px;
    height: 150px;
    overflow: hidden;
    margin-right: calc((100% - 750px) / 4);
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.1s ease;
    line-height: 0;
    font-size: 0;
    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
}

.photo .thumb li:nth-of-type(5n) {
    margin-right: 0;
}

.photo .thumb li:hover {
    box-shadow: 0 0 11px rgba(33, 33, 33, .08);
}

@media screen and (max-width: 850px) {
    .photo .thumb li {
        margin-right: calc((100% - 600px) / 3);
    }
    .photo .thumb li:nth-of-type(5n) {
        margin-right: calc((100% - 600px) / 3);
    }
    .photo .thumb li:nth-of-type(4n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 690px) {
    .photo .thumb li {
        width: 100px;
        height: 100px;
        margin-right: calc((100% - 400px) / 3);
    }
    .photo .thumb li:nth-of-type(5n) {
        margin-right: calc((100% - 400px) / 3);
    }
}

@media screen and (max-width: 480px) {
    .photo .thumb li {
        margin-right: calc((100% - 300px) / 2);
    }
    .photo .thumb li:nth-of-type(5n) {
        margin-right: calc((100% - 300px) / 2);
    }
    .photo .thumb li:nth-of-type(4n) {
        margin-right: calc((100% - 300px) / 2);
    }
    .photo .thumb li:nth-of-type(3n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 370px) {
    .photo .thumb li {
        width: 48%;
        height: 35vw;
        margin-right: 0;
    }
    .photo .thumb li:nth-of-type(5n) {
        margin-right: 0;
    }
    .photo .thumb li:nth-of-type(4n) {
        margin-right: 0;
    }
    .photo .thumb li:nth-of-type(3n) {
        margin-right: 0;
    }
    .photo .thumb li:nth-of-type(2n-1) {
        margin-right: 4%;
    }
}

.photo .thumb li:hover {
    transform: translateY(2px);
}

.photo .thumb li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entry .detail h3 {
    margin-bottom: 10px;
}

.entry .detail .table {
    width: 100%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;
}

.entry .detail .table:nth-of-type(2) {
    margin-top: 20px;
}

.entry .detail .table:nth-of-type(3) {
    margin-top: 20px;
    border: none;
}

.entry .detail .table .thead,
.entry .detail .table .tdata {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 7px;
    font-size: 14px;
    font-weight: normal;
}

@media screen and (max-width: 767px) {
    .entry .detail .table .thead,
    .entry .detail .table .tdata {
        line-height: 1.3;
    }
}

.entry .detail .table:nth-of-type(3) .thead,
.entry .detail .table:nth-of-type(3) .tdata {
    border: 1px solid #ccc;
}

.entry .detail .table .thead {
    background: #E0EEE5;
    width: 80px;
    text-align: center;
}

.entry .detail .table:nth-of-type(3) .thead {
    width: 90px;
}

.entry .detail .table .tdata {
    width: calc(100% - 110px);
}

.entry .detail .table:nth-of-type(3) .tdata {
    width: calc((100% - 240px) / 2 - 1px);
}

.entry .detail .table:nth-of-type(3)>*:nth-of-type(n+2) {
    border-left: 0;
}

.entry .detail .table .tdata.smallCell {
    width: calc((100% - 330px) / 3);
}

@media screen and (max-width: 767px) {
    .entry .detail .table .tdata.smallCell {
        width: calc(100% - 110px);
    }
    .entry .detail .table:nth-of-type(3) .tdata {
        width: calc(100% - 121px);
    }
    .entry .detail .table:nth-of-type(3)>*:nth-of-type(3) {
        border-left: 1px solid #ccc;
    }
    .entry .detail .table:nth-of-type(3)>*:nth-of-type(n+3) {
        border-top: none;
    }
}

.entry .passInput {
    margin-top: 20px;
    border: 1px solid #ccc;
    background: #E0EEE5;
    display: inline-block;
    padding: 10px 20px;
}

@media screen and (max-width: 414px) {
    .entry .passInput {
        display: block;
        text-align: center;
    }
}

.entry .passInput p .sp {
    display: none;
}

@media screen and (max-width: 414px) {
    .entry .passInput p .sp {
        display: inline;
    }
}

.entry .passInput p span {
    font-size: 80%;
}

.entry .passInput form {
    margin-top: 10px;
    height: 25px;
}

@media screen and (max-width: 414px) {
    .entry .passInput form {
        height: auto;
    }
}

.entry .passInput form label {
    font-size: 16px;
    font-weight: normal;
}

@media screen and (max-width: 414px) {
    .entry .passInput form label {
        display: block;
    }
}

.entry .passInput form input[type="text"] {
    padding: 3px;
    margin-left: 10px;
    width: 120px;
}

@media screen and (max-width: 414px) {
    .entry .passInput form input[type="text"] {
        margin: 10px auto 0;
        display: block;
    }
}

.entry .passInput form input[type="submit"] {
    display: inline-block;
    background: #009E3E;
    width: 60px;
    height: 25px;
    color: #fff;
    border: none;
    padding: 0;
    margin: 0 auto;
    border-radius: 8px;
    transition: 0.15s all ease;
}

.entry .passInput form input[type="submit"]:hover {
    background: #006837;
}

@media screen and (max-width: 414px) {
    .entry .passInput form input[type="submit"] {
        margin-top: 10px;
    }
}

.entry .passInput .caution {
    margin-top: 10px;
    color: red;
    font-size: 14px;
}


/* ****************************************************
	[6] クリーニング
**************************************************** */

.cleaning p {
    font-weight: normal;
    line-height: 2;
}

.serviceDetail .inner {
    display: flex;
    flex-wrap: wrap;
}

.serviceDetail .inner .box:first-of-type {
    width: 50%;
}

.serviceDetail .inner .box:last-of-type {
    width: calc(50% - 40px);
    padding-left: 40px;
}

.serviceDetail .inner .box h3 {
    font-size: 20px;
    color: #666;
    border-bottom: 1px solid #ccc;
    padding: 3px 0;
    margin-bottom: 5px;
}

.serviceDetail .inner .box dl {
    display: flex;
    flex-wrap: wrap;
    font-weight: normal;
}

.serviceDetail .inner .box dl dt {
    width: calc(35% - 5px);
    padding: 7px 0 7px 5px;
    margin-bottom: 7px;
    vertical-align: middle;
    border-radius: 5px 0 0 5px;
}

.serviceDetail .inner .box dl dd {
    width: calc(65% - 10px);
    padding: 7px 0 7px 10px;
    margin-bottom: 7px;
    vertical-align: middle;
    border-radius: 0 5px 5px 0;
}


/* edge CSS Hack ここから */

@supports (-ms-ime-align:auto) {
    .serviceDetail .inner .box dl dd {
        width: calc(65% - 10.5px);
    }
}


/* edge CSS Hack ここから */

.serviceDetail .inner .box .bgg {
    background: #E0EEE5;
}

.serviceDetail p {
    font-weight: normal;
    margin-top: 20px;
    line-height: 1.3;
}

@media screen and (max-width: 767px) {
    .serviceDetail .inner .box:first-of-type {
        width: 100%;
    }
    .serviceDetail .inner .box:last-of-type {
        width: 100%;
        padding-left: 0;
    }
}


/* ****************************************************
	[7] お問い合わせ
**************************************************** */

.telOrFax p {
    line-height: 1.5;
    font-weight: normal;
}

.telOrFax .inner {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .telOrFax .inner {
        display: block;
    }
}

.telOrFax .inner .box {
    width: calc(50% - 1px);
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .telOrFax .inner .box {
        width: 100%;
        margin-top: 20px;
    }
}

.telOrFax .inner .box:first-of-type {
    border-right: 2px dotted #009E3E;
    padding-right: 40px;
}

@media screen and (max-width: 767px) {
    .telOrFax .inner .box:first-of-type {
        border-right: none;
        border-bottom: 2px dotted #009E3E;
        padding: 0 0 10px;
    }
}

.telOrFax .inner .box:last-of-type {
    padding-left: 40px;
}

@media screen and (max-width: 767px) {
    .telOrFax .inner .box:last-of-type {
        padding-left: 0;
        margin-top: 10px;
    }
}

.telOrFax .inner .box .tel {
    font-size: 32px;
    font-weight: bold;
}

.telOrFax .inner .box .fax {
    font-size: 32px;
    font-weight: bold;
}

.internet p {
    line-height: 1.5;
    font-weight: normal;
}

.internet .caution {
    color: red;
}

.internet form {
    text-align: center;
}

.internet dl {
    text-align: left;
    border-top: 2px dotted #009E3E;
    padding-top: 20px;
    margin: 20px 0 40px;
    display: flex;
    flex-wrap: wrap;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .internet dl {
        display: block;
    }
}

.internet dl dt {
    width: 130px;
    padding-right: 20px;
    padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .internet dl dt {
        width: auto;
        padding: 0 0 10px;
    }
}

.internet dl dd {
    width: calc(100% - 150px);
    padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .internet dl dd {
        width: auto;
    }
}

.internet dl dd input,
.internet dl dd textarea {
    border: 1px solid #B0B0BF;
    border-radius: 3px;
    font-size: 14px;
    padding: 7px;
}

@media screen and (max-width: 767px) {
    .internet dl dd input,
    .internet dl dd textarea {
        max-width: calc(100% - 16px);
    }
}

.internet dl dd input[type="checkbox"] {
    position: relative;
    vertical-align: text-bottom;
}

.internet dl dd input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    top: 5.5px;
    left: 1.5px;
    width: 5px;
    height: 3px;
    background: #009E3E;
    transform: rotate(45deg);
}

.internet dl dd input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 5.5px;
    left: 3.5px;
    width: 10px;
    height: 3px;
    background: #009E3E;
    transform: rotate(-45deg);
}

.internet #question {
    max-width: 100%;
}

@media screen and (max-width: 767px) {
    .internet #question {
        max-width: calc(100% - 16px);
    }
}

.internet .adjust {
    border: none;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .internet .adjust {
        display: flex;
    }
}

.internet .adjust dt {
    width: 40px;
    padding: 0;
}

@media screen and (max-width: 767px) {
    .internet .adjust dt {
        width: 40px;
        margin: 0 20px 10px 0;
    }
}

.internet .adjust dd {
    width: 120px;
    padding: 0;
    padding: 0 20px 0 0;
}

@media screen and (max-width: 767px) {
    .internet .adjust dd {
        width: calc(100% - 80px);
        margin-bottom: 10px;
    }
}

.internet .adjust dd input {
    width: calc(100% - 2px);
}

.internet .address #addr,
.internet .address #addrIka {
    margin-top: 10px;
}

.internet #tel {
    width: 250px;
}

@media screen and (max-width: 374px) {
    .internet .mwform-tel-field input[type="text"] {
        width: calc((100% / 3) - 28px);
    }
}

.internet #mail {
    width: 250px;
}

.internet #confirm {
    width: 250px;
}

.internet input[type="submit"] {
    display: inline-block;
    background: #009E3E;
    width: 180px;
    height: 40px;
    color: #fff;
    border: none;
    padding: 0;
    margin: 0 auto;
    border-radius: 8px;
    transition: 0.15s all ease;
}

.internet input[type="submit"]:hover {
    background: #006837;
}


/* ****************************************************
	[7-1] 確認ページ
**************************************************** */

.confirm dl {
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
}

.confirm dl dt {
    width: 130px;
    padding: 0 20px 20px 0;
}

.confirm dl dd {
    width: calc(100% - 150px);
    padding: 0 0 20px;
}

.confirm dl dd .adjust {
    display: flex;
}

.confirm dl dd .adjust dt {
    display: none;
    padding: 0;
}

.confirm dl dd .adjust dd {
    width: auto;
    padding: 0 10px 0 0;
}

.confirm dl p,
.confirm dl .caution {
    display: none;
}

.confirm .button {
    display: flex;
}

.confirm .button input[type="submit"] {
    display: inline-block;
    background: #009E3E;
    width: 180px;
    height: 40px;
    color: #fff;
    border: none;
    padding: 0;
    margin: 0 auto;
    border-radius: 8px;
    transition: 0.15s all ease;
}

.confirm .button input[type="submit"]:hover {
    background: #006837;
}

.confirm .button input[type="submit"]:nth-of-type(n+2) {
    margin-left: 30px;
}


/* ****************************************************
	[7-2] サンクスページ
**************************************************** */

.thanks p {
    line-height: 1.5;
}

.thanks p.backTop {
    text-align: center;
    margin-top: 40px;
}

.thanks p.backTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #009E3E;
    width: 180px;
    height: 40px;
    color: #fff;
    text-decoration: none;
    border: none;
    padding: 0;
    margin: 0 auto;
    border-radius: 8px;
    transition: 0.15s all ease;
}


/* ****************************************************
	[8] 業者ログインページ
**************************************************** */

.login {
    width: 100vw;
    height: 100vh;
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; */
}
.vacancy_img{
    padding:40px 10px 25px;
    text-align: center;
}
.vacancy_img img{
    width: 100%;
    max-width:650px ;
    height: auto;
    transition: all 0.5s;
}
.vacancy_img img:hover{
    opacity: 0.7;
}

.loginBox {
    width: 100%;
    max-width: 220px;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    background: #eee;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.loginBox h1 {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.loginBox form {
    text-align: left;
    margin-bottom: 40px;
}

.loginBox form label {
    display: block;
}

.loginBox form #pass {
    -webkit-appearance: none;
    display: block;
    width: calc(100% - 6px);
    border: 1px solid #aaa;
    border-radius: 2px;
    padding: 2px;
    margin: 10px 0;
    font-size: 18px;
}

.loginBox form .btn {
    display: inline-block;
    background: #009E3E;
    width: 90px;
    color: #fff;
    border: none;
    padding: 3px 0;
    border-radius: 8px;
    transition: 0.15s all ease;
}

.loginBox form .btn:hover {
    background: #006837;
}

.loginBox .backTop {
    text-align: right;
}

.loginBox .backTop a {
    color: #555;
    text-decoration: none;
}

.loginBox .backTop a:hover {
    color: #999;
}


/* ****************************************************
	[9] 業者専用ページ
**************************************************** */

.vacancy {
    padding: 0;
}

.vacancy h2 {
    font-size: 24px;
    margin-bottom: 25px;
    padding: 0 0 5px 10px;
    border-bottom: 2px dotted #006837;
}

.vacancy .printButton {
    margin-bottom: 20px;
}

.vacancy .printButton a {
    color: #930;
    text-decoration: none;
}

.vacancy .printButton a:hover {
    text-decoration: underline;
}

.vacancy .block h3 {
    color: #fff;
    background: #006837;
    padding: 5px 0 5px 25px;
}

.vacancy .block table {
    padding-left: 25px;
    width: auto;
    padding: 0;
    margin: 20px 10px;
    text-align: center;
    font-weight: normal;
    font-size: 12px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-collapse: separate;
    border-spacing: 0px;
}

.vacancy .block table tr {
    min-height: 70px;
}

.vacancy .block table tr:nth-of-type(4n+5),
.vacancy .block table tr:nth-of-type(4n+6) {
    background: #f5f9f6;
}

.vacancy .block table .tableHeader {
    background: #DCDCDC;
}

.vacancy .block table tr th,
.vacancy .block table tr td {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    vertical-align: middle;
}

.vacancy .block table tr:nth-of-type(odd) th,
.vacancy .block table tr:nth-of-type(odd) td {
    border-bottom-style: dotted;
}


/* セルのborder-bottomを実践にする */

.vacancy .block table tr th.bbss,
.vacancy .block table tr td.bbss {
    border-bottom-style: solid;
}


/* セルのborder-rightを点線にする */

.vacancy .block table tr th.brsd,
.vacancy .block table tr td.brsd {
    border-right-style: dotted;
}


/* セルの幅調整 */

.vacancy .block table tr th.mw1,
.vacancy .block table tr td.mw1 {
    max-width: 900px;
}

.vacancy .block table tr th.mw2,
.vacancy .block table tr td.mw2 {
    max-width: 160px;
}

.vacancy .block table tr th.mw3,
.vacancy .block table tr td.mw3 {
    max-width: 480px;
}


/* セルの幅固定 */

.vacancy .block table tr th.w1,
.vacancy .block table tr td.w1 {
    width: 90px;
}


/* 一部セルを左揃え */

.vacancy .block table tr:nth-of-type(odd) td:nth-of-type(10),
.vacancy .block table tr:nth-of-type(even) td:nth-of-type(6),
.vacancy .block table tr:nth-of-type(even) td:last-of-type {
    text-align: left;
}

.vacancy .block table tr th.tal,
.vacancy .block table tr td.tal {
    text-align: left;
}

.attention_box {
    border: 1px solid #006837;
    padding: 15px;
    margin-bottom: 15px;
}

.attention_title {
    position: relative;
    padding-bottom: 5px;
    padding-left: 1em;
    color: #006837;
}

.attention_title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    width: 0;
    height: 0;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent #006837;
}

.attention {
    list-style: none;
    padding: 0 0 20px 0;
    margin: 0;
}

.attention:last-of-type {
    padding: 0;
}

.attention li {
    padding-left: 1em;
    text-indent: -.7em;
    line-height: 1.2em;
}

.attention li:before {
    content: "• ";
    color: #006837;
}
.attention li a{
    color: #006837;
}

/* ****************************************************
	[10] プライバシー
**************************************************** */

.policy h2 {
    font-size: 24px;
    margin-bottom: 25px;
    padding: 0 0 5px 10px;
    border-bottom: 2px dotted #006837;
}

.policy p {
    padding: 0 10px;
    margin-bottom: 40px;
    line-height: 2;
    font-weight: normal;
}

.policy ul {
    padding: 0 10px;
}

.policy ul li {
    list-style: none;
    padding-left: 20px;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: normal;
}

.policy ul li::before {
    content: "";
    width: 14px;
    height: 14px;
    background: #006837;
    position: absolute;
    top: 2px;
    left: 0;
    display: block;
}

.policy ul li .title {
    font-size: 20px;
    display: block;
    color: #666;
    margin-bottom: 10px;
    font-weight: bolder;
    line-height: 1;
}


/* ****************************************************
	[11] 404 error
**************************************************** */

.error404 p {
    line-height: 1.6;
}

.error404 p:last-of-type {
    margin-top: 25px;
}


/* ****************************************************
	[12] pop
**************************************************** */

#pop {
    width: 50%;
    border: #000 solid 1px;
    background: #fff;
    padding: 0 4%;
    box-sizing: border-box;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#pop a {
    color: #000;
    text-decoration: none;
}

#pop a:hover {
    color: #555;
}

.popup {
    display: block;
    position: relative;
}

.popup ul li {
    margin-bottom: 10px;
}

.popup ul li:last-of-type {
    margin-bottom: 20px;
}

.popup p {
    margin-bottom: 15px;
    padding-top: 20px;
    position: relative;
}

.popup p::before {
    content: "▼";
    position: absolute;
    left: -14px;
}

.popup span {
    display: block;
    background-color: #930;
    color: #fff;
    width: 200px;
    line-height: 40px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 24px;
}

.popup span:hover {
    cursor: pointer;
}

.popup input[type="checkbox"] {
    display: none;
}

.popup input[type="checkbox"]:checked+#pop {
    display: block;
    transition: .2s;
}

.close-btn span {
    transform: translate(0, 3px) rotate(45deg);
    background: #000;
    position: absolute;
    top: 30px;
    width: 20px;
    right: 12px;
    height: 2px;
}

.close-btn span:last-child {
    transform: translate(0, -7px) rotate(-45deg);
    transition: transform .3s;
    background: #000;
}

/* ****************************************************
	[13] line
**************************************************** */

.line-sp{
    display: none;
}
.line-pc{
    width: 70%;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .line-sp{
      width: 100%;
      display: block;
      padding: 0 15px;
      box-sizing: border-box;
    }
    .line-sp a{
        display: block;
    }
    .line-pc{
        display: none;
    }
}