@charset "utf-8";

/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html{
outline: 0;
overflow-y: scroll;
}

body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table.table, caption, tbody, tfoot, thead, tr, th, td {border: 0;font-family: inherit;font-size: 100%;font-style: inherit;font-weight: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}
:focus {outline: 0;}


ol, ul {list-style: none;}
table.table {border-collapse: separate;border-spacing: 0;}
caption, th, td {font-weight: normal;text-align: left;}
blockquote:before, blockquote:after,q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}
a img{border: 0;}
figure{margin:0}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
/* -------------------------------------------------------------- */


body {
color:#333;
font-family: 'Noto Sans JP',sans-serif;
-webkit-font-smoothing : antialiased;
-moz-osx-font-smoothing : grayscale;
}


/* リンク設定------------------------------------------------------------*/
a{color:#0082D6;text-decoration:none;}
a:hover{color:#006699;}
a:active, a:focus {outline:0;}



/* ヘッダー------------------------------------------------------------*/
#header{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}

/* ロゴ--------------------------------------------------------------------*/
.logo{
display: flex;
align-items: center;
padding:15px 0 0 15px;
}

.logo img{
width: auto;
max-width: 100%;
}

/* 電話番号・メール------------------------------------------------------------*/
.info {
display: flex;
align-items: center;
}

.tel {
display: flex;
align-items: center;
font-size:22px;
font-weight:400;
}

.info span{
color:#333;
font-size:19px;
font-weight:500;
margin:0 10px 0 15px;
}

img.icon{
width:23px;
padding:10px 12px 0 10px;
}


/* メインコンテンツ------------------------------------------------------------*/

section.content article{	
overflow:hidden;
}

hr {
border:1px solid #f1f1f1;
}

section.content p{
margin-bottom: 5px;
line-height: 1.9;
}


/* テーブル------------------------------------------------------------*/
table.table{
border-collapse:collapse;
margin:25px auto 100px auto;
}

table.table td{
border-collapse:collapse;
background-color:#F9F9F9;
text-align:left;
padding:10px;
border:1px solid #D6D6D6;
line-height:20px;
vertical-align:middle;
}

table.table th{
background-color:#F5F5F5;
text-align:right;
vertical-align:middle;
padding:10px;
color: #151515;
border-top:1px solid #D4D4D4;
border-right:4px solid #D4D4D4;
border-bottom:1px solid #D4D4D4;
border-left:1px solid #D4D4D4;
font-size:13px;
font-weight:normal;
letter-spacing:1px;
background-repeat:repeat-x;
background-position:top;
}



/*テーブル２------------------------------------------------------------*/
table.table2 span{white-space: nowrap;}

table.table2{
border-collapse:collapse;
margin-bottom:80px;
margin-top:25px;
}

table.table2 td{
border-collapse:collapse;
background-color:#F9F9F9;
text-align:left;
padding:8px 10px;
border:1px solid #D6D6D6;
line-height:20px;
vertical-align:middle;
}

table.table2 th{
background-color:#F5F5F5;
text-align:center;
vertical-align:middle;
padding:8px;
color: #151515;
border:1px solid #D4D4D4;
font-size:15px;
font-weight:normal;
letter-spacing:1px;
background-repeat:repeat-x;
background-position:top;
}


/*フェードイン関連------------------------------------------------------------*/
.scroll_up {
transition: 0.5s ease-in-out;
transform: translateY(30px);
opacity: 0;
}
.scroll_up.on {
transform: translateY(0);
opacity: 1.0;
}

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
from {
opacity: 0;
transform: translateY(30px);
}

to {
opacity: 1;
transform: translateY(0);
}
}

.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
from {
opacity: 0;
}

to {
opacity: 1;
}
}

/*レイアウト関連------------------------------------------------------------*/

.center{
text-align: center;
}

.grid{
display:inline-block;
border-radius:5px;
background:#fff;
}


/*-------------------------------------------------------------------------------------------------------------*/
/* PC用--------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 961px){
#header,#wrapper{
width: 100%;
padding:0 5px 0 5px;
margin:0 auto;
max-width: 1280px;
background:#fff;
}

#wrapper{
position:relative;
}

/* ヘッダーTEL 配置用*/
#header .info{
padding:24px 20px 0 0;
}


/* モバイルのみTELリンク*/
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}




/* メニュー----------------------------------------------------------------------*/

/* モバイルのみメニューボタン表示*/
.btn-gNav{
display: none;
}
.menutext{
display: none;
}

#gNav{
clear:both;
overflow:hidden;
position:relative;
margin:20px 0 15px 0;
display: flex; 
justify-content: center;
}

#gNav .inner{
max-width:1100px;
padding:0 14px;
}

#gNav ul {
display:flex;
padding: 0;
margin: 0;
}

#gNav ul li{
position: relative;
}

/* メニュー文字*/
#gNav ul li a{
display: block;
text-align: center;
font-size:14px;
width:151px;
padding:18px 0 14px 0;
color:#333;
border-left:1px dotted #ebebeb;
font-weight:bold;
}

#gNav li:last-child{
border-right:1px dotted #ebebeb;
}

#gNav ul li a span,#gNav ul li a strong{
display:block;
}

#gNav li.active a, #gNav li a:hover{
color:#0082D6;
padding:18px 0 8px 0;
}


/* 写真ホバー---------------------------------------------------------------------------------*/
/*白シェードをかける処理*/
.whiteimg {
transition: opacity 0.3s;
}

.whiteimg:hover {
opacity: 0.6;
}



/* 見出し---------------------------------------------------------------------------------------*/
h1.index{
font-size:24px;
color:#222;
font-weight:400;
text-align: center;
margin:50px 0 15px 0;
line-height: 1.9;
font-family: 'Sawarabi Gothic', sans-serif;
}

h1.heading{
font-size:22px;
text-align: left;
padding:0 0 0 15%;
color:#333;
font-family: 'Sawarabi Gothic', sans-serif;
}

h1.privacy{
font-size:22px;
color:#fff;
text-align: left;
width:100%;
padding:5px 0 5px 50px;
background-color:#333;
margin:40px 0 30px 0;
font-family: 'Sawarabi Gothic', sans-serif;
}


h2.privacy{
font-size:16px;
text-align: left;
width:100%;
padding:5px 0 5px 20px;
background-color:#eee;
margin:50px 0 20px 0;
font-family: 'Sawarabi Gothic', sans-serif;
}

h2.heading{
font-size:24px;
color:#333;
text-align: center;
font-family: 'Sawarabi Gothic', sans-serif;
margin-top: 80px;
font-weight: 400;
}

