@charset "utf-8";


/* パン屑ナビ */
#bread-nav {
    font-size: 15px;
    margin-top: 70px;
}
.bread-nav__list > li {
    display:inline-block;
	margin-left: 10px;
}
.bread-nav__list > li:before {
    content: '>';
	margin-right: 10px;
}
.bread-nav__list > li:first-child {
    margin-left:0;
}
.bread-nav__list > li:first-child:before {
    display: none;
}
.bread-nav__list > li a {
    color: var(--base-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/*=============================

common

=============================*/

.page-title {
    padding-top: 70px;
    overflow: hidden;
}
.page-title .cmn-title:after {
	width: 35vw;
	border-bottom: 135px solid var(--main-color);
}
.page-title .cmn-title p {
	color: #fff;
}
.page-title-re .cmn-title:before {
	top: 14px;
}
.page-title-re .cmn-title h2 {
	font-size: 34px;
    font-family: var(--font-base);
    letter-spacing: 0.1em;
}
.page-title-re .cmn-title p {
    font-size: 20px;
    font-family: var(--font-en2);
    letter-spacing: 0;
}

.page-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 50px;
}

.page-box-title {
	font-size: 36px;
	text-align: center;
	position: relative;
    margin-bottom: 100px;
}
.page-box-title:after {
	content: '';
	width: 102px;
	height: 6px;
	background: var(--main-color);
	position: absolute;
	bottom: -20px;
	left: calc(50% - 51px);
}

.page-num-title {
    color: var(--main-color);
    display: flex;
    align-items: center;
	margin-bottom: 80px;
}
.page-num-title .num {
    font-size: 65px;
    font-family: var(--font-en2);
    letter-spacing: 0.1em;
    width: 90px;
}
.page-num-title .title {
    font-size: 36px;
    border-bottom: solid 1px;
    padding-bottom: 10px;
    width: calc(100% - 90px);
}

.page-catch {
    color: var(--main-color);
    font-size: 40px;
    font-weight: 100;
    font-family: var(--font-mincho);
    text-align: center;
    letter-spacing: 0.2em;
	margin-bottom: 50px;
}
.page-desc {
    font-size: 20px;
    text-align: center;
    line-height: 2.3;
	margin-bottom: 140px;
}

/* kv */
.page-kv {
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
	margin-top: 50px;
}
.page-kv p {
	color: #000;
    font-size: 70px;
    font-family: var(--font-mincho);
    writing-mode: vertical-rl;
    line-height: 1.2;
    position: absolute;
    top: 50px;
    right: 50px;
}

/* page-movie */
.page-movie {
	position: relative;
}
.page-movie video {
	display: block;
	width: 100%;
}
.movie-play-btn {
	width: 78px;
	height: 78px;
	background-image: url("../img/cmn/icon_play_mute.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.movie-play-btn.on {
	background-image: url("../img/cmn/icon_play.png");
}

/* page-box */
.page-box {
    margin-bottom: 80px;
}


/* table */
.page-table {
    border-collapse: collapse;
    width: 100%;
    border-top: solid 1px #666666;
    line-height: 2;
}
.page-table th {
    font-weight: 500;
    width: 30%;
    text-align: left;
    padding: 40px 0;
    vertical-align: top;
    border-bottom: solid 1px #666666;
}
.page-table td {
    padding: 40px 0;
    border-bottom: solid 1px #666666;
}



/* link */
.page-link__list {
	display: flex;
	flex-wrap: wrap;
}
.page-link__list >li {
    width: 45%;
    margin: 0 0 80px 10%;
}
.page-link__list >li:nth-child(2n+1) {
    margin-left: 0;
}
.page-link__list >li a {
	color: var(--base-color);
	display: block;
}
.page-link-thumb {
	text-align: center;
	margin-bottom: 20px;
	overflow: hidden;
}
.page-link-thumb img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.page-link-title-ja {
	font-size: 25px;
	line-height: 1.4;
}
.page-link-title-en {
	font-size: 15px;
	font-family: var(--font-en2);
	color: var(--main-color);
}
.page-link-title {
	padding-right: 100px;
    position: relative;
}
.page-link__list >li a:hover .page-link-thumb img {
	transform: scale(1.2);
}

.page-link-arrow {
	width: 80px;
	height: 60px;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}
.page-link-arrow .arrow-before,
.page-link-arrow .arrow-after {
    position: absolute;
	top:0;
    transition: 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.page-link-arrow .arrow-before {
	right: 0;
}
.page-link-arrow .arrow-after {
	right: 150px;
}
.has-page-link-arrow a:hover .page-link-arrow .arrow-before {
	right:-150px;
}
.has-page-link-arrow a:hover .page-link-arrow .arrow-after {
	right: 0;
}



.page-link__list.list-3 >li {
    width: 31%;
    margin: 0 0 80px 3.5%;
}
.page-link__list.list-3 >li:nth-child(2n+1) {
    margin: 0 0 80px 3.5%;
}
.page-link__list.list-3 >li:nth-child(3n+1) {
    margin-left: 0;
}

.page-link__list.center {
	justify-content: center;
}



/* page-text list */
.page-text h3 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 30px;
}
.page-text__list.-ver2 h3 {
    color: var(--main-color);
    font-size: 30px;
}
.page-text h4 {
	font-size: 18px;
	font-weight: 400;
}
.page-text p {
	line-height: 2;
}
.page-text p + p {
	margin-top: 30px;
}
.page-text__list {
	margin-top: 50px;
}
.page-text__list >li {
	margin-bottom: 50px;
}
.page-text__list ul >li {
    margin-top: 30px;
}


/* navi */
.page-nav {
	margin: 60px auto;
}
.page-nav__list {
	display: flex;
	justify-content: space-between;
}
.page-nav__list >li {
	width: 32%;
}
.page-nav__list >li a {
    color: var(--main-color);
    display: block;
    font-size: 21px;
    width: 100%;
    border: solid 1px;
    position: relative;
	text-align: center;
    padding: 20px;
   -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.page-nav__list >li a i.arrow-anime {
	position: absolute;
	right: 20px;
}
.page-nav__list >li a:hover {
    color: #fff;
    background: var(--main-color);
}


/* bnr */
.page-bnr01 {
	text-align: center;
	padding: 100px 20px 40px;
	background-repeat: no-repeat;
	background-position:  center;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.page-bnr01:before,
.page-bnr01:after {
    content: '';
    width: 25%;
	max-width: 300px;
    height: 100%;
    background: var(--main-color);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    position: absolute;
    top: 0;
}
.page-bnr01:before {
    left: 0;
	transform: rotate(-180deg);
}
.page-bnr01:after {
    right: 0;
}
.page-bnr01-title {
	color: #fff;
	font-size: 36px;
	font-family: var(--font-mincho);
    white-space: nowrap;
}
.page-bnr01-catch {
	color: #fff;
	font-size: 80px;
	font-family: var(--font-mincho);
    white-space: nowrap;
}




@media (max-width: 815px) {

	#bread-nav {
		font-size: 12px;
		margin-top: 20px;
	}
	.sp-bread-nav {
		font-size: 15px;
		padding: 20px 0;
		background: var(--sub-color2);
	}

	.page-title {
		padding-top: 45px;
	}
	.page-title .cmn-title:before {
		top: 14px;
	}
	.page-title-re .cmn-title:before {
		top: 8px;
	}
	.page-title .cmn-title:after {
		border-bottom: 70px solid var(--main-color);
	}
	.page-title-re .cmn-title h2 {
		font-size: 23px;
	}
	.page-title-re .cmn-title p {
		font-size: 11px;
        line-height: 1.2;
	}

	.page-subtitle {
		font-size: 15px;
	}
	.page-box-title {
		margin-bottom: 70px;
	}
	.page-box-title {
		font-size: 23px;
	}
	.page-box-title:after {
		width: 72px;
		height: 4px;
		left: calc(50% - 36px);
	}

	.page-num-title {
		margin-bottom: 40px;
	}
	.page-num-title .num {
		font-size: 38px;
		width: 55px;
	}
	.page-num-title .title {
		font-size: 22px;
		padding-bottom: 5px;
		width: calc(100% - 55px);
	}
	
	.page-catch {
		font-size: 22px;
	}
	.page-desc {
		font-size: 15px;
		text-align: left;
		margin-bottom: 50px;
	}
	
	.page-kv {
		height: 160px;
	}
	.page-kv p {
		font-size: 35px;
		top: 20px;
		right: 20px;
	}
	
	.movie-play-btn {
		width: 36px;
		height: 36px;
	}

	.page-box {
		margin-bottom: 50px;
	}

	.page-table th {
		padding: 20px 0;
	}
	.page-table td {
		padding: 20px 0;
	}

	.page-text__list {
		margin-top: 30px;
	}
	.page-text__list.-ver2 h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.page-text__list >li {
		margin-bottom: 30px;
	}
	
	.page-nav {
		margin: 40px auto;
	}
	.page-nav__list {
		display: block;
	}
	.page-nav__list >li {
		width: 100%;
		margin-bottom: 20px;
	}

	.page-bnr01 {
		padding: 90px 0 30px;
	}
	.page-bnr01:after {
		top: auto;
		bottom: 0;
	}
	.page-bnr01:before,
	.page-bnr01:after {
		width: 70px;
		height: 70px;
	}
	.page-bnr01-title {
		font-size: 20px;
	}
	.page-bnr01-catch {
		font-size: 32px;
	}
	.page-bnr01 .cmn-btn {
		margin-top: 20px;
	}

}

@media (max-width: 480px) {

	.page-link__list {
		display: block;
		flex-wrap: wrap;
	}
	.page-link__list >li,
	.page-link__list.list-3 >li,
	.page-link__list.list-3 >li:nth-child(2n+1) {
		width: 100%;
		margin: 0 0 50px;
	}
	.page-link-title {
		padding-right: 80px;
	}
	.page-link-title:after {
		width:  66px;
		height: 53px;
	}
	.page-link-title-ja {
		font-size: 22px;
	}
	.page-link-title-en {
		font-size: 12px;
	}

	.page-text h3,
	.page-text h4 {
		font-size: 13px;
	}

}

/* ----------------

company

----------------- */
.company-access-map {
    margin-top: 100px;
}
.company-access-method {
    margin-top: 130px;
}
.company-access-method__list {
    display: flex;
    justify-content: center;
}
.company-access-method__list >li {
    text-align: center;
    width: 45%;
}
.company-access-method__list >li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 330px;
    height: 330px;
    background: var(--main-color);
    border-radius: 1000px;
    margin: 0 auto 30px;
}
.company-access-method__list >li h3 {
    font-size: 25px;
    margin-bottom: 30px;
}
.company-access-method__list >li p {
    font-size: 20px;
}


@media (max-width: 815px) {

	.company-access-map {
		margin-top: 60px;
	}

}
@media (max-width: 480px) {

	.company-access-method {
		margin-top: 80px;
	}
	.company-access-method__list {
		display: block;
	}
	.company-access-method__list >li {
		width: 100%;
		margin-bottom: 60px;
	}
	.company-access-method__list >li .icon {
		width: 280px;
		height: 280px;
	}
	.company-access-method__list >li .icon img {
		width: 140px;
	}
	.company-access-method__list >li h3 {
		font-size: 23px;
	}
	.company-access-method__list >li p {
		font-size: 15px;
	}

}

/* ----------------
profile
----------------- */
.company-movie {
	margin-top: 100px;
}
.company-movie p {
    color: var(--main-color);
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 815px) {

	.page-title-profile .cmn-title-line {
		width: calc(100% - 14em);
	}
	.company-movie {
		margin-top: 50px;
	}
	.company-movie p {
		font-size: 24px;
	}
}

/* ----------------
message
----------------- */
.message-title {
    font-size: 35px;
	font-family: var(--font-mincho);
	font-weight: 100;
    text-align: center;
	margin-bottom: 70px;
}
.message-text {
	font-size: 21px;
	margin-bottom: 40px;
}
.message-name {
    display: flex;
    justify-content: right;
    font-family: var(--font-mincho);
}
.message-name-s {
    line-height: 1;
    font-size: 15px;
}
.message-name-l {
    font-size: 22px;
    line-height: 1;
    margin-top: 10px;
}

@media (max-width: 815px) {

	.page-title-message .cmn-title-line {
        width: calc(100% - 16em);
    }
	.message-title {
		font-size: 18px;
		margin-bottom: 40px;
	}
	.message-text {
		font-size: 15px;
		margin-bottom: 20px;
	}
	.message-name-s {
		font-size: 13px;
	}
	.message-name-l {
		font-size: 18px;
	}
}




/* ----------------

***

----------------- */


@media (max-width: 815px) {



}



/* ----------------
real-estate
----------------- */
.page-title-real-estate .cmn-title-line {
	width: calc(100% - 26em);
}
.real-estate-link-title {
    color: #fff;
    width: 410px;
    padding: 10px 0;
    margin: 0 auto 50px;
    text-align: center;
    background: var(--main-color);
}
.real-estate-link-title h3 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.2em;
}
.real-estate-link-title h4 {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-en2);
}
.real-estate-link-desc {
    text-align: center;
    line-height: 2.4;
    margin-bottom: 60px;
}




