html{font-size: 62.5%;}
body {
	width:100%;
	height:100%;
	color: #000;
	font-family:YakuHanJP_Narrow,"kinto-sans","游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
	letter-spacing: 1px;
	margin:0;
	padding: 0;
	border: 0;
    display: flex; /* フレックスボックスに有効に */
  flex-flow: column; /* 要素を縦に並べる */
  min-height: 100vh; /* 最小でも画面の高さ分のbodyの高さを担保する */
}
div, ul, li {
	box-sizing: border-box;
}

a:link {
	text-decoration: none;
    color: #898989;
    transition: all .3s;
}

a:visited {
    color: #898989;
}

.c-both{
    clear: both;
    height:0em;
    visibility:hidden;
    overflow:hidden;
    content:”.”;
}

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

header {
    margin: 0;
    padding: 0; 
    border-top:5px solid;
    border-image: linear-gradient(to right, #D02BAD, #7639D2, #05D7B6) 1;
    display: block;
    position: fixed;
    top:0;
    width: 100%;
    z-index: 100;
}

#header_base {
    margin: 0 auto;
    padding: 10px 30px; 
    display: block flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.logo {
    width: 200px;
    height: 72px;
    background: url(images/logo.svg)center left no-repeat;
    background-size: contain;
    text-indent: -9999px;
    margin: 0;
}

main {
    margin: 200px auto 100px;
    padding: 0;
    flex: 1; /* 画面の高さから他の同レイヤーの要素の高さを引いた値に */
    width: 100%;
}

/*Gナビ*/
nav{
	display: block;
    position: fixed;
    right: 120px;
    top: 28px;
}
.drawer{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  text-align: right;
}
.navbar_toggle{
  z-index:9999;
}
.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: #171C61;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}
.navbar_toggle_icon:nth-child(1) {
    top: 0;
}
.navbar_toggle_icon:nth-child(2) {
    margin: 4px 0;
}
.navbar_toggle_icon:nth-child(3) {
    top: 0;
}
.menu.open {
  -webkit-transform:translateX(0);
  transform:translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
	background: #FFF;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
	background: #FFF;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
	background: #FFF;
}
.menu{
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
-webkit-transition:ease .5s;
transition:ease .5s;
z-index:1000;
float: right;
}
.menu ul{
  padding: 0px 20px;
    width: 100%;
}
.menu ul li{
	display: block;
	text-align: center;
}
.menu ul li a{
	font-size: 1.4rem;
	color: #000;
	letter-spacing: 3px;
	font-weight: bold;
	text-align: center;
	line-height: 160%;
}
.nav_icon{
	display: block flex;
    position: fixed;
    align-items: center;
    right: 30px;
    top: 38px;
}
.nav_icon_mail{
	width: 20px;
    margin-right: 30px;
     transition: .4s;
}
.nav_icon_mail:hover {
transform: scale(1.2,1.2);
}
.nav_icon_tel{
	height: 23px;
 transition: .4s;
}
.nav_icon_tel:hover {
transform: scale(1.2,1.2);
}

@media screen and (min-width: 960px) {

.navbar_toggle{
  display: none;
}
.menu{
  width: 100%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.menu ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}	
.menu ul li{
	display: block;
  padding: 0px 20px;
	text-align: center;
}	
}

a.underline {
	position: relative;
}
a.underline::after {
	background: linear-gradient(to right, #d02bad, #7639d2, #05d7b6);
	bottom: 0;
	content: '';
	display: block;
	height: 1px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -8px;
	position: absolute;
	transition: .5s all;
	width: 0;
}
@media screen and (min-width: 960px) {
	a.underline:hover::after {
		width: 100%;
	}
}

@media only screen and (max-width:960px){
#header_base {
    padding: 5px 15px; 
}

.logo {
    width:113px;
    height:40px;
}
main {
    margin: 110px auto 60px;
}
	
.drawer{
padding: 22px 15px;
position: fixed;
top: 0px;
right: 0px;
pointer-events: auto;
z-index: 100;
}
	
.menu{
background: rgba(23,28,97,0.9);
height: 100%;
position: fixed;
width: 100%;
z-index: 98;
top: 0;
left:0;
}
.menu ul{
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit- transform: translateY(-50%) translateX(-50%);
}	
.menu ul li{
  padding: 10px 20px;
}	
.menu ul a{
	position: relative;
	pointer-events: auto;
}
.menu ul li a{
	font-size: 1.4rem;
	color: #FFF!important;
	letter-spacing: 2px;
	font-weight: bold;
}
.nav_icon{
    right: 70px;
    top: 19px;
}
.nav_icon_mail{
    margin-right: 25px;
}
.nav_icon_tel{
}
}

/*フッター*/
footer {
    background: #171C61;
    margin: 0 auto;
    padding: 18px 30px ;
    display: block flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.footer_menu{
font-size:1.3rem;
color: #FFF;
display: inline-block;
}
.footer_menu:hover{
opacity: 0.7;
filter: alpha(opacity=70);
-moz-opacity: 0.7;
}
.copyright{
font-size:1.6rem;
color: #FFF;
font-family: din-condensed, sans-serif;
font-style: normal;
font-weight: 400;
display: flex;
align-items: center;
margin: 0;
}
.copyright::after {
content: url(images/footer_logo.svg);
display: block;
width: 50px;
height: 50px;
margin-left: 20px;
}

@media only screen and (max-width:768px){
footer {
    padding: 15px 20px;
    display: block;
    text-align: center;
}
.footer_menu{
font-size:1.2rem;
margin: 0 auto 10px;
text-align: center;
}
.copyright{
font-size:1.5rem;
display: block;
margin: 0 auto;
text-align: center;
}
.copyright::after {
width: 40px;
height: 40px;
margin: 10px auto 0;
}
}

/* ページTOPに戻る */
.pagetop {
    display: none;
	position: fixed;
	right: 30px;
	bottom: 19px;
    z-index: 50;
}
.pagetop a {
	display: block;
    background: url(images/page_top.svg);
	width: 50px;
	height: 50px;
 transition: .4s;
}
.pagetop a:hover {
transform: scale(1.2,1.2);
}
.page_nav{
display: block flex;
align-items: center;
justify-content: space-between;
gap:30px;
}
.page_nav_p{
font-family: din-condensed, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 2.6rem;
line-height: 0;
color: #171C61;
margin:0;
}
.page_nav_prev{
display: flex;
align-items: center;
justify-content: flex-start;
gap:20px;
}
.page_nav_next{
display: flex;
align-items: center;
justify-content: flex-end;
gap:20px;
}
.page_nav_next_btn a{
    display: block;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.5s;
    background: url(images/btn_next.svg)center center no-repeat;
}
.page_nav_next_btn a:hover {
transform:scale(1.2,1.2);
}
.page_nav_prev_btn a{
    display: block;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.5s;
    background: url(images/btn_prev.svg)center center no-repeat;
}
.page_nav_prev_btn a:hover {
transform:scale(1.2,1.2);
}
.page_nav_line {
    display: block;
    margin: 60px auto 40px;
    padding: 0;
    text-align: center;
}
@media screen and (max-width: 768px) {
.pagetop {
	right: 15px;
	bottom: 15px;
}
.pagetop a {
	width: 40px;
	height: 40px;
}
.page_nav_p{
font-size: 2rem;
}
.page_nav_prev{
gap:15px;
}
.page_nav_next{
gap:15px;
}
.page_nav_line {
    margin: 25px auto 20px;
}
}

/*フェードイン*/
.fadein, .time-fadein {
	opacity: 0;
	transform: translate(0, 40px);
	transition: all 800ms;
}
.fadein.scrollin, .time-fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}
.fadein.fadein_l, .time-fadein.fadein_l {
	transform: translate(-50px, 0);
	transition: all 800ms;
	opacity: 0;
}
.fadein.fadein_l.scrollin, .time-fadein.fadein_l.scrollin {
	transform: translate(0, 0);
	opacity: 1;
}
.fadein.fadein_r.fadein, .time-fadein.fadein_r.fadein {
	transform: translate(50px, 0);
	transition: all 800ms;
	opacity: 0;
}
.fadein.fadein_r.scrollin, .time-fadein.fadein_r.scrollin {
	transform: translate(0, 0);
	opacity: 1;
}

@media screen and (max-width:850px) {
	/*タブレット以下は下からスライドに固定(横ずれを防ぐ為)*/
	.fadein, .time-fadein {
		transform: translate(0, 40px) !important;
	}
	.fadein.scrollin, .time-fadein.scrollin {
		opacity: 1;
		transform: translate(0, 0) !important;
	}
}

/*ページ*/
.title_line {
display: block;
background-color: #171C61;
margin: 0 auto;
padding: 0;
text-align: center;
}
.title_base {
display: block flex;
max-width: 1280px;
align-items: center;
justify-content: space-between;
margin: 0 auto;
padding: 0 30px;
box-sizing: border-box;
}
h2 {
font-size: 1.4rem;
line-height: 1;
letter-spacing: 5px;
color: #fff;
margin: 0;
}
.title {
font-size: 6rem;
font-family: din-condensed, sans-serif;
font-style: normal;
font-weight: 400;
line-height: 1;
color: #fff;
margin-top: -7px;
margin-bottom: -11px;
}

article {
margin: 0;
padding: 0;
}
#contents_base {
    display: block;
    margin: 0 auto;
    padding: 0px 30px;
    max-width: 1260px;
    position: relative;
}