h2.heading img{
width:50px;
}

h2.heading span{
color:#888;
font-size:30px;
padding:0 0 0 100px;
vertical-align:middle;
}

h2.pagetitle{
font-size:18px;
font-weight:400;
}

h2.contact{
font-size:22px;
color:#333;
font-family: 'Sawarabi Gothic', sans-serif;
font-weight: 400;
margin: 0 0 0 30px;
}

h3{
text-align: center;
margin-bottom:80px;
}

h3.pagetitle
{
font-size:18px;
font-weight:400;
}

h3.heading{
font-size:26px;
color:#333;
margin:70px 50px 0 0;
font-family: 'Sawarabi Gothic', sans-serif;
}

h5.pickuptitle{
font-weight:400;
font-size:18px;
color:#333;
text-align:left;
padding:0 0 0 100px;
}


h4.pickuptitle2{
font-weight:400;
font-size:18px;
color:#333;
text-align:left;
}


.subtitle{
color:#999;
font-size:17px;
padding:5px 0 5px 0;
}

.midashimobile{
color:#999;
font-size:17px;
padding:5px 0 5px 0;
}

.worksmidashi{
color:#000;
font-size:20px;
padding:40px 0 0 15%;
}


/* catch----------------------------------------------------------------*/
.catch{
font-size:16px;
margin: 30px 30px 0 30px;
line-height: 2.1;
color:#111;
text-align:center;
animation-name:fadeInAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

.catch2{
font-size:20px;
color:#555;
font-family: 'Sawarabi Gothic', sans-serif;
margin: 0 auto;
text-align:center;
width:500px;
padding:10px 0 10px 0;
border:1px solid;
border-color:#888;
}

.catch3{
font-size:16px;
margin: 0 auto;
padding:10px 0 20px 60px;
font-family: 'Sawarabi Gothic', sans-serif;
color:#111;
}


.catchtitle{
font-size:20px;
color:#555;
font-family: 'Sawarabi Gothic', sans-serif;
margin:30px;
}


.privacy-link{
font-size:14px;
margin: 0 auto;
padding:0 0 30px 60px;
font-family: 'Sawarabi Gothic', sans-serif;
color:#111;
}

.contactspace{padding:40px;}



/*PCクラス------------------------------------------------------------------------------*/
section.content article{
overflow:hidden;
}

.index01{
position: absolute;
width:28%;
background: #fff;
margin:10px 0 0 50px;
z-index: 2000;
animation-name:fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

.index01mobile{
display:none;
}

.index02{
background: #fff;
  margin: 0 auto;
  max-width: 900px;
  display:flex;
  margin-top:50px;
}

.sliderground{
background: #fff;
width:75%;
margin: 0 auto;
margin-top:80px;
}

.insta-slide-mobile{
display:none;
}

.insta-slide{
background: #f2f2f2;
text-align:center;
width:100%;
display:flex;
justify-content: center;
padding:50px 0 70px 0;
margin-top:40px;
margin-bottom:50px;
}

.insta-base{
background: #fff;
margin:10px 10px 25px 10px;
display:flex;
}

.pickup-base{
background: #fff;
width:400px;
margin: 0 auto;
}

.pickup-base2{
background: #fff;
width: 60%;
margin: 0 auto;
} 

.footer-base{
margin: 10px 20px 20px 50px;
}

.footer-mobile{
display:none;
}

.title-label{
background: #fff;
width:auto;
outline:solid 1px;
outline-color: #aaa;
margin-top:40px;
}

.greeting-base{
background: #fff;
margin: 0 auto;
max-width: 900px;
display:flex;
margin-top:50px;
}

.works-row{
background: #fff;
justify-content: center;
display:flex;
margin:40px 5% 100px 5%;
}

.works-item{
width:40%;
margin:0 50px 0 50px;
padding:0 10px 20px 10px;
font-size:18px;
color:#333;
background: linear-gradient(225deg, #f9f9f9 0%, #ffffff 100%);
}

.chintaibaibai{
background: #fff;
width: 60%;
margin: 0 auto;
padding:0 0 60px 0;
} 

.chintaibaibai2{
font-size:16px;
padding:20px 0 0 20px;
color:#555;
font-family: 'Sawarabi Gothic', sans-serif;
}

img.estate{
width: 12%;
height: 12%;
}

.contact-base{
background: #fff;
margin: 0 auto;
width: fit-content;
} 

.map-base{
margin:100px 0 100px 0;
background: #fafafa;
text-align:center;
width:100%;
justify-content: center;
padding:50px 0 50px 0;
}

.map-base iframe{
width:600px;
height:450px;
border:0;
}

.privacy-article{
margin:30px 0 0 200px;
font-size:15px;
line-height: 1.6;
color:#222;
width:70%;
}

.worksbase{
background: #fff;
justify-content: center;
display:flex;
margin:30px 8% 0 8%;
}

.gallerybase{
background: #f5f5f5;
text-align: center;
padding:20px 0 20px 0;
margin-top:70px;
}

.worksbase-rehome{
position:relative;
text-align:center;
margin-top:40px;
}

.worksbase-rehomemobile{
display:none;
}

/*Instagram*/

.insta{
background: #fff;
width:220px;
text-align:center;
margin:50px 6px 30px 6px;
min-width: 220px;
}


.insta-text{
padding:15px 10px 0 2px;
font-size:14px;
font-weight:500;
}

.top-instagram {
  width:220px;
  margin:-5px 0 5px 0;
}

.top-instagram:hover {
	opacity:0.6;
	transition:0.3s;
}

img.instaimg{
width: 19%;
height: 19%;
margin:3px 8px 0 0;
}

img.instaimg2{
width: 10%;
height:10%;
margin:15px 0 0 25px;
}


img.instaimg3{
width: 35px;
height: 35px;
margin:100px 10px -3px 0;
}


.button-border{
  position: relative;
  display: inline-block;
  color: #333;
  text-decoration: none;
  background-color:#fff;
}

.button-border::after,
.button-border::before,
.button-border span::after,
.button-border span::before {
  background-color: #333;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
/* 左上へ配置 */
.button-border::after {
    width: 0px;
    height: 3px;
    top: -1px;
    left: -1px;
}
/* 右下へ配置 */
.button-border::before {
    width: 0px;
    height: 3px;
    right: -1px;
    bottom: -1px;
}
/* 左上へ配置 */
.button-border span::after {
    width: 3px;
    height: 0px;
    top: -1px;
    left: -1px;
}
/* 右下へ配置 */
.button-border span::before {
    width: 3px;
    height: 0px;
    right: -1px;
    bottom: -1px;
}

/* hover */
.button-border:hover::after,
.button-border:hover::before {
  width: 100%;
  width: calc(100% + 1px);
}

.button-border:hover span::after,
.button-border:hover span::before {
  height: 100%;
  height: calc(100% + 1px);
}











.pushcircle{
position: relative;
width:80px;
height:80px;
box-sizing: border-box;
text-align: center;
background:#f2f2f2;
border-radius:50%;
color: #333;
text-decoration: none;
font-size:18px;
font-weight:500;
outline: none;
display: flex;
align-items: center;
justify-content: center;
margin:160px -60px 0 40px;
}

.pushcircle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  border: 2px solid #333;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  transition: .3s ease; 
  }


.pushcircle:hover:after {
transform: translate(-50%, -50%) scale(0.9);
}

.pushcircle2{

width:130px;
height:130px;
box-sizing: border-box;
padding: 0 10px;
text-align: center;
background:#0082D6;
border-radius:50%;
color: #fff;
text-decoration: none;
font-size:14px;
font-weight:500;
outline: none;
display: flex;
align-items: center;
padding:15px 0 0 0;
justify-content: center;
margin-top:5px;
margin-left:50px;
}



.pushcircle2:hover {
  background:#fff;
  color:#0082D6;
  transition: .3s ease; 
}

.mail.icon {
  color: #fff;
  position: absolute;
  margin-bottom: 80px;
  width: 30px;
  height: 20px;
  border-radius: 1px;
  border: solid 2px currentColor;
}

.pushcircle2:hover .mail.icon{
  color: #0082d6;
    transition: .3s ease; 
}



.mail.icon:before {
  content: '';
  position: absolute;
  left: 14px;
  top: -7px;
  width: 2px;
  height: 20px;
  background-color: currentColor;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(-54deg);
          transform: rotate(-54deg);
}

.mail.icon:after {
  content: '';
  position: absolute;
  left: 14px;
  top: -7px;
  width: 2px;
  height: 20px;
  background-color: currentColor;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(54deg);
          transform: rotate(54deg);
}










/* ピックアップ*/
.pick{
display: flex;
align-items: flex-start;
margin: 25px -100px 15px 0;
}

img.tateurimobile{
width: 100%;
object-fit: cover;
padding:1px;
}

p.picktext{
width: 300px;
padding: 0 0 0 20px;
}

p.picktext a{
width: 300px;
text-decoration: underline;
}

.picktext-notice{
font-size:13px;
display: block;
color:#555;
margin:20px 0 0 0;
}

img.pickmobile{
width: 40%;
max-width: 40%;
padding:0 0 0 100px;
}


/* ボタン設定 */
.btn-chintai {
display: inline-block;
padding: 12px 24px;
margin: 50px 15px 70px 15px;
background-color: #0082D6;
color: #fff;
border: none;
border-radius: 6px;
font-weight: bold;
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

.btn-chintai:hover {
background: #C5D600;
color: #fff;
}

/* ボタン5設定 */
.btn05{
position: relative;
border: 1px solid #999;
text-decoration: none;
display: inline-block;
background:#fff;
color: #333;
padding:20px 50px 20px 35px;
margin: 80px 0 45px 0;
text-align: center;
outline: none;
transition: all .2s linear;
font-weight:400;
font-size:15px;
border-radius:1px;
transition: .3s ease; 
}

.btn05:hover{
background:#0082D6;
color:#fff;
}

.btn05work{
position: relative;
border: 1px solid #555;
text-decoration: none;
display: inline-block;
background:#fff;
color: #333;
padding:10px 50px 10px 35px;
margin: 0 0 45px 0;
text-align: center;
outline: none;
transition: all .2s linear;
font-weight:400;
font-size:15px;
border-radius:1px;
transition: .3s ease; 
margin: 100px 0 45px 0;
}

.btn05work:hover{
background:#0082D6;
color:#fff;
}


/* ボタン6設定 */
.btn06{
position: relative;
border: 1px solid #999;
text-decoration: none;
display: inline-block;
background:#fff;
color: #333;
padding:10px 50px 10px 35px;
margin: 10px 0 0 0;
text-align: center;
outline: none;
transition: all .2s linear;
font-weight:400;
font-size:15px;
border-radius:1px;
transition: .3s ease; 
}

.btn06:hover{
background:#0082D6;
color:#fff;
}

.btn06work{
position: relative;
border: 1px solid #999;
text-decoration: none;
display: inline-block;
background:#fff;
color: #333;
padding:10px 50px 10px 35px;
margin: 0 0 45px 0;
text-align: center;
outline: none;
transition: all .2s linear;
font-weight:400;
font-size:15px;
border-radius:1px;
transition: .3s ease; 
margin: 100px 0 45px 0;
}

.btn06work:hover{
background:#0082D6;
color:#fff;
}


/* ボタン7設定 */
.btn07{
position: relative;
border: 1px solid #999;
text-decoration: none;
display: inline-block;
background:#fff;
color: #333;
padding:10px 35px 10px 50px;
text-align: center;
outline: none;
transition: all .2s linear;
font-weight:400;
font-size:15px;
border-radius:1px;

}

.btn07:hover{
background:#0082D6;
color:#fff;
}

.btn07work{
position: relative;
border: 1px solid #999;
text-decoration: none;
display: inline-block;
background:#fff;
color: #333;
padding:10px 35px 10px 50px;
text-align: center;
outline: none;
transition: all .2s linear;
font-weight:400;
font-size:15px;
border-radius:1px;
margin: 100px 0 45px 0;
}

.btn07work:hover{
background:#0082D6;
color:#fff;
}


.btnarrow1::after{
content: '';
position: absolute;
top:42%;
right: 13px;
/*矢印の形状*/
width: 5px;
height: 5px;
border-top: 2px solid #0082D6;
border-right: 2px solid #0082D6;
transform: rotate(45deg);
/*アニメーションの指定*/
transition: all .3s;

}

/*hoverした際の移動*/
.btnarrow1:hover::after{
right: 10px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
}


.btnarrow2::after{
content: '';
position: absolute;
top:42%;
left: 13px;
/*矢印の形状*/
width: 5px;
height: 5px;
border-top: 2px solid #0082D6;
border-right: 2px solid #0082D6;
transform: rotate(225deg);
/*アニメーションの指定*/
transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow2:hover::after{
left: 10px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
}


/* ボタン8設定 */
.btn08{
position: relative;
border: 1px solid #333;
text-decoration: none;
border-radius: 20px;
display: inline-block;
background:#fff;
color: #333;
padding:10px 50px 10px 35px;
margin: 40px 20px 80px;
text-align: center;
outline: none;
transition: all .2s　linear;
font-weight:400;
font-size:15px;

}

.btn08:hover{
background:#0082D6;
color:#fff;
}



/* 日付*/
.date{
display: inline-block;
width:100px;
font-weight:normal;
font-size:15px;
color:#0082D6;
}

/* 内容*/
.naiyo{
display: inline-block;
font-size:14px;
padding:0 0 0 10px;
margin-right:10%;
margin-bottom:30px;
}




section.content{
font-weight:normal;
font-size:14px;
color:#000;
}



/* あいさつ*/
.greetingname{
font-size:18px;
padding:20px 20px 0 20px;
color:#333;
text-align:right;
font-family: 'Sawarabi Gothic', sans-serif;

}

.greeting-container{
    display:flex;
}

.greeting-text{
width:100%;
margin:0 20px 0 50px;
font-size: 15px;

}

/*物件タイトル*/
.pagetitle{
font-weight:300;
font-size:16px;
padding:5px 0 5px 30px;
color:#333;
background:#f5f5f5;
text-align:left;

}



/*線*/
.border-bottom1 {
 border-bottom:2px solid;
 margin :5px 30% 0 0;
min-width :60%;
color:#333;
text-align: center;
}

.border-bottom2 {
 border-bottom:1px solid;
 color:#aaa;
 margin:70px 8% 0 8%;
min-width :70%;
text-align: center;
}

.border-bottom3 {
 border-bottom:2px solid;
 margin :5px 30% 0 100px;

min-width :60%;
 color:#333;
text-align: center;
}

.border-bottom4 {
 border-bottom:1px solid;
 margin :0 0 0 0;
 
 color:#333;
}


.border-bottom5 {
    display: inline-block;
    width: 100px;
    height: 3px;
    background-color: #C5D600;
margin-bottom:10px;

}

.border-bottom6 {
    width: 100px;
    height: 3px;
    background-color: #c6d601;
    margin-top:25px;
display: inline-block;
}

.border-bottom7 {
    width: 100px;
    height: 3px;
    background-color: #FAC200;
    margin-top:25px;
    display: inline-block;
}

.border-bottom9 {
 border-bottom:1px solid;
 color:#000;
 margin:5px 0 15px 0;
width:25px;
text-align: left;
}

.border-bottom10 {
 border-bottom:1px solid;
 color:#aaa;
text-align: center;
}


/* slick slider */
.slider .slick-slide {
  display: block;
  max-width: 70%; 
  height: auto;
  margin: 0 10px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.slider .slick-slide img {
  width: auto;
  height: 190px;
  object-fit: cover;
  vertical-align: middle;
}

.sk {
  padding:15px 0 40px 0;
  font-size:14px;
  font-weight:400;
  color:#111;
  text-align:left;
}

.slider .slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 70px;
  background-color: #000;
  position: absolute;
  opacity: 0.75;
  z-index: 10;
}

.slider .slick-next {
  right: 0;
}
.slider .slick-prev {
  left: 0;
}
.slider .slick-next:before {
    content: "＞";
    font-variant: normal;
    text-rendering: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 70px;
    background-color: #000;
    position: absolute;
    z-index: 10;
    font-weight: 500;
}
.slider .slick-prev:before {
    content: "＜";
    font-variant: normal;
    text-rendering: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 70px;
    background-color: #000;
    position: absolute;
    z-index: 10;
}

/* slick slider ドット未使用 */
.dots .slick-dots {
  text-align: center;
}
.dots .slick-dots li {
  display: inline-block;
}
.dots .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}
.dots .slick-dots .slick-active button {
  background: #0a467d;
}




/* WORKS施工写真*/
img.worksimage{
height:auto;
padding:0 10px 10px 0;
}

img.worksimagemobile{
display: none;
}


/* 施工写真NEW*/
.newmaru{
position:relative;
}

.newmarumobile{
display: none;
}

.newmaru-img{
height: auto;
display: flex;
position: absolute;
bottom: 20px;
}

.newmaru-imgmobile{
display: none;
}


/* PC施工説明*/
.sekoutitle{
font-weight:400;
font-size:20px;
padding:5px 0 0 0;
color:#333;
text-align:left;
font-family: 'Sawarabi Gothic', sans-serif;
}

.sekou{
font-weight:300;
font-size:14px;
float:left;
padding:3px 0 0 30px;
color:#333;
}


.shinchiku{
padding:0 0 0 1px;
}


.shinchiku2{
font-weight:400;
font-size:14px;
color:#fff;
background :#0082D6;
padding:0 20px 0 20px;
margin:0 0 0 40px;
border-radius:1px;
}

.shinchiku3{
font-weight:400;
font-size:14px;
color:#fff;
background :#C5D600;
padding:0 20px 0 20px;
margin:0 0 0 40px;
border-radius:1px;
}

.after{
font-weight:500;
font-size:20px;
color:#fff;
background :#C5D600;
padding:10px 40px 10px 40px;
margin:100px 0 0 -150px;
position: absolute;
}

.before{
font-weight:500;
font-size:20px;
color:#fff;
background :#333;
padding:10px 30px 10px 30px;
margin:100px 0 0 -150px;
position: absolute;
}


.shinchiku p {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    float: left;
    background: #0082D6;
    padding: 0 20px;
    border-radius: 1px;
}


.works1{
font-weight:300;
font-size:16px;
color:#333;
padding:15px 40px 15px 30px;
}


img.works{
width: 49%;
height: 270px;
object-fit: cover;
margin:15px 0 15px 0;
text-align:center;
}

img.works:hover {
	opacity:0.6;
	transition:0.3s;
}

img.works2{
width: 50%;
height: auto;
margin:15px 10px 0 10px;
text-align:center;
}

img.works3{
width: 33%;
height: 33%;
margin:15px 10px 0 10px;
text-align:center;
}


.contactform{
margin: 30px 0 0 0;
}

.contactform iframe{
margin: 0 0 0 0;
width: 100%;
min-height: 700px;
height: auto;
border: none;
}


.contact{
display: flex;
margin: 0 auto;
width: fit-content;
padding:40px 20px 40px 0;
align-items: center;
}

.contact img{
width:150px;
height:auto;
padding:0 0 0 0;
}


#subpage .grid{width:auto;}
	
#gallery .grid{
margin:15px 10px;
width:auto;
height: 135px;
}

#gallery .grid img{
width:180px;
height:135px;
object-fit:cover;
}

#gallery .grid img:hover {
opacity:0.6;
transition:0.3s;
}

#gallery article{
padding:9px 20px 25px;
}