@media (max-width: 815px) {

	.page-title-real-estate .cmn-title-line {
		width: calc(100% - 19em);
	}
	.real-estate-link-title {
		width: 280px;
		margin-bottom: 40px;
	}
	.real-estate-link-title h3 {
		font-size: 20px;
	}
	.real-estate-link-title h4 {
		font-size: 11px;
	}
	.real-estate-link-desc {
		text-align: left;
	}

	.real-estate-bnr {
		padding: 60px 0 30px;
	}
}

/* ----------------
property-information
----------------- */
.page-title-property-information .cmn-title-line {
	width: calc(100% - 28em);
}
.property-information-kv {
	color: #fff;
	font-family: var(--font-mincho);
	background: url("../img/pages//property-information_kv.webp") no-repeat center;
	background-size: cover;
	margin-bottom: 60px;
}
.property-information-kv .inner {
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	padding: 40px 20px;
}
.property-information-kv .t1 {
    font-size: 77px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.property-information-kv .t2 {
	font-weight: 100;
	margin-bottom: 30px;
    letter-spacing: 1px;
 }
.property-information-kv .t3 {
	font-size: 45px;
}

.property-information-contents {
	background: #EBEBEB;
	padding: 90px 0;
}
.property-information-nav {
	
}
.property-information-nav__list {
	display: flex;
	flex-wrap: wrap;
}
.property-information-nav__list >li {
	background: #fff;
	font-size: 25px;
	font-weight: 500;
	cursor: pointer;
	color: #EBEBEB;
	padding: 10px 0;
	text-align: center;
	width: 23%;
	margin: 0 0 20px 2.666666%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.property-information-nav__list >li:nth-child(4n+1) {
	margin-left: 0;
}
.property-information-nav__list >li.has-item {
	color: var(--base-color);
}
.property-information-nav__list >li.active {
	color: #fff;
	background: var(--base-color);
}

.property-information-item {
	padding: 60px;
	margin-top: 80px;
	position: relative;
	background: #fff;
}
.property-information-item-icon {
	display: flex;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
.property-information-item-icon .icon01 {
	padding: 15px 20px;
	background: var(--main-color);
	min-width: 200px;
}
.property-information-item-icon .icon02 {
	padding: 15px 20px;
	background: var(--base-color);
}
.property-information-item h4 span,
.property-information-item h4 a {
	font-size: 30px;
	font-weight: 500;
	color: var(--base-color);
	border-bottom: solid 1px;
}
.property-information-item-desc {
    margin-top: 30px;
}
.property-information-item-in {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.property-information-item-main {
	display: flex;
	flex-wrap: wrap;
	width: 48%;
	padding-top: 20px;
}
.property-information-item-main-top {
	margin-bottom: auto;
}
.property-information-item-main-btm {
	margin-top: 30px;
}
.property-information-item-main-btm table {
    width: 100%;
    border-collapse: collapse;
    border-top: solid 1px;
	margin-bottom: 10px;
}
.property-information-item-main-btm table th {
    width: 140px;
    background: #F1F1F1;
    padding: 10px 0;
    border-bottom: solid 1px;
}
.property-information-item-main-btm table td {
    padding: 10px;
    border-bottom: solid 1px;
}

.property-information-item-sub {
	width: 48%;
}
.property-information-item-sub .to-home {
	margin-top: 15px;
}
.property-information-item-sub .thumb {
	position: relative;
}
.property-information-new {
    font-weight: 100;
    font-size: 36px;
    font-family: var(--font-en2);
    width: 108px;
    height: 108px;
    line-height: 108px;
    border-radius: 1000px;
    text-align: center;
    color: #fff;
    background: var(--sub-color1);
    position: absolute;
    right: -40px;
    top: -40px;
}

#property-information-map {
	padding: 0;
}
.property-information-map-in {
	padding: 80px 0;
	background: var(--main-color);
}

#property-information-gallery .swiper-container {
	overflow: visible;
}
#property-information-gallery .swiper-slide a {
	display: block;
	background: #EBEBEB;
}
#property-information-gallery .swiper-slide .img {
	overflow: hidden;
}
#property-information-gallery .swiper-slide .img img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#property-information-gallery .swiper-slide:hover .img img {
	transform: scale(1.1);
}
#property-information-gallery .swiper-slide p {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    font-size: 21px;
    font-weight: 500;
    color: var(--base-color);
    line-height: 1.2;
    min-height: 4em;
	position: relative;
}
#property-information-gallery .swiper-slide i.arrow-anime {
	color: #707070;
	right: 10px;
}
#property-information-gallery .swiper-button-next,
#property-information-gallery .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: var(--main-color);
    border-radius: 1000px;
}
#property-information-gallery .swiper-button-next {
	right: -80px;
}
#property-information-gallery .swiper-button-prev {
	left: -80px;
}
#property-information-gallery .swiper-button-next:after,
#property-information-gallery .swiper-button-prev:after {
	color: #fff;
    font-size: 21px;
}


.property-information-member__list >li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}
.property-information-member__list >li .img {
    width: 50%;
}
.property-information-member__list >li .info {
    width: 45%;
}
.property-information-member__list .info .title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	color: var(--main-color);
}
.property-information-member__list .info .title .num {
	font-size: 42px;
    font-weight: 600;
	width: 78px;
	height: 78px;
	line-height: 78px;
	text-align: center;
	background: #CCDBF0;
	border-radius: 1000px;
}
.property-information-member__list .info .title h4 {
	width: calc(100% - 90px);
	font-size: 30px;
}

