@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Damion&family=M+PLUS+1p:wght@400;500;700;800;900&family=Poppins:wght@600;700&display=swap');

/*! minireset.css v0.0.5 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

ul {
	list-style: none;
}

button,
input,
select,
textarea {
	margin: 0;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

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

iframe {
	border: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
	text-align: left;
}

/* =========================================================
　◆Common Variable
========================================================= */
/* =========================================================
　◆Link Style
========================================================= */
a:link,
a:visited,
a:active {
	text-decoration: none;
}

a:hover img {
	opacity: 0.8;
}

/* =========================================================
　◆Basic
========================================================= */
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: none;
}

body {
	padding-top: 70px;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	background: #fff;
	font: 16px / 1.6 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #231815;
	min-width: 1100px;
}

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

figure {
	background: transparent;
	border: 0;
	font-size: 100%;
	outline: 0;
	vertical-align: baseline;
}

a {
	color: #231815;
}

/* clear */
.clear {
	clear: both !important;
}

/* clearfix */
.cFix:after {
	clear: both;
	content: "";
	display: block;
}

/* btn */
.btnCommon {
	background-color: #005bac;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	width: 380px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 0 auto;
	transition: 0.2s;
	overflow: hidden;
}
.btnCommon:hover {
	color: #005bac;
}
.btnCommon:hover .btn_bg {
	left: 0;
}
.btnCommon:after {
	content: '';
	width: 12px;
	height: 12px;
	border: 0px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 14px;
	z-index: 3;
	margin-top: -6px;
}
.btnCommon:hover::after {
	border-top-color: #005bac;
	border-right-color: #005bac;
}
.btnCommon_span {
	position: relative;
	z-index: 3;
}
.el_hover {
	display: block;
	transition: 0.2s;
	cursor: pointer;
}
.el_hover:hover {
	opacity: 0.7;
}

.btnBuySell {
	position: relative;
	border: solid 3px #005bac;
	background-color: #fff;
	color: #005bac;
	font-size: 30px;
	font-weight: 600;
	width: 380px;
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	margin: 0 auto;
	transition: 0.2s;
	overflow: hidden;
}
.btnBuySell:hover {
	color: #fff;
}
.btn_bg {
	position: absolute;
	top: 0;
	left: -105%;
	width: 100%;
	height: 100%;
	background-color: #005bac;
	transition: 0.2s;
}
.btn_bg.btn_bg02 {
	background-color: #c3e2ff;
}
.btn_bg.btn_bg03 {
	background-color: #c2edc2;
}
.btnBuySell:hover .btn_bg  {
	left: 0;
}
.btnBuySellTxt {
	position: relative;
	z-index: 5;
}
.btnBuySellTxtSmall {
	position: relative;
	z-index: 1;
	font-size: 20px;
	display: block;
	padding-top: 10px;
	z-index: 5;
}

.btnBuySell:after {
	content: '';
	width: 12px;
	height: 12px;
	border: 0px;
	border-top: solid 2px #005bac;
	border-right: solid 2px #005bac;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 14px;
	z-index: 2;
	margin-top: -6px;
	transition: 0.2s;
}
.btnBuySell:hover::after {
	border-top-color: #fff;
	border-right-color: #fff;
}

.btnBuySell:before {
	font-family: 'Damion', cursive;
	font-size: 63px;
	position: absolute;
	top: -15px;
	left: -5px;
	color: #d3eafe;
	font-weight: 400;
	transform: rotate(-10deg);
	transition: 0.2s;
	z-index: 2;
}
.btnBuySell:hover::before {
	color: #2f79bd;
}

.btnBuy:before {
	content: "Buy"
}

.btnSell:before {
	content: "Sell"
}

.buySellBtn {
	display: flex;
	width: 77%;
	margin: 0 auto;
}

.btnContact {
	background-color: #005bac;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	width: 100%;
	height: 94px;
	display: flex;
	align-items: center;
	position: relative;
	margin: 0 auto;
	overflow: hidden;
}

.btnContact:after {
	content: '';
	width: 12px;
	height: 12px;
	border: 0px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 14px;
	margin-top: -6px;
}

