@charset "UTF-8";

@import url("https://fonts.googleapis.com/earlyaccess/sawarabigothic.css");

/* /////////////////////////////////////////////// */

/* テンプレート用CSS */

/* /////////////////////////////////////////////// */
html {
}
body {
	font-family: "Sawarabi Gothic", Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", Meiryo, sans-serif;
	color: #333;
	font-size: 1em;
	line-height: 180%;
	background-color: #FFF;
}

a {
	color: #069;
	text-decoration: none;
	transition: 0.3s;
}
a:hover {
	color: #D80C18;
}
a[target="_blank"]:after {
	content: '\e808';
	margin-left: 0.3em;
	display: inline-block;
	font-family: "fontello";
	font-size: 1em;
	transform: scaleX(-1);
	opacity: 0.4;
}

img {
	vertical-align: bottom;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* form */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="date"],
textarea {
	min-height: 50px;
	margin-right: calc(10px - 0.3em);
	padding: 0 10px;
	font-size: 1em;
	background-color: #FFF;
	border: 1px solid #B1B1B1;
	border-right-color: transparent;
	border-bottom-color: transparent;
	box-shadow: 1px 1px 1px 0 rgba(0,0,0,0.15) inset;
	border-radius: 4px;
	box-sizing: border-box;
}
.container input[type="text"],
.container input[type="password"],
.container input[type="number"],
.container input[type="email"],
.container input[type="tel"],
.container input[type="search"],
.container input[type="date"],
.container textarea {
	background-color: #EEE;
	border-color: #999;
	border-right-color: transparent;
	border-bottom-color: transparent;
}
textarea {
	width: 100%;
	min-height: 100px;
	margin-right: 0;
	padding: 10px;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
textarea:focus {
	background-color: #FFF3F3;
}
input[type="radio"],
input[type="checkbox"] {
	display: none;
}
input[type="radio"] + *,
input[type="checkbox"] + * {
	margin-right: 40px;
	padding: 5px 0;
	display: inline-block;
	white-space: nowrap;
}
.table_wrapper input[type="radio"] + *,
.table_wrapper input[type="checkbox"] + * {
	margin-right: 0;
}
input[type="radio"] + *:before {
	content: "";
	width: 0.7em;
	height: 0.7em;
	margin: -0.1em 0.3em 0.1em 0;
	display: inline-block;
	vertical-align: middle;
	border: 4px solid #C6C6BD;
	border-radius: 100%;
}
input[type="radio"]:checked + *:before {
	border-color: #D80C18;
}
input[type="checkbox"] + *:before {
	content: "";
	width: 1.8em;
	height: 1.8em;
	margin: -0.2em 0.5em 0.2em 0;
	display: inline-block;
	overflow: hidden;
	line-height: 1.5em;
	color: #FFF;
	font-size: 0.7em;
	text-align: center;
	vertical-align: middle;
	background-color: #C6C6BD;
	border-radius: 3px;
	transform: rotate(180deg) scaleX(-1);
}
input[type="checkbox"]:checked + *:before {
	content: "ヘ";
	font-weight: bold;
	background-color: #D80C18;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
	min-width: 150px;
	min-height: 50px;
	color: #FFF;
	font-size: 1em;
	background-color: #FD9827;
	border: none;
	border-right: 1px solid rgba(0,0,0,0.2);
	border-bottom: 1px solid rgba(0,0,0,0.3);
	border-radius: 3px;
	cursor: pointer;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	background-color: #D80C18;
}
input[type="reset"],
input[type="button"] {
	background-color: #999;
}
input[type="file"] {
	line-height: 50px;
}
input[type="text"][readonly="readonly"],
input[type="password"][readonly="readonly"],
input[type="number"][readonly="readonly"],
input[type="email"][readonly="readonly"],
input[type="tel"][readonly="readonly"],
input[type="search"][readonly="readonly"],
textarea[readonly="readonly"] {
	background-color: transparent;
	border: none;
	box-shadow: unset;
	border-radius: unset;
	box-sizing: unset;
}


.select_wrapper {
	margin-right: calc(10px - 0.3em);
	display: inline-block;
	position: relative;
	font-size: 0.9em;
	background-color: #FFF;
	border: 1px solid #DDD;
	border-right-color: #B1B1B1;
	border-bottom-color: #B1B1B1;
	border-radius: 4px;
	box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.15);
}
.select_wrapper:after {
	content: "";
	width: 0;
	height: 0;
	margin: -4px 0 0 0;
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	border: 6px solid transparent;
	border-top: 8px solid #CCC;
	pointer-events: none;
}
.select_wrapper label {
	width: auto;
	height: 50px;
	padding: 0 10px;
	display: inline-block;
	line-height: 49px;
	vertical-align: top;
	color: #666;
	font-size: 0.8em;
	background-color: #F9F9F9;
	border: 1px solid #FFF;
	border-bottom: none;
	border-right: 1px solid #CCC;
	border-radius: 4px 0 0 4px;
}
select {
	height: 50px;
	padding: 0 10px 0 10px;
	font-size: 1em;
	background-color: transparent;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-right: 30px solid transparent;
}