.property-information-member__list >li:nth-child(even) {
	flex-direction: row-reverse;
}

.property-information-bnr2 {
	padding: 100px 20px 70px;
}


@media (max-width: 815px) {

	.page-title-property-information .cmn-title-line {
		width: calc(100% - 22em);
	}
	.property-information-bnr1 {
		padding: 60px 0 30px;
	}
	.property-information-kv .t1 {
		font-size: 32px;
	}
	.property-information-kv .t2 {
		margin-bottom: 20px;
	}
	.property-information-kv .t3 {
		font-size: 22px;
	}
	.property-information-contents {
		padding: 40px 0;
	}
	.property-information-nav__list >li {
		font-size: 16px;
		width: 48%;
		margin: 0 0 20px 4%;
	}
	.property-information-nav__list >li:nth-child(2n+1) {
		margin-left: 0;
	}

	.property-information-item {
		padding: 60px 20px;
		margin-top: 40px;
	}
	.property-information-item-icon {
		font-size: 15px;
	}
	.property-information-item-icon .icon01 {
		min-width: 140px;
	}
	.property-information-item h4 span,
	.property-information-item h4 a {
		font-size: 22px;
	}
	.property-information-item-in {
		display: block;
	}
	.property-information-item-sub {
		width: 100%;
		text-align: center;
	}
	.property-information-new {
		font-size: 20px;
		width: 58px;
		height: 58px;
		line-height: 58px;
		right: -20px;
		top: -20px;
	}
	.property-information-item-sub h4 {
		text-align: left;
		margin-bottom: 30px;
	}
	.property-information-item-main {
		display: block;
		width: 100%;
	}
	
	#property-information-gallery .swiper-slide {
		padding: 0 30px;
	}
	#property-information-gallery .swiper-slide p {
		padding: 15px 30px;
		font-size: 18px;
        min-height: 100%;
	}
	#property-information-gallery .swiper-slide i.arrow-anime {
		top: calc(50% - 11px);
		height: 22px;
	}
	#property-information-gallery .swiper-button-prev {
		left: 0;
	}
	#property-information-gallery .swiper-button-next {
		right: 0;
	}

	.property-information-member__list >li {
		display: block;
		margin-bottom: 40px;
	}
	.property-information-member__list >li .img {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.property-information-member__list >li .info {
		width: 100%;
	}
	.property-information-member__list .info .title .num {
		font-size: 31px;
		width: 54px;
		height: 54px;
		line-height: 54px;
	}
	.property-information-member__list .info .title h4 {
		width: calc(100% - 65px);
		font-size: 20px;
	}

	.property-information-bnr2 {
		padding: 60px 0 50px;
	}
}




/* ----------------
quality-control
----------------- */
.quality-control-box h5 {
    color: var(--main-color);
    font-size: 28px;
    margin-bottom: 30px;
}
.q-c-sub {
    color: var(--main-color);
    font-weight: 500;
}
.quality-control-box .img {
	margin-bottom: 80px;
}
.q-c-merit {
	margin-top: 60px;
}
.q-c__list >li {
	font-size: 20px;
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
}
.q-c__list >li:before {
	content: '・';
	position: absolute;
	left: 0;
	top: 0;
}

.q-c-process__list {
    position: relative;
    padding: 50px 0;
	margin-top: 50px;
}
.q-c-process__list:before {
    content: '';
    width: 1px;
    height: 100%;
    background: var(--main-color);
    position: absolute;
    top: 0;
    left: 50%;
}
.q-c-process__list:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 38px solid var(--main-color);
    border-bottom: 0;
    position: absolute;
    bottom: -1px;
    left: calc(50% - 19px);
}
.q-c-process__list >li {
    padding-right: 55%;
    margin-bottom: 50px;
	position: relative;
}
.q-c-process__list >li:before {
    content: '';
    width: 27px;
    height: 27px;
    background: var(--main-color);
    border-radius: 1000px;
    position: absolute;
    top: 7px;
    left: calc(50% - 13.5px);
}
.q-c-process__list >li:after {
    content: '';
    width: 50%;
    height: 1px;
    border-bottom: dotted 2px var(--main-color);
    position: absolute;
    top: 20px;
    left: 0;
}
.q-c-process__list h6 {
	font-size: 28px;
	color: var(--main-color);
	margin-bottom: 20px;
}
.q-c-process__list h6 span {
	background: #fff;
	padding-right: 10px;
	position: relative;
	z-index: 1;
}
.q-c-process__list h6 span span {
    padding: 0;
    font-size: 80%;
}
.q-c-process__list >li:nth-child(even) {
    padding-right: 0;
    padding-left: 55%;
}
.q-c-process__list >li:nth-child(even):after {
    left: 50%;
}
.q-c-process__list >li:nth-child(even) h6 {
	text-align: right;
}
.q-c-process__list >li:nth-child(even) h6 span {
	padding-right: 0;
	padding-left: 10px;
}

.quality-control-box01 {
    text-align: center;
	margin-bottom:80px;
}
.quality-control-box01 .list-wrap {
	position: relative;
}
.quality-control-box01 ul {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    margin-bottom: 30px;
}
.quality-control-box01 ul >li {
    width: 30%;
    height: 0;
    padding-top: calc(30% - 30px);
    background: #F7F7F7;
    position: relative;
    border: solid 15px var(--main-color);
    border-radius: 10000px;
}
.quality-control-box01 ul >li p {
    color: var(--main-color);
    font-size: 38px;
    font-weight: 600;
	width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.quality-control-box01 ul >li p span {
	display: inline-block;
    border-bottom: solid 5px;
    line-height: 1.3;
}
.quality-control-box01 .list-wrap .list-wrap-fig {
    width: 25%;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: 20%;
}
.quality-control-box01 .list-wrap .list-wrap-fig.-right {
	left: auto;
    right: 20%;
}
.quality-control-box01 .list-wrap .list-wrap-fig:before,
.quality-control-box01 .list-wrap .list-wrap-fig:after {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--main-color);
    position: absolute;
    top: 25px;
    left: calc(50% - 25px);
}
.quality-control-box01 .list-wrap .list-wrap-fig:before {
    transform: rotate(45deg);
}
.quality-control-box01 .list-wrap .list-wrap-fig:after {
    transform: rotate(-45deg);
}

.quality-control-box02 {
	text-align: center;
	margin: 100px 0;
}
.quality-control-box02 .title {
	color: #fff;
	display: inline-block;
	width: 100%;
	max-width: 414px;
	font-size: 28px;
	font-weight: 500;
	padding: 10px;
	margin-bottom: 50px;
	background: var(--main-color);
}
.quality-control-box02 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.quality-control-box02 ul >li {
	width: 18%;
	height: 0;
	padding-top: 18%;
	position: relative;
	border-radius: 1000px;
	background: #CCDBF0;
}
.quality-control-box02 ul >li p {
	color: var(--main-color);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.quality-control-box02 ul >li p span {
	font-size: 20px;
	font-weight: 400;
}

#quality-control04 .img {
	text-align: center;
	margin: 80px 0 120px;
}
#quality-control06 .quality-control-box h5 {
	text-align: left;
}
#quality-control07 p b {
	font-size: 25px;
	font-weight: 500;
	border-bottom: solid 1px;
}


@media (max-width: 815px) {
	
	.page-title-quality-control .cmn-title-line {
		width: calc(100% - 15em);
	}

	.quality-control-box h5 {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.quality-control-box .img {
		margin-bottom: 40px;
	}

	.q-c__list >li {
		font-size: 15px;
		padding-left: 15px;
	}

	.q-c-process__list {
		padding: 20px 0;
		margin-top: 30px;
	}
	.q-c-process__list:before {
		left: 14px;
	}
	.q-c-process__list:after {
		left: -5px;
	}
	.q-c-process__list >li,
	.q-c-process__list >li:nth-child(even) {
		padding-right: 0;
		padding-left: 40px;
	}
	.q-c-process__list >li:before {
		left: 0;
		top: 0;
	}
	.q-c-process__list >li:after,
	.q-c-process__list >li:nth-child(even):after {
		width: 100%;
		left: 0;
		top: 13px;
	}
	.q-c-process__list h6 {
		text-align: right;
		font-size: 20px;
	}
	.q-c-process__list h6 span {
		padding-left: 10px;
		padding-right: 0;
	}

	.quality-control-box01 {
		margin-bottom: 50px;
		text-align: left;
	}
	.quality-control-box01 ul {
		margin-top: 40px;
	}
	.quality-control-box01 ul >li {
		text-align: center;
		padding-top: calc(30% - 10px);
		border: solid 5px var(--main-color);
	}
	.quality-control-box01 ul >li p {
		font-size: 18px;
	}
	.quality-control-box01 ul >li p.sp-size {
		font-size: 11px;
	}
	.quality-control-box01 ul >li p span {
		border-bottom: solid 3px;
	}
	.quality-control-box01 .list-wrap .list-wrap-fig:before,
	.quality-control-box01 .list-wrap .list-wrap-fig:after {
		width: 16px;
		left: calc(50% - 8px);
	}

	.quality-control-box02 {
		margin: 50px 0;
	}
	.quality-control-box02 .title {
		max-width: 290px;
		font-size: 20px;
		margin-bottom: 40px;
	}
	.quality-control-box02 ul {
		justify-content: center;
	}
	.quality-control-box02 ul >li {
		width: 31%;
		padding-top: 31%;
		margin: 0 0 3.5% 3.5%;
	}
	.quality-control-box02 ul >li:nth-child(3n+1) {
		margin-left: 0;
	}
	.quality-control-box02 ul >li p {
		font-size: 14px;
	}
	.quality-control-box02 ul >li p span {
		font-size: 11px;
		white-space: nowrap;
	}

	#quality-control04 .img {
		margin: 40px 0 60px;
	}
	#quality-control07 p b {
		font-size: 20px;
	}

}