/* お知らせ */
#information_area {
display: block;
position: relative;
}
.information_item{
display: block;
border-bottom: dotted 1px #b5b5b5; 
padding: 0px 0px 22px 0px;
margin: 0 auto 28px;
}
.information_date{
font-family: din-condensed, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 1.8rem;
color: #171C61;
margin-bottom: 10px;
margin-top: 0;
line-height: 1;
display: flex;
align-items: center;
}
.information_tit{
font-size: 1.4rem;
line-height: 1.6;
margin: 0;
}
.information_new{
display: inline-block;
padding: 1px 3px;
font-size: 1.6rem;
color: #FFF;
line-height: 1;
background: linear-gradient(to right, #D02BAD, #7639D2, #05D7B6);
margin-left: 15px;
}
.information_page_tit{
font-size: 2rem;
line-height: 1.6;
font-weight: bold;
margin: 5px auto 30px;
color: #171C61;
}
.information_contents{
position: relative;
}
.information_contents p{
font-size: 1.4rem;
line-height: 1.8;
margin: 0 auto 50px;
}
.information_contents img{
width: 100%;
max-width: 500px;
display: block;
text-align: center;
margin: 0 auto 50px;
}
.back_btn {
    float: right;
    display: block;
    padding: 8px 0px 8px 40px;
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 160px;
}
.back_btn p {
    color: #FFF;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 5px;
    z-index: 15;
    display: flex;
    align-items: center;
}
.back_btn:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 120px;
left: 170px;
  background: linear-gradient(to right, #d02bad, #7639d2, #05d7b6);
    display: block;
-webkit-transition: all 0.4s;
transition: all 0.4s;
}
.back_btn:hover:after {
left: 180px;
}
.back_btn_bk {
    display: block;
    background-color: #171C61;
    position: absolute;
    width: 230px;
    height: 100%;
    left: 0;
}


/* 会社案内 */
#company_area {
    display: block;
    position: relative;
    padding-right: 200px;
}
.company_logo {
	position: absolute;
    top:0;
    right: 30px;
    width: 100px;
}
table.company_table {
    border-collapse:  collapse;
}
table.company_table th,
table.company_table td{
	padding: 30px 30px;
    font-size: 1.5rem;
    line-height: 1.8;
}
table.company_table th{
	width: 100px;
}
table.company_table tr {
	border-bottom: 1px #898989 dotted;
}
.company_tit {
	display: block;
    background-color: #efefef;
    color: #171c61;
    font-weight: bold;
    padding: 2px 8px;
    margin: 18px auto -4px;
}
.company_p {
	font-size: 1.4rem;
}