.pika-label {
	font-size: 16px;
}
.pika-table abbr {
	font-size: 16px;
	border-bottom: none;
}
.pika-lendar {
	width: 340px;
}
.pika-button {
	line-height: 35px;
	font-size: 16px;
	text-align: center;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* 汎用 */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.btn {
	height: 50px;
	padding: 0 15px;
	color: #FFF;
	font-size: 1.1em;
	line-height: 50px;
	text-decoration: none;
	background-image: url(../img/slant.png);
	background-repeat: repeat;
	background-position: center;
}

.wrapper {
	width: 1050px;
	margin-left: auto;
	margin-right: auto;
}
.btn {
	background-color: #2F4684;
	border-raidus: 4px;
}
.slant {
	background-image: url(../img/slant.png);
	background-position: left top;
	background-repeat: repeat;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* header */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #FFF;
	z-index: 10;
}
header .wrapper {
	padding-left: 122px;
}
header > div {
	padding: 20px 0 15px;
	/*
	transition: 0.4s;
	*/
}
header h1 {
	width: 297px;
	height: 66px;
	margin-left: 15px;
	float: left;
	overflow: hidden;
	text-indent: 200%;
	white-space: nowrap;
}
header h1 a {
	width: 297px;
	height: 66px;
	display: block;
	background-image: url(../img/logo.png);
	background-position: center;
}
header a.btn.slant {
	height: 66px;
	padding: 0 20px;
	float: right;
	font-size: 1.2em;
	line-height: 66px;
	color: #FFF;
	background-color: #FD9827;
	transition: 0.4s background-color;
}
header a.btn.slant span {
	vertical-align: bottom;
	font-size: 1.5em;
}

#tel {
	margin-top: -0.3em;
	margin-right: 15px;
	float: right;
}
#tel strong {
	font-size: 2em;
	color: #2E4684;
	line-height: 100%;
}
#tel strong:before {
	content: url(../img/tel.png);
	margin: -2px 5px 2px 0;
	display: inline-block;
	vertical-align: middle;
}
#tel dl {
	color: #2E4684;
	font-size: 1em;
}
#tel dt {
	height: 2.1em;
	margin-right: 8px;
	padding: 0 9px;
	line-height: 2em;
	border: 1px solid #2E4684;
	border-radius: 3px;
}
#tel dd {
	line-height: 100%;
}

header > div > ul {
	width: calc(7.4em + 4px);
	padding-right: 15px !important;
	float: right;
}
header > div > ul li {
	width: 3.7em;
	height: 32px;
	margin: 0 0 2px 2px !important;
	float: left;
	line-height: 31px;
	color: #2E4684;
	text-align: center;
	background-color: #EEE;
}
header > div > ul li a {
	display: block;
	color: #FFF;
	background-color: #2E4684;
	border-radius: 3px;
	background-image: url(../img/slant.png);
	background-position: left top;
	background-repeat: repeat;
}
header > div > ul li a:hover {
	color: #FFF;
	background-color: #FD9827;
}

nav {
	background-color: #2F4684;
	border-bottom: 10px solid #FD9827;
}
nav > div {
	width: 100%;
	height: 80px;
	margin-bottom: -10px;
	display: table;
	position: relative;
}
nav > div:before {
	content: url(../img/store_header.png);
	display: block;
	position: absolute;
	top: -100px;
	left: -127px;
}
nav a,
nav a:hover {
	height: 80px;
	padding: 0 15px 10px;
	display: table-cell;
	position: relative;
	overflow: hidden;
	color: #FFF;
	font-size: 1.1em;
	line-height: 120%;
	text-align: center;
	vertical-align: middle;
	transition: 0s;
}
nav a.current:before {
	content: "";
	width: 100%;
	height: 10px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #966F55;
}
nav a:not(.current):before {
	content: "";
	width: 100%;
	height: 80px;
	display: block;
	position: absolute;
	top: 80px;
	left: 0;
	background-color: #FD9827;
	transition: 0.4s;
	z-index: 0;
}
nav a span {
	position: relative;
	z-index: 1;
}
.sp {
	display: none;
}




/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* article */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
article {
	padding-top: 181px;
	transition: 0.4s;
}

article > section section {
	margin-bottom: 60px;
	padding-left: 1.5em;
	padding-right: 1.5em;
}

/**************************************** サブ ****************************************/
#page_title {
	height: 250px;
	margin-bottom: 40px;
	position: relative;
	background-color: #333;
	background-image: url(../img/top_bg.jpg);
	background-position: center;
	background-size: cover;
}
#for-saler #page_title { background-image: url(../img/pt1.jpg); }
#sale #page_title { background-image: url(../img/pt2.jpg); }
#fearture #page_title { background-image: url(../img/pt3.jpg); }
#search #page_title { background-image: url(../img/pt4.jpg); }
#qa #page_title { background-image: url(../img/pt5.jpg); }
#news #page_title { background-image: url(../img/pt6.jpg); }
#about #page_title { background-image: url(../img/pt7.jpg); }
#page_title:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../img/top_bg3.png);
	background-repeat: repeat;
	z-index: 1;
}

#page_title h2 {
	position: relative;
	color: #FFF;
	line-height: 250px;
	text-align: center;
	font-size: 3em;
	font-weight: normal;
	text-shadow: 2px 2px 3px #000;
	z-index: 2;
}