/* ----------------
mansion-gallery
----------------- */
.page-title-mansion-gallery .cmn-title-line {
    width: calc(100% - 26em);
}

.mansion-gallery-box:not(:last-of-type) {
    margin-bottom: 50px;
}
.mansion-gallery-box h4 {
    font-size: 25px;
    font-weight: 500;
    background: #EBEBEB;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 80px;
}
.mansion-gallery-box-in {
    display: flex;
    justify-content: space-between;
}
.mansion-gallery-img {
	width: 50%;
}
.mansion-gallery-img .swiper-container {
    padding-bottom: 20px;
}
.mansion-gallery-img .swiper-pagination {
	text-align: left;
    bottom: 0;
}
.mansion-gallery-img .swiper-pagination-bullet {
    width: 11%;
    height: 3px;
    border-radius: 0;
    background: #D9D9D9;
    opacity: 1;
	margin-left: 1%;
}
.mansion-gallery-img .swiper-pagination-bullet:first-child {
	margin-left: 0;
}
.mansion-gallery-img .swiper-pagination-bullet-active {
    background: var(--main-color);
}
.mansion-gallery-info {
	display: flex;
	flex-wrap: wrap;
	width: 45%;
    padding-bottom: 20px;
}
.mansion-gallery-info-top {
	width: 100%;
	margin-bottom: auto;
}
.mansion-gallery-info-top h5 {
	font-size: 24px;
	color: var(--main-color);
	margin-bottom: 15px;
	line-height: 1.8;
}
.mansion-gallery-info-top p {
}
.mansion-gallery-info-btm {
	width: 100%;
	margin-top: auto;
}
.mansion-gallery-box:nth-of-type(odd) .mansion-gallery-box-in {
    flex-direction: row-reverse;
}


.sales-achievements-box {
    margin-bottom: 140px;
}
.sales-achievements-box h4 {
	color: var(--main-color);
	font-size: 33px;
	text-align: center;
    margin-bottom: 80px;
}
.sales-achievements-box h4 span {
	display: inline-block;
	border-bottom: solid 1px;
}
.sales-achievements-box table {
	font-size: 15px;
	border-collapse: collapse;
	width: 100%;
	border-top: solid 1px;
	border-left: solid 1px;
}
.sales-achievements-box table th {
	color: #fff;
	font-weight: 400;
	text-align: left;
	border-right: solid 1px var(--base-color);
	border-bottom: solid 1px var(--base-color);
	padding: 10px;
	background: var(--main-color);
}
.sales-achievements-box table td {
	border-right: solid 1px;
	border-bottom: solid 1px;
	padding: 10px;
}
.sales-achievements-box table th.th04,
.sales-achievements-box table th.th05,
.sales-achievements-box table td.td04,
.sales-achievements-box table td.td05 {
    text-align: center;
}
.sales-achievements-box table th.th01 {
    width: 18%;
}
.sales-achievements-box table th.th02 {
    width: 30%;
}
.sales-achievements-box table th.th03 {
    width: 30%;
}
.sales-achievements-box table th.th04 {
    width: 8%;
}

@media (max-width: 815px) {

	.page-title-mansion-gallery .cmn-title-line {
		width: calc(100% - 18em);
	}
	.mansion-gallery-box h4 {
		font-size: 22px;
		margin-bottom: 40px;
	}
	.mansion-gallery-box-in {
		display: block;
	}
	.mansion-gallery-img {
		width: 100%;
		margin-bottom: 30px;
	}
	.mansion-gallery-img .swiper-pagination-bullet {
		width: 30px;
	}
	.mansion-gallery-info {
		display: block;
		width: 100%;
		padding-bottom: 0;
	}
	.mansion-gallery-info-top h5 {
		font-size: 22px;
	}
	.mansion-gallery-info-btm {
		margin-top: 30px;
	}

	.sales-achievements-box h4 {
		font-size: 22px;
		margin-bottom: 50px;
	}
	.sales-achievements-box table {
		font-size: 10px;
	}
	.sales-achievements-box table th,
	.sales-achievements-box table td {
		padding: 5px;
	}

}



/* ----------------
assetsolution
----------------- */

.assetsolution-kv p {
    color: #fff;
	right: auto;
	left: 50px;
}

.assetsolution-box:not(:last-of-type) {
    margin-bottom: 50px;
}
.assetsolution-box h4 {
    font-size: 25px;
    font-weight: 500;
    background: #EBEBEB;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 30px;
}
.assetsolution-desc {
    color: var(--main-color);
    font-size: 23px;
    text-align: center;
    margin: 0 1em 30px;
    line-height: 1.6;
}
.assetsolution-box-in {
    display: flex;
    justify-content: space-between;
}
.assetsolution-img {
	width: 40%;
}
.assetsolution-info {
	width: 55%;
}
.assetsolution-info h5 {
	display: inline-block;
    color: #fff;
    padding: 10px 20px;
    font-size: 22px;
    line-height: 1;
    background: var(--main-color);
    margin-bottom: 10px;
}
.assetsolution-info p {
	margin-bottom: 20px;
}
.assetsolution-floor__list >li {
	display: flex;
	justify-content: space-between;
    margin-bottom: 5px;
}
.assetsolution-floor__list >li .floor {
	font-weight: 500;
	width: 100px;
}
.assetsolution-floor__list >li .floor-info {
	width: calc(100% - 110px);
}
.assetsolution-floor__list + h5 {
	margin-top: 20px;
}
.address-link {
	margin-top: 10px;
}
.address-link a {
	font-weight: 500;
	color: var(--base-color);
	border-bottom: solid 1px;
}
.assetsolution-info .to-home {
	margin-top: 20px;
	text-align: right;
}
.assetsolution-info .to-home a,
.assetsolution-info .to-home .link-off {
	max-width: 420px;
	text-align: center;
}

