@charset "utf-8";
/*----------------------------------------------------------------------------------------

	index.css

----------------------------------------------------------------------------------------*/

/* サブヘッダー //
////////////////////////////////////////////////////////////////////*/


#subheader > .mv .title {
	min-height: 650px;
	position: relative;
	overflow: hidden;
}
#subheader > .mv .title p {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
    max-height: 650px;
}
#subheader > .mv .title p img{
	max-width: none;
	opacity: 0;
	-webkit-animation: fadein 0.5s ease-out 0.3s 1 forwards;
	animation: fadein 0.5s ease-out 0.3s 1 forwards;
	object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}
.title-txtarea {
	position: absolute;
	top: 100px;
	left: 0;
	right: 0;
	bottom: 0;
	height: 650px;
}
.txtarea-inner{
    width: 100%;
    max-width: 960px;
    height: 650px;
    padding-top: 95px;
    box-sizing: border-box;
    margin: auto;
}
  
.title-txtarea .ttl, .title-txtarea .txt {
	line-height: 1;
}
.title-txtarea .ttl {
	margin-bottom: 45px;
	font-size: 400%;
	font-feature-settings: normal;
}
.title-txtarea .ttl > span, .title-txtarea .txt > span {
	position: relative;
	display: inline-block;
}
.title-txtarea .ttl > span {
	width: 920px;
	padding-left: 30px;
}
.title-txtarea .ttl span span {
	position: relative;
	z-index: 10;
	opacity: 0;
	-webkit-animation: fadein 0.1s ease-out 1.8s 1 forwards;
	animation: fadein 0.1s ease-out 1.8s 1 forwards;
	color:#179a46;	
	font-size: 4.6rem;
	line-height: 80px;
}
.title-txtarea .ttl > span.green-bg {
	width: 750px;
	margin-top: 17px;
}
.title-txtarea .ttl span.green-bg span{
	color:#fff;
	font-size: 3.2rem;
	line-height: 70px;
}
.title-txtarea .ttl > span::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: block;
	width: 100%;
	background-color: #fff;
	opacity: 0;
	-webkit-animation: fadein 0.1s ease-out 1.5s 1 forwards;
	animation: fadein 0.1s ease-out 1.5s 1 forwards;
}
.title-txtarea .ttl > span::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 100%;
	bottom: 0;
	z-index: 1;
	display: block;
	background:#78cb6f;
	-webkit-animation: ttl_bg 0.9s ease-out 1.0s 1 forwards;
	animation: ttl_bg 0.9s ease-out 1.0s 1 forwards;
}
.title-txtarea .ttl > span.green-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 100%;
    background-color: #179a46;	
    opacity: 0;
    -webkit-animation: fadein 0.1s 
ease-out 1.5s 1 forwards;
    animation: fadein 0.1s 
ease-out 1.5s 1 forwards;
}
.title-txtarea .txt {
	margin-bottom: 50px;
	font-size: 1.8rem;
	color: #179a46;
	opacity: 0;
	transform: translateX(-8px);
	-webkit-animation: fadein_lft 0.5s ease-out 2.0s 1 forwards;
	animation: fadein_left 0.5s ease-out 2.0s 1 forwards;
}
.title-txtarea .txt > span {
	padding: 7px 10px 7px 20px;
	background-color: #fff;
	margin-bottom: 8px;
	height: 33px;
    box-sizing: border-box;
	font-feature-settings: normal;
}
/*@media screen and (min-width: 1920px){
	.txtarea-inner {
    padding-left:150px;
	}
}*/

/*----------*/

#subheader .btn {
	box-sizing: border-box;
	height: 70px;
	border-radius: 6px;
	display: table;
	transition: background 0.1s;
}
#subheader .btn a {
	padding: 0 10px;
	display: table-cell;
	color: #fff;
	line-height: 1.2;
	vertical-align: middle;
	font-weight: 600;
	text-align: center;
	border: 2px solid #fff;
	border-radius: 5px;
}
#subheader .btn a[target="_blank"]::after {
	margin-left: 10px;
	content: "\f35d";
	font-weight: 600;
	font-family: "Font Awesome 5 Free";
}

html:not([lang='ja']) #subheader .btn a {
	font-size: 2rem;
}
/* --- fadein --- */
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --- ttl_bg --- */
@-webkit-keyframes ttl_bg {
  0% {
    left: 0;
    right: 100%;
  }
  40% {
    left: 0;
    right: 0;
  }
  60% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}
