@charset "utf-8";

/* ========================================================
	page.css => ページ用CSS
======================================================== */

/* recommended
============================================================================================================ */
.title_rec {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;
    color: #fff;
    background: #6EA724;
    border-radius: 3em;
    padding: 5px 30px 5px 70px;
    margin-bottom: 2em;
    min-height: 64px;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    position: relative;
}
.title_rec:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 33px;
    top: 50%;
    transform: translateY(-50%);
}
.title_rec.icon_01:before {
    width: 25px;
    height: 23px;
    background: url(../../images/top/icon_building01_white.svg) no-repeat;
    background-size: 100% auto;
}
.title_rec.icon_02:before {
    width: 19px;
    height: 26px;
    background: url(../../images/top/icon_building02_white.svg) no-repeat;
    background-size: 100% auto;
}
.title_rec:after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 0 14px 10px 0;
    border-color: transparent #6EA724 transparent transparent;
    position: absolute;
    left: 60px;
    bottom: -10px;
}
.title_rec.cate_pink {
    background: #e9806e;
}
.title_rec.cate_pink:after {
    border-style: solid;
    border-width: 0 14px 10px 0;
    border-color: transparent #e9806e transparent transparent;
}
.title_rec.cate_purple {
    background: #9F75BF;
}
.title_rec.cate_purple:after {
    border-style: solid;
    border-width: 0 14px 10px 0;
    border-color: transparent #9F75BF transparent transparent;
}
.title_rec.cate_yellow {
    background: #e09b2d;
}
.title_rec.cate_yellow:after {
    border-style: solid;
    border-width: 0 14px 10px 0;
    border-color: transparent #e09b2d transparent transparent;
}
.title_rec.cate_blue {
    background: #50b5cc;
}
.title_rec.cate_blue:after {
    border-style: solid;
    border-width: 0 14px 10px 0;
    border-color: transparent #50b5cc transparent transparent;
}
.recommended_area section + section {
    margin-top: 80px;
}
.rec_list {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    position: relative;
    z-index: 2;
}
.rec_list:before {
    content: "";
    display: inline-block;
    width: 100vw;
    height: calc(100% - 170px);
    background: #F5F4E4;
    position: absolute;
    left: calc(-50vw + 50%);
    bottom: 0;
    z-index: -1;
}
.cate_purple + .rec_list:before {
    background: #f7f2fb;
}
.cate_pink + .rec_list:before {
    background: #fef1f3;
}
.cate_blue + .rec_list:before {
    background: #eef9fb;
}
.cate_yellow + .rec_list:before {
    background: #fdf5ea;
}
.rec_list li {
    width: 32%;
    margin-bottom: 5%;
    position: relative;
}
.rec_list:after {
    content:"";
    display: block;
    width: 32%;
}
.rec_list li a {
    display: block;
    color: #564336;
    text-decoration: none;
    position: relative;
    height: 100%;
}
.rec_list li a:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: calc(100% - 50px);
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.rec_list li a:after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../images/arrow_circle_y_green.svg) no-repeat;
    background-size: 100% auto;
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.rec_list li .image {
    clip-path: polygon(50% 0%, 100% 11%, 100% 100%, 0 100%, 0 11%);
}
.rec_list li .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rec_list li div {
    padding: 5% 5% 35px;
    line-height: 1.5;
}
.rec_list li .title {
    font-size: 1.7rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0.75em;
}
/* recommended_detail_area */
.recommended_detail_area.cate_purple .title_side_line span:before,
.recommended_detail_area.cate_purple .title_side_line span:after {
    background: #9f75bf;
}
.recommended_detail_area.cate_pink .title_side_line span:before,
.recommended_detail_area.cate_pink .title_side_line span:after {
    background: #e9806e;
}
.recommended_detail_area.cate_blue .title_side_line span:before,
.recommended_detail_area.cate_blue .title_side_line span:after {
    background: #50b5cc;
}
.recommended_detail_area.cate_yellow .title_side_line span:before,
.recommended_detail_area.cate_yellow .title_side_line span:after {
    background: #e09b2d;
}
.recommended_contents {
    position: relative;
    z-index: 3;
    margin-bottom: 5%;
}
.recommended_contents:before {
    content: "";
    display: inline-block;
    width: 100vw;
    height: calc(100% - 250px);
    background: #f5f4e4;
    position: absolute;
    left: calc(-50vw + 50%);
    bottom: 0;
    z-index: -2;
}
.recommended_detail_area.cate_purple .recommended_contents:before {
    background: #f7f2fb;
}
.recommended_detail_area.cate_pink .recommended_contents:before {
    background: #fef1f3;
}
.recommended_detail_area.cate_blue .recommended_contents:before {
    background: #eef9fb;
}
.recommended_detail_area.cate_yellow .recommended_contents:before {
    background: #fdf5ea;
}
.recommended_contents:after {
    content: "";
    display: inline-block;
    width: 100vw;
    height: 157px;
    background: url(../images/bg_building.svg) repeat-x center bottom;
    background-size: auto 100%;
    position: absolute;
    left: calc(-50vw + 50%);
    bottom: 0;
    z-index: -1;
}
.recommended_contents .image {
    text-align: center;
    background: #fff;
}
.recommended_contents .text {
    padding: 3.5% 4.5%;
    background: #fff;
    color: #564336;
}
.recommended_contents .text p {
    margin-bottom: 1em;
}
.recommended_contents .text h2 {
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.75em;
}
.recommended_contents .text > h2:first-child {
    margin-top: 0;
}
.recommended_contents .text h3 {
    font-size: 1.9rem;
    font-weight: bold;
    line-height: 1.5;
    background: #eae9e8;
    border-radius: 4px;
    padding: 0.4em 1em;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}