.assetsolution-box-sub {
	margin-top: 80px;
}
.assetsolution-box-sub .img {
	text-align: center;
	margin-bottom: 50px;
}

	
@media (max-width: 815px) {
	
	.page-title-assetsolution .cmn-title h2 {
		font-size: 20px;
	}

	.assetsolution-box h4 {
		font-size: 22px;
	}
	.assetsolution-desc {
		font-size: 18px;
		text-align: left;
		margin: 0 0 30px;
	}
	.assetsolution-box-in {
		display: block;
	}
	.assetsolution-img {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.assetsolution-info {
		width: 100%;
	}
	.assetsolution-info h5 {
		font-size: 18px;
	}
	.assetsolution-floor__list >li .floor {
		font-weight: 500;
		width: 80px;
	}
	.assetsolution-floor__list >li .floor-info {
		width: calc(100% - 90px);
	}
	.assetsolution-info .to-home {
		text-align: center;
	}

}



/* ----------------
affiliated-corporation
----------------- */
.affiliated-corporation-wrap {
	display: flex;
	justify-content: space-between;
}
.affiliated-corporation__list {
	width: 48%;
}
.affiliated-corporation__list >li {
	margin-bottom: 20px;
	font-size: 21px;
}
.affiliated-corporation__list >li a {
	color: var(--base-color);
	border-bottom: solid 1px;
   -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.affiliated-corporation__list >li a:hover {
	color: var(--main-color);
}

@media (max-width: 480px) {

	.affiliated-corporation-wrap {
		display: block;
	}
	.affiliated-corporation__list {
		width: 100%;
	}
	.affiliated-corporation__list >li {
		font-size: 15px;
	}

}



/* ----------------
customer-harassment
----------------- */
.page-title-customer-harassment .cmn-title-line {
    width: calc(100% - 44em);
}

@media (max-width: 815px) {

	.page-title-customer-harassment .cmn-title h2 {
        font-size: 17px;
    }
    .page-title-customer-harassment .cmn-title-line {
        width: calc(100% - 16em);
    }

}



/* ----------------
social
----------------- */
.page-title-social .cmn-title-line {
    width: calc(100% - 45em);
}

@media (max-width: 815px) {

	.page-title-social .cmn-title h2 {
        font-size: 21px;
    }
	.page-title-social .cmn-title-line {
		width: calc(100% - 16em);
	}

}


/* ----------------
webmovie
----------------- */
.webmovie-nav {
	margin-bottom: 100px;
}
.webmovie-nav .to-home {
	margin-top: 0;
}

.webmovie-page {
	display: none;
}
.webmovie__list {
    display: flex;
    flex-wrap: wrap;
}
.webmovie__list >li {
    width: 48%;
    margin: 0 0 4% 4%;
	text-align: center;
}
.webmovie__list >li:nth-child(2n+1) {
    margin-left: 0;
}
.webmovie__list >li .thumb {
	position: relative;
}
.webmovie__list >li .thumb:after {
	content: '';
	width: 100px;
	height: 100px;
	background: url("../img/cmn/icon_yt_play.webp") no-repeat center;
	background-size: contain;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.webmovie__list >li .to-home {
    margin-top: 20px;
}
.webmovie__list >li .to-home a {
    max-width: 100%;
}
.webmovie-title {
    color: var(--main-color);
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
	line-height: 1.4;
}



@media (max-width: 815px) {

	.webmovie__list {
		display: block;
		flex-wrap: wrap;
	}
	.webmovie__list >li {
		width: 100%;
		margin: 0 0 30px;
	}
	.webmovie__list >li .thumb:after {
		width: 64px;
		height: 64px;
	}
	.webmovie-title {
		font-size: 20px;
	}

}




/* ----------------
brokerage
----------------- */
.brokerage-kv p {
	right: auto;
	left: 50px;
}

.brokerage-intro {
    text-align: center;
}
.brokerage-intro h3 {
    font-size: 30px;
    color: var(--main-color);
    margin-bottom: 60px;
    letter-spacing: 0.02em;
}
.brokerage-intro h3 span {
    font-size: 150%;
}
.brokerage-intro p {
	margin-bottom: 30px;
}

.brokerage-main-title {
    color: var(--main-color);
    text-align: center;
    font-size: 40px;
	margin-bottom: 80px;
	line-height: 2;
}
.brokerage-main-title span {
    border-bottom: solid 1px;
    padding-bottom: 5px;
}

.brokerage-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}
.brokerage-title .num {
    color: var(--main-color);
    font-size: 66px;
    width: 120px;
    height: 120px;
    line-height: 120px;
    background: #CCDBF0;
    text-align: center;
    border-radius: 1000px;
}
.brokerage-title .text {
    width: calc(100% - 140px);
}
.brokerage-title .text h4 {
    font-size: 30px;
    color: var(--main-color);
}
.brokerage-title .text p {
    margin-top: 10px;
}

.brokerage-suggestion__list >li:not(:last-child) {
    margin-bottom: 100px;
}

.brokerage-suggestion-main {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: auto;
}
.brokerage-suggestion-main-left {
    display: flex;
    align-items: center;
}
.brokerage-suggestion-main .icon {
    width: 134px;
}
.brokerage-suggestion-main .desc {
    margin-left: 30px;
}
.brokerage-suggestion-main .btn {
    width: 120px;
    text-align: center;
    margin-left: auto;
	cursor: pointer;
}
.brokerage-suggestion-main .btn p {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
	white-space: nowrap;
    margin-bottom: 10px;
}
.brokerage-suggestion-main .btn-circle {
    width: 120px;
    height: 120px;
    background: var(--main-color);
    border-radius: 10000px;
    position: relative;
}
.brokerage-suggestion-main .btn-circle:before,
.brokerage-suggestion-main .btn-circle:after {
    content: '';
    background: #ffff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.brokerage-suggestion-main .btn-circle:after {
    width: calc(100% - 40px);
    height: 1px;
}
.brokerage-suggestion-main .btn-circle:before {
    width: 1px;
    height: calc(100% - 40px);
}
.brokerage-suggestion__list >li.active .btn-circle:before {
	height: 0;
    top: auto;
    bottom: 0;
}

.brokerage-suggestion-sub {
    max-height: 0;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
	transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.brokerage-suggestion-sub h5 {
    color: var(--main-color);
    font-size: 40px;
    text-align: center;
    margin-bottom: 80px;
}
.brokerage-suggestion-imgtext {
    display: flex;
    justify-content: space-between;
	margin-bottom: 100px;
}
.brokerage-suggestion-imgtext .img {
    width: 50%;
}
.brokerage-suggestion-imgtext .info {
    width: 45%;
}
.brokerage-suggestion-imgtext .info h6 {
    color: var(--main-color);
    font-size: 30px;
}
.brokerage-suggestion-imgtext .info .h7 {
    color: #fff;
    display: inline-block;
    font-size: 22px;
    background: var(--main-color);
    padding: 5px 20px 7px;
    margin-top: 50px;
}
.brokerage-suggestion-imgtext .info p {
    margin-top: 20px;
}
.brokerage-suggestion-imgtext.-re {
	flex-direction: row-reverse;
}

.brokerage-suggestion-merit__list {
    display: flex;
    flex-wrap: wrap;
}
.brokerage-suggestion-merit__list >li {
    width: 48%;
    margin: 0 0 4% 4%;
    padding: 40px;
    border: solid 2px var(--main-color);
}
.brokerage-suggestion-merit__list >li:nth-child(2n+1) {
    margin-left: 0;
}
.brokerage-suggestion-merit__list h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    font-size: 30px;
    text-align: center;
    background: #CCDBF0;
    min-height: 4em;
    margin-bottom: 20px;
}
.brokerage-suggestion-merit__list.full {
    display: block;
}
.brokerage-suggestion-merit__list.full >li {
    width: 100%;
    margin: 0;
}
.brokerage-suggestion-merit__list h5 {
    font-size: 30px;
    text-align: center;
    padding: 10px;
    border: solid 1px;
    margin: 30px 0;
}

.b-s-m-recommend {
    max-width: 800px;
    margin: 100px auto;
    padding: 30px;
    border: solid 2px var(--main-color);
	position: relative;
}
.b-s-m-recommend:before {
	content: '';
	display: block;
	width: 59px;
	height: 59px;
	background: url("../img/pages/brokerage_suggestion_arrow.png") no-repeat center;
	background-size: contain;
	position: absolute;
	left: calc( 50% - 30px);
	top: -79px;
}
.b-s-m-recommend h6 {
    font-size: 30px;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 20px;
}
.b-s-m-recommend__list >li {
    font-size: 23px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}
.b-s-m-recommend__list >li:last-child {
	margin-bottom: 0;
}
.b-s-m-recommend__list >li:before {
    content: '●';
    color: var(--main-color);
    position: absolute;
    left: 0;
}
.b-s-m-recommend p {
    margin-left: 30px;
}

.b-s-m-flow {
    display: flex;
    justify-content: space-between;
}
.b-s-m-flow-box {
    width: 45%;
    text-align: center;
}
.b-s-m-flow-box h6 {
    color: var(--main-color);
    font-size: 25px;
    display: inline-block;
    border-bottom: solid 1px;
    margin-bottom: 30px;
}

.brokerage-suggestion-closing {
    margin-top: 80px;
}
.brokerage-suggestion-closing h4 {
    color: var(--main-color);
    font-size: 34px;
    text-align: center;
    margin-bottom: 30px;
}


.brokerage-suggestion__list >li.active .brokerage-suggestion-sub {
	margin-top: 70px;
	max-height: 100000px;
	opacity: 1;
	visibility: visible;
}

.brokerage-introduction {
    margin-bottom: 100px;
}
.brokerage-introduction h4 {
    color: var(--main-color);
    font-size: 33px;
    text-align: center;
    margin-bottom: 15px;
}
.brokerage-introduction .desc {
    text-align: center;
}
.brokerage-introduction-icon {
    margin-top: 100px;
    margin-bottom: 30px;
}
.brokerage-introduction-icon__list {
    display: flex;
    justify-content: space-between;
}
.brokerage-introduction-icon__list >li {
    font-size: 21px;
    width: 48%;
    text-align: center;
    color: #fff;
    background: var(--main-color);
    padding: 15px;
}
.brokerage-introduction .img__list {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.brokerage-introduction .img__list >li {
    width: 31%;
}

.brokerage-introduction .item__list {
    display: flex;
    justify-content: space-between;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: 60px;
}
.brokerage-introduction .item__list >li {
    width: 32%;
}
.brokerage-introduction .item__list .img {
    position: relative;
}
.brokerage-introduction .item__list .img .cat {
    color: #fff;
    font-size: 14px;
    width: 45%;
    max-width: 180px;
    padding: 5px;
    text-align: center;
    background: #FB8F29;
    position: absolute;
    top: 0;
    left: 0;
}
.brokerage-introduction .item__list .img .cat.grn {
	background: #13751A;
}
.brokerage-introduction .item__list .info {
    margin-top: 20px;
}
.brokerage-introduction .item__list .info h5 {
    color: var(--main-color);
    font-size: 30px;
    text-align: center;
}
.brokerage-introduction .item__list .info .info-detail {
    display: flex;
    justify-content: space-between;
	margin-top: 10px;
}
.brokerage-introduction .item__list .info .info-detail .info-detail-address {
    font-size: 13px;
    line-height: 1.6;
}
.brokerage-introduction .item__list .info .info-detail .info-detail-price {
    line-height: 1.4;
    font-size: 25px;
}
.brokerage-introduction .item__list .info .info-detail .info-detail-price span {
    display: block;
    font-size: 13px;
    line-height: 1;
}


.brokerage-bnr {
    color: #fff;
    width: 100vw;
    margin: 0 calc(50% - 50vw) 100px;
    padding: 30px 300px;
    background: var(--main-color);
    text-align: center;
	position: relative;
}
.brokerage-bnr-title {
    font-size: 43px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.brokerage-bnr-desc {
    font-size: 23px;
    line-height: 1.6;
}
.brokerage-bnr .cmn-btn {
    margin-top: 30px;
}
.brokerage-bnr:before,
.brokerage-bnr:after {
    content: '';
    width: 25%;
	max-width: 300px;
    height: 100%;
    background: var(--sub-color1);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    position: absolute;
    top: 0;
}
.brokerage-bnr:before {
    left: 0;
	transform: rotate(-180deg);
}
.brokerage-bnr:after {
    right: 0;
}



@media (max-width: 1200px) {
	.brokerage-bnr {
		padding: 30px 200px;
	}
}
@media (max-width: 815px) {

	
	.page-title-brokerage .cmn-title-line {
		width: calc(100% - 14em);
	}
	.brokerage-kv p {
		left: 20px;
	}


	.brokerage-intro h3 {
		font-size: 15px;
		margin-bottom: 30px;
	}
	.brokerage-intro p {
		margin-bottom: 20px;
	}

	.brokerage-main-title {
		color: var(--main-color);
		text-align: left;
		font-size: 22px;
		margin-bottom: 40px;
	}

	.brokerage-title {
		margin-bottom: 30px;
	}
	.brokerage-title .num {
		font-size: 30px;
		width: 60px;
		height: 60px;
		line-height: 60px;
	}
	.brokerage-title .text {
		width: calc(100% - 80px);
	}
	.brokerage-title .text h4 {
		font-size: 18px;
	}

	.brokerage-suggestion {
		margin-top: 40px;
	}
	.brokerage-suggestion__list >li:not(:last-child) {
		margin-bottom: 40px;
	}
	.brokerage-suggestion-main {
		display: block;
	}
	.brokerage-suggestion-main-left {
		justify-content: center;
	}
	.brokerage-suggestion-main .btn {
		margin: 30px auto 0;
	}

	.brokerage-suggestion-closing {
		margin-top: 40px;
	}
	.brokerage-suggestion-closing h4 {
		font-size: 20px;
		text-align: left;
		margin-bottom: 20px;
	}

	.brokerage-suggestion-imgtext {
		display: block;
		margin-bottom: 80px;
	}
	.brokerage-suggestion-imgtext .img {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.brokerage-suggestion-imgtext .info {
		width: 100%;
	}
	.brokerage-suggestion-imgtext .info h6 {
		font-size: 20px;
	}
	.brokerage-suggestion-imgtext .info .h7 {
		font-size: 18px;
		margin-top: 30px;
	}

	.brokerage-suggestion-sub h5 {
		font-size: 22px;
		margin-bottom: 40px;
	}
	.brokerage-suggestion-merit__list {
		display: block;
	}
	.brokerage-suggestion-merit__list >li {
		width: 100%;
		margin: 0 0 30px;
		padding: 20px;
	}
	.brokerage-suggestion-merit__list h4 {
		display: block;
		font-size: 22px;
		min-height: 100%;
		padding: 15px 0;
	}
	.brokerage-suggestion-merit__list h5 {
		font-size: 18px;
		text-align: left;
	}

	.b-s-m-recommend {
		padding: 20px;
		margin-bottom: 40px;
	}
	.b-s-m-recommend__list >li {
		font-size: 15px;
		padding-left: 20px;
	}

	.b-s-m-flow {
		display: block;
	}
	.b-s-m-flow-box {
		width: 100%;
		margin-bottom: 30px;
	}
	.b-s-m-flow-box h6 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.brokerage-introduction {
		margin-bottom: 50px;
	}
	.brokerage-introduction h4 {
		font-size: 20px;
	}
	.brokerage-introduction-icon {
		margin-top: 30px;
	}
	.brokerage-introduction-icon__list {
		display: block;
	}
	.brokerage-introduction-icon__list >li {
		font-size: 15px;
		width: 100%;
		margin: 10px 0;
	}
	.brokerage-introduction .img__list {
		display: block;
		margin-top: 20px;
	}
	.brokerage-introduction .img__list >li {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.brokerage-introduction .item__list {
		display: block;
		width: 100%;
		margin-left: 0;
		margin-top: 30px;
	}
	.brokerage-introduction .item__list >li {
		width: 100%;
		margin-bottom: 40px;
	}
	.brokerage-introduction .item__list .info h5 {
		font-size: 22px;
	}

	.brokerage-bnr:after {
		top: auto;
		bottom: 0;
	}
	.brokerage-bnr:before,
	.brokerage-bnr:after {
		width: 70px;
		height: 70px;
	}
	.brokerage-bnr-title {
		font-size: 20px;
	}
	.brokerage-bnr-desc {
		font-size: 12px;
	}
	.brokerage-bnr .cmn-btn {
		margin-top: 20px;
	}
	
	.brokerage-bnr {
		padding: 30px;
	}
}
@media (max-width: 480px) {
	
    .brokerage-bnr-title {
        font-size: 16px;
    }
	.brokerage-bnr-desc {
        font-size: 10px;
    }
}



/* ----------------
brokerage-counsel
----------------- */
.brokerage-counsel-intro p {
    margin-bottom: 40px;
}
.caution {
	font-weight: 600;
	color: var(--sub-color1);
}

.brokerage-counsel-form {
	margin-top: 80px;
}
.brokerage-counsel-form h4 {
	font-size: 30px;
	color: var(--main-color);
	margin-bottom: 30px;
}
.brokerage-counsel-form table {
	width: 100%;
	border-collapse: collapse;
	border-top: solid 1px #595959;
}
.brokerage-counsel-form table th {
    font-weight: 500;
    padding: 30px 10px 30px 20px;
    width: 230px;
    text-align: left;
    background: #CCDBF0;
    border-right: solid 1px #595959;
    border-bottom: solid 1px #595959;
}
.brokerage-counsel-form table th.bg {
	background: #CECECE;
}
.brokerage-counsel-form table td {
	border-right: solid 1px #595959;
	border-bottom: solid 1px #595959;
	padding: 30px 20px;
}

.brokerage-counsel-form h5 {
    font-size: 24px;
    color: var(--main-color);
    text-align: center;
	margin-bottom: 30px;
}
.brokerage-counsel-form-privacy {
	padding: 50px 0;
	margin-bottom: 50px;
	border-top: solid 1px #595959;
	border-bottom: solid 1px #595959;
}
.brokerage-counsel-form-privacy h6 {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 30px;
}
.brokerage-counsel-form-privacy .privacy__list >li{
	margin-bottom: 30px;
}
.brokerage-counsel-form-privacy .privacy__list >li .h7 {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 30px;
}
.brokerage-counsel-form-msg {
	color: var(--main-color);
	font-size: 24px;
	font-weight: 600;
    text-align: center;
    margin-top: 80px;
}

#brokerage-counsel-send {
    display: block;
    width: 100%;
    max-width: 550px;
    color: #fff;
    font-size: 21px;
    padding: 20px 0;
    background: var(--sub-color1);
    cursor: pointer;
    position: relative;
    margin: 50px auto 0;
}
#brokerage-counsel-send i.arrow-anime {
	right: 20px;
}

#counselform-method-custom {
	padding: 0;
}
#counselform-method-custom .wpcf7-list-item {
    display: block;
    border-bottom: solid 1px;
    margin: 0;
    padding: 10px 20px;
}
#counselform-method-custom .wpcf7-list-item:last-of-type {
	border-bottom: none;
}


.form-loading {
	display:none;
	position:fixed;
}

@media (max-width: 815px) {

	.brokerage-counsel-intro p {
		margin-bottom: 20px;
	}
	.brokerage-counsel-form {
		margin-top: 40px;
	}
	.brokerage-counsel-form h4 {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.brokerage-counsel-form table th {
		display: block;
		width: 100%;
		border-right: none;
		border-bottom: solid 1px #595959;
        padding: 10px;
        text-align: center;
    }
	.brokerage-counsel-form table th br {
		display: none;
	}
	.brokerage-counsel-form table td {
		display: block;
		width: 100%;
		border-right: none;
		padding: 15px 0;
	}
	.brokerage-counsel-form table td .sp-inline {
		display: inline-block;
		width: calc(60% - 15px);
		margin-left: 10px;
		vertical-align: middle;
	}
	.brokerage-counsel-form h5 {
		font-size: 18px;
		text-align: left;
	}
	.brokerage-counsel-form-privacy {
		padding: 30px 0;
		margin-bottom: 30px;
	}
	.brokerage-counsel-form-privacy h6 {
		font-size: 15px;
	}
	.brokerage-counsel-form-privacy .privacy__list >li .h7 {
		font-size: 15px;
	}

	.brokerage-counsel-form-msg {
		font-size: 18px;
		text-align: left;
		margin-top: 40px;
	}

}




/* ----------------
compliance
----------------- */
.page-title-compliance .cmn-title-line {
    width: calc(100% - 26em);
}

@media (max-width: 815px) {

	.page-title-compliance .cmn-title-line {
		width: calc(100% - 18em);
	}

}



/* ----------------
member-conduct
----------------- */
.page-title-member-conduct .cmn-title-line {
    width: calc(100% - 26em);
}
#member-conduct h3 {
    font-size: 28px;
    font-family: var(--font-mincho);
    font-weight: 500;
    margin-bottom: 40px;
}
.member-conduct-text {
	font-size: 28px;
	font-family: var(--font-mincho);
	margin-bottom: 40px;
}

@media (max-width: 815px) {

	.page-title-member-conduct .cmn-title-line {
        width: calc(100% - 18em);
        margin: 0 10px;
    }
	#member-conduct h3 {
		font-size: 18px;
	}
	.member-conduct-text {
		font-size: 18px;
		margin-bottom: 30px;
	}

}



