/* デモなので簡易的なリセット */
* {
	margin: 0;
	padding: 0;
}
*::after,
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* RESET
----------------------------------------------------------------------------------------------------*/
a,article,body,dd,div,dl,dt,em,form,footer,header,h1,h2,h3,h4,h5,h6,html,i,iframe,img,label,legend,li,nav,ol,p,section,main,span,table,tbody,tfoot,thead,time,tr,th,td,ul,video{font-family:inherit;font-size:100%;font-weight:inherit;font-style:inherit;vertical-align:baseline;white-space:normal;margin:0;padding:0;border:0;outline:0;background:transparent;line-height:1.8;/*text-align:left*/}textarea{font-family:inherit;font-size:100%;font-weight:inherit;font-style:inherit;vertical-align:baseline;margin:0;padding:0;border:0;outline:0;background:transparent;line-height:1.6;text-align:left}article,footer,header,nav,section,main{display:block}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}


body {
/*font-family: 'proxima-nova', 'Proxima Nova', 'Noto Sans Japanese', -apple-system, BlinkMacSystemFont, MyYuGothicM, YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;*/
    /*font-family: 'Raleway', Arial, sans-serif;*/
    /*font-family: 'メイリオ',Meiryo,"ヒラギノ角ゴ Pro W3",Osaka,"ＭＳ Ｐゴシック",sans-serif;*/
    /*font-family: "游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo",sans-serif;*/
    font: 'Lato','メイリオ', 'Meiryo', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'ＭＳ Ｐゴシック', 'Helvetica', 'Arial', 'Verdana', 'sans-serif';
	font-family: dnp-shuei-gothic-gin-std, sans-serif;
    line-height: 1.8;
    letter-spacing: .75px;
    word-wrap: break-word;
    color: #4d4d4d;
    -webkit-text-size-adjust: 100%;
    overflow-wrap: break-word;
    font-size: 14px;     background: #ffffff;

}
@media screen and (max-width: 768px) {
    body {
font-size: 11.5px; line-height: 1.6em; letter-spacing: .3px;}
}
.bld {font-weight: 900;}
.font120 {font-size: 120%; padding-bottom: 0.5em;}
.font130 {font-size: 130%; padding-bottom: 0.5em; font-weight: 700;}
/*パンくずリスト*/
.pankuzu_box {
    padding: 15px 15px; }
.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
    font-size: 12px;
    text-align: right;
}
@media screen and (max-width: 768px) {
    .pankuzu_box {padding: 10px 4%;
    background-color: #f4f8f9;}
    .breadcrumb {
    font-size: 10px;
}
}
.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}

.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #47add1;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color:#47add1;/*色*/
    transition:all 0.5s;
}

.breadcrumb li a:hover {
  text-decoration: none;
    border-bottom: solid 1px #47add1;
    
}
/*パンくずリスト*/

.white {color: #FFF;}
.red {color: #FF0004;}
a {vertical-align:bottom}
a {
	transition: 0.2s ;
}
img {vertical-align:bottom}

.cntr{text-align: center;}
@media screen and (max-width: 480px) {
.cntr{text-align: left;}
}
a {text-decoration: none;}
/*webpage読み込み時にフェードイン*/
body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
	font-family: 'Lato', Calibri, Arial, sans-serif;
	font-family: "Noto Sans JP", serif;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
/*webpage読み込み時にフェードイン*/

article {
	height: 1000px;
	margin: 100px auto;
	text-align: center;
	line-height: 1.9;
}
article p {
	margin-bottom: 1em;
}
a {
	color: #4d4d4d;
}
a:hover {
	color: #a21b30;
}
.cntr {text-align: center;}

@media screen and (max-width: 768px) {
.sp_cntr {text-align: center;}
}
/*可視範囲に入ったらふわっと表示*/
/* 画面外にいる状態 */
.fadein {
	opacity : 0;
	transform : translate(0px, 100px);
	transition : all 600ms;
	}
/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0px, 0px);
	}
/* 2つ目の要素に200msのdelayをかける */
.effect2 .fadein:nth-of-type(2) {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
	}
/* 3つ目の要素に400msのdelayをかける */
.effect2 .fadein:nth-of-type(3) {
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
	}
/* 4つ目の要素に400msのdelayをかける */
.effect2 .fadein:nth-of-type(4) {
	-moz-transition-delay:600ms;
	-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;
	-ms-transition-delay:600ms;
	}
/* 4つ目の要素に400msのdelayをかける */
.effect2 .fadein:nth-of-type(5) {
	-moz-transition-delay:800ms;
	-webkit-transition-delay:800ms;
	-o-transition-delay:800ms;
	-ms-transition-delay:800ms;
	}
/*可視範囲に入ったらふわっと表示*/
/* ▲▲▲ここまではナビゲーションに関係ない設定▲▲▲ */








/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */

/*カレント*/

.current{
    
    background-color: #47add1;


}


.header {
  position: fixed;
  top: 0;
  width: 100%;
    background: #0d0659;
  transition: all 0.8s ease;
    z-index: 3333;
	border-bottom: 10px solid #070707;
}

.hidden {
  background: none;    background: #0d0659;
	border-bottom: 10px solid #070707;
  transition: all 0.8s ease;
}
    /*headerの背景色*/


.menu li a:hover span.en {
    display: none;
}
.menu li a span.jp {

}
@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

.menu li a:hover span.jp {
    display: inline;
    animation: show 0.5s linear 0s;
}

/*.menu li.btn a:hover span.jp{
    display: inline;
    animation: show 0.5s linear 0s;
}*/

/*テキスト切り替え*/
@media only screen and (min-width: 1200px) {
    .menu li a {font-size: 12px; }
.menu li a span.en {
    display: inline-block;
    font-family: 'Red Hat Display', sans-serif;
}

    .menu li.index {display: noneb; /*width: 6.6%;*/}
.menu li.to_residents {width: 18.2%;}
/*.menu li.to_management {width: 26.2%;}*/
.menu li.to_company {width: 12.2%;}
.menu li.about {width: 8.2%;}
.menu li.recruitment {width: 10.2%;}
.menu li.inquiry {width: 13.2%;}
    .menu li:hover a span {color: #FFF;}
    .menu > ul > li > ul > li > ul > li.menuttl {font-size: 12px;}
}
@media only screen and (min-width: 1200px) {
    .menu {width: 100%;
}
.menu > ul {
    padding-left: 20%;
}
.menu li a {font-size: 14px; }.menu li a:hover {opacity: 0.8;}
.menu li a span.en {
    display: inline-block;
    font-family: 'Red Hat Display', sans-serif;
}

/*.menu li.menu0 {width: 23.6%;}
.menu li.menu0 img {height: 70px; padding: 10px 20px; }*/
.menu li.index {display: noneb; /*width: 6.6%;*/}
.menu li.to_residents {width: 15.6%;}
/*.menu li.to_management {width: 24.6%;}*/
.menu li.to_company {width: 10.6%;}
.menu li.about {width: 110px;}.menu li.about1 {width: 110px;}.menu li.about2 {width: 200px;}
.menu li.recruitment {width: 10.6%;}
.menu li.inquiry {width: 10.6%;}

.menu li.to_residents a,.menu li.to_management a,.menu li.to_company a,.menu li.about a,.menu li.recruitment a,.menu li.inquiry a {}
    .menu li:hover a span {color: #FFF;}
}


/*テキスト切り替え*/
@media only screen and (max-width: 959px) {
    .menu li a:hover span.en {
    display: noneb;
}
.menu li a span.jp {
    display: inline;
}
    .menu li a span.en {
        display: none;
}
.menu li a:hover span.jp {
    display: inline;
}
.menu li.btn a:hover span.jp{
    display: inline;
}
    
}



.brmenu { display: none !important; }
@media only screen and (max-width: 1200px) {
.brmenu { display: block !important; }
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */


.logo {position: relative;
top: 5px;
    left: 10px;
z-index: 999;}
.logo img {width: 58px; }
@media only screen and (max-width: 1200px) {
    .logo {position: absolute;
top:7px;
}
    .logo img {width: 210px;}
    }
.menu-mobile {
    display: none;
    padding: 20px;padding-right: 19px;
}

.menu-mobile:after {
    content: "\f394";
    font-family: "Ionicons";
    font-size: 2rem;
    padding: 0;
    float: right;
    position: relative;
    top: -5px;
	float: left;
    position: relative;
    top: -55px;
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
color: #eeeeee;
}

.menu-dropdown-icon:before {
    content: "\f489";
    font-family: "Ionicons";
    display: none;
    cursor: pointer;
    float: right;font-size: 16px;
    padding: 0.61em 1.8em;
    background: #fff;
    color: #333;
position: absolute;
	right: 0px;
}

.menu > ul {
      margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
	justify-content: center;
    align-items: stretch;
    list-style: none;
    float: left;
    right: ;    
	right: ;
}

.menu > ul:before,
.menu > ul:after {
    content: "";
    display: table;
}

.menu > ul:after {
    clear: both;
}

.menu > ul > li {
    float: left;
    padding: 0;
    margin: 0;
   
}

.menu > ul > li a {
    text-decoration: none;
    padding: 2em 0em;
	    padding: 1.0em 0em;
    padding-top: 1.8em;
    display: block;
    color: #eeeeee;

     text-align: center;
    
}

.menu > ul > li a:hover {
   color: #ffffff;
}

.menu > ul > li > ul {
    display: none;
    width: 100%;
    background-color: rgba(255,255,255,0.97);
    padding: 0px;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
   
    transition:all ４s ease-out;
    
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    width: 19%;
    
    background: none;
    float: left;
    
    
}

.menu > ul > li > ul > li a {
color: #4d4d4d;
    padding: 0.5em;
    width: 95%;
    display: block;
    border-bottom: 1px solid #ccc;
     text-align: left;
    font-weight: 700;
    letter-spacing: 0;position: relative;
    padding-left: 30px;
}

.menu > ul > li > ul > li a:before {
        content: "\f00c";
        font-family: FontAwesome;
        position: absolute;
        left: 10px;
        top: 7px;
    color: #2222222;
    }
.menu > ul > li > ul > li a:hover {
      
    color: #FFF;
    border-bottom: 1px solid #222222;
}
.menu > ul > li > ul > li a:hover:before {
        content: "\f00c";
        font-family: FontAwesome;
        position: absolute;
        left: 10px;
        top: 7px;
    color: #FFF;
    }

.menu > ul > li > ul > li > ul {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li > ul > li {
    float: left;
    width: 100%;
    margin: 0;
    font-size: .8em;
 
}
.menu > ul > li > ul > li > ul > li.menuttl {font-size: 12px; width: 95%; margin: 1em 0 0.5em; background-color: #F4F4F4; color: #4d4d4d; line-height: 1.4em; padding: 0.8em 1em 0.8em;}
.menu > ul > li > ul > li > ul > li a {
    border: 0;
     text-align: left;
    font-weight: normal;
    line-height: 1.6em;
    
    position: relative;
  display: inline-block;
  padding: 8px 15px 5px 10px;
  color: #4d4d4d;
  text-decoration: none;
}
.menu > ul > li > ul > li > ul > li a:hover {
    background-color: #444444;
    border-bottom: none;
}
.menu > ul > li > ul > li > ul > li a:hover {
    color: #FFF;
}
.menu > ul > li > ul > li > ul > li a::after {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #4d4d4d;
  border-right: solid 1px #4d4d4d;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  transform: rotate(45deg);
}
.menu > ul > li > ul > li > ul > li a:hover::after {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  transform: rotate(45deg);
}
.menu > ul > li > ul > li > ul > li a::before {display: none;}/*check着いてしまうの防ぐ*/

.menu > ul > li > ul.normal-sub {
    width: 330px;
    left: auto;overflow-y: scroll;
    /*padding: 10px 10px;*/
    z-index: 1000000000;
height: 100vh;
	padding-bottom: 80px;
}
.menu > ul > li > ul.normal-sub.normal-sub_last {
    position: absolute;
    right: 0;
}
.menu > ul > li > ul.normal-sub > li {
    width: 100%;
}

.menu > ul > li > ul.normal-sub > li a span{
  
  color: #4d4d4d;
  text-decoration: none;
}
.menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 1em 0;
    
    
    border: 0;
     text-align: left;
    font-weight: normal;
    line-height: 1.4em;
    
    position: relative;
  display: inline-block;
  padding-left: 15px;
  color: #4d4d4d;
  text-decoration: none;
}
.menu > ul > li > ul.normal-sub > li a:hover span{
  
  color: #ffffff;
  text-decoration: none;
}
.menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 1.0em 0;
    
    
    border: 0;
     text-align: left;
    font-weight: normal;
    line-height: 1.4em;
    
    position: relative;
  display: inline-block;
  padding-left: 15px;
  color: #4d4d4d;
  text-decoration: none;
}
.menu > ul > li > ul.normal-sub > li a::after {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #4d4d4d;
  border-right: solid 1px #4d4d4d;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5px;
  transform: rotate(45deg);
}
.menu > ul > li > ul.normal-sub > li a::before {display: none;}/*check着いてしまうの防ぐ*/
.menu > ul > li > ul.normal-sub > li:hover {
    background-color: #444444;        background: #0d0659;
}
.menu > ul > li > ul.normal-sub > li:hover a {
     color: #FFF;
}
.menu > ul > li > ul.normal-sub > li a:hover::after {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5px;
  transform: rotate(45deg);
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 1199px) {

.header {
  height: 60px;
}

    
    /*.menu li.menu0 {display: none;}*/
    .logo {position: absolute;
position: relative;
        top: 3px;
        text-align: center;
left: -1px;

	
	}
	
	
.logo img {width: 48px;
	
	}
	.menu{
		z-index: 10000000000 !important;
		  float: left;
		top: -5px;position: relative;
		left: 5px;
		
	}
    .menu-mobile {
        display: block;
        /*height: 50px;*/
        height: 50px;
        
        
    }
    .menu-dropdown-icon:before {
        display: block;
    }
    .menu > ul {
        display: none;
         width: 100%;
    }
    .menu > ul > li {
        width: 100%;
        float: none;
        display: block;
        background-color: #F4F4F4;border-top: #cfcfcf 1px solid ;
    }
    .menu > ul > li a {
    padding: 1em 1.2em;
        width: 100%;    font-size: 13px;
        display: block;
        color: #4d4d4d;
        text-align: left;
    }
    .menu > ul > li a:hover {
    padding: 1em 1.2em;
        width: 100%;    font-size: 13px;
        display: block;
        color: #4d4d4d;
        text-align: left;
		opacity: 0.7;
    }    
    .menu > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul.normal-sub {
        width: 100%;
    }
    .menu > ul > li > ul > li {
        float: none;
        width: 100%;
        /*margin-top: 20px;*/
    }

    .menu > ul > li > ul > li:first-child {
        margin: 0;
    }
    .menu > ul > li > ul > li > ul {
        position: relative;
    }
    
    .menu > ul > li > ul > li > ul > li {
        float: none;
    }
    .menu > ul > li > ul > li > ul > li.menuttl {
        margin: 0.5em 0 0.3em;
        padding: 0.5em 1em 0.5em;
    }
    .menu .show-on-mobile {
        display: block;
       background-color: rgba(0,0,0,0.3);
        
        
        overflow-y: scroll;  
　　 z-index: 999;
    top:0;
    
    
        position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
height: calc(100% - 125px);
        margin: 60px auto 50px;
    }

	
}





/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
@media only screen and (min-width: 768px) {
/*----------------------------------------------------------------*/
/* 共通 */
/*----------------------------------------------------------------*/

.sp-hide {
	display: inline !important;
}

.pc-hide {
	display:none !important;	
}
}
@media only screen and (max-width: 768px) {
/*----------------------------------------------------------------*/
/* 共通 */
/*----------------------------------------------------------------*/

.sp-hide {
	display:none !important;	
}

.pc-hide {
	
    display: inline !important;
}
}

.contents {margin: 3% 1%;}
.container { 
    margin: 0 auto;
    padding: 2% 0;
    width: 1200px;
    }
.container_m10 { 
    margin: 0 auto;
    padding: 3% 0;
    width: 1200px;
    }
.container_menu { 
    margin: 0 auto;
    padding: 1% 0;
    width: 1200px;
    }
.container_m0 { 
    margin: 0 auto;
    padding: 2% 0;
    width: 1200px;
    }
.container970 { 
    margin: 0 auto;

    width: 970px;
    }
.container1400 { 
    width: 100%;
    margin: 0 auto;
    padding: 2% 8%;
    
    }
.container1128 { 
    margin: 0 auto;
    padding: 3% 0;
    width: 1128px;
    
    }
.containerfooter { 
    margin: 0 auto;
    padding: 3% 5%;  border-top: 1px solid #cccccc;
    
    }
@media screen and (max-width:1200px) { 
.container { 
    padding: 4% 4%;
    width: 100%;
}
    .container_menu { 
    padding: 1% 2%;
    width: 100%;
    }
    .container_m10 { 
    padding: 4% 4%;
    width: 100%;
    }
    .container_m0 { 
    padding: 4% 4%;
    width: 100%;
    }
}
@media screen and (max-width:970px) { 
.container970 { 
    padding: 4% 4%;
    width: 100%;
}

}
@media screen and (max-width:1200px) { 
.container1400 { 
    margin: 0 auto;
    padding: 4% 3%;
    
    }
}
@media screen and (max-width:1200px) { 
.container1128 { 
    padding: 4% 6%;
    width: 100%;
    }
    .containerfooter { 
    margin: 0 auto;
    padding: 12% 2%;
    
    }
}
@media screen and (max-width:600px) {
    .container_menu { 
    padding: 0;
    width: 100%;
    }}





/*フッター固定*/


.footeranimation {
      display: none;
      width: 100%;
background: #47add1;
      position: fixed;
      bottom: 0;
      z-index:999;
    } 
.site-footer {padding-bottom: 0px;}
#footfix {
    

/*border-top:solid 1px #87d2e7;*/}
#footfix_in {
    width: 100%;
    display: flex;
    margin: 0 auto;
    padding: 10px 0;
    justify-content: center; /* 子要素をflexboxにより中央に配置する */
    align-items: center;  /* 子要素をflexboxにより中央に配置する */

}

.footfix_in_1 a {font-size: 40px; padding: 0; color: #FFF;font-weight: 600; text-decoration: none; font-family: 'Pathway Gothic One', sans-serif;
line-height: 1em;}
.footfix_in_1 a:before {

    content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 40px;/*画像の幅*/
  height: 40px;/*画像の高さ*/
  background-image: url(../img/common/freedial.png);
  background-size: contain;
  vertical-align: middle;
    margin-right: 10px;
}
.footfix_in_2{font-size: 1em;
    color: #FFF;
    border: solid 1px #FFF;
    padding: 1px 10px;
    vertical-align: middle;
margin: 0 15px;}
.footfix_in_3 a{
    display: block; background:#FFF; 
    color: #47add1;
    padding: 3px 60px;
    border: solid 2px #FFF;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
text-decoration: none;}
.footfix_in_3 a:hover{background:#47add1; 
    color: #FFF;
    padding: 3px 60px;
    border: solid 2px #FFF;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
text-decoration: none;}
.uketuke_sp {display: none;}
@media screen and (max-width:1200px) {
    .footfix_in_1 a {font-size: 30px;}
    .footfix_in_2 {font-size: 12px;}
    .footfix_in_3 a {font-size: 13px; padding: 1px 20px;}
    .footfix_in_3 a:hover{
     padding: 1px 20px;
    font-size: 13px;
}
    }
@media screen and (max-width:768px) {
    #footfix_in {
    padding: 10px 0 0;
}
    .footfix_in_1 a:before {

    content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 20px;/*画像の幅*/
  height: 20px;/*画像の高さ*/
  background-image: url(../img/common/freedial.png);
  background-size: contain;
  vertical-align: middle;
    margin-right: 5px;
}
    .footfix_in_1 a {font-size: 27px; margin: 0 5px; }
    .footfix_in_2 {display: none;}
    .footfix_in_3 a {font-size: 13px; padding: 1px 20px; margin: 0 5px;  }
        .footfix_in_3 a:hover{
     font-size: 11px; padding: 1px 10px;
}
    .uketuke_sp {display: block; width: 100%; color: #FFF; text-align: center; padding: 3px 0;}
    }
/*フッター固定*/


/*ページトップへ戻る・ページ内スクロール*/

#page_top{
  width: 90px;
  height: 60px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  opacity: 1;
    z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 25px;
color: #9f3b42;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
    font-family: bebas-neue-by-fontfabric,sans-serif;
    font-weight: 300;
    font-style: normal;
  content: 'PAGE TOP';
  font-size: 18px;
color: #9f3b42;
  position: absolute;
  top: 30px;
  bottom: 20;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media screen and (max-width:768px) {
    #page_top{
  width: 90px;
  height: 60px;
  position: fixed;
  right: 10px;
  bottom: 30px;
  opacity: 1;
    z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 25px;
color: #9f3b42;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
	
}
#page_top a::after{
    font-family: bebas-neue-by-fontfabric,sans-serif;
    font-weight: 300;
    font-style: normal;
  content: 'PAGE TOP';
  font-size: 13px;
color: #9f3b42;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
}
/*ページトップへ戻る・ページ内スクロール*/


/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*CONTENTSバナー*/
.cont_bn {margin: 0 auto;}
/*2カラム1カラム*/
.flex_cont21 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;

}
 
.flex_cont21 .flex_cont21_in {


}
@media screen and (max-width: 768px) {
    .flex_cont21{
  margin: 2% 0;

}

}
/*2カラム1カラム*/
/*3カラム1カラム*/
.flex_cont31 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;

}
 
.flex_cont31 .flex_cont31_in {


}
@media screen and (max-width: 768px) {
    .flex_cont31{
  margin: 2% 0;

}

}
/*3カラム1カラム*/
 @import url(https://fonts.googleapis.com/css?family=Raleway:500,900);
figure.snip1432 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 20px 10px;
  min-width: 230px;
  max-width: 480px;
  width: 100%;
    color: #4d4d4d;
  background: #87d2e7;
  text-align: left;
}
@media screen and (max-width: 1080px) {
  figure.snip1432 {
  width: 200px;
}  
}
@media screen and (max-width: 768px) {
    figure.snip1432 {
  width: 200px;
        margin: 10px 10px;
}
}
figure.snip1432 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
figure.snip1432 img {
  opacity: 1;
  width: 100%;
  vertical-align: bottom;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}


figure.snip1432 figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
    border: solid 1px #4d4d4d;
}
figure.snip1432 figcaption > div {
  height: 17%;
  overflow: hidden;
  width: 100%;
  position: relative;
}
figure.snip1432 h2,
figure.snip1432 h3 {
  margin: 0;
  position: absolute;
  left: 0;
  padding: 0 30px;
  text-transform: capitalize;
}
figure.snip1432 h2 {
  font-weight: 900;
  top: 0;
    line-height: 1.2em;
    font-size: 1.4em;
    
}
figure.snip1432 h3 {
  font-size: 1.4em;
  bottom: 0;
  font-weight: 500;
   
}
@media screen and (max-width: 1080px) {
  figure.snip1432 h2,
figure.snip1432 h3 {
  font-size: 13px;
    padding: 0 10px;
}
}
figure.snip1432 h3:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: translateY(150%);
  transform: translateY(150%);
}
figure.snip1432 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}
figure.snip1432:hover img,
figure.snip1432.hover img {
  opacity: 0.6;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
figure.snip1432:hover figcaption h3:first-of-type,
figure.snip1432.hover figcaption h3:first-of-type {
  -webkit-transform: translateY(150%);
  transform: translateY(150%);
  opacity: 0;
}
figure.snip1432:hover figcaption h3:nth-of-type(2),
figure.snip1432.hover figcaption h3:nth-of-type(2) {
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
/*hover animation  バナー*/
/*3カラム1カラム*/
 @import url(https://fonts.googleapis.com/css?family=Raleway:500,900);
figure.snip1433 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 15px;
  min-width: 230px;
  max-width: 330px;
  width: 100%;
    color: #FFF;
  background: #87d2e7;
  text-align: left;
}

@media screen and (max-width: 768px) {
    figure.snip1433 {
  position: relative;
  overflow: hidden;
  margin: 3% 6%;
  width: 88%;
  background: #87d2e7;
  text-align: left;
}
}
figure.snip1433 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
figure.snip1433 img {
  opacity: 0.8;
  width: 100%;
  vertical-align: bottom;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}


figure.snip1433 figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;

}
figure.snip1433 figcaption > div {
  height: 80%;
  overflow: hidden;
  width: 100%;
  position: relative;
}
figure.snip1433 h2,
figure.snip1433 h3 {
  margin: 0;
  position: absolute;
  left: 0;
    bottom: 0;
  padding: 0 30px;
  text-transform: capitalize;
}
figure.snip1433 h2 {
  font-weight: 900;
  top: 0;
    line-height: 1.2em;
    font-size: 1.3em;
    
}
figure.snip1433 h3 {
  font-size: 1em;
  bottom: 0;
  font-weight: 900;
   
}
figure.snip1433 h3:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: translateY(150%);
  transform: translateY(150%);
}
figure.snip1433 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}
figure.snip1433:hover img,
figure.snip1433.hover img {
  opacity: 0.6;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
figure.snip1433:hover figcaption h3:first-of-type,
figure.snip1433.hover figcaption h3:first-of-type {
  -webkit-transform: translateY(150%);
  transform: translateY(150%);
  opacity: 0;
}
figure.snip1433:hover figcaption h3:nth-of-type(2),
figure.snip1433.hover figcaption h3:nth-of-type(2) {
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
/*hover animation  バナー*/
/*CONTENTSバナー*/
/*最新情報*/
section.infomation {background:#87d2e7;}

.infomation h2 {
     font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
        color: #FFF; 
    font-size: 33px; 
    line-height: 35px;
letter-spacing: 2px;
padding-bottom: 20px;
}
.infomation h2::before{
    content: '';
    display: block;
    background: #FFF;
    height: 2px;
    width: 80px;
    margin-bottom: 20px;
}
.infomation h2 span {
    font-size: 16px; 
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .infomation h2 {
     font-size: 18px; 
    line-height: 25px;
letter-spacing: 0px;
    padding-bottom: 10px;}
    .infomation h2::before{
    margin-bottom: 10px;
        
}
.infomation h2 span {
    font-size: 13px; 
    }
}
.infomation_box {
   height: 370px;
    overflow: hidden;    overflow-y: scroll;
}
.topics dl {
padding: 5px 0;
border-bottom: 1px dotted #ccc;

}

.topics dt {
padding-bottom: 1px;
}
.topics dd {
display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.topics dd a {

}
@media screen and (min-width: 768px) {
.topics dt {
clear: left;
float: left;
width: 20%;
    
}

}
@media screen and (max-width: 768px) {
    .topics dt,.topics dd {font-size: 11px;}
}
.more_btn {margin: 2% 0;}
.more_btn a {
    font-family: 'Red Hat Display', sans-serif;
    border: 1px solid #FFF;
    border-radius: 4px;
padding: 5px 20px;
color: #87d2e7;
display: block;
    width: 160px;
    text-align: center;
    overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.2s linear;
    margin-left: auto;
    background-color: #FFF;
    font-size: 13px;
}
.more_btn a span {
    position: relative;
  display: inline-block;
  padding-right: 20px;
}
.more_btn a span::after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #87d2e7;
  border-right: solid 2px #87d2e7;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
}
.more_btn a::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 0.2s linear;
}
.more_btn a:hover {
  color: #fff;
}
.more_btn a:hover::after {
  left: 0;
  background-color: #87d2e7;
}
@media screen and (max-width: 768px) {
    .more_btn {margin: 5% 0;}
.more_btn a {border: 1px solid #FFF;
    border-radius: 4px;
padding: 3px 20px;
color: #87d2e7;
display: block;
    width: 100%;
    text-align: center;
    overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.2s linear;
    margin-left: auto;
}

}
/*最新情報*/

/*ごあいさつ*/
section.message {}

.message h2 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
     color:#00acc8;
    font-size: 36px; 
    line-height: 0.8em;
letter-spacing: 2px;
padding-bottom: 20px;
    text-transform: capitalize;
}
.message h2::before{
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 80px;
    margin-bottom: 20px;
}
.message h2 span {
    font-size: 20px; 
    font-weight: 600;
}
.message p {
    line-height: 2.2em;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
.message h2 {
     font-size: 18px; 
    line-height: 25px;
letter-spacing: 0px;
    padding-bottom: 10px;}
    .message h2::before{
    margin-bottom: 10px;
}
.message h2 span {
    font-size: 13px; 
    }
}

/*2カラム1カラム*/
.flex_messa21 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;

}
 
.flex_messa21 .flex_messa21_in {
  width: 50%;
    margin: 0%
}

.flex_messa21 .flex_messa21_in:last-child {
    padding: 0 6%;
}
@media screen and (max-width: 768px) {
    .flex_messa21 {
      margin: 4% 0;
}
.flex_messa21 .flex_messa21_in {
  width: 96%;
    margin: 2%;        
}
    .flex_messa21 .flex_messa21_in:last-child {
    padding: 0%;
}
}
/*2カラム1カラム*/
/*pararax*/
.container_pararax {
  padding: 0px 0;
  width: 100%;
margin: 0 20px;
}
.message_spimg {display: none;} 

@media screen and (max-width: 768px) {
    .container_pararax {
  display: none;
}
    .message_spimg {display: block; text-align: center; margin: 4% 0;} 
    .message_spimg img {width: 80%;} 

}
.item {
  margin: 50px 0;
}

.item-inner {
  border-radius: 20%;
}

.item-inner.-red {
  background-color: #87d2e7;
    opacity: 0.6;
  height: 250px;
  width: 250px;
}

.item-inner.-blue {
  background-color: #87d2e7;
    opacity: 0.4;
  height: 150px;
  width: 150px;
}

.item-inner.-green {
  background-color: #87d2e7;
    opacity: 0.2;
  height: 100px;
  width: 100px;
}

.item-inner.-yellow {
  background-color: #87d2e7;
    opacity: 0.2;
  height: 70px;
  width: 70px;
}

.item-inner.-black {
  background-color: #87d2e7;
    opacity: 0.2;
  height: 120px;
  width: 120px;
}

.item-inner.-orange {
  background-color: #87d2e7;
    opacity: 0.2;
  height: 80px;
  width: 80px;
}

.item-inner.-right {
  margin: 0 0 0 auto;
}
.para_img01 img {width: 120%;
position: absolute;
left: -20%;}

/*pararax*/

/*ごあいさつ*/
/*ご入居者様向けサービス*/
section.to_residents {background-color: #f4f8f9;}
@media screen and (max-width: 768px) {
    section.to_residents {padding: 4%;}
}
section.to_residents h2 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
     color:#00acc8;
    font-size: 30px; 
    line-height: 1.2em;
letter-spacing: 2px;
padding-bottom: 20px;
    margin: 0 3%;
}
section.to_residents h2::before{
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 80px;
    margin-bottom: 10px;
}
section.to_residents h2 span {
    display: block;
    font-size: 16px; 
    font-weight: 600;
}
@media screen and (max-width: 768px) {
section.to_residents h2 {
     font-size: 18px; 
    line-height: 1.2em;
letter-spacing: 0px;
    margin: 0;
    padding-bottom: 10px;}
section.to_residents h2::before{
    margin-bottom: 10px;
}
section.to_residents h2 span {
    font-size: 13px; 
    }
}
.ttl06 {
    margin: 1% 3%;
    font-weight: 600;
    font-size: 16px;
    background-color: #00acc8;
    color: #FFF;
padding: 5px 20px;
    border-radius: 10px;
}
/*2カラム1カラムサービスコンテンツ*/
.flex_service {
  display: flex;
  flex-wrap: wrap;
          align-items: flex-end;
         justify-content: flex-start;
}
 
.flex_service_in {
  width: 44%;
  margin: 1% 3%;


}

@media screen and (max-width: 768px) {
.flex_service_in {
  width: 100%;
  margin: 0;
}
    }
/*2カラム1カラムサービスコンテンツ*/
/*スクロールアニメーション*/
.cover {margin: 2% 0;}
.service_title {display: flex;
align-items: center;
         /*justify-content: center;*/
position: relative;}
/*.service_title {position: relative;
    display: block;
  padding-left: 20px;}*/
.service_title::after{
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px #4D4D4D;
  border-right: solid 2px #4D4D4D;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 70%;
  right: 0;
  margin-top: -4px;
}
.cover .nunber {font-size:70px; font-family: 'Pathway Gothic One', sans-serif;
     color:#00acc8;
    margin: 0;
    line-height: 1em;
}
.cover h3 {
    font-weight: 700;
    color: #00acc8;
    font-size: 20px;
text-align: left;
padding: 0 20px 0 30px;
    line-height: 1.4em;
}
.cover h3 span {
    font-weight: normal;
color: #4d4d4d;
font-size: 15px;
    display: block;
    line-height: 1.6em;
}
.cover {
  position: relative;
    
}

a .cover h3 {
    display: inline-block;
  transition: .3s;
  -webkit-transform: scale(1);
  transform: scale(1);}
a .cover h3:hover {-webkit-transform: scale(1.1);
  transform: scale(1.1);}

.centerBox img { height: 70px; padding: 20px; transition: .8s; transition-delay: 0; text-align: center;} 
.centerBox div { margin: auto; transition: .8s; transition-delay: .4s;/*テキスト表示の速さ */}






@media screen and (max-width: 768px) {
    .cover h3 {font-size: 15px; line-height: 1.6em; padding-left: 20px;}
    .cover h3 span  {font-size: 12px; line-height: 1.6em;}
    .centerBox img { height: 50px; padding: 20px; transition: .8s; transition-delay: 0; text-align: center;} 
    .cover .nunber {font-size:40px;
}
}
.dash_box {padding: 10px 0 0;}
hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
hr.dash {
    border-top: 1px dashed #4d4d4d;
    padding: 10px 0 0;
}

a.btn{ display: inline-block; width: 150px; margin: 10px 0; padding: 16px 10px; border: 1px solid #fff; background: transparent; color: #fff; text-align: center; text-decoration: none; line-height: 1; transition: .3s; }

@keyframes page-top-animation {
0% {padding-top: 0px; }
100% {padding-top: 3px; }
}
@media only screen and (min-width: 1023px) {
.section3 { background-attachment: fixed; }
}
/*スクロールアニメーション*/
/*ご入居者様向けサービス*/
/*テルベルの不動産管理会社・家主様向けサービス*/
section.to_management {background-color: #FFF;}
@media screen and (max-width: 768px) {
section.to_management {padding: 4%;}
}
section.to_management h2 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
     color:#00acc8;
    font-size: 35px; 
    line-height: 1.2em;
letter-spacing: 2px;
padding-bottom: 40px;
    margin: 0 3%;
}
section.to_management h2::before{
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 120px;
    margin-bottom: 20px;
}
section.to_management h2 span {
    display: block;
    font-size: 17px; 
    font-weight: 700;
}
@media screen and (max-width: 768px) {
section.to_management h2 {
     font-size: 18px; 
    line-height: 1.4em;
letter-spacing: 0px;
    margin: 0;
    padding-bottom: 10px;}
section.to_management h2::before{
    margin-bottom: 10px;
}
section.to_management h2 span {
    font-size: 13px; 
    }
}
/*テルベルの不動産管理会社・家主様向けサービス*/
/*お問い合わせ１００％*/
.btn100 {width: 100%;
    background: url("../img/top/inquiry_bg.jpg") no-repeat center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	transition: all .3s ease-out;
position: relative;}
.btn100::before {
    content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,0.2);
}
.btn100 a {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    line-height: 1.2em;
    letter-spacing: 2px;
  display: block;
  padding: 120px 0;
  text-decoration: none;
  font-size: 50px;
  color: #87D2E7;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.2s linear;
    text-align: center;
    line-height: 1em;
}
.btn100 a span {
    font-weight: 300;
    font-size: 20px; display: block;
text-align: center;}
@media screen and (max-width:768px) {
    .btn100 a {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    line-height: 1.2em;
    letter-spacing: 2px;
  display: block;
  padding: 60px 0;
  text-decoration: none;
  font-size: 30px;
  color: #87D2E7;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.2s linear;
    text-align: center;
    line-height: 1em;
}
    .btn100 a span {
    font-weight: 300;
    font-size: 13px; display: block; }
}
.btn100 a::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 0.2s linear;
}
.btn100 a:hover {
  color: #fff;
}
.btn100 a:hover::after {
  left: 0;
  background-color:rgba(135,210,231,0.8);
}
/*お問い合わせ１００％*/
/*footer*/
footer {
    background: #fff;
    font-size: 12px;
}
footer p {}
footer a {
	
}
footer h1 {font-size: 13px; color: #383838;  font-weight: normal; line-height:1.4em;}
@media screen and (max-width: 480px) {
    footer {
	padding: 15px;}
    footer h1 {font-size: 11px; padding-bottom: 0px; text-align: left;}
}


.flex_footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  margin: 2% 0;
}
 .flex_footer1 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
    margin: 0% 2%;
}
 .flex_footer2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;

    margin: 0% 2%;
}
@media screen and (max-width: 768px) {
 .flex_footer1 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
    margin: 0% 0%;
}	
 .flex_footer2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
    margin: 0% 0%;
}	
}

.flex_footer_company {
  width: 25%;
  margin: 0;
    padding-right: 20px;
        display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;

}
.flex_footer_company_in {
    width: 100%;
    margin-bottom: 20px;
    margin: 4% 0;
}

.flex_footer_company img {width: 140px;}
.flex_footer_link_box {
  width: 70%;
  margin: 0;
    display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
}
.flex_footer_link {width: 24%; margin: 1%; }
@media screen and (max-width: 1200px) {
    .flex_footer_company,.flex_footer_link_box {width: 100%; margin-top:20px; padding: 0px;}
        .flex_footer_company_in {
        width: 23%;
    margin-bottom: 0px;
            
    }
    .flex_footer_link {width: 18%; margin: 10px 1%; padding:0; }
    }

@media screen and (max-width: 768px) {
    .flex_footer_company,.flex_footer_link_box {width: 100%; margin-top:0px;}
    .flex_footer_company_in {
     width: 100%;
    margin-bottom: 10px;
    }

    .flex_footer_link {width: 100%; margin: 0px 0;  padding:0; }
    }
/*footer*/
.kaisha {margin-bottom: 10px;
    font-weight: 700;
    }
.kaisha::after {
    content: '';
    display: block;
    background: #4d4d4d;
    height: 1px;
    width: 40px;
    margin-top: 3px;
}

.jusho {}

.footmenu2_box {width: 100%;  margin: 3% 2%;}
@media screen and (max-width: 768px) {
    .footmenu2_box {margin: 3% 0%;}
}
.footmenu li {
    display: list-item;  /* 縦に並べる */
  list-style-type: none;
  text-transform: capitalize;
  padding: 0.2em 0;
    text-decoration: none;
    
    font-size: 13px;
    letter-spacing: 0;
  }
.footmenu li:first-childbk {
    font-weight: 600;
    font-size: 120%;
    letter-spacing: 1px;
}
.footmenu li:first-childbk a {color: #47add1; line-height: 1.3em;}
.footmenu li:hover:first-childbk a,.footmenu li:hover:first-child span {color: #008cb2;}
.footmenu li:first-childbk span {font-size:12.5px; font-weight: 300; display: block; padding: 0; margin: 1px 0 2px; color: #47add1; font-weight: 700; letter-spacing: 0;}
.footmenu li:first-childbk::after {
    content: '';
    display: block;
    background: #47add1;
    height: 1px;
    width: 20px;
    margin-bottom: 10px;
}

.footmenu li a {
    color: #4d4d4d;
    
}
.footmenu li a:hover {
    color: #a21b30;
}
@media screen and (max-width: 768px) {
    .footmenu li {padding: 0;
   font-size: 13px;
    line-height: 30px;
    }
    .footmenu li:first-child {}
}


ul.footmenu2 {    
    list-style: none;
    display:flex;
}
ul.footmenu2 li {padding: 0 10px 0 0;}
ul.footmenu2 li a {color: #4d4d4d;}
ul.footmenu2 li a:hover {
    color: #a21b30;
}
ul.footmenu2 li::before {
  content: "/";
  margin-left: .5em;  
  margin-right: .5em;  
}
@media screen and (max-width: 480px) {
ul.footmenu2 {    
    display: flex;
  flex-flow: column wrap;
}
}

.copyright {
    color: #4d4d4d;
    font-size: 11px;
    text-align: center;
}



/* マーカー線・黄色 */
.marker-yellow {
  background: linear-gradient(transparent 50%, #efef3f 50%);
    font-weight: 700;
    color: #efef3f;
}
.yellow {color:#F9CD00;
font-weight: 700;}
/* 第二見出し要素
----------------------------------------------------------- */
  
/*    body, html, main {
    /* important 
    height: 100%;
}*/
.daini_mds {padding-top: 100px;}
.cd-fixed-bg {
    height: 350px;
    background-size: cover;
/*    background-attachment: fixed;*/
    background-repeat: no-repeat;
    background-position: center center;
    
}
.cd-fixed-bg.cd-fixed-bg01 {background-image: url("../img/daini/1.jpg");}
.cd-fixed-bg.cd-fixed-bg02 {background-image: url("../img/daini/2.jpg");}
.cd-fixed-bg.cd-fixed-bg03 {background-image: url("../img/daini/3.jpg");}
.cd-fixed-bg.cd-fixed-bg04 {background-image: url("../img/daini/4.jpg");}
.cd-fixed-bg.cd-fixed-bg05 {background-image: url("../img/daini/13.jpg");}
.cd-fixed-bg.cd-fixed-bg06 {background-image: url("../img/daini/6.jpg");}
.cd-fixed-bg.cd-fixed-bg07 {background-image: url("../img/daini/7.jpg"); background-position: right;}
.cd-fixed-bg.cd-fixed-bg08 {background-image: url("../img/daini/8.jpg");}
.cd-fixed-bg.cd-fixed-bg09 {background-image: url("../img/daini/9.jpg");}
.cd-fixed-bg.cd-fixed-bg010 {background-image: url("../img/daini/10.jpg");}
.cd-fixed-bg.cd-fixed-bg011 {background-image: url("../img/daini/11.jpg");}
.cd-fixed-bg.cd-fixed-bg012 {background-image: url("../img/daini/12.jpg");}
.cd-fixed-bg.cd-fixed-bg013 {background-image: url("../img/daini/5.jpg");}
.cd-fixed-bg.cd-fixed-bg016 {background-image: url("../img/daini/16.jpg");}
.cd-fixed-bg.cd-fixed-bg017 {background-image: url("../img/daini/17.jpg");}
.cd-fixed-bg.cd-fixed-bg018 {background-image: url("../img/daini/18.jpg");}
.cd-fixed-bg.cd-fixed-bg019 {background-image: url("../img/daini/19.jpg");}
.cd-fixed-bg.cd-fixed-niigata {background-image: url("../img/daini/niigata.jpg");}
.cd-fixed-bg::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    content: "";
    display: block;
/*   background-color: rgba(255, 255, 255, .4);*/
     background-color: rgba(0, 0, 0, .3);
    background-image: radial-gradient(#555 20%, transparent 0), radial-gradient(#555 20%, transparent 0);
    background-position: 0 0, 10px 10px;
    background-size: 4px 4px;
}

.cd-scrolling-bg {
    min-height: 100%;
}
    .cd-fixed-bg h1 {
        font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    letter-spacing: 5px;
    display: block;
    padding-top: 25px;
    text-decoration: none;
    font-size: 45px;
    color: #FFF;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: 0.2s linear;
    text-align: center;
    line-height: 1.2em;
        text-transform: capitalize;
        text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}   
    .dainikomidashi { text-align: center; font-size: 18px; letter-spacing: 1px;
text-shadow: 2px 2px 2px rgba(0,0,0,0.2);}   
  
@media screen and (max-width: 790px) {
    .daini_mds {padding-top: 50px;}
.cd-fixed-bg {
    height: 280px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("../img/daini/daini_01.jpg");
}
  .cd-fixed-bg::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    content: "";
    display: block;
/*   background-color: rgba(255, 255, 255, .4);*/
     background-color: rgba(0, 0, 0, .2);
    background-image: radial-gradient(#383838 20%, transparent 0), radial-gradient(#383838 20%, transparent 0);
    background-position: 0 0, 10px 10px;
    background-size: 4px 4px;
}

.cd-scrolling-bg {
    min-height: 100%;
}
    .cd-fixed-bg h1 {font-size: 20px; letter-spacing: 2px; padding: 60px 4%;
}   
    .dainikomidashi {font-size: 13px; letter-spacing: 0; padding: 2% 4%;
} 

} 



/* ・第二見出し要素*/
/*第二階層*/
section.daini_bkmizu {
    background-color: #f4f8f9;
}
section.daini_bkmizu2 {
    background-color: #47add1;
}
section.daini_bkmizu2 p {
    color: #FFF;
}
section.daini_bkmizu3 {
    background-color: #e7f5f7;
}
section.daini_bkmizu4 {
    background-color: #c9e7f2;
}
@media screen and (max-width: 768px){
section.daini {
    padding: 4% 0;
}

}@media screen and (max-width: 600px){
        section.daini_bkmizu3 {
    background-color: #FFF;
}
}

section.daini h2 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
     color:#00acc8;
    font-size: 33px; 
    line-height: 1.2em;
letter-spacing: 2px;
padding-bottom: 20px;
    text-transform:capitalize;
}
section.daini h2::before{
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 60px;
    margin-bottom: 10px;
}
section.daini h2 span {
    display: block;
    font-size: 21px; 
    font-weight: 600;
    text-transform:capitalize;
}
@media screen and (max-width: 768px) {
section.daini h2 {
     font-size: 21px; 
    line-height: 1.2em;
letter-spacing: 0px;
    padding-bottom: 20px;}
section.daini h2::before{
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 80px;
    margin-bottom: 10px;
}
section.daini h2 span {
    font-size: 12px; 
    }
}
section.daini h3 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 22px; 
    line-height: 2em;
letter-spacing: 2px;
    text-transform:capitalize;
    margin: 2em 0;
    border-bottom: solid 1px #ccc;
}
section.daini h3::before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    padding-right: 10px;
    font-size: 16px; 
    color: #ccc;

}
section.daini h4 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    font-size: 20px; 
    line-height: 1.2em;
letter-spacing: 2px;
    text-transform:capitalize;
    margin: 1em 0;
    color: #00acc8;

}
section.daini h5 span {
    color: #00acc8; font-weight: 700; font-size: 110%; padding-right: 10px; letter-spacing: 0.1em;
}
section.daini h5 {
    padding-left:4em;
text-indent:-4em;
    font-size: 1em;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    section.daini h3 {
    font-size: 15px; 
}
    section.daini h3::before {
    font-size: 12px; 
}
    section.daini h4 {
    font-size: 16px; 
}
}
/*第二階層*/

/*お問い合わせ*/
/*3カラム1カラム*/
.flex_otoi_bn {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: center;
    justify-content: center;
    align-items:center;
}
 
.flex_otoi_bn div.otoi_btn {
  width: 31%;
  margin: 1%;
}
@media screen and (max-width:798px) {
 .flex_otoi_bn {
 padding: 0%;
}
.flex_otoi_bn div.otoi_btn {
  width: 100%;
  margin: 1% 0;
}
}
/*3カラム1カラム*/
.otoi_btn {position: relative;}
.otoi_btn a {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    line-height: 1.3em;
  display: block;
  background-color: #87d2e7;
  border: solid 3px #87d2e7;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 23px;
  color: #FFF;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.2s linear;
    height: 120px;
    
}
.otoi_btn:after {
    font-family: 'FontAwesome';
    content: "\f054";
    position: absolute;
    bottom: 45px;
    right: 10px;
    margin-top: -12px;
    font-size: 16px;
    color: #FFF;
    z-index: 2;
}
.otoi_btn a span {display: block;
font-size: 13px;
font-weight: 300;}
.otoi_btn a::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 0.2s linear;
}
.otoi_btn a:hover {
  color: #87d2e7;
}
.otoi_btn a:hover::after {
  left: 0;
  background-color: #FFF;
}
@media screen and (max-width:1180px) {
        .otoi_btn a {
        font-weight: 700;
        font-size: 16px;
            height: 90px;
        padding: 10px 10px;
}
    .otoi_btn:after {
    font-family: 'FontAwesome';
    content: "\f054";
    position: absolute;
    bottom: 30px;
    right: 10px;
    margin-top: -12px;
    font-size: 16px;
    color: #FFF;
    z-index: 2;
}
}
@media screen and (max-width:798px) {
    .otoi_btn a {
        font-weight: 700;
        font-size: 14px;
            height: auto;
        padding: 10px 10px;
}
    .otoi_btn a span {display: block;
font-size: 12px;
font-weight: 300;}
        .otoi_btn:after {
    font-family: 'FontAwesome';
    content: "\f054";
    position: absolute;
    bottom: 30px;
    right: 10px;
    margin-top: -12px;
    font-size: 16px;
    color: #FFF;
    z-index: 2;
}
}
/*ページ内リンクのずれ解消*/
a.anchor{
    display: block;
    padding-top: 60px;
    margin-top: -60px;
}
/*ページ内リンクのずれ解消*/
.otoi_tel a {
    
    font-size: 50px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Pathway Gothic One', sans-serif;
    line-height: 1em;
    
}

.otoi_tel a:before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url(../img/inquiry/freedial.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 10px;
}
@media screen and (max-width: 768px) {
    .otoi_tel a {
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Pathway Gothic One', sans-serif;
    line-height: 1em;
    
}
    .otoi_tel a:before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../img/inquiry/freedial.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 10px;
}
}

.modoru {text-align: center; }
.modoru a {
padding: 10px 30px;
margin: 80px 0;
background-color: #F4F4F4;
border-radius: 8px;
display: inline-block;}
.modoru a:hover {background-color: #87D2E7;
color: #FFF;}
/*お問い合わせ*/

/*管理会社・家主様はこちら*/
.mdsimg_box {
/*  background: linear-gradient(45deg, #00acc8 0%, #00acc8 50%, #87d2e7 50%, #87d2e7 100%);*/
   background: linear-gradient(180deg, #47add1 0%, #47add1 50%, #87d2e7 50%, #87d2e7 100%); 
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;}
.oneArea {
/*  background: linear-gradient(45deg, #00acc8 0%, #00acc8 50%, #87d2e7 50%, #87d2e7 100%);*/
   background: linear-gradient(45deg, #FFF 0%, #FFF 50%, #f4f8f9 50%, #f4f8f9 100%); 
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
    background-attachment: fixed;
}
.oneArea_yoko {
/*  background: linear-gradient(45deg, #00acc8 0%, #00acc8 50%, #87d2e7 50%, #87d2e7 100%);*/
   background: linear-gradient(180deg, #FFF 0%, #FFF 50%, #f4f8f9 50%, #f4f8f9 100%); 
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}
.oneArea_tate {
  background: linear-gradient(90deg, #FFF 0%, #FFF 50%, #f4f8f9 50%, #f4f8f9 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}
.oneArea_tate20 {
  background: linear-gradient(90deg, #f4f8f9 0%, #f4f8f9 80%, #FFF 20%, #FFF 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
    margin: 0 0 2%;
}
.oneArea_tate80 {
  background: linear-gradient(-90deg, #e7f5f7 0%, #e7f5f7 80%, #FFF 20%, #FFF 100%);
    display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0 0 2%;
}

.containerproduct { 
    margin: 0 auto;
    padding: 0% 8%;
    
    }
@media screen and (max-width:1200px) { 
.containerproduct { 
    margin: 0 auto;
    padding: 3% 3%;
    
    }
}
@media screen and (max-width: 768px) {}
.mdsimg_box h2 {font-size: 32px;
line-height: 1.6em;
font-weight: 900;
    padding: 1% 0;
color: #FFF;}
.mdsimg img {width: 100%;}
@media screen and (max-width: 970px) { .mdsimg_box h2 {font-size: 34px;}}
@media screen and (max-width: 768px) {
   .mdsimg_box {padding: 0 2%;}
    .mdsimg_box h2 {font-size: 21px;
line-height: 1.4em;
font-weight: 900;
color: #FFF;}

}

/*5カラム5カラム*/
.flex_55 {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: center;
    justify-content: center;
    align-items:center;
}
 
.flex_55 div.flex_55_in {
  width: 16%;
  margin: 1%;
}
@media screen and (max-width: 768px) {
    .flex_55 div.flex_55_in {
  width: 27%;
  margin: 1%;
}
}
/*5カラム5カラム*/
section.product {}

section.product h3 {
    font-weight: 900;
    color: #000;
    font-size: 26px;
    text-align: left;
    line-height: 2em;
    display: block;
    padding: 10px 0 10px;
    
}

section.product h3 span.index {
    font-weight: normal;
    font-size: 20px;
    line-height: 1.6em;
    display: block;
    
}
section.product h3 span.nunber {
font-size: 66px;
    font-family: 'Pathway Gothic One', sans-serif;
    color: #00acc8;
    margin: 0;
    line-height: 1em;
    display: block;
    padding-bottom: 20px;
    }
section.product h3 span.nunber::after {
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 50px;
    margin-top: 10px;
}
section.product h4 {font-size: 22px; font-weight: 800; color: #00acc8; padding-bottom: 10px;}
@media screen and (max-width: 768px) {
    section.product h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4em;
    display: block;
    padding-bottom: 10px;
}
section.product h3 span.index {
    font-weight: normal;
    color: #4d4d4d;
    font-size: 13px;
    line-height: 1.6em;
    display: block;
}
section.product h3 span.nunber {
font-size: 36px;
    line-height: 1em;
    display: block;
    padding-bottom: 10px;
    }
section.product h3 span.nunber::after {
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 30px;
    margin-top: 10px;
}
section.product h4 {font-size: 16px; font-weight: 800; padding-bottom: 10px;}
}
/*2カラム1カラム*/
.flex_product {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items:center;
}
 
.flex_product div.flex_product_txt,.flex_product div.flex_product_img {
  width: 48%;
  margin: 1%;
}
.flex_product p {margin: 10px 0;}
.flex_product div.flex_product_img img {
    width: 96%;
    margin: 0 2%;
}
@media screen and (max-width:768px) {
.flex_product {
 padding: 2%;
}
.flex_product div.flex_product_txt,.flex_product div.flex_product_img {
  width: 98%;
  margin: 1%;
}
    .flex_product div.flex_product_img img {
    width: 90%;
    margin: 0 5%;
}
.flex_product div.flex_product_txt { order: 1; }
.flex_product div.flex_product_img { order: 2; }
}
/*2カラム1カラム*/
.reedmore {margin: 2% 0;}
.reedmore a {border: 2px solid #4d4d4d;
    border-radius: 4px;
padding: 5px 20px;
color: #4d4d4d;
display: block;
    width: 200px;
    text-align: center;
    overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.2s linear;
    margin-left: auto;
}
.reedmore a span {
    font-family: 'Red Hat Display', sans-serif;
    position: relative;
  display: inline-block;
  padding-right: 20px;
}
.reedmore a span::after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #4d4d4d;
  border-right: solid 2px #4d4d4d;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
}
.reedmore a::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 0.2s linear;
}
.reedmore a:hover {
  color: #fff;
}
.reedmore a:hover::after {
  left: 0;
  background-color: #87d2e7;
}
@media screen and (max-width: 768px) {
    .reedmore a {border: 2px solid #4d4d4d;
    border-radius: 4px;
padding: 3px 20px;
color: #4d4d4d;
display: block;
    width: 140px;
    text-align: center;
    overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.2s linear;
    margin-left: auto;
}

}
/*pararax*/
.product_pararax {
  padding: 10px 0;
  width: 94%;
margin: 3% ;
}
.product_spimg {display: none;} 

@media screen and (max-width: 768px) {
    .product_pararax {
  display: none;
}
    .product_spimg {display: block; text-align: center; margin: 2% 0;} 
    

}
.item {
  margin: 0px 0;
    text-align: center;
}

.item-inner {
  border-radius: 20%;
}

.item-inner.-right {
  margin: 0 0 0 auto;
}
.product_para_img img {width: 100%;
}

/*pararax*/

/*管理会社・家主様はこちら*/
/*会社概要*/
/*テーブル*/
.tbl {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 80%;
    overflow: hidden;
    border: none;
    border-collapse: separate;
   border-spacing: 20px;
    padding-left: 10%;
}
.tbl th,
.tbl td {
  padding: 1em 0 2em;
}
.tbl th {
    font-weight: normal;
    width: 25%;
border-bottom: 1px solid #4d4d4d;
}
.tbl td {

border-bottom: 1px solid #D3D3D3;}


.tbl tbody th {
  text-align: left;
}
.tbl a {text-decoration: underline;}
@media screen and (max-width: 600px) {
.tbl {
    margin: 20px 0;
    border: 0;
    width:100%;
        padding-left: 0%;
    border-spacing: 0px;
  }
.tbl th{
    display: block;
    background:rgba(0,0,0,0.1);
    padding: 1em;
    border-bottom: none;
  }
    .tbl th {width: 100%;}
.tbl tr {
    display: block;
    margin-bottom: .625em;
  }
.tbl td {
border-bottom: none;
    display: block;
    position: relative;
    border-right: none;
  }
}

/*シマシマテーブル*/
/*会社概要*/

/*代表挨拶*/
.catch {
    font-weight: 900;
    font-size: 38px;
    line-height: 1.5em;
    letter-spacing: 2px;
    padding-bottom: 25px;
    text-transform: capitalize;
}
@media screen and (max-width:768px) {
    .catch {
    font-weight: 900;
    font-size: 19px;
    line-height: 1.5em;
    letter-spacing: 2px;
    padding-bottom: 20px;
    text-transform: capitalize;
}
}
.catch_mds {
    font-family: 'Red Hat Display', sans-serif;
    color: #ccc;
    text-transform: capitalize;
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: flex-start; /* 水平中心 */
    padding-bottom: 10px;
    font-size: 16px;
    letter-spacing: 2px;
}
 .catch_mds:after {
  border-top: 1px solid;
  content: "";
  width: 5em; /* 線の長さ */
}

.catch_mds:after {
  margin-left: 1em; /* 文字の左隣 */
    
}
@media screen and (max-width:768px) {
    .catch_mds {font-size: 10px;}
}

.flexmessagebox {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: flex-start;
    margin: 2% 0;
}

.flexmessagebox div.flexmessagebox_in {
  width: 46%;
  margin: 1%;
}
.flexmessagebox div.flexmessagebox_in:last-child {
    padding-top: 40px;
}
@media screen and (max-width:768px) {
.flexmessagebox div.flexmessagebox_in {
width: 98%;
  margin: 1%;
}
    .flexmessagebox div.flexmessagebox_in:last-child {
    padding-top: 0px;
}
    }
/*代表挨拶*/
/*経営理念・行動指針*/
section.philosophy h2 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
     color:#00acc8;
    font-size: 30px; 
    line-height: 1.2em;
letter-spacing: 2px;
padding-bottom: 40px;
}
/*section.Philosophy h2::after{
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 160px;
    margin-bottom: 20px;
}*/
section.philosophy h2 span {
    font-size: 16px; 
    font-weight: 600;
    display: block;
}
@media screen and (max-width: 768px) {
section.philosophy h2 {
     font-size: 20px; 
    line-height: 1.2em;
letter-spacing: 0px;
    margin: 0;}
section.philosophy h2::before{
    margin-bottom: 20px;
}
section.philosophy h2 span {
    font-size: 14px; 
    }
}

.philosophybox {padding-bottom: 4%;}

.flexphilosophybox {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
    justify-content: space-around;
    align-items: center;
    margin: 2% 0;
}

.flexphilosophybox div.flexphilosophybox_in {
  width: 46%;
  margin: 1%;
}
.flexphilosophybox div.flexphilosophybox_in img{width: 100%;}

@media screen and (max-width:768px) {
.flexphilosophybox div.flexphilosophybox_in {
width: 98%;
      margin: 1%;
}
    }


  .catch2 {
    font-weight: 900;
    font-size: 30px;
    line-height: 1.5em;
    letter-spacing: 2px;

    text-transform: capitalize;
}
@media screen and (max-width: 768px) {
    .catch2 {
    font-weight: 900;
    font-size: 18px;
    line-height: 1.5em;
    letter-spacing: 2px;
    padding-bottom: 20px;
    text-transform: capitalize;
}
}
.catch_mds2 {
    font-family: 'Red Hat Display', sans-serif;
    text-transform: capitalize;
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: flex-start; /* 水平中心 */
    padding-bottom: 10px;
    font-size: 16px;
    letter-spacing: 2px;
}
 .catch_mds2:after {
  border-top: 1px solid;
  content: "";
  width: 5em; /* 線の長さ */
}

.catch_mds2:after {
  margin-left: 1em; /* 文字の左隣 */
    
} 
/*pararax*/
.philosophy_pararax {
  padding: 10px 0;
  width: 94%;

    
}
.philosophy_spimg {display: none;} 

@media screen and (max-width: 768px) {
.philosophy_pararax {
  display: none;
}
.philosophy_spimg {
        display: block;
    text-align: center;
}
   .flexphilosophybox div.flexphilosophybox_in .philosophy_spimg img { width: 80%; padding-bottom: 4%;}

}
section.philosophy .item {
  margin: 10px 0;
}

section.philosophy .item-inner {
  border-radius: 20%;
}

section.philosophy .item-inner.-right {
  margin: 0 0 0 auto;
}
.philosophy_para_img img {width: 100%;
}

/*pararax*/
  .catch3 {
    font-weight: 700;
    font-size: 23px !important;
    line-height: 1.5em;
    letter-spacing: 1px;
    padding-bottom: 10px;
padding-left:2em;
text-indent:-0.8em;    
}
.catch3::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";

  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
    color: #00acc8;
    padding-right: 10px;
}
@media screen and (max-width: 768px) {
      .catch3 {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 1px;
    padding-bottom: 20px;
padding-left:2em;
text-indent:-0.8em;    
}
}
/*テキストアニメーション*/

.textRevealContainer {
  
    
}

.textReveal {
  overflow: hidden;
  animation: textRevealAnim 2s ease 0.1s forwards;
}

.textReveal > div {
  transform: translateX(100%);
  border-left: 2px solid #FFF;
  overflow: hidden;
  animation: textRevealAnim 2s ease 0.1s forwards,
    borderOpacityAnim 2s ease 0.5s forwards;
}

.textReveal > div > div {
  transform: translateX(-100%);
  animation: textRevealAnim 2s ease 0.1s forwards;
}

@keyframes textRevealAnim {
  to {
    transform: translateX(0);
  }
}

@keyframes borderOpacityAnim {
  50% {
    border-left: 2px solid #FFF;
  }
  100% {
    border-left: 2px solid transparent;
  }
}

.textReveal.x50 {
  transform: translateX(-50%);
}

.textReveal.x100 {
  transform: translateX(-100%);
}

.textReveal.zoom > div {
  transform: translateX(100%) scale(0.1, 0.1);
}

.textReveal.rotateY {
  perspective: 100px; /*adjust according to your need*/
}

.textReveal.rotateY > div {
  transform: translateX(100%) rotateY(20deg);
}

.textReveal.color > div > div {
  background: linear-gradient(
    to right,
    red,
    red 45%,
    orange 45%,
    orange 55%,
    red 55%,
    red
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 300%;
  animation: textRevealAnim 2s ease 0.1s forwards,
    bgShiftAnim 3s ease 0.1s forwards;
}

@keyframes bgShiftAnim {
  to {
    background-position: 100%;
  }
}
/*テキストアニメーション*/
.guidelinesimg {text-align: right; padding-bottom: 4%;}
.guidelinesimg img {
    vertical-align: bottom;
    object-fit: cover;
    width: 40%;
    height: 260px;
}
@media screen and (max-width: 768px) {
    .guidelinesimg img {
    vertical-align: bottom;
    object-fit: cover;
    width: 100%;
    height: 130px;
}
}
/*経営理念・行動指針*/
/*アクセス*/

.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/*2カラム1カラム*/
.flex_access {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
    justify-content: flex-start;
    align-items:flex-start;
}
 
.flex_access div.flex_access_ttl {
  width: 38%;
  margin: 1%;
}
.flex_access div.flex_access_map {
  width: 58%;
  margin: 1%;
}
.flex_access img {width: 300px; margin: 10px 0;}
@media screen and (max-width:768px) {

.flex_access div.flex_access_ttl,.flex_access div.flex_access_map {
  width: 98%;
  margin: 1%;
}
.flex_access div.flex_access_ttl { order: 1; }
.flex_access div.flex_access_map { order: 2; }
    .flex_access img {width: 100%;}
}
/*2カラム1カラム*/
.accessbox {margin: 30px 0;}
.accessbox p {padding-bottom: 15px;
padding-left: 1em;
    text-indent: -0.6em;}
.accessbox p.ac {font-size: 13px;
padding-bottom: 5px;}
.accessbox i {color: #00acc8;}
@media screen and (max-width:768px) {
    .accessbox {margin: 40px 0 20px;}
    .accessbox p.ac {font-size: 12px;
}
    }
/*アクセス*/
/*ご入居の方へお知らせ詳細*/
section.info_details {}
    section.info_details h2 {
    font-weight: 900;
     color:#00acc8;
    font-size: 30px; 
    line-height: 1.2em;
letter-spacing: 2px;
padding-bottom: 40px;
}
section.info_details h2::before{
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 160px;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
section.info_details h2 {
     font-size: 16px; 
    line-height: 1.4em;
letter-spacing: 0px;
    margin: 0;
    padding-bottom: 10px;}
    section.info_details h2::before{
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 160px;
    margin-bottom: 10px;
}

}
.day {text-align: right; color:#00acc8; padding-bottom: 20px;}

.return {margin: 1% 0;}
.return a {border: 1px solid #f4f8f9;
    border-radius: 4px;
padding: 5px 20px;
color: #4d4d4d;
display: block;
    width: 300px;
    text-align: center;
    overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.2s linear;
    margin: 0 auto;
    background-color: #f4f8f9;
}
.return a span {
    position: relative;
  display: inline-block;
  padding-left: 20px;
}
.return a span::before{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #4d4d4d;
  border-left: solid 2px #4d4d4d;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
}
.return a::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 0.2s linear;
}
.return a:hover {
  color: #fff;
}
.return a:hover::after {
  left: 0;
  background-color: #87d2e7;
}
@media screen and (max-width: 768px) {
.return a {border: 1px solid #f4f8f9;
    border-radius: 4px;
padding: 3px 20px;
color: #4d4d4d;
display: block;
    width: 100%;
    text-align: center;
    overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.2s linear;
    margin-left: auto;
}

}
/*2カラム1カラム*/
.flex_details {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items:center;
    margin: 2% 0;
}
 
.flex_details .flex_details_in {
  width: 31%;
  margin: 1%;
}
.flex_details .flex_details_in img {
  width: 100%;
}
@media screen and (max-width:768px) {
.flex_details .flex_details_in {
  width: 98%;
  margin: 2% 1%;
}
}
/*2カラム1カラム*/

/*ご入居の方へお知らせ詳細*/
/*ご入居の方へお知らせ一覧*/
section.noticelist {}

.noticelist h2 {
     font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
        color: #00acc8;
    font-size: 40px; 
    line-height: 35px;
letter-spacing: 2px;
padding-bottom: 20px;
}
.noticelist h2::before{
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 80px;
    margin-bottom: 20px;
}
.noticelist h2 span {
    font-size: 16px; 
    font-weight: 500;
}

@media screen and (max-width: 768px) {
.noticelist h2 {
     font-size: 18px; 
    line-height: 25px;
letter-spacing: 0px;
    padding-bottom: 10px;}
.noticelist h2::before{
    margin-bottom: 10px;
}
.noticelist h2 span {
    font-size: 13px; 
    }
}


.noticelist_box {
height: 200px;
    overflow: hidden;
}


.noticelist .topics dl {
padding: 10px 0;
/*border-bottom: 1px dotted #87d2e7; */

}

.noticelist .topics dt {
padding-bottom: 1px;
        color: #4d4d4d; 
}
.noticelist .topics dd {
display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
        color: #4d4d4d; 
}
/*.noticelist .topics dd::after{
content: "";
  position: absolute;
  bottom: -14px;
  right: -17px;
  border-top: 14px solid #5bc0de;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}*/
.noticelist .topics dd a {
    text-decoration: none;
   border-bottom: 1px dotted #87d2e7; 
   padding-bottom: 3px;
color: #4d4d4d;}
@media screen and (min-width: 768px) {
.noticelist .topics dt {
clear: left;
float: left;
width: 20%;
    
}
.noticelist .topics dd {

}
}
@media screen and (max-width: 768px) {
    .noticelist .topics dd a {
    text-decoration: none;
   border-bottom: 1px dotted #87d2e7; 
   padding-bottom: 3px;}
}
/*ご入居の方へお知らせ一覧*/

/*はじめようインターネット*/
section.starnet {}

.starnet h2 {
    font-weight: 900;
     color:#00acc8;
    font-size: 38px; 
    line-height: 0.8em;
letter-spacing: 2px;
padding-bottom: 40px;
    text-transform: capitalize;
    line-height: 1.5em;
}
.starnet h2::before{
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 100px;
    margin-bottom: 20px;
}
.starnet h2 span {
    font-size: 21px; 
    font-weight: 400;
    letter-spacing: 2px;
    display: block;
}
.starnet p {
    line-height: 1.6em;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
.starnet h2 {
     font-size: 19px; 
    line-height: 1.6em;
letter-spacing: 0px;}
.starnet h2::before{
    margin-bottom: 20px;
}
.starnet h2 span {
    font-size: 14px; 
    line-height: 1.6em;
    }
    .starnet p {
    line-height: 1.6em;
    letter-spacing: 0px;
        text-align: left;
}
}

.starnet h4 {
    font-weight: 900;
    font-size: 33px; 
letter-spacing: 2px;
padding-bottom: 30px;
    text-transform: capitalize;
    line-height: 1.8em;
}
@media screen and (max-width: 768px) {
    .starnet h4 {
    font-weight: 900;
    font-size: 20px; 
    line-height: 0.8em;
letter-spacing: 2px;
padding-bottom: 20px;
    text-transform: capitalize;
    line-height: 1.5em;
}
}
/*2カラム1カラム*/
.flex_starnet21 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;
      margin: 2% 0;
}
 
.flex_starnet21 .flex_starnet21_in {
  width: 50%;
    margin: 0%
}
.flex_starnet21 .flex_starnet21_in img {
  width: 100%;

}
.flex_starnet21 .flex_starnet21_in:first-child {
    padding: 0 0 0 6%;
}
.flex_starnet21 .flex_starnet21_in:last-child {
    padding: 0 0 0 6%;
}
@media screen and (max-width: 768px) {
    .flex_starnet21 {
      margin: 4% 0;
}
.flex_starnet21 .flex_starnet21_in {
  width: 96%;
    margin: 2%
}
    .flex_starnet21 .flex_starnet21_in img {
  width: 60%;

}
}
/*2カラム1カラム*/
/*2カラム1カラム*/
.flex_21 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
justify-content: center;
      margin: 2% 0;
}
 
.flex_21 .flex_21_in {
  width: 46%;
    margin: 2%
}
.flex_21 .flex_21_in img {
  width: 100%;
    

}

@media screen and (max-width: 768px) {
    .flex_21 {
      margin: 4% 0;
}
.flex_21 .flex_21_in {
  width: 96%;
    margin: 2%
}
    .flex_21 .flex_21_in img {
  width: 80%;
}
}
/*2カラム1カラム*/
/*2カラム1カラム*/
.flex_kaisen {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
justify-content: center;
      margin: 10px 0;
}
 
.flex_kaisen .flex_kaisen_in {
  width: 48%;
    margin: 1%;
border: solid 2px #87d2e7;
padding: 20px;
}
.flex_kaisen .flex_kaisen_in:first-child {
    margin-right: 1%;
}
.flex_kaisen .flex_kaisen_in:last-child {
    margin-left: 1%; 
}
.flex_kaisen .flex_kaisen_in img {
  width: 98%;
    margin: 4% 1%;
}
.flex_kaisen .flex_kaisen_in p {}
@media screen and (max-width: 768px) {
.flex_kaisen {
      margin: 4% 0;
}
.flex_kaisen .flex_kaisen_in {
  width: 98%;
    margin: 1%
        
}
    .flex_kaisen .flex_kaisen_in:first-child {
    margin-right: 1%;
}
.flex_kaisen .flex_kaisen_in:last-child {
    margin-left: 1%; 
}
.flex_kaisen .flex_kaisen_in img {
  width: 80%;
}
}
/*2カラム1カラム*/
/*3カラム1カラム*/
.flex_31 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;
      margin: 2% 0;
}
 
.flex_31 .flex_31_in {
  width: 31%;
    margin: 1%
}
/*3カラム1カラム*/
/*pararax*/
.starnet_pararax {
  padding: 0px 0;
  width: 100%;
}
.starnet_spimg {display: none;} 

@media screen and (max-width: 768px) {
 .starnet_pararax {
  display: none;
}
.starnet_spimg {display: block; text-align: center; margin: 4% 0;} 
.starnet_spimg img {width: 80%;} 

}
.starnet .item {
  margin: 0px 0;
}

.starnet .item-inner {
  border-radius: 20%;
}


.starnet_pararax .item-inner.-right {
  margin: 0 0 0 auto;
}
.starnet_para_img01 img {width: 100%;
}
.flex_21 .flex_21_in .starnet_para_img01 img {
  width: 100%;

}
/*pararax*/
/*見出し*/
.starnet h3.side-line {
	font-size: 1rem;
	text-align: center;
	font-weight: normal;
	line-height: 1.4;
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center; /*PC-Safari,iOS8.4*/
	justify-content:flex-start;
    margin-bottom: 1.5em;

}
.starnet h3.side-line:before {
	content: "";
	display: inline-block;
	width: 80px;
	height: 50px;
	background: url("../img/startnet/ttlbkimg02_l.png") 0 0 no-repeat;
	background-size: contain;
}
.starnet h3.side-line:after {
	content: "";
	display: inline-block;
	width: 27px;
	height: 50px;
	background: url("../img/startnet/ttlbkimg02_r.png") 0 0 no-repeat;
	background-size: contain;
}
.starnet h3.side-line div {
	display: block;
	font-size: 1.2em;
    padding: 0 20px;
    color: #47add1;
    font-weight: 700;
    text-align: center;
    
}

@media screen and (max-width: 790px) {
.starnet h3.side-line div {
	display: block;
	font-size: 11px;
    padding: 0 5px;
    color: #47add1;
    font-weight: 300;
    text-align: center;
    
}
    .starnet h3.side-line:before {
	width: 60px;
	height: 30px;
}
.starnet h3.side-line:after {
	width: 17px;
	height: 30px;
}
    
}
.img_sdw {box-shadow:13px 17px 28px 4px rgba(0,0,0, 0.2);}


.img100 img {width: 100%; margin: 0;}
.img90 img {width: 90%; margin: 0;}
.img80 img {width: 80%; margin: 2% 0;}
.img70 img {width: 70%; margin: 2% 0;}

.img60 img {width: 40%; margin: 2% 0;}
.img_logoimg200 {width: 200px; }
.img_logoimg100 {width: 80px; }
@media screen and (max-width: 768px) {
    .connection_box {width: 100%;}
    .img100 img {width: 100%;}
    .img90 img {width: 100%;}
.img80 img {width: 100%;}
.img70 img {width: 100%; margin: 2% 0;}

.img60 img {width: 80%;}
    .img_logoimg200 {width: 120px; }
.img_logoimg100 {width: 50px; }
}






.catch2 {
    font-weight: 900;
    font-size: 26px !important;
    line-height: 1.8em;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin: 2% 0;
}
.catch2 span {font-size: 25px;}
@media screen and (max-width:768px) {
    .catch2 {
    font-weight: 900;
    font-size: 18px;
    line-height: 1.5em;
    letter-spacing: 2px;
    padding-bottom: 0px;
    text-transform: capitalize;
}
    .catch2 span {font-size: 15px;}
}
.catch4 {
    font-weight: 900;
    font-size: 23px;
    line-height: 1.8em;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin: 1% 0;
}
.catch5 {
    font-weight: 900;
font-size: 23px !important;
    line-height: 1.6em;
    color: #00acc8;
    margin: 2% 0;
}
.catch6 {
    font-weight: 900;
    font-size: 30px;
    line-height: 1.6em;
    color: #00acc8;
    margin: 1% 0;
}
.catch7 {
    font-weight: 900;
    font-size: 20px;
    line-height: 1.6em;
    color: #00acc8;
}
@media screen and (max-width:768px) {
    .catch4 {
    font-weight: 900;
    font-size: 14px;
    line-height: 1.6em;
    letter-spacing: 2px;
    padding-bottom: 20px;
    text-transform: capitalize;
        letter-spacing: 1px;
}
    .catch5 {
    font-size: 14px;

}
    .catch6 {
    font-size: 16px;
        margin: 2% 0;
}
    .catch7 {
    font-size: 14px;
}
}
/*3カラム1カラム*/
.flex_31 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
justify-content: center;
      margin: 2% 0;
}
 
.flex_31 .flex_31_in {
  width: 31%;
    margin: 1%;
        border:solid 2px #e7f5f7;
    background-color: #FFF; 
}
.flex_31 .flex_31_in p {color: #47add1; padding: 3px; text-align: center; font-weight: 600; }
/*3カラム1カラム*/
/*3カラム1カラム*/
.flex_31mizu {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
justify-content: center;
      margin: 2% 0;
}
 
.flex_31mizu .flex_31mizu_in {
  width: 31%;
    margin: 1%;
    
}
.flex_31mizu .flex_31mizu_in span {
        border:solid 2px #87d2e7;
    background-color: #87d2e7;
    display: block;
    color: #FFF;
    font-weight: 700;
    text-align: center;
}
.flex_31mizu .flex_31mizu_in p { }
/*3カラム1カラム*/
/*見出し*/
.starnet h5.side-line {
	font-size: 1rem;
	text-align: center;
	font-weight: normal;
	line-height: 1.4;
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center; /*PC-Safari,iOS8.4*/
	justify-content: center;
    margin-bottom: 1.5em;

}
.starnet h5.side-line.side-linepc:before {
	content: "";
	display: inline-block;
    background: url("../img/startnet/ic_pc.png") 0 0 no-repeat;
	width: 60px;
	height: 60px;
	background-size: contain;
}
.starnet h5.side-line.side-linemobile:before {
	content: "";
	display: inline-block;
    background: url("../img/startnet/ic_mobile.png") 0 0 no-repeat;
	width: 40px;
	height: 60px;
	background-size: contain;
}
.starnet h5.side-line div {
	display: block;
	font-size: 1.6em;
    padding: 0 10px;
    color: #47add1;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.1em;
    
}

@media screen and (max-width: 790px) {
.starnet h5.side-line div {
	font-size: 14px;
}
    .starnet h5.side-line:before {
	width: 120px;
	height: 60px;
}

    
}
/*あなたはどのタイプ？*/
/*3カラム1カラム*/
.flex_type {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
justify-content: center;
      margin: 0 0;
}
 
.flex_type .flex_type_in {
  width: 31%;
    margin: 1%;
/*border: solid 2px #87d2e7;
padding: 20px;*/
}
.flex_type .flex_type_in p {
    line-height: 1.8em;
}
.flex_type .flex_type_in img {
  width: 100%;
}
.flex_type .flex_type_in .ic {
    text-align: center;
}
.flex_type .flex_type_in .ic img {  
    width: 130px;
    margin: 10px 0;
}
.img_size_object-fit img {width: 100%;
    height: 300px;
     object-fit: cover;}
@media screen and (max-width: 768px) {
.flex_type {
      margin: 4% 0;
}
.flex_type .flex_type_in {
  width: 98%;
    margin: 1%
        
}
    .flex_type .flex_type_in img {
  width: 100%;

}
.flex_type .flex_type_in .ic img {  
    width: 80px;
}
    .img_size_object-fit img {width: 100%;
    height: 150px;
     object-fit: cover;}
}
.icon-inner{
  width:100%;
  height:60px;
  display:inline-block;
    display: flex;
  justify-content: center;
  align-items: center;
    margin: 2% 0;
}
.arrow-down.icon {
  color: #87d2e7;
  position: absolute;
  margin-top: 2px;
  width: 5px;
  height: 50px;
  background-color: currentColor;
}

.arrow-down.icon:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 23px;
  width: 20px;
  height: 20px;
  border-top: solid 5px currentColor;
  border-right: solid 5px currentColor;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.icon-inner2{
  width:100%;
  height:60px;
  display:inline-block;
    display: flex;
  justify-content: center;
  align-items: center;
    margin: 2% 0;
}
.arrow-down2.icon {
  color: #87d2e7;
  position: absolute;
  margin-top: 2px;
  width: 8px;
  height: 60px;
  background-color: currentColor;
}

.arrow-down2.icon:before {
  content: '';
  position: absolute;
  left: -20px;
  top: 8px;
  width: 40px;
  height: 40px;
  border-top: solid 8px currentColor;
  border-right: solid 8px currentColor;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.icon-inner3{
  width:100%;
  height:60px;
  display:inline-block;
    display: flex;
  justify-content: center;
  align-items: center;
    margin: 0;
}
.arrow-down3.icon {
  color: #87d2e7;
  position: absolute;
  margin-top: 2px;
  height: 60px;
  background-color: currentColor;
}

.arrow-down3.icon:before {
  content: '';
  position: absolute;
  left: -20px;
  top: -0px;
  width: 30px;
  height: 30px;
  border-top: solid 8px currentColor;
  border-right: solid 8px currentColor;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (max-width: 768px) {
    .icon-inner3{
  width:100%;
  height:30px;
  display:inline-block;
    display: flex;
  justify-content: center;
  align-items: center;
    margin: 2% 0;
}
.arrow-down3.icon {
  color: #87d2e7;
  position: absolute;
  margin-top: 2px;
  height: 30px;
  background-color: currentColor;
}

.arrow-down3.icon:before {
  content: '';
  position: absolute;
  left: -10px;
  top: -5px;
  width: 20px;
  height: 20px;
  border-top: solid 4px currentColor;
  border-right: solid 4px currentColor;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
    
}



/*3カラム1カラム*/

.ttl_mizu {background-color:#87d2e7;
padding: 8px 10px;
color: #FFF;
font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    
}
.ttl_mizu2 {background-color:#47add1;
padding: 12px 10px;
color: #FFF;
font-weight: 700;
    text-align: center;
    font-size: 18px;
    
}
@media screen and (max-width: 768px) {
    .ttl_mizu2 {
    font-size: 13px;
    
}
}
.type_txt {font-family: 'Bad Script', cursive;
color:#00acc8;
    font-size: 50px !important; 
line-height: 1em;
padding-bottom: 10px;}
@media screen and (max-width: 768px) {
    .type_txt {
    font-size: 30px !important; 
    padding-bottom: 10px;}
}
/*2カラム1カラム*/
.flex_osusume {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;
      margin: 2% 0;
    border: solid 2px #87d2e7;
    padding: 20px;
}
 
.flex_osusume .flex_osusume_in_txt {
  width: 70%;
    margin: 0%;
/*border: solid 2px #87d2e7;
padding: 20px;*/
}
.flex_osusume .flex_osusume_in_img {
  width: 30%;
    margin: 0%;
/*border: solid 2px #87d2e7;
padding: 20px;*/
}
.flex_osusume .flex_osusume_in_img img {
  width: 96%;
    margin: 2%;
}

@media screen and (max-width: 768px) {
.flex_osusume {
      margin: 4% 0;
}
.flex_osusume .flex_osusume_in_txt,.flex_osusume .flex_osusume_in_img {
  width: 98%;
    margin: 1%
}
}
.resp_img  {margin: 0 6%;}
.resp_img img {width: 100%;}

@media screen and (max-width: 768px) {
    .resp_img  {margin: 0%;}
}

.connection_box {width: 100%; margin-bottom: 6%;}
.connection_box img {/*width: 640px;*/ margin: 2% 0;}
@media screen and (max-width: 640px) {
    .connection_box {width: 100%; margin-bottom: 6%;}
.connection_box img {width: 100%; margin: 2% 0;}
}

.cntr_box p {text-align: center;}
.tel {font-size: 40px;
    padding: 0 20px 0;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Pathway Gothic One', sans-serif;
    line-height: 1em;}
.tel a:before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(../img/common/freedial_black.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 10px;}

/*はじめようインターネット*/
/*インターネットを接続しよう！*/
/*4カラム2カラム*/
.flex_btn42 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
justify-content: flex-start;
}
 
.flex_btn42 .flex_btn42_in {
  width: 14.6%;
    margin: 1%;

}

.flex_btn42 .flex_btn42_in a {display: block;
    background-color: #47add1;
padding: 8px 2px;
     text-align: center;
    border: solid 1px  #47add1;
   color: #FFF;
    font-weight: 700;
   font-size: 13px;
}

.flex_btn42 .flex_btn42_in a:hover {background-color: #FFF; color:#47add1;}
@media screen and (max-width: 1200px) {
.flex_btn42 .flex_btn42_in {
  width: 18%;
    margin: 1%

}
}
@media screen and (max-width: 900px) {
.flex_btn42 .flex_btn42_in {
  width: 23%;
    margin: 1%

}
}
@media screen and (max-width: 768px) {
.flex_btn42 {
      margin: 4% 0;
}
.flex_btn42 .flex_btn42_in {
  width: 46%;
    margin: 2%
        
}
    .flex_btn42 .flex_btn42_in a  {
        padding: 8px 4px;
        letter-spacing: 0;
    font-size: 11px;}

}
/*4カラム2カラム*/
 .tbl2 {
  border-collapse: collapse;
  margin: 10px auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

 .tbl2 tr {
  background-color: #fff;
  border: 1px solid #bbb;
  padding: .35em;
}
 .tbl2 th,
 .tbl2 td {
  padding: 1em 10px 1em 1em;
  border-right: 1px solid #bbb;
}
 .tbl2 th {
  font-size: .85em;
     background-color: #F4F4F4;
     font-weight: 700;
     text-align: left;
}
 .tbl2 thead tr{
  background-color: #eee;
}
@media screen and (max-width: 600px) {
 .tbl2 {
    border: 0;
    width:100%
  }
 .tbl2 th{
    background-color: #eee;
    display: block;
    border-right: none;
  }
 .tbl2 thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
 .tbl2 tr {
    display: block;
    margin-bottom: .625em;
  }
  
 .tbl2 td {
    border-bottom: 1px solid #bbb;
    display: block;
    font-size: .8em;
    text-align: left;
    position: relative;
    padding: .625em ;
    border-right: none;
  }
  
 .tbl2 td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
  }
  
 .tbl2 td:last-child {
    border-bottom: 0;
  }
}
.mb20_box {margin: 0 0 20px;}
.mb10_box {margin: 0 0 10px;}

/*インターネットを接続しよう！*/
/*WINDOWS 10　Wi-Fi接続方法*/
.waku_red {border:solid 1px #FF0004;
padding: 20px;}
/*WINDOWS 10　Wi-Fi接続方法*/
/*Wi-Fi AIR*/
/*メニュー*/
/**list-styleを指定する**/
ul{    
    list-style: none;
}

/** 見た目を整える **/

body,ul,li{
    margin:0px;
    padding:0px;
}
ul.dainimenu{
    list-style: none;
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    justify-content: flex-start;
    
}

.ttl_dainimenu { background-color: #47add1; padding: 2px 10px;  color:#FFF;  font-size: 13px; border-radius: 8px; width: 250px; text-align: center; }
@media screen and (max-width: 600px) {
    .ttl_dainimenu {
        display: block; background-color: #FFF;padding: 0px;
    color: #47add1;
    width: 100%;
    text-align: center;}
}
ul.dainimenu .btn a{    
    padding:0 10px;
/*    background-color: #47add1;
    border-radius: 5px;*/
    text-align: center;
    color: #47add1;
    border-right: solid 1px #47add1;
    display: block;
    font-weight: 700;
    margin: 10px 0;
    font-size: 13px;
}
ul.dainimenu .btn:last-child a {border-right: none;}
ul.dainimenu .btn a:hover {color: #87d2e7;}
@media screen and (max-width: 1120px) {
ul.dainimenu{
    display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: flex-start;
    
    height:auto;
    margin: 0%;
}
    ul.dainimenu .btn{ 
    
    
}
ul.dainimenu .btn a{ 
    
    padding:0 15px;
    display: block;
    margin: 5px 0;
    
}
}
@media screen and (max-width: 600px) {
ul.dainimenu{
    display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;
    
    height:auto;
    margin: 2% 2%;
}
    ul.dainimenu .btn{ 
    width: 50%;
    
}
ul.dainimenu .btn a{ 
    border-right: none;
    background-color: #47add1;
    border-radius: 5px;
    color: #FFF;
    padding:5px;
    margin:3px;
    display: block;
    font-weight: normal;
    font-size: 11px;
    letter-spacing: 0;
}
ul.dainimenu .btn a:hover {background-color: #87d2e7; color: #FFF;}
}
/*メニュー*/
/*4カラム2カラム*/
.flex_42 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
justify-content: center;
      margin: 2% 0;
}
 
.flex_42 .flex_42_in {
  width: 23%;
    margin: 1%;
}
.flex_42 .flex_42_in img { width: 100%;}
@media screen and (max-width: 600px) { 
.flex_42 .flex_42_in {
  width: 48%;
    margin: 1%;
       
}
}
/*4カラム2カラム*/
/*円グラフ*/
.chart {
  position: relative;
  display: inline-block;
  width: 110px;
  height: 110px;
  text-align: center;
}
.chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.percent {
        padding: 0px;
    margin: 0px;
  display: inline-block;
  line-height: 110px;
  z-index: 2;
    font-size: 30px;
}
.percent::after{
  content:'%';
}
/*円グラフ*/
.balloon1-left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 20px 40px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  background: #87D2E7;
    border-radius: 15px;
}

.balloon1-left:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #87D2E7;
}

.balloon1-left p {
  margin: 0;
  padding: 0;
}
.balloon1-left .txt {
    font-weight: 900;
    font-size: 35px;
    line-height: 1.4em;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin: 1% 0;
    color: #FFF;
    padding-bottom: 0px;
}
.balloon1-left p {color: #FFF;}
.balloon1-left span {color: #FFFD00; font-weight: bold; }
@media screen and (max-width: 678px) {
    .balloon1-left {
  margin: 1.5em 0 0 0;
        padding: 10px 20px;
}
.balloon1-left:before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  margin-left: -15px;
  border: 18px solid transparent;
  border-bottom: 18px solid #87D2E7;
  z-index: 2;
}
    .balloon1-left .catch2 {
    font-size: 18px;
}


}
.list01 li:before {
    content: "\f14a";
    position: relative;
    font-family: FontAwesome;
    margin-right: .5em;
    color: #87D2E7; /* 文字色 */
    font-size: 120%; /* フォントの大きさ */
}
.list04 li:before {
    content: "\f1eb";
    position: relative;
    font-family: FontAwesome;
    margin-right: .5em;
    color: #87D2E7; /* 文字色 */
    font-size: 120%; /* フォントの大きさ */
}
.chart_box {text-align: center; }
.flexphilosophybox div.flexphilosophybox_in .chart_box img {width: 200px;}
.chart_box p {text-align: center; padding-bottom: 20px; font-weight: 900;  }
.chart_box p.yes { font-weight: 900; font-size: 1.4em; color: #b4272d; font-family: 'Red Hat Display', sans-serif;}
.chart_box p.yes span {font-size: 2.5em;}
.chart_box p.no { font-weight: 900; font-size: 1.4em; color: #0071bc; font-family: 'Red Hat Display', sans-serif;}
.chart_box p.no span {font-size: 3em;}

.merit_box {position: relative;
margin: 40px 0;}

.number {font-size: 70px;
    font-family: 'Pathway Gothic One', sans-serif;
    color: #00acc8;
    margin: 0;
    line-height: 1em;
    display: block;
    padding-bottom: 20px;
font-weight: 900;
display: inline;
padding-right: 10px;
position: absolute;
top: 0;
left: 0;}
.merit span {
    color: #00acc8;
    font-weight: 900;
    font-size: 30px;
    display: inline;}
.merit  {
    padding-left: 60px;}

.service {color: #00acc8;
    font-weight: 900;
    font-size: 26px;}
.service:before {
  content: '';/*何も入れない*/
  display: block;/*忘れずに！*/
  width: 80px;/*画像の幅*/
  height: 80px;/*画像の高さ*/
  background-size: contain;
  vertical-align: middle;
}
.service01:before {
  background-image: url(../img/wifi_air/service01.png);
}
.service02:before {
  background-image: url(../img/wifi_air/service02.png);
}
.service03:before {
  background-image: url(../img/wifi_air/service03.png);
}
/*Q&A*/
.flex_qa {
  display: flex;
  flex-wrap: wrap;
  align-items:stretch;
justify-content: flex-start;
      margin: 3% 0;
}
 
.flex_qa .flex_qa_q {
  width: 28%;
    margin: 3% 1%;
    position: relative;
    padding-left: 80px;
    font-weight:700;
}
.flex_qa .flex_qa_q::before {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
	font-size: 5em;
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 9em;
	content: 'Q';
	opacity: 1;
        line-height: 1em;
}
.flex_qa .flex_qa_a {
  width: 68%;
    margin: 3% 1%;
    position: relative;
    padding-left: 90px;
    border-left: solid 1px #000;
}
.flex_qa .flex_qa_a::before {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
	font-size: 4em;
	position: absolute;
	top: 0;
	left: 20px;
	display: inline-block;
	width: 9em;
	content: 'A';
	opacity: 1;
    line-height: 1em;
    color: #47add1;
}

@media screen and (max-width: 600px) { 
.flex_qa .flex_qa_q,.flex_qa .flex_qa_a {
  width: 98%;
    margin: 3% 1%;
       
}
    .flex_qa .flex_qa_q::before,.flex_qa .flex_qa_a::before {

	font-size: 2em;
	
}
    .flex_qa .flex_qa_q {

    padding-left: 30px;

}
    .flex_qa .flex_qa_a {

    border-left: none;
        padding-left: 30px;
}
    .flex_qa .flex_qa_a::before {

	left:0;
	
    
}
}
.waku_hotel {
padding: 10px;
    margin: 0 0 3% ;
}
.waku_hotel p {
    text-align: right;line-height: 1.4em; margin: 0; }
/*Q&A*/
.daihyo {text-align: right;
    font-size: 120%;
    font-weight: 700;
    padding-bottom: 7px;
}
.ttl03 {border-bottom: dotted 1px #47add1;}
/*Wi-Fii AIR*/
/*企画書作成代行*/
/*2カラム1カラム*/
.flex_btn21 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
justify-content: flex-start;
}
 
.flex_btn21 .flex_btn21_in {
  width: 48%;
    margin: 1%;

}

.flex_btn21 .flex_btn21_in a {display: block;
    background-color: #FFF;
padding: 15px 40px;
     text-align: left;
    border: solid 1px  #47add1;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    color:  #47add1;
}
.flex_btn21 .flex_btn21_in a::after{
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px #47add1;
  border-right: solid 2px #47add1;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
}
.flex_btn21 .flex_btn21_in a:hover {background-color: #47add1; color:#FFF;}
.flex_btn21 .flex_btn21_in a:hover::after{
    border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}


@media screen and (max-width: 768px) {
.flex_btn21 {
      margin: 4% 0;
}
.flex_btn21 .flex_btn21_in {
  width: 98%;
    margin: 1%
        
}
    .flex_btn21 .flex_btn21_in a  {
        padding: 8px 4px;
        letter-spacing: 0;
    font-size: 11px;}

}
/*2カラム1カラム*/
.tbl-rsp2 {
    width: 100%;
    border-top: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    overflow: hidden;
    word-break: break-all;
    word-wrap: break-word;
    margin: 2% 0;
}
.tbl-rsp2 th {
    padding: 5px;
    border-left: solid 1px #cccccc;
    border-bottom: solid 1px #cccccc;
    border-right: 1px solid #cccccc;
    overflow: hidden;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    text-align: center;
    word-break: break-all;
    word-wrap: break-word;
    vertical-align: top;
    background-color: #F4F4F4;
}
.tbl-rsp2 td {
    padding: 5px;
    text-align: left;
    vertical-align: top;
    border-left: solid 1px #cccccc;
    border-bottom: solid 1px #cccccc;
    border-right: 1px solid #cccccc;
    overflow: hidden;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #FFF;
}
.price {color: #D70000;
font-weight: 700;}
.inq_ttl {text-align: center;
font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    color: #00acc8;
    font-size: 35px;
    line-height: 1.2em;
    letter-spacing: 2px;
    padding-bottom: 40px;
    text-transform: capitalize;}
.inq_ttl span {display: block;
    font-size: 14px;
    font-weight:normal;
text-align: center;
color: #4d4d4d;
padding-top: 10px;}
.inquiry_box {display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;}
.inquiry_btn {padding: 0 3%;}
.inquiry_btn a {
    background: #47add1;
    color: #FFF;
    padding: 5px 60px;
    border: solid 2px #47add1;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    text-decoration: none;
}
@media screen and (max-width: 768px) {
    .inq_ttl{font-size: 18px; padding-bottom: 10px;}
    .inq_ttl span{font-size: 11px; letter-spacing: 0;}
    .inquiry_btn {margin: 3% 0;}
    .inquiry_btn a {
    padding: 5px 40px;
    font-size: 13px;
}
}
.inquiry_btn a:hover {background: #FFF;
    color: #47add1;}
/*企画書作成代行*/


@media screen and (max-width: 768px) {
 
}
.imgheight img {
  height: 160px;
  object-fit: cover; /* この一行を追加するだけ！ */
}
@media screen and (max-width: 768px) {
  .imgheight img {
  height: 150px;
  object-fit: cover; /* この一行を追加するだけ！ */
}  
}
.waku_31 {
margin: 20px 0 20px;
padding: 0px;
}

.fa-chevron-right:before {
    content: "\f054";
}
.waku_31_ttl {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.8em;
    
    color: #00acc8;
    display: block;
    background-color: rgba(255,255,255,0.7);
    padding: 5px 10px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .waku_31 {
margin: 10px 0 10px;
padding: 0px;}

.waku_31_ttl {
    font-size: 14px;
    
}}
.waku_mizu {background-color: #f4f8f9;
margin: 20px 0 20px;
padding: 10px;}
.waku_mizu:nth-child(odd){
	background: #e7f5f7;
}
@media screen and (max-width: 768px) {
    .waku_mizu {
margin: 10px 0 10px;
padding: 10px;}
}

.waku_mizu2 {
margin: 20px;
padding: 20px;
background-color:rgba(71,173,209,0.1);}
.waku_kuro {
margin: 10px;
padding: 20px;
background-color: rgba(0, 0, 0, .1);}

.type_txt_circle {
    display: inline-block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #FFF;
  text-align:center;
  line-height: 140px;
    font-family: 'Bad Script', cursive;
color:#00acc8;
    font-size:30px; 
}
.type_txt_circle span {font-size: 50px; padding-left: 8px; line-height: 1em; }
@media screen and (max-width: 768px) {
.type_txt_circle {
    display: inline-block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #FFF;
  text-align:center;
  line-height: 90px;
    font-family: 'Bad Script', cursive;
color:#00acc8;
    font-size: 30px; 
}
}
.type_txt_circle2 {
    display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #00acc8;
  text-align:center;
  line-height: 100px;
    font-family: 'Bad Script', cursive;
color:#FFF;
    font-size:25px; 
}
.type_txt_circle2 span {font-size: 30px; padding-left: 8px; line-height: 1em; }
@media screen and (max-width: 768px) {
.type_txt_circle2 {
  width: 60px;
  height: 60px;
  line-height: 60px;
    font-size: 20px; 
}
}
/*3カラム1カラム*/
.flex_flow {display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content:space-around;
}
.flex_flow_in_number {
  width: 14%;
    margin: 1%;
}
.flex_flow_in_txt {
  width: 62%;
    margin: 1%;
}
.flex_flow_in_img {
  width: 18%;
    margin: 1%;
}
.flex_flow_in_img img {width: 100%;}
@media screen and (max-width: 1000px) {
    .flex_flow_in_number {
  width: 18%;
    margin: 1%;
}
.flex_flow_in_txt {
  width: 48%;
    margin: 1%;
}
}
@media screen and (max-width: 768px) {
    .flex_flow_in_number,.flex_flow_in_txt,.flex_flow_in_img {
        width: 98%;
        margin: 1%;
    }
}
/*3カラム1カラム*/
/*3カラム1カラム*/
.flex_flow2 {display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content:space-around;
    border-bottom: dotted 1px #00acc8;
}
.flex_flow2_in_number {
  width: 10%;
    margin: 1%;
}
.flex_flow2_in_txt {
  width: 86%;
    margin: 1%;
}

@media screen and (max-width: 1000px) {
.flex_flow2_in_number {
  width: 13%;
    margin: 1%;
}
.flex_flow2_in_txt {
  width: 83%;
    margin: 1%;
}
}
@media screen and (max-width: 768px) {

}
/*3カラム1カラム*/
.ttl04 {
    font-weight: 900;
    font-size: 30px; 
    line-height: 1.2em;
letter-spacing: 2px;
    text-transform:capitalize;
    letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
    .ttl04 {
    font-size: 17px; 
}
}

/*2カラム1カラム*/
.flex21 {
  display: flex;
  flex-wrap: wrap;

      margin: 2% 0;
}
 
.flex21 .flex21_in {
  width: 47%;
    margin: 1%;
}


.flex21 .flex21_in img {width: 100%; }

@media screen and (max-width: 768px) {
    .flex21 .flex21_in {
  width: 98%;
    margin: 0%;
}
}
/*3カラム1カラム*/


/*3カラム1カラム*/
.flex31 {
  display: flex;
  flex-wrap: wrap;

      margin: 2% 0;
}
 
.flex31 .flex31_in {
  width: 31%;
    margin: 1%;
}


.flex31 .flex31_in img {width: 100%; }

@media screen and (max-width: 768px) {
    .flex31 .flex31_in {
  width: 98%;
    margin: 0%;
}
}
/*3カラム1カラム*/


/*4カラム1カラム*/
.flex41 {
  display: flex;
  flex-wrap: wrap;

      margin: 2% 0;
}
 
.flex41 .flex41_in {
  width: 23%;
    margin: 1%;
}


.flex41 .flex41_in img {width: 100%; }

@media screen and (max-width: 991px) {
.flex41 .flex41_in  {
  width: 98%;
    margin: 0%;
	margin-bottom: 30px;
}
}
/*4カラム1カラム*/



/*資金調達サポート*/
/*採用情報*/
/*3カラム1カラム*/
.flex_int {display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content:center;
}
.flex_int_in {
  width: 31%;
    margin: 1%;
}
.flex_int_in img {width: 100%;}
@media screen and (max-width: 1000px) {
.flex_int_in {
  width: 98%;
    margin: 1%;
}
}
section.recruitment h2 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
     color:#00acc8;
    font-size: 35px; 
    line-height: 1.8em;
letter-spacing: 2px;
padding-bottom: 40px;
    text-transform:capitalize;
}
section.recruitment h2::before{
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 120px;
    margin-bottom: 20px;
}
section.recruitment h2 span {
    display: block;
    font-size: 20px; 
    font-weight: 600;
    text-transform:capitalize;
}
@media screen and (max-width: 768px) {
section.recruitment h2 {
     font-size: 21px; 
    line-height: 1.2em;
letter-spacing: 0px;
    padding-bottom: 20px;}
section.recruitment h2::before{
    content: '';
    display: block;
    background: #00acc8;
    height: 2px;
    width: 80px;
    margin-bottom: 10px;
}
section.recruitment h2 span {
    font-size: 12px; 
    }
}


/*インタビュー*/
.int_blue_midashi {background-color: #f4f8f9;

}
.catch_int {padding-top: 150px;
color: #00acc8;
font-size: 30px;
font-weight: 900;}
.int_blue_midashi_img {
background-position: right 0px top 0px;
background-size: contain;
    
background-repeat: no-repeat;
    height: 500px;
}
.int_blue_midashi_img_watanabe {background-image: url(../img/recruitment/watanabe.png);}
.int_blue_midashi_img_shiga {background-image: url(../img/recruitment/siga.png);}
.int_blue_midashi_img_kaneko {background-image: url(../img/recruitment/kaneko.png);}
.int_blue_midashi_img_callcenter {background-image: url(../img/starnet/callcenter.png);}
@media screen and (max-width: 768px) {

    .catch_int {padding-top: 20px;
font-size: 16px;
font-weight: 700;}
    .int_blue_midashi_img {
background-position: right 0px top 60px;
background-size: contain;
    
background-repeat: no-repeat;
    height: 300px;
}
   
}
.int_blue {background-color: #87D2E7;}
.int_blue p {color: #FFF; line-height: 1.6em; }
.interview {
    width: 1200px;
    padding: 4%;
    margin: 0 auto;
}
@media screen and (max-width: 1200px) {
    .interview {
    width: 100%;
        padding: 4%;
}
}

.int_blue h2 {font-size: 14px; font-weight: 600; color: #FFF; border: #FFF 3px solid; display: inline-block; padding: 5px 20px; border-radius: 20px; line-height: 1em;}
.int_blue h3 {font-size: 36px; font-weight: 600; color: #FFF; letter-spacing: 3px; line-height: 1em; padding-bottom: 20px;　}
@media screen and (max-width:590px) {
.interview img {
    width: 140px;
}
.int_blue h2 {font-size: 11px; font-weight: 600; color: #FFF; border: #FFF 2px solid; display: inline-block; padding: 3px 10px; border-radius: 20px; line-height: 1em;}
.int_blue h3 {font-size: 20px; font-weight: 600; color: #FFF; letter-spacing: 3px; line-height: 1em; padding-bottom: 10px;　}
}
/*2カラム1カラムスタッフインタビュー写真*/
.flex_interview_img {
  display: flex;
  flex-wrap: wrap;
    justify-content: center; /* 子要素をflexboxにより中央に配置する */
    align-items: center;  /* 子要素をflexboxにより中央に配置する */
}
 .flex_interview_img div.flex_interview_img_in_txt {
  width: 58%;
  margin: 1%;
}
.flex_interview_img div.flex_interview_img_in_img {
  width: 38%;
  margin: 1%;
}

@media screen and (max-width:768px) { 
.flex_interview_img div.flex_interview_img_in_txt,.flex_interview_img div.flex_interview_img_in_img {
  width: 98%;
  margin: 1%;
}
    .flex_interview_img div.flex_interview_img_in_img img {width: 100%;}
    .flex_interview div.flex_interview_in:last-child {border-left: none; padding-left: 0px;}
}
/*2カラム1カラムスタッフインタビュー写真*/

/*2カラム1カラムスタッフインタビュー*/
.flex_interview {
  display: flex;
  flex-wrap: wrap;
    justify-content: center; /* 子要素をflexboxにより中央に配置する */
    align-items: center;  /* 子要素をflexboxにより中央に配置する */
}
 
.flex_interview div.flex_interview_in {
  width: 46%;
  margin: 2%;
}

@media screen and (max-width:590px) { 
.flex_interview div.flex_interview_in {
  width: 92%;
  margin: 4% 4%;
}
    .flex_interview div.flex_interview_in:last-child {border-left: none; padding-left: 0px;}
}
/*2カラム1カラムスタッフインタビュー*/
/*2カラム1カラムスタッフインタビュー中身*/
.flex_int {
  display: flex;
  flex-wrap: wrap;
    justify-content: center; /* 子要素をflexboxにより中央に配置する */
    align-items: stretch;  /* 子要素をflexboxにより中央に配置する */
    margin-bottom: 60px;
}
 
.flex_int div.flex_int_in {
  width: 48%;
  margin: 1%;
}
.flex_int div.flex_int_in img {
    object-fit: cover;
    width: 100%;
    height: 400px;}
.flex_int div.flex_int_in:last-child {border-left: solid 1px #383838; padding-left: 4%;}

@media screen and (max-width:590px) { 
.flex_int div.flex_int_in {
  width: 92%;
  margin: 2% 4%;
}
    .flex_int div.flex_int_in img {
    object-fit: cover;
    width: 100%;
    height: 300px;}
.flex_int div.flex_int_in:last-child {border-left: none; padding-left: 0px;}
}
/*2カラム1カラムスタッフインタビュー中身*/
.interview h4 {
    font-size: 20px;
    line-height: 1.6em;
    padding-bottom: 20px;
    font-weight: bold;
    -webkit-transform: rotate(0.028deg);
    -moz-transform: rotate(0.028deg);
    -ms-transform: rotate(0.028deg);
    -o-transform: rotate(0.028deg);
    transform: rotate(0.028deg);
text-indent: -2.7em;
padding-left: 3em;}
.interview h4 span {color: #00acc8; font-size: 160%; font-family: 'Bad Script', cursive; padding-right: 10px;}
@media screen and (max-width:590px) { 
    .interview h4 {font-size: 13px;}
}
/*5カラム2カラムスタッフインタビュー写真*/
.flex_52 {
  display: flex;
  flex-wrap: wrap;
    justify-content: center; /* 子要素をflexboxにより中央に配置する */
    align-items: stretch;  /* 子要素をflexboxにより中央に配置する */
    margin-bottom: 60px;
}
 
.flex_52 div.flex_52_in {
  width: 23%;
  margin: 1%;
}
.flex_52 div.flex_52_in img {
    width: 100%; padding: 0;
    object-fit: cover;
    width: 100%;
    height: 290px;
}


@media screen and (max-width:590px) { 
.flex_52 div.flex_52_in {
  width: 48%;
  margin: 1%;
}
}
/*インタビュー*/
.tbl03 { width: 100%; margin: 20px 0; }
.tate {
    -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;

}
.tbl03 th, .tbl03 td  { padding: 10px; }

.tbl03 th  { width: 20px; text-align: center; color: #FFF; font-weight: 900; letter-spacing: 0.1em; }
 .tbl03 th, .tbl03 td  { padding: 20px;  }

@media only screen and (max-width:480px){
    .tate {
    -ms-writing-mode: lr-tb;
  writing-mode: lr-tb;

}
     .tbl03 th, .tbl03 td  { padding: 10px;  }
    .tbl03 th,
    .tbl03 td{
    width: 100%;
    display: block;
    border-top: none;
    }
  .tbl03 tr:first-child th {  }
}
.ttl05 {font-weight: 700; 
    font-size: 110%; 
    margin: 10px 0 10px;　
    display: inline-block;
    border-bottom: dotted 1px #4d4d4d;
    }

.inquiry_btn2 {padding: 10px 0;}
.inquiry_btn2 a {
    background: #47add1;
    color: #FFF;
    padding: 3px 60px;
    border: solid 2px #47add1;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    text-decoration: none;
}
@media screen and (max-width: 768px) {

    .inquiry_btn2 {margin: 3% 0;}
    .inquiry_btn2 a {
    padding: 5px 40px;
    font-size: 13px;
}
}
.inquiry_btn2 a:hover {background: #FFF;
    color: #47add1;}


.tbl04 {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.tbl04 tr {
  background-color: #fff;
  border: 1px solid #F4F4F4;
  padding: .35em;
}
.tbl04 th,
.tbl04 td {
  padding: 1.5em;
  border-right: 1px solid #F4F4F4;
}
.tbl04 th {
  font-size: .85em;
    background: #87d2e7;
    color: #FFF;
    width: 20%;
    font-weight: 900;
}
.tbl04 thead tr{

}
@media screen and (max-width: 600px) {
.tbl04 {
    border: 0;
    width:100%
  }
    .tbl04 th,
.tbl04 td {
  padding: 1em;
}
.tbl04 th{
width: 100%;
    display: block;
    border-right: none;
  }
.tbl04 thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
.tbl04 tr {
    display: block;
    margin-bottom: .625em;
  }
  
.tbl04 td {
    border-bottom: 1px solid #F4F4F4;
    display: block;
    font-size: .8em;
    text-align: left;
    position: relative;
    padding: .625em ;
    border-right: none;
  }
  
.tbl04 td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
  }
  
.tbl04 td:last-child {
    border-bottom: 0;
  }
}
/*採用情報*/
/*宅配ボックス*/
/*4カラム2カラム*/
.flex_ic42 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
justify-content: center;

   
}
 
.flex_ic42 .flex_ic42_in {
    width:  180px;
    margin: 10px;
}
.flex_ic42 .flex_ic42_in img { width: 100%;}
.flex_ic42 .flex_ic42_in p {text-align: center; font-weight: 900; color: #00acc8; padding: 2% 0;}
@media screen and (max-width: 600px) { 
.flex_ic42 .flex_ic42_in {
  width: 48%;
    margin: 1%;
       
}
    .flex_ic42 .flex_ic42_in img { width: 92%; margin: 4%;}
}
/*4カラム2カラム*/
.width_pad {width: 100%;
padding: 0 2%;}
/*流れ*/
.strt,.en {display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: flex-start;}
.strt .strtttl {font-size: 1.6em; display: inline; color: #87d2e7; font-weight: 900; }
.strt .sircle {
      width: 6em;
  height: 6em;
  text-align: center;
  line-height: 6em;
  border-radius: 3em;
  background: #87d2e7;
  display: inline-block;
  color: white;
  position: relative;
    font-size: 1.3em;
    font-weight: 900;
    margin: 0 1em;

}
 .ensen .en .enttl {font-size: 1.4em; display: inline; color: #00acc8; font-weight: 900;}
.ensen .en .sircle {
  width: 5em;
  height: 5em;
  text-align: center;
  line-height: 5em;
  border-radius: 2.5em;
  background: #00acc8;
  margin: 0 1em 0 2.6em;
  display: inline-block;
  color: white;
  position: relative;
    font-size: 1em;
    font-weight: 900;
}
    .ensen .sen {
    border-left: 2px solid #87d2e7;
    margin: 0 0 0 5em;
    padding: 1.8em 0 1.8em 3.2em;
}

.entxt {display: inline-block;}
@media screen and (max-width: 600px) {
.strt,.en {display: block;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;
    text-align: center;}


.strt .sircle {
      width: 5em;
  height: 5em;
  text-align: center;
  line-height: 5em;
  border-radius: 2.5em;
  background: #87d2e7;
  display: inline-block;
  color: white;
  position: relative;
    font-size: 1em;
    font-weight: 900;

}
    .ensen .en .sircle {
  width: 3em;
  height: 3em;
  text-align: center;
  line-height: 3em;
  border-radius: 1.5em;
  background: #00acc8;
  margin: 0 1em 0 1em;
  display: inline-block;
  color: white;
  position: relative;
    font-size: 1em;
    font-weight: 900;
}
        .ensen .sen {
    border-left: 2px solid #87d2e7;
    margin: 1em 50%;
    padding: 1.5em;

}
}




.active {
  background: green;
}

.active ~ li {
  background:green;
}

.active ~ li::before {
  background: green;
}
/*流れ*/
.cntrimg {text-align: center; margin: 0 auto; }
.cntrimg img {width: 600px; }
@media screen and (max-width: 600px) {.cntrimg img {width: 100%; } }
/*見出し*/
.side-line_pb {
	font-size: 1rem;
	text-align: center;
	font-weight: normal;
	line-height: 1.4;
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center; /*PC-Safari,iOS8.4*/
	justify-content:flex-start;
    margin-bottom: 1.5em;

}
.side-line_pb:before {
	content: "";
	display: inline-block;
	width: 80px;
	height: 50px;
	background: url("../img/parcel_box/ttlbkimg01_l.png") 0 0 no-repeat;
	background-size: contain;
}
.side-line_pb:after {
	content: "";
	display: inline-block;
	width: 27px;
	height: 50px;
	background: url("../img/parcel_box/ttlbkimg01_r.png") 0 0 no-repeat;
	background-size: contain;
}
.side-line_pb div {
	display: block;
	font-size: 1.3em;
    padding: 0 20px;
    color: #47add1;
    font-weight: 700;
    text-align: center;
    
}

@media screen and (max-width: 790px) {
    .side-line_pb {justify-content:center;}
.side-line_pb div {
	display: block;
	font-size: 11px;
    padding: 0 5px;
    color: #47add1;
    font-weight: 300;
    text-align: center;
    
}
.side-line_pb:before {
	width: 60px;
	height: 30px;
}
.side-line_pb:after {
	width: 17px;
	height: 30px;
}
    
}
/*見出し*/
/*見出しセンター*/
.side-line_pb_cntr {
	font-size: 1rem;
	text-align: center;
	font-weight: normal;
	line-height: 1.4;
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center; /*PC-Safari,iOS8.4*/
	justify-content:center;
    margin-bottom: 1.5em;

}
.side-line_pb_cntr:before {
	content: "";
	display: inline-block;
	width: 80px;
	height: 50px;
	background: url("../img/parcel_box/ttlbkimg01_l.png") 0 0 no-repeat;
	background-size: contain;
}
.side-line_pb_cntr:after {
	content: "";
	display: inline-block;
	width: 27px;
	height: 50px;
	background: url("../img/parcel_box/ttlbkimg01_r.png") 0 0 no-repeat;
	background-size: contain;
}
.side-line_pb_cntr div {
	display: block;
	font-size: 1.2em;
    padding: 0 20px;
    color: #47add1;
    font-weight: 700;
    text-align: center;
    
}

@media screen and (max-width: 790px) {
.side-line_pb_cntr {justify-content:center;}
.side-line_pb_cntr div {
	display: block;
	font-size: 11px;
    padding: 0 5px;
    color: #47add1;
    font-weight: 300;
    text-align: center;
    
}
.side-line_pb_cntr:before {
	width: 60px;
	height: 30px;
}
.side-line_pb_cntr:after {
	width: 17px;
	height: 30px;
}
    
}
/*見出しセンター*/
.seal_box {position: relative;}
.seal {
    width: 8em;
  height: 8em;
  text-align: center;
  line-height: 8em;
  border-radius: 4em;
  background: #FFF;
    border: 3px solid #47add1;
  margin: 0 1em 0 2.6em;
  display: inline-block;
  color: #00acc8;
  position: absolute;
    top: -2em;
    left: -4em;
    font-size: 0.9em;
    font-weight: 900;
}
.seal2 {
    width: 8em;
  height: 8em;
  text-align: center;
  line-height: 8em;
  border-radius: 4em;
  background: #efef3f;
        border: 3px solid #47add1;
  margin: 0 1em 0 2.6em;
  display: inline-block;
  color: #47add1;
  position: absolute;
    top: -2em;
    left: -4em;
    font-size: 0.9em;
    font-weight: 900;
}
.ttl_btn {color: #47add1;; font-size: 1.7em; font-weight: 900; line-height: 2em;}

.ttl_btn span {display: inline-block;
border: solid 2px #4d4d4d;vertical-align: middle;
    background-color: #FFF;
    color: #4d4d4d;
    font-size: 12px;
    font-weight: 700;
border-radius: 4px;
padding: 0 10px;
 margin-right: 15px;
    line-height: 1.8em;
}
.box_mizu2 {background-color: #87d2e7;
padding: 1em;
color: #FFF;}

/*2カラム1カラム*/
.flex_21_img30 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;
}
 
.flex_21_img30 .flex_21_img30_in {
  width: 46%;
    margin: 0 auto;
    text-align: center;
}
.flex_21_img30 .flex_21_img30_in img {
  width: 30%;
    

}

@media screen and (max-width: 768px) {
.flex_21_img30 {

}
.flex_21_img30 .flex_21_img30_in {
  width: 96%;
    margin: 0 auto;
}
.flex_21_img30 .flex_21_img30_in img {
  width: 30%;
}
}
/*2カラム1カラム*/
.btn_ttl_midori {display: inline-block; background-color: #83b78d; border-radius: 8px; padding: 0.5em 1em; color: #FFF; line-height: 1em;}
.btn_ttl_aka {display: inline-block; background-color: #ce7272; border-radius: 8px; padding: 0.5em 1em; color: #FFF; line-height: 1em;}
.btn_ttl_kiiro {display: inline-block; background-color: #cec449; border-radius: 8px; padding: 0.5em 1em; color: #FFF; line-height: 1em;}
.ranking {font-size: 30px; font-weight: 600; text-align: center; letter-spacing: 0.2em;}
.ranking span {font-size: 80px;
    padding: 0;
    color: #47add1;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Pathway Gothic One', sans-serif;
    line-height: 1em;}
.fontmini {font-size: 0.8em;}
.kakaku {font-size: 35px; font-weight: 700; text-align: center; letter-spacing: 0.2em; margin: 1% 0; display: inline-block;}
.kakaku .suuji {font-size: 100px;
    padding: 0 10px;
    color: #47add1;
    font-weight: 900;
    text-decoration: none;
    font-family: 'Pathway Gothic One', sans-serif;
    line-height: 1em;}
.kakaku .zei {font-size: 15px; color: #383838; letter-spacing: 0px;}
@media screen and (max-width: 768px) {
    .ranking {font-size: 20px;}
.ranking span {font-size: 40px;
    }

.kakaku {font-size: 20px;}
.kakaku span {font-size: 40px;
   }
}
/*宅配ボックス*/
/*スターネット*/
/*2カラム1カラム*/
.flex21 {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
    justify-content: flex-start;
    align-items:stretch;
}
 
.flex21 div.flex21_in {
  width: 48%;
  margin: 2% 1%;
    
    padding: 1em;
}

@media screen and (max-width:768px) {

.flex21 div.flex21_in {
  width: 98%;
  margin: 1%;
}
}
/*2カラム1カラム*/
.balloon2-right {
  position: relative;
  display: block;
  margin: 1.5em 15px 1.5em 0;
  padding: 1em 2em;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #FFF;
  border: solid 3px #555;
  box-sizing: border-box;
    border-radius: 15px;
}

.balloon2-right:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid #FFF;
  z-index: 2;
}

.balloon2-right:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-left: 14px solid #555;
  z-index: 1;
}

.balloon2-right p {
  margin: 0;
  padding: 0;
}
@media screen and (max-width:768px) {
.balloon2 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 16px;
  background: #FFF;
  border: solid 3px #4d4d4d;
  box-sizing: border-box;
        border-radius: 15px;

}

.balloon2:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.balloon2:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #4d4d4d;
  z-index: 1;
}

.balloon2 p {
  margin: 0;
  padding: 0;
}

}
/*2カラム1カラム*/
.flex_balloon {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items:center;
}
 
.flex_balloon div.flex_balloon_txt {
  width: 68%;
  margin: 1%;
}
.flex_balloon div.flex_balloon_img {
  width: 28%;
  margin: 1%;
}
.flex_balloon div.flex_balloon_img img {
  width: 90%;
    margin: 0 5%;
  
}
@media screen and (max-width:768px) {
.flex_balloon div.flex_balloon_txt,.flex_balloon div.flex_balloon_img {
  width: 98%;
  margin: 1%;
}
    .flex_balloon div.flex_balloon_img {text-align: center;}
.flex_balloon div.flex_balloon_img img {
    width: 40%;
}
}
/*2カラム1カラム*/
/*3カラム1カラム*/
.flex_otoi_bn2 {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: center;
    justify-content: center;
    align-items:center;
}
 
.flex_otoi_bn2 div.otoi_btn2 {
  width: 31%;
  margin: 1%;
}
@media screen and (max-width:798px) {
 .flex_otoi_bn2 {
 padding: 0%;
}
.flex_otoi_bn2 div.otoi_btn2 {
  width: 100%;
  margin: 1% 0;
}
}
/*3カラム1カラム*/
.otoi_btn2 {position: relative;}
.otoi_btn2 a {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    line-height: 1.3em;
  display: block;
  background-color: #87d2e7;
  border: solid 3px #87d2e7;
  padding: 20px 20px;
  text-decoration: none;
  font-size: 16px;
  color: #FFF;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.2s linear;
    height: 90px;
    
}
.otoi_btn2:after {
    font-family: 'FontAwesome';
    content: "\f054";
    position: absolute;
    bottom: 30px;
    right: 10px;
    margin-top: -12px;
    font-size: 16px;
    color: #FFF;
    z-index: 2;
}
.otoi_btn2 a span {display: block;
font-size: 14px;
font-weight: 300;}
.otoi_btn2 a::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 0.2s linear;
}
.otoi_btn2 a:hover {
  color: #87d2e7;
}
.otoi_btn2 a:hover::after {
  left: 0;
  background-color: #FFF;
}
@media screen and (max-width:1180px) {
        .otoi_btn2 a {
        font-weight: 700;
        font-size: 16px;
            height: 90px;
        padding: 10px 10px;
}
    .otoi_btn2:after {
    font-family: 'FontAwesome';
    content: "\f054";
    position: absolute;
    bottom: 30px;
    right: 10px;
    margin-top: -12px;
    font-size: 16px;
    color: #FFF;
    z-index: 2;
}
}
@media screen and (max-width:798px) {
    .otoi_btn2 a {
        font-weight: 700;
        font-size: 14px;
            height: auto;
        padding: 10px 10px;
}
    .otoi_btn2 a span {display: block;
font-size: 12px;
font-weight: 300;}
        .otoi_btn2:after {
    font-family: 'FontAwesome';
    content: "\f054";
    position: absolute;
    bottom: 20px;
    right: 10px;
    margin-top: -12px;
    font-size: 16px;
    color: #FFF;
    z-index: 2;
}
}

.bkimg {
position: relative;
z-index: 0;}
.bkimg.bkimg01 {background: url(../img/starnet/facility/bkimg01.jpg) center center / cover no-repeat;
}
.bkimg.bkimg02 {background: url(../img/starnet/facility/bkimg02.jpg) center center / cover no-repeat;
}
.bkimg.bkimg03 {background: url(../img/starnet/facility/bkimg03.jpg) right -80% center / 80% no-repeat;
}
.bkimg.bkimg04 {background: url(../img/starnet/facility/bkimg04.jpg) center center / cover no-repeat;
}
.bkimg.bkimg05 {
    background-image:
    url("../img/starnet/facility/base1.png"), /* 最前面の背景レイヤーの背景画像 */
/*    linear-gradient( to right, rgba(255,255,255,0),  #fff ),*/
    url("../img/starnet/facility/obj_product01_alarm_gateway1.png");
    background-repeat:
    no-repeat, /* 最前面の背景レイヤーに対応 */
/*	no-repeat,*/
	no-repeat;

  background-position:
    left 50px bottom 40px,/* 最前面の背景レイヤーに対応 */
/*	left,*/
	right 0px bottom  40px;
}
@media screen and (max-width:1200px) {
    .bkimg.bkimg05 {
    background-image:
    url("../img/starnet/facility/base1.png"), /* 最前面の背景レイヤーの背景画像 */
/*    linear-gradient( to right, rgba(255,255,255,0),  #fff ),*/
    url("../img/starnet/facility/obj_product01_alarm_gateway1.png");
    background-repeat:
    no-repeat, /* 最前面の背景レイヤーに対応 */
/*	no-repeat,*/
	no-repeat;

  background-position:
    left -100px bottom 0px,/* 最前面の背景レイヤーに対応 */
/*	left,*/
	right -150px bottom  0px;
}
}
@media screen and (max-width:798px) {
    .bkimg.bkimg03 {background-image:none;
}
    .bkimg.bkimg05 {
    background-image:none;
}
}
.bkimg::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
     background-color: rgba(0, 0, 0, .1);
    z-index: -1;
}
.right {
    text-align: right;
}
.bkimg p.catch_bkimg_white {
    margin: 2em 0;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.8em;
    letter-spacing: 7px;
    z-index: 3;
    color: #FFF;
}

.bkimg p.catch_bkimg_white span {
    margin: 2em 0;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    display: block;
    line-height: 2em;
}   
.bkimg p.catch_bkimg_black {
    margin: 2em 0;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.8em;
    letter-spacing: 7px;
    z-index: 3;
    color: #4d4d4d;
}

.bkimg p.catch_bkimg_black span {
    margin: 2em 0;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    display: block;
    line-height: 2em;
}   
@media screen and (max-width:798px) {
    .bkimg p.catch_bkimg_white {
        margin: 1em 0;
    font-size: 28px;
        line-height: 1.6em;
}
    .bkimg p.catch_bkimg_white span {
    font-size: 13px;
        letter-spacing: 0px;
}    .bkimg p.catch_bkimg_black {
        margin: 1em 0;
    font-size: 28px;
        line-height: 1.6em;
}
    .bkimg p.catch_bkimg_black span {
    font-size: 13px;
        letter-spacing: 0px;
}
}
/*2カラム1カラム*/
.flex_bkimg {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
    justify-content: center;
    align-items:center;
}
 
.flex_bkimg div.flex_bkimg_in {
  width: 50%;
  margin: 0%;
}
.flex_bkimg div.flex_bkimg_in_no {
  width: 50%;
  margin: 0%;
}
@media screen and (max-width:768px) {
.flex_bkimg div.flex_bkimg_in {
  width: 100%;
  margin: 0%;
}
.flex_bkimg div.flex_bkimg_in_no {
    display: none;
}
}
/*2カラム1カラム*/
/*スターネット*/
/*洗濯代行*/
/*中央寄せ*/
.flex_txtcntr {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
    justify-content: center;
    align-items:center;
}
/*中央寄せ*/

/*Parallax背景遅延*/

.parallaxcontent {
  position: relative;
  margin: 0 auto;
  padding: 0;
  height: auto;
}
#first  { 
  background: url(../img/to_management/laundry_service/img01.jpg) center 0% no-repeat fixed; z-index: 0; position: relative;
}
#first::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
     background-color: rgba(0, 0, 0, .5);
    z-index: -1;
}
/*Parallax背景遅延*/
.ttl_top0 {top:0; text-align: center; background-color: #FFF; display: inline-block;
 color: #4d4d4d; font-weight: 700; font-size: 30px;
padding: 0 2em 0.3em; 
-webkit-border-radius: 0px 0px 30px 30px / 0px 0px 30px 30px;
-moz-border-radius: 0px 0px 30px 30px / 0px 0px 30px 30px;
border-radius: 0px 0px 30px 30px / 0px 0px 30px 30px;
}
/*こんな方に白版*/
.list03 {
    display: flex;
  flex-wrap: wrap;
  align-items: stretch;
justify-content: center;
}
.list03 li {
    width: 48%;
    margin: 1%;
padding: 15px 15px;
font-size: 1.1em;
font-weight: 900;
border:solid 2px #FFF;
padding-left:3em;
text-indent:-1.7em;
    line-height: 1.4em;
color: #FFF;}
.list03 li:before {
    content: "\f14a";
    position: relative;
    font-family: FontAwesome;
    margin-right: .5em;
    color: #FFF; /* 文字色 */
    font-size: 120%; /* フォントの大きさ */
}
@media screen and (max-width: 768px) {
    .list03 li {
        width: 100%;
        padding: 6px 10px;
        margin: 5px 0;
        width: 100%;
    font-size: 1em;
    padding-left:2.7em;
text-indent:-1.7em;
    line-height: 1.4em;}
}
/*こんな方に白版*/
/*4カラム2カラム*/
.flex_laundry42 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
justify-content: center;
margin: 2% 0;
   
}
 
.flex_laundry42 .flex_laundry42_in {
    width:  250px;
    margin: 10px 20px;
    position: relative;
}
.flex_laundry42 .flex_laundry42_in img { 
width: 250px;
  height: 250px;
  object-fit: cover;
}
.flex_laundry42 .flex_laundry42_in .laundryttl span {font-family: 'Bad Script', cursive; font-weight: 900; color: #00acc8; padding: 2% 0;  font-size: 35px; padding-right: 0.2em; line-height: 1em; display: block; margin-bottom: 10px; }
.flex_laundry42 .flex_laundry42_in .laundryttl {font-weight: 700; font-size: 18px; line-height: 1.8em; position: absolute; top:-20px; left:-15px; color: #00acc8; display: block; background-color: rgba(255,255,255,0.5); padding: 5px 10px;}

.flex_laundry42 .flex_laundry42_in .laundryttl02 {text-align: center; font-weight: 700; line-height: 1.2em; color: #4d4d4d; border: solid 1px #4d4d4d; border-radius: 4px;}
.flex_laundry42 .flex_laundry42_in p {padding: 10px 0; margin-bottom: 10px;}
@media screen and (max-width: 768px) { 
    .flex_laundry42 {margin: 4% 0;}
.flex_laundry42 .flex_laundry42_in {
  width: 46%;
    margin: 1% 2%;
    text-align: center;
    
       
}
.flex_laundry42 .flex_laundry42_in img { 
    width: 150px;
  height: 150px;
  object-fit: cover;
    }
    .flex_laundry42 .flex_laundry42_in .laundryttl span {
        font-size: 18px; 
    }
    .flex_laundry42 .flex_laundry42_in .laundryttl {
        top:-22px; left:0px;
    }
}
/*4カラム2カラム*/
/*3カラム1カラム*/
.flex_laundry31 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
justify-content: center;
margin: 2% 0;
   
}
 
.flex_laundry31 .flex_laundry31_in {
    width:  31%;
    margin: 2% 1%;
    position: relative;
}
.flex_laundry31 .flex_laundry31_in img { 
width: 100%;
  height: 250px;
  object-fit: cover;
}
.flex_laundry31 .flex_laundry31_in .laundryttl {font-weight: 700; font-size: 18px; line-height: 2em; position: absolute; top:-60px; left:-15px; color: #00acc8; display: block; background-color: rgba(255,255,255,0.5); padding: 5px 10px;}
.flex_laundry31 .flex_laundry31_in .laundryttl span {font-family: 'Bad Script', cursive; font-weight: 900; color: #00acc8; padding: 2% 0;  font-size: 50px; padding-right: 0.2em; line-height: 1em; display: block; margin-bottom: 10px; }


.flex_laundry31 .flex_laundry31_in p {padding: 10px 0; margin-bottom: 10px;}
@media screen and (max-width: 768px) { 
    .flex_laundry31 {margin: 4% 0;}
.flex_laundry31 .flex_laundry31_in {
  width: 98%;
    margin: 1% 1%;
    text-align: center;
    
       
}
.flex_laundry31 .flex_laundry31_in img { 
    width: 100%;
  height: 150px;
  object-fit: cover;
    }
    .flex_laundry31 .flex_laundry31_in .laundryttl span {
        font-size: 30px; 
    }
    .flex_laundry31 .flex_laundry31_in .laundryttl {
        font-size:  13px;
        line-height: 1.6em;
        top:-22px; left:0px;
    }
}

/*3カラム1カラム*/
.img_en img {
    border-radius: 50%;  /* 角丸半径を50%にする(=円形にする) */
    width:  180px;       /* ※縦横を同値に */
    height: 180px;       /* ※縦横を同値に */
    margin-bottom: 1em;
}
/*ボタン*/
.btn_01 {margin: 4% 0;}
.btn_01 a {border: 1px solid #47add1;
    border-radius: 4px;
padding: 10px 60px;
color: #FFF;
display: block;
    width: 600px;
    text-align: center;
    overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.2s linear;
    margin: 0 auto;
    background-color: #47add1;
    font-size: 20px;
}
.btn_01 a span {
    position: relative;
  display: inline-block;
  padding-right: 20px;
}
.btn_01 a span::after{
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
}
.btn_01 a::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 0.2s linear;
}
.btn_01 a:hover {
  color: #fff;
}
.btn_01 a:hover::after {
  left: 0;
  background-color: #87d2e7;
}
@media screen and (max-width: 768px) {
.btn_01 a {border: 1px solid #47add1;
    border-radius: 4px;
padding: 10px 20px;
color: #FFF;
display: block;
    width: 100%;
    text-align: center;
    overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.2s linear;
    margin-left: auto;
    font-size: 13px;
}

}
/*ボタン*/
.tbl-rsp3 {
    width: 100%;
    overflow: hidden;
    word-break: break-all;
    word-wrap: break-word;
    margin: 2% 0;
}
.tbl-rsp3 th {
    padding: 5px;
    border-bottom: solid 1px #cccccc;
    overflow: hidden;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    text-align: left;
    word-break: break-all;
    word-wrap: break-word;
    vertical-align: top;
}
.tbl-rsp3 td {
    padding: 5px;
    text-align: left;
    vertical-align: top;
    border-bottom: solid 1px #cccccc;
    overflow: hidden;
    word-break: break-all;
    word-wrap: break-word;
}
.tbl-rsp3 td {font-weight: 900;
}
.tbl-rsp3 th span {padding-right: 5px;}
.tbl-rsp3 td span {
    font-size: 90%;
    font-weight: 300;
    padding-right: 5px;
}

/*2カラム1カラム*/
.flex_laundryprice {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
justify-content: center;
margin: 2% 0;
   
}
 
.flex_laundryprice .flex_laundryprice_in {
    width:  38%;
    margin: 2% 1%;
    position: relative;
    border: solid 1px #ccc;
}
.flex_laundryprice .flex_laundryprice_in img { 
width: 100%;
  height: 250px;
  object-fit: cover;
}

@media screen and (max-width: 768px) { 
.flex_laundryprice {margin: 4% 0;}
.flex_laundryprice .flex_laundryprice_in {
  width: 98%;
    margin: 1% 1%;
    text-align: center;
    
       
}
.flex_laundryprice .flex_laundryprice_in img { 
    width: 100%;
  height: 150px;
  object-fit: cover;
    }
}
.tbl-rsp4 {
    width: 100%;
    overflow: hidden;
    word-break: break-all;
    word-wrap: break-word;
}


.tbl-rsp4 td {
        padding: 10px;

    vertical-align: top;
    overflow: hidden;
    word-break: break-all;
    word-wrap: break-word;
}

/* 奇数行のスタイル */
.tbl-rsp4 tr:nth-child(odd){
  background-color:#f0f0f0;
}
 
/* 偶数行のスタイル */
.tbl-rsp4 tr:nth-child(even){
  background-color:white;
}

/*3カラム1カラム*/
dl.futonprice {
}
dl.futonprice dd {font-weight: 900;
color: #00acc8;font-size: 30px;}
dl.futonprice dd span {font-size: 16px;}
/*洗濯代行*/
/*インターネット回線・通信事業*/
/*2カラム1カラム*/
.flex_business {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
justify-content: center;
    margin-bottom: 20px;
}
 
.flex_business .flex_business_in {
    width:  18%;
    margin: 1%;
    position: relative;
}
.flex_business .flex_business_in img {width: 100%;}

@media screen and (max-width: 768px) { 
}

.box_btn {
    background-color: #FFF;
    padding: 1em 1em;
    font-size: 23px;
    font-weight: 900;
    text-align: center;
    color: #4d4d4d;
    border-radius: 13px;
}
.box_btn i {display: block;
font-size: 50px;}
@media screen and (max-width: 768px) {
    .box_btn {font-size: 13px;
    padding: 0.5em;}
    .box_btn i {display: block;
font-size: 30px;}
}
.box_green i {color: #64bc6e;}
.box_orange i {color: #f4bb65;}
.box_yellow i {color: #d9de58;}

/*3カラム1カラム*/
.flex_choose {display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content:space-around;
}
.flex_choose_in_number {
  width: 14%;
    margin: 1%;
}
.flex_choose_in_txt {
  width: 58%;
    margin: 1%;
}
.flex_choose_in_img {
  width: 22%;
    margin: 1%;
}
.flex_choose_in_img img {width: 100%;
height: 260px;
    object-fit: cover;}
.ttl_choose01 {
    font-weight: 900;
    font-size: 28px;
    line-height: 1.6em;
    color: #4d4d4d;
    margin: 2% 0;
}
.ttl_choose01 span {font-size: 130%;}
.ttl_choose02 {
    font-weight: 900;
    font-size: 19px;
    line-height: 1.6em;
    color: #00acc8;
    margin: 2% 0;
}
.kakko {
  position: relative;
  line-height: 1.4;
  padding:0em 2em;
  display: inline-block;
  top:0;
    margin: 0 0 10px;
}

.kakko:before, .kakko:after { 
  position: absolute;
  top: 0;
  content:'';
  width: 8px;
  height: 100%;
  display: inline-block;
}

.kakko:before {
  border-top: solid 1px #4d4d4d;
  border-left: solid 1px #4d4d4d;
  border-bottom: solid 1px #4d4d4d;
  left: 0;
}

.kakko:after {
  content: '';
  border-top: solid 1px #4d4d4d;
  border-right: solid 1px #4d4d4d;
  border-bottom: solid 1px #4d4d4d;
  right: 0;
}
@media screen and (max-width: 1000px) {
    .flex_flow_in_number {
  width: 18%;
    margin: 1%;
}
.flex_choose_in_txt {
  width: 48%;
    margin: 1%;
}
}
@media screen and (max-width: 768px) {
.flex_choose_in_number,.flex_choose_in_txt,.flex_choose_in_img {
        width: 98%;
        margin: 1%;
    }
    .ttl_choose01 {
    font-size: 18px;
}
.ttl_choose01 span {font-size: 130%;}
.ttl_choose02 {
    font-size: 14px;
}
}
/*3カラム1カラム*/
/*Parallax背景遅延*/

.parallaxcontent2 {
  position: relative;
  margin: 0 auto;
  padding: 0;
  height: auto;
}
#first2  { 
  background: url(../img/to_company/business/bkimg.jpg) center 0% no-repeat fixed; z-index: 0; position: relative;
}
#first2::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
     background-color: rgba(0, 0, 0, .5);
    z-index: -1;
}
/*Parallax背景遅延*/
.mds_waku {
    
    margin: 0 auto 20px;
    text-align: center;
    color: #FFF;

}
.mds_waku p {position: relative;
    width: 650px;
    font-weight: 900;
    font-size: 26px;
    padding: 0.25em 1em;
    display: inline-block;
border-top: solid 2px #FFF;
  border-bottom: solid 2px #FFF;
}
.mds_waku p:before, .mds_waku p:after {
  content: '';
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: #FFF;
}
.mds_waku p:before {
  left: 7px;
}
.mds_waku p:after {
  right: 7px;
}
.mds_waku2 {
    font-weight: 900;
    font-size: 26px;
    margin: 0 auto 20px;
    text-align: center;
    color: #47add1;

}
.mds_waku2 p {position: relative;
    width: 650px;
    padding: 0.25em 1em;
    display: inline-block;
border-top: solid 2px #47add1;
  border-bottom: solid 2px #47add1;
}
.mds_waku2 p:before, .mds_waku2 p:after {
  content: '';
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: #47add1;
}
.mds_waku2 p:before {
  left: 7px;
}
.mds_waku2 p:after {
  right: 7px;
}
@media screen and (max-width: 768px) {
    .mds_waku p,.mds_waku2 p {width: 100%;
    font-weight: 900;
    font-size: 16px;
    text-align: center;}
}

.container0 {
    margin: 0;
    padding: 5% 0;
    width: 1140px;
    margin: 0 auto;
}
@media screen and (max-width: 1140px) {
    .container0 {
    margin: 0;
    padding: 6% 4%;
    width: 100%;
    margin: 0 auto;
}
}
.annai {
    background-color: #87D2E7;
    background-image: url(../img/to_company/business/josei_annani.png);
    background-size: 400px;
    background-position: bottom right 10%;
    background-repeat: no-repeat;
}
.annai2 {
    background-color: #f4f8f9;
    background-image: url(../img/to_company/business/josei_pc.jpg);
    background-size: 60%;
    background-position: bottom right;
    background-repeat: no-repeat;
}
.annai2::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background-color: rgba(255, 255, 255, .4);
    z-index: -1;
}
.flex_annai {display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content:space-around;
}

.flex_annai_txt {
  width: 68%;
    margin: 1%;

}
.flex_annai_img {
  width: 28%;
    margin: 1%;
}
.flex_annai_img img {display: none;}
@media screen and (max-width: 768px) {
   .annai{
    background-color: #87D2E7;
    background-image: url(../img/to_company/business/josei_annani.png);
    background-size: 200px;
    background-position: bottom center;
    background-repeat: no-repeat;
    
}
    .annai2 {
    background-color: #f4f8f9;
    background-image: url(../img/to_company/business/josei_pc.jpg);
    background-size: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
}
   
.flex_annai_txt {
  width: 100%;
    margin: 0%;
}
.flex_annai_img {
  width: 100%;
    margin: 0 auto;
    height: 180px;
   
}
.flex_annai_img img {display: block; width: 200px; margin: 0 auto;}
}

.result_en {	
  position: relative;
  display: inline-block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
    margin: 10px;
    color: #FFF;
  
}
.result_en.result_en1 {
    background: #64bc6e;
}
.result_en.result_en2 {
    background: #f4bb65;
}
.result_en.result_en3 {
    background: #d9de58;
}
.result_en p {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width :200px;
  text-align:center;
    display: block;
    font-weight: 900;
    font-size: 18px;
}
.result_en p span {
    display: block;
    font-size: 30px;
    font-weight: 900;
    
}
@media screen and (max-width: 768px) {
    .result_en {	
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
    margin: 3px;
    color: #FFF;
  
}
    .result_en p {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width :90px;
  text-align:center;
    display: block;
    font-weight: 300;
    font-size: 12px;
        line-height: 1em;
}
.result_en p span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    
}
}
/*ボタン*/
.btn_02 {margin: 20px 0;}
.btn_02 a {border: 2px solid #47add1;
    border-radius: 4px;
padding: 10px 60px;
color: #47add1;
display: block;
    width: 600px;
    text-align: center;
    overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.2s linear;
    margin: 0 auto;
    background-color: #FFF;
    font-size: 20px;
    font-weight: 700;
}
.btn_02 a span {
    position: relative;
  display: inline-block;
  padding-right: 20px;
}
.btn_02 a span::after{
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px #47add1;
  border-right: solid 2px #47add1;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
}
.btn_02 a::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 0.2s linear;
}
.btn_02 a:hover {
  color: #fff;
}
.btn_02 a:hover::after {
  left: 0;
  background-color: #87d2e7;
}
@media screen and (max-width: 768px) {
.btn_02 a {
    font-size: 13px;
    width:100%;
    padding: 10px 10px;
}

}
/*ボタン*/
/*インターネット回線・通信事業*/
/*----------------------------------------------------------------*/
/* サイトマップ*/
/*----------------------------------------------------------------*/  

.sitemap ul li ul {
  margin-top: .8em;
  margin-bottom: .75em;
  margin-left: 30px;
    line-height: 2em;
}
 
.sitemap ul li ul li {
  margin-bottom: .25em;
  position: relative;
}
 
.sitemap ul li ul li::before {
  content: "";
  position: absolute;
  top: -0.5em;
  left: -16px;
  width: 10px;
  height: calc(100% + .75em);
  border-left: 1px solid #999;
}
 
.sitemap ul li ul li:last-child::before {
  height: calc(1em + .25em);
}
 
.sitemap ul li ul li::after {
  content: "";
  position: absolute;
  top: .75em;
  left: -16px;
  width: 10px;
  border-bottom: 1px solid #999;
}


.sitemapmenu li.ttl_sitemap {background-color: #87d2e7; padding: 0 1.4em 0; margin-bottom: 0.8em;}
.sitemapmenu li.ttl_sitemap a {color: #FFF; line-height: 3em; position: relative; font-size: 14px; padding-left: 30px;}
.sitemapmenu li.ttl_sitemap a::before {
    content: "\f07c";
    font-weight: 400;
    font-family: "Font Awesome 5 Free";
    color: #FFF;
    font-size: 120%;
    position: absolute;
    top: 0;
    
    transform: rotate(0deg);
border:none;
}
.sitemapmenu li.ttl_sitemap:hover {background-color: #47add1;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.sitemapmenu li.ttl_sitemap:hover a {color: #FFF;}
@media screen and (max-width: 768px) {
    .sitemapmenu li.ttl_sitemap {padding: 0 0.6em; margin-bottom: 0.3em;}
    .sitemapmenu li.ttl_sitemap a {color: #FFF; position: relative; font-size: 12px; padding-left: 24px;}
    .sitemapmenu li.ttl_sitemap a::before {font-size: 100%; top: 0;}

}
.sitemapmenu li.ttl_sitemap a::before,.sitemapmenu li.ttl_sitemap a::after {border: none;}

.flex_sitemap_link_box {
  width: 100%;
  margin: 0;
    display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin: 0;
}
.flex_sitemap_link {width: 100%;
    margin: 1% 0;
border: solid 2px #F7F7F7;

    padding: 1em;
/*    background-color: #FCFCFC;*/
}
.flex_sitemap_link0 {width: 98%;
    margin: 1%;
border: solid 2px #F7F7F7;

    padding: 1em;
/*    background-color: #FCFCFC;*/
}
.flex_sitemap_link0 .sitemapmenu li a::before,.flex_sitemap_link0 .sitemapmenu li a::after {border: none;}
.flex_sitemap_link0 .sitemapmenu li a { padding-left: 0;}
@media screen and (max-width: 768px) {
    .flex_sitemap_link_box {width: 100%;}

    .flex_sitemap_link {width: 100%; margin: 1em 0; padding:1em; }
    }

.sitemapmenu_box {width: 100%;  margin: 3% 2%;}
@media screen and (max-width: 768px) {
    .sitemapmenu_box {margin: 3% 0%;}
}
.sitemapmenu li {
    display: list-item;  /* 縦に並べる */
  list-style-type: none;
  text-transform: capitalize;
  padding: 0.5em 0;
    text-decoration: none;
    line-height: 1.2em;
    font-size: 12px;
    letter-spacing: 0;
    
  }
/*.sitemapmenu li:first-child {
    font-weight: 600;
    font-size: 14px;
    line-height: 1em;
    letter-spacing: 0.1em;
    background-color: #47add1;
    padding: 0.8em 1em 0.6em;
    margin: 0 0 0.5em;

    
}
.sitemapmenu li:first-child a {
    padding-left: 30px;
    position: relative;
}
.sitemapmenu li:first-child a::before {
    content: "\f07c";
    font-weight: 400;
    font-family: "Font Awesome 5 Free";
    color: #FFF;
    font-size: 120%;
    position: absolute;
    top: -4px;
    
    transform: rotate(0deg);
border:none;
}
.sitemapmenu li:first-child a::after {border:none;}


.sitemapmenu li:first-child a {color: #FFF;}
.sitemapmenu li:hover:first-child a,.footmenu li:hover:first-child span {color: #008cb2;}*/


.sitemapmenu li a {
       color: #4d4d4d;
    font-weight: 700;

    display: block;
    position: relative;
    padding-left: 25px;
}
.sitemapmenu li a::before {
    content: "";
    position: absolute;
    top: -0em;
    left: 5px;
    width: 10px;
    height: calc(100% - .95em);
    border-left: 1px solid #999;
}

.sitemapmenu li ul li a {color: #4d4d4d;
font-weight: normal;}
/*.sitemapmenu li:last-child a::before {
    height: calc(1em + .25em);
}*/

.sitemapmenu li a::after {
    content: "";
    position: absolute;
    top: .75em;
    left: 5px;
    width: 10px;
    border-bottom: 1px solid #999;
}

.sitemapmenu li.sitemapmenuttl {background-color: #F4F4F4; padding: 10px 10px; margin: 1em 0;}


/*.sitemapmenu li a::before {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #4d4d4d;
  border-right: solid 1px #4d4d4d;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -5px;
  transform: rotate(45deg);
}*/
.sitemapmenu li a:hover {
    color: #47add1;
}

.sitemapmenu li ul {

    margin-left: 30px;

}
@media screen and (max-width: 768px) {
    .sitemapmenu li {padding: 0.3em 0;
        font-size: 11px;
    }
    
}


ul.sitemapmenu2 {    
    list-style: none;
    display:flex;
}
ul.sitemapmenu2 li {padding: 0 10px 0 0;}
ul.sitemapmenu2 li a {color: #4d4d4d;}
ul.sitemapmenu2 li a:hover {
    color: #47add1;
}
ul.sitemapmenu2 li::before {
  content: "/";
  margin-left: .5em;  
  margin-right: .5em;  
}
@media screen and (max-width: 480px) {
ul.sitemapmenu2 {    
    display: flex;
  flex-flow: column wrap;
}
}

/*----------------------------------------------------------------*/
/* サイトマップ*/
/*----------------------------------------------------------------*/  
/*インターネット総合サービス*/
hr.hr_dot {
	background-color: #fff;
	border-top: 2px dashed #4d4d4d;
    margin: 15px 0;
}
.flex_comprehensive {
display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content:space-around;
}
.flex_comprehensive_in_txt {
    width: 68%;
    margin: 1%;
}
.flex_comprehensive_in_img {
    width: 28%;
    margin: 1%;
}
.flex_comprehensive_in_img img {width: 100%;}


@media screen and (max-width: 768px) {
    .flex_comprehensive_in_txt {
    width: 98%;
    margin: 1%;
}
.flex_comprehensive_in_img {
    width: 98%;
    margin: 1%;
}
}
    /*インターネット総合サービス*/
.junbityu {display: inline-block;
font-size: 12px;
border: solid 1px #4d4d4d;
border-radius: 5px;
text-align: center;
margin: 5px 0;
background-color: #F4F4F4;
}

.junbityu2 {display: inline-block;
font-size: 14px;
border: solid 1px #4d4d4d;
border-radius: 5px;
text-align: center;
margin: 5px 0;
    padding: 0.2em 2em;
    background-color: #F4F4F4;
}
.junbityu3 {display: inline-block;
font-size: 24px;
border: solid 1px #4d4d4d;
border-radius: 5px;
text-align: center;
margin: 5px 0;
    padding: 0.2em 2em;
    background-color: #F4F4F4;
}
.flex_otoi_bn3 {
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
}
.otoi_btn3 {
    width: 31%;
    margin: 1%;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    line-height: 1.3em;
    display: block;
    background-color: #00acc8;
    border: solid 3px #00acc8;
    padding: 20px 20px;
    text-decoration: none;
    font-size: 16px;
    
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: 0.2s linear;
    height: 90px;
    text-align: center;
    display: flex;
    -webkit-justify-content: center;
    align-items: center;
}
.otoi_btn3 a {
    color: #FFF;
}
.otoi_btn3 a span {
    display: block;
}
.otoi_btn3:hover {
    background-color: #FFF;
    border: solid 3px #00acc8;
}.otoi_btn3:hover a {
    color: #00acc8;
}
@media screen and (max-width: 768px) {
    .otoi_btn3 {
    width: 48%;
    margin: 1%;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    line-height: 1.1em;
    display: block;
    background-color: #00acc8;
    border: solid 3px #00acc8;
    padding: 5px 5px;
    text-decoration: none;
    font-size: 13px;
    
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: 0.2s linear;
    height: 90px;
}
}


/*コールセンター*/
.calle_blue_midashi {background-color: #f4f8f9;

}
.catch_calle {padding-top: 150px;
color: #00acc8;
font-size: 30px;
font-weight: 900;}


.flex_calle_img {
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
}
.flex_calle_img_in_txt {width: 60%;}
.flex_calle_img_in_img {width: 40%;}
.flex_calle_img_in_img img {width: 100%;}
@media screen and (max-width: 768px) {

.flex_calle_img {
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
}
.flex_calle_img_in_txt {width: 100%;}
.flex_calle_img_in_img {width: 100%;}
.flex_calle_img_in_img img {width: 100%;}
}

@media screen and (max-width: 1300px) {

    .catch_calle {padding-top: 20px;
font-size: 16px;
font-weight: 700;}
    .calle_blue_midashi_img {
background-position: right 0px bottom 0px;
background-size: contain;
    
background-repeat: no-repeat;

}
   
}
.calle_blue {background-color: #87D2E7;}
.calle_blue p {color: #FFF; line-height: 1.6em; }
.calle {
    width: 1200px;
    padding: 4%;
    margin: 0 auto;
}
@media screen and (max-width: 1200px) {
    .calle {
    width: 100%;
        padding: 4%;
}
}

.calle_blue h2 {font-size: 14px; font-weight: 600; color: #FFF; border: #FFF 3px solid; display: inline-block; padding: 5px 20px; border-radius: 20px; line-height: 1em;}
.calle_blue h3 {font-size: 36px; font-weight: 600; color: #FFF; letter-spacing: 3px; line-height: 1em; padding-bottom: 20px;　}
@media screen and (max-width:590px) {

.calle_blue h2 {font-size: 11px; font-weight: 600; color: #FFF; border: #FFF 2px solid; display: inline-block; padding: 3px 10px; border-radius: 20px; line-height: 1em;}
.calle_blue h3 {font-size: 20px; font-weight: 600; color: #FFF; letter-spacing: 3px; line-height: 1em; padding-bottom: 10px;　}
}
/*コールセンター*/
/*3カラム2カラム*/
.flex32 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
justify-content: center;
      margin: 2% 0;
}
 
.flex32 .flex32_in {
  width: 31%;
    margin: 1%;
}

.flex32 .flex32_in img {width: 100%; margin-bottom: 2%;}
@media screen and (max-width: 768px) {
    .flex32 .flex32_in {
  width: 48%;
    margin: 1%;
}
}
/*3カラム2カラム*/

.mds_01 {
  padding: 1rem 2rem;
  border-top: 3px dashed #000;
  border-bottom: 3px dashed #000;
  font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1em;
}
.mds_01 span {font-size: 18px;
display: block;}
@media screen and (max-width: 768px) {
    .mds_01 {
  font-size: 20px;
}
.mds_01 span {font-size: 14px;
}
}
.mds_01_white {
  padding: 1rem 2rem;
  border-top: 3px dashed #FFF;
  border-bottom: 3px dashed #FFF;
  font-size: 35px !important;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1em;
    color: #FFF;
}
.mds_01_white span {font-size: 18px;
display: block;}
@media screen and (max-width: 768px) {
.mds_01_white {
  font-size: 20px;
}
.mds_01_white span {font-size: 14px;
}
}


.ttl07 {margin: 3% 0;
    font-weight: 600;
    font-size: 18px;
    background-color: #00acc8;
    color: #FFF;
    padding: 10px 20px;
    border-radius: 10px;}
@media screen and (max-width: 768px) {
    .ttl07 {font-size: 13px; padding: 5px 20px;}
    }
.ttl08 {font-size: 12px;
font-weight: 700;
margin: 0.3em 0;
background-color: #F4F4F4;
padding: 0.5em 1em;}

h2.recruit {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    color: #00acc8;
    font-size: 40px;
    line-height: 1.2em;
    letter-spacing: 4px;
    padding-bottom: 20px;
    text-transform: capitalize;
    margin: 3em 0 2em; 
}
.recruit_txt {font-size: 18px;
line-height: 2.2em;}
@media screen and (max-width: 768px) {
    h2.recruit {margin: 1em 0 0.5em; }
    .recruit_txt {font-size: 13px;}
}
.w180{
	width:180px;
	padding-bottom:20px;
}
.f18{
	font-size: 18px;
}
.mb20{
	padding-bottom:20px !important;
}
.mb30{
	padding-bottom:30px !important;
}
.sora{
	background:#d9e8ed;background-color: #e7f5f7;
}

.toiawaseao{
	display: block;
    font-size: 85%;
    color: #3377ff;
}
.mb10{
	padding-bottom: 10px !important;
}
@media screen and (min-width: 1200px) {
.niigataheikei{
	    background-image: url("../img/niigata/niigata1.png");
height: 1000px;
    background-size: cover;
}
	.pc1200{
		
	}
	.sp1199{
		display: none;
	}
}

@media screen and (max-width: 1100px) {
.niigataheikei{

}
	.pc1200{
		display: none;
	}
	.sp1199{
		
	}	
}

.imgrespo{
	width:100%;
}

.list01 li{
	font-size: 16px !important;
}
.sample {
  display: inline-block;
  text-align: left;
}
.mizuiro{
    color: #00acc8;
}
.bold{
	font-weight: 600;
}
.f20{font-size:20px;}

.sub-mainmenu {
    padding: 0;
    position: absolute;
    top: 0px;
    right: 0px;
	    float: right;
}
.header-menuTab {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 0 auto;
    height: 100%;
}
.header-menuTab-tel {
    line-height: 1;
}
.header-menuTab-tel-number {
    font-family: neue-haas-grotesk-display,sans-serif !important;
    font-weight: 600;
    font-style: normal !important;
    font-size: 16px !important;
    letter-spacing: .1em !important;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
   padding-top: 12px;
}
.header-menuTab-tel-number .-icon {
    max-width: 18px;
    margin-right: 5px;
    position: relative;
    top: -1px;
}
.header-menuTab-tel-time {
    font-family: dnp-shuei-gothic-gin-std, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 11px;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
     letter-spacing: .03em;
    margin-top: 0px; 
}


.header-menuTab-item_login .header-menuTab-title {
    letter-spacing: 0.1em;
    margin: 0 0 0 8px;color: #ffffff;
}
@media only screen and (min-width: 1200px) {
.header-menuTab-item_login {
    padding: 28px 0px;background-color: #8c0000; 
}
.header-menuTab-item_login a {
    background-color: #9f3b42;
    padding: 32px 18px;
    color: #ffffff;
    top: 0;	
}
.header-menuTab-item_login a:hover {
background-color: #8c0000; opacity: 0.7;
    padding: 32px 18px;
    color: #ffffff;
    top: 0;	
}
}
@media only screen and (max-width: 1199px) {
.header-menuTab-item_login {
    padding: 28px 0px;background-color: #8c0000; 
}
.header-menuTab-item_login a {
    background-color: #9f3b42;
    padding: 12px 23px;    padding-bottom: 11px;
    color: #ffffff;
    top: 0;	
}
.header-menuTab-item_login a:hover {
background-color: #8c0000; opacity: 0.7;
    padding: 12px 23px;    padding-bottom: 11px;
    color: #ffffff;
    top: 0;	
}	
}

.header-menuTab-sp {
    width: 100%;
    height: 100%;
}
@media only screen and (min-width: 1200px) {
.header-menuTab-pc{
	
}
.header-menuTab-sp{
	display: none;
}
}

@media only screen and (max-width: 1199px) {
.header-menuTab-pc{
	display: none;	
}
.header-menuTab-sp{

}
.header-menuTab-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    font-size: .8rem;
    letter-spacing: .2em;
}
.header-menuTab-title1 {
    position: absolute;
    left: 11px;
    FONT-WEIGHT: 500;
    bottom: 4px;
    font-size: .8rem;
}	
	.header-menuTab-block {
display: block;
background: #727272;
    width: 60px;
    right: 120px;
    padding: 17px;padding-top: 4px;
    position: absolute;
}
a:hover .header-menuTab-block {
opacity: 0.7;    background: #bbbbbb;
}	
.header-menuTab-block1 {
display: block;

    width: 60px;
    right: 60px;
    padding: 17px;padding-top: 4px;
    position: absolute;
}	
.header-menuTab-item_tel .header-menuTab-icon {
margin-left: auto;
    font-size: 20px;padding-bottom: 3px;
    margin-right: auto;    color: #ffffff;
}
.header-menuTab-item_login .header-menuTab-icon {
    margin-left: auto;
    font-size: 19px;
    padding-bottom: 3px;
    margin-right: auto;
	position: relative;
	top:-7px;left: -2px;
}	
.header-menuTab-title {
 position: absolute;
    left: 0;
    right: 90px;
    bottom: 10px;
    font-size: .8rem;
    position: absolute;
    left: 15px;
    right: 0;
    bottom: 5px;
    font-size: .8rem;
    letter-spacing: .2em;
    font-weight: 500;    color: #ffffff;
}	
}

.gryhaikei{
	background: #ededed;
}
@media (min-width:768px){
.home-section {
    padding-top: 100px;
    padding-bottom: 100px;
	display:block;
    position:relative;

}
.midasic .-en {
    font-family: bebas-neue-by-fontfabric,sans-serif;

    font-style: normal;
    font-size:18px;
 margin-top: 25px;
    letter-spacing: .4em;color:#8b8b8b;
}
.midasic .-jp {
    font-size: 40px;
   font-family: 'Noto Sans Japanese', sans-serif; 
    letter-spacing: .2em;color:#454545;
}	
}

@media (max-width:767px){
.home-section {
    padding-top: 50px;
    padding-bottom: 50px;
	display:block;
    position:relative;
}
.midasic .-en {
font-family: bebas-neue-by-fontfabric,sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 50px;
    font-size: 1rem;
    letter-spacing: .3em;
        color: #8b8b8b;    padding-top: 15px;
}
.midasic .-jp {
    font-size:24px;    color: #454545;
letter-spacing: 4px;
    font-weight: 300;
    font-style: normal;
}	
}
.midasic span {
    display: block;
    line-height: 1;
}
.center{
	text-align: center;
}


/*2カラム2カラム*/
.flex22 {
  display: flex;
  flex-wrap: wrap;

   /* justify-content: center;*/ /* 子要素をflexboxにより中央に配置する */
    /*align-items: center; */ /* 子要素をflexboxにより中央に配置する */
}
 
.flex22 div.flex22_in {
  width: 46%;
  margin: 2%;
}
.flex22 div.flex22_in img{
  width: 100%;
}
/*2カラム2カラム*/


.recommend-img img {
    width: 100%;
}

.recommend-info {
    background: #fff;
    padding: 30px 0;    text-align: center;
}

.recommend-title .-en {

    font-style: normal;
    font-size: 13px;
    letter-spacing: .1em;
    margin-bottom: 6px;line-height: 16px;
}
.recommend-title .-jp {
    font-size: 20px;

    letter-spacing: .1em;
font-weight: 300;
    font-style: normal;padding-bottom: 6px;
}
.recommend-title span {
    display: block;
    line-height: 1;
}

figure {
    overflow: hidden;
}

figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
	width: 100%;
}
figure:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}


.img-responsive {
    display: block;
    width: 100%;
    height: auto;
}

figure {
    margin: 0px !important;
}
.clear{
	clear: both;
}

.service-bnr-title {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 1;
}
.service-bg{
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 769px){
  .service-bg{
    margin: 0 -52px;
  }
}
@media screen and (max-width: 768px){
  .service-bg{
    height: 150px;
  }
}
.service-bg-img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.service-bg-img.-blur{
  background-image: url("../images/top/service_bg_blur.jpg");
}
.service-bg-img.-original{
  background-image: url("../images/top/service_bg.jpg");
  z-index: 1;
}
.service-bnr-wrap{
padding-top: 30px;
}
@media screen and (max-width: 768px){
  .service-bnr-wrap{
padding-top: 20px;
  }
}
.service-bnr{
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px){
  .service-bnr{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.service-bnr-item{
  position: relative;
}
@media screen and (min-width: 769px){
  .service-bnr-item{
    width: 48%;
    margin-right: 4%;
    margin-bottom: 30px;
  }
  .service-bnr-item:nth-child(2n){
    margin-right: 0;
  }
}
@media screen and (max-width: 768px){
  .service-bnr-item{
    margin: 20px 5px;
  }
}
.service-bnr-title{
    position: absolute;

    right: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 1;
}
.service-bnr-title span{
  display: block;
  line-height: 1;
}
.service-bnr-title .-en{

  font-weight: 300;
  font-style: normal;
  font-size: 24px;
font-family: bebas-neue-by-fontfabric,sans-serif;
    letter-spacing: .3em;
}

@media screen and (min-width: 769px) and (max-width: 1112px){
  .service-bnr-title .-en{
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px){
  .service-bnr-title .-en{
    font-size: 1.4rem;
  }
}
.service-bnr-title .-jp{
  font-size: 15px;
  font-size: 1.1rem;
  letter-spacing: .3em;
  margin-top: 20px;font-family: 'Oswald', sans-serif;font-weight: 300;
}

@media screen and (min-width: 769px) and (max-width: 1112px){
  .service-bnr-title .-jp{
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px){
  .service-bnr-title .-jp{
    font-size: 1rem;
    margin-top: 10px;
  }
}
.service-bnr-img{
  overflow: hidden;
}
.service-bnr-img img{
  width: 100%;
}
@media screen and (min-width: 769px){
  .pc769{

  }
  .sp768{
display: none;
  }	
}
@media screen and (max-width: 768px){
  .pc769{
display: none;
  }
  .sp768{

  }	
}
hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #d1d1d1;
}

.area1 p {
    font-size: 12px !important;
    line-height: 1.6em;
	padding-bottom: 15px;

}
.area1 p span {
    display: block;
    font-size: 1.2em;
    font-weight: 600;
}
.kaisha1 {

    font-weight: 700;
	font-size: 16px !important;
	color: #a21b30;
}
.kaisha1::after {
    content: '';
    display: block;
    background: #a21b30;
    height: 1px;
    width: 40px;
    margin-top: 3px;
}


element.style {
}
/*
パンくずリスト
------------------------------------------------*/
@media screen and (min-width: 1293px){
.c-breadcrumb{
  background: #ffffff;
  border-top: 1px solid #fff;
  padding: 10px 30px;
	margin-top:0px;
	position: relative;
}
.c-breadcrumb-item{

  font-weight: 400;
  font-style: normal;
  display: inline;
  vertical-align: middle;
  font-size: 13px;
    color: #a21b30;
  letter-spacing: .06em;
  line-height: 1;
}	
}
@media screen and (max-width: 1292px){
  .c-breadcrumb{
  background: #ffffff;
  border-top: 1px solid #fff;
  padding: 10px 30px;
	margin-top:0px;
	position: relative;
  }
.c-breadcrumb-item{

  font-weight: 400;
  font-style: normal;
  display: inline;
  vertical-align: middle;
  font-size: 11.5px;
    color: #a21b30;
  letter-spacing: .06em;
  line-height: 1;
}	
}


/*
インナー
------------------------------------------------*/
.c-inner{
  width: calc(100% - 45px);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px){
  .c-inner.-pc{
    width: auto;
  }
}

/*
ボタン
------------------------------------------------*/
.c-btn{
  width: 100%;
  position: relative;
  z-index: 1;
  letter-spacing: .4em;
}
@media screen and (min-width: 769px){
  .c-btn{
    height: 60px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px){
  .c-btn{
    height: 50px;
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: center;
    letter-spacing: .1em;
  }
}
.c-btn.-viewMore{
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
  text-indent: .3em;
  /*中央揃え*/
}
@media screen and (min-width: 769px){
  .c-btn.-viewMore{
    max-width: 260px;
  }
}
.c-btn.-viewMore .c-btn-body{
  top: 2px;
}
@media screen and (min-width: 769px){
  .c-btn.-short{
    max-width: 260px;
  }
}
@media screen and (min-width: 769px){
  .c-btn.-primary{
    max-width: 350px;
  }
}
@media screen and (min-width: 769px){
  .c-btn.-large{
    max-width: 450px;
  }
}
.c-btn.-center{
  margin-right: auto;
  margin-left: auto;
}
.c-btn-arrowDown{
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  width: 9px;
  height: 9px;
  border-top: 2px solid #00306d;
  border-right: 2px solid #00306d;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
.c-btn-arrowUp{
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  width: 9px;
  height: 9px;
  border-top: 2px solid #00306d;
  border-right: 2px solid #00306d;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-btn a , .c-btn > span{
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: background .3s ease, color .3s ease;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  border: 1px solid #00306d;
}
@media screen and (min-width: 769px){
  .c-btn a:hover , .c-btn > span:hover{
    background: #dbdbdb;
  }
}
.c-btn-body{
  position: relative;
  margin-right: -.4em;
}
@media screen and (max-width: 768px){
  .c-btn-body{
    margin-right: -.1em;
  }
}
.header-nav-btn .c-btn-body
{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn_hoverAnim a{
  position: relative;
  background: #00306d;
  color: #fff;
  border: none;
  transition: all .3s ease;
}
@media screen and (min-width: 769px){
  .c-btn_hoverAnim a:hover{
    background: #00306d;
  }
}
.c-btn_hoverAnim a:hover:before{
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}
@media screen and (min-width: 769px){
  .c-btn_hoverAnim a:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform-origin: right;
        -ms-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    transition: -webkit-transform .8s cubic-bezier(.19, 1, .22, 1);
    transition: transform .8s cubic-bezier(.19, 1, .22, 1);
    transition: transform .8s cubic-bezier(.19, 1, .22, 1), -webkit-transform .8s cubic-bezier(.19, 1, .22, 1);
    background: #646464;
  }
}
.btn-multi{
    text-align:center;
}
@media screen and (min-width: 769px){
  .btn-multi .c-btn{
    float:left;
    margin: 100px 60px 0;
  }
}
@media screen and (max-width: 768px){
  .btn-multi .c-btn {
    margin-top:20px;
  }
  .btn-multi .c-btn.-viewMore {
    margin-top:60px;
  }
}

.c-breadcrumb-item:last-child:after{
  display: none;
}
.c-breadcrumb-item:after{
  content: "〉";
  display: inline;
  color: #646464;
  position: relative;
  top: -2px;
  margin-left: 5px;
}
_:-ms-input-placeholder, :root .c-breadcrumb-item:after {
  top: 2px;
}
.c-breadcrumb-item a{
  color: #646464;
}
.c-breadcrumb-item a:hover{
  text-decoration: underline;
}

/*
ページの大見出し
------------------------------------------------*/
.c-pageTitle{
  text-align: center;
}
@media screen and (min-width: 769px){
  .c-pageTitle{
    padding: 60px 0 70px;
  }
}
@media screen and (max-width: 768px){
  .c-pageTitle{
    padding: 30px 0 40px;
  }
}
.c-pageTitle span{
  display: block;
  letter-spacing: .4em;
  margin-right: -.4em;
}
@media screen and (min-width: 769px){
  .c-pageTitle.-small{
    padding: 80px 0 110px;
  }
}
@media screen and (max-width: 768px){
  .c-pageTitle.-small{
    padding: 25px 0 45px;
  }
}
.c-pageTitle.-bgGray{
  background: #ededed;
}
.c-pageTitle .-enSmall{

  font-weight: 300;
  font-style: normal;

}
@media screen and (min-width: 769px){
  .c-pageTitle .-enSmall{
    font-size: 1.3rem;
    line-height: 1.3;
    color: #a21b30;
  }
}
@media screen and (max-width: 768px){
  .c-pageTitle .-enSmall{
    font-size: 1rem;    color: #a21b30;
  }
}
.c-pageTitle .-en{

  font-weight: 300;
  font-style: normal;    
	
	color: #ffffff;
    font-weight: 500;
    letter-spacing: .2em;
    text-shadow: 0 0 9px #504949;
}
@media screen and (min-width: 769px){
  .c-pageTitle .-en{
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px){
  .c-pageTitle .-en{
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px){
  .c-pageTitle .-jp{

    font-size: 1rem;    color: #a21b30;font-size: 34px;
 color: #ffffff;
    font-weight: 500;
    letter-spacing: .2em;
    text-shadow: 0 0 9px #504949;
  }
}
@media screen and (max-width: 768px){
  .c-pageTitle .-jp{
    font-size: 21px;
    margin-top: 0px;    color: #ffffff;
    font-weight: 500;
    letter-spacing: .2em;
    text-shadow: 0 0 9px #504949;
  }
}
@media screen and (min-width: 769px){
  .c-pageTitle .-jpLarge{
    font-size: 2.5rem;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px){
  .c-pageTitle .-jpLarge{
    font-size: 2rem;
    letter-spacing: .1em;
    margin-top: 10px;
  }
}



/*
SEARCH
------------------------------------------------*/
.c-search-content{
  background: #ededed;
}
@media screen and (min-width: 769px){
  .c-search-content{
    padding: 120px 0;
  }
}
@media screen and (max-width: 768px){
  .c-search-content{
    padding: 90px 0 60px;
  }
}
@media screen and (min-width: 769px){
  .c-search-content + .c-detailed-search{
    margin-top: 150px;    margin-bottom: 150px;
  }
}
@media screen and (max-width: 768px){
  .c-search-content + .c-detailed-search{
    margin-top: 100px;    margin-bottom: 100px;
  }
}

.c-search-found{
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  margin: 100px 0 40px;
}
@media screen and (max-width: 768px){
  .c-search-found{
    margin: 55px 0 15px;
  }
}
.c-search-found .-sch_count{
  font-family: neue-haas-grotesk-display,sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 34px;
}

.list_mypage_banner{
  margin-top: 120px;
  background-color:#ededed;
}
@media screen and (min-width: 769px){
.list_mypage_banner div{
  margin:0 auto;
  max-width:1149px;
  padding-top: 84px;
  padding-bottom: 84px;
}
}
@media screen and (max-width: 768px){
.list_mypage_banner div{
    margin:0 auto;
    max-width:95%;
    padding-top: 40px;
    padding-bottom: 40px;
}
.list_mypage_banner{
    margin-top: 60px;
}
}
/*
さらに詳しく絞り込む
------------------------------------------------*/
@media screen and (min-width: 769px){
  .c-detailed-search{
    margin-top: 120px;
  }
}

@media screen and (max-width: 768px){
  .c-detailed-search{
    margin-top: 60px;
  }
}

@media screen and (min-width: 769px){
  .c-detailed-search table th{
    width: 23%;
  }
}

@media screen and (max-width: 768px){
  .c-detailed-search table tr{
    display: block;
    margin-bottom: 15px;
  }
  .c-detailed-search table tr:last-child{
    margin-bottom: 0;
  }
}

.c-detailed-search-col4{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (min-width: 769px){
  .c-detailed-search-col4 li{
    width: 25%;
    margin-top: 20px;
  }
  .c-detailed-search-col4 li:nth-child(-n+4){
    margin-top: 0;
  }
}
@media screen and (max-width: 768px){
  .c-detailed-search-col4 li{
    width: 50%;
    margin-top: 28px;
  }
  .c-detailed-search-col4 li:nth-child(-n+2){
    margin-top: 0;
  }
}

@media screen and (min-width: 769px){
  .c-detailed-search-btn{
    margin-top: 70px;
  }
}

@media screen and (max-width: 768px){
  .c-detailed-search-btn{
    margin-top: 35px;
  }
}

/*
フォーム STEP
------------------------------------------------*/
.c-form-step{
  background: #ededed;
}
@media screen and (min-width: 769px){
  .c-form-step{
    padding: 55px 0;
  }
}
@media screen and (max-width: 768px){
  .c-form-step{
    padding: 40px 0;
  }
}
.c-form-step-list{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-form-step-item{
  text-align: center;
  position: relative;
}
@media screen and (min-width: 769px){
  .c-form-step-item{
    margin-right: 135px;
  }
}
@media screen and (max-width: 768px){
  .c-form-step-item{
    margin-right: 80px;
  }
}
.c-form-step-item:last-child{
  margin-right: 0;
}
.c-form-step-item:last-child:after{
  display: none;
}
.c-form-step-item:after{
  content: "";
  display: block;
  height: 1px;
  background: #454545;
  position: absolute;
}
@media screen and (min-width: 769px){
  .c-form-step-item:after{
    width: 130px;
    top: 30px;
    right: -135px;
  }
}
@media screen and (max-width: 768px){
  .c-form-step-item:after{
    width: 70px;
    top: 22px;
    right: -78px;
  }
}
.c-form-step-item.-active .-number{
  background: #a21b30;
  color: #fff;
}
.c-form-step-item span{
  display: block;
}
.c-form-step-item .-number{
  border-radius: 100%;
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
}
@media screen and (min-width: 769px){
  .c-form-step-item .-number{
    font-size: 3rem;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (max-width: 768px){
  .c-form-step-item .-number{
    font-size: 2rem;
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.c-form-step-item .-text{
  letter-spacing: .6em;
  margin-right: -.6em;
}
@media screen and (min-width: 769px){
  .c-form-step-item .-text{
    font-size: 1.4rem;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px){
  .c-form-step-item .-text{
    font-size: 1.1rem;
    margin-top: 5px;
  }
}
@media screen and (min-width: 769px){
  .c-form-step table{
    margin-top: 70px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px){
  .c-form-step table{
    margin-top: 30px;
  }
}
.c-form-step table th{
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (min-width: 769px){
  .c-form-step table th{
    width: 23%;
  }
}
.c-form-step table td{
  background: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 769px){
  .c-form-step table td{
    padding: 10px;
  }
}
@media screen and (max-width: 768px){
  .c-form-step table td{
    padding: 15px;
  }
}
.c-form-step-bkn-img{
  max-width: 150px;
  width: 18%;
}
@media screen and (min-width: 769px){
  .c-form-step-bkn-img{
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px){
  .c-form-step-bkn-img{
    margin-right: 10px;
    width: 50%;
  }
}
.c-form-step-bkn-text{
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.7;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*
物件検索｜検索結果一覧
------------------------------------------------*/
@media screen and (min-width: 769px){
  .search-archive-list{
    margin: 0px 0 40px;
  }
}

@media screen and (max-width: 768px){
  .search-archive-list{
    margin: 0px 0 40px;
  }
}

@media screen and (min-width: 769px){
  .search-archive-item{
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom:1px solid #dbdbdb;
  }
}

@media screen and (max-width: 768px){
  .search-archive-item{
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom:1px solid #dbdbdb;
  }
}

.search-archive-item:last-child{
  padding-bottom: 0;
  border-bottom:none;
}

@media screen and (min-width: 769px){
  .search-archive-item .c-property-item-body{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 769px){
  .search-archive-item .c-property-item-thumb{
    max-width: 585px;
    width: 52%;
    text-align: center;
  }
}

@media screen and (max-width: 768px){
  .search-archive-item .c-property-item-thumb-leftLabel{
    font-size: 1rem;
    height: 23px;
    line-height: 23px;
    padding: 0 10px;
  }
}

@media screen and (max-width: 768px){
  .search-archive-item .c-property-item-thumb-rightLabel{
    font-size: 1rem;
    height: 23px;
    line-height: 23px;
    padding: 0 7px 0 10px;
    min-width: 90px;
  }
}

.search-archive-item .c-property-item-detail{
  position: relative;
}
@media screen and (min-width: 769px){
  .search-archive-item .c-property-item-detail{
    max-width: 505px;
    width: 45%;
  }
}
@media screen and (max-width: 768px){
  .search-archive-item .c-property-item-detail{
    margin-top: 20px;
  }
}

.search-archive-item .c-property-item-detail-info{
  padding-top: 8px;
}
@media screen and (max-width: 768px){
  .search-archive-item .c-property-item-detail-info{
    margin-bottom: 17px;

  }
}

@media screen and (min-width: 769px){
  .search-archive-item .c-property-item-detail-price{
font-size: 2rem !important;color: #a21b30;
  }
}

@media screen and (max-width: 768px){
  .search-archive-item .c-property-item-detail-price{
font-size: 1.6rem !important;color: #a21b30;
  }
}

@media screen and (min-width: 769px){
  .search-archive-item .c-property-item-detail-price span{
    font-size: 18px;
  }
}

@media screen and (max-width: 768px){
  .search-archive-item .c-property-item-detail-price span{
    font-size: 15px;
  }
}

.search-archive-lead{
  letter-spacing: .1em;
  border-bottom: 1px solid #00306d;
  box-sizing: border-box;
  word-break: break-all;
}
@media screen and (min-width: 769px){
  .search-archive-lead{
    font-size: 1.5rem;
    line-height: 2.2;
    padding: 15px 0 10px;
    width: calc( 100% - 70px);
    min-height: 60px;
  }
}
@media screen and (max-width: 768px){
  .search-archive-lead{
    font-size: 1.3rem;
    line-height: 1.6;
    min-height: 50px;
    padding-bottom: 10px;
    width: calc( 100% - 60px);
  }
}

.search-archive-check{
  position: absolute;
  top: 0;
  right: 0;
  background: #ededed;
}
@media screen and (min-width: 769px){
  .search-archive-check{
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 768px){
  .search-archive-check{
    width: 50px;
    height: 50px;
  }
}
.search-archive-check label{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-archive-check .checkbox-text{
  position: absolute;
  width: 20px;
  height: 18px;
}

.search-archive-info{
  color: #646464;
  letter-spacing: .1em;
  margin-top: 10px;
}
@media screen and (min-width: 769px){
  .search-archive-info{
font-size: 12px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px){
  .search-archive-info{
font-size: 12px;
    line-height: 1.9;
  }
}
.search-archive-info dl:after{
  content: "";
  display: block;
  clear: both;
}
.search-archive-info dt{
  float: left;
}
@media screen and (min-width: 769px){
  .search-archive-info dt{
    width: 80px;
  }
}
@media screen and (max-width: 768px){
  .search-archive-info dt{
    width: 67px;
  }
}
.search-archive-info dd{
  float: left;
}

.search-archive-btns{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}
.search-archive-btns-item{
  width: 33%;
}
@media screen and (min-width: 769px){
  .search-archive-btns-item{
    margin-right: 5px;
  }
}
@media screen and (max-width: 768px){
  .search-archive-btns-item{
    margin-right: 10px;
  }
}
.search-archive-btns-item:last-child{
  margin-right: 0;
}
@media screen and (min-width: 769px){
  .search-archive-btns-item .c-btn{
    height: 50px;
  }
}
@media screen and (max-width: 768px){
  .search-archive-btns-item .c-btn{
    height: 40px;
    font-size: 0.5rem;
  }
}
.search-archive-btns-item .c-btn a{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.search-archive-btns-item .c-btn a , .c-btn > span{
  background-color: #a21b30;
  color: #FFFFFF;
  border: 1px solid #a21b30;
}

@media screen and (min-width: 769px){
  .search-archive-btns-item .c-btn a:hover, .c-btn > span:hover {
    background: #dbdbdb;
    color: #a21b30;
  }
}
/*
物件検索｜エリアから探す
------------------------------------------------*/
.search-area-item{
  margin-bottom: 120px;
}
@media screen and (max-width: 768px){
  .search-area-item{
    margin-bottom: 85px;
  }
}
.search-area-item:last-child{
  margin-bottom: 0;
}

.search-area-name{
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (min-width: 769px){
  .search-area-name-list{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 8%;
  }
  .search-area-name-list:nth-child(odd){
    background: #dbdbdb;
  }
}
.search-area-name-item{
  padding: 15px 15px 15px 0;
}
@media screen and (min-width: 769px){
  .search-area-name-item{
    width: 25%;
  }
}
@media screen and (max-width: 768px){
  .search-area-name-item{
    padding-left: 23px;
    padding-right: 23px;
  }
  .search-area-name-item:nth-child(odd){
    background: #dbdbdb;
  }
}

/*
物件検索｜路線・駅から探す
------------------------------------------------*/
@media screen and (min-width: 769px){
  .search-ensen .search-area-name-item{
    width: 34%;
  }
}

@media screen and (max-width: 768px){
  .search-ensen .search-area-name-list:nth-child(even) .search-area-name-item:nth-child(even){
    background: #dbdbdb;
  }
  .search-ensen .search-area-name-list:nth-child(even) .search-area-name-item:nth-child(odd){
    background: #ededed;
  }
}

/*
物件検索｜学区から探す
------------------------------------------------*/
.search-school .checkbox-text:before{
  display: none;
}

.search-school .checkbox-text{
  padding-left: 0;
}

.search-school .c-search-found{
  margin-bottom: 0;
}

/*
物件検索｜地図から探す
------------------------------------------------*/
.search-map{
  padding-bottom: 0;
}
@media screen and (min-width: 769px){
  .search-map-content{
    padding: 160px 0;
  }
}
@media screen and (max-width: 768px){
  .search-map-content{
    padding-bottom: 110px;
  }
}
.search-map-inner{
  max-width: 1000px;
}
.search-map-use{
  margin-top: 120px;
}
@media screen and (max-width: 768px){
  .search-map-use{
    margin-top: 70px;
  }
}
.search-map-use-subTitle{
  margin-bottom: 35px;
}
.search-map-use-item{
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 25px;
}
.search-map-use-item:last-child{
  margin-bottom: 0;
}
.search-map-use-title{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.search-map-use-text{
  color: #646464;
  margin-left: 1.5em;
}
@media screen and (min-width: 769px){
  .search-map-box{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 769px){
  .search-map #map{
    max-width: 635px;
    width: 64%;
    height: 589px;
  }
}
@media screen and (max-width: 768px){
  .search-map #map{
    width: 100%;
    height: 306px;
  }
}
.search-map #map_bkn{
  overflow-x: hidden;
  height: 589px;
}
@media screen and (min-width: 769px){
  .search-map #map_bkn{
    max-width: 333px;
    width: 34%;
  }
}
@media screen and (max-width: 768px){
  .search-map #map_bkn{
    margin-top: 40px;
  }
}
.search-map #map_bkn_navi{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: .06em;
  margin-bottom: 5px;
}
.search-map #map_bkn_navi #prev , .search-map #map_bkn_navi #next{
  width: 49.5%;
  background: #dbdbdb;
}
.search-map #map_bkn_navi #next{
  text-align: right;
  margin: 0 0 0 auto;
}
.search-map #map_bkn_navi a{
  display: block;
  padding: 5px 10px;
}
.search-map #bknList{
  background: #fff;
  padding: 25px 15px;
}
.search-map #bknList li{
  margin-bottom: 30px;
}
.search-map #bknList li:last-child{
  margin-bottom: 0;
}
.search-map #bknList .info{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.search-map #bknList .thumbnail{
  max-width: 140px;
  margin-right: 15px;
  width: 47%;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.search-map #bknList .text{
  letter-spacing: .06em;
}
.search-map #bknList .price{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}
.search-map #bknList .price span{
  font-size: 25px;
  font-size: 2.5rem;
  font-family: neue-haas-grotesk-display,sans-serif;
  font-weight: 500;
  font-style: normal;
}
.search-map #bknList .address , .search-map #bknList .plan{
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #646464;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.search-map #bknList .address{
  margin-top: 10px;
}
.search-map #bknList .btn_area{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
  height: 40px;
}
.search-map #bknList .btn{
  background: #00306d;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48%;
  height: 100%;
}

/*
物件検索｜通勤時間から探す
------------------------------------------------*/
.search-station-dist{
  margin-bottom: 110px;
}
@media screen and (max-width: 768px){
  .search-station-dist{
    margin-bottom: 50px;
  }
}
.search-station-dist-item{
  margin-bottom: 30px;
  position: relative;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (min-width: 769px){
  .search-station-dist-item{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.search-station-dist-box{
  background: #dbdbdb;
}
@media screen and (min-width: 769px){
  .search-station-dist-box{
    margin-right: 5px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5px;
    height: 45px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px){
  .search-station-dist-box{
    padding: 15px;
    margin-bottom: 7px;
  }
}
@media screen and (min-width: 769px){
  .search-station-dist-box.-required_time{
    width: 435px;
  }
}
@media screen and (min-width: 769px){
  .search-station-dist-box.-transfer_num{
    width: 300px;
  }
}
@media screen and (max-width: 768px){
  .search-station-dist-box.-transfer_num{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 769px){
  .search-station-dist-box input{
    width: 180px;
    height: 35px;
  }
}
@media screen and (max-width: 768px){
  .search-station-dist-box input{
    height: 45px;
  }
}
.search-station-dist-box .select-wrap{
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 769px){
  .search-station-dist-box .select-wrap{
    width: 180px;
  }
}
@media screen and (max-width: 768px){
  .search-station-dist-box .select-wrap select{
    height: 45px;
  }
}
.search-station-dist-time{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 769px){
  .search-station-dist-time{
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 768px){
  .search-station-dist-time{
    margin-top: 5px;
  }
}
.search-station-dist-text{
  font-size: 13px;
  font-size: 1.3rem;
  margin-right: 10px;
  color: #646464;
}
@media screen and (min-width: 769px){
  .search-station-dist-text{
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px){
  .search-station-dist-text{
    width: 100px;
  }
}
@media screen and (min-width: 769px){
  .search-station-dist-btn{
    max-width: 200px;
    height: 45px;
    letter-spacing: .4em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .search-station-dist-btn{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
    -webkit-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
            transform: translate(0, 100%);
  }
}

/*
物件検索｜検索結果画面詳細
------------------------------------------------*/
@media screen and (min-width: 769px){
  .search-detail .c-kv_p2-img{
    height: 543px;
  }
}

@media screen and (min-width: 769px){
  .search-detail-inner{
    max-width: 1060px;
  }
}

@media screen and (max-width: 768px){
  .search-detail .c-kv_p2-info{
    padding: 20px 0;
  }
}

@media screen and (max-width: 768px){
  .search-detail .c-kv_p2-text{
    margin-top: 10px;
  }
}

.search-detail-contactWrap{
  border-top: 1px solid #a21b30;
  padding-top: 25px;
}
.search-detail-contactWrap.member{
  border: none;
}
@media screen and (min-width: 769px){
  .search-detail-contactWrap{
    width: 350px;
  }
  .search-detail-contactWrap.member{
    width: 420px;
  }
}
@media screen and (max-width: 768px){
  .search-detail-contactWrap{
    margin-top: 45px;
  }
}
@media screen and (min-width: 769px){
  .search-detail-contactWrap .search-detail-contact{
    margin-left: 5px;
  }
}
@media screen and (min-width: 769px){
  .search-detail-contactWrap .search-detail-btns{
    margin-top: 15px;
  }
}

.search-detail-tel{
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px){
  .search-detail-tel{
    display: inline-block;
  }
}
.search-detail-tel a{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-detail-tel .-icon{
  margin-right: 9px;
  position: relative;
}
@media screen and (min-width: 769px){
  .search-detail-tel .-icon{
    max-width: 34px;
  }
}
@media screen and (max-width: 768px){
  .search-detail-tel .-icon{
    max-width: 28px;
  }
}
.search-detail-tel .-number{
  font-weight: 400;
  font-style: normal;
  letter-spacing: .12em;
}
@media screen and (min-width: 769px){
  .search-detail-tel .-number{
    font-size: 1.6rem;color: #a21b30;
  }
}
@media screen and (max-width: 768px){
  .search-detail-tel .-number{
    font-size: 1.2rem;color: #a21b30;
  }
}
.search-detail-tel .-notes{
  letter-spacing: .1em;
}
@media screen and (min-width: 769px){
  .search-detail-tel .-notes{
    font-size: 1.2rem;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px){
  .search-detail-tel .-notes{
    font-size: 1.1rem;
    margin-top: 6px;
  }
}

.search-detail-number{
  color: #646464;
  letter-spacing: .06em;
  margin-top: 4px;
}
@media screen and (min-width: 769px){
  .search-detail-number{
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px){
  .search-detail-number{
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 768px){
  .search-detail-btns{
    margin-top: 15px;
  }
}

.search-detail-btns-item{
  margin-bottom: 5px;
}
.search-detail-btns-item:last-child{
  margin-bottom: 0;
}
@media screen and (min-width: 769px){
  .search-detail-btns-item .c-btn{
    height: 50px;
  }
}
@media screen and (max-width: 768px){
  .search-detail-btns-item .c-btn{
    font-size: 1rem;
  }
}

@media screen and (min-width: 769px){
  .search-detail-property{
    padding: 90px 0 80px;
  }
}

@media screen and (max-width: 768px){
  .search-detail-property{
    padding: 20px 0 45px;
  }
}

@media screen and (min-width: 769px){
  .search-detail-property .c-property-keyword-item{
    min-width: 114px;
  }
}

@media screen and (min-width: 769px){
  .search-detail-property .c-property-item-detail-info{

    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1112px){
  .search-detail-property .c-property-item-detail-info{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 53px;
  }
}

@media screen and (max-width: 768px){
  .search-detail-property .c-property-item-detail-info{
    margin-top: 5px;
    font-size: 1rem;
    min-height: 41px;
  }
}

@media screen and (min-width: 769px){
  .search-detail-property .c-property-item-detail-price{
    font-size: 2.8rem;    color: #a21b30;
  }
}

@media screen and (max-width: 1112px){
  .search-detail-property .c-property-item-detail-price{
    text-align: right;    color: #a21b30;
  }
}

@media screen and (max-width: 768px){
  .search-detail-property .c-property-item-detail-price{
    font-size: 1.6rem;    color: #a21b30;
  }
}

@media screen and (min-width: 769px){
  .search-detail-property .c-property-item-detail-price span{
    font-size: 1.5rem;    color: #a21b30;
  }
}

@media screen and (max-width: 768px){
  .search-detail-property .c-property-item-detail-price span{
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1112px){
  .search-detail-property .c-property-keyword{
    margin-top: 5px;
  }
}

@media screen and (min-width: 769px){
  .search-detail-property-body{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 769px){
  .search-detail-property-main{
    max-width: 590px;
    width: calc(95% - 350px);
  }
}

.search-detail-property-name{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;    color: #a21b30;
  font-style: normal;
  letter-spacing: .1em;
  line-height: 1.7;
}
@media screen and (min-width: 769px){
  .search-detail-property-name{
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px){
  .search-detail-property-name{
    font-size: 1.5rem;
  }
}

.search-detail-property-address{
  color: #646464;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .1em;
  line-height: 1.7;
}
@media screen and (min-width: 769px){
  .search-detail-property-address{
    font-size: 1.2rem;
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px){
  .search-detail-property-address{
    font-size: 1rem;
  }
}

.search-detail-property-block{
  position: relative;
}
@media screen and (min-width: 1113px){
  .search-detail-property-block{
    border-bottom: 1px solid #00306d;
  }
}

@media screen and (min-width: 1113px){
  .search-detail-property-priceWrap{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 10px;
  }
}

.search-detail-property-loan{
  letter-spacing: .05em;
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box;
}
@media screen and (min-width: 1113px){
  .search-detail-property-loan{
    width: 260px;
  }
}
@media screen and (max-width: 1112px){
  .search-detail-property-loan{
    margin-top: 30px;
  }
}
.search-detail-property-loan a{
  display: block;
  color: #646464;
  background: #ededed;
  padding: 11px 0;
  text-align: center;
}
.search-detail-property-loan span{
  position: relative;
  padding-left: 32px;
}
.search-detail-property-loan span:after{
  content: "";
  display: block;
  position: absolute;
  background: url("../images/search/detail/icon_loan.png") no-repeat left center;
  background-size: cover;
  width: 24px;
  height: 25px;
  margin: auto 0;
  top: 0;
  bottom: 0;
  left: 0;
}

.search-detail-photo{
  background: #ededed;
  position: relative;
}
.search-detail-photo:after{
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 0;
}
@media screen and (min-width: 769px){
  .search-detail-photo:after{

  }
}
@media screen and (max-width: 768px){
  .search-detail-photo:after{

  }
}
@media screen and (min-width: 769px){
  .search-detail-photo{
    padding: 100px 0;
  }
}
@media screen and (max-width: 768px){
  .search-detail-photo{
    padding: 40px 0;
  }
}
@media screen and (min-width: 769px){
  .search-detail-photo-list{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media screen and (min-width: 769px){
  .search-detail-photo-item{
    width: 47%;
    margin: 50px 6% 0 0;
    position:relative;
  }
  .search-detail-photo-item:nth-child(2n){
    margin-right: 0;
  }
  .search-detail-photo-item:nth-child(-n + 2){
    margin-top: 0;
  }
}
@media screen and (max-width: 768px){
  .search-detail-photo-item{
    margin-bottom: 35px;
    position:relative;
  }
  .search-detail-photo-item:last-child{
    margin-bottom: 0;
  }
}
.search-detail-photo-text{
  color: #646464;
  letter-spacing: .1em;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px){
  .search-detail-photo-text{
    font-size: 1.4rem;
    line-height: 1.7;
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px){
  .search-detail-photo-text{
    font-size: 1.1rem;
    line-height: 1.9;
    margin-top: 15px;
  }
}

.search-detail-point{
  position: relative;
}
@media screen and (min-width: 769px){
  .search-detail-point{


    padding: 90px 0 90px;
    min-height: 430px;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point{

    padding: 50px 0 50px;
  }
}
/*
.search-detail-point:after{
  content: "";
  display: block;
  position: absolute;
  right: 0;
  z-index: 0;
}
@media screen and (min-width: 769px){
  .search-detail-point:after{
    background: #fff;
    height: 45px;
    left: 0;
    bottom: 0;
  }
}
*/
@media screen and (max-width: 768px){
.search-detail-point:after{
  content: "";
  display: block;
  position: absolute;
  right: 0;
  z-index: 0;
}
  .search-detail-point:after{
    top: 0;
    height: 100%;
    width: 88%;
    background: #ededed;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point .search-detail-contactWrap{
    margin-top: 30px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point .search-detail-tel .-icon{
    max-width: 25px;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point .search-detail-tel .-number{
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point .search-detail-tel .-notes{
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point .search-detail-number{
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point .search-detail-btns-item .c-btn{
    font-size: 1rem !important;
  }
}
.search-detail-point-body{
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px){
  .search-detail-point-main{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .search-detail-point-main{
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point-main{
    margin-top: 25px;
  }
}
@media screen and (min-width: 769px){
  .search-detail-point-img{
    max-width: 250px;
    width: 24%;
    margin-right: 5%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .search-detail-point-img{
    margin-right: 3%;
    width: 20%;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point-img{
    width: 60%;
  }
}
@media screen and (min-width: 769px){
  .search-detail-point-block{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 73%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .search-detail-point-block{
    width: 78%;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point-block{
    width: 85%;
    margin: 30px 0 0 auto;
  }
}
@media screen and (min-width: 1113px){
  .search-detail-point-info{
    max-width: 360px;
  }
}
@media screen and (min-width: 769px){
  .search-detail-point-info{
    width: calc(97% - 350px);
  }
}
@media screen and (min-width: 769px){
  .search-detail-point-name{
    font-size: 1.5rem;
    letter-spacing: .04em;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point-name{
    font-size: 1.3rem;
    letter-spacing: .05em;
  }
}
.search-detail-point-comment{
  color: #646464;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .1em;
  margin-top: 10px;
}
@media screen and (min-width: 769px){
  .search-detail-point-comment{
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point-comment{
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.search-detail-photo-slider{
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px){
  .search-detail-photo-slider{
    margin-top: 135px;
  }
}
@media screen and (max-width: 768px){
  .search-detail-photo-slider{
    margin-top: 65px;
  }
}
@media screen and (min-width: 769px){
  .search-detail-photo-slider-item{
    margin-right: 20px;
    width: 330px;
  }
}
@media screen and (max-width: 768px){
  .search-detail-photo-slider-item{
    margin: 0 7px;
  }
}
.search-detail-photo-slider-item img{
  width: 100%;
}

.detail_main_image_icon{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.detail_main_image_icon div{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .2em;
  text-align: center;
  padding: 0 15px;
  margin-bottom:5px;
  height: 28px;
  line-height: 28px;
  white-space: nowrap;
  min-width: 110px;
}
.detail_main_image_icon .-only{
  background: #245426;
  color: #FFFFFF;
}
.detail_main_image_icon .-openhouse{
  background: #FFCC00;
  color: #00306d;
}

/*


/*
SEARCH
検索カテゴリー
------------------------------------------------*/
.c-search-type-list{
  max-width: 1145px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
}
@media screen and (max-width: 768px){
  .c-search-type-list{
    height: 50px;
  }
}

.c-search-type-item{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
  letter-spacing: .3em;
  width: 33.3%;
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;color: #a21b30;
}
@media screen and (max-width: 768px){
  .c-search-type-item{
    font-size: 1.4rem;
    letter-spacing: .1em;
  }
}
.c-search-type-item.-active a{
  background: #ededed;
}
.c-search-type-item a{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-bottom: 15px;
  box-sizing: border-box;
  transition: background .8s cubic-bezier(.19, 1, .22, 1);
	color: #a21b30;
}
@media screen and (max-width: 768px){
  .c-search-type-item a{
    padding-bottom: 8px;
	  font-size: 13px;
  }
}
.c-search-type-item a:after{
  content: "";
  display: block;
  border-top: 2px solid #a21b30;
  border-right: 2px solid #a21b30;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  width: 9px;
  height: 9px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  margin: 0 auto;
}
@media screen and (max-width: 768px){
  .c-search-type-item a:after{
    width: 7px;
    height: 7px;
    bottom: 8px;
  }
}

/* hoverアニメーション*/

  .c-search-type-item a:hover{
    background: #ededed;
  }


/*
ページの小見出し
------------------------------------------------*/
.c-subTitle{

  font-weight: 600;
  font-style: normal;
  letter-spacing: .1em;
  line-height: 1.7;    color: #a21b30;
}
@media screen and (min-width: 769px){
  .c-subTitle{
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px){
  .c-subTitle{
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px){
  .c-subTitle.-small{
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 769px){
  .c-subTitle.-primary{
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px){
  .c-subTitle.-primary{
    margin-bottom: 30px;
  }
}

/*
インナー
------------------------------------------------*/
.c-inner.-primary{
  max-width: 1140px;
}

.c-inner.-large{
  max-width: 1366px;
}

.c-inner.gray-bg{
  background-color:#dbdbdb;
}
.search-btn2 .c-btn
{
  letter-spacing: 5px;
}
@media screen and (min-width: 769px){
  .c-inner.-sp{
    width: auto;
  }
  .c-inner.gray-bg{
    position:relative;
    margin-top:40px;
    max-width: 1140px;
    padding:20px;
  }
  .c-inner.gray-bg .c-search-found {
    margin: 0;
    position: absolute;
    left: 25px;
    top: 30px;    color: #a21b30;
  }
  .search-btn2
  {
    margin:30px auto 0;
    max-width: 1140px;
  }
}
@media screen and (max-width: 768px){
  .c-inner.gray-bg{
    padding:20px;
    width:100%;
    margin-top:30px;    color: #a21b30;
  }
  .c-inner.gray-bg .c-search-found{
    margin-top:0px;
  }
  .search-btn2
  {
    margin-top:30px;
    padding:20px;
    width:100%;
  }
}

/*
ボタン
------------------------------------------------*/
.c-btn{
  width: 100%;
  position: relative;
  z-index: 1;
  letter-spacing: .4em;
}
@media screen and (min-width: 769px){
  .c-btn{
    height: 60px;
font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px){
  .c-btn{
    height: 50px;
    line-height: 1.7;
    text-align: center;
    letter-spacing: 1px;    color: #a21b30;font-size: 0.8rem;
  }
}
.c-btn.-viewMore{
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
  text-indent: .3em;
  /*中央揃え*/
}
@media screen and (min-width: 769px){
  .c-btn.-viewMore{
    max-width: 260px;
  }
}
.c-btn.-viewMore .c-btn-body{
  top: 2px;
}
@media screen and (min-width: 769px){
  .c-btn.-short{
    max-width: 260px;
  }
}
@media screen and (min-width: 769px){
  .c-btn.-primary{
    max-width: 350px;
  }
}
@media screen and (min-width: 769px){
  .c-btn.-large{
    max-width: 450px;
  }
}
.c-btn.-center{
  margin-right: auto;
  margin-left: auto;
}
.c-btn-arrowDown{
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  width: 9px;
  height: 9px;
  border-top: 2px solid #00306d;
  border-right: 2px solid #00306d;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
.c-btn-arrowUp{
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  width: 9px;
  height: 9px;
  border-top: 2px solid #a21b30;
  border-right: 2px solid #a21b30;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-btn a , .c-btn > span{
  position: relative;    background: #fff;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: background .3s ease, color .3s ease;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  border: 1px solid #a21b30;color: #a21b30;
}

  .c-btn a:hover , .c-btn > span:hover{
    background: #dbdbdb;
  }

.c-btn-body{
  position: relative;
  margin-right: -.4em;
}
@media screen and (max-width: 768px){
  .c-btn-body{
    margin-right: -.1em;
  }
}
.header-nav-btn .c-btn-body
{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn_hoverAnim a{
  position: relative;
  background: #00306d;
  color: #fff;
  border: none;
  transition: all .3s ease;
}
@media screen and (min-width: 769px){
  .c-btn_hoverAnim a:hover{
    background: #00306d;
  }
}
.c-btn_hoverAnim a:hover:before{
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}
@media screen and (min-width: 769px){
  .c-btn_hoverAnim a:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform-origin: right;
        -ms-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    transition: -webkit-transform .8s cubic-bezier(.19, 1, .22, 1);
    transition: transform .8s cubic-bezier(.19, 1, .22, 1);
    transition: transform .8s cubic-bezier(.19, 1, .22, 1), -webkit-transform .8s cubic-bezier(.19, 1, .22, 1);
    background: #646464;
  }
}
.btn-multi{
    text-align:center;
}
@media screen and (min-width: 769px){
  .btn-multi .c-btn{
    float:left;
    margin: 100px 60px 0;
  }
}
@media screen and (max-width: 768px){
  .btn-multi .c-btn {

    margin-top:20px;
  }
  .btn-multi .c-btn.-viewMore {
    margin-top:60px;
  }
}


/*
表
------------------------------------------------*/
table{
  border-collapse: collapse;
  width: 100%;
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}
table tr{
  border-bottom: 1px solid #fff;
  vertical-align: top;
}
table tr:last-child{
  border-bottom: none;
}
table th{
  background: #dbdbdb;
  color: #646464;
  text-align: left;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 769px){
  table th{
    padding: 20px;
  }
}
@media screen and (max-width: 768px){
  table th{
    display: block;
    padding: 10px 15px;
  }
}
table th.-middle{
  vertical-align: middle;
}
table th .must{
  color: #da364f;
  margin-left: .5em;
}
table td{
  background: #ededed;
  vertical-align: top;
}
@media screen and (min-width: 769px){
  table td{
    padding: 20px 50px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  table td{
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px){
  table td{
    display: block;
    padding: 20px 15px;
  }
}


/* checkbox */
.checkbox{
  display: none;
}

.checkbox-text{
  padding-left: 35px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  line-height: 1.3;
}
.checkbox-text:hover{
  cursor: pointer;
}
.checkbox-text.-noText{
  padding-left: 0;
}
.checkbox-text .-number{
  font-size: 10px;

  color: #646464;
  vertical-align: middle;
}
_:-ms-input-placeholder, :root .checkbox-text .-number {
  vertical-align: baseline;
}

.checkbox-text:before{
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #a9a9a9;
  border-radius: 3px;
  background: #fff;
}
_:-ms-input-placeholder, :root .checkbox-text:before {
  top: -6px;
}
_:-ms-input-placeholder, :root .search-archive-check .checkbox-text:before {
  top: -10px;
  left:-10px;
}


.checkbox:checked + .checkbox-text:before{
  background: #a21b30;
}

.checkbox:checked + .checkbox-text:after{
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 7px;
  width: 7px;
  height: 9px;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
_:-ms-input-placeholder, :root .checkbox:checked + .checkbox-text:after {
  top: -2px;
}
_:-ms-input-placeholder, :root  .search-archive-check .checkbox:checked + .checkbox-text:after {
  top: -6px;
  left:-4px;
}



.checkbox-text.-large:before{
  top: 0;
}
_:-ms-input-placeholder, :root .checkbox-text.-large:before {
  top: -4px;
}

.checkbox:checked + .checkbox-text.-large:after{
  top: 4px;
}
_:-ms-input-placeholder, :root .checkbox:checked + .checkbox-text.-large:after {
  top: 0px;
}

/* radio */
.radio{
  display: none;
}

.radio-text{
  padding-left: 35px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 1.3;
}
.radio-text:hover{
  cursor: pointer;
}
.radio-text.-bold{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.radio-text:before{
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 50%;
  background: #fff;
}
_:-ms-input-placeholder, :root .radio-text:before {
  top: -6px;
}

.radio:checked + .radio-text:before{
  background: #a21b30;
}

.radio:checked + .radio-text:after{
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 6px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}
_:-ms-input-placeholder, :root .radio:checked + .radio-text:after {
  top: 0px;
}

.radio-text.-large{
  font-size: 15px;

}

.radio-text.-large:before{
  top: 0;
}
_:-ms-input-placeholder, :root .radio-text.-large:before {
  top: -4px;
}

.radio:checked + .radio-text.-large:after{
  top: 6px;
}
_:-ms-input-placeholder, :root .radio:checked + .radio-text.-large:after {
  top: 2px;
}

/* select */
.select-wrap{
  position: relative;
}

.select-wrap:before{
  content: "";
  z-index: 1;
  position: absolute;
  right: 15px;
  top: -2px;
  bottom: 0;
  color: #a21b30;
  pointer-events: none;
  border-top: 2px solid #a21b30;
  border-right: 2px solid #a21b30;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  margin: auto 0;
}

select{
  outline: none;
     -moz-appearance: none;
  text-indent: .01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
          appearance: none;
  -webkit-appearance: none;
     -moz-appearance: none;
  letter-spacing: inherit;
  height: 35px;
  padding: 0 12px;
  border: 0;
  color: #a21b30;
  width: 100%;
  border-radius: 0;
  background: #fff;
  color: #a21b30;
}
select:hover{
  cursor: pointer;
}

select option{
  background-color: #fff;
  color: #00306d;
}

select::-ms-expand{
  display: none;
}

select:-moz-focusring{
  color: transparent;
  text-shadow: 0 0 0 #00306d;
}

@media screen and (min-width: 769px){
  .select-line{
    margin: 0 25px;
  }
}

@media screen and (max-width: 768px){
  .select-line{
    margin: 0 10px;
  }
}

.select-col2{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 769px){
  .select-col2 .select-wrap{
    max-width: 180px;
    width: 100%;
  }
}
@media screen and (max-width: 768px){
  .select-col2 .select-wrap{
    width: 50%;
  }
}
.main{
  overflow: hidden;
}

/*
PCとSPの表示切り替え
------------------------------------------------*/
.c-onlyiphone5{
  display: none;
}

@media screen and (max-width: 1112px){
  .c-ipad{
    display: none;
  }
}

@media screen and (max-width: 768px){
  .c-pc{
    display: none;
  }
}

@media screen and (max-width: 667px){
  .c-onlyPc{
    display: none;
  }
}

@media screen and (max-width: 350px){
  .c-iphone5{
    display: none;
  }
  .c-onlyiphone5{
    display: block;
  }
}

@media screen and (min-width: 769px){
  .c-sp{
    display: none;
  }
}

@media screen and (min-width: 668px){
  .c-onlySp{
    display: none;
  }
}
/*
ぺージャー
------------------------------------------------*/
@media screen and (min-width: 1113px){
  .c-pager-col2{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.c-pager-sort{
  /*background: #ededed;*/
}
@media screen and (min-width: 1113px){
  .c-pager-sort{
    width: 61%;
    max-width: 690px;
  }
}
@media screen and (min-width: 769px){
  /*
  .c-pager-sort{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
  }
  */
}
@media screen and (max-width: 768px){
  .c-pager-sort{
    padding: 12px 15px 20px;
  }
}
.c-pager-sort-num{
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (min-width: 769px){
  .c-pager-sort-num{
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 5px;
  }
}
@media screen and (max-width: 768px){
  .c-pager-sort-num{
    background: #ededed;
    margin-bottom: 10px;
    padding:10px 0;color: #a21b30;
  }
}
.c-pager-sort-num span{
  font-weight: 600;
  font-style: normal;
  font-size: 34px;color: #a21b30;
}
.c-pager-sort-title{
  color: #646464;
  background: #dbdbdb;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 769px){
  .c-pager-sort-title{
    width: 100px;
  }
}
@media screen and (max-width: 768px){
  .c-pager-sort-title{
    width: 40%;
  }
}
.c-pager-sort-dialog{
  letter-spacing: .4em;
}
@media screen and (min-width: 769px){
  .c-pager-sort-dialog{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 0 auto;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px){
  .c-pager-sort-dialog{
    font-size: 13px;
  }
}
.c-pager-sort-selector{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px){
  .c-pager-sort-selector{
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px){
  .c-pager-sort-select{
    width: 200px;
  }
}
@media screen and (max-width: 768px){
  .c-pager-sort-select{
    width: 60%;
  }
}
@media screen and (min-width: 769px){
  .c-pager-sort-select select{
    height: 40px;
  }
}
@media screen and (max-width: 768px){
  .c-pager-sort-select select{
    height: 45px;
  }
}
@media screen and (min-width: 769px){
  .c-pager-sort-btn{
    width: 160px;
    margin-left: 10px;
    height: 40px;
  }
}

.sort-block {
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

@media screen and (min-width: 769px) {
  .sort-block-title, .sort-block-item {
    float: left;
  }
}

.sort-block-title {
  font-size: 11px;
  background: #e6e6e6;
  width: 68px;
  color: #5a5a5a;
  text-align: center;
  line-height: 20px;
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .sort-block-title {
    margin-bottom: 4px;
  }
}

.sort-block-item {
  font-size: 14px;
  line-height: 1.5;
}

.sort-block-item a::after {
  content: '｜';
}

.sort-block-item a:last-child::after {
  display: none;
}

.sort-block-item .b {
  text-decoration:none;
  font-weight: bold !important;
}

.c-pager-allCheck{
  background: #ededed;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width: 1113px){
  .c-pager-allCheck{
    width: 36%;
    max-width: 400px;
  }
}
@media screen and (min-width: 769px){
  .c-pager-allCheck{
    height: 60px;

  }
}
@media screen and (max-width: 1112px){
  .c-pager-allCheck{
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px){
  .c-pager-allCheck{
    margin-top: 30px;
    font-size: 13px;
    height: 50px;
  }
}
.c-pager-allCheck label{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-pager-allCheck .checkbox-text{
  position: absolute;
  top: 40%;
  right: 40px;
}

.c-pager-navi{
  font-size: 14px;
}
@media screen and (min-width: 769px){
  .c-pager-navi{
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px){
  .c-pager-navi{
    margin-top: 30px;
    text-align: center;
  }
}
.c-pager-navi a , .c-pager-navi span{
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 769px){
  .c-pager-navi a , .c-pager-navi span{
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
@media screen and (max-width: 768px){
  .c-pager-navi a , .c-pager-navi span{
    width: 31px;
    height: 31px;
    line-height: 31px;
  }
}
.c-pager-navi a{
  background: #ededed;
}
.c-pager-navi span{
  background: #a21b30;
  color: #fff;
}

.c-pager-requestBtn{
  letter-spacing: .1em;
}
@media screen and (min-width: 1113px){
  .c-pager-requestBtn{
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin: 5px 0 0 auto;
    width: 36%;
    max-width: 400px;
  }
}
@media screen and (max-width: 1112px){
  .c-pager-requestBtn{
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px){
  .c-pager-requestBtn{
    margin-top: 10px;
  }
}

@media screen and (min-width: 769px){
  .c-pager-navi a{
    transition: all .3s ease;
  }
  .c-pager-navi a:hover{
    background: #a21b30;
    color: #fff;
  }
}

/*
記事の一覧
------------------------------------------------*/
@media screen and (max-width: 768px){
  .c-property-item.-spCol1{
    margin-bottom: 40px;
  }
  .c-property-item.-spCol1:last-child{
    margin-bottom: 0;
  }
}

/* SP時スライダー */
@media screen and (max-width: 768px){
  .c-property-spSlider .c-property-item{
    margin: 0 5px;
  }
}

.c-property-item-detail-info{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-top: 1px solid #a21b30;
  border-bottom: 1px solid #a21b30;
}
@media screen and (min-width: 769px){
  .c-property-item-detail-info{
    padding: 10px 0 8px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px){
  .c-property-item-detail-info{
    padding-bottom: 8px;
  }
}
.c-property-item-detail-cat{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 12px !important;
  letter-spacing: .1em;
  min-width: 100px;
  padding: 0 5px;
  border-right: 1px solid #a21b30;
  border-left: 1px solid #a21b30;
  box-sizing: border-box;
  text-align: center;color: #a21b30;
}

.c-property-item a{
  display: block;
  width: 100%;
  height: 100%;
}

.c-property-item-thumb{
  position: relative;
}
.c-property-item-thumb-leftLabel{
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 600;
  font-style: normal;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: .2em;
  height: 28px;
  text-align: center;
  background: #00306d;
  color: #fff;
  line-height: 28px;
  padding: 0 15px;
  z-index: 1;
}
.c-property-item-thumb-rightLabel{
  position: absolute;
  top: 0;
  right: 0;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .2em;
  text-align: center;
  padding: 0 15px;
  height: 28px;
  color: #00306d;
  background: #ededed;
  line-height: 28px;
  white-space: nowrap;
  z-index: 1;
  min-width: 110px;
}
.c-property-item-thumb-rightLabel2{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.c-property-item-thumb-rightLabel.-close{
  background: #000;
  color: #fff;
}
.c-property-item-thumb-leftLabel.-close{
  background: #EDEDED;
  color: #00306d;
}
.c-property-item-thumb-rightLabel.-member{
  background: #CC0000;
  color: #FFFFFF;
}
.c-property-item-thumb-rightLabel2 div{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .2em;
  text-align: center;
  padding: 0 15px;
  margin-bottom:5px;
  height: 28px;
  line-height: 28px;
  white-space: nowrap;
  min-width: 110px;
}
.c-property-item-thumb-rightLabel2 .-member{
  background: #CC0000;
  color: #FFFFFF;
}
.c-property-item-thumb-rightLabel2 .-only{
  background: #a21b30;
  color: #FFFFFF;
}
.c-property-item-thumb-rightLabel2 .-openhouse{
  background: #FFCC00;
  color: #00306d;
}
.c-property-item-thumb-img{
  overflow: hidden;
  text-align:center;
  height: 438px;
}
.clearfix{
	clear: both;
}
.mb40{
	padding-top: 40px;
}
.c-property-keyword-item {
    font-family: dnp-shuei-gothic-gin-std, sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: .2em;
    background: #FFFFFF;
    color: #a21b30;
    border: 1px solid #a21b30;
    text-align: center;
    box-sizing: border-box;
    margin: 10px 10px 0 0;
}
@media screen and (min-width: 769px){
  .c-property-keyword-item{
    width: 93px;    display: inline-block;
    font-size: 11px;
    padding: 5px 5px;
  }
}
@media screen and (max-width: 768px){
  .c-property-keyword-item{
    font-size: 10px;    display: inline-block;
    min-width: 75px;
    padding: 5px;
  }
}

.c-kv_p2{
  position: relative;
  /*background: #ededed;*/
}
.c-kv_p2-img-wrap
{
    background-color: #ededed;
    padding:40px 0;
}
@media screen and (min-width: 769px){
  .c-kv_p2{
    //margin-top: 50px;
  }
  .c-kv_p2:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 360px;
    /*background: #fff;*/
    z-index: 0;
  }
  .c-kv_p2-img-body {
    position: relative;
    z-index: 1;
    max-width: 1266px;
    margin: 0 auto;
  }
  .c-kv_p2-img-body .c-kv_p2-img + .c-subTitle
  {
    padding-top:40px;
  }
}
@media screen and (min-width: 769px){
  .c-kv_p2-body{
    position: relative;
    z-index: 1;
    max-width: 1266px;
    margin: 0 auto;
  }
}
.c-kv_p2-img{
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 769px){
  .c-kv_p2-img{
    height: 525px;
  }
}
@media screen and (max-width: 768px){
  .c-kv_p2-img{
    height: 250px;
  }
  .c-kv_p2-img-body .c-subTitle,
  .c-kv_p2-img-body .search-detail-photo-list {
    width: calc(100% - 45px);
    margin-right: auto;
    margin-left: auto;
  }
  .c-kv_p2-img-body .c-kv_p2-img + .c-subTitle
  {
    padding-top:40px;
  }
}

.c-kv_p2-info{
  text-align: center;
  line-height: 1.5;
  letter-spacing: .1em;
}
@media screen and (min-width: 769px){
  .c-kv_p2-info{
    padding: 40px 0 35px;
  }
}
@media screen and (max-width: 768px){
  .c-kv_p2-info{
    padding: 25px 0 30px;
  }
}
@media screen and (min-width: 769px){
  .c-kv_p2-title{
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px){
  .c-kv_p2-title{
    font-size: 1rem;
    word-break: break-all;
  }
}
@media screen and (min-width: 769px){
  .c-kv_p2-text{
    font-size: 1.5rem;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px){
  .c-kv_p2-text{
    font-size: 1rem;
    margin-top: 15px;
  }
}
.fff {
    overflow: hidden;
}

@media screen and (min-width: 769px){
  .search-detail-point-img{
    max-width: 250px;
    width: 24%;
    margin-right: 5%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .search-detail-point-img{
    margin-right: 3%;
    width: 20%;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point-img{
    width: 60%;
  }
}
@media screen and (min-width: 769px){
  .search-detail-point-block{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 73%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .search-detail-point-block{
    width: 78%;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point-block{
    width: 85%;
    margin: 30px 0 0 auto;
  }
}
@media screen and (min-width: 1113px){
  .search-detail-point-info{
    max-width: 360px;
  }
}
@media screen and (min-width: 769px){
  .search-detail-point-info{
    width: calc(97% - 350px);
  }
}
@media screen and (min-width: 769px){
  .search-detail-point-name{
    font-size: 1.5rem;
    letter-spacing: .04em;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point-name{
    font-size: 1.3rem;
    letter-spacing: .05em;
  }
}
.search-detail-point-comment{
  color: #646464;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .1em;
  margin-top: 10px;
}
@media screen and (min-width: 769px){
  .search-detail-point-comment{
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px){
  .search-detail-point-comment{
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.search-detail-photo-slider{
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px){
  .search-detail-photo-slider{
    margin-top: 135px;
  }
}
@media screen and (max-width: 768px){
  .search-detail-photo-slider{
    margin-top: 65px;
  }
}
@media screen and (min-width: 769px){
  .search-detail-photo-slider-item{
    margin-right: 20px;
    width: 330px;
  }
}
@media screen and (max-width: 768px){
  .search-detail-photo-slider-item{
    margin: 0 7px;
  }
}
.search-detail-photo-slider-item img{
  width: 100%;
}

/*
物件検索｜検索結果画面詳細 > 物件概要
------------------------------------------------*/
@media screen and (min-width: 769px){
  .search-detail-outline{
    margin-top: 130px;
  }
}

@media screen and (max-width: 768px){
  .search-detail-outline{
    margin-top: 75px;
  }
}

@media screen and (min-width: 769px){
  .search-detail-outline table{
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px){
  .search-detail-outline table{
    display: block;
    padding-top: 20px;
  }
  .search-detail-outline table.-open tr{
    display: block !important;
  }
}

@media screen and (max-width: 768px){
  .search-detail-outline table tbody{
    display: block;
  }
}

@media screen and (max-width: 768px){
  .search-detail-outline table tr{
    display: block;
  }
  .search-detail-outline table tr:nth-child(n + 5){
    display: none;
  }
}

@media screen and (min-width: 769px){
  .search-detail-outline table th{
    width: 20%;
  }
  .search-detail-outline table td.td1{
    width: 30%;
  }
}

.search-detail-outline .viewMore-accordion-btn{
  margin-top: 12px;
}

.search-detail-outline .close-accordion-btn{
  margin-top: 15px;
}
.bgGray {
background: #f8f8f8;
}

h1 {
    margin: 0em 0 !important;
}

/*
インナー
------------------------------------------------*/
.c-inner{
  width: calc(100% - 45px);
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px){
.c-inner{
  width: calc(100% - 20px);
  margin-right: auto;
  margin-left: auto;
}	
}

@media screen and (max-width: 768px){
  .c-inner.-pc{
    width: auto;
  }
}
.date02 {
    font-size: 14px !important;
    font-weight: bold;
    letter-spacing: 1px;
	color: #9f3b42;
}

.midasi02 {
    font-size: 18px !important;
    font-weight: bold;
    letter-spacing: 1px;
	color: #9f3b42;
}


.gall img {
    vertical-align: middle;
    object-fit: cover;
    width: 100%;
    height: 220px;
}

.c-form-mustDesc{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #646464;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 769px){
  .c-form-mustDesc{
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px){
  .c-form-mustDesc{
    font-size: 1.2rem;
  }
}
.c-form-mustDesc .must{
  color: #f00;
}

/*
フォームの共通スタイル
------------------------------------------------*/
@media screen and (min-width: 769px){
  .c-form-list{
    margin-top: 100px;
  }
}

@media screen and (max-width: 768px){
  .c-form-list{
    margin-top: 50px;
  }
}

.c-form-headline{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 769px){
  .c-form-headline{
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px){
  .c-form-headline{
    margin-bottom: 20px;
  }
}

.c-form-mustDesc{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #646464;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 769px){
  .c-form-mustDesc{
    font-size: 14px !important;
  }
}
@media screen and (max-width: 768px){
  .c-form-mustDesc{
    font-size: 12px !important;
  }
}
.c-form-mustDesc .must{
  color: #da364f;
}

.c-form table th{
  font-size: 14px;
}
@media screen and (min-width: 769px){
  .c-form table th{
    width: 31%;
  }
}

@media screen and (min-width: 769px){
  .c-form table td{
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 1113px){
  .c-form table dl{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 1113px){
  .c-form table dt{
    width: 55%;
    max-width: 440px;
    margin-right: 20px;
  }
}

@media screen and (min-width: 1113px){
  .c-form table dd{
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media screen and (min-width: 769px){
  .c-form-col1 li{
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px){
  .c-form-col1 li{
    margin-bottom: 30px;
  }
}

.c-form-col1 li:last-child{
  margin-bottom: 0;
}

.c-form-col2{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-form-col2 li{
  padding-right: 10px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px){
  .c-form-col2 li{
    width: 50%;
    margin-top: 20px;
  }
  .c-form-col2 li:nth-child(-n+2){
    margin-top: 0;
  }
}
@media screen and (max-width: 768px){
  .c-form-col2 li{
    width: 100%;
    margin-top: 30px;
  }
  .c-form-col2 li:nth-child(-n+1){
    margin-top: 0;
  }
}

.c-form-col3{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (min-width: 769px){
  .c-form-col3{
    width: 75.9%;
  }
  .c-form-col3.width100{
    width: 837px;
  }
  .c-form-lastcol
  {
    margin-top:20px;
  }
}
.c-form-col3 li{
  padding-right: 10px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px){
  .c-form-col3 li{
    width: 33%;
    margin-top: 20px;
  }
  .c-form-col3 li:nth-child(-n+3){
    margin-top: 0;
  }
}
@media screen and (max-width: 768px){
  .c-form-col3 li{
    width: 50%;
    margin-top: 30px;
  }
  .c-form-col3 li:nth-child(-n+2){
    margin-top: 0;
  }
  .c-form-col3 li:nth-child(2n){
    padding-right: 0;
  }
  .c-form-lastcol
  {
    margin-top:30px;
  }
  .c-form-lastcol input[type=text]
  {
    margin-top:10px;
  }
}

.c-form-col4{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-form-col4 li{
  padding-right: 10px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px){
  .c-form-col4 li{
    width: 25%;
    margin-top: 20px;
  }
  .c-form-col4 li:nth-child(-n+4){
    margin-top: 0;
  }
}
@media screen and (max-width: 768px){
  .c-form-col4 li{
    width: 50%;
    margin-top: 30px;
  }
  .c-form-col4 li:nth-child(-n+2){
    margin-top: 0;
  }
  .c-form-col4 li:nth-child(2n){
    padding-right: 0;
  }
}

.c-form-col5{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-form-col5 li{
  padding-right: 10px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px){
  .c-form-col5{
    width: 837px;
  }
  .c-form-col5 li{
    width: 20%;
    margin-top: 20px;
  }
  .c-form-col5 li:nth-child(-n+5){
    margin-top: 0;
  }
}
@media screen and (max-width: 768px){
  .c-form-col5 li{
    width: 50%;
    margin-top: 30px;
  }
  .c-form-col5 li:nth-child(-n+2){
    margin-top: 0;
  }
  .c-form-col5 li:nth-child(2n){
    padding-right: 0;
  }
}

.c-form-name{
  background: #dbdbdb;
  padding: 9px 15px;
  color: #646464;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px !important;
}
@media screen and (max-width: 768px){
  .c-form-name{
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media screen and (min-width: 769px){
  .c-form-name.-primary{
    width: 220px;
  }
}

.c-form-address-item{
  margin-bottom: 10px;
}
.c-form-address-item:last-child{
  margin-bottom: 0;
}

@media screen and (min-width: 769px){
  .c-form-address-block{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 768px){
  .c-form-address-block.-zip{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 768px){
  .c-form-address-block.-zip input{
    width: calc(100% - 150px);
  }
}

@media screen and (max-width: 768px){
  .c-form-address-block.-zip .c-form-name{
    width: 150px;
  }
}

@media screen and (min-width: 769px){
  .c-form-address-block input{
    width: calc(100% - 220px);
  }
}

@media screen and (min-width: 769px){
  .c-form-area{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

@media screen and (min-width: 769px){
  .c-form-area li{
    width: 32%;
    margin-right: 2%;
    margin-top: 15px;
  }
  .c-form-area li:nth-child(-n+3){
    margin-top: 0;
  }
  .c-form-area li:nth-child(3n){
    margin-right: 0;
  }
}

@media screen and (max-width: 768px){
  .c-form-area li{
    margin-bottom: 10px;
  }
  .c-form-area li:last-child{
    margin-bottom: 0;
  }
}

.c-form-visit{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 768px){
  .c-form-visit{
    margin-bottom: -10px;
    margin-right: -10px;
  }
}
.c-form-visit li{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 769px){
  .c-form-visit li{
    margin-right: 15px;
  }
  .c-form-visit li:last-child{
    margin-right: 0;
  }
}
@media screen and (max-width: 768px){
  .c-form-visit li{
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px){
  .c-form-visit .select-wrap{
    width: 100px;
  }
}
@media screen and (max-width: 768px){
  .c-form-visit .select-wrap{
    width: 90px;
  }
}
@media screen and (min-width: 769px){
  .c-form-visit .c-form-name{
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 768px){
  .c-form-visit .c-form-name{
    width: 55px;
    padding: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 769px){
  .c-form-item{
    margin-bottom: 100px;
  }
}

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

.c-form-item:last-child{
  margin-bottom: 0;
}

.c-form-notes{
  background: #ededed;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (min-width: 769px){
  .c-form-notes{
    padding: 50px 60px;
    margin: 50px 0 85px;
  }
}
@media screen and (max-width: 768px){
  .c-form-notes{
    padding: 40px 15px;
    margin: 40px 0 65px;
  }
}
.c-form-notes a{
  text-decoration: underline;
}
.c-form-notes a:hover{
  text-decoration: none;
}
.c-form-notes-mail{
  line-height: 2;
}
.c-form-notes-ssl{
  line-height: 1.5;
  margin-top: 30px;
}
@media screen and (min-width: 769px){
  .c-form-notes-ssl{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.c-form-notes-ssl-sign{
  width: 115px;
}
@media screen and (min-width: 769px){
  .c-form-notes-ssl-sign{
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px){
  .c-form-notes-ssl-sign{
    margin: 40px 0 0 auto;
  }
}

.c-form-message .c-form-col1 li{
  margin-bottom: 10px;
}

.c-form-message .c-form-name{
  margin-top: 30px;
}
@media screen and (min-width: 769px){
  .c-form-message .c-form-name{
    display: inline-block;
  }
}

@media screen and (min-width: 769px){
  .c-form .attention{
    line-height: 1.7;
	  font-size: 13px !important;
    color: #a21b30;
  }
  .c-form .attention1{
    line-height: 1.7;
	  font-size: 16px;
    color: #a21b30;
  }	
}

@media screen and (max-width: 1112px){
  .c-form .attention{
    margin-top: 5px;
	  	  font-size: 12px !important;
    color: #a21b30;
  }
  .c-form .attention1{
    margin-top: 5px;
	  	  font-size: 15px;
    color: #a21b30;
  }	
}

@media screen and (max-width: 768px){
  .c-form .attention{
    font-size: 1.1rem;
    line-height: 2;
    margin-top: 20px;
  }
}

@media screen and (min-width: 769px){
  .c-form-btn{
    max-width: 450px;
  }
}

@media screen and (max-width: 768px){
  .c-form-btn{
    letter-spacing: .2em;
    height: 60px;
  }
}

@media screen and (min-width: 769px){
  .terms-btn{
    margin: 90px 0;
  }
}

@media screen and (max-width: 768px){
  .terms-btn{
    margin: 60px 0;
    height: 50px;
  }
}


/*
input, checkbox, radio
------------------------------------------------*/
label:hover{
  cursor: pointer;
}

/* input */
input{
  margin: 0;
  vertical-align: baseline;
  border: 0;
  box-sizing: border-box;
  color: #00306d;
  border-radius: 0;
}
/* input */
textarea{
  margin: 0;
  vertical-align: baseline;
  border: 0;
  box-sizing: border-box;
  width: 100%;
  color: #00306d;
  border-radius: 0;
}
input::-webkit-input-placeholder , textarea::-webkit-input-placeholder{
  color: #dbdbdb;
}
input:-ms-input-placeholder , textarea:-ms-input-placeholder{
  color: #dbdbdb;
}
input::placeholder , textarea::placeholder{
  color: #dbdbdb;
}
input:-webkit-autofill , textarea:-webkit-autofill{
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

input{
  padding: 8px 12px;
  line-height: normal;
}

textarea{
  line-height: 1.7;    background: #ffffff;
}
@media screen and (min-width: 769px){
  textarea{
    padding: 20px;
  }
}
@media screen and (max-width: 768px){
  textarea{
    padding: 15px;
  }
}

@media screen and (min-width: 1113px){
  .input_short{
    width: 80%;
    max-width: 600px;
  }
  .input_short2{
    width: 80%;
    max-width: 300px;
  }
}
@media screen and (max-width: 768px){
  .input_short2{
    width: 80%;
    max-width: 300px;
  }
}

/* checkbox */
.checkbox{
  display: none;
}

.checkbox-text{
  padding-left: 35px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  line-height: 1.3;
}
.checkbox-text:hover{
  cursor: pointer;
}
.checkbox-text.-noText{
  padding-left: 0;
}
.checkbox-text .-number{
  font-size: 10px;
  font-size: 1rem;
  color: #646464;
  vertical-align: middle;
}
_:-ms-input-placeholder, :root .checkbox-text .-number {
  vertical-align: baseline;
}

.checkbox-text:before{
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #a9a9a9;
  border-radius: 3px;
  background: #fff;
}
_:-ms-input-placeholder, :root .checkbox-text:before {
  top: -6px;
}
_:-ms-input-placeholder, :root .search-archive-check .checkbox-text:before {
  top: -10px;
  left:-10px;
}


.checkbox:checked + .checkbox-text:before{
  background: #a21b30;
}

.checkbox:checked + .checkbox-text:after{
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 7px;
  width: 7px;
  height: 9px;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
_:-ms-input-placeholder, :root .checkbox:checked + .checkbox-text:after {
  top: -2px;
}
_:-ms-input-placeholder, :root  .search-archive-check .checkbox:checked + .checkbox-text:after {
  top: -6px;
  left:-4px;
}


.checkbox-text.-large:before{
  top: 0;
}
_:-ms-input-placeholder, :root .checkbox-text.-large:before {
  top: -4px;
}

.checkbox:checked + .checkbox-text.-large:after{
  top: 4px;
}
_:-ms-input-placeholder, :root .checkbox:checked + .checkbox-text.-large:after {
  top: 0px;
}

/* radio */
.radio{
  display: none;
}

.radio-text{
  padding-left: 35px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 1.3;
}
.radio-text:hover{
  cursor: pointer;
}
.radio-text.-bold{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.radio-text:before{
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 50%;
  background: #fff;
}
_:-ms-input-placeholder, :root .radio-text:before {
  top: -6px;
}

.radio:checked + .radio-text:before{
  background: #00306d;
}

.radio:checked + .radio-text:after{
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 6px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
_:-ms-input-placeholder, :root .radio:checked + .radio-text:after {
  top: 0px;
}

.radio-text.-large{
  font-size: 15px;
  font-size: 1.5rem;
}

.radio-text.-large:before{
  top: 0;
}
_:-ms-input-placeholder, :root .radio-text.-large:before {
  top: -4px;
}

.radio:checked + .radio-text.-large:after{
  top: 6px;
}
_:-ms-input-placeholder, :root .radio:checked + .radio-text.-large:after {
  top: 2px;
}

/* select */
.select-wrap{
  position: relative;
}

.select-wrap:before{
  content: "";
  z-index: 1;
  position: absolute;
  right: 15px;
  top: -2px;
  bottom: 0;
  color: #7f878c;
  pointer-events: none;
  border-top: 2px solid #00306d;
  border-right: 2px solid #00306d;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  margin: auto 0;
}

select{
  outline: none;
     -moz-appearance: none;
  text-indent: .01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
          appearance: none;
  -webkit-appearance: none;
     -moz-appearance: none;
  letter-spacing: inherit;
  height: 35px;
  padding: 0 12px;
  border: 0;
  color: #828c9a;
  width: 100%;
  border-radius: 0;
  background: #fff;
  color: #00306d;
}
select:hover{
  cursor: pointer;
}

select option{
  background-color: #fff;
  color: #00306d;
}

select::-ms-expand{
  display: none;
}

select:-moz-focusring{
  color: transparent;
  text-shadow: 0 0 0 #00306d;
}

@media screen and (min-width: 769px){
  .select-line{
    margin: 0 25px;
  }
}

@media screen and (max-width: 768px){
  .select-line{
    margin: 0 10px;
  }
}

.select-col2{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 769px){
  .select-col2 .select-wrap{
    max-width: 180px;
    width: 100%;
  }
}
@media screen and (max-width: 768px){
  .select-col2 .select-wrap{
    width: 50%;
  }
}
.btn-default{
	position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transition: background .3s ease, color .3s ease;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid #a21b30;
    color: #a21b30;
}
.pd20{
	padding-bottom: 20px;
}
.pd30{
	padding-bottom: 30px;
}
.pd40{
	padding-bottom: 40px;
}
/*
スタッフ紹介一覧
------------------------------------------------*/
.staff{
  padding-bottom: 0;
}
.staff-kv{
  width: 100%;
  background: url("../images/kv/staff.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px){
  .staff-kv{
    height: 350px;
    max-width: 1140px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px){
  .staff-kv{
    height: 300px;
  }
}
.staff-body{
  background: #ededed;
}
@media screen and (min-width: 769px){
  .staff-body{
    padding: 85px 0 140px;
    position: relative;
  }
  .staff-body:before{
    content: "";
    display: block;
    position: absolute;
    top: -245px;
    left: 0;
    right: 0;
    width: 100%;
    height: 245px;
    background: #ededed;
    z-index: -1;
  }
}
@media screen and (max-width: 768px){
  .staff-body{
    padding: 90px 0 100px;
  }
}
@media screen and (min-width: 769px){
  .staff-inner{
    max-width: 1000px;
  }
}
@media screen and (max-width: 768px){
  .staff-intro{
    padding: 0 15px;
  }
}
.staff-headline{
  letter-spacing: .1em;
}
@media screen and (min-width: 769px){
  .staff-headline{
    font-size: 2.5rem;
    line-height: 2;
  }
}
@media screen and (max-width: 768px){
  .staff-headline{
    font-size: 1.5rem;
    letter-spacing: .1em;
    line-height: 2;
  }
}
@media screen and (min-width: 769px){
  .staff-lead{
    font-size: 1.5rem;
    line-height: 2.6;
    letter-spacing: .1em;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px){
  .staff-lead{
    font-size: 1.3rem;
    line-height: 2;
    letter-spacing: 0;
    margin-top: 15px;
  }
}
.staff-list{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (min-width: 769px){
  .staff-list{
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px){
  .staff-list{
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px){
  .staff-item{
    width: 30%;
    margin: 45px 5% 0 0;
  }
  .staff-item:nth-child(-n + 3){
    margin-top: 0;
  }
  .staff-item:nth-child(3n){
    margin-right: 0;
  }
}
@media screen and (max-width: 768px){
  .staff-item{
    width: 48%;
    margin: 35px 4% 0 0;
  }
  .staff-item:nth-child(-n + 2){
    margin-top: 0;
  }
  .staff-item:nth-child(2n){
    margin-right: 0;
  }
}
.staff-info{
  position: relative;
  margin-top: 15px;
}
.staff-info.-review:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/staff/icon_review.png") no-repeat right center;
  background-size: cover;
  width: 22px;
  height: 20px;
}
.staff-info.-review .staff-name{
  margin-right: 25px;
}
.staff-face{
  overflow: hidden;
  position:relative
}
.staff-face img{
    display: block;
    width: 100%;
    height: auto;
}
.thanks_icon {
    background-image: url(/assets/images/staff/voice_ico.png);
    background-size: 50px 36px;
    width: 50px;
    height: 36px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    padding-top: 4px;
}
.staff-name{
  letter-spacing: .05em;
  font-size: 15px;    color: #a21b30;
}
.staff-name span{
  font-size: 11px;
  padding-left:5px;    color: #a21b30;
}
.staff-comment{
  letter-spacing: .05em;
  font-size: 12px;
  line-height: 1.6;
  color: #646464;
  margin-top: 5px;
}

/*
スタッフ紹介
------------------------------------------------*/
.staffDetail-main{
  background: #dbdbdb;
  position: relative;
}
@media screen and (min-width: 769px){
  .staffDetail-main{
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main{
    padding-bottom: 60px;
  }
}
.staffDetail-main:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  z-index: 0;
}
@media screen and (min-width: 769px){
  .staffDetail-main:before{
    height: 100px;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main:before{
    height: 60px;
  }
}
@media screen and (min-width: 769px){
  .staffDetail-main-intro{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 769px){
  .staffDetail-main-imgArea{
    max-width: 542px;
    width: 48%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .staffDetail-main-imgArea{
    width: 40%;
  }
}
.staffDetail-main-img{
  position: relative;
}
@media screen and (min-width: 769px){
  .staffDetail-main-face{
    margin-left: 12%;
    max-width: 475px;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-face{
    padding: 0 26px;
  }
}
.staffDetail-main-face img{
  width: 100%;
}
.staffDetail-main-name{
  position: absolute;
  left: 0;
  color: #fff;color: #a21b30;
}
@media screen and (min-width: 769px){
  .staffDetail-main-name{
    bottom: 30px;
	  margin-left: -60px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .staffDetail-main-name{
    bottom: 20%;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-name{
    bottom: 75px;
  }
}
.staffDetail-main-name .-en{
  font-family: bebas-neue-by-fontfabric,sans-serif;font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: .4em;
  word-break: break-all;
}
@media screen and (min-width: 769px){
  .staffDetail-main-name .-en{
    font-size: 60px !important;
    line-height: 1.6;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .staffDetail-main-name .-en{
    font-size: 36px !important;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-name .-en{
    font-size: 30px !important;
    line-height: 1.6;
  }
}
.staffDetail-main-name .-jp{
  letter-spacing: .4em;
  margin-top: 10px;
}
@media screen and (min-width: 769px){
  .staffDetail-main-name .-jp{
    font-size: 2.3rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-name .-jp{
    font-size: 1.5rem;
    line-height: .9;
  }
}
@media screen and (min-width: 769px){
  .staffDetail-main-message{
    margin-top: 210px;
    max-width: 500px;
    width: 44%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .staffDetail-main-message{
    width: 56%;
    margin-top: 16%;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-message{
    margin: 40px 15px 0;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-message .viewMore-accordion-text{
    padding-top: 30px;
  }
  .staffDetail-main-message .viewMore-accordion-text.-open .staffDetail-main-text{
    max-height: 100% !important;
  }
}
.staffDetail-main-message .viewMore-accordion-btn{
  margin-top: 40px;
}
.staffDetail-main-message .close-accordion-btn{
  margin-top: 30px;
}
.staffDetail-main-headline{
  letter-spacing: .1em;
}
@media screen and (min-width: 769px){
  .staffDetail-main-headline{
    font-size: 25px !important;
    line-height: 2;color: #a21b30;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-headline{
    font-size: 18px !important;
    line-height: 2.2;color: #a21b30;
  }
}
@media screen and (max-width: 1112px){
  .staffDetail-main-headline br{
    display: none;
  }
}
.staffDetail-main-text{
  color: #646464;
}
@media screen and (min-width: 769px){
  .staffDetail-main-text{
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: .1em;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-text{
    font-size: 1.3rem;
    line-height: 2.1;
    letter-spacing: .05em;
    margin-top: 30px;
    display: block;
    overflow: hidden;
    height: 100%;
    max-height: 12.6em;
  }
}
.staffDetail-main-text p{
  margin-bottom: 2em;
}
.staffDetail-main-text p:last-child{
  margin-bottom: 0;
}
.staffDetail-main-info{
  background: #fff;
  letter-spacing: .05em;
}
@media screen and (min-width: 769px){
  .staffDetail-main-info{
    display: -webkit-flexbk;
    display: -ms-flexbox;
    display: flexbk;
    padding: 90px 9% 90px;
    margin-top: 135px;
    font-size: 16px;
    line-height: 2.5;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-info{
    padding: 0 15px 20px;
    margin-top: 85px;
    font-size: 14px;
    line-height: 2;
  }
}
.staffDetail-main-info dl:last-child{
  margin-bottom: 0;
}
.staffDetail-main-info dt{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 768px){
  .staffDetail-main-info dt{
    line-height: 1.3;color: #a21b30;
  }
}
.staffDetail-main-info dd{
  color: #646464;
}
.staffDetail-main-info .viewMore-accordion-text.-open + .staffDetail-main-interview{
  display: block;
}
.staffDetail-main-profile{
  box-sizing: border-box;
}
@media screen and (min-width: 769px){
  .staffDetail-main-profile{

    width: 100%;

  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-profile{
    padding: 30px 15px 30px;
  }
}
@media screen and (min-width: 769px){
  .staffDetail-main-profile dl{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-profile dl{
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px){
  .staffDetail-main-profile dt{
    width: 300px;
    padding-right: 10px;color: #a21b30;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 769px){
  .staffDetail-main-profile dd{
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.staffDetail-main-interview{
  box-sizing: border-box;
}
@media screen and (min-width: 769px){
  .staffDetail-main-interview{
    width: 50%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-interview{
    display: none;
    border-top: 1px solid #00306d;
    padding: 40px 15px 60px;
  }
}
@media screen and (min-width: 769px){
  .staffDetail-main-interview dl{
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-interview dl{
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 769px){
  .staffDetail-main-interview dt{
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-interview dt{
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px){
  .staffDetail-main-favorite{
    max-width: 960px;
    margin: -125px auto 0;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-favorite{
    margin: 70px 0 0;
  }
}
@media screen and (min-width: 769px){
  .staffDetail-main-favorite-list{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-favorite-slider{
    margin: 0 -23px;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-favorite-slider .staffDetail-main-favorite-item{
    margin: 0 10px;
  }
}
@media screen and (min-width: 769px){
  .staffDetail-main-favorite-item{
    width: 32.1%;
    margin-right: 2%;
  }
  .staffDetail-main-favorite-item:last-child{
    margin-right: 0;
  }
}
.staffDetail-main-favorite-img img{
  width: 100%;
}
.staffDetail-main-favorite-text{
  color: #646464;
  letter-spacing: .05em;
  margin-top: 15px;
}
@media screen and (min-width: 769px){
  .staffDetail-main-favorite-text{
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-main-favorite-text{
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

@media screen and (min-width: 769px){
  .staffDetail-review{
    padding: 150px 0 0;
  }
}

@media screen and (max-width: 768px){
  .staffDetail-review{
    padding: 90px 0 0;
  }
}

@media screen and (min-width: 769px){
  .staffDetail-review .review-list{
    margin-top: 20px;
  }
  .reviewOpenBtn
  {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px){
  .staffDetail-review .review-list{
    margin-top: 20px;
  }
  .reviewOpenBtn
  {
    margin-top: 20px;
  }
}

@media screen and (min-width: 769px){
  .staffDetail-recommend{
    padding: 150px 0 0;
  }
}

@media screen and (max-width: 768px){
  .staffDetail-recommend{
    padding: 80px 0 90px;
  }
}

@media screen and (max-width: 768px){
  .staffDetail-recommend .search-archive-item:nth-child(n + 3){
    display: none;
  }
}

.staffDetail-other{
  position: relative;
}
@media screen and (min-width: 769px){
  .staffDetail-other{
    margin-top:160px;
    padding: 100px 0 0;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-other{
    padding: 40px 0 0;
  }
}
.staffDetail-other:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #ededed;
  z-index: -1;
}
@media screen and (min-width: 769px){
  .staffDetail-other:after{
    height: 323px;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-other:after{
    height: 214px;
  }
}
@media screen and (min-width: 769px){
  .staffDetail-other-item{
    width: 250px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-other-item{
    width: 175px;
    margin-right: 10px;
  }
}
.staffDetail-other-item a{
  display: block;
}
.staffDetail-other-face{
  overflow: hidden;
}
.staffDetail-other-name{
  margin-top: 20px;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .05em;
}
.staffDetail-other-info{
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .05em;
  line-height: 1.6;
  color: #646464;
  margin-top: 5px;
}
@media screen and (min-width: 769px){
  .staffDetail-other-backBtn{
    margin-top: 105px;
  }
}
@media screen and (max-width: 768px){
  .staffDetail-other-backBtn{
    margin: 80px 15px 0;
  }
}


.afterSupport-labelTitle{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  background: #a21b30;
  color: #fff;
  display: block !important;
}
@media screen and (min-width: 769px){
  .afterSupport-labelTitle{
    padding: 10px 20px;
    font-size: 1.4rem;
    letter-spacing: .2em;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px){
  .afterSupport-labelTitle{
    padding: 20px 10px;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: .6em;
    position: relative;
  }
  .afterSupport-labelTitle:hover{
    cursor: pointer;
  }
}

.service-labelSubTitle {
    background: #a21b30;
    color: #fff;
    text-align: center;
    letter-spacing: .04em;
    padding: 7px;
}

@media screen and (min-width: 769px){
  .service-labelSubTitle{
    font-size: 17px !important;
  }
}
@media screen and (max-width: 768px){
  .service-labelSubTitle{
    font-size: 14px !important;
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
.checkhaikeisiro{
	   background: #ffffff;   
	padding:30px;

}
.checkhaikei{
	  background: #ededed;
    padding: 25px 25px 25px 65px;
	margin-bottom: 15px;
	position: relative;font-size: 17px;
    box-sizing: border-box;
}
@media screen and (max-width: 768px){
.checkhaikei {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.6;
    padding: 25px 25px 25px 55px;
}
}
.seller-faq-icon {
    font-family: bebas-neue-by-fontfabric,sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
     color: #a21b30;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}


.seller-faq-icon {
    font-size: 2.2rem;
    left: 22px;
}
@media screen and (max-width: 768px){
.seller-faq-icon {
    font-size: 2rem;
    left: 15px;
}	
}
.center1{
	text-align: center;
}

.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:10px;padding-left:10px}

.akiyamozi{
	font-weight: bold;
    letter-spacing: 1px;
    color: #a21b30;
}

.seller-plan .seller-cover-img{
  background-image: url("../images/service/seller/plan_cover.jpg");
}

@media screen and (min-width: 769px){
  .seller-plan-body{
    padding: 170px 0 240px;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-body{
    padding: 40px 0 130px;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-list:first-child .seller-plan-item:nth-child(n+3){

  }
}

@media screen and (min-width: 769px){
  .seller-plan-list.-col2{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .seller-plan-list.-col2 .seller-plan-item{
    width: 48%;
  }
  .seller-plan-list.-col2 .seller-plan-contents{
    margin-left: 8%;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-list.-col2 .seller-plan-item{
    display: none;
  }
}

@media screen and (max-width: 768px){
  .seller-plan .viewMore-accordion-text.-open .seller-plan-item{
    display: block !important;
  }
}

@media screen and (max-width: 768px){
  .seller-plan .viewMore-accordion-btn{
    margin-top: 15px;
  }
}

.seller-plan-item{
  position: relative;
}
@media screen and (min-width: 769px){
  .seller-plan-item{
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px){
  .seller-plan-item{
    margin-top: 60px;
  }
}
@media screen and (min-width: 769px){
  .seller-plan-item_06 .seller-plan-img{
    margin-top: 50px;
  }
}

.seller-plan-titleEn{
  position: absolute;
}
@media screen and (min-width: 769px){
  .seller-plan-titleEn{
    top: -55px;color: #a21b30;
    left: 0;
  }
	
	.sellmae{
		padding-bottom: 70px;
	}	
}

@media screen and (max-width: 768px){
  .seller-plan-titleEn{
    top: -20px;color: #a21b30;
    left: 0px;
  }
	.sellmae{
		padding-bottom: 0px;
	}	
	
}

.seller-plan-contents{
  background: #ededed;
  box-sizing: border-box;
}
@media screen and (min-width: 769px){
  .seller-plan-contents{
    margin-left: 4%;
    padding: 75px 45px 45px 50px;
    height: 100%;
  }
}
@media screen and (max-width: 768px){
  .seller-plan-contents{
    padding: 60px 40px 40px 40px;
  }
}

@media screen and (min-width: 769px){
  .seller-plan-col2{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 769px){
  .seller-plan-left{
    max-width: 475px;
    width: 48%;
  }
}

@media screen and (min-width: 769px){
  .seller-plan-right{
    max-width: 471px;
    width: 48%;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-right{
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px){
  .seller-plan-title{
	 border:solid 1px #a21b30;
	  color: #a21b30;
display: inline-block;
  padding: 5px 25px;
	  font-size: 23px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-title{
	 border:solid 1px #a21b30;
	  color: #a21b30;
display: inline-block;
	  padding: 5px 25px;
	  font-size: 18px;
    margin-bottom: 15px;
  }
}

.seller-plan-subTitle{
  margin-bottom: 10px;
}
@media screen and (min-width: 769px){
  .seller-plan-subTitle{
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: .04em;
  }
}
@media screen and (max-width: 768px){
  .seller-plan-subTitle{
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: .1em;
  }
}

.seller-plan-text{
  color: #646464;
}
@media screen and (min-width: 769px){
  .seller-plan-text{
    font-size: 1.4rem;
    line-height: 1.7;
    letter-spacing: .05em;
  }
}
@media screen and (max-width: 768px){
  .seller-plan-text{
    font-size: 1.3rem;
    line-height: 1.7;
    letter-spacing: 0;
  }
}

.seller-plan-img{
  margin-top: 25px;
}

.seller-plan-btn{
  margin-top: 50px;
}

.seller-voice .seller-cover-img{
  background-image: url("../images/service/seller/voice_cover.jpg");
}
/*
英語の見出し
------------------------------------------------*/
.c-titleEn{
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: .4em;
}
@media screen and (min-width: 769px){
  .c-titleEn{
    font-size: 65px;color: #a21b30;
  }
}
@media screen and (max-width: 768px){
  .c-titleEn{
    font-size: 30px;color: #a21b30;
  }
}
.c-titleEn.-white{
  color: #fff;
}
.special-box {
    background: #ededed;
    position: relative;
}

/*
お役立ちコンテンツ  /  買う VS 借りる
------------------------------------------------*/
.vs{
  padding-bottom: 0;
}
@media screen and (min-width: 769px){
  .vs-item01{
    margin-bottom: 170px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01{
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 769px){
  .vs-item01-box{
    padding: 125px 0 100px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-box{
    padding: 20px 25px;
  }
}
@media screen and (min-width: 769px){
  .vs-item01-inner{
    max-width: 850px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px){
  .vs-item01-slider{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 769px){
  .vs-item01-slider-item{
    max-width: 400px;
    width: 48%;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-slider-item{
    margin-top: 20px;
  }
}
.vs-item01-body{
  background: #fff;
  position: relative;
}
@media screen and (min-width: 769px){
  .vs-item01-body{
    padding: 95px 50px 55px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .vs-item01-body{
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-body{
    padding: 65px 25px 25px;
  }
}
.vs-item01-headline{
  text-align: center;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .2em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 769px){
  .vs-item01-headline{
    font-size: 65px;color: #a21b30;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-headline{
    font-size: 45px;color: #a21b30;
    -webkit-transform: translate(0, -38%);
        -ms-transform: translate(0, -38%);
            transform: translate(0, -38%);
  }
}
.vs-item01-info{
  letter-spacing: .04em;
  color: #646464;
}
@media screen and (min-width: 769px){
  .vs-item01-info{
    font-size: 15px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-info{
    font-size: 13px;
  }
}
.vs-item01-info dl{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ededed;
}
@media screen and (min-width: 769px){
  .vs-item01-info dl{
    padding-bottom: 8px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-info dl{
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
}
.vs-item01-info dl:last-child{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.vs-item01-info dd{
  margin: 0 0 0 auto;
}
@media screen and (min-width: 769px){
  .vs-item01-graph{
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-graph{
    margin-top: 30px;
  }
}
.vs-item01-graph-img img{
  width: 100%;
}
.vs-item01-price{
  background: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 5px;
  line-height: 1;
}
@media screen and (min-width: 769px){
  .vs-item01-price{
    padding: 15px 0 20px;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-price{
    padding: 7px 25px 8px;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.vs-item01-price-name{
  letter-spacing: .04em;
  color: #646464;
  margin-right: 20px;
  position: relative;
  top: -6px;
}
@media screen and (min-width: 769px){
  .vs-item01-price-name{
    font-size: 20px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-price-name{
    font-size: 15px;
  }
}
@media screen and (max-width: 768px){
.special-price_num{
    font-size: 45px;
  }
}
@media screen and (max-width: 768px){
.special-price_yen{
    font-size: 15px;
  }
}
.vs-item01-lead{
  background: #a21b30;
  color: #fff;
  letter-spacing: .04em;
  line-height: 2;
}
@media screen and (min-width: 769px){
  .vs-item01-lead{
    font-size: 2rem;
    padding: 28px 20px;
    margin-top: 50px;
    text-align: center;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-lead{
    font-size: 15px;
    line-height: 1.3;
    padding: 22px 25px 22px;
    margin: 30px auto 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px){
.special-price_num{
    font-size: 20px;
	  margin: 0 2px 0 12px;
  line-height: 1.3;
  }
}

@media screen and (min-width: 769px){
.special-price_num{
    font-size: 40px;
	  margin: 0 2px 0 12px;
  line-height: 1.3;
  }
}
@media screen and (max-width: 1112px){
  .vs-item01-lead br{
    display: block;
  }
}
@media screen and (min-width: 769px){
  .vs-item02{
    padding-bottom: 50px;
    margin-bottom: 180px;
  }
}
@media screen and (max-width: 768px){
  .vs-item02{
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 769px){
  .vs-item02-box{
    padding: 60px 0 0 0;
  }
}
@media screen and (max-width: 1112px){
  .vs-item02-box{
    background: none;
  }
}
@media screen and (max-width: 1112px){
  .vs-item02-box:after{
    content: "";
    display: block;
    width: 100%;
    height: 65%;
    background: #ededed;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 1113px){
  .vs-item02-body{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 4%;
  }
}
@media screen and (max-width: 768px){
  .vs-item02-body{
    padding: 20px 15px 0;
  }
}
@media screen and (min-width: 769px){
  .vs-item02-title{
    margin-top: 50px;
    margin-right: 20px;
  }
}
.vs-item02-price{
  background: #dbdbdb;
}
@media screen and (min-width: 769px){
  .vs-item02-price{
    padding: 70px 4% 70px 5%;
    margin-bottom: -105px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .vs-item02-price{
    margin-left: -5%;
    margin-right: 5%;
  }
}
@media screen and (min-width: 1113px){
  .vs-item02-price{
    -webkit-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}
@media screen and (max-width: 1112px){
  .vs-item02-price{
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px){
  .vs-item02-price{
    padding: 25px 25px;
  }
}
.vs-item02-price-total{
  color: #646464;
  letter-spacing: .04em;
}
@media screen and (min-width: 769px){
  .vs-item02-price-total{
    font-size: 20px;
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px){
  .vs-item02-price-total{
    font-size: 15px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px){
  .vs-item02-price-total .special-price_num{
    font-size: 45px;
    margin-left: .1em;
  }
}
@media screen and (max-width: 768px){
  .vs-item02-price-total .special-price_yen{
    font-size: 15px;
  }
}
@media screen and (min-width: 769px){
  .vs-item03{
    margin-bottom: 130px;
  }
}
@media screen and (max-width: 768px){
  .vs-item03{
    margin-bottom: 85px;
  }
}
@media screen and (min-width: 769px){
  .vs-item03-box{
    padding: 60px 0 4% 0;
  }
}
@media screen and (max-width: 768px){
  .vs-item03-box{
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 768px){
  .vs-item03-titleEn{
    margin-left: 40px;
  }
}
@media screen and (min-width: 769px){
  .vs-item03-body{
    margin-right: 9%;
  }
}
@media screen and (max-width: 768px){
  .vs-item03-body{
    padding: 15px 65px 35px;
  }
}
@media screen and (min-width: 769px){
  .vs-item03-title{
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px){
  .vs-item03-title{
    margin: 0 0 15px;
  }
}
@media screen and (min-width: 769px){
  .vs-item03-graph{
    margin: 75px 50px 0;
  }
}
@media screen and (min-width: 769px){
  .vs-item03-graph-slider{
    display: none;
  }
}
.vs-item03-graph-img img{
  width: 100%;
}
@media screen and (max-width: 768px){
  .vs-item03-labelTitle{
    margin: 0 25px 10px;
  }
}
@media screen and (min-width: 769px){
  .vs-item03-price{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 90px;
  }
}
@media screen and (max-width: 768px){
  .vs-item03-price{
    margin-top: 45px;
  }
}
.vs-item03-price-title{
  background: #a21b30;
  color: #fff;
  letter-spacing: .1em;
  line-height: 2;
}
@media screen and (min-width: 769px){
  .vs-item03-price-title{
    font-size: 2.5rem;
    padding: 60px 5%;
    max-width: 500px;
    width: 52%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .vs-item03-price-title br{
    display: none;
  }
}
@media screen and (max-width: 768px){
  .vs-item03-price-title{
    font-size: 15px;
    padding: 40px;
  }
}
.vs-item03-price-text{
  background: #dbdbdb;
  color: #646464;
}
@media screen and (min-width: 769px){
  .vs-item03-price-text{
    padding: 60px 9% 60px 5%;
    max-width: 655px;
    width: 48%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .vs-item03-price-text:after{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #dbdbdb;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@media screen and (max-width: 768px){
  .vs-item03-price-text{
    padding: 40px;
  }
}
@media screen and (min-width: 769px){
  .vs-item04-box{
    padding: 90px 0 120px 0;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-box{
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 769px){
  .vs-item04-inner{
    max-width: 1140px;
    margin: 0 auto;
  }
}
.vs-item04-titleEn{
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px){
  .vs-item04-titleEn{
    -webkit-transform: translateY(52px);
        -ms-transform: translateY(52px);
            transform: translateY(52px);
  }
}
@media screen and (max-width: 768px){
  .vs-item04-titleEn{
    margin-left: 40px;
    -webkit-transform: translate(0, 60%);
        -ms-transform: translate(0, 60%);
            transform: translate(0, 60%);
  }
}
@media screen and (min-width: 769px){
  .vs-item04-body{
    margin-right: 9%;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-body{
    padding: 65px 65px 35px;
  }
}
@media screen and (min-width: 769px){
  .vs-item04-title{
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-title{
    margin: 0 0 15px;
  }
}
.vs-item04-graph{
  position: relative;
}
@media screen and (min-width: 769px){
  .vs-item04-graph{
    margin: 70px 0 0;
  }
}
.vs-item04-graph:after{
  content: "比較";
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: #dbdbdb;
  border-radius: 100%;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: .3em;
}
@media screen and (max-width: 768px){
  .vs-item04-graph:after{
    display: none;
  }
}
@media screen and (min-width: 769px){
  .vs-item04-graph-slider{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 100px 9%;
    background: #fff;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-slider{
    background: #ededed;
  }
}
@media screen and (min-width: 769px){
  .vs-item04-graph-slider-item{
    max-width: 418px;
    width: 45%;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-slider-item{
    background: #fff;
    padding: 25px;
  }
}
@media screen and (min-width: 769px){
  .vs-item04-graph-img{
    margin: 0 -4% 15px 0;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-img{
    margin: 0 -5% 5px 0;
  }
}
.vs-item04-graph-img img{
  width: 100%;
}
.vs-item04-graph-grayLabel{
  background: #dbdbdb;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: .04em;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.5;
  box-sizing: border-box;
}
@media screen and (min-width: 769px){
  .vs-item04-graph-grayLabel{
    padding: 15px 10px;
    font-size: 15px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-grayLabel{
    font-size: 13px;
    padding: 5px;
    margin-bottom: 5px;
    min-height: 50px;
  }
}
.vs-item04-graph-comment{
  background: #a21b30;
  color: #fff;
  letter-spacing: .04em;
  position: relative;
}
@media screen and (min-width: 769px){
  .vs-item04-graph-comment{
    font-size: 20px;
    height: 80px;
    margin-top: 25px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .vs-item04-graph-comment{
    font-size: 15px;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-comment{
    font-size: 15px;
    height: 50px;
    margin-top: 15px;
  }
}
.vs-item04-graph-comment:before{
  content: "";
  display: block;
  position: absolute;
}
@media screen and (min-width: 769px){
  .vs-item04-graph-comment:before{
    border-right: 50px solid transparent;
    border-bottom: 90px solid #a21b30;
    border-left: 50px solid transparent;
    top: -40px;
    right: 0;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-comment:before{
    border-right: 25px solid transparent;
    border-bottom: 50px solid #a21b30;
    border-left: 25px solid transparent;
    top: -25px;
    right: 11%;
  }
}
.vs-item04-graph-comment span{
  position: relative;
  z-index: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.vs-item04-graph-comment span:before , .vs-item04-graph-comment span:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media screen and (min-width: 769px){
  .vs-item04-graph-comment span:before , .vs-item04-graph-comment span:after{
    left: 35px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .vs-item04-graph-comment span:before , .vs-item04-graph-comment span:after{
    left: 4%;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-comment span:before , .vs-item04-graph-comment span:after{
    left: 10px;
  }
}
.vs-item04-graph-comment.-round span:before{
  border: 2px solid #fff;
  border-radius: 100%;
}
@media screen and (min-width: 769px){
  .vs-item04-graph-comment.-round span:before{
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-comment.-round span:before{
    width: 25px;
    height: 25px;
  }
}
.vs-item04-graph-comment.-cross span:before , .vs-item04-graph-comment.-cross span:after{
  height: 2px;
  background: #fff;
}
@media screen and (min-width: 769px){
  .vs-item04-graph-comment.-cross span:before , .vs-item04-graph-comment.-cross span:after{
    width: 35px;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-comment.-cross span:before , .vs-item04-graph-comment.-cross span:after{
    width: 32px;
  }
}
.vs-item04-graph-comment.-cross span:before{
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.vs-item04-graph-comment.-cross span:after{
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 768px){
  .vs-item04-labelTitle{
    margin: 0 25px 10px;
  }
}
.special-labelTitle {
    background: #a21b308;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: .04em;
    padding: 5px;
}

.special-box{
  background: #ededed;
  position: relative;
}
@media screen and (min-width: 769px){
  .special-box_small{
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 769px){
  .special-box_small-body{
    margin-left: 9%;
  }
}
@media screen and (min-width: 769px){
  .special-box_small-inner{
    width: calc(100% - 125px);
  }
}

@media screen and (max-width: 768px){
  .special-slider-item{
    margin-right: 5px;
    margin-left: 5px;
  }
}
@media screen and (min-width: 769px){
.img-responsive600 {
    display: block;
    width: 100%;
	max-width: 930px;
    height: auto;
	margin: 0 auto;
	padding-bottom: 30px;
}
}
@media screen and (max-width: 768px){
.img-responsive600 {
    display: block;
    width: 100%;
	max-width: 930px;
    height: auto;
	margin: 0 auto;
	padding-bottom: 0px;
	padding-top: 10px;
}	
}

@media screen and (min-width: 769px){
  .shousaisentaku{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
	.search-area-name-item11 {
padding: 15px 15px 15px 0;
}

}


@media screen and (max-width: 768px){
  .shousaisentaku{
    display: 0;
    display: 0;
    display: 0;
  }
 .search-area-name-item11{ padding: 15px 15px 15px 0;
    padding-left: 23px;
    padding-right: 23px;
	
  }
  .search-area-name-item11:nth-child(odd){
    background: #dbdbdb;
  }	
		
}

@media screen and (min-width: 768px){
	.tantoushasin{
		height: 120px !important;width: 100px;
	}		
}
@media screen and (max-width: 767px){
	.tantoushasin{
		height: 200px!important;
		width: 180px;
	}	
}
.saisinkasen{
	    color: #a21b30;
}


.c-anchor {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
  padding: 0 70px;
}

@media (max-width: 767px) {
  .c-anchor {
    margin-bottom: 30px;
    padding: 0 4.68vw;
  }
}

.c-anchor::before, .c-anchor::after {
  display: block;
  width: 200px;
  content: '';
}

@media (max-width: 767px) {
  .c-anchor::before, .c-anchor::after {
    width: 49%;
  }
}

.c-anchor::before {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.c-anchor__list {
  width: 200px;
}

@media (max-width: 767px) {
  .c-anchor__list {
    width: 49%;
  }
  .c-anchor__list:nth-child(n+3) {
    margin-top: 10px;
  }
}

.c-anchor__list:nth-child(n+5) {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .c-anchor__list:nth-child(n+5) {
    margin-top: 10px;
  }
}

.c-anchor__item {
  -webkit-backface-visibility: hidden;
  -webkit-transition-duration: 300ms;
  display: block;
  position: relative;
  width: 100%;
  border: 1px solid #7A0349;
  backface-visibility: hidden;
  color: #7A0349;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  transition-duration: 300ms;
}

.c-anchor__item.is-active {
  background-color: #7A0349;
  color: #fff;
}

.c-anchor__item:hover {
  background-color: #7F576E;
  color: #fff;
}

.c-anchor-c {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 660px;
  margin: 0 auto 30px auto;
  /*&::before,
  &::after {
    content: '';
    display: block;
    width: 200px;
    @include media-sp {
      width: 49%;
    }
  }
  &::before {
    order: 1;
  }*/
}

@media (max-width: 767px) {
  .c-anchor-c {
    width: 100%;
    padding: 0 4.68vw;
  }
}

.c-anchor-c__list {
  width: 200px;
  margin: 0 10px;
}

@media (max-width: 767px) {
  .c-anchor-c__list {
    width: 49%;
    margin: 0 auto;
  }
  .c-anchor-c__list:nth-child(n+3) {
    margin-top: 10px;
  }
}

.c-anchor-c__list:nth-child(n+4) {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .c-anchor-c__list:nth-child(n+4) {
    margin-top: 10px;
  }
}

.c-anchor-c__item {
  -webkit-backface-visibility: hidden;
  -webkit-transition-duration: 300ms;
  display: block;
  position: relative;
  width: 100%;
  border: 2px solid #7A0349;
  backface-visibility: hidden;
  color: #7A0349;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  transition-duration: 300ms;
}

.c-anchor-c__item.is-active {
  background-color: #7A0349;
  color: #fff;
}

.c-anchor-c__item:hover {
  background-color: #7F576E;
  color: #fff;
}

@media only screen and (min-width:1200px) {
.menu li a span.jp  {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #eeeeee;
  border-right: solid 1px #eeeeee;
  position: absolute;
  top: 50%;
  margin-top: 5px;
margin-left: 7px;
transform: rotate(132deg);
}
}

@media only screen and (max-width:1199px) {
.menu li a span.jp  {
   display: none;
}	
	
}


.aka{
    color: #c13b50;
}
.aisatu {
    background: #f5f5f5 url(./img/top/haikei2.jpg);
    background-position: bottom;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.0);
    background: #f5f5f5 url(../img/haikei1.jpg) no-repeat top center;
}

.aisatu_inner {
    padding: 60px 0px;
    background-color: rgba(0, 0, 0, 0.0);
}



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

.subBox {
    padding: 50px;
    margin: 0 auto;
    position: relative;
    max-width: 970px;
    background: rgba(255,255,255,0.93);
}	
.subBox1 {
    padding: 50px;
    margin: 0 auto;
    position: relative;
    max-width: 970px;
    background: #ffffff;
}	
.midasia{
		    font-size: 30px;
    font-weight: bold;
    text-align: center;letter-spacing: 2.8px;
    text-shadow: 0 0 1px rgba(0, 0, 0, .14);
    font-family: Century Gothic, sans-serif;
		    color: #004aad;    color: #444648;
	 
	}	
	
}

@media only screen and (max-width:767px) {
.subBox {
    padding: 20px;
    margin: 0 auto;
    position: relative;
    max-width: 970px;
    background: rgba(255,255,255,0.93);
}
.subBox1 {
    padding: 20px;
    margin: 0 auto;
    position: relative;
    max-width: 970px;
    background: #ffffff;
}	
.midasia{
		    font-size: 23px;
    font-weight: bold;
    text-align: center;letter-spacing: 2.8px;
    text-shadow: 0 0 1px rgba(0, 0, 0, .14);
    font-family: Century Gothic, sans-serif;
		    color: #004aad;    color: #444648;
	}	
}

footer {
    background: #ffffff;
    border-top: 1px solid #cccccc;
    font-size: 0.9em;
    color: #222222;
    font-weight: 500;  
    padding: 30px 0px;
}

 .list02 {
	 
	 padding:0;
	 margin:0;
 }
 .list02 li {
	 list-style:none;
	 padding:0 0 0 0px;
	 margin:0;
font-size: 13px;
    line-height: 26px;
	font-weight:400;
 }

.copyright {
text-align: center;
    padding: 10px;
    color: #666666;
    background: #0a0a0a;
    width: 100%;
	position: fixed_bk;
	bottom: 0px;
    font-size: 11px !important;
	font-family: "Titillium Web", serif;
	    border-top: 1px solid #2b2b2b;
	   border-bottom: 1px solid #2b2b2b;
}
.db {
    font-family: "Dingbats Font Land lite Regular";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
vertical-align: middle;
}
.db-032:before {
    content: "W";
}
.f36{
	font-size: 36px;
}
.height20{
	line-height: 20px;
}
.snsbtnitia{
display:flex;
flex-flow:row wrap;margin-top: 10px;
justify-content:space-betweenbk;	
}

.snsbtnitia li{
flexcb:0 0 33%;    padding-right: 20px;

}
.mb5{
padding-bottom: 5px;
}
@media only screen and (min-width:1200px) {
.mp80{
	margin-top: 80px;
}
}

@media only screen and (max-width:1199px) {
.mp80{
	margin-top: 60px;
}
}
.pd40{
	padding-bottom: 40px;
}

.wakuaka{
	padding: 30px;
	border: solid 1px #a21b30;
}


.service-labelSubTitle {
    background: #a21b30;
    color: #fff;
    text-align: center;
    letter-spacing: .04em;
    padding: 7px;
}

@media screen and (min-width: 769px){
  .service-labelSubTitle{
    font-size: 17px !important;
  }
}
@media screen and (max-width: 768px){
  .service-labelSubTitle{
    font-size: 14px !important;
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
.checkhaikeisiro{
	   background: #ffffff;   
	padding:30px;

}
.checkhaikeigry{
	   background: #ededed;   
	padding:30px;

}
.checkhaikei{
	  background: #ededed;
    padding: 25px 25px 25px 65px;
	margin-bottom: 15px;
	position: relative;font-size: 17px;
    box-sizing: border-box;
}
@media screen and (max-width: 768px){
.checkhaikei {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.6;
    padding: 25px 25px 25px 55px;
}
}
.seller-faq-icon {
    font-family: bebas-neue-by-fontfabric,sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
     color: #544242;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}


.seller-faq-icon {
    font-size: 2.2rem;
    left: 22px;
}
@media screen and (max-width: 768px){
.seller-faq-icon {
    font-size: 2rem;
    left: 15px;
}	
}
.center1{
	text-align: center;
}

.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:10px;padding-left:10px}

.akiyamozi{
	font-weight: bold;
    letter-spacing: 1px;
    color: #544242;
}

.seller-plan .seller-cover-img{
  background-image: url("../images/service/seller/plan_cover.jpg");
}

@media screen and (min-width: 769px){
  .seller-plan-body{
    padding: 170px 0 240px;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-body{
    padding: 40px 0 130px;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-list:first-child .seller-plan-item:nth-child(n+3){

  }
}

@media screen and (min-width: 769px){
  .seller-plan-list.-col2{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .seller-plan-list.-col2 .seller-plan-item{
    width: 48%;
  }
  .seller-plan-list.-col2 .seller-plan-contents{
    margin-left: 8%;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-list.-col2 .seller-plan-item{
    display: none;
  }
}

@media screen and (max-width: 768px){
  .seller-plan .viewMore-accordion-text.-open .seller-plan-item{
    display: block !important;
  }
}

@media screen and (max-width: 768px){
  .seller-plan .viewMore-accordion-btn{
    margin-top: 15px;
  }
}

.seller-plan-item{
  position: relative;
}
@media screen and (min-width: 769px){
  .seller-plan-item{
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px){
  .seller-plan-item{
    margin-top: 60px;
  }
}
@media screen and (min-width: 769px){
  .seller-plan-item_06 .seller-plan-img{
    margin-top: 50px;
  }
}

.seller-plan-titleEn{
  position: absolute;
}
@media screen and (min-width: 769px){
  .seller-plan-titleEn{
    top: -55px;color: #544242;
    left: 0;
  }
	
	.sellmae{
		padding-bottom: 70px;
	}	
}

@media screen and (max-width: 768px){
  .seller-plan-titleEn{
    top: -20px;color: #544242;
    left: 0px;
  }
	.sellmae{
		padding-bottom: 0px;
	}	
	
}

.seller-plan-contents{
  background: #ededed;
  box-sizing: border-box;
}
@media screen and (min-width: 769px){
  .seller-plan-contents{
    margin-left: 4%;
    padding: 75px 45px 45px 50px;
    height: 100%;
  }
}
@media screen and (max-width: 768px){
  .seller-plan-contents{
    padding: 60px 40px 40px 40px;
  }
}

@media screen and (min-width: 769px){
  .seller-plan-col2{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 769px){
  .seller-plan-left{
    max-width: 475px;
    width: 48%;
  }
}

@media screen and (min-width: 769px){
  .seller-plan-right{
    max-width: 471px;
    width: 48%;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-right{
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px){
  .seller-plan-title{
	 border:solid 1px #544242;
	  color: #544242;
display: inline-block;
  padding: 5px 25px;
	  font-size: 23px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-title{
	 border:solid 1px #544242;
	  color: #544242;
display: inline-block;
	  padding: 5px 25px;
	  font-size: 18px;
    margin-bottom: 15px;
  }
}

.seller-plan-subTitle{
  margin-bottom: 10px;
}
@media screen and (min-width: 769px){
  .seller-plan-subTitle{
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: .04em;
  }
}
@media screen and (max-width: 768px){
  .seller-plan-subTitle{
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: .1em;
  }
}

.seller-plan-text{
  color: #646464;
}
@media screen and (min-width: 769px){
  .seller-plan-text{
    font-size: 1.4rem;
    line-height: 1.7;
    letter-spacing: .05em;
  }
}
@media screen and (max-width: 768px){
  .seller-plan-text{
    font-size: 1.3rem;
    line-height: 1.7;
    letter-spacing: 0;
  }
}

.seller-plan-img{
  margin-top: 25px;
}

.seller-plan-btn{
  margin-top: 50px;
}

.seller-voice .seller-cover-img{
  background-image: url("../images/service/seller/voice_cover.jpg");
}
/*

.afterSupport-labelTitle{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  background: #544242;
  color: #fff;
  display: block !important;
}
@media screen and (min-width: 769px){
  .afterSupport-labelTitle{
    padding: 10px 20px;
    font-size: 1.4rem;
    letter-spacing: .2em;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px){
  .afterSupport-labelTitle{
    padding: 20px 10px;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: .6em;
    position: relative;
  }
  .afterSupport-labelTitle:hover{
    cursor: pointer;
  }
}

.service-labelSubTitle {
    background: #544242;
    color: #fff;
    text-align: center;
    letter-spacing: .04em;
    padding: 7px;
}

@media screen and (min-width: 769px){
  .service-labelSubTitle{
    font-size: 17px !important;
  }
}
@media screen and (max-width: 768px){
  .service-labelSubTitle{
    font-size: 14px !important;
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
.checkhaikeisiro{
	   background: #ffffff;   
	padding:30px;

}
.checkhaikeigry{
	   background: #ededed;   
	padding:30px;

}
.checkhaikei{
	  background: #ededed;
    padding: 25px 25px 25px 65px;
	margin-bottom: 15px;
	position: relative;font-size: 17px;
    box-sizing: border-box;
}
@media screen and (max-width: 768px){
.checkhaikei {
    font-size: 14px;
    letter-spacing: 0em;
    line-height: 1.6;
    padding: 25px 25px 25px 55px;
}
}
.seller-faq-icon {
    font-family: bebas-neue-by-fontfabric,sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
     color: #544242;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}


.seller-faq-icon {
    font-size: 2.2rem;
    left: 22px;
}
@media screen and (max-width: 768px){
.seller-faq-icon {
    font-size: 2rem;
    left: 15px;
}	
}
.center1{
	text-align: center;
}

.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:10px;padding-left:10px}

.akiyamozi{
	font-weight: bold;
    letter-spacing: 1px;
    color: #544242;
}

.seller-plan .seller-cover-img{
  background-image: url("../images/service/seller/plan_cover.jpg");
}

@media screen and (min-width: 769px){
  .seller-plan-body{
    padding: 170px 0 240px;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-body{
    padding: 40px 0 130px;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-list:first-child .seller-plan-item:nth-child(n+3){

  }
}

@media screen and (min-width: 769px){
  .seller-plan-list.-col2{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .seller-plan-list.-col2 .seller-plan-item{
    width: 48%;
  }
  .seller-plan-list.-col2 .seller-plan-contents{
    margin-left: 8%;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-list.-col2 .seller-plan-item{
    display: none;
  }
}

@media screen and (max-width: 768px){
  .seller-plan .viewMore-accordion-text.-open .seller-plan-item{
    display: block !important;
  }
}

@media screen and (max-width: 768px){
  .seller-plan .viewMore-accordion-btn{
    margin-top: 15px;
  }
}

.seller-plan-item{
  position: relative;
}
@media screen and (min-width: 769px){
  .seller-plan-item{
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px){
  .seller-plan-item{
    margin-top: 60px;
  }
}
@media screen and (min-width: 769px){
  .seller-plan-item_06 .seller-plan-img{
    margin-top: 50px;
  }
}

.seller-plan-titleEn{
  position: absolute;
}
@media screen and (min-width: 769px){
  .seller-plan-titleEn{
    top: -55px;color: #544242;
    left: 0;
  }
	
	.sellmae{
		padding-bottom: 70px;
	}	
}

@media screen and (max-width: 768px){
  .seller-plan-titleEn{
    top: -20px;color: #544242;
    left: 0px;
  }
	.sellmae{
		padding-bottom: 0px;
	}	
	
}

.seller-plan-contents{
  background: #ededed;
  box-sizing: border-box;
}
@media screen and (min-width: 769px){
  .seller-plan-contents{
    margin-left: 4%;
    padding: 75px 45px 45px 50px;
    height: 100%;
  }
}
@media screen and (max-width: 768px){
  .seller-plan-contents{
    padding: 60px 40px 40px 40px;
  }
}

@media screen and (min-width: 769px){
  .seller-plan-col2{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 769px){
  .seller-plan-left{
    max-width: 475px;
    width: 48%;
  }
}

@media screen and (min-width: 769px){
  .seller-plan-right{
    max-width: 471px;
    width: 48%;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-right{
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px){
  .seller-plan-title{
	 border:solid 1px #544242;
	  color: #544242;
display: inline-block;
  padding: 5px 25px;
	  font-size: 23px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px){
  .seller-plan-title{
	 border:solid 1px #544242;
	  color: #544242;
display: inline-block;
	  padding: 5px 25px;
	  font-size: 18px;
    margin-bottom: 15px;
  }
}

.seller-plan-subTitle{
  margin-bottom: 10px;
}
@media screen and (min-width: 769px){
  .seller-plan-subTitle{
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: .04em;
  }
}
@media screen and (max-width: 768px){
  .seller-plan-subTitle{
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: .1em;
  }
}

.seller-plan-text{
  color: #646464;
}
@media screen and (min-width: 769px){
  .seller-plan-text{
    font-size: 1.4rem;
    line-height: 1.7;
    letter-spacing: .05em;
  }
}
@media screen and (max-width: 768px){
  .seller-plan-text{
    font-size: 1.3rem;
    line-height: 1.7;
    letter-spacing: 0;
  }
}

.seller-plan-img{
  margin-top: 25px;
}

.seller-plan-btn{
  margin-top: 50px;
}

.seller-voice .seller-cover-img{
  background-image: url("../images/service/seller/voice_cover.jpg");
}
/*
è‹±èªžã®è¦‹å‡ºã—
------------------------------------------------*/
.c-titleEn{

  font-weight: 300;
  font-style: normal;
  letter-spacing: .4em;
}
@media screen and (min-width: 769px){
  .c-titleEn{
    font-size: 65px;color: #544242;
  }
}
@media screen and (max-width: 768px){
  .c-titleEn{
    font-size: 30px;color: #544242;
  }
}
.c-titleEn.-white{
  color: #fff;
}
.special-box {
    background: #ededed;
    position: relative;
}

/*
ãŠå½¹ç«‹ã¡ã‚³ãƒ³ãƒ†ãƒ³ãƒ„  /  è²·ã† VS å€Ÿã‚Šã‚‹
------------------------------------------------*/
.vs{
  padding-bottom: 0;
}
@media screen and (min-width: 769px){
  .vs-item01{
    margin-bottom: 170px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01{
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 769px){
  .vs-item01-box{
    padding: 125px 0 100px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-box{
    padding: 20px 25px;
  }
}
@media screen and (min-width: 769px){
  .vs-item01-inner{
    max-width: 850px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px){
  .vs-item01-slider{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 769px){
  .vs-item01-slider-item{
    max-width: 400px;
    width: 48%;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-slider-item{
    margin-top: 20px;
  }
}
.vs-item01-body{
  background: #fff;
  position: relative;
}
@media screen and (min-width: 769px){
  .vs-item01-body{
    padding: 95px 50px 55px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .vs-item01-body{
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-body{
    padding: 65px 25px 25px;
  }
}
.vs-item01-headline{
  text-align: center;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .2em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 769px){
  .vs-item01-headline{
    font-size: 65px;color: #544242;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-headline{
    font-size: 45px;color: #544242;
    -webkit-transform: translate(0, -38%);
        -ms-transform: translate(0, -38%);
            transform: translate(0, -38%);
  }
}
.vs-item01-info{
  letter-spacing: .04em;
  color: #646464;
}
@media screen and (min-width: 769px){
  .vs-item01-info{
    font-size: 15px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-info{
    font-size: 13px;
  }
}
.vs-item01-info dl{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ededed;
}
@media screen and (min-width: 769px){
  .vs-item01-info dl{
    padding-bottom: 8px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-info dl{
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
}
.vs-item01-info dl:last-child{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.vs-item01-info dd{
  margin: 0 0 0 auto;
}
@media screen and (min-width: 769px){
  .vs-item01-graph{
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-graph{
    margin-top: 30px;
  }
}
.vs-item01-graph-img img{
  width: 100%;
}
.vs-item01-price{
  background: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 5px;
  line-height: 1;
}
@media screen and (min-width: 769px){
  .vs-item01-price{
    padding: 15px 0 20px;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-price{
    padding: 7px 25px 8px;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.vs-item01-price-name{
  letter-spacing: .04em;
  color: #646464;
  margin-right: 20px;
  position: relative;
  top: -6px;
}
@media screen and (min-width: 769px){
  .vs-item01-price-name{
    font-size: 20px;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-price-name{
    font-size: 15px;
  }
}
@media screen and (max-width: 768px){
.special-price_num{
    font-size: 45px;
  }
}
@media screen and (max-width: 768px){
.special-price_yen{
    font-size: 15px;
  }
}
.vs-item01-lead{
  background: #544242;
  color: #fff;
  letter-spacing: .04em;
  line-height: 2;
}
@media screen and (min-width: 769px){
  .vs-item01-lead{
    font-size: 2rem;
    padding: 28px 20px;
    margin-top: 50px;
    text-align: center;
  }
}
@media screen and (max-width: 768px){
  .vs-item01-lead{
    font-size: 15px;
    line-height: 1.3;
    padding: 22px 25px 22px;
    margin: 30px auto 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px){
.special-price_num{
    font-size: 20px;
	  margin: 0 2px 0 12px;
  line-height: 1.3;
  }
}

@media screen and (min-width: 769px){
.special-price_num{
    font-size: 40px;
	  margin: 0 2px 0 12px;
  line-height: 1.3;
  }
}
@media screen and (max-width: 1112px){
  .vs-item01-lead br{
    display: block;
  }
}
@media screen and (min-width: 769px){
  .vs-item02{
    padding-bottom: 50px;
    margin-bottom: 180px;
  }
}
@media screen and (max-width: 768px){
  .vs-item02{
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 769px){
  .vs-item02-box{
    padding: 60px 0 0 0;
  }
}
@media screen and (max-width: 1112px){
  .vs-item02-box{
    background: none;
  }
}
@media screen and (max-width: 1112px){
  .vs-item02-box:after{
    content: "";
    display: block;
    width: 100%;
    height: 65%;
    background: #ededed;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 1113px){
  .vs-item02-body{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 4%;
  }
}
@media screen and (max-width: 768px){
  .vs-item02-body{
    padding: 20px 15px 0;
  }
}
@media screen and (min-width: 769px){
  .vs-item02-title{
    margin-top: 50px;
    margin-right: 20px;
  }
}
.vs-item02-price{
  background: #dbdbdb;
}
@media screen and (min-width: 769px){
  .vs-item02-price{
    padding: 70px 4% 70px 5%;
    margin-bottom: -105px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .vs-item02-price{
    margin-left: -5%;
    margin-right: 5%;
  }
}
@media screen and (min-width: 1113px){
  .vs-item02-price{
    -webkit-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}
@media screen and (max-width: 1112px){
  .vs-item02-price{
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px){
  .vs-item02-price{
    padding: 25px 25px;
  }
}
.vs-item02-price-total{
  color: #646464;
  letter-spacing: .04em;
}
@media screen and (min-width: 769px){
  .vs-item02-price-total{
    font-size: 20px;
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px){
  .vs-item02-price-total{
    font-size: 15px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px){
  .vs-item02-price-total .special-price_num{
    font-size: 45px;
    margin-left: .1em;
  }
}
@media screen and (max-width: 768px){
  .vs-item02-price-total .special-price_yen{
    font-size: 15px;
  }
}
@media screen and (min-width: 769px){
  .vs-item03{
    margin-bottom: 130px;
  }
}
@media screen and (max-width: 768px){
  .vs-item03{
    margin-bottom: 85px;
  }
}
@media screen and (min-width: 769px){
  .vs-item03-box{
    padding: 60px 0 4% 0;
  }
}
@media screen and (max-width: 768px){
  .vs-item03-box{
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 768px){
  .vs-item03-titleEn{
    margin-left: 40px;
  }
}
@media screen and (min-width: 769px){
  .vs-item03-body{
    margin-right: 9%;
  }
}
@media screen and (max-width: 768px){
  .vs-item03-body{
    padding: 15px 65px 35px;
  }
}
@media screen and (min-width: 769px){
  .vs-item03-title{
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px){
  .vs-item03-title{
    margin: 0 0 15px;
  }
}
@media screen and (min-width: 769px){
  .vs-item03-graph{
    margin: 75px 50px 0;
  }
}
@media screen and (min-width: 769px){
  .vs-item03-graph-slider{
    display: none;
  }
}
.vs-item03-graph-img img{
  width: 100%;
}
@media screen and (max-width: 768px){
  .vs-item03-labelTitle{
    margin: 0 25px 10px;
  }
}
@media screen and (min-width: 769px){
  .vs-item03-price{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 90px;
  }
}
@media screen and (max-width: 768px){
  .vs-item03-price{
    margin-top: 45px;
  }
}
.vs-item03-price-title{
  background: #544242;
  color: #fff;
  letter-spacing: .1em;
  line-height: 2;
}
@media screen and (min-width: 769px){
  .vs-item03-price-title{
    font-size: 2.5rem;
    padding: 60px 5%;
    max-width: 500px;
    width: 52%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .vs-item03-price-title br{
    display: none;
  }
}
@media screen and (max-width: 768px){
  .vs-item03-price-title{
    font-size: 15px;
    padding: 40px;
  }
}
.vs-item03-price-text{
  background: #dbdbdb;
  color: #646464;
}
@media screen and (min-width: 769px){
  .vs-item03-price-text{
    padding: 60px 9% 60px 5%;
    max-width: 655px;
    width: 48%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .vs-item03-price-text:after{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #dbdbdb;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@media screen and (max-width: 768px){
  .vs-item03-price-text{
    padding: 40px;
  }
}
@media screen and (min-width: 769px){
  .vs-item04-box{
    padding: 90px 0 120px 0;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-box{
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 769px){
  .vs-item04-inner{
    max-width: 1140px;
    margin: 0 auto;
  }
}
.vs-item04-titleEn{
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px){
  .vs-item04-titleEn{
    -webkit-transform: translateY(52px);
        -ms-transform: translateY(52px);
            transform: translateY(52px);
  }
}
@media screen and (max-width: 768px){
  .vs-item04-titleEn{
    margin-left: 40px;
    -webkit-transform: translate(0, 60%);
        -ms-transform: translate(0, 60%);
            transform: translate(0, 60%);
  }
}
@media screen and (min-width: 769px){
  .vs-item04-body{
    margin-right: 9%;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-body{
    padding: 65px 65px 35px;
  }
}
@media screen and (min-width: 769px){
  .vs-item04-title{
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-title{
    margin: 0 0 15px;
  }
}
.vs-item04-graph{
  position: relative;
}
@media screen and (min-width: 769px){
  .vs-item04-graph{
    margin: 70px 0 0;
  }
}
.vs-item04-graph:after{
  content: "æ¯”è¼ƒ";
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: #dbdbdb;
  border-radius: 100%;
  font-size: 25px;
  font-size: 2.5rem;
  letter-spacing: .3em;
}
@media screen and (max-width: 768px){
  .vs-item04-graph:after{
    display: none;
  }
}
@media screen and (min-width: 769px){
  .vs-item04-graph-slider{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 100px 9%;
    background: #fff;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-slider{
    background: #ededed;
  }
}
@media screen and (min-width: 769px){
  .vs-item04-graph-slider-item{
    max-width: 418px;
    width: 45%;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-slider-item{
    background: #fff;
    padding: 25px;
  }
}
@media screen and (min-width: 769px){
  .vs-item04-graph-img{
    margin: 0 -4% 15px 0;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-img{
    margin: 0 -5% 5px 0;
  }
}
.vs-item04-graph-img img{
  width: 100%;
}
.vs-item04-graph-grayLabel{
  background: #dbdbdb;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: .04em;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.5;
  box-sizing: border-box;
}
@media screen and (min-width: 769px){
  .vs-item04-graph-grayLabel{
    padding: 15px 10px;
    font-size: 15px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-grayLabel{
    font-size: 13px;
    padding: 5px;
    margin-bottom: 5px;
    min-height: 50px;
  }
}
.vs-item04-graph-comment{
  background: #544242;
  color: #fff;
  letter-spacing: .04em;
  position: relative;
}
@media screen and (min-width: 769px){
  .vs-item04-graph-comment{
    font-size: 20px;
    height: 80px;
    margin-top: 25px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .vs-item04-graph-comment{
    font-size: 15px;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-comment{
    font-size: 15px;
    height: 50px;
    margin-top: 15px;
  }
}
.vs-item04-graph-comment:before{
  content: "";
  display: block;
  position: absolute;
}
@media screen and (min-width: 769px){
  .vs-item04-graph-comment:before{
    border-right: 50px solid transparent;
    border-bottom: 90px solid #544242;
    border-left: 50px solid transparent;
    top: -40px;
    right: 0;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-comment:before{
    border-right: 25px solid transparent;
    border-bottom: 50px solid #544242;
    border-left: 25px solid transparent;
    top: -25px;
    right: 11%;
  }
}
.vs-item04-graph-comment span{
  position: relative;
  z-index: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.vs-item04-graph-comment span:before , .vs-item04-graph-comment span:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media screen and (min-width: 769px){
  .vs-item04-graph-comment span:before , .vs-item04-graph-comment span:after{
    left: 35px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .vs-item04-graph-comment span:before , .vs-item04-graph-comment span:after{
    left: 4%;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-comment span:before , .vs-item04-graph-comment span:after{
    left: 10px;
  }
}
.vs-item04-graph-comment.-round span:before{
  border: 2px solid #fff;
  border-radius: 100%;
}
@media screen and (min-width: 769px){
  .vs-item04-graph-comment.-round span:before{
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-comment.-round span:before{
    width: 25px;
    height: 25px;
  }
}
.vs-item04-graph-comment.-cross span:before , .vs-item04-graph-comment.-cross span:after{
  height: 2px;
  background: #fff;
}
@media screen and (min-width: 769px){
  .vs-item04-graph-comment.-cross span:before , .vs-item04-graph-comment.-cross span:after{
    width: 35px;
  }
}
@media screen and (max-width: 768px){
  .vs-item04-graph-comment.-cross span:before , .vs-item04-graph-comment.-cross span:after{
    width: 32px;
  }
}
.vs-item04-graph-comment.-cross span:before{
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.vs-item04-graph-comment.-cross span:after{
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 768px){
  .vs-item04-labelTitle{
    margin: 0 25px 10px;
  }
}
.special-labelTitle {
    background: #544242;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: .04em;
    padding: 5px;
}

.special-box{
  background: #ededed;
  position: relative;
}
@media screen and (min-width: 769px){
  .special-box_small{
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 769px){
  .special-box_small-body{
    margin-left: 9%;
  }
}
@media screen and (min-width: 769px){
  .special-box_small-inner{
    width: calc(100% - 125px);
  }
}

@media screen and (max-width: 768px){
  .special-slider-item{
    margin-right: 5px;
    margin-left: 5px;
  }
}
.midasifull {
    font-style: normal;
    font-size: 45px;
    letter-spacing: .1em;
    color: #544242;
}
.midasifull1 {
    font-style: normal;
    font-size: 30px;
    letter-spacing: .1em;
    color: #544242;
}
@media screen and (max-width: 768px){
	.midasifull {
    font-style: normal;
    font-size: 26px;
    letter-spacing: .1em;
    color: #544242;
}
	.midasifull1 {
    font-style: normal;
    font-size: 20px;
    letter-spacing: .1em;
    color: #544242;
}	
}

.box_area p span {
    display: block;
    margin-bottom: 5px;
    color: #544242;
    font-size: 16px;
    font-weight: 600;
}
.box_area p {
    display: block;
    margin-bottom: 20px;
    color: #454545;
    font-size: 14px !important;
    font-weight: 400;
}


.iedock-menu{
  position: relative;
}
@media screen and (min-width: 769px){
  .iedock-menu{
    padding-top: 120px;
  }
}
@media screen and (max-width: 768px){
  .iedock-menu{
    padding-top: 85px;
  }
}
.iedock-menu-body.-bgGray{
 
}
.iedock-menu-text{
  color: #646464;
}
@media screen and (min-width: 769px){
  .iedock-menu-text{
    font-size: 1.4rem;
    line-height: 2.1;
    letter-spacing: .1em;
  }
}
@media screen and (max-width: 768px){
  .iedock-menu-text{
    font-size: 1.3rem;
    line-height: 1.7;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 769px){
  .iedock-menu-lead{
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: .04em;
  }
}
@media screen and (max-width: 768px){
  .iedock-menu-lead{
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0;
  }
}

@media screen and (min-width: 769px){
  .iedock-menu_01{
    padding-top: 150px;
  }
}

@media screen and (max-width: 768px){
  .iedock-menu_01{
    padding-top: 100px;
  }
}

.iedock-menu_01-inner{
  position: relative;
}

.iedock-menu_01-titleEn{
  position: absolute;
}
@media screen and (min-width: 769px){
  .iedock-menu_01-titleEn{
    top: -53px;
    left: 0;
  }
}
@media screen and (max-width: 768px){
  .iedock-menu_01-titleEn{
    top: -15px;
    left: 15px;
  }
}

@media screen and (min-width: 769px){
  .iedock-menu_01-main{
    padding: 60px 0 120px;
  }
}

@media screen and (max-width: 768px){
  .iedock-menu_01-main{
    padding: 60px 15px 50px;
  }
}

@media screen and (min-width: 769px){
  .iedock-menu_01-head{

    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.iedock-menu_01-head-text{
  color: #646464;
}
@media screen and (min-width: 769px){
  .iedock-menu_01-head-text{

    font-size: 15px;
    line-height: 2;
    letter-spacing: .1em;
  }
}
@media screen and (max-width: 768px){
  .iedock-menu_01-head-text{
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0;
  }
}

@media screen and (min-width: 1113px){
  .iedock-menu_01-detail{
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 769px){
  .iedock-menu_01-detail{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 65px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .iedock-menu_01-detail{
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 768px){
  .iedock-menu_01-detail{
    margin-top: 70px;
  }
  .iedock-menu_01-detail.-open .iedock-menu_01-detail-item{
    display: block !important;
  }
}

.iedock-menu_01-detail-item{
  background: #fff;
}
@media screen and (min-width: 1113px){
  .iedock-menu_01-detail-item{
    width: 24%;
  }
}
@media screen and (min-width: 769px){
  .iedock-menu_01-detail-item{
    max-width: 270px;
    padding: 50px 25px 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1112px){
  .iedock-menu_01-detail-item{
    margin: 0 7px 20px;
  }
}
@media screen and (max-width: 768px){
  .iedock-menu_01-detail-item{
    padding: 30px 25px 40px;
    margin-bottom: 5px;
  }
  .iedock-menu_01-detail-item:last-child{
    margin-bottom: 0;
  }
  .iedock-menu_01-detail-item:nth-child(n+3){
    display: none;
  }
}

.iedock-menu_01-detail-title{
  text-align: center;
  letter-spacing: .24em;
  line-height: 1.6;
}
@media screen and (min-width: 769px){
  .iedock-menu_01-detail-title{
    font-size: 1.8rem;
    height: 57px;
  }
}
@media screen and (max-width: 768px){
  .iedock-menu_01-detail-title{
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 769px){
  .iedock-menu_01-detail-img{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 91px;
    margin: 35px auto;
  }
}

@media screen and (max-width: 768px){
  .iedock-menu_01-detail-img{
    margin: 25px auto;
  }
}

.iedock-menu_01-detail-img.-img01{
  max-width: 148px;
}

.iedock-menu_01-detail-img.-img02{
  max-width: 156px;
}

.iedock-menu_01-detail-img.-img03{
  max-width: 162px;
}

.iedock-menu_01-detail-img.-img04{
  max-width: 124px;
}

.iedock-menu_01-detail-img img{
  width: 100%;
}

.iedock-menu_01-detail-text{
  color: #646464;
}
@media screen and (min-width: 769px){
  .iedock-menu_01-detail-text{
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: .04em;
  }
}
@media screen and (max-width: 768px){
  .iedock-menu_01-detail-text{
    font-size: 1.3rem;
    line-height: 1.7;
    letter-spacing: 0;
  }
}

.iedock-menu_01-detail-btn{
  margin-top: 35px;
}


.service-title{
  letter-spacing: .1em;
  line-height: 2;
	padding-bottom: 15px;
}
@media screen and (min-width: 769px){
  .service-title{
    font-size: 24px;
  }
  .service-title span{
    font-size: 20px;
  }
}
@media screen and (max-width: 768px){
  .service-title{
    font-size: 16px;
  }
  .service-title span{
    font-size: 15px;
  }
}


.seller-beginner-item_03-main{
  background: #ededed;position: relative;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-main{
    padding: 0 0 110px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-main{
    padding: 0 0 50px;
  }
}
@media screen and (min-width: 1113px){
  .seller-beginner-item_03-list{
    max-width: 570px;
    width: 50%;
    margin-right: 4%;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-list{
    padding: 0 15px 0;
  }
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-item{
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-item{
    margin-bottom: 40px;
  }
}
.seller-beginner-item_03-item:last-child{
  margin-bottom: 0;
}
.seller-beginner-item_03-box{
  background: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-box{
    padding: 75px 50px 70px;
    text-align: center;
  }
}
@media screen and (min-width: 1113px){
  .seller-beginner-item_03-box{
    width: 530px;
  }
}
@media screen and (max-width: 1112px){
  .seller-beginner-item_03-box{
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-box{
    padding: 35px 15px 50px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-box-textArea{
    padding: 0 25px;
  }
}
.seller-beginner-item_03-question{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-question{
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-question{
    margin-bottom: 30px;
  }
}
.seller-beginner-item_03-question-item{
  border-radius: 100%;
  background: #ededed;
  margin-right: 10px;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-question-item{
    width: 210px;
    height: 210px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-question-item{
    width: 140px;
    height: 140px;
  }
}
.seller-beginner-item_03-question-item:last-child{
  margin-right: 0;
}
.seller-beginner-item_03-question-item span{
  display: block;
}
.seller-beginner-item_03-question-item .-icon{
  background: #00306d;
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  margin: 20px auto 20px;
  border-radius: 100%;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-question-item .-icon{
    width: 55px;
    height: 55px;
    line-height: 64px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-question-item .-icon{
    width: 30px;
    height: 30px;
    line-height: 35px;
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
.seller-beginner-item_03-question-item .-text{
  text-align: center;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-question-item .-text{
    font-size: 1.4rem;
    line-height: 1.7;
    letter-spacing: .24em;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-question-item .-text{
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0;
  }
}
.seller-beginner-item_03-check{
  background: #fff;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check{
    margin-top: 150px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check{
    margin-top: 70px;
  }
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-list{
    padding: 50px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-list{
    padding: 15px;
  }
}
.seller-beginner-item_03-check-item{
  background: #ededed;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-item{

    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-item{
    margin-bottom: 5px;
  }
}
.seller-beginner-item_03-check-item:last-child{
  margin-bottom: 0;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-header{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
   position: relative;    width: 100%;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-header{
 position: relative;    width: 100%;
  }
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-headline{
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-headline{
   padding-right: 5%;
  }
}
.seller-beginner-item_03-check-number{
  position: relative;
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
  font-size: 30px !important;
  letter-spacing: .4em;

}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-number{

  font-size: 18px !important;
    margin-bottom: 5px;
  }
}
.seller-beginner-item_03-check-number:before{
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 0;
  bottom: 0;
  background: url("../images/service/seller/beginner_icon_check.png") no-repeat left center;
  background-size: cover;
  width: 30px;
  height: 30px;
  margin: auto 0;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-title{
    font-size: 1.8rem;
    line-height: 1.9;
    letter-spacing: .24em;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-title{
    font-size: 14px !important;
    line-height: 1.5;
    letter-spacing: 0;font-weight: 400;
  }
}
.seller-beginner-item_03-check-detail{
  border-top: 1px solid #00306d;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-detail{
    padding: 40px 5% 50px 9%;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-detail{
    padding: 25px;
  }
}
.seller-beginner-item_03-check-box{
  color: #646464;
  letter-spacing: .05em;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-box{
    font-size: 1.4rem;
    line-height: 1.7;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-box{
    font-size: 1.3rem;
    line-height: 1.7;
  }
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-box-item{
    width: 49%;
  }
}

@media screen and (min-width: 769px){
  .service-flow-left{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 490px;
    width: 44%;
    border-right: 1px solid #00306d;
    margin-right: 4%;
    padding-right: 4%;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 769px){
  .service-flow-right{
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.service-flow-detail{
 visibility: hidden;display: none;
  position: relative;
  border: 2px solid #ededed;
}
.service-flow-detail:checked + .service-flow-detail:after{
    content: '\f068';
}
.service-flow-detail:checked + .service-flow-detaill + .service-flow-detail{
 position: relative;
  border: 2px solid #ededed;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}
@media screen and (min-width: 769px){
  .service-flow-detail{
    padding: 40px 4%;
  }
}
@media screen and (max-width: 768px){
  .service-flow-detail{
    border-width: 1px;
    padding: 50px 25px;
  }
}

@media screen and (min-width: 769px){
  .service-flow-item_accordion.-open .service-flow-header:before{
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .service-flow-item_accordion.-open .service-flow-header:after{
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

@media screen and (max-width: 768px){
  .service-flow-item_accordion.-open .service-flow-headline:before{
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .service-flow-item_accordion.-open .service-flow-headline:after{
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

.service-flow-item_accordion .service-flow-header:hover{
  cursor: pointer;
}

@media screen and (min-width: 769px){
  .service-flow-item_accordion .service-flow-header:before , .service-flow-item_accordion .service-flow-header:after{
   
  }
  .service-flow-item_accordion .service-flow-header:after{
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media screen and (max-width: 768px){
  .service-flow-item_accordion .service-flow-headline{
    padding-right: 20px;
  }
  .service-flow-item_accordion .service-flow-headline:before , .service-flow-item_accordion .service-flow-headline:after{

  }
  .service-flow-item_accordion .service-flow-headline:after{
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media screen and (min-width: 769px){
  .service-flow-item_accordion .service-flow-right{
   
  }
}
.acd-check{
  display: none;
}
.acd-label{

  display: block;

}
.acd-content{

  height: 0;
  opacity: 0;
  padding: 0 10px;
  transition: .5s;
  visibility: hidden;
}
.acd-check:checked + .acd-label + .acd-content{

  opacity: 1;

  visibility: visible;
}

.accordion111 {

}
.toggle111 {
display: none;
}
.option111 {
position: relative;
margin-bottom: 1em;
}
.title111,
.content111 {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
.title111 {
background: #ededed;
padding: 1em;
display: block;
color: #333;
font-weight: bold;
display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 120px 15px 35px;
    min-height: 100px;
    position: relative;	
}

@media screen and (min-width: 769px){
.title111::after,
.title111::before {
content: "";
position: absolute;
right: 4em;
top: 4em;
width: 1px;
height: 4em;
background-color: #382c25;
transition: all 0.3s;
}
.content111 p {
margin: 0;border-top: 1px solid #544242;
padding: 40px 5% 50px 10%;
	font-size: 14px !important;background: #ededed;
}	
}


@media screen and (max-width: 768px){
.title111::after,
.title111::before {
content: "";
position: absolute;
right: 2.8em;
top: 4.5em;
width: 1px;
height: 3em;
background-color: #382c25;
transition: all 0.3s;
}	
.content111 p {
margin: 0;border-top: 1px solid #544242;
padding: 20px 5% 20px 7.8%;
	font-size: 14px !important;background: #ededed;
}	
}
.title111::after {
transform: rotate(90deg);
}
.content111 {
max-height: 0;
overflow: hidden;
	
}

.toggle111:checked + .title111 + .content111 {
max-height: 500px;
transition: all 1.5s;
}
.toggle111:checked + .title111::before {
transform: rotate(90deg) !important;
}


/*
FLOW
------------------------------------------------*/
.service-flow-item{
  position: relative;
}
@media screen and (min-width: 769px){
  .service-flow-item{
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px){
  .service-flow-item{
    margin-bottom: 5px;
  }
}
.service-flow-item:last-child{
  margin-bottom: 0;
}
.service-flow-item.-current .service-flow-header{
  background: #00306d;
  color: #fff;
}
.service-flow-item.-current .service-flow-numbering{
  background: #fff;
  color: #00306d;
}
.service-flow-item.-current .service-flow-text{
  color: #fff;
}
.service-flow-item.-current .service-flow-btn a{
  color: #fff;
  border-color: #fff;
}
@media screen and (min-width: 769px){
  .service-flow-item.-current .service-flow-btn a:hover{
    color: #00306d;
  }
}

.service-flow-header{
  position: relative;
  background: #ededed;
}
@media screen and (min-width: 769px){
  .service-flow-header{
    padding: 40px 4%;
  }
}
@media screen and (max-width: 768px){
  .service-flow-header{
    padding: 25px;
  }
}
@media screen and (max-width: 768px){
  .service-flow-header .service-flow-right{
    border-top: 1px solid #544242;
    margin-top: 24px;
    padding-top: 15px;
  }
}

.service-flow-headline{
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-flow-numbering{
  border-radius: 5px;
  background: #544242;
  color: #fff;
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
}
@media screen and (min-width: 769px){
  .service-flow-numbering{
    width: 70px;
    height: 70px;
    margin-right: 30px;
    padding: 11px 0 0;
  }
}
@media screen and (max-width: 768px){
  .service-flow-numbering{
    width: 40px;
    height: 40px;
    margin-right: 10px;
    padding: 7px 0 0;
  }
}
.service-flow-numbering span{
  display: block;
  line-height: 1;
}
.service-flow-numbering .-en{
  letter-spacing: .4em;
  margin-right: -.6em;
}
@media screen and (min-width: 769px){
  .service-flow-numbering .-en{
    font-size: 15px;
  }
}
@media screen and (max-width: 768px){
  .service-flow-numbering .-en{
    font-size: 10px;
  }
}
.service-flow-numbering .-number{
  letter-spacing: 0;
}
@media screen and (min-width: 769px){
  .service-flow-numbering .-number{
    font-size: 33px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px){
  .service-flow-numbering .-number{
font-size: 16px;
    margin-top: 3px;
  }
}

.service-flow-titleWrap{
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.service-flow-title{
  line-height: 1.8;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 769px){
  .service-flow-title{
    font-size: 23px;
    letter-spacing: .1em;
  }
}
@media screen and (max-width: 768px){
  .service-flow-title{
    font-size: 16px;
    letter-spacing: 0;
  }
}

@media screen and (min-width: 769px){
  .service-flow-lead{
    font-size: 18px;
    line-height: 2.2;
    letter-spacing: .1em;
  }
}

@media screen and (max-width: 768px){
  .service-flow-lead{
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0em;
    margin-bottom: 20px;
  }
}

.service-flow-text{
  color: #646464;
}
@media screen and (min-width: 769px){
  .service-flow-text{
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: .04em;
  }
}
@media screen and (max-width: 768px){
  .service-flow-text{
    font-size: 1.3rem;
    line-height: 1.7;
    letter-spacing: .04em;
  }
}

@media screen and (min-width: 1113px){
  .service-flow-btn{
    position: absolute;
    top: 0;
    right: 40px;
    bottom: 0;
    margin: auto 0;
    max-width: 445px;
  }
}

@media screen and (max-width: 1112px){
  .service-flow-btn{
    margin-top: 10px;
    max-width: 100%;
  }
}

@media screen and (min-width: 1113px){
  .service-flow-btn.-viewMore{
    max-width: 250px;
  }
}

@media screen and (max-width: 1112px){
  .service-flow-btn.-viewMore{
    max-width: 100%;
  }
}

@media screen and (min-width: 769px){
  .service-flow-col2{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px){
  .service-flow-col2 .service-flow-headline{
    width: 100%;
    /*IE11ãƒãƒƒã‚¯*/
  }
}

@media screen and (min-width: 769px){
  .service-flow-left{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 490px;
    width: 44%;
    border-right: 1px solid #544242;
    margin-right: 4%;
    padding-right: 4%;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 769px){
  .service-flow-right{
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 769px){
	.tel11{
		font-size: 26px;
		color: #382c25;
	}
}
@media screen and (max-width: 768px){
	.tel11{
		font-size: 17px;
		color: #382c25;
	}
}
.kasen{
	border-bottom: 1px dotted #cccccc;
	margin-top: 8px;
	margin-bottom: 8px;	
}
.saisinkasen{
	color: #9b2929;
}

.galleryimg img {
    vertical-align: middle;
    object-fit: cover;
    width: 100%;
    height: 230px;
}
@media screen and (max-width:680px) { 
.galleryimg img {
    vertical-align: middle;
    object-fit: cover;
    width: 100%;
    height: 170px;
}	
}


.c-anchor {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}

@media (max-width: 767px) {
  .c-anchor {
    margin-bottom: 30px;
    padding: 0 4.68vw;
  }
}

.c-anchor::before, .c-anchor::after {
  display: block;
  width: 200px;
  content: '';
}

@media (max-width: 767px) {
  .c-anchor::before, .c-anchor::after {
    width: 49%;
  }
}

.c-anchor::before {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.c-anchor__list {
  width: 200px;
}

@media (max-width: 767px) {
  .c-anchor__list {
    width: 49%;
  }
  .c-anchor__list:nth-child(n+3) {
    margin-top: 10px;
  }
}

.c-anchor__list:nth-child(n+5) {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .c-anchor__list:nth-child(n+5) {
    margin-top: 10px;
  }
}

.c-anchor__item {
  -webkit-backface-visibility: hidden;
  -webkit-transition-duration: 300ms;
  display: block;
  position: relative;
  width: 100%;
  border: 1px solid #382c25;
  backface-visibility: hidden;
  color: #382c25;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  transition-duration: 300ms;
}

.c-anchor__item.is-active {
  background-color: #382c25;
  color: #fff;
}

.c-anchor__item:hover {
  background-color: #6a574c;
  color: #fff;
}

.c-anchor-c {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 660px;
  margin: 0 auto 30px auto;
  /*&::before,
  &::after {
    content: '';
    display: block;
    width: 200px;
    @include media-sp {
      width: 49%;
    }
  }
  &::before {
    order: 1;
  }*/
}

@media (max-width: 767px) {
  .c-anchor-c {
    width: 100%;
    padding: 0 4.68vw;
  }
}

.c-anchor-c__list {
  width: 200px;
  margin: 0 10px;
}

@media (max-width: 767px) {
  .c-anchor-c__list {
    width: 49%;
    margin: 0 auto;
  }
  .c-anchor-c__list:nth-child(n+3) {
    margin-top: 10px;
  }
}

.c-anchor-c__list:nth-child(n+4) {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .c-anchor-c__list:nth-child(n+4) {
    margin-top: 10px;
  }
}

.c-anchor-c__item {
  -webkit-backface-visibility: hidden;
  -webkit-transition-duration: 300ms;
  display: block;
  position: relative;
  width: 100%;
  border: 2px solid #7A0349;
  backface-visibility: hidden;
  color: #7A0349;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  transition-duration: 300ms;
}

.c-anchor-c__item.is-active {
  background-color: #7A0349;
  color: #fff;
}

.c-anchor-c__item:hover {
  background-color: #7F576E;
  color: #fff;
}

@media (max-width: 767px) {
  .anc_shift {
    margin-top: -21.875vw;
    padding-top: 21.875vw;
  }
}
.midasisekouzireio{
	background: #efefef;
	padding:8px;
    color: #544242;	
	font-weight: 600;
font-size: 20px;
	text-align: center;
	
}

.bbtn{
	width: 100%;
    position: relative;
    z-index: 1;height: 60px;
    letter-spacing: .4em;
}
.bbtn a, .bbtn > span {
    position: relative;
    background: #fff;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transition: background .3s ease, color .3s ease;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid #544242;
    color: #544242;
}

.bbtn a:hover, .bbtn > span {
    position: relative;
    background: #eeeeee;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transition: background .3s ease, color .3s ease;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid #544242;
    color: #544242;
}

.service-title{
  letter-spacing: .1em;
  line-height: 2;
	padding-bottom: 15px;
}
@media screen and (min-width: 769px){
  .service-title{
    font-size: 24px;
  }
  .service-title span{
    font-size: 20px;
  }
}
@media screen and (max-width: 768px){
  .service-title{
    font-size: 16px;
  }
  .service-title span{
    font-size: 15px;
  }
}


.seller-beginner-item_03-main{
  background: #ededed;position: relative;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-main{
    padding: 0 0 110px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-main{
    padding: 0 0 50px;
  }
}
@media screen and (min-width: 1113px){
  .seller-beginner-item_03-list{
    max-width: 570px;
    width: 50%;
    margin-right: 4%;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-list{
    padding: 0 15px 0;
  }
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-item{
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-item{
    margin-bottom: 40px;
  }
}
.seller-beginner-item_03-item:last-child{
  margin-bottom: 0;
}
.seller-beginner-item_03-box{
  background: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-box{
    padding: 75px 50px 70px;
    text-align: center;
  }
}
@media screen and (min-width: 1113px){
  .seller-beginner-item_03-box{
    width: 530px;
  }
}
@media screen and (max-width: 1112px){
  .seller-beginner-item_03-box{
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-box{
    padding: 35px 15px 50px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-box-textArea{
    padding: 0 25px;
  }
}
.seller-beginner-item_03-question{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-question{
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-question{
    margin-bottom: 30px;
  }
}
.seller-beginner-item_03-question-item{
  border-radius: 100%;
  background: #ededed;
  margin-right: 10px;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-question-item{
    width: 210px;
    height: 210px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-question-item{
    width: 140px;
    height: 140px;
  }
}
.seller-beginner-item_03-question-item:last-child{
  margin-right: 0;
}
.seller-beginner-item_03-question-item span{
  display: block;
}
.seller-beginner-item_03-question-item .-icon{
  background: #00306d;
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  margin: 20px auto 20px;
  border-radius: 100%;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-question-item .-icon{
    width: 55px;
    height: 55px;
    line-height: 64px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-question-item .-icon{
    width: 30px;
    height: 30px;
    line-height: 35px;
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
.seller-beginner-item_03-question-item .-text{
  text-align: center;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-question-item .-text{
    font-size: 1.4rem;
    line-height: 1.7;
    letter-spacing: .24em;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-question-item .-text{
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0;
  }
}
.seller-beginner-item_03-check{
  background: #fff;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check{
    margin-top: 150px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check{
    margin-top: 70px;
  }
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-list{
    padding: 50px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-list{
    padding: 15px;
  }
}
.seller-beginner-item_03-check-item{
  background: #ededed;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-item{

    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-item{
    margin-bottom: 5px;
  }
}
.seller-beginner-item_03-check-item:last-child{
  margin-bottom: 0;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-header{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
   position: relative;    width: 100%;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-header{
 position: relative;    width: 100%;
  }
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-headline{
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-headline{
   padding-right: 5%;
  }
}
.seller-beginner-item_03-check-number{
  position: relative;
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
  font-size: 30px !important;
  letter-spacing: .4em;

}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-number{

  font-size: 18px !important;
    margin-bottom: 5px;
  }
}
.seller-beginner-item_03-check-number:before{
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 0;
  bottom: 0;
  background: url("../images/service/seller/beginner_icon_check.png") no-repeat left center;
  background-size: cover;
  width: 30px;
  height: 30px;
  margin: auto 0;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-title{
    font-size: 1.8rem;
    line-height: 1.9;
    letter-spacing: .24em;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-title{
    font-size: 14px !important;
    line-height: 1.5;
    letter-spacing: 0;font-weight: 400;
  }
}
.seller-beginner-item_03-check-detail{
  border-top: 1px solid #00306d;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-detail{
    padding: 40px 5% 50px 9%;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-detail{
    padding: 25px;
  }
}
.seller-beginner-item_03-check-box{
  color: #646464;
  letter-spacing: .05em;
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-box{
    font-size: 1.4rem;
    line-height: 1.7;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px){
  .seller-beginner-item_03-check-box{
    font-size: 1.3rem;
    line-height: 1.7;
  }
}
@media screen and (min-width: 769px){
  .seller-beginner-item_03-check-box-item{
    width: 49%;
  }
}

@media screen and (min-width: 769px){
  .service-flow-left{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 490px;
    width: 44%;
    border-right: 1px solid #00306d;
    margin-right: 4%;
    padding-right: 4%;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 769px){
  .service-flow-right{
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.service-flow-detail{
 visibility: hidden;display: none;
  position: relative;
  border: 2px solid #ededed;
}
.service-flow-detail:checked + .service-flow-detail:after{
    content: '\f068';
}
.service-flow-detail:checked + .service-flow-detaill + .service-flow-detail{
 position: relative;
  border: 2px solid #ededed;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}
@media screen and (min-width: 769px){
  .service-flow-detail{
    padding: 40px 4%;
  }
}
@media screen and (max-width: 768px){
  .service-flow-detail{
    border-width: 1px;
    padding: 50px 25px;
  }
}

@media screen and (min-width: 769px){
  .service-flow-item_accordion.-open .service-flow-header:before{
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .service-flow-item_accordion.-open .service-flow-header:after{
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

@media screen and (max-width: 768px){
  .service-flow-item_accordion.-open .service-flow-headline:before{
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .service-flow-item_accordion.-open .service-flow-headline:after{
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

.service-flow-item_accordion .service-flow-header:hover{
  cursor: pointer;
}

@media screen and (min-width: 769px){
  .service-flow-item_accordion .service-flow-header:before , .service-flow-item_accordion .service-flow-header:after{
   
  }
  .service-flow-item_accordion .service-flow-header:after{
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media screen and (max-width: 768px){
  .service-flow-item_accordion .service-flow-headline{
    padding-right: 20px;
  }
  .service-flow-item_accordion .service-flow-headline:before , .service-flow-item_accordion .service-flow-headline:after{

  }
  .service-flow-item_accordion .service-flow-headline:after{
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media screen and (min-width: 769px){
  .service-flow-item_accordion .service-flow-right{
   
  }
}
.acd-check{
  display: none;
}
.acd-label{

  display: block;

}
.acd-content{

  height: 0;
  opacity: 0;
  padding: 0 10px;
  transition: .5s;
  visibility: hidden;
}
.acd-check:checked + .acd-label + .acd-content{

  opacity: 1;

  visibility: visible;
}

.accordion111 {

}
.toggle111 {
display: none;
}
.option111 {
position: relative;
margin-bottom: 1em;
}
.title111,
.content111 {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
.title111 {
background: #ededed;
padding: 1em;
display: block;
color: #333;
font-weight: bold;
display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 120px 15px 35px;
    min-height: 100px;
    position: relative;	
}

@media screen and (min-width: 769px){
.title111::after,
.title111::before {
content: "";
position: absolute;
right: 4em;
top: 4em;
width: 1px;
height: 4em;
background-color: #382c25;
transition: all 0.3s;
}
.content111 p {
margin: 0;border-top: 1px solid #544242;
padding: 40px 5% 50px 10%;
	font-size: 14px !important;background: #ededed;
}	
}


@media screen and (max-width: 768px){
.title111::after,
.title111::before {
content: "";
position: absolute;
right: 2.8em;
top: 4.5em;
width: 1px;
height: 3em;
background-color: #382c25;
transition: all 0.3s;
}	
.content111 p {
margin: 0;border-top: 1px solid #544242;
padding: 20px 5% 20px 7.8%;
	font-size: 14px !important;background: #ededed;
}	
}
.title111::after {
transform: rotate(90deg);
}
.content111 {
max-height: 0;
overflow: hidden;
	
}

.toggle111:checked + .title111 + .content111 {
max-height: 500px;
transition: all 1.5s;
}
.toggle111:checked + .title111::before {
transform: rotate(90deg) !important;
}


/*
FLOW
------------------------------------------------*/
.service-flow-item{
  position: relative;
}
@media screen and (min-width: 769px){
  .service-flow-item{
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px){
  .service-flow-item{
    margin-bottom: 5px;
  }
}
.service-flow-item:last-child{
  margin-bottom: 0;
}
.service-flow-item.-current .service-flow-header{
  background: #00306d;
  color: #fff;
}
.service-flow-item.-current .service-flow-numbering{
  background: #fff;
  color: #00306d;
}
.service-flow-item.-current .service-flow-text{
  color: #fff;
}
.service-flow-item.-current .service-flow-btn a{
  color: #fff;
  border-color: #fff;
}
@media screen and (min-width: 769px){
  .service-flow-item.-current .service-flow-btn a:hover{
    color: #00306d;
  }
}

.service-flow-header{
  position: relative;
  background: #ededed;
}
@media screen and (min-width: 769px){
  .service-flow-header{
    padding: 40px 4%;
  }
}
@media screen and (max-width: 768px){
  .service-flow-header{
    padding: 25px;
  }
}
@media screen and (max-width: 768px){
  .service-flow-header .service-flow-right{
    border-top: 1px solid #544242;
    margin-top: 24px;
    padding-top: 15px;
  }
}

.service-flow-headline{
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-flow-numbering{
  border-radius: 5px;
  background: #544242;
  color: #fff;
  font-family: bebas-neue-by-fontfabric,sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
}
@media screen and (min-width: 769px){
  .service-flow-numbering{
    width: 70px;
    height: 70px;
    margin-right: 30px;
    padding: 11px 0 0;
  }
}
@media screen and (max-width: 768px){
  .service-flow-numbering{
    width: 40px;
    height: 40px;
    margin-right: 10px;
    padding: 7px 0 0;
  }
}
.service-flow-numbering span{
  display: block;
  line-height: 1;
}
.service-flow-numbering .-en{
  letter-spacing: .4em;
  margin-right: -.6em;
}
@media screen and (min-width: 769px){
  .service-flow-numbering .-en{
    font-size: 15px;
  }
}
@media screen and (max-width: 768px){
  .service-flow-numbering .-en{
    font-size: 10px;
  }
}
.service-flow-numbering .-number{
  letter-spacing: 0;
}
@media screen and (min-width: 769px){
  .service-flow-numbering .-number{
    font-size: 33px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px){
  .service-flow-numbering .-number{
font-size: 16px;
    margin-top: 3px;
  }
}

.service-flow-titleWrap{
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.service-flow-title{
  line-height: 1.8;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 769px){
  .service-flow-title{
    font-size: 23px;
    letter-spacing: .1em;
  }
}
@media screen and (max-width: 768px){
  .service-flow-title{
    font-size: 16px;
    letter-spacing: 0;
  }
}

@media screen and (min-width: 769px){
  .service-flow-lead{
    font-size: 18px;
    line-height: 2.2;
    letter-spacing: .1em;
  }
}

@media screen and (max-width: 768px){
  .service-flow-lead{
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0em;
    margin-bottom: 20px;
  }
}

.service-flow-text{
  color: #646464;
}
@media screen and (min-width: 769px){
  .service-flow-text{
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: .04em;
  }
}
@media screen and (max-width: 768px){
  .service-flow-text{
    font-size: 1.3rem;
    line-height: 1.7;
    letter-spacing: .04em;
  }
}

@media screen and (min-width: 1113px){
  .service-flow-btn{
    position: absolute;
    top: 0;
    right: 40px;
    bottom: 0;
    margin: auto 0;
    max-width: 445px;
  }
}

@media screen and (max-width: 1112px){
  .service-flow-btn{
    margin-top: 10px;
    max-width: 100%;
  }
}

@media screen and (min-width: 1113px){
  .service-flow-btn.-viewMore{
    max-width: 250px;
  }
}

@media screen and (max-width: 1112px){
  .service-flow-btn.-viewMore{
    max-width: 100%;
  }
}

@media screen and (min-width: 769px){
  .service-flow-col2{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px){
  .service-flow-col2 .service-flow-headline{
    width: 100%;
    /*IE11ãƒãƒƒã‚¯*/
  }
}

@media screen and (min-width: 769px){
  .service-flow-left{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 490px;
    width: 44%;
    border-right: 1px solid #544242;
    margin-right: 4%;
    padding-right: 4%;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 769px){
  .service-flow-right{
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 769px){
	.tel11{
		font-size: 26px;
		color: #382c25;
	}
}
@media screen and (max-width: 768px){
	.tel11{
		font-size: 17px;
		color: #382c25;
	}
}



.tigai .step_no {
background: #9f3b42;
	    font-family: bebas-neue-by-fontfabric,sans-serif;
    line-height: 30px;
    width: 30px;
    height: 30px;
    margin-right: .7em;
    font-size: 1.1rem;
    line-height: 32px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
}
.tigai {
    font-weight: 600;
    font-size: 1rem;
	line-height: 34px; 
}
@media screen and (max-width: 700px){
.tigai {
    font-weight: 600;
    font-size: 0.9rem;
	line-height: 28px; 
}	
}
.tigaisita {
   border-bottom: 1px dotted #333333;
padding:3px 0px;
    margin-bottom: 10px;
}


.c-form1 table th{
  font-size: 14px;
    display: revert;
	border-right: 1px solid #ffffff;
}

  .c-form1 table td{
    padding-left: 20px;
    padding-right: 20px;
    display: revert;	border-right: 1px solid #ffffff;
	  text-align: center;
}
.boxshodow{
	box-shadow: 0 10px 10px -6px rgb(0 0 0 / 30%);
}

.menubota{
	width: 100%;display: inline-block;
	text-align: center;
	letter-spacing: 2px;
}


.menubota a {
    border: solid 2px #a21b30;
    color: #a21b30;
    padding: 14px 2px;
    font-size: 16px;
    width: 100%;
    display: inline-block;
}
.menubota a:hover {
    border: solid 2px #a21b30;	
    background-color: #a21b30;
	color: #ffffff;
    padding: 14px 2px;
	font-size: 16px;
	width: 100%;display: inline-block;    background: #a21b30;
}

 .flex_cont5_in {
	margin: 0.8%;
	width: 48%;
}
.gryaaa{
	background: #ededed;
	padding: 30px;
}

@media screen and (max-width: 700px) {
.flex_cont5_in {
	margin: 1% 4%;
		width: 100%;
	}	
.gryaaa{
	background: #ededed;
	padding: 20px;
}	
}



@media screen and (min-width: 1210px){
a.anchor {
    display: block;
    padding-top: 102px;
    margin-top: -102px;
}
}

@media screen and (max-width: 1209px){
a.anchor {
    display: block;
    padding-top: 68px;
    margin-top: -68px;
}
}
.akamidasi{
    padding: 4px 7px 5px 10px;
    background-color: #ffffff;
    color: #a21b30;
    font-size: 13px;
    border: solid 1px #a21b30;
    border-radius: 2px;
}

.service-labelSubTitle1 {
    background: #808080;
    color: #fff;
    text-align: center;
    letter-spacing: .04em;
    padding: 7px;
}
.akawaku{
	border: solid 1px #a21b30;
	padding: 25px;
}
@media only screen and (min-width: 1200px) {
	.pc1310{

	}
	.sp1309{
display: none !important;
	}	
}

@media only screen and (max-width: 1199px) {
	.pc1310{
		display: none;
	}	
	.sp1309{
display: block;
	}		
}

.fffmozi {
    color: #222222;
    text-align: center;
    line-height: 20px;
    padding-bottom: 6px;
}

.fffmidasi {
padding: 6px;
    font-size: 14px;
    color: #9f3b42;
    font-weight: 600;
    border: solid 1px;
    text-align: center;
    text-align: center;
}
.newswaku{
    padding: 30px;border: solid 1px #9f3b42;
    border: solid 3px #e0e0e0;
	background: #ffffff;
}


.modorubotan{
	    padding: 0.5em 3em;
border: solid 1px #9f3b42;
    border-radius: 3px;
    background: #9f3b42;
    font-size: 100%;
    color: #ffffff;
    font-family: inherit;
    -webkit-appearance: none;
    width: 100%;
display: inline-block;
    text-align: center;
}

.modorubotan:hover {

	    padding: 0.5em 3em;
border: solid 1px #9f3b42;
    border-radius: 3px;
    background: #ffffff;
    font-size: 100%;
    color: #9f3b42;
    font-family: inherit;
    -webkit-appearance: none;
    width: 100%;
display: inline-block;
    text-align: center;	
}

.page_title--privacy {
    background: url(../img/top/privacy.jpg) no-repeat center/cover;
}
.logosiro{
	background: #ffffff;
	padding: 20px;
	    border-right: 2px solid #eeeeee;
    border-bottom: 2px solid #eeeeee;
}

.grywaku {
    border: solid 2px #ccc;
    padding: 20px;
}
.checknaiyou0 {
    font-size: 20px;

    margin-top: 4px;
    margin-bottom: 15px;
    border-left: 5px solid #9f3b42;
    padding-left: 14px;
}
.checknaiyou {
    padding: 4px 0px;
    border-bottom: 1px dotted #666666;
font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
}
.contact_branch {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10vh;
}
.contact_item {
    margin: 1rem 2rem 0;
    padding: 2rem;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width: 100%;
    text-align: center;
}
.contact h3 {
    margin-bottom: 0.8rem;
    padding-bottom: 1vh;
    border-bottom: 1px solid #9f3b42;
    display: inline-block;
    text-align: center;
    font-weight: bold;
	font-size: 18px;
}
.f_red {
    color: #9f3b42;
    font-size: 1.3rem;
    font-weight: bold;
}

@media screen and (max-width: 650px){
.contact_branch {
    display: inherit;
    justify-content: space-between;
    padding-bottom: 10vh;
}	
	
.contact .contact_item {
    width: auto;
}}

@media only screen and (min-width: 768px){
.f30 {
    font-size: 32px;
}
.daini{
padding: 70px 0px;		
}
.coninner {
    width: 1000px;
    margin-right: auto;
    margin-left: auto;
}

}
@media only screen and (max-width: 767px){
.f30 {
    font-size: 23px;
}
.daini{
padding: 50px 0px;		
}	
.coninner {
    width: 100%;
	padding: 0 15px;
    margin-right: auto;
    margin-left: auto;
}	
}
.in_radio-status-red {
    background: #ffe9e9 !important;
    border-color: #f4baba !important;
}
.in_radio-status1 {
    border-radius: 2px;
}
.in_radio-status1 {
    box-sizing: border-box;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background: #ccc;
    margin-top: 10px;
}
label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 700;
}
.in_radio-status1 {
    padding: 15px;
    margin-right: 10px;
}
.in_radio-status-midori {
    background: #d1e4bb !important;
    border-color: #8bc34a !important;
}
.in_radio-status-orenzi {
    background: #fddbcf !important;
    border-color: #ffa776 !important;
}
.in_radio-status-ao {
    background: #dcf4ff !important;
    border-color: #40b5ea !important;
}

.requireda {
    background: #c24750;
    border: 1px solid #c24750;
    padding: 2px 10px;
    border-radius: 3px;
    padding-bottom: 3px;
    font-size: 12px;
    font-weight: 400;
 color: #ffffff;
}
.f10{
	font-size: 10px;
}


.modorubotan_1{
	    padding: 0.5em 3em;
    font-size: 14px;
    color: #9f3b42;
    font-weight: 600;
    border: solid 1px;
    width: 100%;
display: block;border: solid 1px #9f3b42;
    text-align: center;
}

.modorubotan_1:hover {

	    padding: 0.5em 3em;
border: solid 1px #9f3b42;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    border: solid 1px;
    width: 100%;
display: block;
    text-align: center;	
	background:#9f3b42;
}

.right{
	float: right;
}
.v100vh{
	height: 100vh;
	height: 700px;
}
.midasiaa{
	color: #454545;
	font-size: 23px;
	font-weight: 600;
	padding-bottom: 15px;
}
.midasibb{
	color: #000066;
	font-weight: 600;
}
@media only screen and (max-width: 767px){
.midasiaa{
	color: #454545;
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 15px;
}	
}

.wakuseikiten{
	padding: 25px;
	background: #ffffff;
	border-right: 3px solid #cccccc;
	border-bottom: 3px solid #cccccc;	
}


@media screen and (max-width: 650px){
.contact_branch {
    display: inherit;
    justify-content: space-between;
    padding-bottom: 10vh;
}	
	
.contact .contact_item {
    width: auto;
}}

@media only screen and (min-width: 1200px){
.coninner1200 {
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
}
.flex1200{
    display: flex;
}	
}
@media only screen and (max-width: 1199px){
.coninner1200 {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.flex1200{
    display:block;
}	
}
.siro{
	color: #ffffff !important;
}

  .box_footer{
    position: relative;
    width: 100%;
	  padding:60px 0px;
	  background: #0a0a0a;
    color: #666666;
	  height: 320px;
  }
   .box_footer iframe {
	  background: #0a0a0a;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

	.ulul iframe{
    width: 100%;
    height: 100%;
		position: relative;
    box-sizing: border-box;
    display: flex
;
    justify-content: flex-end;
    align-items: stretch;
	}

@media screen and (max-width: 768px) {
  .box_footer{
    position: relative;
    width: 100%;
	  padding:60px 0px;
	  background: #0a0a0a;
    color: #666666;
	    height: 430px;

  }
  .box_footer iframe {
	 position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 100%;
  }
	.ulul iframe{
		 position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
	}
	
}
.list02 li a{
	  color: #666666;
}
.list02 li a:hover{
	  color: #E10003;
}
.about1 li a{
	text-decoration: none;
    padding: 2em 0em;
    padding: 1.0em 0em;
    padding-top: 1.8em;
    display: block;
    color: #eeeeee;
    text-align: center;
	list-style: none;
}
ul li{
	list-style: none;
}