/* ご契約の流れ */
#flow_area {
    display: block;
    position: relative;
}
.flow_flex {
    display: block flex;
    align-items: center;
    gap: 50px;
}
.flow_flex img {
    width: 190px;
    height: 190px;
}
.flow_en {
    font-family: din-condensed, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center;
    margin: 0 auto 5px;
    color: #7639d2;
}
.flow_no {
    font-family: din-condensed, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 5rem;
    text-align: center;
    margin: 0 auto;
    color: #171c61;
}
#flow_area h3 {
    font-size: 2.2rem;
    color: #171c61;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 3px;
}
.flow_p {
    font-size: 1.5rem;
    line-height: 1.8;
}
.flow_allow {
    background: url(images/allow_pu.svg)top center no-repeat;
    background-size: contain;
    width: 20px;
    height: 17px;
    margin: 25px 0 25px 85px;
}

/* サービスプラン */
#service_area {
    display: block;
    position: relative;
}
#service_area h3 {
    font-family: din-condensed, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 4rem;
    color: #171c61;
    display: block flex;
    align-items: center;
    margin-bottom: -10px;
	white-space: nowrap;
}
#service_area h3:after {
    content: "";
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, #d02bad, #7639d2, #05d7b6);
    display: block;
    margin-left: 50px;
}
.service_tit {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 8px;
}
table.service_table {
    border-collapse: separate;
    border-spacing: 20px 15px;
    margin: 0 auto 80px;
}
table.service_table_sp {
    display: none;
}
.plan_tit{
	color: #FFF;
    background-color: #171c61;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    padding: 16px;
    letter-spacing: 5px;
}
.plan_basic{
	color: #FFF;
    background-color: #d02bad;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    padding: 16px;
    letter-spacing: 3px;
}
.plan_standard{
	color: #FFF;
    background-color: #7639d2;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    padding: 16px;
    letter-spacing: 3px;
}
.plan_premium{
	color: #FFF;
    background-color: #05d7b6;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    padding: 16px;
    letter-spacing: 3px;
}
.plan_p{
	color: #171c61;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 auto 10px;
}
.plan_txt{
    font-size: 1.3rem;
    line-height: 1.6;
    width: 25%;
    vertical-align: top;
    padding: 0;
}
#service_area h4 {
    display: block flex;
    align-items: center;
    background: #EFEFEF;
    padding: 10px 18px;
    color: #171C61;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 auto 10px;
}
#service_area h4 span {
    color: #D02BAD;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 15px;
}
.service_finance{
    display: block;
    margin: 30px auto 80px;
}
.service_realestate{
    font-size: 1.6rem;
	line-height:2;
	margin-bottom:20px;
}
.realestate_grid {
display:grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin:0 auto 80px;
  }