/* フッター */



#footer1{
overflow:hidden;
background:#f6f6f6;
margin:80px 0 0 0;
font-weight:400;
font-size:14px;
color:#333;
display:flex;
justify-content: center
}

.footer-note{
padding:78px 30px 0 20px;
font-weight:400;
font-size:13px;
}

.footer1logo{
padding: 5px;

}
.footer1logo img{
width:200px;
text-align:left;
padding-top:3px ;
}


.footer1tel{
padding:70px 30px 0 20px;
font-weight:400;
font-size:17px;
}

.footer2tel{
display:none;
}


#footer1 .fotter1logo a{
    display: none;
 }


#footer1 .fotter1tel a{
    display: block;
    width: 150px;
    padding: 5px 0;
    margin:5px 0 0 0;
    border:1px solid ;
    color:#0082D6;
    text-decoration: none;
    text-align: center;
    font-size:12px;
}

#footer1 .fotter1tel a:hover{
    background: #0082D6;
    color:#fff;
}


#footer1 p{
display:none;
}

#footer2{
clear:both;
overflow:hidden;
background:#0082D6;
padding:5px 0 5px 0;
text-align:center;
font-weight:normal;
font-size:10px;
color:#fff;
}



}



/* モバイル用-------------------------------------------------------------------------------------------*/
@media only screen and (max-width:960px){
*{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}

#header{
height:auto;
padding-bottom:9px;
}