.btnContactMail {
	margin-bottom: 35px;
	transition: 0.2s;
}
.btnContactMail:hover {
	color: #005bac;
}
.btnContactMail:hover .btn_bg {
	left: 0;
}
.btnContactMail:hover::after {
	border-top-color: #005bac;
	border-right-color: #005bac;
}
.btnContactLine {
	background-color: #00b900;
	transition: 0.2s;
}
.btnContactLine:hover {
	color: #00b900;
}
.btnContactLine:hover .btn_bg {
	left: 0;
}
.btnContactLine:hover::after {
	border-top-color: #00b900;
	border-right-color: #00b900;
}

.btnContactIcon {
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 112px;
	width: 48px;
	height: 46px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/icon_mail.png);
	transition: 0.2s;
}
.btnContactMail:hover .btnContactIcon {
	background-image: url(../images/icon_mail_hover.png);
}

.btnContactIcon.btnContactIcon_line {
	background-image: url(../images/icon_line.png);
}
.btnContactLine:hover .btnContactIcon.btnContactIcon_line {
	background-image: url(../images/icon_line_hover.png);
}

.btnContactTxt {
	position: relative;
	z-index: 5;
	padding-left: 190px;
}

.inner {
	width: 1100px;
	margin: 0 auto;
}

.f600 {
	font-weight: 600;
}

.lineheight18 {
	line-height: 1.8;
}

.underlineYellow {
	background: linear-gradient(transparent 60%, #f8f01d 60%);
	font-weight: 600;
}

.pcNone {
	display: none;
}

.spNone {
	display: initial;
}

@media screen and (max-width:768px) {
	body {
		padding-top: 50px;
		font-size: 14px;
		min-width: 1px;
	}

	/* btn */
	.btnCommon {
		font-size: 15px;
		width: 240px;
		height: 50px;
	}

	.btnCommon:after {
		width: 10px;
		height: 10px;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
	}

	.btnBuySell {
		border: solid 2px #005bac;
		font-size: 21px;
		width: 100%;
		height: 82px;
		margin-bottom: 10px;
	}

	.btnBuySellTxtSmall {
		font-size: 14px;
		padding-top: 0;
	}

	.btnBuySell:after {
		width: 10px;
		height: 10px;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
	}

	.btnBuySell:before {
		font-size: 44px;
		position: absolute;
		top: -10px;
		left: 20px;
	}

	.buySellBtn {
		flex-direction: column;
		width: 100%;
	}

	.btnContact {
		font-size: 15px;
		height: 55px;
	}

	.btnContact:after {
		width: 10px;
		height: 10px;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
	}

	.btnContactMail {
		margin-bottom: 10px;
	}

	.btnContactIcon {
		left: 25px;
	}

	.btnContactIconImg {
		width: 27px;
	}

	.btnContactTxt {
		padding-left: 0;
		text-align: center;
		width: 100%;
	}

	.inner {
		width: 100%;
		padding: 0 15px;
	}

	.pcNone {
		display: initial;
	}

	.spNone {
		display: none;
	}
}

/* =========================================================
　◆Header
========================================================= */
.ly_header {
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 20px;
	padding-left: 50px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background-color: #fff;
	min-width: 1100px;
}

.bl_logo {
	width: 325px;
}

.bl_navWrap {
	display: block;
}

.bl_btn {
	display: none;
}

.bl_gnav {
	font-size: 16px;
	font-weight: 500;
	font-family: 'M PLUS 1p', sans-serif;
}

.bl_gnav_list {
	display: flex;
	align-items: center;
}

.bl_gnav_list_item {
	padding-right: 50px;
}

.bl_gnav_list_item:last-child {
	padding-right: 0;
}
.bl_gnav_list_link {
	display: block;
	position: relative;
	padding-top: 27px;
	padding-bottom: 27px;
	line-height: 1;
	overflow: hidden;
}
.bl_gnav_list_link::after {
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	height: 5px;
	width: 0;
	top: auto;
	bottom: 0;
	left: auto;
	right: 0;
	background-color: #005BAC;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
	-ms-transition-duration: 0.5s;
	-ms-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
	-moz-transition-duration: 0.5s;
	-moz-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
	pointer-events: none;
}
.bl_gnav_list_link:hover::after,
.bl_gnav_list_link:active::after {
	width: 100%;
	right: auto;
	left: 0;
}

@media screen and (min-width:769px) {
	.bl_navWrap {
		display: block!important;
	}
}
@media screen and (max-width:768px) {
	.ly_header {
		height: 50px;
		padding: 0 15px;
		min-width: 1px;
	}

	.bl_logo {
		width: 186px;
	}

	.bl_gnav_list {

	}

	.bl_gnav_list_item {
		padding-right: 0;
	}

	.bl_gnav_list_link {
		position: relative;
		padding-top: 17px;
		padding-bottom: 16px;
		color: #231815;
		font-size: 16px;
		border-top: 1px solid #231815;
		text-align: center;
	}
	.bl_gnav_list_link::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		right: 15px;
		margin-top: -5px;
		width: 10px;
		height: 10px;
		border-top: 2px solid #231815;
		border-right: 2px solid #231815;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.bl_gnav_list_item:last-child .bl_gnav_list_link {
		border-bottom: 1px solid #231815;
	}
	.bl_gnav_list_link::after {
		display: none;
	}

	.bl_btn {
		display: block;
		width: 30px;
		height: 44px;
		position: relative;
		z-index: 9;
		border: none;
	}

	.bl_bar {
		width: 30px;
		height: 3px;
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		background-color: #231815;
	}

	.bl_barTop {
		top: 5px;
	}

	.bl_barMid {
		top: 15px;
		transform: translate(-50%, -50%);
	}

	.bl_barBottom {
		top: 23px;
	}

	.btnMenu {
		position: absolute;
		bottom: 0;
		font-size: 9px;
		font-weight: 600;
	}

	.bl_btn.close .bl_barTop {
		transform: translate(-50%, 10px) rotate(45deg);
		transition: transform .3s;
	}

	.bl_btn.close .bl_barMid {
		opacity: 0;
		transition: opacity .3s;
	}

	.bl_btn.close .bl_barBottom {
		transform: translate(-50%, -8px) rotate(-45deg);
		transition: transform .3s;
	}
	.btnMenu_close {
		margin-left: -2px;
	}
	.btnMenu_open {
		display: none;
	}
	.bl_btn.close .btnMenu_close {
		display: none;
	}
	.bl_btn.close .btnMenu_open {
		display: block;
		margin-left: -3px;
	}

	.bl_navWrap {
		display: none;
		width: 100%;
		position: absolute;
		top: 50px;
		left: 0;
		z-index: 7;
		background-color: #fff;
	}

	.bl_gnav {
		width: 100%;
		height: 100%;

		z-index: 7;
	}

	.bl_gnav_list {
		display: block;
	}

	body.noscroll {

	}
}