@keyframes ttl_bg {
  0% {
    left: 0;
    right: 100%;
  }
  40% {
    left: 0;
    right: 0;
  }
  60% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}
/* --- fadein_left --- */
@-webkit-keyframes fadein_left {
  0% {
    opacity: 0;
    transform: translateX(-8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein_left {
  0% {
    opacity: 0;
    transform: translateX(-8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 相談セクション //
---------------------------------------------- */
#subheader .soudan.fadeUp.in-view{
	transition-delay: 2.5s;
}

#subheader .soudan > div::after {
	display: table;
	clear: both;
	content: "";
}
#subheader .soudan h4 {
	margin-bottom: 25px;
    font-size: 2rem;
    color: #333;
	text-align: center;
}
#subheader .soudan .btn {
	margin:auto;
	width: 410px;
	background-color: #0ea95a;
	font-size: 2rem;
}
#subheader .soudan .btn:hover {
	background:#0b743e;
}

html:not([lang='ja']) #subheader .soudan h4 {
	color: #fff;
	font-weight: 400;
	font-size: 2.4rem;
	line-height: 1.2;
	text-align: center;
}
html:not([lang='ja']) #subheader .soudan li a {
	height: 50px;
}
/*#reasons///
---------------------------------------------- */
#reasons{
    position: relative;
    text-align: center;
    padding-top: 45px;
    box-sizing: border-box;
	background: url(/images/kaitori/pattern.png);
}
.cont-reason {
  display: grid;
}
#reasons .title {
	justify-self: center;
	align-items: end;
	margin-bottom: 30px;
}
#reasons .title img {
    display: block;
    margin:0 auto;
}
#reasons h3{
	font-size: 34px;
	font-weight: 700;
	color: #333;
	position: relative;
	font-feature-settings: normal;
	width: 100%;
	padding-left: 10px;
}
.sub-title p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
	font-feature-settings: normal;
}
#reasons .reason ul{
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 14px;
    padding-top: 30px;
    padding-bottom: 45px;
}
#reasons .reason li{
	width: 384px;
}
#reasons .reason li .reason-inner{
	background: #fff;
    border-radius: 5px;
    margin-top: -20px;
    padding: 0 40px;
}
#reasons .reason .reason-inner p{
font-size: 16px;
    font-weight: 500;
    text-align: left;
    width: 100%;
    padding: 50px 0 30px;
    box-sizing: border-box;
    line-height: 1.5625;
}
#reasons .reason .reason-inner img {
    margin: auto;
    display: block;
}
.reason-inner span {
    margin-top: 48px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: justify;
    display: inline-block;
    padding: 0 10px;
	margin-bottom: 30px;
}

/* 物件数セクション //
---------------------------------------------- */
#subheader .bukken {
	box-sizing: border-box;
	padding-top: 15px;
	height: 230px;
	background-color: #0ea95a;
	overflow: hidden;
	position: relative;
	z-index: 1;
	color: #fff;
}
#subheader .bukken::before {
	margin: auto;
	width: 760px;
	background: url(/images/index/shd-bukken_bg.png) no-repeat;
	position: absolute;
	top: 0;
	right: calc((100% - 1000px)/2 - 163px);
	bottom: 0;
	z-index: -1;
	content: "";
}
#subheader .bukken::after {
	width: 100%;
	background: url(/images/index/shd-bukken_texture.png);
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: "";
}
#subheader .bukken header {
	box-sizing: border-box;
	padding-top: 33px;
	padding-left: 30px;
	width: 479px;
	float: left;
	text-align: center;
}
#subheader .bukken header h2 {
	margin-bottom: 9px;
	font-size: 3rem;
	line-height: 1.1;
}
#subheader .bukken .koushin > * {
	display: inline;
}
#subheader .bukken .koushin {
	font-size: 1.3rem;
}
#subheader .bukken .kensu {
	margin-top: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
#subheader .bukken .kensu dt {
	box-sizing: border-box;
    margin-right: 20px;
    padding: 0 10px;
    min-width: 170px;
    font-size: 1.8rem;
    line-height: 3.5rem;
    background: #555555;
}
#subheader .bukken .kensu dd {
	font-size: 4rem;
	font-weight:600;
}
#subheader .bukken .kensu dd em {
	font-size: 6rem;
	font-weight: 600;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial;
	letter-spacing: -0.1rem;
}
#subheader .bukken .btns {
	margin-left: auto;
	width: 485px;
}
#subheader .bukken .txt {
	padding-top: 40px;
	margin-bottom: 23px;
	font-size: 2.1rem;
	line-height: 2.8rem;
	font-weight: 600;
	white-space: nowrap;
}