.marketing_list ul {
    font-size: 1.6rem;
    font-weight: bold;
    color: #171C61;
    list-style:none;
    padding-left: 0;
}
.marketing_list ul li {
    background: url(images/check.svg)left center no-repeat;
    background-size:40px;
    padding-left: 60px;
    min-height: 40px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.service_marketing{
    display: block;
    margin: 30px auto 50px;
}


/* 実績 */
#result_area {
    display: block;
    position: relative;
}
.result_flex {
    display: block flex;
    gap: 50px;
    margin: 0 auto 60px;
    padding-bottom: 60px;
    border-bottom: 1px #898989 dotted;
}
.result_en {
    font-family: din-condensed, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center;
    margin: 0 auto 5px;
    color: #d02bad;
}
.result_no {
    font-family: din-condensed, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 5rem;
    text-align: center;
    margin: 0 auto;
    color: #171c61;
}
.result_tit {
    font-size: 1.8rem;
    color: #171c61;
    font-weight: bold;
    margin-bottom: -7px;
}
.result_mini {
    font-size: 1.3rem;
    color: #898989;
    margin-bottom: 20px;
}
.result_p {
    font-size: 1.5rem;
    line-height: 1.8;
}
.result_allow {
    background: url(images/allow_pi.svg)top center no-repeat;
    background-size: contain;
    width: 20px;
    height: 17px;
    display: block;
    text-align: center;
    margin: 20px auto;
}
.result_main {
    display: block;
    padding: 20px 35px;
    border: 1px #d02bad solid;
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: bold;
    margin: 0 auto;
}