/* =========================================================
　◆BreadClumb
========================================================= */
@media screen and (max-width:768px) {}

/* =========================================================
　◆ly_footer
========================================================= */
.ly_footer {
	text-align: center;
	border-top: solid 1px #231815;
	padding: 30px 0 25px;
	margin-top: 30px;
}

.bl_footerLogo {
	margin-bottom: 24px;
}

.bl_footerLogoImg {
	width: 252px;
}

.bl_footerTitle {
	font-weight: 600;
	margin-bottom: 4px;
}

.bl_footerDetail {
	font-size: 14px;
	margin-bottom: 24px;
}

.bl_footerCopyright {
	color: #a29d9c;
	font-size: 10px;
}

@media screen and (max-width:768px) {
	.ly_footer {
		padding-bottom: 80px;
	}
	.bl_footer {
		padding: 20px 0 15px;
		margin-top: 0;
	}

	.bl_footerLogo {
		margin-bottom: 16px;
	}

	.bl_footerLogoImg {
		width: 221px;
	}

	.bl_footerTitle {
		font-size: 13px;
	}

	.bl_footerDetail {
		font-size: 11px;
		margin-bottom: 16px;
	}

}


/* =========================================================
　◆index
========================================================= */
.bl_headingH2 {
	text-align: center;
	line-height: 1;
	margin-bottom: 40px;
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: 500;
}

.bl_headingH2 span.bl_headingH2Common {
	position: relative;
	font-size: 36px;
	display: inline-block;
	padding-bottom: 24px;
}

.bl_headingH2 span.bl_headingH2Small {
	font-size: 22px;
	display: block;
	margin-bottom: 20px;
}