h3 {
	margin: 0 -1.5em 20px -1.1em;
	padding: 0 0 0.3em 1em;
	line-height: 120%;
	position: relative;
	color: #2F4684;
	font-size: 1.6em;
}
h3:first-letter {
	margin: 0.1em 100% -999em 0;
	float: right;
	color: #2F4684;
	font-size: 1.5em;
	font-weight: normal;
	vertical-align: middle;
}
h3:after {
	content: "";
	width: calc(100% - 1.1em);
	height: 0.2em;
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: #EEE;
	background-color: #2F4684;
	background-color: #FD9827;
	background-image: url(../img/slant.png);
	background-repeat: repeat;
}

h4 {
	margin-bottom: 10px;
	padding: 10px 15px 15px;
	color: #FFF;
	line-height: 100%;
	font-weight: normal;
	background-color: #2F4684;
	background-color: rgba(46,70,132,0.9);
	background-image: url(../img/slant.png);
	background-repeat: repeat;
	border-top: 5px solid #2F4684;
}

.sub article section p,
.sub article section ul,
.sub article section ol {
	margin-bottom: 30px;
}
.sub article section li {
	margin-bottom: 20px;
}

.sub article section ul,
.sub article section ol {
	padding-left: 0;
	list-style: none;
	counter-reset: my-counter;
}
.sub article li dt,
#qa_list dt {
	margin-bottom: 10px;
	padding-bottom: 10px;
	display: inline-block;
	line-height: 100%;
	position: relative;
	font-size: 1.2em;
}
.sub article li dt:after,
#qa_list dt:after {
	content: "";
	width: 100%;
	height: 5px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #E91C63;
	background-image: url(../img/slant.png);
	background-repeat: repeat;
	opacity: 0.35;
}
.sub article section ol li dt:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	margin-right: 0.5em;
	display: inline-block;
	font-weight: bold;
}
.sub article li dd {
	padding-left: 1.5em;
}

table {
	width: 100%;
	margin: 0 0 30px;
	border-top: 1px dashed #CCC;
}
.flex > table {
	width: auto;
}
table th,
table td {
	padding: 15px 0;
	border-bottom: 1px dashed #CCC;
}
table th {
	padding-right: 15px;
	text-align: left;
	vertical-align: top;
	white-space: nowrap;
	color: #600;
}
table td {
	width: 90%;
}

table.plain {
	margin: 0 !important;
	border: none !important;
}
table.plain th,
table.plain td {
	padding: 5px !important;
	color: inherit !important;
	font-weight: normal !important;
	vertical-align: middle !important;
	background-color: transparent !important;
	border: none !important;
}

a.btn.arrow {
	padding-right: 40px;
	position: relative;
	background-color: #FD9827;
}
a.btn.arrow:after {
	content: "";
	width: 12px;
	height: 12px;
	margin-top: -7px;
	display: block;
	position: absolute;
	top: 50%;
	right: 18px;
	border-top: 3px solid rgba(255,255,255,0.5);
	border-right: 3px solid rgba(255,255,255,0.5);
	transform: rotate(45deg);
}

.img_box {
	padding-left: 1.5em;
}
.img_box:not(:last-child) {
	margin-bottom: 30px;
}
.img_box > img {
	width: 350px;
	margin-bottom: 10px;
}
.img_box > img.fl {
	margin-right: 20px;
}
.img_box > img.fr {
	margin-left: 20px;
}
.img_box p {
	padding-left: 0 !important;
}

.arrow li {
	padding-left: 11px;
	position: relative;
}
.arrow li:before {
	content: "";
	width: 0;
	height: 0;
	margin-top: -4px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	border: 4px solid transparent;
	border-left: 6px solid #FD9827;
}


/*------------------------------------ inquiry -------------------------------------*/
#contact_form {
	margin-bottom: 40px;
	padding-top: calc(4em + 11px);
	position: relative;
}
#contact_form:before {
	content: "";
	width: 100%;
	height: 10px;
	display: block;
	position: absolute;
	top: 4em;
	left: 0;
	background-color: #FD9827;
}
#contact_form dt {
	width: calc(50% - 1px);
	height: 3.33em;
	position: absolute;
	top: 0;
	left: 0;
	line-height: 3.33em;
	text-align: center;
	color: #FFF;
	font-size: 1.2em;
	background-color: #2F4684;
	background-image: url(../img/slant.png);
	background-repeat: repeat;
	border-radius: 6px 6px 0 0;
	cursor: pointer;
}
#contact_form dt.current {
	line-height: 3.93em;
	background-color: #FD9827;
	background-image: none;
	cursor: default;
}
#contact_form dt.assessment {
	left: auto;
	right: 0;
}
#contact_form dd {
	display: none;
}
#contact_form dt.current + dd {
	display: block;
}
#contact_form dd table {
	margin-bottom: 0;
}
#contact_form dd table caption {
	padding: 15px 0;
	color: #FFF;
	font-size: 1.1em;
	background-color: #2F4684;
}
#contact_form dd table + .center {
	padding-top: 30px;
}
#contact_form table {
	border: none;
}
#contact_form table th {
	padding: 15px;
	color: #FFF;
	vertical-align: middle;
	background-color: #666;
	border-right: 1px solid rgba(0,0,0,0.25);
	border-bottom: 1px solid rgba(0,0,0,0.25);
}
#contact_form table td {
	padding: 15px;
	background-color: #EEE;
	border-bottom: 1px solid rgba(0,0,0,0.25);
}
dd.assessment > p:first-child {
	margin: 0;
	padding: 20px 0;
}