/* ----------------
sustainability
----------------- */
.page-title-sustainability .cmn-title-line {
    width: calc(100% - 26em);
}
.sustainability-catch {
	font-size: 47px;
	color: var(--main-color);
	letter-spacing: 0.2em;
	text-align: center;
	margin-bottom: 50px;
}
.sustainability-catch span {
	border-bottom: solid 1px;
}

.sustainability-sdgs__list {
	display: flex;
	flex-wrap: wrap;
}
.sustainability-sdgs__list >li {
	display: flex;
	flex-wrap: wrap;
	width: 48%;
	margin: 0 0 4% 4%;
	padding: 40px 40px 200px;
	background: #EBEBEB;
	position: relative;
}
.sustainability-sdgs__list >li:nth-child(2n+1) {
	margin-left: 0;
}
.sustainability-sdgs__list .info h4 {
	text-align: center;
	font-size: 30px;
	color: var(--main-color);
	margin-bottom: 30px;
}
.sustainability-sdgs__list .info p {
}
.sustainability-sdgs__list .img  {
    text-align: center;
    width: 100%;
	padding: 0 10px;
    position: absolute;
    bottom: 30px;
    left: 0;
}
.sustainability-company {

}
.sustainability-company__list {
	display: flex;
	flex-wrap: wrap;
    margin-top: 100px;
}
.sustainability-company__list >li {
	width: 48%;
	margin: 0 0 4% 4%;
	padding: 50px 50px 120px;
	border:solid 3px var(--main-color);
	text-align: center;
	position: relative;
}
.sustainability-company__list >li:nth-child(2n+1) {
	margin-left: 0;
}
.sustainability-company__list h5 {
    color: var(--main-color);
    font-size: 28px;
    letter-spacing: 0.2em;
    padding: 10px;
    background: #CCDBF0;
    margin-bottom: 20px;
}
.sustainability-company__list h6 {
    font-size: 18px;
}
.sustainability-logo {
    text-align: center;
    margin-top: 30px;
}
.sustainability-logo a {
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.sustainability-logo.add-pd a {
    padding: 20px;
}
.sustainability-logo a:hover {
    box-shadow: 0 0 10px -1px #ccc;
}
.sustainability-link {
    width: 100%;
    padding: 0 50px;
    position: absolute;
    bottom: 40px;
    left: 0;
}
.sustainability-link a {
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 25px;
    font-family: var(--font-en2);
    padding-right: 95px;
    position: relative;
}
.sustainability-link a .page-link-arrow {
    top: -10px;
}


@media (max-width: 815px) {

	.page-title-sustainability .cmn-title-line {
		width: calc(100% - 19em);
	}
	.sustainability-catch {
		font-size: 22px;
	}
	
	.sustainability-sdgs__list {
		display: block;
	}
	.sustainability-sdgs__list >li {
		display: block;
		width: 100%;
		margin: 0 0 30px;
		padding: 20px;
	}
	.sustainability-sdgs__list .info h4 {
		font-size: 21px;
	}
	.sustainability-sdgs__list .img {
		position: relative;
		padding: 0;
		margin-top: 30px;
		bottom: auto;
	}
	.sustainability-sdgs__list .img img {
		max-height: 70px;
        width: auto;
	}
	.sustainability-company__list {
		display: block;
		margin-top: 60px;
	}
	.sustainability-company__list >li {
		width: 100%;
		margin: 0 0 30px;
		padding: 30px 30px 20px;
	}
	.sustainability-company__list h5 {
		font-size: 20px;
		letter-spacing: 0;
	}
	.sustainability-company__list h6 {
		font-size: 13px;
	}
	.sustainability-logo {
		margin-top: 20px;
	}
	.sustainability-logo.add-pd a {
		padding: 0;
	}
	.sustainability-link {
		margin-top: 30px;
		padding: 0;
		position: relative;
		bottom: auto;
	}
	.sustainability-link a {
		font-size: 18px;
		padding-right: 55px;
	}
	.sustainability-link .page-link-arrow {
		width: 46px;
		height: 46px;
	}
	.sustainability-link a i.arrow {
		width: 46px;
		height: 46px;
	}
	.sustainability-link a i.arrow:after {
		width: 20px;
		height: 20px;
		right: 5px;
		top: 13px;
	}

}


/* ----------------
recruitment
----------------- */
.recruitment-nav-wrap {
	margin-bottom: 100px;
}
.recruitment-nav .to-home {
	margin-top: 0;
}

.recruitment-page {
	display: none;
}

.recruitment-intro {
    text-align: center;
}
.recruitment-intro h3 {
    color: var(--main-color);
    font-size: 48px;
}
.recruitment-intro h3 span {
    border-bottom: solid 1px;
}
.recruitment-intro .img {
	margin-top: 100px;
}

.recruitment-main-img {
    position: relative;
	margin-bottom: 40px;
}
.recruitment-main-img p {
    color: #fff;
    font-size: 40px;
    font-family: var(--font-mincho);
    font-weight: 100;
    line-height: 1.5;
    letter-spacing: 0.1em;
    position: absolute;
    top: 60px;
    left: 60px;
}
#recruitment02 .recruitment-main-img p {
	top: auto;
	bottom: 50px;
}
#recruitment03 .recruitment-main-img p {
	left: auto;
	right: 60px;
}
#recruitment04 .recruitment-main-img p {
	width: 100%;
	text-align: center;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.recruitmen-image {
	margin-top: 100px;
}
.recruitmen-image__list {
    display: flex;
    flex-wrap: wrap;
}
.recruitmen-image__list >li {
	width: 48%;
	margin: 0 0 4% 4%;
    text-align: center;
}
.recruitmen-image__list >li:nth-child(2n+1) {
	margin-left: 0;
}
.recruitmen-image__list >li h6 {
    color: var(--main-color);
    font-size: 26px;
    margin-top: 20px;
}
.recruitmen-image__list >li p {
    font-size: 21px;
}
.recruitmen-image .desc {
    color: var(--main-color);
    font-size: 23px;
	font-weight: 500;
    text-align: center;
    margin-bottom: 70px;
}
.recruitmen-image.-ver2 .recruitmen-image__list >li p {
	text-align: left;
	font-size: 18px;
	padding-top: 10px;
	margin-top: 15px;
	border-top: solid 1px;
}