#subheader .bukken .btn {
	background-color: #0ea95a;
	font-size: 2.2rem;
	border: 2px solid #fff;
	margin: auto;
}
#subheader .bukken .btn :hover {
    background-color: #0b743e;
	border-radius: 5px;
}

#subheader .bukken .btns .btn {
	width: 410px;
	height: 70px;
	font-size: 2rem;
}
/* 緑バックゾーン //
////////////////////////////////////////////////////////////////////*/
.green-zone {
	background-color: #e5f7ee;
	position: relative;
}
.green-zone::before{
	content: "";
	background: url(/images/index/right-rec.png) no-repeat;
	position: absolute;
	right: 0;
	top: 0;
	width: 615px;
	height: 581px;
}
.green-zone::after{
	content: "";
	background: url(/images/index/left-rec.png) no-repeat;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 452px;
	height: 431px;
}
/* アクセスランキング //
////////////////////////////////////////////////////////////////////*/

#ranking {
	padding: 95px 0 50px;
}
#ranking > div > header h2 {
	float: left;
    color: #333;
    font-size: 2.2rem;
    line-height: 58px;
}
#ranking > div > header h2 i {
	margin-right: 14px;
    color: #d5b554;
    position: relative;
    bottom: 2px;
    font-size: 2.8rem;
}
#ranking-list {
	margin-left: auto;
	width: 604px;
	height: 58px;
	display: flex;
}
#ranking-list li {
	margin-left: 1px;
	flex: 1;
	background-color: #ccc;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 58px;
	text-align: center;
	cursor: pointer;
}
#ranking-list .active {
	background-color: #0ea95a;
}
#ranking-list li:not(.active):hover {
    opacity: 0.8;
}
#ranking-tksn-wrap {
	position: relative;
}
#ranking-tksn {
	box-sizing: border-box;
	height: 170px;
	border: 1px solid #ccc;
	overflow-y: scroll;
	position: static;
	width: 100%;
	background: #fff;
}
#ranking-tksn.loading {
	pointer-events: none;
}
#ranking-tksn .tksn_box {
    padding-top: 10px;
    text-align: center;
    font-size: 1.6rem;
    height: 170px;
    align-content: center;
}
#ranking-tksn .tksn_box > table {
	margin: auto !important;
	width: 860px;
}


/* 新着情報 //
////////////////////////////////////////////////////////////////////*/

#info > div {
	box-sizing: border-box;
	margin-bottom: 80px;
	padding: 1px;
	border: 1px solid #ccc;
	display: table;
}
#info > div >header, #info > div >ul {
	display: table-cell;
	vertical-align: bottom;
}
#info > div >header {
	padding-bottom: 15px;
	width: 278px;
	background-color: #0ea95a;
	color: #fff;
	text-align: center;
}
#info > div > header h2 {
	margin-bottom: 23px;
	padding-bottom: 23px;
	background: url(/images/index/info_bg.gif) no-repeat center bottom;
	font-size: 2.3rem;
	line-height: 1.2;
}
#info > div > header p {
    box-sizing: border-box;
    margin: auto;
    width: 140px;
    height: 25px;
    display: table;
    transition: background 0.1s;
}
#info > div > header p:hover {
	background-color: #264a87;
}
#info > div > header p a {
	padding: 6px 5px;
	display: block;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1;
	background: #555555;
}
#info > div > header p a i {
	margin-right: 0.4em;
}

/*----------*/

#info .list ul {
	height: 143px;
	overflow-y: scroll;
}
#info .list li {
	position: relative;
	background: #fff;
}
#info .list li:not(:last-child)::after {
	margin: 0 12px;
	height: 0;
	border-top: 1px dotted #ccc;
	display: block;
	content: "";
}
#info .list li > a {
	width: 100%;
	height: 72px;
	display: table;
	transition: background 0.1s;
}
#info .list li > a:hover {
	background-color: #fbfcff;
}
#info .list li > a > * {
	display: table-cell;
	vertical-align: middle;
}
#info .list li > a > time {
	width: 116px;
	color: #f60;
	font-size: 1.3rem;
	line-height: 1;
	text-align: center;
}
#info .list li > a > .photo {
	width: 52px;
}
#info .list li > a > .photo > span {
	width: 52px;
	height: 52px;
	display: block;
	overflow: hidden;
}
#info .list li > a > .photo > span img {
	width: auto;
	height: 52px;
	position: relative;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	pointer-events: none;
	backface-visibility: hidden;
	vertical-align: unset;
}
#info .list li > a > div {
	padding-left: 140px;
	line-height: 1.2;
}
#info .list li > a > div h4 {
	font-size: 1.4rem;
}
#info .list li > a > div p {
	margin-top: 5px;
	font-size: 1.4rem;
}
#info .list .cate {
	margin: auto;
	width: 100px;
	height: 20px;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 190px;
	text-align: center;
}
#info .list .cate a {
	padding: 2px 10px;
	border: 1px solid #0ea95a;
	display: block;
	color: #0ea95a;
	font-size: 1.2rem;
	line-height: 1.2;
}