/* モバイルヘッダー*/
#header .h1,.logo{text-align:left;}
#header .info{text-align:left;
padding:0 10px 0 0;}
#header h1 span {white-space: nowrap;}






.logo{
clear:both;
width:100%;
float:none;
}
	
.logo p{float:none;display:block;}
.logo img{
float:none;
padding:0;
width:200px;
max-width:100%;
}






.pagetitle{
font-weight:300;
font-size:16px;
padding:5px 0 5px 30px;
color:#333;
background:#f5f5f5;
text-align:left;
font-family: 'Sawarabi Gothic', sans-serif;
}


.greeting{
font-weight:300;
font-size:15px;
padding:0 20px 0 20px;
color:#333;
text-align:left;
font-family: 'Sawarabi Gothic', sans-serif;
}

.greetingname{
font-weight:300;
font-size:15px;
padding:20px 20px 0 20px;
color:#333;
text-align:right;
font-family: 'Sawarabi Gothic', sans-serif;
}



	
#subpage .grid{width:auto;}
	

#header .info{
text-align:left;
padding:0 0 0 20px;
}


.box img{
float:left;
margin-right:5px;
}
	
.box h3{padding-top:0;}

.alignleft,.alignright{
float:none;
display:block;
margin:0 auto 10px;
}

#footer p{display:block; }

	