.recruitmen-movie__list >li {
	margin-top: 50px;
}

.recruitment01-logo {
    text-align: center;
    margin: 120px 0 170px;
}
.recruitment01-logo h5 {
    color: var(--main-color);
    font-size: 32px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.recruitment01-logo p {
    font-size: 21px;
}

.recruitment02-box {
    margin-top: 60px;
	text-align: center;
}
.recruitment02-box h5 {
    color: var(--main-color);
    font-size: 23px;
	line-height: 1.8;
	margin-bottom: 40px;
}

.recruitment04-box h5 {
    color: var(--main-color);
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}
.recruitment04-box ul >li {
    display: flex;
	flex-wrap: wrap;
    align-items: center;
	justify-content: space-between;
    color: var(--main-color);
    font-size: 27px;
	font-weight: 500;
    margin-bottom: 25px;
}
.recruitment04-box ul >li .num {
    font-size: 190%;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 1000px;
    background: #CCDBF0;
}
.recruitment04-box ul >li .text {
	width: calc(100% - 110px);
}
.recruitment04-box .img {
    margin-top: 90px;
    text-align: center;
}


/* 中途 */
.recruitment-mid__list >li {
    margin-bottom: 50px;
}
.recruitment-mid__list >li h3 {
    font-size: 25px;
    font-weight: 500;
    background: #EBEBEB;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 40px;
}


@media (max-width: 815px) {

	.page-title-recruitment .cmn-title-line {
		width: calc(100% - 11em);
	}
	.recruitment-nav-wrap {
		margin-bottom: 50px;
	}
	.recruitment-intro h3 {
		font-size: 22px;
	}
	.recruitment-intro .img {
		margin-top: 60px;
	}

	.recruitmen-image .desc {
		font-size: 15px;
		margin-bottom: 40px;
		text-align: left;
	}
	.recruitmen-image .desc.ver2 {
		font-size: 22px;
		text-align: center;
	}
	.recruitmen-image__list >li h6 {
		color: var(--main-color);
		font-size: 22px;
		margin-top: 20px;
	}
	.recruitmen-image__list >li p,
	.recruitmen-image.-ver2 .recruitmen-image__list >li p{
		font-size: 15px;
	}

	.recruitment01-logo {
		margin: 50px 0 100px;
	}
	.recruitment01-logo h5 {
		color: var(--main-color);
		font-size: 20px;
		letter-spacing: 0.05em;
		margin-bottom: 10px;
	}
	.recruitment01-logo img {
	    max-width: 330px;
	}
	.recruitment01-logo p {
		font-size: 13px;
	}

	.recruitment02-box h5 {
		font-size: 18px;
		text-align: left;
	}

	.recruitment04-box h5 {
		font-size: 20px;
		margin-bottom: 30px;
	}
	.recruitment04-box ul >li  {
		font-size: 15px;
		margin-bottom: 20px;
	}
	.recruitment04-box ul >li .num {
		font-size: 190%;
		width: 55px;
		height: 55px;
		line-height: 55px;
	}
	.recruitment04-box ul >li .text {
		width: calc(100% - 70px);
	}
	.recruitment04-box .img {
		margin-top: 60px;
	}

	.recruitment-mid__list >li h3 {
		font-size: 18px;
		margin-bottom: 20px;
	}

}



@media (max-width: 480px) {

	.recruitment-main-img p {
		font-size: 13px;
		top: 20px;
		left: 20px;
	}
	#recruitment02 .recruitment-main-img p {
		top: auto;
		bottom: 20px;
	}
	#recruitment03 .recruitment-main-img p {
		left: auto;
		right: 20px;
	}
	.recruitmen-image {
		margin-top: 50px;
	}
	.recruitmen-image__list {
		display: block;
	}
	.recruitmen-image__list >li {
		width: 100%;
		margin: 0 auto 50px;
	}

	.recruitment02-box .sp img {
		max-width: 220px;
	}

}