/*------------------------------------ for & saler -------------------------------------*/
#for-saler section p,
#sale section p {
	padding-left: 1.5em;
}

.sale_cont {
	min-height: 121px;
	padding-left: 160px;
	position: relative;
}
.sale_cont > img {
	position: absolute;
	top: 0;
	left: 0;
}
.sale_cont > p {
	padding-left: 0 !important;
}


/*------------------------------------ search -------------------------------------*/
#search section.wrapper {
	padding: 0;
}
#search iframe {
	width: 100%;
	height: 80vh;
}


/*------------------------------------ qa -------------------------------------*/
#qa_list dt {
	margin: 0 0 10px 2em;
	position: relative;
}
#qa_list dt:before {
	content: "Q";
	position: absolute;
	top: 0;
	left: -1em;
	font-size: 2em;
	color: #E91C63;
}
#qa_list dd {
	margin-bottom: 30px;
	padding: 0 0 30px 4em;
	border-bottom: 1px dashed #CCC;
}
.qa_table {
	margin-top: 25px;
	margin-bottom: 25px;
	padding: calc(5px + 2.4em) 15px 15px;
	position: relative;
	background-color: #F9F9F9;
	border: 1px solid rgba(0,0,0,0.1);
}

.qa_table table {
	margin-bottom: 0;
	border-top: 0;
}
.qa_table table caption {
	padding: 0.7em 1em;
	line-height: 100%;
	color: #FFF;
	position: absolute;
	top: -10px;
	left: -10px;
	background-color: #8BC34A;
}
.qa_table table caption:before {
	content: "";
	width: 0;
	height: 0;
	display: block;
	position: absolute;
	bottom: -10px;
	left: 0;
	border: 5px solid #571;
	border-bottom-color: transparent;
	border-left-color: transparent;
}
.qa_table table tr:first-child th,
.qa_table table tr:first-child td {
	padding-top: 0;
}
.qa_table table tr:last-child th,
.qa_table table tr:last-child td {
	padding-bottom: 0;
	border: none;
}
#qa_list .flex {
	justify-content: space-between;
}


/*------------------------------------ news -------------------------------------*/
.art_cont {
	margin-bottom: 80px;
}
.art_cont:after {
	content: "";
	display: block;
	clear: both;
}
.art_cont time {
	padding: 0 0.6em;
	display: block;
	float: right;
	position: relative;
	color: #999;
	background-color: #EEE;
	border-radius: 3px;
	
	padding-left: 1.8em;
}
.art_cont time:before {
	content: "";
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	display: block;
	position: absolute;
	top: 50%;
	left: 0.6em;
	border: 2px solid #999;
	border-radius: 100%;
	box-sizing: border-box;
}
.art_cont time:after {
	content: "";
	width: 0.3em;
	height: 0.4em;
	margin-top: -0.25em;
	display: block;
	position: absolute;
	top: 50%;
	left: 1.05em;
	border-left: 2px solid #999;
	border-bottom: 2px solid #999;
	box-sizing: border-box;
}


/*------------------------------------ about -------------------------------------*/
#about table.fl {
	width: calc(100% - 430px);
}



/**************************************** トップ ****************************************/
/*------------------------------------ 長崎市北部、時津、長与の -------------------------------------*/
#top_img {
	overflow: hidden;
	position: relative;
	background-image: url(../img/top_bg.jpg);
	background-position: center top;
	background-size: 100% auto;
}
#top_img:before {
	content: url(../img/top_map.png);
	display: block;
	position: absolute;
	top: -50px;
	left: 50%;
	margin-left: 20%;
}
#top_img > div {
	padding: 110px 0 40px;
	position: relative;
}
#top_img h2 {
	width: 763px;
	height: 152px;
	margin-bottom: 110px;
	overflow: hidden;
	text-indent: 200%;
	white-space: nowrap;
	background-image: url(../img/top_copy.png);
}
#top_img ul {
	position: relative;
	align-items: stretch;
	justify-content: space-between;
	z-index: 2;
}
#top_img li {
	width: 250px;
}

#top_img li a {
	width: 100%;
	height: 100%;
	padding: 50px 0 170px;
	display: block;
	position: relative;
	color: #FFF;
	background-image: url(../img/slant.png);
	background-repeat: repeat;
	border-top: 1px solid rgba(255,255,255,0.2);
	border-radius: 4px;
	box-shadow: 0 0 8px 0 rgba(255,255,255,0.2);
}
#top_img li:nth-of-type(1) a { background-color: #E91C63; }
#top_img li:nth-of-type(2) a { background-color: #1FBCD4; }
#top_img li:nth-of-type(3) a { background-color: #FD9827; }
#top_img li:nth-of-type(4) a { background-color: #8BC34A; }
#top_img li a:before {
	margin-left: -60px;
	position: absolute;
	bottom: 30px;
	left: 50%;
}
#top_img li:nth-of-type(1) a:before { content: url(../img/top_icon1.png); }
#top_img li:nth-of-type(2) a:before { content: url(../img/top_icon2.png); }
#top_img li:nth-of-type(3) a:before { content: url(../img/top_icon3.png); }
#top_img li:nth-of-type(4) a:before { content: url(../img/top_icon4.png); }

#top_img li a strong {
	margin-bottom: 50px;
	display: block;
	line-height: 120%;
	font-size: 60px;
	font-weight: normal;
	text-align: center;
}
#top_img li a strong span {
	font-size: 21px;
	display: block;
	line-height: 120%;
}
#top_img li a p {
	padding: 0 18px;
	line-height: 145%;
	font-weight: normal;
}