.bl_headingH2 span.bl_headingH2Common:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 8px;
	content: '';
	background: linear-gradient(90deg, #005bac 0%, #005bac 50%, #c3e2ff 50%, #c3e2ff 100%);
}
.bl_btnWrap {
	display: none!important;
}


@media screen and (max-width:768px) {
	.bl_headingH2 {
		margin-bottom: 20px;
	}

	.bl_headingH2 span.bl_headingH2Common {
		font-size: 22px;
		padding-bottom: 13px;
	}

	.bl_headingH2 span.bl_headingH2Small {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.bl_headingH2 span.bl_headingH2Common:after {
		height: 4px;
	}
	.bl_btnWrap {
		display: block!important;
	}
	.bl_gnav_list_line {
		display: inline-block;
		vertical-align: middle;
	}
	.bl_btn {
		display: inline-block;
		vertical-align: middle;
		margin-left: 15px;
	}
	.bl_gnav_list_line_link img {
		width: 32px;
	}
}

/* ---- MAIN VISUAL ----- */
#mainVisual {
	text-align: center;
}

.un_mv {
	background-color: #84bfff;
}
.un_mv img {
	width: 100%;
	max-width: none;
}
.un_topBtnWrap {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #e8f4ff;
}
.un_topBtnWrap .buySellBtn {
	width: 780px;
	justify-content: space-between;
}
.un_topBtnWrap .btnBuySell {
	display: block;
	margin: 0;
	padding-top: 21px;
	padding-bottom: 21px;
	height: auto;
}
.un_topBtnWrap .btnBuySell:before {
	top: -10px;
	left: 10px;
}
.buySellBtn_topBtn .btnBuySellTxtSmall {
	display: inline-block;
	vertical-align: middle;
	padding-top: 0;
	margin-right: 8px;
	position: relative;
	z-index: 3;
}
.buySellBtn_topBtn .btnBuySellTxt {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 3;
}

@media screen and (max-width:768px) {
	.un_topBtnWrap {
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		z-index: 10;
		text-align: center;
	}
	.un_topBtnWrap {
		padding-top: 0;
		padding-bottom: 0;
		background-color: transparent;
	}
	.un_topBtnWrap .buySellBtn {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
	}
	.un_topBtnWrap .btnBuySell {
		flex-shrink: 0;
		width: 50%;
		margin: 0;
		padding-top: 13px;
		padding-bottom: 12px;
		height: auto;
		border-bottom: none;
	}
	.un_topBtnWrap .btnBuySell:first-child {
		border-right: none;
		border-left: none;
	}
	.un_topBtnWrap .btnBuySell:last-child {
		border-right: none;
	}
	.un_topBtnWrap .btnBuySell:before {

	}
	.un_topBtnWrap .btnBuySell:after {
		display: none!important;
	}

	.buySellBtn_topBtn .btnBuySellTxtSmall {
		display: block;
		padding-top: 0;
		margin-right: 0;
		margin-bottom: 4px;
		line-height: 1;
		font-size: 14px;
	}
	.buySellBtn_topBtn .btnBuySellTxt {
		display: block;
		line-height: 1;
		font-size: 21px;
	}

}


/* ---- ABOUT ----- */
#about {
	padding: 80px 0 95px;
}

#about .aboutTxt {
	display: block;
	text-align: center;
}

#about .pointList {
	display: flex;
	justify-content: space-between;
	margin: 50px 0 25px;
}

#about .pointList .pointListLi {
	background: url(../../images/point_bg.png)repeat;
	box-shadow: 1px 1px 2px 0px rgba(0, 91, 172, 0.3);
	width: 360px;
	position: relative;
}

#about .pointList .pointListLi:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: 0px;
	left: 0;
	border-style: solid;
	border-color: #fff transparent transparent transparent;
	border-width: 54px 180px 0 0;
	z-index: 1;
}

#about .pointList li:before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: 0px;
	right: 0;
	border-style: solid;
	border-color: #fff transparent transparent transparent;
	border-width: 54px 0 0 180px;
	z-index: 1;
	box-shadow: 2px 0px 0 #fff;
}

#about .pointNum {
	position: absolute;
	z-index: 5;
	color: #005bac;
	width: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
	line-height: 1;
	top: -10px;
}

#about .pointNum .pointNumTxt {
	font-family: 'Damion', cursive;
	font-size: 42px;
	transform: rotate(-10deg);
	position: relative;
}