/* ブログ */
#blog_area {
    display: block flex;
    position: relative;
    gap: 80px;
}
.blog_post {
    display: block ;
    width: calc(100% - 300px);
}
.blog_sideber {
    display: block ;
    width: 250px;
}
.blog_sideber_box {
    display: block ;
    margin: 0 auto 50px;
}
.blog_tit {
    font-family: din-condensed, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 3rem;
    margin: 0 auto 20px;
    color: #05d7b6;
}
.blog_sideber_item{
display: block;
border-bottom: dotted 1px #b5b5b5; 
padding: 0px 0px 15px 0px;
margin: 0 auto 20px;
}
.blog_sideber_date{
font-family: din-condensed, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 1.8rem;
color: #171C61;
margin-bottom: 6px;
margin-top: 0;
line-height: 1;
display: flex;
align-items: center;
}
.blog_sideber_tit{
font-size: 1.4rem;
line-height: 1.6;
margin: 0;
}
.blog_sideber_list {
list-style:  none;      /* デフォルトのアイコンを消す */
margin:  0;             /* デフォルト指定上書き */
padding: 0;             /* デフォルト指定上書き */
}
.blog_sideber_list li {
font-size: 1.5rem;
line-height: 1.6;
font-weight: bold;
display: flex;
align-items: center;
margin-bottom: 10px;
}
.blog_sideber_list li a {
color: #171C61;
}
.blog_p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 0 auto 50px;
}


/* プライバシーポリシー */
#policy_area {
    display: block;
    position: relative;
}
.policy_p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 40px;
}
.policy_day {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: -15px;
    color: #898989;
    text-align: right;
}
.policy_company {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 80px;
    font-weight: bold;
    text-align: right;
}
.policy_tit {
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: bold;
    color: #171c61;
    display: block;
    background: #efefef;
    padding: 10px 20px;
    border-left: #171c61 5px solid;
    margin: 0 auto 25px;
}
.policy_tit2 {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: bold;
    color: #171c61;
    margin: 0 auto -5px;
}