.recommended_detail_area .bukken_area {
    position: relative;
    padding-top: 90px;
}
.recommended_detail_area .bukken_area:before {
    content:"";
    display: inline-block;
    width: 70px;
    height: 5px;
    background: #6ea724;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.recommended_detail_area.cate_purple .bukken_area:before {
    background: #9f75bf;
}
.recommended_detail_area.cate_pink .bukken_area:before {
    background: #e9806e;
}
.recommended_detail_area.cate_blue .bukken_area:before {
    background: #50b5cc;
}
.recommended_detail_area.cate_yellow .bukken_area:before {
    background: #e09b2d;
}
.bukken_area .bukken_list {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}
.bukken_area .bukken_list li {
    width: 18.4%;
    margin-bottom: 3%;
    margin-right: 2%;
}
.bukken_area .bukken_list li:nth-of-type(5n) {
    margin-right: 0;
}
.bukken_area .bukken_list li a {
    text-decoration: none;
    color: #564336;
    line-height: 1.5;
}
.bukken_area .bukken_list li .image {
    height: 130px;
}
.bukken_area .bukken_list li .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bukken_area .bukken_list li .name {
    font-size: 1.7rem;
    font-weight: bold;
    color: #564336;
    background: #eff2e7;
    padding: 0.2em 8px;
    border-bottom: 1px solid #6ea724;
}
.recommended_detail_area.cate_purple .bukken_list li .name {
    background: #f7f2fb;
    border-bottom: 1px solid #9f75bf;
}
.recommended_detail_area.cate_pink .bukken_list li .name {
    background: #fef1f3;
    border-bottom: 1px solid #e9806e;
}
.recommended_detail_area.cate_blue .bukken_list li .name {
    background: #eef9fb;
    border-bottom: 1px solid #50b5cc;
}
.recommended_detail_area.cate_yellow .bukken_list li .name {
    background: #fdf5ea;
    border-bottom: 1px solid #e09b2d;
}
.bukken_area .bukken_list li .info {
    font-size: 1.5rem;
    background: #f4f4f4;
    padding: 0.3em 8px;
}
.bukken_area .bukken_list li .rent {
    font-size: 1.7rem;
    font-weight: bold;
    color: #e05a00;
    margin: 0.4em 0;
}
.bukken_area .bukken_list li .text {
    font-size: 1.4rem;
    line-height: 1.4;
}
@media screen and (max-width: 1200px) {
    .bukken_area .bukken_list li .image {
        height: 10.5vw;
    }
}
@media screen and (max-width: 768px) {
    .title_rec {
        font-size: 1.6rem;
        border-radius: 2em;
        padding: 0.75em 20px 0.75em 45px;
        margin-bottom: 2em;
        min-height: inherit;
    }
    .title_rec:before {
        left: 18px;
    }
    .title_rec.icon_01:before {
        width: 17px;
        height: 16px;
    }
    .title_rec.icon_02:before {
        width: 13px;
        height: 18px;
        left: 22px;
    }
    .title_rec:after {
        left: 50px;
    }
    .recommended_area section + section {
        margin-top: 30px;
    }
    .rec_list:before {
        content: none;
    }
    .rec_list li {
        width: 100%;
        margin-bottom: 45px;
    }
    .rec_list:after {
        content:none;
    }
    .rec_list li a {
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
    }
    .rec_list li a:before {
        content: "";
        display: inline-block;
        width: 100vw;
        height: 50%;
        background: #F5F4E4;
        position: absolute;
        left: calc(-50vw + 50%);
        bottom: -20px;
        z-index: -1;
    }
    .cate_purple + .rec_list li a:before {
        background: #f7f2fb;
    }
    .cate_pink + .rec_list li a:before {
        background: #fef1f3;
    }
    .cate_blue + .rec_list li a:before {
        background: #eef9fb;
    }
    .cate_yellow + .rec_list li a:before {
        background: #fdf5ea;
    }
    .rec_list li a:after {
        width: 14px;
        height: 14px;
        right: 4px;
        bottom: 4px;
    }
    .rec_list li .image {
        width: 35%;
    }
    .rec_list li div {
        width: 65%;
        padding: 0 14px 14px 11px;
        font-size: 1.2rem;  
        background: #fff;
    }
    .rec_list li .title {
        font-size: 1.5rem;
        margin-bottom: 0;
        position: relative;
        top: -5px;
    }
    /* recommended_detail_area */
    .recommended_contents {
        margin-bottom: 10%;
    }
    .recommended_contents:before {
        height: calc(100% - 80px);
    }
    .recommended_contents:after {
        content: none;
    }
    .recommended_contents .text {
        padding: 5% 6% 3%;
    }
    .recommended_contents .text h2 {
        font-size: 1.7rem;
        line-height: 1.4;
    }
    .recommended_contents .text h3 {
        font-size: 1.6rem;
        line-height: 1.4;
        padding: 0.4em 0.75em;
    }
    .recommended_detail_area .bukken_area {
        padding-top: 60px;
    }
    .recommended_detail_area .bukken_area:before {
        width: 50px;
        height: 4px;
    }
    .bukken_area .bukken_list {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .bukken_area .bukken_list li {
        width: 48%;
        margin-bottom: 5%;
        margin-right: 0;
    }
    .bukken_area .bukken_list li .image {
        height: 28vw;
    }
    .bukken_area .bukken_list li .name {
        font-size: 1.5rem;
        padding: 0.3em 8px;
    }
    .bukken_area .bukken_list li .info {
        font-size: 1.3rem;
        padding: 0.4em 8px;
    }
    .bukken_area .bukken_list li .rent {
        font-size: 1.5rem;
        margin: 0.3em 0;
    }
    .bukken_area .bukken_list li .text {
        font-size: 1.2rem;
        line-height: 1.4;
    }
}


/* info_area
============================================================================================================ */
.info_area article + article {
    margin-top: 5%;
}
.info_area .info_head {
    background: #fffbe9;
    padding: 1em 2% 1.3em 2%;
    position: relative;
    border-top: 2px solid #6ea724;
}
.info_list {
    border-top: 1px solid #6ea724;
    border-bottom: 1px solid #6ea724;
}
.info_list a {
    color: #564336;
    text-decoration: none;
}
.info_list article {
    padding: 1em 2% 1.3em 2%;
}
.info_list article + article {
    border-top: 1px solid #6ea724;
}
.info_area .date,
.info_list .date {
    display: inline-block;
    font-size: 1.6rem;
    color: #564336;
}
.info_area .cate,
.info_list .cate,
.info_detail .cate {
    display: inline-block;
    width: 85px;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    background: #6EA724;
    padding: 0.1em 0;
    border-radius: 2em;
    margin-top: 4px;
    margin-left: 1.5em;
}
.info_area .title,
.info_list .title {
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1.5;
    color: #564336;
    margin-top: 10px;
}
.info_list .title {
    font-size: 1.7rem;
}
.info_list .body {
    margin-top: 10px;
}
.info_list.residents a {
	text-decoration: underline;
}
.info_area .content {
    padding: 2%;
}
.info_detail_head {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    margin-top: 20px;
    margin-bottom: 50px;
}
.info_detail_head .cate {
    margin-left: 0;
    margin-right: 10px;
}
.info_detail_head .date {
    margin-left: 15px;
    margin-top: 0.1em;
}
@media screen and (max-width: 768px) {
    .info_area article + article {
        margin-top: 10%;
    }
    .info_area .info_head {
        padding: 0.7em 4% 1.0em 4%;
    }
    .info_area .info_head:after {
        width: 12px;
        top: 1.7em;
    }
    .info_list article {
        padding: 0.7em 4% 1.0em 4%;
    }
    .info_area .date,
    .info_list .date {
        font-size: 1.5rem;
    }
    .info_area .cate,
    .info_list .cate,
    .info_detail .cate {
        width: 80px;
        font-size: 1.1rem;
        margin-top: 1px;
        margin-left: 1em;
    }
    .info_area .title,
    .info_list .title {
        font-size: 1.6rem;
        margin-top: 5px;
    }
    .info_area .content {
        padding: 1em 4%;
    }
    .info_detail_head {
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .info_detail_head .cate {
        margin-left: 0;
        margin-right: 10px;
        font-size: 1.2rem;
    }
    .info_detail_head .date {
        font-size: 1.2rem;
        margin-left: 10px;
        margin-top: 0.1em;
    }
    
}



/* box_in_area
============================================================================================================ */
.box_in_area {
    background: #F5F4E4;
    border-radius: 6px;
    padding: 4.25%;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.box_in_area > div {
    width: 48%;
    background: #fff;
    padding: 3% 3.5%;
    border-radius: 8px;
    box-shadow: 2px 2px 3px 0px rgba(99, 99, 99, 0.2) ;
    -webkit-box-shadow: 2px 2px 3px 0px rgba(99, 99, 99, 0.2) ;
    -moz-box-shadow: 2px 2px 3px 0px rgba(99, 99, 99, 0.2) ;
    -o-box-shadow: 2px 2px 3px 0px rgba(99, 99, 99, 0.2) ;
    -ms-box-shadow: 2px 2px 3px 0px rgba(99, 99, 99, 0.2) ;
}
.box_in_area > div + div {
    margin-top: 4%;
}
.box_in_area > div:nth-child(1),
.box_in_area > div:nth-child(2) {
    margin-top: 0;
}
.box_in_area .box_in_title {
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1.5;
    color: #564336;
    margin-bottom: 0.75em;
}
.box_in_area .text {
    font-size: 1.4rem;
    padding: 0 1.5em;
    margin-bottom: 20px;
}
.box_in_area .btn_shade.btn_shade_s {
    min-width: 200px;
}
@media screen and (max-width: 768px) {
    .box_in_area {
        padding: 6%;
        display:block;
    }
    .box_in_area > div {
        width: 100%;
        padding: 7% 6.5%;
    }
    .box_in_area > div + div {
        margin-top: 6%;
    }
    .box_in_area > div:nth-child(2) {
        margin-top: 6%;
    }
    .box_in_area .box_in_title {
        font-size: 1.8rem;
        margin-bottom: 0.75em;
    }
    .box_in_area .text {
        font-size: 1.3rem;
        padding: 0;
        margin-bottom: 15px;
    }
}


/* contact
============================================================================================================ */
.contact_box {
    width: 48% !important;
    color: #564336;
    border: 2px solid #6ea724;
    border-radius: 6px;
}
.col_2 .contact_box {
    -ms-flex-item-align: start;
	align-self: flex-start;
}
.col_2 > div.contact_right {
    width: 48% !important;
}
.col_2 > div > .contact_box {
    width: 100% !important;
}
.contact_box > div {
    padding: 6% 5%;
    position: relative;
}
.contact_box > div + div {
    padding-top: 4.5%;
}
.contact_box > div + div:before {
    content:"";
    display: inline-block;
    width: 90%;
    height: 1px;
    background: #6ea724;
    position: absolute;
    left: 5%;
    top: 0;
}
.title_c_box {
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    background: #6ea724;
    padding: 0.5em 0.5em 0.7em;
}
.title_s_c_box {
    font-size: 1.7rem;
    font-weight: bold;
    color: #6ea724;
    margin-bottom: 0.75em;
}
.contact_box .bg_l_yellow {
    font-size: 1.4rem;
    padding: 1em;
    border-radius: 4px;
}
.contact_box .bg_l_yellow .notes {
    font-size: 1.4rem;
}
.contact_box .tel {
    display: block;
    font-size: 4.2rem;
    font-weight: bold;
    line-height: 1.4;
    color: #564336;
    text-decoration: none;
    position: relative;
    padding-left: 30px;
    margin: 2% 0 2%;
}
.contact_box .tel:before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 33px;
    background: url("../images/icon_tel_green.svg") no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 4px;
}
.contact_box .tel:hover {
    opacity: 1 !important;
}
.contact_box .btn_contact {
    font-size: 2.2rem;
    padding: 1em 0.5em;
}
.contact_box .dl_line {
    font-size: 1.4rem;
}
.contact_box .dl_line dt {
    padding-left: 0;
    width: 5em;
}
.contact_box .dl_line dd {
    padding-right: 0;
    width: calc(100% - 5em);
}
.contact_box .dl_line dd ul {
    font-size: 1.3rem;
}
.bottom_contact_box {
    margin-top: 60px;
}
.bottom_contact_box .contact_box {
    width: 70% !important;
    margin: auto;
}
.contents_main .bottom_contact_box .contact_box {
    width: 100% !important;
}
.bottom_contact_box .contact_box > div {
    padding: 2% 4%;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.bottom_contact_box .contact_box .tel {
    margin: 2% 0;
    font-size: 3.6rem;
}
.bottom_contact_box .contact_box .btn_shade.btn_shade_s {
    padding: 0.9em 1em;
    margin-left: 50px;
}
@media screen and (max-width: 960px) {
    .bottom_contact_box .contact_box {
        width: 100% !important;
    }
    .col_2 .contact_box {
        width: 100% !important;
    }
    .col_2 > div.contact_right {
        width: 100% !important;
    }
    .col_2 .contact_box > div {
        padding: 2.5%;
    }
    .contact_box > div + div:before {
        width: 95%;
        left: 2.5%;
    }
}
@media screen and (max-width: 768px) {
    .contact_box {
        width: 100% !important;
    }
    .col_2 > div.contact_right {
        width: 100% !important;
    }
    .contact_box + .contact_box,
    .contact_right {
        margin-top: 10%;
    }
    .contact_box > div,
    .col_2 .contact_box > div {
        padding: 4% 4.5% 5%;
    }
    .contact_box > div + div {
        padding-top: 4.5%;
        margin-top: 2%;
    }
    .contact_box > div + div:before {
        width: 91%;
        left: 4.5%;
    }
    .title_c_box {
        font-size: 1.6rem;
    }
    .title_s_c_box {
        font-size: 1.5rem;
        margin-bottom: 0.5em;
    }
    .contact_box .bg_l_yellow {
        font-size: 1.2rem;
        padding: 0.75em;
    }
    .contact_box .bg_l_yellow .notes {
        font-size: 1.2rem;
    }
    .contact_box .tel {
        font-size: 3.4rem;
        text-decoration: none !important;
        padding-left: 26px;
    }
    .contact_box .tel:before {
        width: 18px;
        height: 26px;
        left: 2px;
        margin-top: 4px;
    }
    .contact_box .btn_contact {
        font-size: 1.8rem;
        padding: 1em 0.5em;
    }
    .contact_box .dl_line {
        font-size: 1.3rem;
        display: block;
    }
    .contact_box .dl_line dt {
        padding: 0.75em 0 0.1em 0;
        width: 100%;
        font-weight: bold;
    }
    .contact_box .dl_line dd {
        padding: 0.1em 0 0.75em 0;
        width: 100%;
        border-top: none;
    }
    .contact_box .dl_line dd ul {
        font-size: 1.2rem;
    }
    .bottom_contact_box {
        margin-top: 40px;
    }
    .bottom_contact_box .contact_box {
        width: 100% !important;
    }
    .bottom_contact_box .contact_box > div {
        padding: 2%;
        display: block;
        text-align: center;
    }
    .bottom_contact_box .contact_box .title_c_box {
        font-size: 1.5rem;
    }
    .bottom_contact_box .contact_box .tel {
        margin: 1% 0;
        display: inline-block;
        font-size: 3.4rem;
    }
    .bottom_contact_box .contact_box .btn_shade.btn_shade_s {
        padding: 0.9em 1em;
        margin: 10px 0;
    }
}


/* side_box_area
============================================================================================================ */
.side_box_area {
    border: 2px solid #6ea724;
    border-radius: 6px;
}
.side_box_area + .side_box_area {
    margin-top: 25px;
}
.side_title {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.4;
    color: #fff;
    background: #6ea724;
    padding: 0.4em 10px 0.5em;
}
.side_box_area .side_box_in {
    padding: 6% 4%;
}
.side_box_area .side_box_in ul li a {
    color: #564336;
    font-size: 1.4rem;
    text-decoration: none;
}
.side_box_area .side_box_in ul li a:hover {
    text-decoration: underline;
}
.side_box_area .side_box_in ul li {
    line-height: 1.4;
    position: relative;
    padding-left: 12px;
}
.side_box_area .side_box_in ul li + li {
    margin-top: 0.3em;
}
.side_box_area .side_box_in ul li:after {
    content:"";
    display:inline-block;
    width: 7px;
    height: 7px;
    background: url("../images/arrow_green.svg") no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    top: 0.55em;
}
@media screen and (max-width: 960px) {
    .contents_side_navi {
        margin-top: 20%;
        margin-bottom: -40px;
    }
    .contents_side_navi .side_box_area {
        border: none;
        border-radius: 0;
    }
    .contents_side_navi .side_title {
        font-size: 1.4rem;
        font-weight: normal;
        color: #564336;
        background: #D3E5BA;
        padding: 0.7em 1em;
    }
    .side_box_area .side_box_in {
        padding: 0.75em 1em;
    }
    .side_box_area + .side_box_area {
        margin-top: 15px;
    }
    .contents_side_navi .side_box_area + .side_box_area {
        margin-top: 0;
    }
    .side_box_area .side_box_in ul li a {
        font-size: 1.3rem;
    }
}
@media screen and (max-width: 768px) {
}



/* inner_link
============================================================================================================ */
.inner_link {
    background: #F5F4E4;
    padding: 2% 3%;
}
.inner_link ul li {
    display: inline-block;
    padding-left: 12px;
    margin-right: 1.5em;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    position: relative;
}
.inner_link ul li:last-child {
    margin-right: 0;
}
.inner_link li:before {
    content:"";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3.5px 0 3.5px;
    position: absolute;
    left: 0;
    top: 0.8em;
    border-color: #564336 transparent transparent transparent;
}

/* ph_column
============================================================================================================ */
.ph_column + .ph_column,
.ph_column > div + div {
    margin-top: 5%;
}
.ph_column .image {
    max-width: 300px;
    margin-bottom: 5px;
}
.ph_column.ph_column_img_s .image {
    max-width: 180px;
}
.ph_column.ph_column_full .image {
    width: 100%;
    height: auto;
    text-align: center;
}
.ph_column.ph_column_wrap {
    display: block;
}
.ph_column.ph_column_r.ph_column_wrap .image {
    float: right;
    margin-left: 45px;
}
.ph_column.ph_column_l.ph_column_wrap .image {
    float: left;
    margin-right: 45px;
}
.ph_column .image .cap {
    display: block;
    font-size: 1.3rem;
    text-align: center;
    margin: 0.75em 0;
}
.ph_column.ph_column_nowrap > div {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.ph_column.ph_column_r.ph_column_nowrap > div {
    -webkit-box-orient: horizontal;
  	-webkit-box-direction: reverse;
  	-ms-flex-direction: row-reverse;
  	flex-direction: row-reverse;
}
.ph_column.ph_column_nowrap > div > div {
    width: -webkit-calc(100% - 345px);
    width: calc(100% - 345px);
}
.ph_column.ph_column_nowrap.ph_column_img_s > div > div {
    width: -webkit-calc(100% - 225px);
    width: calc(100% - 225px);
}
.ph_column_wrap:after {
	content: "."; display: block; height: 0; clear: both; visibility: hidden; line-height: 0; overflow: hidden;
}
@media screen and (max-width: 768px) {
    .ph_column + .ph_column,
    .ph_column > div + div {
        margin-top: 15%;
    }
    .ph_column .image,
    .ph_column.ph_column_img_s .image {
        max-width: 100%;
    }
    .ph_column .image img {
        max-width: 240px;
        height: auto;
    }
    .ph_column.ph_column_r.ph_column_wrap .image {
        float: none;
        margin-left: 0;
        text-align: center;
    }
    .ph_column.ph_column_l.ph_column_wrap .image {
        float: none;
        margin-right: 0;
        text-align: center;
    }
    .ph_column.ph_column_r.sp_ph_column_wrap .image {
        float: right;
        margin-left: 10px;
        max-width: 37.5vw;
    }
    .ph_column.ph_column_l.sp_ph_column_wrap .image {
        float: left;
        margin-right: 10px;
        max-width: 37.5vw;
    }
    .ph_column.ph_column_r.sp_ph_column_wrap .image img,
    .ph_column.ph_column_l.sp_ph_column_wrap .image img {
        width: 100%;
        height: auto;
    }
    .ph_column.ph_column_r.ph_column_nowrap > div,
    .ph_column.ph_column_nowrap > div {
        display: block;
    }
    .ph_column.ph_column_nowrap .image {
        width: 100%;
        text-align: center;
        margin-bottom: 3%;
    }
    .ph_column.ph_column_nowrap > div > div,
    .ph_column.ph_column_nowrap.ph_column_img_s > div > div {
        width: 100%;
    }
    .ph_column.ph_column_sp_rev > div {
        display:-webkit-box !important;
        display:-ms-flexbox !important;
        display:flex;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .ph_column.ph_column_sp_rev > div .image {
        margin-top: 5%;
        margin-bottom: 0;
    }
}

/* calc_box
============================================================================================================ */
.calc_box {
    border: 1px solid #4b4b4b;
    padding: 10px;
    width: 30em;
    margin: 15px 0 20px;
}
.calc_box strong {
    display: block;
    text-align: center;
    font-size: 2em;
}
@media screen and (max-width: 768px) {
    .calc_box {
        padding: 3%;
        width: 100%;
    }
    .calc_box strong {
        font-size: 1.6em;
    }
}

/* flow_block
============================================================================================================ */
.flow_block,
.flow_block .flow_block_v_text {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
    margin: 40px 0;
    padding-bottom: 50px;
    position: relative;
    padding-left: 50px;
}
.flow_block .flow_block_v_text {
    margin: 0% 0;
    padding-bottom: 0%;
    padding-left: 0;
}
.flow_block:before,
.flow_block:after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 3px;
    background: #6ea724;
    position: absolute;
    bottom: 0;
    right: 50%;
    border-radius: 40px;
    transform: rotate(150deg);
    transform-origin:calc(100% - 1px) 50%;
}    
.flow_block:after{
    transform: rotate(30deg);
}
.flow_block:nth-last-of-type(1) {
    padding-bottom: 0;
}
.flow_block:nth-last-of-type(1):before,
.flow_block:nth-last-of-type(1):after {
    content: none;
}
.flow_block .step {
    width: 110px;
    height: 110px;
    font-size: 1.9rem;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    background: #6ea724;
    border-radius: 50%;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    position: relative;
    z-index: 2;
}
.flow_block .step span {
    display: block;
    font-size: 3.4rem;
    line-height: 1;
}
.flow_block dl {
    width: calc(100% - 110px - 40px);
}
.flow_block dl dt {
    font-size: 2.1rem;
    font-weight: bold;
    color: #564336;
    margin-bottom: 0.5em;
}
.flow_block_v_text:before {
    content:"";
    display: inline-block;
    width: 65px;
    height: 1px;
    background: #A3D8E5;
    position: absolute;
    left: -40px;
}
.flow_block_v_text:before {
    top: 35px;
}
.flow_block_v_text:after {
    content:"";
    display: inline-block;
    width: 1px;
    height: calc(100% + 90px);
    background: #A3D8E5;
    position: absolute;
    left: -40px;
    bottom: -125px;
}
section .flow_block:nth-last-of-type(1) .flow_block_v_text:after {
    bottom: calc(100% - 35px);
    content: none;
}
.flow_block_v_text.flow_block_v_text_in:before {
    content: none;
}
.flow_v_text {
    position: absolute;
    left: 0;
    top: 45px;
    z-index: 2;
}
.flow_v_text > span {
    font-size: 1.4rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background: #CBECF4;
    padding: 0.75em 0.1em 0.75em 0;
}
.flow_v_text > span > span {
  text-combine-upright: all;
}
.flow_v_text.flow_v_text01 {
    top: 65px;
}
.flow_v_text.flow_v_text03 {
    top: 90px;
}
.flow_v_text.flow_v_text04 {
    top: 130px;
}
@media screen and (max-width: 1300px) {
    .flow_block .step {
        width: 90px;
        height: 90px;
    }
    .flow_block dl {
        width: calc(100% - 90px - 40px);
    }
}
@media screen and (max-width: 768px) {
    .flow_block,
    .flow_block .flow_block_v_text{
        padding-left: 35px;
    }
    .flow_block .flow_block_v_text {
        margin: 0% 0;
        padding-bottom: 0%;
        padding-left: 0;
    }
    .flow_block:before,
    .flow_block:after {
        width: 24px;
        height: 3px;
        bottom: 0;
        right: 50%;
        border-radius: 24px;
    }    
    .flow_block .step {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    .flow_block .step span {
        font-size: 2.0rem;
    }
    .flow_block dl {
        width: calc(100% - 60px - 20px);
    }
    .flow_block dl dt {
        font-size: 1.8rem;
    }
    .flow_block_v_text:before {
        left: -25px;
    }
    .flow_block_v_text:after {
        left: -25px;
    }
}


/* faq_block
============================================================================================================ */
.faq_block dt,
.faq_block dd {
    position: relative;
    padding: 20px 20px 20px 65px;
}
.faq_block dt {
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1.5;
    color: #564336;
    background: #eef7df;
}
.faq_block dd {
    padding-right: 0;
}
.faq_block dt:before,
.faq_block dd:before {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    position: absolute;
    left: 25px;
    top: 10px;
}
.faq_block dt:before {
    content:"Q";
    color: #008e00;
}
.faq_block dd:before {
    content:"A";
    color: #e05a00;
}
.faq_block dd p + p {
    margin-top: 1em;
}
.faq_block + .faq_block {
    margin-top: 5%;
}
@media screen and (max-width: 768px) {
    .faq_block dt,
    .faq_block dd {
        padding: 10px 10px 10px 40px;
    }
    .faq_block dt {
        font-size: 1.7rem;
    }
    .faq_block dd {
        padding-right: 0;
    }
    .faq_block dt:before,
    .faq_block dd:before {
        font-size: 2.5rem;
        left: 10px;
        top: 5px;
    }
    .faq_block dd p + p {
        margin-top: 1em;
    }
    .faq_block + .faq_block {
        margin-top: 5%;
    }
}


/* campaign
============================================================================================================ */
.campaign_image {
    margin: 30px 0 80px;
    text-align: center;
}
.campaign_box + .campaign_box {
    margin-top: 3%;
}
.campaign_head {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    padding: 10px 20px;
}
.campaign_head h2 {
    font-size: 2.3rem;
    font-weight: bold;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: #fff;
    margin-right: 25px;
}
.campaign_head .campaign_catch {
    font-size: 1.7rem;
    color: #fff;
    margin-right: 25px;
    margin-top: 0.2em;
}
.campaign_head .free {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.02em;
    color: #dc2715;
    background: #fff;
    border-radius: 2.5em;
    padding: 0.1em 1em;
    margin-top: 0.1em;
}
.campaign_content {
    padding: 3%;
}
.campaign_content dl {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.campaign_content dl + dl {
    margin-top: 1.5em;
}
.campaign_content dt {
    font-size: 1.7rem;
    width: 5em;
    text-align: center;
    color: #fff;
    background: #5e5e5e;
    padding: 0.2em;
    border-radius: 4px;
}
.campaign_content dd {
    width: calc(100% - 5.32em); /* 1.7/1.6*5 */
    padding-left: 2em;
    color: #222222;
}
.campaign_content dd h2 {
    font-size: 120%;
}
.campaign_content dd h3 {
    font-size: 110%;
}
.campaign_common_condition {
    margin-top: 30px;
}
.campaign_common_condition > ol > li {
    text-indent: -1.2em;
    padding-left: 1.2em;
    margin: 0.2em 0;
}
.campaign_common_condition > ol ol {
    padding-left: 1.2em;
    margin: 0.2em 0 0.3em;
}
.campaign_common_condition > ol ol li {
    text-indent: 0;
}
.campaign_common_condition > ol ol li + li {
    margin-top: 0.15em;
}
/* color */
.campaign_box.yellow {
    border: 4px solid #f4a300;
    border-radius: 8px;
    background: #fffbf3;
}
.campaign_box.yellow .campaign_head {
    background: #f4a300;
}
.campaign_box.orange {
    border: 4px solid #eb6100;
    border-radius: 8px;
    background: #fff8f3;
}
.campaign_box.orange .campaign_head {
    background: #eb6100;
}
.campaign_box.yellow_green {
    border: 4px solid #7fba4c;
    border-radius: 8px;
    background: #f6f9f2;
}
.campaign_box.yellow_green .campaign_head {
    background: #7fba4c;
}
.campaign_box.green {
    border: 4px solid #00af95;
    border-radius: 8px;
    background: #f7fcfa;
}
.campaign_box.green .campaign_head {
    background: #00af95;
}
.campaign_box.light_blue {
    border: 4px solid #18b7cd;
    border-radius: 8px;
    background: #f7fbfc;
}
.campaign_box.light_blue .campaign_head {
    background: #18b7cd;
}
.campaign_box.blue {
    border: 4px solid #2d7eba;
    border-radius: 8px;
    background: #f5f8fc;
}
.campaign_box.blue .campaign_head {
    background: #2d7eba;
}
.campaign_box.pink {
    border: 4px solid #eb6d80;
    border-radius: 8px;
    background: #fffafa;
}
.campaign_box.pink .campaign_head {
    background: #eb6d80;
}
@media screen and (max-width: 768px) {
    .campaign_image {
        margin: 10px 0 40px;
    }
    .campaign_box + .campaign_box {
        margin-top: 8%;
    }
    .campaign_head {
        padding: 3px 10px 8px;
        display: block;
    }
    .campaign_head h2 {
        font-size: 1.7rem;
        margin-right: 20px;
    }
    .campaign_head .campaign_catch {
        font-size: 1.5rem;
        margin-right: 20px;
    }
    .campaign_head .free {
        font-size: 1.5rem;
        margin-top: 0.5em;
        padding: 0 1em;
    }
    .campaign_content dl {
        display: block;
    }
    .campaign_content dl + dl {
        margin-top: 1.5em;
    }
    .campaign_content dt {
        font-size: 1.4rem;
    }
    .campaign_content dd {
        width: 100%;
        font-size: 1.3rem;
        margin-top: 0.5em;
        padding-left: 0;
    }
    .campaign_common_condition > ol ol {
        font-size: 1.3rem;
    }
}

/* sitemap
============================================================================================================ */
.sitemap_list > li {
    margin-bottom: 1.2em;
    padding-bottom: 1.2em;
    border-bottom: 1px solid #ddd;
}
.sitemap_list > li > a,
.sitemap_list > li > span {
    display: inline-block;
    color: #564336;
    font-size: 1.6rem;
    text-decoration: none;
    padding-left: 20px;
    position: relative;
}
.sitemap_list > li > a:before,
.sitemap_list > li > span:before{
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url("../images/arrow_circle_y_green.svg") no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    top: 6px;
}
.sitemap_list > li > ul {
    margin-left: 1em;
    margin-top: 0.5em;
}
.sitemap_list > li > ul > li + li {
    margin-top: 0.3em;
}
.sitemap_list > li > ul > li > a {
    color: #564336;
    font-size: 1.5rem;
    text-decoration: none;
}
@media screen and (max-width: 768px) {
    .sitemap_list > li > a,
    .sitemap_list > li > span {
        font-size: 1.5rem;
    }
    .sitemap_list > li > ul > li > a {
        font-size: 1.4rem;
    }
}

/* contents_navi
============================================================================================================ */
.contents_navi {
    padding: 30px 0 10px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.contents_navi:before {
    content:"";
    display: inline-block;
    width: 100vw;
    height: 100%;
    background: #cbecf4;
    position: absolute;
    left: calc(-50vw + 50%);
    top: 0;
    z-index: -1;
}
.contents_navi ul {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.contents_navi ul li {
    margin: 0 1%;
    background: #fff;
    border-radius: 6px;
    -webkit-box-shadow: 2px 2px 3px rgba(99,99,99,0.2);
	-moz-box-shadow: 2px 2px 3px rgba(99,99,99,0.2);
	-ms-box-shadow: 2px 2px 3px rgba(99,99,99,0.2);
	box-shadow: 2px 2px 3px rgba(99,99,99,0.2);
}
.contents_navi ul li a {
    display: block;
    color: #6EA724;
    padding: 1em 2em;
    position: relative;
}
.contents_navi ul li a span {
    padding-left: 20px;
    position: relative;
}
.contents_navi ul li a span:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url(../images/arrow_circle_y_green.svg) no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* type3_table
============================================================================================================ */
.type3_table tr th:nth-child(1){
    padding: 0 0.3em;
}
.type3_table .btn.btn_s {
    min-width: 80%;
}
table.type3_table .w10 {
    width: 11%;
}
@media screen and (max-width: 768px) {
    table.basic.type3_table {
        font-size: 1.3rem;
    }
    table.basic.type3_table .btn.btn_s {
        min-width: 100%;
        font-size: 1.2rem;
        padding-left: 0.5em;
        border-radius: 4px;
    }
    table.basic.type3_table .btn.btn_s:after {
        width: 16px;
        height: 16px;
        right: 4px;
    }
    .type3_table tr th:nth-child(1){
        display: none;
    }
    .type3_table tr:nth-child(2) td:before,
    .type3_table tr:nth-child(3) td:before,
    .type3_table tr:nth-child(4) td:before,
    .type3_table tr:nth-child(5) td:before,
    .type3_table tr:nth-child(6) td:before,
    .type3_table tr:nth-child(7) td:before,
    .type3_table tr:nth-child(8) td:before,
    .type3_table tr:nth-child(9) td:before{
        display: block;
        padding: 0.2em 0.5em;
        color: #564336;
        background: #eff4e4;
        margin-bottom: 0.5em;
    }
    .type3_table tr:nth-child(2) td:before {
        content:"特徴";
    }
    .type3_table tr:nth-child(3) td:before {
        content:"申込み資格";
    }
    .type3_table tr:nth-child(4) td:before {
        content:"募集方法";
    }
    .type3_table tr:nth-child(5) td:before {
        content:"連帯保証人";
    }
    .type3_table tr:nth-child(6) td:before {
        content:"敷金";
    }
    .type3_table tr:nth-child(7) td:before {
        content:"月額家賃";
    }
    .type3_table tr:nth-child(8) td:before {
        content:"間取り／専有面積";
    }
    .type3_table tr:nth-child(9) td:before {
        content:"お問合せ先";
    }
}


/* link_navi
============================================================================================================ */
.link_navi {
    background: #F5F4E4;
    border-radius: 6px;
    padding: 3.5% 11%;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.link_navi > li {
    width: 48%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 2px 2px 3px 0px rgba(99, 99, 99, 0.2) ;
    -webkit-box-shadow: 2px 2px 3px 0px rgba(99, 99, 99, 0.2) ;
    -moz-box-shadow: 2px 2px 3px 0px rgba(99, 99, 99, 0.2) ;
    -o-box-shadow: 2px 2px 3px 0px rgba(99, 99, 99, 0.2) ;
    -ms-box-shadow: 2px 2px 3px 0px rgba(99, 99, 99, 0.2) ;
}
.link_navi > li + li {
    margin-top: 4%;
}
.link_navi > li:nth-child(1),
.link_navi > li:nth-child(2) {
    margin-top: 0;
}
.link_navi > li a {
    display: block;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: center;
    padding: 5%;
    color: #fff;
    background: #6EA724;
    border: 2px solid #6EA724;
    border-radius: 8px;
    height: 100%;
}
.link_navi > li a.current {
    pointer-events: none;
    color: #6EA724;
    background: #fff;
    border: 2px solid #6EA724;
}
.link_navi > li a > span {
    position: relative;
    padding-right: 30px;
}
.link_navi > li a > span:after {
    content:"";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../images/arrow_circle_white.svg") no-repeat;
    background-size: 100% auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 2px;
}
.link_navi > li a.current > span {
    padding-right: 0;
}
.link_navi > li a.current > span:after {
    content: none;
}
@media screen and (max-width: 768px) {
    .link_navi {
        padding: 7% 7%;
    }
    .link_navi > li {
        width: 100%;
    }
    .link_navi > li + li,
    .link_navi > li:nth-child(2) {
        margin-top: 5%;
    }
    .link_navi > li a {
        font-size: 1.5rem;
        padding: 4%;
        border-radius: 6px;
    }
    .link_navi > li a > span {
        padding-right: 24px;
    }
    .link_navi > li a > span:after {
        width: 16px;
        height: 16px;
        margin-top: 1px;
    }
}


/* accordion-in-area
============================================================================================================ */
.accordion-in-area {
    
}
.accordion-in-btn {
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-align: left;
    color: #fff;
    background: #846c5b;
    border-radius: 4px;
    padding: 0.5em 1em;
    margin-top: 1.25em;
    margin-bottom: 1em;
}
.accordion-in-contents {
    display: none;
}
.accordion-in-btn {
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.2s;
		-o-transition: all 0.2s;
		transition: all 0.2s;
}
.accordion-in-btn:after {
    content:"";
    display: inline-block;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.accordion-in-btn:before {
    content:"";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-top: 2px solid #564336;
    border-right: 2px solid #564336;
    transform: translateY(-50%) rotate(135deg);
    position: absolute;
    right: 23px;
    top: 50%;
    z-index: 2;
    margin-top: -1px;
}
.accordion-in-btn.open:before {
    transform: rotate(-45deg);
    margin-top: -2px;
}
.accordion-in-btn .display {
    font-size: 1.5rem;
    font-weight: normal;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}
/* color */
.accordion-in-btn_yokohama {
    background: #e06767;
}
.accordion-in-btn_yokohama:before {
    border-top: 2px solid #e06767;
    border-right: 2px solid #e06767;
}
.accordion-in-btn_kawasaki {
    background: #00a6cc;
}
.accordion-in-btn_kawasaki:before {
    border-top: 2px solid #00a6cc;
    border-right: 2px solid #00a6cc;
}
.accordion-in-btn_sagamihara {
    background: #00a5a4;
}
.accordion-in-btn_sagamihara:before {
    border-top: 2px solid #00a5a4;
    border-right: 2px solid #00a5a4;
}
.accordion-in-btn_shounan {
    background: #44a067;
}
.accordion-in-btn_shounan:before {
    border-top: 2px solid #44a067;
    border-right: 2px solid #44a067;
}
.accordion-in-btn_kenou {
    background: #cf855b;
}
.accordion-in-btn_kenou:before {
    border-top: 2px solid #cf855b;
    border-right: 2px solid #cf855b;
}
.accordion-in-btn_seisyou {
    background: #5679bc;
}
.accordion-in-btn_seisyou:before {
    border-top: 2px solid #5679bc;
    border-right: 2px solid #5679bc;
}


/* table_facility
============================================================================================================ */
.table_facility th {
    line-height: 1.2;
}
.table_facility tr td:nth-child(2),
.table_facility tr td:nth-child(3),
.table_facility tr td:nth-child(4),
.table_facility tr td:nth-child(5),
.table_facility tr td:nth-child(6),
.table_facility tr td:nth-child(7) {
    text-align: center;
}
.table_facility .col1 {
    width: 28%;
}
.table_facility .col2 {
    width: 11%;
}
.table_facility .col3 {
    width: 11%;
}
.table_facility .col4 {
    width: 11%;
}
.table_facility .col5 {
    width: 11%;
}
.table_facility .col6 {
    width: 11%;
}
.table_facility .col7 {
    width: 17%;
}
@media screen and (max-width: 768px) {
    .table_facility th {
        font-size: 1.3rem;
    }
}

/* tel_inline
============================================================================================================ */
.tel_inline {
    display: inline-block;
    font-size: 1.8rem;
    color: #564336;
    position: relative;
    padding-left: 1em;
}
.tel_inline:before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url("../images/icon_tel_green.svg") no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 1px;
}
@media screen and (max-width: 768px) {
    .tel_inline {
        font-size: 1.6rem;
    }
}