#about .pointNum .pointNumTxt:after {
	content: '';
	display: inline-block;
	width: 24px;
	height: 19px;
	background-image: url(../../images/point_after.png);
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	top: -10px;
	left: 60%;
	transform: rotate(10deg);
}

#about .pointNum .pointNumNum {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 45px;
}

#about .pointNum:after {
	content: "";
	width: 40px;
	height: 2px;
	background-color: #005bac;
	position: absolute;
	bottom: -11px;
	left: 50%;
	transform: translateX(-50%);
}

#about .pointListTxt {
	padding: 105px 10px 20px;
	text-align: center;
}

@media screen and (max-width:768px) {
	#about {
		padding: 25px 0;
	}

	#about .aboutTxt {
		text-align: left;
	}

	#about .pointList {
		flex-direction: column;
		margin: 15px 0 0;
	}

	#about .pointList .pointListLi {
		width: 100%;
		margin-bottom: 24px;
	}

	#about .pointNum {
		top: 10px;
	}

	#about .pointNum .pointNumTxt {
		font-size: 28px;
	}

	#about .pointNum .pointNumTxt:after {
		width: 16px;
		height: 13px;
		top: -5px;
		left: 57%;
	}

	#about .pointNum .pointNumNum {
		font-size: 30px;
	}

	#about .pointNum:after {
		width: 28px;
		height: 1px;
		bottom: -6px;
	}

	#about .pointListTxt {
		padding: 90px 25px 20px;
		text-align: left;
		line-height: 1.8;
	}

	#about .pointListTxt .underlineYellow {
		font-size: 16px;
	}
}

/* ---- STRENGTH ----- */
#strength {
	background-color: #faf6f2;
	padding: 80px 0;
	position: relative;
}

#strength:before {
	content: '';
	display: inline-block;
	width: 101px;
	height: 99px;
	background-image: url(../../images/logo_point.svg);
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
}

#strength .strengthList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 10px;
}

#strength .strengthList li {
	width: 49%;
	background-color: #fff;
	padding: 30px 36px;
	margin-bottom: 30px;
}

#strength .strengthH3 {
	font-size: 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
	margin-bottom: 26px;
}

#strength .strengthH3 .strengthH3Img {
	display: inline-block;
	text-align: center;
	width: 70px;
	margin-right: 1em;
}

@media screen and (max-width:768px) {
	#strength {
		padding: 50px 0;
	}

	#strength:before {
		width: 50px;
		height: 50px;
		top: -22px;
	}

	#strength .strengthList {
		flex-direction: column;
		margin-bottom: 15px;
	}

	#strength .strengthList li {
		width: 100%;
		padding: 10px 15px;
		margin-bottom: 10px;
	}

	#strength .strengthH3 {
		font-size: 17px;
		margin-bottom: 10px;
		line-height: 1.4;
	}

	#strength .strengthH3 .strengthH3Img {
		width: 56px;
	}

}

/* ---- buySell ----- */
.un_buySell_inner {
	display: flex;
	justify-content: space-between;
	padding-top: 60px;
	padding-bottom: 120px;
}
.un_buySell_right {
	flex-shrink: 0;
	width: 535px;
}
.un_buySell_right_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 35px;
	padding-right: 35px;
	padding-bottom: 25px;
	padding-left: 35px;
	background-color: #e8f4ff;
}
.un_buySell_right_box_item {
	flex-shrink: 0;
	margin-bottom: 10px;
	width: 225px;
}
.un_buySell_right_box_link {
	display: block;
	position: relative;
	padding-top: 20px;
	padding-right: 30px;
	padding-left: 30px;
	padding-bottom: 20px;
	background-color: #a0a0a0;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	transition: 0.2s;
	background-color: #005bac;
	overflow: hidden;
}
.un_buySell_right_box_link:hover {
	color: #005bac;
}
.un_buySell_right_box_link:hover .btn_bg {
	left: 0;
}
.un_buySell_left_list_btn .un_buySell_right_box_link {
	background-color: #005bac;
}
.un_buySell_right_box_link.un_buySell_right_box_link_noLink {
	pointer-events: none;
	background-color: #a0a0a0;
}
.un_buySell_left_list_btn .un_buySell_right_box_link:hover {
	background-color: #c3e2ff;
}
.un_buySell_right_box_link::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -4px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: 0.2s;
}
.un_buySell_right_box_link:hover::after {
	border-top-color: #005bac;
	border-right-color: #005bac;
}
.un_buySell_left {
	flex-shrink: 0;
	width: 535px;
}
.un_buySell_left_box {
	padding-top: 35px;
	padding-right: 35px;
	padding-bottom: 35px;
	padding-left: 35px;
	background-color: #e8f4ff;
}
.un_buySell_left_ttl {
	margin-bottom: 28px;
	padding-bottom: 25px;
	font-size: 20px;
	line-height: 1.4;
	font-weight: bold;
	color: #231815;
	border-bottom: 2px solid #005BAC;
}
.un_buySell_left_list {
	margin-bottom: 28px;
}
.un_buySell_left_list_item {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 18px;
	line-height: 2;
}
.un_buySell_left_list_btn {
	margin-right: auto;
	margin-left: auto;
	width: 225px;
}
.un_search_box .un_buySell_right_box_link {
	display: flex;
	table-layout: fixed;
	width: 100%;
	align-items: center;
}
.un_search_box .un_buySell_right_box_span {
	position: relative;
	z-index: 5;
	display: table-cell;
	width: 100%;
	vertical-align: middle;
}