/* お問い合わせボックス */
#contact_box_area {
    display: block;
    position: relative;
    background: #EFEFEF;
    padding: 50px 80px;
    margin: 80px auto 0;
}
.contact_box_tit {
    font-family: din-condensed, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 6rem;
    text-align: center;
    margin: 0 auto 15px;
    color: #171c61;
}
.contact_box_p {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
    margin: 0 auto 30px;
}
.contact_box_grid {
    display: grid;
    justify-content: center;
    gap: 20px 80px;
    grid-template-columns: repeat(auto-fit, 280px);
}
.contact_box_tel_btn {
    display: block flex;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    background-color: #171C61;
    width: 280px;
    position: relative;
    height: 70px;
}
.contact_box_tel_btn p {
    color: #FFF;
    font-family: din-condensed, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.contact_box_tel_btn p:before {
content: url(images/wh_icon_tel.svg);
display: block;
width: 20px;
height: 28px;
margin-right: 20px;
}
.contact_box_tel_btn:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100px;
left: 230px;
  background: linear-gradient(to right, #d02bad, #7639d2, #05d7b6);
    display: block;
-webkit-transition: all 0.4s;
transition: all 0.4s;
}
.contact_box_tel_btn:hover:after {
left: 240px;
}
.contact_box_fax_btn {
    display: block flex;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    background-color: #171C61;
    width: 280px;
    position: relative;
    height: 70px;
}
.contact_box_fax_btn p {
    color: #FFF;
    font-family: din-condensed, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.contact_box_fax_btn p:before {
content: url(images/wh_icon_fax.svg);
display: block;
width: 28px;
height: 25px;
margin-right: 20px;
}
.contact_box_fax_btn:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100px;
left: 230px;
  background: linear-gradient(to right, #d02bad, #7639d2, #05d7b6);
    display: block;
}
.contact_box_mail_btn {
    display: block flex;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    background-color: #171C61;
    width: 280px;
    position: relative;
    height: 70px;
}
.contact_box_mail_btn p {
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    color: #FFF;
}
.contact_box_mail_btn p:before {
content: url(images/wh_icon_mail.svg);
display: block;
width: 23px;
height: 15px;
margin-right: 20px;
}
.contact_box_mail_btn:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100px;
left: 230px;
  background: linear-gradient(to right, #d02bad, #7639d2, #05d7b6);
    display: block;
-webkit-transition: all 0.4s;
transition: all 0.4s;
}
.contact_box_mail_btn:hover:after {
left: 240px;
}

/* お問い合わせ */

#contact_area {
    display: block;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.contact_p {
    font-size: 1.5rem;
    margin: 0 auto 30px;
    line-height: 180%;
    text-align: center;
}
.error_messe{
    font-size: 1.3rem!important;
    color: #898989;
}
#formbase {
	margin: 0 auto;
    max-width: 800px;
}
#formWrap {
	margin:0px auto;
}
table.contact_table{
	margin:0px auto;
	border-collapse:collapse;
	width:100%;
	text-align: left;
    box-sizing: border-box;
}
table.contact_table td,
table.contact_table th{
	float:left;
	font-size:1.5rem;
	width: 100%;
}
table.contact_table td p,
table.contact_table th p{
margin:0;
padding:0;
}
table.contact_table td{
margin-bottom: 30px;
line-height: 160%;
}
table.contact_table th{
margin-bottom: 10px;
font-weight: bold;
}
fieldset {
    display: none;
}
.screen-reader-response {
    display: none;
}
.wpcf7-response-output {
   display: none;
}
.wpcf7-not-valid-tip{
   font-size: 1.3rem!important;
	color:#05d7b6!important;
}
.wpcf7-spinner {
    display:none!important;
}
textarea {overflow: auto;}
input, textarea, select {
border: 1px solid #898989;
background-color: #FFF;
padding: 15px 25px;
font-size: 1.5rem;
border-radius: 3px;
line-height: 160%;
box-sizing: border-box;
width: 100%;
}
input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #898989;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
    padding: 0;
    margin-right: 10px;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #05d7b6;
  content: '';
}
.sendbutton{
	margin:30px auto 0;
    display: flex block;
    justify-content: center;
}
.contact_btn{
    -webkit-appearance: none;
  font-weight: bold;
    margin: 0 auto;
    padding: 15px 60px;
    font-size: 1.6rem;
    text-align: center;
    color: #171C61;
    letter-spacing: 3px;
    transition: 0.5s;
    cursor: pointer;
    border-radius: 0;
    border: 1px #171C61 solid;
    width: 250px;
}
.contact_btn:hover{
  border-image: linear-gradient(to right, #d02bad, #7639d2, #05d7b6) 1;
  -webkit-transform: translate(1px, 1px);
  transform: translate(1px, 1px);
}
.hissu{
	font-size: 1.2rem;
	color: #FFF;
	font-weight: bold;
	background: #05d7b6;
	padding: 3px 4px;
    margin-left: 5px;
}
.contact_thanks {
    font-size: 5rem;
font-family: din-condensed, sans-serif;
font-style: normal;
font-weight: 400;
    line-height: 100%;
    margin: 0 auto 40px;
    padding: 0;
    letter-spacing: 5px;
    color: #171C61;
    text-align: center;
}
.contact_date {
	width:50%;
	margin-right:10px;
}
.contact_time {
	width:25%;
	margin-right:10px;
	min-height: 58px;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}


@media only screen and (max-width:798px){
.title_base {
padding: 0 20px;
}
h2 {
font-size: 1.1rem;
letter-spacing: 3px;
}
.title {
font-size: 4rem;
margin-top: -5px;
margin-bottom: -7px;
}
    
article {
background: none;
}
#contents_base {
    padding: 0px 20px;
}
    
/* お知らせ */
.information_item{
padding: 0px 0px 14px 0px;
margin: 0 auto 16px;
}
.information_date{
font-size: 1.7rem;
margin-bottom: 6px;
}
.information_tit{
font-size: 1.2rem;
}
.information_new{
font-size: 1.5rem;
margin-left: 10px;
}
.information_page_tit{
font-size: 1.6rem;
margin: 8px auto 18px;
}
.information_contents p{
font-size: 1.2rem;
margin: 0 auto 25px;
}
.information_contents img{
margin: 0 auto 25px;
}
.back_btn {
    padding: 3px 0px 3px 30px;
    margin-right: 100px;
}
.back_btn p {
    font-size: 1.2rem;
    letter-spacing: 4px;
}
.back_btn:after {
    width: 80px;
left: 130px;
}
.back_btn:hover:after {
left: 140px;
}
.back_btn_bk {
    width: 170px;
}

    /* 会社案内 */
#company_area {
    padding: 160px 0 0 0;
}
.company_logo {
    height: 150px;
    right:0;
}
table.company_table th,
table.company_table td{
    display: block;
    width: 100%;
    font-size: 1.3rem;
    text-align: left;
}
table.company_table th{
	padding: 10px 0 0 0 ;
}
table.company_table td{
	padding: 0 0 10px 0;
}
.company_tit {
    padding: 0px 5px;
    margin: 12px auto -4px;
}
.company_p {
	font-size: 1.2rem;
}
    