#gallery .grid{
width:auto;
}

#gallery .grid img{
width:150px;
height:114px;
object-fit:cover;
}
	




#footer .grid img, #footer .info{float:none;}
#footer .grid p{display:block;}
#footer #info .info{float:none;text-align:center;}

img.estate{
width: 31%;
height: 31%;
}



/* モバイルメニュー */
#hamburger .btn-gNav{
  position: fixed;
  top: 27px;
  right: 20px;
  width: 23px;
  height: 20px;
  z-index: 3;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

#hamburger .menutext{
  position: fixed;
  top: 50px;
  right: 15px;
  z-index: 2;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  font-size:12px;
  color: #333;
}


#hamburger .btn-gNav span{
  position: absolute;
  width: 100%;
  height: 2px;
  background: #0082D6;
  border-radius: 9px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

#hamburger .btn-gNav span:nth-child(1) {
  top:0;
}
#hamburger .btn-gNav span:nth-child(2) {
  top:8px;
}
#hamburger .btn-gNav span:nth-child(3) {
  top:16px;
}

#hamburger .btn-gNav.open span:nth-child(1){
  background: #C5D600;
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

#hamburger .btn-gNav.open span:nth-child(2),#hamburger .btn-gNav.open span:nth-child(3){
  top: 6px;
  background :#C5D600;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

#gNav{
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100%;
  background: #666;
  font-size: 14px;
  box-sizing: border-box;
  z-index: 2;
  padding: 80px 0 0 10px;
  transition: .4s;
    opacity: 0.95;
}

#gNav.open{
  right: 0px;
}
#gNav .gNav-menu{
  width: 100%:;
  height:100%;
  display: flex;
  flex-direction: column;
  text-align: left;

}
#gNav .gNav-menu li{
  display: block;
  padding : 20px 30px;
}
#gNav .gNav-menu li a{
  color: #fff;
  font-weight:300;
  text-decoration: none;
}



/* slick slider */
.slider .slick-slide {
  display: block;
  max-width: 70%; 
  height: auto;
  margin: 0 10px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.slider .slick-slide img {
  width: auto;
  height: 190px;
  object-fit: cover;
  vertical-align: middle;
}

.sk {
  padding:15px 0 40px 0;
  font-size:14px;
  font-weight:400;
  color:#111;
  text-align:left;
}

.slider .slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 80px;
  background-color: #000;
  position: absolute;
  opacity: 0.75;
  z-index: 10;
}

.slider .slick-next {
  right: 0;
}
.slider .slick-prev {
  left: 0;
}
.slider .slick-next:before {
    content: ">";
    font-variant: normal;
    text-rendering: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 80px;
    background-color: #000;
    position: absolute;
    z-index: 10;
    font-weight: 500;
}
.slider .slick-prev:before {
    content: "<";
    font-variant: normal;
    text-rendering: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 80px;
    background-color: #000;
    position: absolute;
    z-index: 10;
}


.slider .insta{
background: #fff;
width:220px;
border-radius: 2px;
text-align:center;
margin:0 6px 0 6px;
min-width: 220px;
}


.slider img.instaimg{
width: 17%;
height: 17%;
margin:3px 8px 0 0;
}

.slider img.instaimg2{
width: 10%;
height:10%;
margin:15px 0 0 25px;
}

.slider div.insta-text{
padding:15px 10px 0 2px;
font-size:14px;
font-weight:500;
}

.slider img.top-instagram {
  width:100%;
  height:auto;
  margin:-10px 0 5px -1px;
}





/* slick slider ドット未使用 */
.dots .slick-dots {
  text-align: center;
}
.dots .slick-dots li {
  display: inline-block;
}
.dots .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}
.dots .slick-dots .slick-active button {
  background: #0a467d;
}







/* キャッチ モバイル*/