/*------------------------------------ 不動産売却をお考えの方へ -------------------------------------*/
#top_saler {
	position: relative;
	background-image: url(../img/top_bg2.jpg);
	background-position: center;
	background-size: cover;
}
#top_saler:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url(../img/top_bg3.png);
	background-repeat: repeat;
}
#top_saler > div {
	padding: 80px 0 80px;
	position: relative;
	z-index: 2;
}
#top_saler h2 {
	margin-bottom: 80px;
	color: #FFF;
	font-size: 45px;
	font-weight: normal;
	line-height: 100%;
	text-align: center;
}
#top_saler ul {
	display: flex;
	justify-content: space-between;
}
#top_saler ul li {
}
#top_saler ul li a {
	width: 335px;
	height: 318px;
	padding: 120px 0 0;
	display: block;
	text-align: center;
	color: #FFF;
	line-height: 120%;
	font-size: 24px;
	text-shadow: 0 2px 10px #000;
	border: 2px solid #FFF;
	background-color: rgba(0,0,0,0.1);
	background-repeat: repeat;
	border-radius: 6px;
	transition: 0.4s;
}
#top_saler ul li a strong {
	display: block;
	line-height: 120%;
	font-size: 40px;
	font-weight: normal;
}


/*------------------------------------ 最新売買物件 -------------------------------------*/
#top_article {
	position: relative;
	background-image: url(../img/top_bg5.jpg);
	background-position: center;
	background-size: cover;
}
#top_article > div {
	padding: 80px 0 60px;
	text-align: center;
}
#top_article h2 {
	margin-bottom: 80px;
	font-size: 45px;
	font-weight: normal;
	line-height: 100%;
	text-align: center;
}
#top_article > div iframe {
	width: 931px;
}
#top_article dl {
	margin: 0 auto;
}
#top_article dl dt {
	padding: 10px 20px;
	color: #FFF;
	background-color: #2F4684;
	border-radius: 4px 0px 0px 4px;
}
#top_article dl dd {
	padding: 10px 20px;
	background-color: #FFF;
	border-radius: 0px 4px 4px 0px;
}


/*------------------------------------ お知らせ -------------------------------------*/
#top_news > div {
	padding: 80px 0 80px;
	justify-content: space-between;
}
#top_news > div > div {
	margin-right: 85px;
}
#top_news > div > div h2 {
	margin-bottom: 20px;
	line-height: 100%;
	color: #2D4684;
	font-size: 45px;
}
#top_news > div > div a {
	width: 100%;
	display: block;
}
#top_news > div > dl {
	flex-grow: 2;
	border-top: 1px solid #EEE;
}
#top_news > div > dl dt {
	width: 8.5em;
	margin-right: -8.5em;
	padding: 30px 0;
	float: left;
	clear: both;
}
#top_news > div > dl dd {
	padding: 30px 0 30px 8.5em;
	border-bottom: 1px solid #EEE;
}


/*------------------------------------ 当社の強み -------------------------------------*/
#top_feature {
	background-color: #EEE;
}
#top_feature > div {
	padding: 80px 0 80px;
	text-align: center;
}
#top_feature h2 {
	margin-bottom: 50px;
	font-size: 45px;
	font-weight: normal;
	line-height: 100%;
}
#top_feature ol {
	margin-bottom: 20px;
	display: inline-block;
}
#top_feature ol li {
	margin-bottom: 30px;
	padding-bottom: 8px;
	position: relative;
	font-size: 1.5em;
	text-align: left;
}
#top_feature ol li:after {
	content: "";
	width: 100%;
	height: 5px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #E91C63;
	background-image: url(../img/slant.png);
	background-repeat: repeat;
	opacity: 0.35;
}
#top_feature ol li:nth-of-type(1):before { content: "1."; }
#top_feature ol li:nth-of-type(2):before { content: "2."; }
#top_feature ol li:nth-of-type(3):before { content: "3."; }
#top_feature ol li:nth-of-type(4):before { content: "4."; }
#top_feature .btn {
	width: 240px;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* footer */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
footer {
	color: #FFF;
	background-color: #2F4684;
}
footer > div:first-child {
	padding: 120px 0;
	background-image: url(../img/footer_bg.png);
	background-position: right top;
	background-size: auto 100%;
}
.sub footer > div:first-child {
	padding: 60px 0;
}
footer h2 {
	width: 261px;
	height: 36px;
	margin-bottom: 20px;
	overflow: hidden;
	text-indent: 200%;
	white-space: nowrap;
	background-image: url(../img/footer_logo.png);
	background-position: center;
}
footer dl dt {
	width: 6em;
	margin-right: -6em;
	margin-bottom: 10px;
	float: left;
	clear: both;
	font-size: 0.9em;
	line-height: 24px;
	color: #2F4684;
	text-align: center;
	background-color: rgba(255,255,255,0.75);
	border-radius: 2px;
}
footer dl dd {
	margin-bottom: 10px;
	padding-left: 6.5em;
	line-height: 24px;
}

footer > p {
	line-height: 50px;
	font-size: 0.8em;
}

















