@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* 大枠 */
html,
body {
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	-webkit-overflow-scrolling: touch !important;
	-moz-osx-font-smoothing: grayscale;
}
body {
	font-size: 14px;
	line-height: 1.9;
	word-wrap : break-word;
	overflow-wrap : break-word;
}
#wrapper {
	width: 100%;
	margin: 0 auto;
	position: relative;
}
body > #wrapper {
	height: auto;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	content: " ";
	clear: both;
	height: 0;
}
@media (max-width: 768px) {
	.container.mobile_fix,
	.mobile_fix {
	    margin-top: 120px;
	}
}
@media print {
	html,
	html body{overflow: visible !important;}
}

/* アクセシビリティ */
.guidance {
	left:-999px;
	position:absolute;
	width:990px;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	pointer-events: none;
} /* レスポンシブ対応 */
img {
	vertical-align: bottom;
	box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}
img,
x:-moz-any-link,
x:default {
	box-shadow: #000 0 0 0; /* IE7対応 */
}
/* Windows Chrome 画像ぼやけ防止 */
@media screen and (min-width: 768px) {
	img{
		image-rendering: -webkit-optimize-contrast;
	}
}
/* リンク */
a {
	display: inline-block;
}
a:link,
a:visited,
a:active {
	color: inherit;
	text-decoration: none;
}
a:hover {
	color: inherit;
	opacity: .7;
	text-decoration: none!important;
}

.NotoSans {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.NotoSerif {
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
}

/* CLEARFIX */
.container:after,
.row:after,
.col:after {
	content: "";
	display: table;
	clear: both;
}

.container {
	width: 100%;
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
}

.pc {display: block;}
.sp {display: none;}
.sp_inline{display: none;}

/* フォーム */
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: black;
}
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.428571429;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
.button_submit,
button.button_submit,
a.button_submit {
	background: #0340C9 none repeat scroll 0% 0%;
    border: 1px solid #0340C9;
    padding: 5px 20px;
    color: white;
    font-size: 16px;
    margin-top: 5px;
    border-radius: 0px;
}
.button_submit:hover,
button.button_submit:hover,
a.button_submit:hover {
    color: inherit;
    opacity: .7;
    color: white;
    text-decoration: none!important;
    cursor: pointer;
}
/* ▼ タイトル
--------------------------------------- */
#site_title {
	display: flex;
	align-items: center;
	overflow: hidden;
	margin-right: 10px;
}
#site_title a{
	display: flex;
	align-items: center;
}
#site_title a img{
	margin-right:20px;
}
#site_title a p{
	line-height: 1.4;
}
#site_title a p span{
	font-size:10px;
}


h1.title {
	background: #999;
	padding: 20px 10px;
	margin-bottom: 30px;
	color: #fff;
	overflow: hidden;
}


/* ▼▼▼ ヘッダー
====================================================== */
header {
	width: 100%;
	background: #fff;
}
header .container{
  padding: 0 0 0 20px;
  /*max-width: 100%;*/
  max-width: 1366px;
}

.header_inner{
	display: flex;
	justify-content:space-between;
	align-items: center;
	text-align: center;
	font-weight:700;
}

a.login,
a.logout{
	border:1px solid #0340C9;
	padding:3px 15px;
	color:#0340C9;
	text-align: center;
	position: absolute;
	right:210px;
}
a.dg_login {
	right: 30px;
}

@media all and (-ms-high-contrast: none) {
	a.login,
	a.logout{
    top:28px;
  }
}

.menu {
	display: none;
	cursor: pointer;
}

.menu_dropdown {
	position: relative;
	cursor: pointer;
}
.menu_dropdown .menu_dropdown_contents {
	display: none;
	position: absolute;
    cursor: pointer;
    padding: 5px;
    border-radius: 2px;
    width: 210px;
    z-index: 9999;
    left: -3px;
    top: 28px;
}
.menu_dropdown .menu_dropdown_contents a {
	background: white;
	border: 1px solid rgb(231, 231, 231);
    padding: 5px;
    margin-top: 1px;
}
.menu_dropdown .menu_dropdown_contents a:hover {
	background-color: #68A4C4;
	color:white;
}
.menu_dropdown:hover .menu_dropdown_contents {
	display: block;
}


/* グローバルナビゲーション */
#gnav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
#gnav ul {
	display: flex;
	margin-right: 160px;
}
#gnav ul > li:not(:last-of-type){
	margin-right: 40px;
}
#gnav ul > li a {
	display: block;
	text-decoration: none;
}
#gnav ul > li a:hover {
	-ms-filter: "alpha(opacity=60)";
	-moz-opacity:0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;
}
#gnav .header_btn{
	display: flex;
	}