.catch{
font-size:15px;
padding:0 30px 50px 30px;
color:#111;
text-align:center;
margin: 0 auto;
line-height: 2.1;
}

.catchtitle{
font-size:18px;
color:#555;
text-align:center;
font-family: 'Sawarabi Gothic', sans-serif;
border:1px solid;
margin:0 20px 0 20px;
padding:10px 0 10px 0;
border-color:#444;
}


.catchcircle{
display: inline-block;
position:relative;
width: 75px;
height: 75px;
text-align:center;
border-radius: 50%;
border: solid 1px #333;
}


.catchsquare{
display: inline-block;
position:relative;
width: 75px;
height: 75px;
text-align:center;
border: solid 1px #333;
}


.catch-img{
width:80px;
height: auto;
display: flex;
position: absolute;
bottom: 9px;
right: -2px;
text-align:center;
}


.catch-img2{
width:200px;
height: auto;
display: flex;
position: absolute;
bottom: 9px;
right: -2px;
text-align:center;
}

.catch3{
font-size:15px;
padding:30px 30px 50px 30px;
margin: 0 auto;
color:#000;
}

.catch2{
font-size:18px;
color:#555;
text-align:center;
font-family: 'Sawarabi Gothic', sans-serif;
border:1px solid;
margin:-30px 20px 0 20px;
padding:10px 0 10px 0;
border-color:#888;
}


/* 見出し2 モバイル*/


.subtitle{
color:#999;
font-size:18px;
padding:5px 0 10px 0;
}

.midashimobile{
color:#999;
font-size:18px;
padding:5px 0 10px 0;
}





/* 日付モバイル*/
.date{
display: inline-block;
font-weight:300;
font-size:14px;
color:#0082D6;
padding:0 0 0 20px;
}

/* 内容モバイル*/
section.content{
font-weight:300;
font-size:14px;
color:#000;
}

.naiyo{
display: inline-block;
font-weight:300;
font-size:14px;
padding:0 0 0 20px;
margin-right:10%;
margin-bottom:30px;
}








/* WORKS施工写真*/


.kyoka{
display: none;
}

img.worksimagemobile{
width: 100%;
height: 170px;
object-fit: cover;
padding:1px;
}

img.worksimage{
display: none;
}


img.works{
width: 100%;
height: 200px;
object-fit:cover;
text-align:center;
margin:0 0 6px 0;
padding:0 25px 0 25px;
}

img.works:hover {
	opacity:0.6;
	transition:0.3s;
}

img.works2{
width: 100%;
height: auto;
padding:10px;
text-align:center;
}

img.works3{
width: 75%;
height: auto;
padding:10px;
text-align:center;
}


.works1{
font-weight:300;
font-size:14px;
color:#333;
padding:15px 40px 15px 30px;
}


.after{
font-weight:500;
font-size:20px;
color:#fff;
background :#C5D600;
padding:10px 38px 10px 38px;
margin:0 0 50px 10px;
}

.before{
font-weight:500;
font-size:20px;
color:#fff;
background :#333;
padding:10px 30px 10px 30px;
margin:0 0 50px 10px;
}




/* 施工写真NEW*/
.newmaru{
display:none;
}
.newmarumobile{
position:relative;
}

.newmaru-imgmobile{
height: auto;
display: flex;
position: absolute;
bottom: 10px;
left: 0;
}
.newmaru-img{
display: none;
}


/* 施工説明モバイル*/
.sekoutitle{
font-weight:400;
font-size:17px;
padding:5px 0 0 0;
color:#333;
text-align:left;
font-family: 'Sawarabi Gothic', sans-serif;
text-align: center;
}

.sekou{
font-weight:300;
font-size:14px;
float:left;
padding:3px 0 0 30px;
color:#333;
}

.shinchiku{
padding:0 0 0 1px;
}


.shinchiku p{
font-weight:400;
font-size:14px;
color:#fff;
float:left;
background :#0082D6;
padding:0 20px 0 20px;
border-radius:1px;
}

.shinchiku2{
font-weight:400;
font-size:14px;
color:#fff;
background :#0082D6;
padding:0 20px 0 20px;
margin:0 0 0 40px;
border-radius:1px;
}

.shinchiku3{
font-weight:400;
font-size:14px;
color:#fff;
background :#C5D600;
padding:0 20px 0 20px;
margin:0 0 0 40px;
border-radius:1px;
}


/*Instagram*/

.instagram
{text-align:center; }


img.instaimg3{
width: 30px;
height: Auto;
margin:40px 10px -3px 0;
}



/* ピックアップモバイル*/
.pick{
margin:25px 0 0 10px;
}

img.tateurimobile{
width: 100%;
object-fit: cover;
padding:1px;
}

p.picktext{
width: 300px;
padding: 0 0 0 20px;
}

.picktext-notice{
font-size:13px;
display: block;
color:#555;
margin:20px 0 30px 0;
}


img.pickmobile{
width: 80%;
max-width: 80%;
padding:0 0 20px 10px;
}



.worksmidashi{
color:#000;
font-size:18px;
padding:30px 0 0 10%;
}



.tateurititle{
font-weight:800;
font-size:26px;
padding:0 0 10px 5px;
color:#333;
text-align:left;
line-height:115%;
letter-spacing: 0.25em
}

.tateurititle span{
font-weight:600;
font-size:20px;
padding:0 0 0 0;
color:#0082D6;
text-align:left;
letter-spacing: 0.05em
}

.tateuri1{
display: inline-block;
font-weight:400;
font-size:16px;
background:#E75617;
color:#fff;
padding:3px 20px 3px 20px;
text-align:center;
margin: 5px 5px 2px 5px;
}

.tateurisetsumei{
font-weight:400;
font-size:16px;
padding:5px 0 0 10px;
color:#333;
text-align:left;
}



/*------------------  h  -------------------------------------------*/


h1.heading{
font-size:20px;
text-align: left;
padding:0 0 0 20px;
color:#333;
font-weight: 400;
font-family: 'Sawarabi Gothic', sans-serif;
}

h1.privacy{
font-size:20px;
color:#fff;
text-align: center;
width:100%;
padding:5px 0 5px 0;
background-color:#333;
margin:30px 0 30px 0;
font-family: 'Sawarabi Gothic', sans-serif;
}


h2.privacy{
font-size:16px;
text-align: left;
width:100%;
padding:5px 0 5px 20px;
background-color:#eee;
margin:50px 0 20px 0;
font-family: 'Sawarabi Gothic', sans-serif;
}

h2.heading{
font-size:23px;
text-align: center;
color:#333;
font-weight:300;
}