@media screen and (max-width:768px) {
	.un_buySell_inner {
		display: block;
		padding-top: 40px;
		padding-bottom: 0;
	}
	.un_buySell_right {
		flex-shrink: 0;
		width: 100%;
	}
	.un_buySell_right_box {
		padding-top: 15px;
		padding-right: 15px;
		padding-bottom: 5px;
		padding-left: 15px;
	}
	.un_buySell_right_box_item {
		flex-shrink: 0;
		margin-bottom: 10px;
		width: 49%;
	}
	.un_buySell_right_box_link {
		font-size: 15px;
		padding-top: 13px;
		padding-bottom: 12px;
	}
	.un_buySell_left {
		padding-top: 50px;
		width: 100%;
	}
	.un_buySell_left_box  {
		padding-top: 15px;
		padding-right: 15px;
		padding-bottom: 15px;
		padding-left: 15px;
	}
	.un_buySell_left_ttl {
		margin-bottom: 15px;
		padding-bottom: 10px;
		font-size: 17px;
		line-height: 1.4;
		font-weight: bold;
		color: #231815;
		border-bottom: 2px solid #005BAC;
		text-align: center;
	}
	.un_buySell_left_list {
		margin-bottom: 10px;
	}
	.un_buySell_left_list_item {
		font-size: 14px;
		line-height: 1.7;
	}
	.un_buySell_left_list_btn {
		width: 240px;
	}
	.un_buySell_left_list_btn .un_buySell_right_box_link {
		padding-top: 18px;
		padding-bottom: 17px;
	}
}

/* ---- AGENT ----- */
#agent {
	padding: 80px 0;
}

.toggle_contents {
	background-color: #005bac;
	color: #fff;
}

.toggle_contents.is_disabled {
	pointer-events: none;
	background-color: #a0a0a0;
}

.toggle_title {
	position: relative;
	cursor: pointer;
	font-size: 24px;
	font-weight: 600;
	line-height: 54px;
	color: #fff;
	padding-left: 30px;
	margin-bottom: 10px;
}

.selected {
	margin-bottom: 0;
}