#gnav .header_btn a{
	display: block;
	width:90px;
	height:90px;
	padding-top: 60px;
	color:#fff;
	font-size: 12px;
	text-align: center;
	position: relative;
}
#gnav .header_btn a.trial{
	background: #0340C9 url(../img/icon_trial_wh.png) no-repeat center top 20px / 24px 24px;
	margin-right:1px;
}
#gnav .header_btn a.application{
	background: #000 url(../img/icon_application_wh.png) no-repeat center top 20px / 24px 24px;
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
	margin: 0 auto;
	clear: both;
	overflow: hidden;
	letter-spacing: 0.1em;
}

.read{
	margin: 0 0 30px;
}



/* ▼ パンくず
--------------------------------------- */
#path {
	margin-bottom: 30px;
	font-size: 14px;
	overflow: hidden;
}
	#path li {
		float: left;
	}
	#path li:not(:last-child):after {
		content: "〉";
		margin-left: 10px;
		color: #333;
	}



/* ▼ 簡単登録で即日利用可能！
----------------------------------------*/
#flow{
	padding:0 0 80px 0;
}
#flow .container > p{
	font-size:32px;
	font-weight: bold;
}
#flow .container > p span{
	color:#DE6700;
	font-size:42px;
}
#flow ul.step_wrap{
	margin-top: 40px;
}
#flow ul.step_wrap li{
	display: inline-block;
	vertical-align:top;
  padding: 10px 70px 0 0;
	margin-right: 10px;
  position: relative;
	}
	#flow ul.step_wrap li::before{
	content: '';
  width: 2px;
  height: 80px;
  background: #000;
  transform: rotate(-30deg);
  position: absolute;
  top: 0;
  right: 30px;
	}
#flow ul.step_wrap li::after{
	content: '';
  width: 2px;
  height: 80px;
  background: #000;
  transform: rotate(30deg);
  position: absolute;
  top: 75px;
  right: 30px;
}
#flow ul.step_wrap li:last-of-type{
	padding: 0;
	margin-right: 0;
	text-align: center;
	position: relative;
}
#flow ul.step_wrap li:last-of-type p{
	width:168px;
	height:168px;
	border:2px solid #0340C9;
	border-radius: 84px;
}
#flow ul.step_wrap li:last-of-type span{
	width: 100%;
	color:#0340C9;
	font-size:20px;
	font-weight: 500;
  text-align: center;
	line-height: 1.5;
	position: absolute;
	top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#flow ul.step_wrap li:last-of-type::before,
#flow ul.step_wrap li:last-of-type::after{
	display: none;
}

#flow ul.step_wrap li a > img{
	width:47px;
	margin-bottom: 20px;
}
#flow ul.step_wrap li a .step_title{
	display: flex;
}
#flow ul.step_wrap li a .step_title img{
	height:33px;
	margin-top: 7px;
	margin-right:15px;
}
#flow ul.step_wrap li a .step_title p{
	font-size:22px;
	font-weight: 500;
	line-height: 1.5;
}
#flow ul.step_wrap li a .step_title p span{
	display: inline-block;
	font-size:14px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	text-decoration: underline;
	position: relative;
}
#flow ul.step_wrap li a:hover .step_title p span{
	text-decoration: none;
}
#flow ul.step_wrap li a .step_title p span::after{
	content:'';
	width: 14px;
	height: 5px;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	transform: skew(45deg);
	position: absolute;
	top:3px;
	right:-20px;
	}




/* ▼ ページ下部　お問い合わせブロック
--------------------------------------- */
#bottom_contact{
	background: url(../img/contact_bg_pc.png) no-repeat center / cover;
	padding:100px 0;
}
#bottom_contact .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 780px;
}

#bottom_contact .container .bottom_contact_text{

}
#bottom_contact .container .bottom_contact_text p:first-of-type{
	font-size:16px;
	font-weight: 700;
}
#bottom_contact .container .bottom_contact_text p:nth-of-type(2){
	font-size:43px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
}
#bottom_contact .container .bottom_contact_text p:last-of-type{
	font-size:16px;
	font-weight: 500;
}
#bottom_contact .container .bottom_contact_btn a{
	display: block;
	width:294px;
	height:70px;
	color:#fff;
	font-size:19px;
	font-weight: 700;
	text-align: center;
	line-height: 70px;
}
#bottom_contact .container .bottom_contact_btn .bottom_trial_btn{
	background: #0340C9;
	margin-bottom: 20px;
}
#bottom_contact .container .bottom_contact_btn .bottom_application_btn{
	background: #000;
}