h2.heading img{
width:40px;
}

h2.heading span{
display: none;
}

h2.pagetitle{
font-size:18px;
font-weight:400;
}

h2.contact{
font-size:22px;
color:#333;
font-family: 'Sawarabi Gothic', sans-serif;
font-weight: 300;
margin: -10px 0 50px 0;
}


h3{
text-align: center;
}

h3.heading{
font-size:24px;
color:#333;
margin:0 0 50px 0;
text-align:center;
font-family: 'Sawarabi Gothic', sans-serif;
}


h3.heading img{
width:30px;
}


h4{
text-align: center;
font-size:23px;
padding:0 0 0 0;
color:#222;
font-weight:300;
}

h5{
text-align: center;
}




h5.heading{
font-size:20px;
text-align: left;
padding:0 0 0 20px;
color:#333;
font-family: 'Sawarabi Gothic', sans-serif;
}

.pickuptitle{
font-weight:400;
font-size:16px;
color:#333;
text-align:left;
padding-left:20px;
}

.pickuptitle2{
font-weight:400;
font-size:16px;
color:#333;
text-align:left;
padding-left:20px;
}



.index{
text-align: center;
font-size:23px;
padding:0 0 0 0;
margin: 0 0 20px 0;
color:#222;
font-weight:300;
line-height: 1.9;
font-family: 'Sawarabi Gothic', sans-serif;
}



/* モバイルクラス*/
.index01{
display: none;
}