/* ----------------

cmn-post

----------------- */

.post__list {
    display: flex;
    flex-wrap: wrap;
}
.post__list >li {
	width: 48%;
	margin: 0 0 50px 4%;
}
.post__list >li:nth-child(2n+1) {
	margin-left: 0;
}
.post__list >li a {
    color: var(--base-color);
    display: block;
}
.post__list >li a .blog-thumb {
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}
.blog-info-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
}
.blog-info-date {
    display: inline-block;
    color: #fff;
    border-radius: 100px;
    padding: 4px 20px 5px;
    margin-top: 10px;
    line-height: 1;
    background-image: linear-gradient(0deg, #3d84f8, #a662c5);
}

/* pager */
#cmn-pager {
    margin-top: 100px;
}
#cmn-pager .wp-pagenavi {
    clear: both;
    display: flex;
    justify-content: center;
}
#cmn-pager .wp-pagenavi a,
#cmn-pager .wp-pagenavi span {
    color: var(--main-color);
    display: flex;
    flex-wrap: wrap;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #bbc4c0;
}
#cmn-pager .wp-pagenavi a:hover,
#cmn-pager .wp-pagenavi span.current {
    color: #fff;
    background: var(--main-color);
}

/* single */
.post-header {
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: solid 1px;
}
.post-header .post-date {
    color: var(--sub-color1);
	line-height: 1;
}
.post-header .post-title {
	font-size: 24px;
	margin-top: 10px;
}
.post-header .post-subtitle {
    font-size: 16px;
    color: var(--main-color);
    margin-top: 10px;
}

#post-body {
	line-height: 2;
}
#post-body h2 {
    font-size: 24px;
    padding-left: 20px;
    margin-bottom: 50px;
    border-left: solid 7px var(--main-color);
    line-height: 1.3;
}
#post-body h3 {
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 20px;
}
#post-body h4 {
    font-size: 18px;
    color: var(--main-color);
    margin-bottom: 20px;
}
#post-body .aligncenter {
    display: block;
    text-align: center;
    margin: auto;
}
#post-body p {
	margin-bottom: 1em;
}
#post-body p b,
#post-body p strong {
    color: var(--base-color);
    background: linear-gradient(transparent 70%, yellow 0%);
}

.wp-caption {
    max-width: 100%;
}
#post-pager {
    display: flex;
    margin-top: 100px;
	position: relative;
}
#post-pager .prev {
    margin-right: auto;
}
#post-pager .next {
    margin-left: auto;
}
#post-pager .prev a,
#post-pager .next a {
    font-weight: 500;
	color: var(--main-color);
}
#post-pager .return {
    margin: auto;
    width: 200px;
    text-align: center;
    position: absolute;
    left: calc(50% - 100px);
}
#post-pager .return a {
    color: var(--main-color);
}


@media (max-width: 815px) {

	.post-contents {
		width: 100%;
		min-height: 100%;
        margin-bottom: 60px;
	}
    .post-header .post-title {
        font-size: 18px;
    }
	.post-header .post-subtitle {
		font-size: 14px;
	}
    #post-body h2 {
        font-size: 18px;
		padding-left: 15px;
        line-height: 1.5;
    }
    #post-body h3 {
        font-size: 16px;
    }
	#cmn-pager {
		margin-top: 50px;
	}

	.post__list {
		display: block;
	}
	.post__list >li {
		width: 100%;
		margin: 0 0 30px;
	}
	.post__list >li a .blog-thumb {
		margin-bottom: 10px;
	}

}



/*---------------------------------

column

----------------------------------*/
.column-container {
	display: flex;
	justify-content: space-between;
}
.column-contents {
	width: calc(100% - 300px);
}
.column__list > li {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: dotted 1px #cccc;
}
.column__list > li a {
    display: block;
	color: #000;
    position: relative;
}
.column__list-in {
	display: flex;
	justify-content: space-between;
}
.column-thumb {
    width: 30%;
}
.column-info {
    width: 65%;
}
.column-info-date {
    display: inline-block;
    line-height: 1;
    font-size: 14px;
    color: #bbb;
    font-family: "Inter", sans-serif !important;
}
.column-info-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}
.column-info-desc {
    font-size: 12px;
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 5px;
}
.column-info-cat {
    display: inline-block;
    line-height: 1;
    font-size: 12px;
    color: var(--main-color);
    margin-top: 10px;
}

.column-sidebar {
	width: 250px;
}
.column-sideBox {
    margin-bottom: 50px;
}
.column-side-title {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    border-bottom: solid 2px;
	margin-bottom: 20px;
}
.column-side-category__list > li {
    font-size: 14px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: dotted 1px #ccc;
}
.column-side-category__list > li a:before {
    content: '・';
}
.column-side-category__list > li a {
	color: var(--base-color);
}
.column-side-post__list >li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: dotted 1px #ccc;
}
.column-side-post__list >li a {
    display: block;
	color: var(--base-color);
}
.column-side-post-in {
    display: flex;
    justify-content: space-between;
	position: relative;
}
.column-side-post-thumb {
    width: 80px;
    height: 80px;
}
.column-side-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.column-side-post-info {
    width: calc(100% - 100px);
}
.column-side-post-info--date {
    font-size: 11px;
    color: #bbb;
    font-family: "Inter", sans-serif !important;
}
.column-side-post-info--title {
    font-size: 14px;
    font-weight: 500;
}
.column-side-post-info--cat {
    font-size: 12px;
    color: var(--main-color);
    margin-top: 5px;
}


/* single */
.column-header {
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: solid 1px;
}
.column-header-date {
    display: inline-block;
    color: #bbb;
    font-family: "Inter", sans-serif !important;
    line-height: 1;
    vertical-align: middle;
}
.column-header-cat {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background: var(--main-color);
    margin-left: 10px;
    padding: 5px 20px;
    border-radius: 100px;
    line-height: 1;
    vertical-align: middle;
}
.column-header-title {
	font-size: 24px;
	margin-top: 10px;
}

.column-single-signature {
    margin-top: 50px;
    padding-top: 20px;
    border-top: solid 1px;
}
.column-single-signature p {
    font-size: 13px;
    line-height: 1.6;
}


@media (max-width: 815px) {

	.column-container {
		display: block;
	}
	.column-contents,
	.column-sidebar {
		width: 100%;
	}
	.column-sidebar {
		margin-top: 50px;
	}
	.column-header-title {
		font-size: 16px;
	}
	
	.column__list-in {
		display: block;
	}
	.column-thumb {
		width: 100%;
		text-align: center;
		margin-bottom: 15px;
	}
	.column-info {
		width: 100%;
	}

}



/*---------------------------------

contact

----------------------------------*/
.form-box {
    margin: 15px 0;
}
.cmn-input,
.cmn-input-s,
.cmn-input-m,
.cmn-select,
.cmn-select-s,
.cmn-select-m,
.cmn-textarea {
    width: 100%;
	font-size: 16px;
    border: solid 1px #ccc;
    background: #fff;
}

.cmn-input {
    height: 60px;
    text-indent: 10px;
}
.cmn-input-s {
    width: 40%;
    height: 60px;
    text-indent: 10px;
}
.cmn-input-m {
    width: 60%;
    height: 60px;
    text-indent: 10px;
}
.cmn-select {
    height: 60px;
}
.cmn-select-s {
	width: 40%;
    height: 50px;
}
.cmn-select-m {
	width: 50%;
    height: 50px;
}
.cmn-textarea {
    height: 200px;
    padding: 10px;
}
.form-box ::placeholder{
  color:#ccc
}

#btn-send {
    cursor: pointer;
    display: block;
    font-size: 18px;
    font-weight: 500;
    max-width: 350px;
    width: 100%;
    text-align: center;
    line-height: 1;
    padding: 25px 0;
    margin: 40px auto 0;
    color: var(--main-color);
    background: #fff;
    border: solid 2px var(--main-color);
    border-radius: 10000px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
#btn-send:after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: solid 1px;
    border-right: solid 1px;
    transform: rotate(45deg);
    vertical-align: 2px;
    margin-left: 10px;
}
#btn-send:hover {
    color: #fff;
    background: var(--main-color);
}


@media (max-width: 1024px) {

    .contact-form table {
        font-size: 13px;
        border-top: none;
        margin-bottom: 30px;
    }
    .contact-form table th {
        display: block;
        width: 100%;
        border-bottom: none;
        background: no-repeat;
        padding: 0;
    }
    .contact-form table td {
        display: block;
        padding: 20px 0 30px;
        width: 100%;
        border-bottom: none;
    }

    #btn-send {
        font-size: 14px;
        padding: 20px 0;
    }

	.check-policy {
		margin-top: 30px;
		text-align: left;
	}

}