/* ▼▼▼ フッター
===================================== */
footer {
	width: 100%;
	background: #000;
	padding: 50px 0;
	color:#fff;
	overflow: hidden;
	}
footer .footer_top{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
footer .footer_top > a{
	width:40%;
	font-size:20px;
	font-weight: bold;
	line-height: 1.4;
}
footer .footer_top a span{
	font-size:15px;
}
footer .footer_top #fnav_top{
	width:60%;
}
footer .footer_top #fnav_top ul{
	display: flex;
	justify-content: flex-end;
	width: 100%;
}
footer .footer_top #fnav_top ul li:not(:last-of-type){
	margin-right:40px;
}
footer .footer_top #fnav_top ul li a{
	font-weight: 700;
}

footer .footer_bottom{
	display: flex;
	justify-content: space-between;
  align-items: flex-end;
	margin-top: 50px;
}
footer .footer_bottom .footer_bottom_left{
	display: flex;
	align-items: center;
	width:50%;
}
footer .footer_bottom .footer_bottom_left a{
	display: block;
	width:220px;
	height:70px;
	padding:15px 15px 10px 120px;
	color:#000;
	font-size:12px;
	font-weight: 700;
}
footer .footer_bottom .footer_bottom_left a.footer_btn_residential{
	background: #fff url(../img/footer_btn_logo01.png) no-repeat left 10px center / 98px 47px;
	margin-right:10px;
}
footer .footer_bottom .footer_bottom_left a.footer_btn_investment{
	background: #fff url(../img/footer_btn_logo02.png) no-repeat left 10px center / 98px 47px;
}

footer .footer_bottom .footer_bottom_right{
	width:50%;
}
footer .footer_bottom .footer_bottom_right #fnav_bottom ul{
	display: flex;
	justify-content: flex-end;
	width: 100%;
	}
footer .footer_bottom .footer_bottom_right #fnav_bottom ul li{
	padding:0 10px;
	position: relative;
}
footer .footer_bottom .footer_bottom_right #fnav_bottom ul li:before{
	content:'';
	width:1px;
	height:12px;
	background: #707070;
	margin:auto;
	position: absolute;
	top:9px;
	left:0;
}
footer .footer_bottom .footer_bottom_right #fnav_bottom ul li:last-of-type:after{
	content:'';
	width:1px;
	height:12px;
	background: #707070;
	margin:auto;
	position: absolute;
	top:9px;
	right:0;
}
footer .footer_bottom .footer_bottom_right #fnav_bottom ul li a{
	font-size:12px;
	font-weight: 400;
}
footer .footer_bottom .footer_bottom_right #copyright{
	margin-top:20px;
	color:#989898;
	font-size:10px;
	font-weight: 400;
	text-align: right;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
	width:60px;
	height:60px;
	background: #000;
	border:1px solid #707070;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 2000;
	cursor: pointer;
}
.pagetop::before{
	content: '';
  width: 6px;
  height: 35px;
  border-top: 2px solid #fff;
  border-left: 1px solid #fff;
  margin: auto;
  transform: skew(45deg) rotate(45deg);
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 0;
  left: 8px;
}
.pagetop:hover{
	opacity: 0.6;
}



/* ▼▼▼ 769px〜1100px
====================================================== */
@media screen and (min-width: 769px) and (max-width: 1100px) {
	#site_title a {
    	flex-wrap: wrap;
	}
	#site_title a img {
    	width: 200px;
    	margin-right: 0;
	}
	#gnav {
    	width: 100%;
	}
	#gnav ul {
    	margin-right: 120px;
	}
	#gnav ul > li:not(:last-of-type) {
    	margin-right: 10px;
	}
	a.login {
	    padding: 3px 10px;
	    right: 200px;
	}
	a.dg_login {
		right: 30px;
	}
	

}