.toggle_btn {
	position: absolute;
	top: 50%;
	right: 26px;
	transform: translateY(-50%);
	display: block;
	width: 25px;
	height: 25px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.toggle_btn:before,
.toggle_btn:after {
	display: block;
	content: '';
	background-color: #fff;
	position: absolute;
	width: 25px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.toggle_btn:before {
	width: 2px;
	height: 25px;
}

.toggle_title.selected .toggle_btn:before {
	content: normal;
}

.toggle_contents dd {
	display: none;
	margin-bottom: 10px;
}

.toggle_detail {
	background-color: #e8f4ff;
	color: #231815;
	padding: 30px 36px;
}

.agentList {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.agentList li.agentListDetail {
	width: calc(100% - 400px);
}

.agentList li.agentListPhoto {
	width: 350px;
}

.agentListH3 {
	font-size: 32px;
	font-weight: 600;
	border-bottom: solid 2px #231815;
	line-height: 1.5;
	padding: 5px 0 12px;
	margin-bottom: 24px;
}

.agentListTxt {
	line-height: 1.8;
}

.agentListH3 .agetListH3Small {
	font-size: 18px;
	display: block;
}

.agentList li.agentListPhoto .agentListPhotoImg {
	position: relative;
}

.agentList li.agentListPhoto .agentListPhotoImg .agentListPhotoImgTitle {
	position: absolute;
	background-color: #231815;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	right: 0;
	bottom: 0;
	display: inline-block;
	padding: 0 10px;
}

.agentList li.agentListPhoto .agentListPhotoImg .agentListPhotoImgTitle:before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: 0px;
	left: -8px;
	border-style: solid;
	border-color: transparent #231815 transparent transparent;
	border-width: 22px 8px 0 0;
}

.agentList li.agentListPhoto .agentListPhotoCaption {
	background-color: #fff;
	font-size: 12px;
	padding: 10px 20px;
	line-height: 1.7;
}

.agentFeatures {
	border: solid 2px #231815;
	margin-bottom: 30px;
}

.agentFeaturesH4 {
	display: inline-block;
	background-color: #231815;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	line-height: 37px;
	padding: 0 30px;
	margin-top: -1px;
}

.agentFeaturesTxt {
	padding: 20px 30px;
	line-height: 1.8;
}
.bl_toggle_contents_gray {
	background-color: #a0a0a0;
}

@media screen and (max-width:768px) {
	#agent {
		padding: 40px 0;
	}

	#agent .inner {
		padding: 0;
	}

	.toggle_title {
		font-size: 17px;
		line-height: 55px;
		color: #fff;
		padding-left: 15px;
		margin-bottom: 1px;
	}

	.toggle_btn {
		right: 15px;
		width: 15px;
		height: 15px;
	}

	.toggle_btn:before,
	.toggle_btn:after {
		width: 15px;
	}

	.toggle_btn:before {
		width: 2px;
		height: 15px;
	}

	.toggle_contents dd {
		margin-bottom: 0;
	}

	.toggle_detail {
		padding: 15px;
	}

	.agentList {
		flex-direction: column;
		margin-bottom: 15px;
	}

	.agentList li.agentListDetail {
		width: 100%;
	}

	.agentList li.agentListPhoto {
		width: 100%;
	}

	.agentListH3 {
		font-size: 20px;
		padding: 5px 0 8px;
		margin-bottom: 15px;
	}

	.agentListH3 .agetListH3Small {
		font-size: 14px;
	}

	.agentListTxt {
		line-height: 1.7;
		margin-bottom: 15px;
	}

	.agentList li.agentListPhoto .agentListPhotoCaption {
		font-size: 11px;
		padding: 15px;
	}

	.agentFeatures {
		margin-bottom: 30px;
	}

	.agentFeaturesH4 {
		font-size: 15px;
		line-height: 28px;
		padding: 0 15px;
	}

	.agentFeaturesTxt {
		padding: 10px 15px;
		line-height: 1.72;
	}
}

/* ---- NEWS ----- */
#news {
	padding: 30px 0 80px;
}
.newsList {
	margin-bottom: 40px;
}
.newsListDetail {
	display: table;
	table-layout: fixed;
	width: 100%;
	border-bottom: solid 2px #231815;
	padding: 22px 0;
}
.newsListDate {
	display: table-cell;
	vertical-align: top;
	font-weight: 600;
	width: 160px;
}
.newsListCont:hover {
	display: table-cell;
	vertical-align: top;
	color: #005bac;
	text-decoration: underline;
}

@media screen and (max-width:768px) {
	#news {
		padding: 50px 0 0;
	}

	#news .bl_headingH2 {
		margin-bottom: 15px;
	}

	#news .newsList {
		margin-bottom: 20px;
	}

	#news .newsList .newsListDetail {
		display: flex;
		flex-direction: column;
		border-bottom: solid 1px #231815;
		line-height: 1.8;
		padding: 10px 0;
	}

	#news .newsList .newsListDetail:first-child {
		padding: 0 0 10px;
	}

	#news .newsList .newsListDate {
		padding-right: 0;
	}
}