.index01mobile{
padding:10px;
margin-bottom:35px;
overflow:hidden;
animation-name:fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

.index02{
padding:40px;
margin:0 0 70px 0;
overflow:hidden;
}

.sliderground{
padding: 25px 0 0 0;
background: #fff;
}

.slider .insta-base{
background: #fff;
margin:10px 10px 25px 10px;
display:flex;
}

.insta-slide{
display:none;
}

.pickup-base{
margin:20px 0 60px 0;
}

.pickup-base2{
background: #fff;
}


.footer-mobile{
padding-top:125px;
}

.title-label{
background: #fff;
width:100%;
outline:solid 1px;
outline-color: #aaa;
margin-top:10px;
margin-bottom:15px;
}

.greeting-base{
padding:10px;
margin:0 0 70px 0;
overflow:hidden;
}

.works-item{
width:100%;
background: #fff;
font-size:17px;
color:#333;
font-weight:400;
margin-bottom:90px;
margin-top:10px;
text-align:center;
background: linear-gradient(225deg, #f9f9f9 0%, #ffffff 100%);
padding:0 0 25px 0;
}

.works-row{
background: #fff;
margin:0 10px 0 10px;
}

.chintaibaibai{
background: #fff;
margin: 0 auto;
padding:15px 0 60px 0;
} 

.chintaibaibai2{
font-size:16px;
padding:20px 0 0 20px;
color:#555;
font-family: 'Sawarabi Gothic', sans-serif;
}

.privacy-article{
margin:0 auto;
font-size:15px;
line-height: 1.6;
color:#222;
width:85%;
}

.privacy-link{
font-size:14px;
margin: 0 auto;
padding:0 20px 30px 20px;
font-family: 'Sawarabi Gothic', sans-serif;
color:#111;
}

.contactform{
margin: 0 0 50px 0;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}

.contactform iframe{
margin: 0 0 40px 0;
width: 100%;
min-height: 700px;
height: auto;
border: none;
max-width: 100%;
display: block;
box-sizing: border-box;
}

.map-base{
margin:50px 0 100px 0;
background: #fafafa;
text-align:center;
width:100%;
justify-content: center;
padding:50px 0 50px 0;
}

.map-base iframe{
width:100%;
border: none;
}


.insta-slide-mobile{
background: #f2f2f2;
padding:10px 0 60px 0;
}


.gallerybase{
background: #f5f5f5;
text-align: center;
padding:50px 0 50px 0;
margin-top:50px;
}

.worksbase{
background: #fff;
text-align:center;
margin:30px 5px 0 5px;
}

.worksbase-rehome{
display:none;
}

.worksbase-rehomemobile{
padding-top:100px;
}

.greeting-container{
       text-align: center;
}
.greeting-img img{
max-width:340px;
}

.greeting-text{
    width:80%;
margin:10px 10% 0 10%;
text-align:left;

}


.contact{
margin: auto;
text-align: center;
padding-bottom: 18px;
font-weight:300;
font-size:16px;
padding:30px 20px 0 20px;
color:#333;
font-family: 'Sawarabi Gothic', sans-serif;
}


.contact img{
width:80px;
height:auto;
text-align:center;
}


.contact-base{
background: #fff;
margin: 0 auto;
width: fit-content;
}

/* ボタン3設定 */
.btn03{
position: relative;
border: 1px solid #333;
text-decoration: none;
border-radius:20px;
display: inline-block;
color: #333;
background:#fff;
padding:10px 50px 10px 35px;
width: 95%;
max-width:800px;
text-align: center;
outline: none;
transition: all .2s　linear;
font-weight:400;
font-size:15px;
}

.btn03:hover{
background:#0082D6;
color:#fff;
}



/*ボタン4設定*/
.btnarrow4{
position: absolute;
display: inline-block;
padding: 0 20px;
color: #333;
text-decoration: none;
width: 45px;
height: 40px;
background: #333;
bottom: 5px;
right: 5px;
display: flex;
}


.btnarrow4:hover{
  background:#888;
}

/*矢印下線*/
.btnarrow4::before{
content: '';
position: absolute;
display: flex;
bottom:11px;
left:18%;  
width: 29px;
height: 4px;
background:#eee;
transition: all .3s;
transform:skewX(40deg);
border-radius:1px;
}

/*矢印上線*/
.btnarrow4::after{
  content: '';
  position: absolute;
  bottom:17px;
  right:7px;   
  width: 17px;
  height:4px;
  background:#eee;
  transform: rotate(50deg);
  transition: all .3s;
display: flex;
  border-radius:5px;
}

/*hoverした際の移動*/
.btnarrow4:hover::before{
 left:30%;
}
.btnarrow4:hover::after{
 right:3%;
}







/* ボタン5設定 */
.btnarrow1::after{
content: '';
position: absolute;
top:42%;
right: 13px;
/*矢印の形状*/
width: 5px;
height: 5px;
border-top: 2px solid #0082D6;
border-right: 2px solid #0082D6;
transform: rotate(45deg);
/*アニメーションの指定*/
transition: all .3s;

}

/*hoverした際の移動*/
.btnarrow1:hover::after{
right: 10px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
}


.btnarrow2::after{
content: '';
position: absolute;
top:42%;
left: 13px;
/*矢印の形状*/
width: 5px;
height: 5px;
border-top: 2px solid #0082D6;
border-right: 2px solid #0082D6;
transform: rotate(225deg);
/*アニメーションの指定*/
transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow2:hover::after{
left: 10px;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
}



/* ボタン5設定 */
.btn05{
position: relative;
border: 1px solid #999;
text-decoration: none;
display: inline-block;
background:#fff;
color: #333;
padding:10px 50px 10px 35px;
margin:80px 0 100px 0;
text-align: center;
outline: none;
transition: all .2s　linear;
font-weight:400;
font-size:15px;
border-radius:1px;
}

.btn05:hover{
background:#0082D6;
color:#fff;
}


/* ボタン6設定 */
.btn06{
position: relative;
border: 1px solid #999;
text-decoration: none;
display: inline-block;
background:#fff;
color: #333;
padding:10px 50px 10px 35px;
margin:0 0 0 0;
text-align: center;
outline: none;
transition: all .2s　linear;
font-weight:400;
font-size:15px;
border-radius:1px;
}

.btn06:hover{
background:#0082D6;
color:#fff;
}

.btn06work{
position: relative;
border: 1px solid #999;
text-decoration: none;
display: inline-block;
background:#fff;
color: #333;
padding:10px 50px 10px 35px;
margin:60px 0 100px 0;
text-align: center;
outline: none;
transition: all .2s　linear;
font-weight:400;
font-size:15px;
border-radius:1px;
}

.btn06work:hover{
background:#0082D6;
color:#fff;
}

/* ボタン7設定 */
.btn07{
position: relative;
border: 1px solid #999;
text-decoration: none;
display: inline-block;
background:#fff;
color: #333;
padding:10px 35px 10px 50px;
text-align: center;
outline: none;
transition: all .2s　linear;
font-weight:400;
font-size:15px;
border-radius:1px;
}

.btn07:hover{
background:#0082D6;
color:#fff;
}

.btn07work{
position: relative;
border: 1px solid #999;
text-decoration: none;
display: inline-block;
background:#fff;
color: #333;
padding:10px 35px 10px 50px;
text-align: center;
outline: none;
transition: all .2s　linear;
font-weight:400;
font-size:15px;
border-radius:1px;
margin:60px 0 100px 0;
}

.btn07work:hover{
background:#0082D6;
color:#fff;
}


/* ボタン8設定 */
.btn08{
position: relative;
border: 1px solid #333;
text-decoration: none;
border-radius: 20px;
display: inline-block;
background:#fff;
color: #333;
padding:10px 50px 10px 35px;
margin: 20px 20px 60px;
text-align: center;
outline: none;
transition: all .2s　linear;
font-weight:400;
font-size:15px;

}

.btn08:hover{
background:#0082D6;
color:#fff;
}


/* 不動産ボタン設定 */
.btn-chintai{
display: none;
}




/* -------線 モバイル-------------------------------------------------*/
.border-bottom {
  height: 1px;
  background-image: linear-gradient(90deg, transparent, transparent 50%, #fff 50%, #fff 100%), linear-gradient(90deg, #ccc, #ccc);
  background-size: 10px 1px, 100% 1px;
  border: none;
  padding : 0 0 0 0;
  margin :0 7% 0 0;
}

.border-bottom1 {
 border-bottom:2px solid;
 margin :5px 10% 0 10px;
 max-width:90%;
 color:#333;
}

.border-bottom2 {
 border-bottom:1px solid;
 color:#aaa;
 margin-bottom:30px;
}

.border-bottom3 {
 border-bottom:2px solid;
 margin :5px 10% 0 10px;
 max-width:90%;
 color:#333;
}

.border-bottom4 {
 border-bottom:1px solid;
    margin-left: auto;
    margin-right: auto;


 margin-bottom :10px;
 max-width:350px;
 color:#333;

}

.border-bottom5 {
display: inline-block;
width: 80px;
height: 3px;
background-color: #C5D600;

margin :0 0 10px 0;
}

.border-bottom6 {
display: inline-block;
width: 80px;
height: 3px;
background-color: #c6d601;
left: 50%;
margin :0 0 10px 0;
}

.border-bottom7 {
display: inline-block;
width: 80px;
height: 3px;
background-color: #FAC200;
left: 50%;
margin :0 0 10px 0;
}


.border-bottom8 {
border-bottom:1px solid;
color:#aaa;
margin :10px 10% 20px 10px;
}

.border-bottom9 {
 border-bottom:1px solid;
 color:#000;
 margin:5px 0 15px 20px;
width:25px;

}

.border-bottom10 {
 border-bottom:1px solid;
 color:#aaa;
text-align: center;
}


.pushcircle{
  position: relative;
  width:80px;
  height:80px;
  box-sizing: border-box;
  text-align: center;
  background:#f2f2f2;
  border-radius:50%;
  color: #333;
  text-decoration: none;
  font-size:18px;
font-weight:500;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
	margin:0 auto;
	margin-top:50px;
}

.pushcircle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  border: 2px solid #333;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  transition: .3s ease; 
  }

.pushcircle:hover:after {
  transform: translate(-50%, -50%) scale(1);
}


.pushcircle2{
  display:none;
}


.pushcircle2:after {
  display:none;
  }


.pushcircle2:hover {
  display:none;
}

.mail.icon {
  display:none;
}

.pushcircle2:hover .mail.icon{
  display:none;
}



.mail.icon:before {
  display:none;
}

.mail.icon:after {
   display:none;
}


/* NEW*/
.new{
font-weight:400;
font-size:13px;
background:#ffff00;
border: solid;
border-color: #008b8b;
padding:0 5px 0 5px;
}

.space{padding:10px;}


#footer1{
clear:both;
overflow:hidden;
background:#f6f6f6;
padding:10px 0 0 20px;
margin-top:60px;
text-align:left;
font-weight:400;
font-size:14px;
color:#333;
display:flex;
}

#footer1 p{
display:none;
}

#footer2{
clear:both;
overflow:hidden;
background:#0082D6;
padding:5px 0 5px 0;
text-align:center;
font-weight:normal;
font-size:10px;
color:#fff;
}

.footer1logo img{
width:200px;
text-align:left;
padding:3px 0 0 0;
}

.footer1tel{
display:none;
}

.footer2tel{
display:block;
font-size:16px;
margin:0 0 10px 0;
}

.footer-note{
display:none;
}


.icon2{
width:30px;
padding-left:10px;
}

.icon{
display:none;
}