/* 物件検索 //
////////////////////////////////////////////////////////////////////*/

#kensaku {
	padding-bottom: 100px;
	position: relative;
    z-index: 1;
}
#kensaku h2 {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
	color: #555;
	font-size: 3.4rem;
	line-height: 1.2;
	text-align: center;
	clear: both;
}
#kensaku ul::after {
	display: block;
	clear: both;
	content: "";
}
#kensaku li {
	height: 140px;
	display: table;
	float: left;
	position: relative;
}
#kensaku li:not(:last-child) {
	margin-right: 30px;
}
#kensaku li a {
	background-color: #0ea95a;
	border-radius: 12px;
	display: table-cell;
	color: #fff;
	font-weight: 600;
	text-align: center;
	vertical-align: middle;
	transition: background 0.1s;
}
#kensaku li a:hover {
	background-color: #0b743e;
}
#kensaku li a i {
	box-sizing: border-box;
	padding-top: 29px;
	width: 80px;
	height: 80px;
	background-color: #555555;
	border-radius: 50%;
	position: absolute;
	top: -14px;
	right: -14px;
	font-size: 1.8rem;
	line-height: 1;
}
#kensaku li a i em {
	font-size: 2.2rem;
}
#kensaku .bukken {
	margin-bottom: 50px;
}
#kensaku .bukken li {
	width: 484px;
	font-size: 2.8rem;
	line-height: 3.4rem;
}
#kensaku .bukken li:first-child {
	width: 484px;
}
#kensaku .rima li {
	width: 227px;
	font-size: 2rem;
	line-height: 1;
}
#kensaku .rima .parsent {
	margin: 7px 0;
	display: block;
	font-size: 3rem;
}
#kensaku .rima .parsent em {
	font-size: 4.6rem;
}
#kensaku .rima .parsent span {
	font-size: 2.2rem;
}

/* おすすめ収益物件 //
////////////////////////////////////////////////////////////////////*/

#osusume {
	padding: 75px 0 80px;
	position: relative;
}
#osusume .cont-w{
	width: 1000px;
}

#osusume h2 {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
	color: #555;
	font-size: 3.4rem;
	line-height: 1.2;
	text-align: center;
}
#osusume .btn {
	box-sizing: border-box;
	margin: 65px auto 0;
    width: 450px;
	height: 60px;
	background-color: #0ea95a;
	border: 1px solid #fff;
	border-radius: 5px;
	display: table;
}
#osusume .btn a {
	display: table-cell;
	color: #fff;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.1;
	text-align: center;
	vertical-align: middle;
	transition: background 0.1s;
	border-radius: 5px;

}
#osusume .btn a:hover {
	background-color: #0b743e;
}
#osusume .tksn.loading {
	height: 886px;
}


/* 物件紹介バナー //
////////////////////////////////////////////////////////////////////*/

#focus {
	margin-right: auto;
	margin-left: auto;
	width: 760px;
}
#focus li {
	text-align: center;
}
#focus li:not(:last-child) {
	margin-bottom: 50px;
}
#focus li img {
	width: auto;
	height: auto;
	max-width: 100%;
}

/*----------*/

#focus .youtube {
	padding-bottom: 56.25%;
	height: 0;
	background-color: #efefef;
	position: relative;
}
#focus li + .youtube {
	margin-top: -20px;
}
#focus .youtube iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}


/* サイト内バナーコーナー //
////////////////////////////////////////////////////////////////////*/