/* ---- SEARCH ----- */
#search {
	padding: 40px 0 96px;
}
.un_buySell_right_box {

}
.un_search_box .un_buySell_right_box_item {
	width: 505px;
}

@media screen and (max-width:768px) {
	#search {
		padding: 40px 0 30px;
	}

	#search .catDummy {
		height: 355px;
	}
	.un_search_box .un_buySell_right_box_item {
		width: 100%;
	}
}

/* ---- RENOVATION ----- */
#renovation {
	padding: 30px 0 64px;
}

.renovationCation {
	height: 92px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: 0.2s;
}

.renovationTxt {
	font-size: 16px;
	font-weight: 600;
}

.renovationH3 {
	text-align: center;
}

.renovationH3Name {
	font-size: 22px;
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: 700;
}

.renovationH3Caption {
	display: inline-block;
	vertical-align: middle;
	margin-top: -4px;
	font-size: 12px;
	font-weight: 600;
	margin-left: 8px;
}

.sliderItem {
	width: 650px !important;
}

#js-slide__nav {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -8px;
	width: 100%;
	z-index: 1;
}
#js-slide__nav__inner,
#js-slide__nav__inner02 {
	width: 650px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	justify-content: space-between;
}
#js-slide__nav__inner02 {
	position: relative;
}
#js-slide__nav__inner02 .slide-arrow {
	position: absolute;
}
#js-slide__nav__inner02 .prev-arrow {
	left: 0;
}
#js-slide__nav__inner02 .next-arrow {
	right: 0;
}
.un_slider_service #js-slide__nav__inner02 {
	width: 430px;
}
.un_slide_cation {
	position: relative;
}
.un_sliderWrap {
	position: relative;
}
.un_slider_service {
	padding-top: 40px;
}
.un_slider_service .sliderItem {
	width: 430px !important;
}
.un_slider_service_head {
	margin-bottom: 15px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
}

@media screen and (max-width:768px) {
	#renovation {
		padding: 50px 0 30px;
	}

	.renovationCation {
		height: 60px;
		line-height: 1.4;
	}

	.renovationTxt {
		font-size: 12px;
	}

	.renovationH3 {
		font-size: 17px;
	}

	.renovationH3Caption {
		font-size: 10px;
	}

	.sliderItem {
		width: 325px!important;
	}
	.un_slider_service .sliderItem {
		width: auto!important;
	}
	.un_slider_service .sliderItem img {
		width: 100vw;
	}
	.un_slider_service .slick-list {
		padding-right: 0!important;
		padding-left: 0!important;
	}

	#js-slide__nav__inner,
	#js-slide__nav__inner02 {
		width: 80vw;
		position: relative;
		z-index: 5;
	}
	.un_slider_service {
		padding-top: 20px;
	}
	.un_slider_service_head {
		font-size: 15px;
		margin-bottom: 8px;
	}
	.renovationH3Caption {
		margin-top: -2px;
	}
}

.slide-arrow {
	width: 11px;
	width: 11px;
}
.slick-slide,
.slick-slide a {
	outline: none!important;
}
.el_on_hover {
	opacity: 0.7;
}

/* ---- CONTACT ----- */
#contact {
	padding: 50px 0 50px;
}

#contact .contactBox {
	display: flex;
	/* justify-content: space-between; */
	justify-content: center;
}

#contact .contactBoxContact {
	width: 600px;
}

#contact .bl_headingH2Contact {
	font-size: 24px;
	font-weight: 700;
	font-family: 'M PLUS 1p', sans-serif;
	border-bottom: solid 2px #231815;
	padding: 12px 0 4px;
	margin-bottom: 40px;
}

#contact .contactBoxFacebook {
	width: 436px;
}

@media screen and (max-width:768px) {
	#contact {
		padding: 0 0 50px;
	}

	#contact .contactBox {
		flex-direction: column;
	}

	#contact .contactBoxContact {
		width: 100%;
		margin-bottom: 20px;
	}

	#contact .bl_headingH2Contact {
		display: none;
	}

	#contact .contactBoxFacebook {
		width: 100%;
	}

	.contactBoxFacebook iframe {

	}
}

.el_none {
	display: none!important;
}

@media screen and (max-width: 374px) {
	.btnContactTxt {
		padding-left: 10px;
	}
	.btnContactLine .btnContactTxt {
		padding-left: 50px;
	}
}