/* ▼▼▼ 480px〜768px
====================================================== */
@media screen and (max-width: 768px) {

	body{
		font-size: 14px;
	}
	body.wrap {
		overflow: hidden;
	}


	#wrapper {width: 100%;}
	#screen {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color:rgba(0,0,0,0.8);
		z-index: 200;
	}

	.pc {display: none;}
	.sp {display: block;}
	.sp_inline{display: inline;}

	/* ▼タイトル
	--------------------------------------- */
	#site_title {
		width:100%;
		overflow: hidden;
		background: #fff;
		padding:10px 15px;
		margin-right:0;
		position: relative;
    z-index: 1001;
	}
	#site_title a img {
    margin: 0 10px 0 0;
		width: calc(54% - 10px);
	}
	#site_title a p{
		width:46%;
		font-size:11px;
	}
	#site_title a p span{
		font-size: 9px;
	}


	/* ▼▼▼ ヘッダー
	====================================================== */
	header {
		width: 100%;
		padding: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99999;
		overflow: visible;
	}

	.header_inner {
    flex-wrap: wrap;
		width: 100%;
		height: 115px;
		background: #fff;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99999;
	}

	/* ▼ヘッダーボタン
	--------------------------------------- */
	a.sp_header_trial,
	a.sp_header_application,
	a.login,
	a.logout,
	.menu{
		display: block;
	    width: calc(25% - 1px);
	    height: 58px;
	    padding: 32px 5px 0;
	    color: #fff;
	    font-size: 12px;
		text-align: center;
	    position: relative;
	    z-index: 2000;
	}
	a.sp_header_trial{
		background: #0340C9;
	}
	a.sp_header_application,
	a.login,
	a.logout,
	.menu {
		background: #000;
	}
	a.dg_login {
		width: 50%;
	}
	.dg_menu {
		width: 50%;
	}
	a.sp_header_trial{
		background: #0340C9 url(../img/icon_trial_wh.png) no-repeat center top 10px / 17px 17px;
	}
	a.sp_header_application{
		background: #000 url(../img/icon_application_wh.png) no-repeat center top 10px / 17px 17px;
	}
	a.login{
		background: #000 url(../img/icon_login.png) no-repeat center top 10px / 16px 18px;
		border:none;
		position: static;
	}
	a.logout{
		background: #000 url(../img/icon_logout.png) no-repeat center top 10px / 16px 18px;
		border:none;
		position: static;
	}

	.menu {
		background: #000;
		-moz-transition: all 0.3s;
	    -webkit-transition: all 0.3s;
	    transition: all 0.3s;
	}


	/* メニューのハンバーガーアイコン */
	.menu .icon {
		display: block;
	    width: 16px;
	    height: 2px;
	    border-top: 2px solid #fff;
	    margin: auto;
	    position: absolute;
	    top: 20px;
	    right: 0;
	    left: 0;
	    -moz-box-sizing: border-box;
	    -webkit-box-sizing: border-box;
	    box-sizing: border-box;
	    -moz-transition: all 0.3s;
	    -webkit-transition: all 0.3s;
	    transition: all 0.3s;
	}
	.menu .icon:before,
	.menu .icon:after{
		content: '';
		width: 16px;
		border-top: 2px solid #fff;
		position: absolute;
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	.menu .icon:before {
		top:-8px;
	}
	.menu .icon:after {
		bottom:-6px;
	}
	.menu.active{
		background: #E2E2E2;
	}
	.menu.active .icon {
		border-color: #E2E2E2;
	}
	.menu.active .icon:before {
		-moz-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
		top: -2px;
		right: 0;
	}
	.menu.active .icon:after {
		-moz-transform: rotate(135deg);
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		bottom: 0;
		right: 0;
	}
	.menu.active .icon:before,
	.menu.active .icon:after{
		border-top: 1px solid #000;
	}
	.menu:before{
		content: "メニュー";
	}
	.menu.active:before{
		content: "閉じる";
		color:#000;
	}

	/* ▼ グローバルナビゲーション
	--------------------------------------- */
	#gnav {
		display: block!important;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		float: none;
		width: calc(100% - 25px);
		max-height: 100vh;
		padding-top: 115px;
		margin: 0;
		position: absolute;
		top: 0;
		right: -1000px;
		z-index: 1000;
		overflow: auto;
	}
		#gnav.open {
			right: 0;
	    -moz-transform: translateX(0);
	    -webkit-transform: translateX(0);
	    transform: translateX(0);
		}
		#gnav ul {
			display: block;
	    width: 100%;
		}
		#gnav ul > li {
			width: 100%!important;
			max-width: 100%!important;
			height: auto;
			text-indent: 0;
		}
		#gnav ul > li > a {
			height: 75px!important;
	    background: #E2E2E2;
	    background-size: 10px 10px!important;
	    border-bottom: 1px solid #c6c6c6;
	    padding: 0 30px;
	    color: #333;
	    font-size: 18px;
	    line-height: 75px;
	    font-weight: bold;
		}
		#gnav ul > li > a:hover {
			text-decoration: none;
			opacity: 1;
		}

		#gnav .header_btn {
	    display: block;
	    background: #E2E2E2;
	    padding: 30px;
		}
		#gnav .header_btn a.trial{
			margin-bottom: 20px;
		}
		#gnav .header_btn a.trial,
		#gnav .header_btn a.application{
	    background-image: none;
		}
		#gnav .header_btn a {
	    display: block;
	    width: 100%;
	    height: 70px;
	    padding-top: 0;
	    color: #fff;
	    font-size: 18px;
	    text-align: center;
	    line-height: 70px;
	    position: relative;
		}


	/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
	====================================================== */
	#header_inner,
	#main,#contents,#side,
	footer,#footer_inner {
		float: none;
		width: 100%;
		}
	#main {
	}
	.menu_fixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}

	/* ▼ パンくず
	--------------------------------------- */
	#path {
    margin-bottom: 40px;
    font-size: 12px;
	}


	/* ▼ 簡単登録で即日利用可能！
	----------------------------------------*/
	#flow {
    padding: 0 0 30px 0;
	}
	#flow .container > p {
    font-size: 24px;
    font-weight: bold;
		letter-spacing: 0;
	}
	#flow .container > p span {
    color: #DE6700;
    font-size: 32px;
	}
	#flow ul.step_wrap {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
		justify-content: 	space-between;
	}
	#flow ul.step_wrap li {
    width: 48%;
    vertical-align: top;
    padding: 10px 0 0 0;
    margin-right: 0;
		margin-bottom: 30px;
    position: relative;
}
	#flow ul.step_wrap li::before {
    height: 65px;
    top: 0;
    right: 15px;
	}
	#flow ul.step_wrap li::after {
    height: 65px;
    top: 65px;
    right:15px;
	}
	#flow ul.step_wrap li a > img {
    width: 34px;
    margin-bottom: 15px;
	}
	#flow ul.step_wrap li a .step_title p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
	}
	#flow ul.step_wrap li a .step_title img {
    height: 25px;
    margin-top: 7px;
	}
	#flow ul.step_wrap li:last-of-type p {
	    width: 128px;
	    height: 128px;
	    border: 2px solid #0340C9;
	    border-radius: 64px;
	    margin: auto;
			position: relative;
		}
	#flow ul.step_wrap li:last-of-type span {
    font-size: 15px;
	}


	#bottom_contact {
    background: url(../img/contact_bg_sp.png) no-repeat center / cover;
    padding: 50px 0;
	}
	#bottom_contact .container {
    display: block;
    max-width: 100%;
	}
	#bottom_contact .container .bottom_contact_text {
    margin-bottom: 30px;
	}
	#bottom_contact .container .bottom_contact_text p:first-of-type,
	#bottom_contact .container .bottom_contact_text p:last-of-type {
    font-size: 14px;
	}
	#bottom_contact .container .bottom_contact_text p:nth-of-type(2) {
    font-size: 28px;
	}
	#bottom_contact .container .bottom_contact_btn a {
    width: 100%;
    font-size: 18px;
	}



	/* ▼▼▼ フッター
	====================================================== */
	footer {
		padding: 20px;
	}
	footer .container{
		padding:0;
	}
	footer .footer_top {
    display: block;
	}
	footer .footer_top > a {
    width: 100%;
    font-size: 18px;
	}

	footer .footer_top #fnav_top {
    width: 100%;
		margin-top: 20px;
	}
	footer .footer_top #fnav_top ul {
		flex-wrap: wrap;
	}
	footer .footer_top #fnav_top ul li{
		width:50%;
		margin-bottom: 10px;
	}
	footer .footer_top #fnav_top ul li:not(:last-of-type){
		margin-right: 0;
	}

	footer .footer_bottom {
    display: block;
    margin-top: 30px;
	}
	footer .footer_bottom .footer_bottom_left {
    display: block;
    width: 100%;
	}
	footer .footer_bottom .footer_bottom_left a{
		margin-bottom: 15px;
	}
	footer .footer_bottom .footer_bottom_left a.footer_btn_residential{
		margin-right:auto;
	}
	footer .footer_bottom .footer_bottom_right {
    width: 100%;
    margin-top: 40px;
	}
	footer .footer_bottom .footer_bottom_right #fnav_bottom ul {
    justify-content: flex-start;
	}
	footer .footer_bottom .footer_bottom_right #copyright{
		text-align: left;
	}

	/* ▼ ページ上部へ戻る
	--------------------------------------- */
	.pagetop {
		background: #000;
		padding: 10px;
		color: #fff;
	}

}


/* ▼▼▼ 320px〜479px
====================================================== */
@media screen and (max-width: 479px) {

	#site_title a img {
	    height: 36px;
	}

}