/* /////////////////////////////////////////////////////////////////////////////////////// */
/* PC */
/* /////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 641px) {
.scroll header > div {
	padding: 7px 0 7px 122px;
}
.scroll nav > div {
	height: 60px;
}
.scroll nav > div:before {
	top: -99px;
	left: -102px;
	transform: scale(0.8);
}
.scroll nav a,
.scroll nav a:hover {
	height: 60px;
}
.scroll nav a:not(.current):before {
	height: 60px;
	top: 60px;
}
.scroll article {
	padding-top: 145px;
}

.btn:hover {
	color: #FFF;
	background-color: #FD9827;
}
header a.btn.slant:hover {
	background-color: #2E4684;
}
nav a:not(.current):hover:before {
	top: 0%;
	transition: 0.2s;
}
header h1 a:hover {
	opacity: 0.8;
}

/* カード */
#top_img li {
	-webkit-perspective: 1000;
	-moz-perspective: 1000px;
	-o-perspective: 1000;
	perspective: 1000;
}
#top_img li:hover a {
	-webkit-transform: rotateY(180deg) scale(1.1);
	-moz-transform: rotateY(180deg) scale(1.1);
	-o-transform: rotateY(180deg) scale(1.1);
	transform: rotateY(180deg) scale(1.1);
}
#top_img li:hover a > * {
	-webkit-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
}
#top_img li a,
#top_img li a > * {
	-webkit-transition: 0.6s;
	-webkit-transform-style: preserve-3d;
	-moz-transition: 0.6s;
	-moz-transform-style: preserve-3d;
	-o-transition: 0.6s;
	-o-transform-style: preserve-3d;
	transition: 0.6s;
	transform-style: preserve-3d;
}

#top_saler ul li a:hover {
	background-color: rgba(0,0,0,0.4);
	transform: scale(1.05);
}
}

















/* /////////////////////////////////////////////////////////////////////////////////////// */
/* PC 1240 */
/* /////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 1400px) {
#top_img:before {
	margin-left: 285px;
}
}
















/* /////////////////////////////////////////////////////////////////////////////////////// */
/* スマホ */
/* /////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 641px) {
body {
	font-size: 1.1em;
	line-height: 160%;
}

img {
	max-width: 100%;
}





/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* 汎用 */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.btn {
	height: auto;
	padding: 15px;
	line-height: 120%;
	font-size: 1em;
}
#for-saler .btn {
	text-align: left;
}

.wrapper {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.btn {
	background-color: #2F4684;
	border-raidus: 4px;
}
.btn:hover {
	color: #FFF;
	background-color: #FD9827;
}
.slant {
	background-image: url(../img/slant.png);
	background-position: left top;
	background-repeat: repeat;
}




/* /////////////////////////////////////////////////////////////////////////////////////// */
/* header */
/* /////////////////////////////////////////////////////////////////////////////////////// */
header {
	position: static;
	padding-top: 76px;
	background-color: #EEE;
}
header .wrapper {
	padding-left: 0;
}
header > div {
	padding: 10px 0 15px;
	text-align: center;
}
header h1 {
	width: 100%;
	height: 16vw;
	margin: 0;
	padding: 2vw;
	float: none;
	overflow: visible;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #FFF;
	background-position: 10px center;
	z-index: 10;
}
header h1 a {
	width: calc(100% - 16vw);
	max-width: 297px;
	height: 100%;
	background-position: left center;
	background-size: contain;
}
header h1:after {
	content: "";
	width: 100%;
	height: 5px;
	display: block;
	position: absolute;
	bottom: -5px;
	left: 0;
	background-color: rgba(0,0,0,0.1);
	background-image: url(../img/slant.png);
	background-repeat: repeat;
}
header a.btn.slant {
	width: 13em;
	height: 50px;
	display: block;
	margin: 0 auto 10px;
	float: none;
	line-height: 50px;
}
#tel {
	margin: 0 auto;
	display: inline-block;
	float: none;
}

nav {
	width: 100%;
	height: 100%;
	padding-top: 16vw;
	position: fixed;
	top: -100%;
	left: 0;
	background-color: rgba(46,70,132,0.9);
	border-bottom: 10px solid #FD9827;
	z-index: 9;
	box-sizing: border-box;
	transition: 0.3s;
}
nav.active {
	top: 0;
}
nav > div {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	transition: 0.4s;
}
nav > div:before {
	display: none;
}
nav a,
nav a:hover {
	width: 50%;
	height: 20%;
	padding: 17% 0 0;
	display: block;
	font-size: 3.6vw;
	line-height: 100%;
	border: 1px solid rgba(255,255,255,0.3);
}
nav a:nth-of-type(2),
nav a:nth-of-type(2):hover {
	padding: 15% 0 0;
}
nav a:after {
	width: 16vw;
	margin-left: -8vw;
	position: absolute;
	top: 33%;
	left: 50%;
	font-family: 'fontello';
	font-size: 10vw;
	text-align: center;
}
nav a:nth-of-type(1):after { content: ""; font-size: 12vw; }
nav a:nth-of-type(2):after { content: ""; font-size: 10vw; }
nav a:nth-of-type(3):after { content: ""; }
nav a:nth-of-type(4):after { content: ""; font-size: 12vw; }
nav a:nth-of-type(5):after { content: ""; }
nav a:nth-of-type(6):after { content: ""; font-size: 13vw; }
nav a:nth-of-type(7):after { content: ""; font-size: 11vw; }
nav a:nth-of-type(8):after { content: ""; }
nav a:nth-of-type(9):after { content: ""; font-size: 11vw; }