#menubox {
	margin: 100px 0 100px;
	overflow: hidden;
}
#menubox ul {
    width: 1180px;
}
#menubox li {
	margin-top: 40px;
	margin-right: 50px;
	width: 360px;
    height: 172px;
	background-color: #fff;
	display: table;
	float: left;
}
#menubox li a {
	width: 100%;
	height: 100%;
	background-color: #0668b3;
	display: table-cell;
	vertical-align: middle;
	border-radius: 12px;
}
#menubox li a div {
	box-sizing: border-box;
    padding: 0 20px 0 30px;
    display: flex;
    justify-content: space-between;
}
#menubox li h4 {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
#menubox li h4 span {
	display: table-cell;
	color: #fff;
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.1;
	vertical-align: middle;
	letter-spacing: -0.05em;
}
#menubox li h4 span.title-sub {
    font-size: 1.7rem;
    font-weight: 500;
}
#menubox li .more {
	box-sizing: border-box;
	position: relative;
	width: 46px;
	height: 42px;
	color: #555555;
	background-color: #fff;
	font-size: 1.2rem;
	line-height: 1;
	border-radius: 50px;
	top: -5px;
}
#menubox li .more i {
	margin: auto;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translatey(-50%);
}

/*----------*/


#menubox .bukken {
	margin-top: 0;
	width: 565px;
    height: 172px;
}
#menubox .bukken a {
	background-image: url(/images/index/menubox_bukken.jpg);
}
#menubox .voice {
	margin-top: 0;
	margin-right: 0;
	width: 565px;
    height: 172px;
}
#menubox .voice a {
	background-image: url(/images/index/menubox_voice.jpg);
}
#menubox .shiryo a {
	background-image: url(/images/index/menubox_shiryo.jpg);
}

#menubox .ov a {
	background-image: url(/images/index/menubox_ov.jpg);
}
#menubox .profit a {
	background-image: url(/images/index/menubox_profit.jpg);
}
 #menubox .company {
	margin-right: 0;
}
#menubox .company a {
	background-image: url(/images/index/menubox_company.jpg);
}


/* トップ会社案内 //
////////////////////////////////////////////////////////////////////*/

#cominfo {
	padding: 70px 0 80px;
	background: #e5f7ee;
}
#cominfo .cont-w{
	width: 1180px;
}
#cominfo header {
    margin-bottom: 30px;
    color: #179a46;
    font-weight: 600;
    text-align: center;
    font-size: 3.6rem;
}
#cominfo header h3 {
	margin-bottom: 30px;
	line-height: 1.5;
}
#cominfo header p {
	font-size: 1.6rem;
    line-height: 3.8rem;
    color: #333333;
    font-weight: 500;
    text-align: left;
    width: 1000px;
    margin: auto;
    font-feature-settings: normal;
}
html:not([lang='ja']) #cominfo header h3 {
	font-size: 3.2rem;
	line-height: 1.2;
}
#cominfo .cominfo_photos{
	display: flex;
	justify-content: space-between;
	margin-top: 70px;
}
#cominfo figure {
	text-align: center;
}

/*----------*/



/*----------*/
.toiawase {
    background: #fff;
    border-radius: 12px;
    height: 242px;
    margin-top: 80px;
    padding: 20px;
	box-sizing: border-box;
}
#cominfo .toiawase h3 {
    font-size: 3rem;
    color: #0ea95a;
    font-weight: 600;
    text-align: center;
}
#cominfo .toiawase h3 + p {
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    margin-top: 14px;
    font-feature-settings: normal;
}
.toiawase-inner {
    display: flex;
    justify-content: space-between;
    width: 820px;
    margin: 23px auto;
    height: 68px;
}
#cominfo .toiawase .tel a {
    color: #0ea95a;
    font-family: 'Lato', sans-serif;
    line-height: 1;
    font-weight: 600;
    font-size: 2.6rem;
    width: 360px;
    display: flex;
    height: 68px;
    justify-content: center;
	align-items: center;
	border: 2px solid #0ea95a;
	border-radius: 5px;
    box-sizing: border-box;
}
#cominfo .toiawase .tel a i {
	margin-right: 10px;
    font-size: 26px;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
}
#cominfo .toiawase .tel span{
	font-size: 1.4rem;
	text-align: center;
	    width: 100%;
    display: inline-block;
    margin-top: 8px;
    font-feature-settings: normal;
}
#cominfo .toiawase .mail a {
    background: #0ea95a;
	color:#fff;
    line-height: 1;
    font-weight: 600;
    font-size: 1.8rem;
    width: 360px;
    display: flex;
    height: 68px;
    justify-content: center;
	align-items: center;
	border-radius: 5px;
    box-sizing: border-box;
}

/* seo //
////////////////////////////////////////////////////////////////////*/
section#seo-text {
    font-size: 1.2rem;
    font-feature-settings: normal;
    padding: 30px 0;
    width: 1000px;
    margin: auto;
	line-height: 1.66;
}
section#seo-text p {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.front #body_footer {
    margin-top: 0; 
}