/* ご契約の流れ */
.flow_flex {
    display: block;
}
.flow_flex img {
    display: block;
    width: 80%;
    height: auto;
    max-width: 150px;
    margin: 0 auto 20px;
    text-align: center;
}
.flow_en {
    font-size: 1.5rem;
    margin: 0 auto 0px;
}
.flow_no {
    font-size: 4rem;
    margin-bottom: 5px;
}
#flow_area h3 {
    font-size: 1.8rem;
    margin: 0 auto 10px;
    text-align: center;
}
.flow_p {
    font-size: 1.3rem;
}
.flow_allow {
    margin: 20px auto;
    text-align: center;
    display: block;
}
    
/* サービスプラン */
#service_area h3 {
    font-size: 2.5rem;
    margin-bottom: -8px;
	white-space: normal;
}
#service_area h3:after {
    margin-left: 20px;
}
.service_tit {
    font-size: 1.1rem;
    letter-spacing: 4px;
}
table.service_table {
    display: none;
}
table.service_table_sp {
    display: block;
    border-collapse: separate;
    border-spacing: 0px 10px;
    margin: 0 auto 30px;
}
.plan_tit{
    font-size: 1.4rem;
    padding: 10px;
    letter-spacing: 5px;
}
.plan_basic{
    font-size: 1.4rem;
    padding: 10px;
    letter-spacing: 2px;
}
.plan_standard{
    font-size: 1.4rem;
    padding: 10px;
    letter-spacing: 2px;
}
.plan_premium{
    font-size: 1.4rem;
    padding: 10px;
    letter-spacing: 2px;
}
.plan_p{
    font-size: 1.3rem;
    margin: 0 auto 5px;
}
.plan_txt{
    font-size: 1.2rem;
    width: 100%;
    margin-bottom: 5px;
}
#service_area h4 {
    padding: 8px 14px;
    font-size: 1.4rem;
    margin-bottom: 10px;
}
#service_area h4 span {
    font-size: 1rem;
    margin-right: 8px;
}
.service_finance{
    display: block;
    margin: 20px auto 40px;
}
.service_realestate{
    font-size: 1.4rem;
	line-height:1.8;
	margin-bottom:10px;
}
.realestate_grid {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
margin:0 auto 40px;
  }
.marketing_list ul {
    font-size: 1.4rem;
    margin: 0 auto 20px;
}
.marketing_list ul li {
    background-size:30px;
    padding-left: 43px;
    min-height: 30px;
    margin-bottom: 10px;
}
.service_marketing{
    display: block;
    margin: 20px auto 30px;
}
    