nav a.current:before {
	content: "";
	width: 100%;
	height: 10px;
	position: absolute;
	left: 0;
	bottom: -10px;
	background-color: #966F55;
}
nav a:not(.current):before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #FD9827;
	transition: 0.4s;
	z-index: 0;
}
nav a span {
	position: relative;
	z-index: 1;
}

#sp_menu_btn {
	width: 12vw;
	height: 12vw;
	padding-top: 7.5vw;
	display: block;
	position: fixed;
	top: 2vw;
	right: 2vw;
	line-height: 100%;
	color: #FFF;
	font-size: 3vw;
	text-align: center;
	background-color: #FD9827;
	background-image: url(../img/slant.png);
	background-repeat: repeat;
	border-radius: 0.5vw;
	z-index: 10;
	cursor: pointer;
}
#sp_menu_btn span {
	top: 4vw;
	left: 3vw;
}
#sp_menu_btn span,
#sp_menu_btn span:before,
#sp_menu_btn span:after {
	content: "";
	width: 6vw;
	height: 0.5vw;
	display: block;
	position: absolute;
	background-color: #FFF;
	transition: 0.3s;
}
#sp_menu_btn span:before {
	top: -2vw;
	left: 0;
}
#sp_menu_btn span:after {
	top: 2vw;
	left: 0;
}

#sp_menu_btn.active span {
	background-color: transparent;
}
#sp_menu_btn.active span:before {
	top: 0;
	transform: rotate(225deg);
}
#sp_menu_btn.active span:after {
	top: 0;
	transform: rotate(-225deg);
}

header > div > ul.no_list {
	width: 15.8em;
	margin: 15px auto 0;
	padding: 0 !important;
	float: none;
}
header > div > ul.no_list li {
	width: calc(50% - 1px);
	margin: 0 0 2px 0 !important;
	background-color: #FFF;
}
header > div > ul.no_list li:nth-of-type(even) {
	float: right;
}



/* /////////////////////////////////////////////////////////////////////////////////////// */
/* article */
/* /////////////////////////////////////////////////////////////////////////////////////// */
article {
	padding-top: 0;
}

article > section section {
	padding-left: 6vw;
	padding-right: 6vw;
}

#page_title {
	height: auto;
	padding: 15vw 0;
}
#page_title h2 {
	line-height: 100%;
	font-size: 10vw;
}
#for-saler #page_title h2 {
	font-size: 8vw;
}

h3 {
	margin: 0 -6vw 6vw;
	padding: 0.75em 7.5vw;
	line-height: 120%;
	position: relative;
	color: #2F4684;
	font-size: 6.5vw;
	background-color: #F9F9F9;
}
h3:first-letter {
	margin: 0;
	float: none;
	font-size: 1em;
	font-weight: bold;
	vertical-align: inherit;
}
h3:before,
h3:after {
	content: "";
	width: 100%;
	height: 0.3em;
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: #EEE;
	background-color: #2F4684;
	background-color: #FD9827;
	background-image: url(../img/slant.png);
	background-repeat: repeat;
}
h3:before {
	top: 0;
	bottom: auto;
}

h4 {
	font-size: 5vw;
}

br.sp {
	display: block;
}

.img_box {
	padding-left: 0;
	text-align: center;
}
.img_box > img {
	width: auto;
	float: none;
	margin-bottom: 10px;
}
.img_box > img.fl {
	margin-right: 0;
}
.img_box > img.fr {
	margin-left: 0;
}
.img_box p {
	text-align: left;
}


/*------------------------------------ inquiry -------------------------------------*/
#contact_form {
	margin-top: -40px;
}
#contact_form dt {
	border-radius: 0;
}
#contact_form table,
#contact_form table caption,
#contact_form table tbody ,
#contact_form table tr ,
#contact_form table th ,
#contact_form table td {
	width: 100%;
	display: block;
	box-sizing: border-box;
}
#contact_form table input:not(.w_max)[type="text"] {
	width: 48%;
	width: calc((100% - 1em) / 2);
}
#contact_form dd p {
	margin-left: 6vw;
	margin-right: 6vw;
}
#contact_form input[type="radio"] + *,
#contact_form input[type="checkbox"] + * {
	white-space: normal;
}


/*------------------------------------ for & saler -------------------------------------*/
#for-saler section p,
#sale section p {
	padding-left: 0;
}

.sale_cont {
	padding-left: 0;
	text-align: center;
}
.sale_cont > img {
	margin-bottom: 10px;
	position: static;
}
.sale_cont > * {
	text-align: left;
}



/*------------------------------------ for-saler -------------------------------------*/
.sub article li dd {
	padding-left: 0;
}
#for-saler table,
#for-saler tbody,
#for-saler tr,
#for-saler th,
#for-saler td {
	display: block;
}
#for-saler th {
	padding-bottom: 0;
	padding-right: 0;
	border-bottom: none;
}
#for-saler td {
	width: 100%;
	padding-top: 5px;
}


/*------------------------------------ search -------------------------------------*/
#search #page_title {
	margin-bottom: 0;
}
#search section.wrapper {
	margin-bottom: 0;
}


/*------------------------------------ qa -------------------------------------*/
#qa_list dd {
	padding-left: 2.4em;
}
.qa_table {
	padding-top: 0;
}
.qa_table table,
.qa_table table caption,
.qa_table table tbody,
.qa_table table tr,
.qa_table table th,
.qa_table table td {
	width: 100%;
	display: block;
}
.qa_table table caption {
	width: calc(100% + 32px);
	margin: -1px -16px 15px;
	position: static;
}
.qa_table table caption:before {
	display: none;
}
.qa_table table th {
	padding-bottom: 0;
	border: none;
}
.qa_table table td {
	padding-top: 0;
}
.qa_table table tr:first-child th,
.qa_table table tr:first-child td {
	padding-top: 0;
}
.qa_table table tr:last-child th,
.qa_table table tr:last-child td {
	padding-bottom: 0;
	border: none;
}
#qa_list .flex {
	display: block;
}


/*------------------------------------ news -------------------------------------*/
.art_cont {
	padding: 0;
}
.art_cont h3 {
	margin-bottom: 5vw;
}
.art_body {
	margin-bottom: 1em;
}


/*------------------------------------ about -------------------------------------*/
#about table.fl {
	width: 100%;
	margin-bottom: 30px;
}


/**************************************** トップ ****************************************/
/*------------------------------------ 長崎市北部、時津、長与の -------------------------------------*/
#top_img {
	background-size: 150% auto;
}
#top_img:before {
	display: none;
}
#top_img > div {
	padding: 50px 0 15px;
}
#top_img h2 {
	width: 90%;
	height: 17vw;
	margin: 0 auto 50px;
	background-position: center top;
	background-size: 100% auto;
}
#top_img > div:before {
	display: none;
}

#top_img ul {
	flex-wrap: wrap;
	justify-content: center;
}
#top_img li {
	width: 90%;
	margin-bottom: 10px;
}

#top_img li a {
	padding: 0;
	display: flex;
	align-items: stretch;
}
#top_img li a:before {
	display: none;
}
#top_img li a strong {
	width: 6em;
	width: 50%;
	margin-bottom: 0;
	padding: 20px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	flex-shlink: 0;
}
#top_img li a p {
	width: 50%;
	padding: 20px;
	background-color: rgba(0,0,0,0.2);
}


/*------------------------------------ 不動産売却をお考えの方へ -------------------------------------*/
#top_saler > div {
	padding: 30px 0 15px;
}
#top_saler h2,
#top_article h2,
#top_feature h2 {
	margin-bottom: 30px;
	font-size: 7vw;
}
#top_saler ul {
	display: block;
}
#top_saler ul li {
	width: 90%;
	margin: 0 auto 15px;
}
#top_saler ul li a {
	width: 100%;
	height: 100%;
	padding: 2em 0;
	font-size: 24px;
}


/*------------------------------------ 最新売買物件 -------------------------------------*/
#top_article > div {
	padding: 30px 0 15px;
	overflow: auto;
}


/*------------------------------------ お知らせ -------------------------------------*/
#top_news > div {
	padding: 15px 0 0;
	display: block;
}
#top_news > div > div {
	margin: 0 0 15px;
	padding: 0 15px;
}
#top_news > div > div:after {
	content: "";
	display: block;
	clear: both;
}
#top_news > div > div h2 {
	margin-bottom: 0;
	float: left;
	line-height: 50px;
	font-size: 7vw;
}
#top_news > div > div a {
	width: auto;
	display: block;
	float: right;
}
#top_news > div > dl {
	width: 90%;
	margin: 0 auto;
	border-top: none;
}
#top_news > div > dl dt {
	padding: 20px 0;
}
#top_news > div > dl dd {
	padding: 20px 0 20px 8.5em;
	border-top: 1px solid #EEE;
	border-bottom: none;
}


/*------------------------------------ 当社の強み -------------------------------------*/
#top_feature > div {
	padding: 30px 0 15px;
}
#top_feature ol {
	width: 90%;
	margin-bottom: 20px;
	display: inline-block;
}
#top_feature ol li {
	margin-bottom: 25px;
	padding-bottom: 15px;
	padding-left: 1.2em;
	font-size: 1.1em;
	position: relative;
}
#top_feature ol li:before {
	position: absolute;
	top: 0;
	left: 0;
}
#top_feature .btn {
	width: 90%;
	margin: -20px auto 20px;
}





/* /////////////////////////////////////////////////////////////////////////////////////// */
/* aside */
/* /////////////////////////////////////////////////////////////////////////////////////// */





/*------------------------------------ 不動産売却をお考えの方へ -------------------------------------*/
#top_saler ul {
	display: block;
}



/* /////////////////////////////////////////////////////////////////////////////////////// */
/* footer */
/* /////////////////////////////////////////////////////////////////////////////////////// */
footer > div:first-child,
.sub footer > div:first-child {
	padding: 30px 0;
	background-image: url(../img/footer_bg.png);
	background-position: right top;
	background-size: auto 100%;
	background-image: none;
}
footer h2 {
	width: 90%;
	height: 10vw;
	margin: 0 auto 20px;
	background-image: url(../img/footer_logo.png);
	background-position: left center;
}
footer dl {
	width: 90%;
	margin: 0 auto;
}
footer dl dt {
	width: 5em;
	margin-right: -5em;
	margin-bottom: 15px;
}
footer dl dd {
	margin-bottom: 15px;
	padding-left: 5.1em;
}

footer > p {
	font-size: 3vw;
}
}