/* 実績 */
.result_flex {
    display: block;
    margin: 0 auto 35px;
    padding-bottom: 35px;
}
.result_en {
    font-size: 1.5rem;
    margin: 0 auto 0px;
}
.result_no {
    font-size: 4rem;
    margin-bottom: 5px;
}
.flow_allow {
    margin: 20px auto;
    text-align: center;
    display: block;
}
.result_tit {
font-size: 1.6rem;
margin: 0 auto -5px;
}
.result_mini {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.result_p {
font-size: 1.3rem;
}
.result_allow {
    margin: 18px auto;
}
.result_main {
    padding: 16px 20px;
    font-size: 1.3rem;
}
    
/* ブログ */
#blog_area {
    display: block;
    position: relative;
}
.blog_post {
    width: 100%;
    margin: 0 auto 40px;
}
.blog_sideber {
    width: 100%;
}
.blog_sideber_box {
    margin: 0 auto 30px;
}
.blog_tit {
    font-size: 2.4rem;
    margin: 0 auto 15px;
}
.blog_sideber_item{
padding: 0px 0px 14px 0px;
margin: 0 auto 16px;
}
.blog_sideber_date{
font-size: 1.7rem;
margin-bottom: 6px;
}
.blog_sideber_tit{
font-size: 1.2rem;
}
.blog_sideber_list li {
font-size: 1.3rem;
margin-bottom: 6px;
}
.blog_sideber_list li:before {
margin-right: 8px;         
}
.blog_p {
    font-size: 1.2rem;
    margin: 0 auto 25px;
}
    
    
/* プライバシーポリシー */
.policy_p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.policy_day {
    font-size: 1.1rem;
    margin-bottom: -12px;
}
.policy_company {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 50px;
}
.policy_tit {
    font-size: 1.4rem;
    padding: 8px 15px;
    margin: 0 auto 20px;
}
.policy_tit2 {
    font-size: 1.3rem;
}

    
/* お問い合わせボックス */
#contact_box_area {
    padding: 25px 35px;
    margin: 40px auto 0;
}
.contact_box_tit {
    font-size: 3.8rem;
    margin: 0 auto 10px;
}
.contact_box_p {
    font-size: 1.2rem;
    text-align: left;
    margin: 0 auto 18px;
}
.contact_box_grid {
    gap: 18px;
    grid-template-columns: repeat(auto-fit, 250px);
}
.contact_box_tel_btn {
    padding: 10px 28px;
    width: 220px;
    height: 55px;
}
.contact_box_tel_btn p {
    font-size: 2rem;
}
.contact_box_tel_btn p:before {
width: 16px;
height: 22px;
margin-right: 15px;
}
.contact_box_tel_btn:after {
width: 60px;
left: 190px;
}
.contact_box_tel_btn:hover:after {
left: 200px;
}
.contact_box_fax_btn {
    padding: 10px 28px;
    width: 220px;
    height: 55px;
}
.contact_box_fax_btn p {
font-size: 2rem;
}
.contact_box_fax_btn p:before {
width: 22px;
height: 19px;
margin-right: 15px;
}
.contact_box_fax_btn:after {
width: 60px;
left: 190px;
}
.contact_box_mail_btn {
    padding: 10px 28px;
    width: 220px;
    height: 55px;
}
.contact_box_mail_btn p {
    font-size: 1.3rem;
}
.contact_box_mail_btn p:before {
width: 19px;
height: 13px;
margin-right: 15px;
}
.contact_box_mail_btn:after {
width: 60px;
left: 190px;
}
.contact_box_mail_btn:hover:after {
left: 200px;
}
    

    
/* お問い合わせ */
.contact_p {
    font-size: 1.3rem;
    text-align: left;
}
.error_messe{
    font-size: 1.1rem!important;
}
table.contact_table td,
table.contact_table th{
	font-size:1.3rem;
}
table.contact_table td{
	margin-bottom: 20px;
}
table.contact_table th{
	margin-bottom: 8px;
}
textarea {overflow: auto;}
input, textarea, select {
padding: 10px 15px;
font-size: 1.3rem;
}
input[type="radio"] {
    margin-right: 6px;
}
.sendbutton{
	margin:16px auto 0;
    gap:25px;
}
.contact_btn{
    padding: 12px 30px;
    font-size: 1.4rem;
    width: 200px;
    letter-spacing: 2px;
}

.hissu{
	font-size: 1.2rem;
	padding: 2px 3px;
    margin-left: 4px;
}
.contact_thanks {
    font-size: 3rem;
    margin: 0 auto 20px;
    padding: 0;
    letter-spacing: 3px;
}
.contact_time {
	min-height: 45px;
}
.wpcf7-not-valid-tip{
   font-size: 1.1rem;
}
    
.br-pc {
  display: none;
}
	
.br-sp {
  display: block;
}
	
}

@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}

.grecaptcha-badge { visibility: hidden; }