@charset "utf-8";
/* CSS Document */

/* resetcss */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
button,
p {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    /*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;*/
    font-family:"游ゴシック",YuGothic,"メイリオ",Meiryo,Hiragino Sans,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro",Hiragino Kaku Gothic ProN,'ＭＳ Ｐゴシック',sans-serif;
    line-height: 160%;
    color: #000;
}

/*フォント系*/

h2 {
    font-size: 45px;
}

h3 {
    font-size: 38px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
}

.fs-28 {
    font-size: 28px;
}

.fs-30 {
    font-size: 30px;
}

.fs-32 {
    font-size: 32px;
}

.fs-34 {
    font-size: 34px;
}

.fs-36 {
    font-size: 36px;
}

.bold {
    font-weight: bold;
}

.red {
    color: red;
}

.blue {
    color: blue;
}

.white {
    color: #fff;
}

/*クリアフィックス*/

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.clearfix:before {
    display: block;
    content: "";
    clear: both;
}

.clearfix {
    display: inline-block;
}

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

.clear {
    clear: both;
}

iframe {
    max-width: 100%;
}

img {
    vertical-align: top;
    border: none;
    max-width: 100%;
    height: auto !important;
}
.scale {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.scale:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.bkimg {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.bkimg img {
	width: 100%;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    opacity: 0.6;
    color: inherit;
    text-decoration: none;
}

a[href*="tel"] {
    pointer-events: none;
}

a[data-href="#"] {
    border: solid red 5px;
    display: block;
    position: relative !important;
    opacity: 1;
}

a[data-href*="."] {
    border: solid red 5px;
    display: block;
    position: relative !important;
    opacity: 1;
}

a[data-href="#"]:hover:before {
    content: "リンクが設定されていない可能性があります。";
    position: absolute !important;
    width: 100%;
    bottom: 100%;
    color: red;
    font-weight: bold;
    background: #555;
    padding: 5px;
    font-size: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a[data-href*="."]:hover:before {
    content: "外部リンクの可能性があります。リンクが飛ばない可能性がありますので注意してください。";
    position: absolute !important;
    width: 100%;
    bottom: 100%;
    color: red;
    font-weight: bold;
    background: #555;
    padding: 5px;
    font-size: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

[data-element-id][data-uk-slideshow]:hover:before {
    content: "※こちらは見たまま編集ができません。①画像をダブルクリック、②変更（歯車マーク）、③スライドショーから編集してください。";
    display: block;
    line-height: 1.8;
    font-weight: bold;
    color: red;
    clear: both;
    background: #4c4c4c;
    padding: 5px;
    text-align: left;
    position: relative;
    letter-spacing: 1px;
    z-index: 1000;
    font-size: 12px;
}

[data-collection-list-content]:hover:before {
    content: "※こちらは見たまま編集ができません。①ページのどこかをダブルクリック、②左下（もしくは左上）のCMSロゴをクリック、③画面右上のメニュー（三本線マーク）から「カスタムコンテンツ管理」をクリック、④編集したいカスタムコンテンツの一覧（三本線マーク）から記事投稿・記事編集ができます。";
    display: block;
    line-height: 1.8;
    font-weight: bold;
    color: red;
    clear: both;
    background: #4c4c4c;
    padding: 5px;
    text-align: left;
    position: relative;
    letter-spacing: 1px;
    z-index: 1000;
    font-size: 12px;
}

ul,
li {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

dl,
dt,
dd {
    text-align: left;
    padding: 0;
    margin: 0;
}

/*トランスフォーム親*/

.tfm_p {
    position: relative;
}

/*左右中央寄せ*/

.tfm_x {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

/*上下中央寄せ*/

.tfm_y {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

/*上下左右中央寄せ*/

.tfm_xy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/*トリミング*/

.trimming {
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.trimming:after {
    display: block;
    content: "";
    padding-top: 100%;
    /*100%で正方形にカット。100%以下で横長、100%以上で縦長*/
}
.trimming.p39-5:after {
    padding-top: 39.5%;
}
.trimming.p44:after {
    padding-top: 44%;
}
.trimming.p61-7:after {
    padding-top: 61.7%;
}
.trimming.p77-5:after {
    padding-top: 77.5%;
}
.trimming.p80:after {
    padding-top: 80%;
}
.trimming.p83:after {
    padding-top: 83%;
}
.trimming.p100:after {
    padding-top: 100%;
}
.trimming.p112:after {
    padding-top: 112%;
}
.trimming.p118-5:after {
    padding-top: 118.5%;
}
.trimming.p128:after {
    padding-top: 128%;
}
.trimming.p138:after {
    padding-top: 138%;
}
.trimming.p143:after {
    padding-top: 143%;
}
/*フレックス*/

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*フレックスセンター*/

.flex_c {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: justify;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex > div[data-collection-list-content],
.flex_c > div[data-collection-list-content] {
    width: 100%;
}

.flex > div[data-recommend-collection-list-content],
.flex_c > div[data-recommend-collection-list-content] {
    width: 100%;
}

.flex .sec2 {
    width: 46%;
    margin: 0% 2% 4% 2%;
}

.flex_c .sec2 {
    width: 46%;
    margin: 0% 2% 4% 2%;
}

.flex .sec3 {
    width: 29%;
    margin: 0% 2% 4% 2%;
}

.flex_c .sec3 {
    width: 29%;
    margin: 0% 2% 4% 2%;
}

.flex .sec4 {
    width: 21%;
    margin: 0% 2% 4% 2%;
}

.flex_c .sec4 {
    width: 21%;
    margin: 0% 2% 4% 2%;
}
.flex .sec5 {
    width: 16%;
    margin: 0% 2% 4% 2%;
}

.flex_c .sec5 {
    width: 16%;
    margin: 0% 2% 4% 2%;
}

@media only screen and (max-width: 1024px) {
	img {
		max-width: 100% !important;
		height: auto !important;
	}
    h2 {
        font-size: 35px;
    }
    h3 {
        font-size: 28px;
    }
    a[href*="tel"] {
        pointer-events: initial !important;
    }
    .flex .sec3 {
        width: 29%;
        margin: 0% 2% 4% 2%;
    }
    .flex_c .sec3 {
        width: 29%;
        margin: 0% 2% 4% 2%;
    }
    .flex .sec4 {
        width: 29%;
        margin: 0% 2% 4% 2%;
    }
    .flex_c .sec4 {
        width: 29%;
        margin: 0% 2% 4% 2%;
    }
    .flex .sec5 {
        width: 46%;
        margin: 0% 2% 4% 2%;
    }
    .flex_c .sec5 {
        width: 46%;
        margin: 0% 2% 4% 2%;
    }
}

@media only screen and (max-width: 599px) {
    .flex .sec3 {
        width: 46%;
        margin: 0% 2% 4% 2%;
    }
    .flex_c .sec3 {
        width: 46%;
        margin: 0% 2% 4% 2%;
    }
    .flex .sec4 {
        width: 46%;
        margin: 0% 2% 4% 2%;
    }
    .flex_c .sec4 {
        width: 46%;
        margin: 0% 2% 4% 2%;
    }
}



#wrapper{
	max-width:100%;
	overflow:hidden;
}
#wrapper .fix00{
  position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    background: rgba(255,255,255,0.9);
    border-bottom: 5px solid #000;
}
#header .inner{
	width:95%;
	margin:0 auto;
}
#header h1{
	font-size:12px;
	/*line-height:1;*/
	margin-top:-1px;
	/*text-indent:-9999px;
	height:1px;*/
	color: #c8c8c9;
}

#header .logo{
	/*padding:35px 0 20px 0;*/
	padding:20px 0;
	float:left;
}
#header ul{
	float:right;
	text-align:right;
	/*padding:35px 0 10px 0;*/
	padding:0 0 10px 0;
	letter-spacing:-5px;
}
#header li{
	display:inline-block !important;
	letter-spacing:0;
	padding-bottom:10px;
}
#header li.online_btn{
  display: none !important;
}


#header li+li:before{
	content:"";
	width:1px;
	height:19px;
	background:#000;
	display:inline-block !important;
	vertical-align:middle;
	margin:0 10px;
}
#header li.c{
	padding-left:30px;
}
#header li.c:before{
	display:none !important;
}
#header li.c a{
	display:inline-block !important;
	background:#000;
	color:#fff;
	padding:2px 2em;
}
#header li.c.online a{
  background:#fff;
	color:#000;
	border: 2px solid #000;
  box-sizing: border-box;
}


#gnav{
	width:100%;
	/*background:rgba(255,255,255,0.9);*/
	position:relative;
	z-index:100;
}
#gnav ul{
	width:95%;
	text-align:right;
	margin:0 auto;
}
#gnav li {
    display: inline-block !important;
    font-size: 10px;
    text-align: center;
    line-height: 1;
    padding: 0 15px;
    position: relative;
}
#gnav  ul li:hover ul{
	display:block;
}
#gnav ul ul{
	position:absolute;
	min-width:250px;
	background:rgba(255,255,255,0.9);
	display:none;
}
#gnav ul ul li{
	display:block !important;
	text-align:left;
}
#gnav ul ul li strong{
	display:inline-block !important;
}
#gnav  li strong{
	font-family:Arial Narrow,Arial, Helvetica, sans-serif;
	display:block;
	font-weight:normal;
	font-size:16px;
	padding-bottom:10px;
	line-height:1;
	padding-right:3px;
	
}
#gnav  li a{
	display:inline-block !important;
	padding:12px 0 18px 0;
}
/*#gnav.fixed{
	position:fixed;
	top:0;
	right:0;
}*/


#footer{
	background:#000;
}
#footer .inner{
	width:95%;
	margin:0 auto;
	padding:30px 0 20px 0;
}
#footer .inner li{
	padding:0 0.5em 10px 0.5em;
}
#footer .inner li a{
	color:#fff;
	font-family:Arial Narrow,Arial, Helvetica, sans-serif;
}
#footer .sns_icon ul{
    text-align: center;
    /* padding: 35px 0 10px 0; */
    padding: 10px 0 10px 0;
    letter-spacing: -5px
}
#footer .sns_icon{
	/*width:95%;
	margin:0 auto;
	padding:30px 0 20px 0;*/
}


#footer .sns_icon ul li{
  display: inline-block !important;
    letter-spacing: 0;
    padding-bottom: 10px;
}

#footer .sns_icon ul li+li:before{
    content: "";
    width: 1px;
    height: 19px;
    background: #fff;
    display: inline-block !important;
    vertical-align: middle;
    margin: 0 10px;
}


#footer .totop{
	position:fixed;
	z-index:99;
	top:50%;
	/*right:5px;*/
	right:1.5%;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#footer .copy{
	position:fixed;
	top:50%;
	writing-mode: vertical-rl;
	font-size: 12px;
    font-family:Arial Narrow,Arial, Helvetica, sans-serif;
	text-align: center;
    /*left: 1%;*/
    left: 2.5%;
	letter-spacing:1px;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	
}
#gnav .nb{
  display: none;
}
#gnav li.spgnav_contact{
   display: none !important;
}
@media only screen and (max-width: 1024px) {
	#gnav{
		display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: none;
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
    -webkit-transition: ease .5s;
    transition: ease .5s;
    padding: 0;
    z-index: 101;
    border: none;
    padding-bottom: 0;
    opacity: 1;
    }
	
	
	
	#gnav ul{
		float:none;
		width:auto;
		text-align:left;
		display:block !important;
		padding:0;
	}
	#gnav ul ul{
	  position: relative;
	  border-top: 1px dotted #cacad9;
	}
	#gnav .nb{
		display:block;
		position:absolute;
		width:38px;
		height:38px;
		top:0;
		left:-44px;
		border:1px solid #fff;
		background:#000;
		cursor:pointer;
		opacity:0.8;
		margin:2px;
		box-shadow:0px 0px 0px 2px #000;
-moz-box-shadow:0px 0px 0px 2px #000;
-webkit-box-shadow:0px 0px 0px 2px #000;
	}

	#gnav li{
		float:none;
		width:auto;
		border-bottom:1px dotted #cacad9;
		padding:0;
		margin-top:0;
		display:block !important;
		text-align: left;
	}
	#gnav li.pull{
	  border-bottom:none;
	}
	#gnav ul li a{
		height:auto;
		display:block !important;
		padding:8px 0 8px 10px;
		font-size:10px;
		line-height:160%;
		color:#000;
	}
	#gnav ul li a strong{
		display: inline-block;
    font-size: 14px;
    font-family: Arial Narrow,Arial, Helvetica, sans-serif;
    font-weight: normal;
    text-align: left;
    padding-bottom: 0;
    padding-right: 5px;
    vertical-align: middle;
	}
	
	
	
	#gnav.action{
		-webkit-transform:translateX(0px);
        transform:translateX(0px);
	}
	#gnav p span.n{
    display: block;
    background: #fff;
    height: 2px;
    width: 26px;
    text-indent: -9999px;
    padding: 0;
    top: 50%;
    left: 6px;
    margin-top: -1px;
    position: absolute;
    }
	#gnav p span.n:before{
    display: block;
    content: "";
    background: #fff;
    height: 2px;
    width: 26px;
    position: absolute;
    top: -8px;
    left: 0;
    }
	#gnav p span.n:after{
    display: block;
    content: "";
    background: #fff;
    height: 2px;
    width: 26px;
    position: absolute;
    top: 8px;
    left: 0;
    }
	#gnav.action p span.n{
	 -webkit-transform: rotate(-45deg);
		 transform: rotate(-45deg);
		  -webkit-transition:ease .10s;
         transition:ease .10s;
	}
	#gnav.action p span.n:after,#gnav.action p span.n:before{
		 -webkit-transform: rotate(90deg);
		 transform: rotate(90deg);
		 top:0;
		 left:0;
	}
	#gnav .inner{
		width:auto;
		height: 100%;
		overflow-y: auto;
		background: #FFF;
		padding:0;
	}
	#gnav li.spgnav_contact{
	  display:block !important;
	}
	
	
	#gnav li.spgnav_contact a{
	  display: block !important;
	  color:#fff;
	  background-color: #000;
	  margin: 10px;
	  text-align: center;
	  padding-top: 10px;
	  padding-bottom: 10px;
	}
	
	.overlay:after{
		content:"";
		width:100%;
		height:100%;
		background:#000;
		position:fixed;
		top:0;
		left:0;
		opacity:0.3;
		z-index:99;
	}
	/*-------------------------------------------------------*/
	#footer .copy{
		position:relative;
		color:#fff;
		transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
	writing-mode: horizontal-tb;
	padding-bottom:15px;
	}
	#footer .totop{
		top:auto;
		bottom:5px;
		transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
	}
	#header ul{
		margin-right: 5%;
    padding: 0 0 10px 0;
	}
	.home-img .uk-slideshow .uk-flex{
	  height:600px !important;
	}
	.home-work{
	  padding: 50px 0 100px 0 !important;
	}
}

	.home-work.home-blog .list dd a:hover img{
	 opacity: 1; 
	}
	
	.home-work.home-blog .list dd a:hover{
	 opacity: 1; 
	}

@media only screen and (max-width: 1020px) {

	.home-img .uk-slideshow .uk-flex{
	  height:400px !important;
	}
}
@media only screen and (max-width: 599px) {
  #wrapper .fix00{
    position: relative;
  }
  #header .logo{
    padding:10px 0;
  }
  #header .logo a img{
    width:70%;
  }
	#header li.c{
		display:block !important;
	}
	#header li.c.online{
		display:none !important;
		float:right;
		font-size:12px;
	}
	#header li.online_btn{
  display: inline-block !important;
  }
#header ul{
	  padding: 0;
	  margin: 0;
    position: fixed;
    z-index: 2;
    bottom: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    display: none !important;
	}
	#header li{
	  padding-bottom: 5px;
	}
	#header li.c{
	  padding: 0;
    width: 100%;
	}
	#header li.c a{
	  width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 5px 2em;
	}
	#header li:first-child{
	  margin-left: 5%;
	}
	#footer .totop{
	  bottom: 5%;
	}
	.home-img .uk-slideshow .uk-flex{
	  height:250px !important;
	}
	.home-comp{
	  padding: 150px 0 150px 0 !important;
	}
	.home-work .list dd a{
	  height: 170px !important;
	}

	
	.home-work .list dl{
	  margin-bottom: 30px !important;
	}
	.home-style .slidewrap{
	  max-width: 320px !important;
	}
	.home-style .slidewrap ul{
	  width:100% !important;
	  margin-left: 0 !important;
	}
	.home-style .slidewrap li{
	  width: 300px !important;
    margin: 0 9px !important;
	}
	#footer{
	  padding-bottom: 10%;
	  position: relative;
	  z-index: 3;
	}
	#footerv>div{
	  position: absolute;
	  z-index: 5;
	  width:100%;
	  
	}
	.home-style .slidewrap .slick-next:before{
	  left:0 !important;
	}
	#footer .inner ul{
	  padding:0 30px;
	}
}

@media only screen and (max-width: 1020px){
  .grass {
		opacity:1;
	}
	
	
	
	
}

/*下層共通*/
.subtit{
	position:relative;
	margin-bottom:-125px;
}
.subtit.st2{
	margin-bottom:0;
	padding: 130px 0 70px 0;
	background-color: #fff;
}
.subtit .pic{
  width: 100%;
  height: 540px;
    display: block;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
}
.subtit .pic img{
	width:100%;
	height:auto;
}
.subtit h2{
	width:100%;
	height:auto;
	box-sizing:border-box;
	padding:0 2.5%;
	position:absolute;
	text-align:center;
	color:#fff;
	font-size:14px;
	left:0;
	top:50%;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 1;
}
.subtit h2 strong{
	display:block;
	font-size:36px;
	line-height:140%;
	
}
.ed{
	background:#bc8f8f;
	padding-bottom:30px;
}
.wl{
	padding-bottom:30px;
}
.wl .w95{
	border:2px solid #000;
}
.blu{
	background:#c8d5dd;
	padding-bottom:30px;
}
.w95{
	/*width:95%;*/
	width:88%;
	margin:0 auto;
	position:relative;
	z-index:1;
	background:#fff;
	box-sizing:border-box;
	margin-bottom:40px;
}
.subtit.st2 h2{
position: relative;
top:auto;
color: #000;
}
.subtit h2 strong{
	display:block;
	font-size:36px;
	line-height:140%;
	
}
.i96{
	;
	max-width:960px;
	margin:0 auto;
	width:95%;
}
.h3s{
	text-align:center;
	font-size:14px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}
.h3s strong{
	display:block;
	font-size:24px;
	line-height:150%;
	padding-bottom:10px
}
@media only screen and (max-width: 1024px){
  .subtit .pic{
    height: 400px;
  }
  
}
@media only screen and (max-width: 1020px){
  .w95{
    top:-25px;
    width:95%;
  }
  .subtit .pic{
    height:250px;
  }
	.subtit{
		margin-bottom:-10px;
	}
	.subtit h2 strong{
		font-size:24px;
	}
	.h3s strong{
		font-size:20px;
	}
	.subtit.st2{
	  padding: 80px 0 30px 0;
	}
}
/*about*/
.about1{
	padding-bottom:150px;
	position:relative;
	margin-bottom:40px;
}
.about1:before{
	content:"";
	background:#e7e4e0;
	width:100%;
	height:360px;
	position:absolute;
	top:200px;
	left:0;
}
.about1 .i96{
	position:relative;
	z-index:2;
	padding:100px 0 90px 0;
}

.about1 .pic{
	float:left;
	padding:0 0 20px 2.08%;
	width:48.02%;
}
.about1 .tbox{
	float:right;
	width:32.29%;
	text-align:center;
	padding:140px 12.5% 0 0;
}
.about1 .tbox p{
	padding:0 0 20px 0;
	line-height:180%;
	text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}

.about2 .i96{
	padding:90px 0 45px 0;
}
.about2 .i96 li{
	width:31.25%;
	margin:0 3.12% 40px 0;
	background:#000;
	position:relative;
}
.about2 .i96 li:nth-child(3n+3){
	margin-right:0;
}
.about2 .i96 li img{
	opacity:0.6;
}
.about2 .i96 li .w .o img{
  width:70%;
}
.about2 .i96 li .w img{
	opacity:1;
}
.about2 .i96 li .w{
	max-width:147px;
	width:90%;
	max-height:90%;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	z-index:2;
	text-align:center;
}
.about2 .i96 li .w strong{
	display:block;
	color:#fff;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
  line-height: 100%;
}
.about2 .i96 li .w strong:before{
	content:"";
	width:100%;
	height:1px;
	background:#fff;
	display:block;
	margin:10px 0;
}
.about2 .i96 li .w .t{
	color:#fff;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
	font-size:30px;	
}
@media only screen and (max-width: 1020px) {
  .about1 .i96{
    padding: 50px 0;
  }
  .about1:before{
    height: 65%;
    top: 120px;
  }
  .about1{
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 599px) {
	.about1 .pic{
		float:none;
		width:auto;
		text-align:center;
		padding-left:0;
	}
	.about1 .tbox{
		float:none;
		width:auto;
		padding:20px 0 0 0;
	}
	.about2 .i96 li{
		width:49%;
		margin-left:0.5%;
		margin-right:0.5% !important;
		margin-bottom: 20px;
	}
	.about2 .i96 li a .trimming.p61-7:after{
	  padding-top: 82%;
	}
	.subtit .pic{
	  height:130px;
	}
	.about2 .i96 li .w{
	  width:70%;
	}
	.about2 .i96 li .w .t{
	  font-size: 22px;
	}
}

.office1{
	padding:70px 0 100px 0;
}
.office1 h3{
	padding:0 0 55px 0;
}
.office1 .wrap{
	max-width:800px;
	margin:0 auto;
}
.office1 .left{
	float:left;
	width:50%;
}
.office1 .right{
	float:left;
	width:50%;
}
.office1  dt{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
	font-weight:bold;
	padding:0 0 10px 0;
}
.office1 dd{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}

.office1 dd ul{
    text-align: left;
    /* padding: 35px 0 10px 0; */
    padding: 0;
    letter-spacing: -5px
}

.office1 dd ul li{
  display: inline-block !important;
    letter-spacing: 0;
    padding-bottom: 10px;
}

.office1 dd ul li+li:before{
    content: "";
    width: 1px;
    height: 19px;
    background: #fff;
    display: inline-block !important;
    vertical-align: middle;
    margin: 0 10px;
}

.office1 dd ul li.c a{
  display: inline-block !important;
    background: #000;
    color: #fff;
    padding: 2px 2em; 
}


.office1 dl{
	padding:0 1em 25px 0;
}
.office1 .acc{
	max-width:800px;
	margin:0 auto;
}
.office1 #ac-os{
  margin-top: -150px;
  padding-top: 150px;
}
.office1 dd p{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
	padding:0 0 20px 0;
}
.office1 dd li{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}

.office1 ul{
	padding:0 0 20px 0;
}

.office1 #map{
	width:100%;
	height:330px;
}
@media only screen and (max-width: 599px) {
	.office1 .left{
		float:none;
		width:auto;
	}
	.office1 .right{
		float:none;
		width:auto;
	}
	.office1 #ac-os{
  margin-top: -80px;
  padding-top: 80px;
}
}
.office2{
	padding:70px 0 80px 0;
}
.office2 h3{
	padding-bottom:55px;
}
.wknav{
	padding:0 0 20px 0;
}
.wknav li{
  width: 15%;
	max-width:140px;
	text-align:center;
	margin:0 10px 20px 10px;
}
/*--*/
.wknav li {
	display:block;
	border-bottom:1px solid #aaa;
	font-weight:bold;
	padding-bottom:5px;
	position:relative;
}
.wknav li.st ,.wknav li:hover{
	border-color:#000;
}
.wknav li:hover:before{
	content:url(/import/tenant_3/153.126.164.160/html/images/osaka/icon_01.gif);
	left:50%;
	bottom:-12px;
	position:absolute;
	transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
/*--*/

.office2 .box{
	width:48.43%;
	padding:0 3.14% 20px 0;
}
.office2 .box:nth-child(2n+2){
	padding-right:0;
}
.office2 .box .pic{
	float:left;
	width:53.76%;
	padding:0 0 20px 0;
}
.office2 .box dl{
	float:right;
	width:41.93%;
	padding:0 0 20px 0;
}
.office2 .box dd.d{
	color:#b3b3b3;
	padding-bottom:5px;
}
.office2 .box dt{
	font-size:18px;
	font-weight:bold;
	border-bottom:1px solid #aaa;
	line-height:140%;
	padding:0 0 7px 0;
	margin-bottom:10px;
}
@media only screen and (max-width: 1020px){
  .wknav li{
	width:40%;
  }
	.office2 .box .pic{
		float:none;
		width:auto;
		text-align:center;
	}
	.office2 .box dl{
		width:auto;
		float:none;
	}
	.office2 .box dt{
		font-size:16px;
	}
}
.office3{
	padding:70px 0 40px 0;
}
.office3 h3{
	padding-bottom:55px;
}
.office3 .menulist{
	max-width:800px;
	margin:0 auto;
}
.office3 .menulist h4{
	text-align:center;
	color:#fff;
	background:#000;
	font-size:24px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
	padding:10px 2.5%;
	margin-bottom:30px;
}
.office3 .menulist dt{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
	width:21.5%;
}
.office3 .menulist dt+dd{
	width:56.12%;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}
.office3 .menulist dd+dd{
	width:22.38%;
	text-align:right;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}
.office3 .menulist dl{
	padding:0 10px 20px 10px;
}
.office3 .box{
	padding-bottom:30px;
}
@media only screen and (max-width: 599px) {
	.office3 .menulist dt{
		width:100%;
		font-weight:bold;
		padding-bottom:10px;
	}
	.office3 .menulist dt+dd{
		width:100%;
		padding-bottom:10px;
	}
	.office3 .menulist dd+dd{
		width:100%;
		padding-bottom:10px;
	}
	.office3 .menulist h4{
		font-size:18px;
	}
}
.office4 {
	background:#000;
	padding:60px 0;
}
.office4 ul{
	background:#fff;
	max-width:392px;
	margin:0 auto;
	text-align:center;
	padding:27px 2.5%;
	box-sizing:border-box;
}
.office4 li{
	display:inline-block !important;
	font-size:24px;
	font-style:italic;
}
.office4 li+li:before{
	content:"/";
	margin:0 1em;
}
@media only screen and (max-width: 599px) {
	.office4 li{
		font-size:16px;
	}
	.office4 li+li:before{
		margin:0 0.5em;
	}
}
.bridal1{
	padding:70px 0 100px 0;
}
.bridal1 h3{
	padding-bottom:55px;
}
.bridal1 .galist{
	max-width:800px;
	margin:0 auto;
}
.bridal1 li{
	width:31.25%;
	margin:0 3.12% 30px 0;
}

.bridal1 .galist li{
  overflow: hidden;
}
.bridal1 li .alt01{
  display: none;
}
.bridal1 li:nth-child(3n+3){
	margin-right:0;
}
@media only screen and (max-width: 599px) {
	.bridal1 li{
		width:48%;
		margin-left:1%;
		margin-right:1% !important;
	}
}

.bridal2{
	padding:70px 0 100px 0 ;
}
.bridal2 h3{
	padding-bottom:80px;
}
.bridal2 .flowlist .pic{
	float:left;
	width:20.41%;
	padding:0 0 20px 0;
}
.bridal2 .flowlist .tbox{
	float:right;
	width:68.95%;
	padding:0 8.22% 0 0;
}
.bridal2 .flowlist .tbox h4{
	font-size:18px;
	padding:0 0 20px 0;
}
.bridal2 .flowlist .tbox p{
	padding:0 0 20px 0;
}
.bridal2 .flowlist .box{
	padding-bottom:30px;
}
@media only screen and (max-width: 599px) {
	.bridal2 .flowlist .pic{
		float:none;
		width:auto;
		text-align:center;
	}
	.bridal2 .flowlist .tbox{
		float:none;
		width:auto;
		padding-right:0;
	}
	.bridal2 .flowlist .tbox h4{
		font-size:16px;
	}
}

/*home*/
.home-img .uk-slideshow .uk-flex{
  height:712px;
  
}
/*.home-img img{
	width:100%;
	height:auto;
}*/

.home-blue{
	background:#c8d5dd;
	
}

.home-news{
	background:#fff;
	margin-top:-30px;
	position:relative;
	z-index:2;
	margin-bottom:100px;
}
.h3h{
	text-align:center;
	font-size:14px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
	
}
.h3h strong{
	font-size:24px;
	display:inline-block !important;
	vertical-align:middle;
	margin-right:20px;
}
.home-news h3{
	width:25.16%;
	padding:20px 2.5%;
	box-sizing:border-box;
}
.home-news h3:after{
	content:""; 
	display:inline-block !important;
	width:1px;
	height:27px;
	background:#000;
	vertical-align:middle;
	float:right;
}
.home-news dl{
	width:63.33%;
	padding:20px 0 0 0;
}
.home-news dt{
	float:left;
}
.home-news dd{
	padding:0 0 0 120px;
}
.home-news dd a{
	text-decoration:underline;
}
.home-news p{
	width:11.511%;
	position:relative;
}
.home-news p a{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#000;
	color:#fff;
	text-align:center;
	padding-top:20px;
}

.home-about p{
	text-align:center;
	padding:0 0 20px 0;
}
.home-about h3{
	padding:0 0 25px 0;
}
.home-comp{
	background:url(/import/tenant_3/153.126.164.160/html/images/top/t_company_bg.gif) 0 0 repeat;
	padding:210px 0 200px 0;
	position:relative;
	z-index:0;
}

.home-comp:before{
	content:"";
	width:100%;
	height:93px;
	border-bottom:1px solid #000;
	position:absolute;
	top:0;
	right:110px;
	background: #c8d5dd;
	z-index:1;
}
.home-comp:after{
	content:url(/import/tenant_3/153.126.164.160/html/images/top/t_about_r_parts.png);
	position:absolute;
	top:0;
	right:0;
	z-index:1;
}
.home-comp li{
	width:28.12%;
	margin:0 3.91% 50px 3.91%;
	position:relative;
	box-sizing:border-box;
	background:#000;
	-webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
.home-comp li .w{
    max-width: 147px;
    width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}
.home-comp li .w strong {
    display: block;
    color: #fff;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}
.home-comp li .w strong::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    display: block;
    margin: 10px 0;
}
.home-comp li img {
    opacity: 0.6;
}
.home-comp li .w img {
    opacity: 1;
}
.home-comp h3{
	padding-bottom:55px;
}
.home-comp .linet li{
	margin:0 7.82% 50px 0;
}
.home-comp .linet li:nth-child(3n+3){
	margin-right:0;
}

.home-work:before{
	content:"";
	width:100%;
	height:93px;
	background:#fff;
	border-top:1px solid #000;
	position:absolute;
	top:-93px;
	left:111px;
}
.home-work:after{
	content:url(/import/tenant_3/153.126.164.160/html/images/top/t_about_l_parts.png);
	position:absolute;
	left:0;
	top:-93px;
}

.home-work{
	padding:100px 0 140px 0;
	position:relative;
}
.home-work h3{
	padding:0 0 25px 0;
}

.home-work .list dl{
	width:31.25%;
	margin:0 3.12% 50px 0;
}
.home-work .list dl:nth-child(3n+3){
	margin-right:0;
}
.home-work .list dt{
	padding:15px 0 10px 0;
	font-size:18px;
	font-weight:bold;
}
.home-work .list dt a{
  width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: inline-block;
}
.home-work .list dt .d{
	display:block;
	color:#b3b3b3;
	font-size:14px;
	font-weight:normal;
}
.home-work .list dt+dd{
	color:#b3b3b3;
}

.hmore{
	text-align:center;
}
.hmore a{
	display:inline-block !important;
	border:1px solid #000000;
	width:163px;
	line-height:40px;
	position:relative;
}
.hmore a.button_base_long{
  border:0px;
}

.hmore a:before{
	content:"";
	width:100%;
	height:100%;
  border:1px solid #dedede;
	top:3px;
	left:3px;
	position:absolute;
	z-index:-1;
}
.hmore a.button_base_long:before{
	content:"";
	width:100%;
	height:100%;
  border:0px;
	top:3px;
	left:3px;
	position:absolute;
	z-index:-1;
}


.hmore a:hover{
	background:#000;
	color:#fff;
	opacity:1;
}
/*-------------TOPボタン追加CSS---------------------*/

.button_base_long:hover {
    cursor: pointer;
    }
.b05_3d_roll_gre {
    perspective: 500px;
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    }
.b05_3d_roll_gre span {
    position: absolute;
    text-align: center;
    width: 101%;
    height: 50px;
    padding: 10px;
    border: #000 solid 1px;
    pointer-events: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
    /*line-height: 110%;*/
    line-height: 150%;
    }
.b05_3d_roll_gre span:nth-child(1) {
    color: #000;
    background-color: #000;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transform-origin: 50% 50% -25px;
    -webkit-transform-origin: 50% 50% -25px;
    -moz-transform-origin: 50% 50% -25px;
    }
.b05_3d_roll_gre:hover span:nth-child(1) {
    color: #ffffff;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    }
.b05_3d_roll_gre span:nth-child(2) {
    color: #000;
    background-color: #FFF;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transform-origin: 50% 50% -25px;
    -webkit-transform-origin: 50% 50% -25px;
    -moz-transform-origin: 50% 50% -25px;
    }
.b05_3d_roll_gre:hover span:nth-child(2) {
    background-color: #000;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transform: rotateX(-90deg);
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    }
.button_base_long {
    margin: 0;
    border: 0;
    font-size: 18px;
    margin-top: -25px;
    height: 46px;
    text-align: center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-user-select: none;
    cursor: default;
    display: block;
    }
.button_base_long:hover {
    cursor: pointer;
    }
@media only screen and (max-width: 1020px){
  .button_base_long:hover {
    cursor: pointer;
    }
.b05_3d_roll_gre {
    perspective: 500px;
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    }
.b05_3d_roll_gre span {
    position: absolute;
    text-align: center;
    width: 101%;
    height: 50px;
    padding: 10px;
    border: #000 solid 1px;
    pointer-events: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
    /*line-height: 110%;*/
    line-height: 150%;
    }
    
.b05_3d_roll_gre span::before {
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid #dedede;
    top: 3px;
    left: 3px;
    position: absolute;
    z-index: 0;
}
    
.b05_3d_roll_gre span:nth-child(1) {
    color: #000;
    background-color: #000;
    transform: rotateX(90deg);
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transform-origin: 50% 50% -25px;
    -webkit-transform-origin: 50% 50% -25px;
    -moz-transform-origin: 50% 50% -25px;
    
    /*追加*/
   transition: unset;
   transform: none;
    }
.b05_3d_roll_gre:hover span:nth-child(1) {
    color: #ffffff;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
     /*追加*/
   transition: unset;
   transform: none;
   z-index: 1;
   
    }
.b05_3d_roll_gre span:nth-child(2) {
    color: #000;
    background-color: #FFF;
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transform-origin: 50% 50% -25px;
    -webkit-transform-origin: 50% 50% -25px;
    -moz-transform-origin: 50% 50% -25px;
     /*追加*/
   transition: unset;
   transform: none;
    }
.b05_3d_roll_gre:hover span:nth-child(2) {
    background-color: #000;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transform: rotateX(-90deg);
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
     /*追加*/
   transition: unset;
   transform: none;
    }
.button_base_long {
    margin: 0;
    border: 0;
    font-size: 18px;
    margin-top: -25px;
    height: 46px;
    text-align: center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-user-select: none;
    cursor: default;
    display: block;
    }
.button_base_long:hover {
    cursor: pointer;
    }
.hmore{
	text-align:center;
}
.hmore a span{
	border:1px solid #000000;
}
.hmore a span:before{
  border:1px solid #dedede;
}

  
}
    

/*-------------TOPボタン追加CSSここまで---------------------*/

.home-work .list dd{
	overflow:hidden;
	position:relative;
}
.home-work .list dd a{
  display: block;
    height: 300px;
    overflow: hidden;
}
.home-work .list dd img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    height: 100% !important;
    object-fit: cover;
}
.home-work .list dd img:hover{
  /*-webkit-filter: blur(3px);*/
  /*-webkit-transform: scale(1.2);*/
  /*transform: scale(1.2);*/
}
.home-work .list dd .t{
	display:none;
	font-weight:bold;
	color:#fff;
	font-size:30px;
}
.home-work .list dd a:hover .t{
	display:block;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	
}


.home-style .slidewrap{
	/*max-width:754px;*/
	max-width:800px;
	margin:0 auto;
	position:relative;
}
/*.home-style .slidewrap .inn{
	overflow:hidden;
}*/
.home-style .slidewrap li{
	margin:0 18.5px 0 0;
	overflow:hidden;
	background:#000;
	width:239px;
	/*height: 283px;
    display: block;*/
}
.home-style .slidewrap li a{
  cursor: pointer !important;
  position: relative;
    z-index: 1;
}
.home-style .slidewrap li .trimming.p100:after{
  padding-top: 118.5%;
}
/* .home-style .slidewrap li img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    height: 100% !important;
    
}

.home-style .slidewrap li a span > img {
transform: translateX(-50%);
    height: 100% !important;
    max-width: none !important;
    width: auto !important;
    position: absolute;
    top: 0px;
    left: 50%;
}

.home-style .slidewrap li img:hover{
  -webkit-filter: blur(3px);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
} */
.home-style .slidewrap ul{
	/*width:800px;*/
	width: 754px;
    margin: 0 auto;
}
.home-style .slidewrap .slick-next:before{
	position: absolute;
    bottom: 0;
    right: auto;
    width: 102px;
    text-align: left;
    font-weight: bold;
    background: url(/upload/tenant_3/c27c56220f98e183c54e88e8e48f03f4.png) left bottom no-repeat;
    height: 40px;
    left: 0;
}
.home-style .slidewrap .slick-prev:before{
	position: absolute;
    bottom: 0;
    left: auto;
    width: 102px;
    text-align: right;
    font-weight: bold;
    background: url(/upload/tenant_3/8ff340250fd382d9698216d6aecb4ecd.png) left bottom no-repeat;
    height: 40px;
    right: 0;
}
/*.home-style .slidewrap .prev{
	position:absolute;
	bottom:20px;
	font-weight:bold;
	left:-110px;
	width:102px;
	text-align:right;
	background:url(/import/tenant_3/153.126.164.160/html/images/top/t_gallery_l_bt.gif) right bottom no-repeat;
}*/
.home-style .hmore{
	text-align:right;
	padding:50px 0 0 0;
}
.home-style .hmore a{
	text-align:center;
}
.home-style{
	padding-bottom:125px;
}
.home-style h3{
	writing-mode: vertical-rl;
	vertical-align:middle;
	text-align:center;
	line-height:1;
	margin-bottom:-150px;
}
.home-style h3 strong{
	display:inline-block !important;
	margin-right:-2px;
	margin-bottom:0.5em;
}
@media only screen and (max-width: 1020px){
  .home-style .slidewrap ul{
    margin-left: -13px;
  }
	.home-style .slidewrap .next{
		right:-40px;
		text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
	}
	.home-style .slidewrap .prev{
		left:-40px;
		text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
	}
	.home-style h3{
		writing-mode: horizontal-tb;
		margin-bottom:0;
		padding-bottom:55px;
	}
	.home-news{
	  margin-bottom: 50px;
	}
	.home-news h3{
		width:100%;
		text-align:left;
	}
	.home-news h3:after{
		display:none !important;
	}
	.home-news dl{
		padding:0 20px 20px 20px;
		width:100%;
		box-sizing:border-box;
	}
	.home-news p{
		width:100%;
		height:40px;
	}
	.home-news p a{
		padding-top:0;
		line-height:40px;
	}
	.home-comp{
	  padding: 50px 0 100px 0;
	}
	
	.home-style .slidewrap li{
	  width: 250px;
	}
	.home-style .slidewrap .slick-prev{
	  bottom: 0;
    left: -10px !important;
    z-index: 10;
	}
	.home-style .slidewrap .slick-next{
	 bottom: 0;
    right: -10px !important;
    z-index: 10;
	}
	.home-style .slidewrap ul .slick-list{
	  margin:0 40px;
	  padding: 0 !important;
	}
	.home-work .list dd a{
	  height: 230px;
	}
	.home-blog .list dt{
	  padding-top: 10px;
	}
	.home-style .slidewrap .slick-next:before{
	  left: 15px;
	}
}
@media only screen and (max-width: 599px) {
	.home-news dt{
		float:none;
	}
	.home-news dd{
		padding-left:0;
	}
	.home-comp li{
		width:48%;
		margin-left:1%;
		margin-right:1% !important;
	}
	.home-work .list dl{
		width:48%;
		margin-left:1%;
		margin-right:1%;
	}
	.home-work .list dt{
		font-size:16px;
	}
	.home-style .slidewrap .slick-next{
	  right:-25px !important;
	}
	.home-style .hmore{
	  text-align: center;
	}
	.home-blog:before{
	  height: 220px !important;
	}
	.home-blog{
	  padding-bottom: 100px !important;
	}
	.home-foot .i96{
	  padding: 50px 0 50px 0 !important;
	}
	.home-foot .left ul{
	  width:100%;
	}
	.home-foot .left li{
	  width:40%;
	}
	.home-foot .bkimg{
	  height:650px !important;
	}
}
.home-blog:before{
	content:"";
	width:100%;
	height:310px;
	background:#c8d5dd;
	border:none;
	padding:0;
	left:0;
	top:0;
}
.home-blog:after{
	display:none;
}
.home-blog .i96{
	position:relative;
	z-index:2;
}
.home-blog{
	padding:45px 0 0 0;
}
.home-blog h3{
	padding-bottom:55px;
}
.home-blog .list dt{
	padding-top:25px;
}
.home-blog .list dl{
	margin-bottom:30px;
}
.home-blog{
	padding-bottom:150px;
}

.home-links .i96{
	padding-top:0;
}

.home-foot{
	position:relative;
	overflow:hidden;
}
.home-foot .bkimg{
	width:100%;
	  display: block;
    height: 600px;
    overflow: hidden;
}
.home-foot .bkimg img{
	min-height:100% !important;
	width:auto;
	min-width:1336px;
	width:100%;
	object-fit: cover;
}
.home-foot .i96{
	position:relative;
	z-index:2;
	padding:90px 0 90px 0;
}
.home-foot .left{
	float:left;
}
.home-foot .right{
	float:right;
	width:64.58%;
}
.home-foot .right h3{
	color:#fff;
	text-align:left;
	padding:0 0 20px 0;
}
.home-foot .right h3+p{
	color:#fff;
	padding: 0 0 30px 0;
}
.home-foot .right li{
	padding:0 20px 20px 0;
}
.home-foot .right li a{
	background:#fff;
	display:block;
	padding:18px 0 25px 14px;
	box-sizing:border-box;
	width:255px;
	position:relative;
}
.home-foot .right li a:hover{
	opacity:1;
	background:#000;
	color:#fff;
}
.home-foot .right li a:before{
	content:url(/import/tenant_3/153.126.164.160/html/images/ft_arrow.gif);
	bottom:10px;
	right:10px;
	position:absolute;
	
}
.home-foot .right li a:hover:before{
	filter: invert(100%);
}
.home-foot .right li a strong{
	display:block;
	font-size:24px;
	font-weight:normal;
	font-style:italic;
	padding:0 0 5px 0;
}
.home-foot .left h3{
	padding:0 0 40px 0;
}
.home-foot .left li a{
	color:#fff;
}
.home-foot .left li{
	padding:0 0 12px 0;
}
.home-foot .left li img{
	vertical-align:middle;
	margin-right:0.5em;
}
@media only screen and (max-width: 599px) {
	.home-foot .left{
		float:none;
		padding-bottom:20px;
	}
	.home-foot .left li{
		display:inline-block !important;
		padding-right:1.5em;
	}
	.home-foot .right{
		float:none;
		width:auto;
	}
	.home-links .i96 li .w .t{
		font-size:18px;
	}
	.home-links .i96 li .w strong::before{
		margin:5px 0;
	}
	.home-blog .list dt{
	  padding-top: 10px;
	  font-size: 14px;
	}
	.home-foot .right li{
	  padding: 0 0 20px 0;
	  width:100%;
	}
	.home-foot .right li a{
	  padding: 15px 0 20px 14px;
	  width: 100%;
	}
}

/*request*/

.tit2{
	background:#fff;
	margin-bottom:50px;
}
.tit2 h2{
	text-align:center;
	padding:100px 2.5% 85px 2.5%;
	font-size:14px;
}
.tit2 h2 strong{
	display:block;
	font-size:36px;
	line-height: 140%;
}

.request1 .inner{
	max-width:810px;
	margin:0 auto;
	width:95%;
	padding:70px 0 60px 0;
}
.request1 .inner p{


	padding:0 0 20px  0;
}

.request2 .inner{
	max-width:660px;
	margin:0 auto;
	width:95%;
	padding:60px 0 0 0;
}
.request2 .inner .txt p{
	padding:0 0 20px 0;
	text-align:center;
}
.request2 .inner .txt{
	padding:0 0 50px 0;
}
.request2 .inner p{
	padding:0 0 20px 0;
	 font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
	
}
.request2 .inner .r{
	color:#ee4f4f;
}

.request2 dd .size1{
	width:100%;
	height:auto;
	background:#e2e2e2;
	padding:5px;
	box-sizing:border-box;
	border:none;
}
.request2 dd{
	padding:0 0 25px 0;
	 font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}
.request2 dt{
	padding:0 0 5px 0;
	 font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}
.request2 .table{
	padding:30px 0 30px 0;
}
.request2 .s{
	font-size:12px;
}
.request2 .table+p{
	font-size:12px;
}
.request2 .biko textarea{
	width:100%;
	height:auto;
	background:#e2e2e2;
	padding:5px;
	height:270px;
	box-sizing:border-box;
	border:none;
}
.request2 .formbtn{
	padding-top:40px;
	padding-bottom:100px;
}
.request2 .form-submit-btn,.request2 .send2,.request2 .modoru2 {
	width:245px;
	height:60px;
	text-align:center;
	color:#fff;
	background:#000;
	border:none;
	font-size:18px;
	border-radius:10px;
	 font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
	 font-weight:bold;
}
.request2 .send2 {
  margin-left: 3%;
}
@media only screen and (max-width: 1020px){
	.tit2 h2 strong{
		font-size:24px;
	}
}
@media only screen and (max-width: 599px){
  .tit2 h2{
    padding: 50px 2.5% 50px 2.5%;
  }
  .request2 .formbtn{
    position: relative;
    z-index: 50;
  }
  .request2 .send2{
    margin-left: 0;
    margin-top: 5%;
  }
}

/*company*/

.company1 .table{
	max-width:580px;
	margin:0 auto;
	width:95%;
	padding:65px 0 130px 0;
}
.company1 dt{
	font-size:16px;
	float:left;
	 font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}
.company1 dd{
	font-size:16px;
	padding:0 0 0 99px;
	 font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}
.company1 dl{
	border-bottom:1px dashed #000;
	padding:15px 0;
}
@media only screen and (max-width: 1020px){
	.company1 dt{
		font-size:14px;
	}
	.company1 dd{
		font-size:14px;
		padding-left:80px;
	}
}
.company2{
	padding:45px 0 63px 0;
}
.company2 li{
	width:48.95%;
	float:left;
	padding:0 2.1% 0 0;
}
.company2 li a{
	background:#fff;
	font-size:24px;
	font-style:italic;
	display:block;
	text-align:center;
	padding:30px 2.5%;
}
.company2 li:nth-child(2n+2){
	padding-right:0;
}
.company3{
	background:#000;
	padding:60px 2.5%;
}
.company3 p{
	text-align:center;
}
.company3 p a{
	display:inline-block !important;
	text-align:center;
	background:#fff;
	font-size:24px;
	font-style:italic;
	display:block;
	text-align:center;
	padding:30px 2.5%;
	width:100%;
	max-width:340px;
	box-sizing:border-box;
}
@media only screen and (max-width: 1020px){
	.company2 li a{
		font-size:16px;
	}
}
@media only screen and (max-width: 599px){
  .company2{
    padding: 0px 0 63px 0;
  }
}
/*ricco*/
.office5{
padding: 70px 0 100px 0;
position: relative;
overflow: hidden;
}
.office5:after{
content: "";
width: 100%;
height: 385px;
display: block;
background-color: #f6f1e2;
position: absolute;
top:260px;
z-index: 0;
}
.office5 h3{
padding-bottom: 55px;
}
.office5 .inner{
max-width: 797px;
width: 95%;
margin: 0 auto;
position: relative;
z-index: 1;
}
.office5 .inner .pic{
margin-bottom: 33px;
height: 350px;
    overflow: hidden;
    display: block;
}
.office5 .inner .pic img{
  object-fit: cover;
}
.office5 .inner li{
width: 32%;
margin-right: 2%;
}
.office5 .inner li:nth-of-type(2){
padding-top: 40px;
}
.office5 .inner li:nth-of-type(3){
margin-right: 0;
margin-top: -102px;
}
.office3txt{
max-width: 345px;
margin: 0 auto;
width: 90%;
border: 1px solid #000;
padding: 15px 0;
margin-bottom: 60px;
}
.office3txt p{
text-align: center;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}
@media only screen and (max-width: 1020px){
.office5 .inner .pic{
width: 100%;
text-align: center;
}
.office5 .inner li:nth-of-type(2){
padding-top: 0px;
}
.office5 .inner li:nth-of-type(3){
margin-right: 0;
margin-top: 0;
}
}
@media only screen and (max-width: 599px){
.office3txt p{
font-size: 12px;
}
.office5 .inner .pic{
  margin-bottom: 20px;
    height: 200px;
}
}
/*gallery*/
.gallery1{
margin: 50px auto;
}
.gallery1 ul{
padding: 40px 0 5px 0;
width: 100%;
text-align: center;
}
.gallery1 ul li{
max-width: 140px;
width: 15%;
margin: 0 4.8%;
padding-bottom: 40px;
}
.gallery1 ul li a{
  position: relative;
display: block;
border-bottom: 1px solid #000;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
text-align: center;
}
.gallery1 ul li.all a{
font-family:"游ゴシック",YuGothic,"メイリオ",Meiryo,Hiragino Sans,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro",Hiragino Kaku Gothic ProN,'ＭＳ Ｐゴシック',sans-serif;
}
.gallery1 ul li a:hover:before{
	content:url(/import/tenant_3/153.126.164.160/html/images/osaka/icon_01.gif);
	left:50%;
	bottom:-12px;
	position:absolute;
	transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.gallery2{
padding: 70px 0 90px 0;
}
.gallery2 .galist {
    max-width: 800px;
    margin: 0 auto;
}
.pagenav{
width: 95%;
margin: 0 auto;
text-align: center;
padding: 70px 0 0 0;
letter-spacing: -5px;
}
.pagenav a{
letter-spacing: 0px;
display: inline-block !important;
border: 1px solid #000;
margin: 0 3px 10px 3px;
padding: 0 7px;
}

.pagenav a.now{
  background-color: #000;
  color:#fff;
}

.pagenav a.pn{
border: none;
margin: 0 24px;
}
.gallery2 .i96 .hmore{
  margin-top: 30px;
}
@media only screen and (max-width: 1020px){
.gallery1 ul li{
width: 40%;
padding-bottom: 20px;
}
}
@media only screen and (max-width: 599px){
.pagenav a.pn{
margin: 0 3px;
}
.gallery1 ul{
  padding: 20px 0 5px 0;
}
}
/*works*/
.works1{
padding: 70px 0;
}
.works1 ul dd.pic{
padding-bottom: 20px;
}
.works1 ul dd.pic+dd{
font-family:"游ゴシック",YuGothic,"メイリオ",Meiryo,Hiragino Sans,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro",Hiragino Kaku Gothic ProN,'ＭＳ Ｐゴシック',sans-serif;
}
.works1 ul dd,.works1 ul dd div{
color:#b3b3b3;
}
.works1 ul dd.txt01{
  height: 66px;
  overflow: hidden;
}
.works1 ul dt{
font-size: 18px;
color: #000;
padding-bottom: 10px;
font-weight: bold;
height: 22px;
    overflow: hidden;
}
.works1 ul dt a{
  width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
}
.works1.bridal1 li{
margin-bottom: 50px;
}
@media only screen and (max-width: 1020px){
.works1 ul dt{
font-size: 14px;
height:15px;
}
}
.works2{
margin: 50px auto;
padding-bottom:100px; 
}
.works2 .kiji{
max-width: 745px;
margin: 0 auto;
width: 95%;
padding: 60px 0;
}
.works2 .kiji .cate{
display: inline-block !important;
background:#000 url(/import/tenant_3/153.126.164.160/html/images/works/catebg.gif) repeat-x bottom;
color: #fff;
text-align: center;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
padding: 7px 15px;
position: relative;
margin-bottom: 25px;
}
.works2 .kiji .cate:before{
content: url(/import/tenant_3/153.126.164.160/html/images/works/works_detail_icon_01.gif);
position: absolute;
bottom: -11px;
left: 45%;
}
.works2 .kiji h3{
font-size: 16px;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
padding-bottom: 15px;
font-weight: bold;
}
.works2 .kiji .pic{
width: 46.97%;
float: left;
}
.works2 .kiji .txt{
width: 50.2%;
float: right;
}
.works2 .kiji .txt dt,dd,p{
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}
.works2 .kiji .txt dl{
border-top: 2px solid #bfbfbf;
padding: 25px 0 20px 0;
}
.works2 .kiji .txt dl:first-of-type{
padding-top: 35px;
border: none;
}
.works2 .kiji .txt dd .time{
  padding-left: 20px;
}
.works2 .kiji .txt dl:first-of-type dd a[href="#"]{
  display: none !important;
}
.back{
text-align: center;
}
.back a{
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
font-style: italic;
letter-spacing: 5px;
}
@media only screen and (max-width: 599px){
.works2 .kiji .pic{
float: none;
width: 100%;
text-align: center;
padding-bottom: 15px;
}
.works2 .kiji .pic.trimming.p143:after{
  padding-top: 100%;
}
.works2 .kiji .txt{
float: none;
width: 100%;
}
.works2 .kiji h3{
font-size: 14px;
}
.works2 .kiji .cate{
  width: 89%;
}
}
/*blog*/
.works1.blog1 ul dd .categ{
display: inline-block !important;
color: #fff;
background-color: #000;
padding: 2px 20px 1px 20px;
margin-right: 10px;
font-size: 10px;
}
.works1.blog1 ul dd.pic+dd{
padding-bottom: 10px;
}
.blog2{
padding: 70px 0 90px 0;
}
.blog2 .kiji{
max-width: 620px;
width: 95%;
margin: 0 auto;
padding-bottom: 70px;
}
.blog2 .kiji .cada li{
text-align: center;
color: #b3b3b3;
text-align: center;
}
.blog2 .kiji .cada{
padding-bottom: 60px;
}
.blog2 .kiji .categ{
display: inline-block !important;
color: #fff;
background-color: #000;
padding: 2px 20px 1px 20px;
margin-right: 10px;
font-size: 10px;
margin-bottom: 12px;
}
.blog2 .kiji h3{
text-align: center;
font-size: 18px;
font-weight: bold;
padding-bottom: 30px;
}
.blog2 .kiji .inn .pic{
width: 100%;
text-align: center;
padding-bottom: 20px;
}
.blog2 .kiji .inn p{
font-family:"游ゴシック",YuGothic,"メイリオ",Meiryo,Hiragino Sans,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro",Hiragino Kaku Gothic ProN,'ＭＳ Ｐゴシック',sans-serif;
}
@media only screen and (max-width: 599px){
.blog2 .kiji h3{
font-size: 14px;
}
.works1.blog1 ul dd .categ{
  padding: 2px 10px 1px 10px;
  margin-right: 0;
}
.works1.blog1 .h3h strong{
  width: 100%;
}
}
/*news*/
.news1{
padding: 50px 0 100px 0;
}
.news1 .newslist li{
background-color: #e7e4e0;
margin-bottom: 20px;
}
.news1 .newslist li dd.cate{
background-color: #000;
color: #fff;
min-width: 180px;
text-align: center;
display: inline-block !important;
padding: 10px 10px 8px 10px;
margin-bottom: 15px;
}
.news1 .newslist li dd{
padding:0 3% 10px 3%;
}
.news1 .newslist li dt{
padding: 0 3%;
}
.news1 .newslist li dt a{
  width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: inline-block;
}
.news1 .newslist dl{
padding-bottom: 20px;
}
/*recruit*/
.recruit1{
padding: 85px 0;
}
.recruit1 .txt1{
text-align: center;
padding-bottom:25px;
font-family:"游ゴシック",YuGothic,"メイリオ",Meiryo,Hiragino Sans,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro",Hiragino Kaku Gothic ProN,'ＭＳ Ｐゴシック',sans-serif;
}
.recruit1 h3{
text-align: center;
    color: #fff;
    background: #000;
    font-size: 24px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
    padding: 10px 2.5%;
    margin-bottom: 50px;
}
.recruit1 .inn{
max-width: 766px;
width: 95%;
margin: 0 auto;
}
.recruit1 .inn dt{
width: 12.8%;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
padding-left: 5%;
padding-right: 2%;
font-size: 16px;
font-weight: bold;
}
.recruit1 .inn dd{
width: 80.2%;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
font-size: 16px;
}
.recruit1 .inn dl{
padding-bottom: 40px;
}
.recruit2{
padding: 80px 0;
}
.recruit2 .inn{
max-width: 580px;
width: 95%;
margin: 0 auto;
}
.recruit2 h3{
padding-bottom: 100px;
}
.recruit2 p{
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}
.recruit2 h3+p{
padding-bottom: 80px;
}
.recruit2 .his{
color: #ee4f4f;
}
.recruit2 .table dt{
width: 25.2%;
padding-right: 1%;
font-size: 16px;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
padding-top: 5px;
}
.recruit2 .table dd{
width: 73.8%;
font-size: 16px;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
}
.recruit2 .table dl{
padding-bottom: 20px;
margin-bottom: 20px;
border-bottom: 1px dashed #000;
}
.recruit2 .table dl.area01 dd textarea{
  width: 99%;
    border: 1px solid #000;
    height: 150px;
}
.recruit2 .table dd .size1{
width: 100%;
height: 30px;
border: 1px solid #000;
}
.recruit2 .table dd label{
margin-right: 2em;
margin-top: 5px;
display: inline-block !important;
}
.recruit2 .table .gyo2 dd label{
margin-top: 15px;
}
.recruit2 .table #ask,.recruit2 .table #area{
width: 99%;
border: 1px solid #000;
height: 150px;
}
.recruit2 .form-submit-btn,.send,.modoru{
    width: 250px;
    height: 60px;
    background: #000;
    border: none;
	border-radius: 5px;
    color: #fff;
    font-size: 18px;
	text-align: center;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝", serif;
	font-weight: bold;
}
.recruit2 .send{
  margin-left: 3%;
}
@media only screen and (max-width: 1020px)
 {
 .recruit1 .inn dt,.recruit1 .inn dd{
font-size: 14px;
}
 .recruit2 .table dt,.recruit2 .table dd{
 font-size: 14px;
 }
}
@media only screen and (max-width: 599px)
 {
 .recruit1 h3{
 font-size: 18px;
}
.recruit1 .inn dt,.recruit1 .inn dd{
width: 100%;
padding: 0;
}
 .recruit2 .table dt{
 width: 100%;
 padding-right: 0;
 padding-bottom: 5px;
 }
 .recruit2 .table dd{
 width: 100%;
 }
 .recruit2 h3{
   padding-bottom: 50px;
 }
 .recruit2 .send{
   margin-left: 0;
   margin-top: 5%;
 }
}
.wl .office2:before,.wl .office2:after {
	display:none !important;
}
.wl .office2 h3{
	padding-bottom:55px;
}

.office2 .bridal1{
	padding-top:0;
	padding-bottom:0;
}

/*-------------------------カスタム切り取り-----------------------*/

[data-element-id].flex > div[data-collection-list-content],
.flex_c > div[data-collection-list-content],[data-element-id].gallery1 ul.flex_c,[data-element-id].staff .flowlist {
    overflow: hidden;
    height: 329px;
}

/*-------------------------編集画面のみ表示-----------------------*/
[data-element-id]#gnav ul ul{
  display: block !important;
}
[data-element-id]#gnav ul ul.first{
  left: -120%;
}


@media only screen and (max-width: 1020px){
[data-element-id]#gnav ul ul.first{
   left: 0%;
}
}
/*-------------------------スタッフ--------------------*/
.bridal2.staff .flowlist .pic{
  width: 28%;
  padding:0;
  margin: 0 0 20px 0;
}
.bridal2.staff .flowlist .tbox{
  padding:0;
}
.bridal2.staff .flowlist .tbox h4{
  border-bottom: 1px solid #999;
    margin-bottom: 20px;
    padding: 0 0 10px 0;
    font-weight: bold;
}
.bridal2.staff .flowlist .tbox p{
  padding: 0 0 10px 0;
}
.bridal2.staff .flowlist .box{
      padding-bottom: 60px;
}
@media only screen and (max-width: 599px){
  .bridal2.staff .flowlist .pic{
    width:70%;
    margin:0 auto 20px auto !important;
  }
}
/*------------------------------ブログ署名-------------------------*/
/*PC css*/
.blog2 .kiji .inn dl {
    font-size: 14px;
    line-height: 24px;
    padding:20px 20px 0;
    margin-top:40px;
    border-top:2px dashed #ddd;
}
.blog2 .kiji .inn dl p {
    font-weight:bold;
    text-align:center;
    margin-bottom:15px;
}
.blog2 .kiji .inn dl dt {
    float:left;
}
.blog2 .kiji .inn dl dd {
    margin:0 0 10px 120px;
}

/*-----------------小見出し------------------------*/

/**小見出しcss**/
span.text_t{
    opacity:0;
    display:inline-block;
}
span.text_t:nth-of-type(6n+1){
    transform: translate(10px,20px);
    -webkit-transform: translate(10px,20px);
    transition: all 1.6s;
    -webkit-transition: all 1.6s;
    -moz-transition: all 1.6s;
    -o-transition: all 1.6s;
}
span.text_t:nth-of-type(6n+2){
    transform: translate(-10px,-20px);
    -webkit-transform: translate(-10px,-20px);
    transition: all 1.0s;
    -webkit-transition: all 1.0s;
    -moz-transition: all 1.0s;
    -o-transition: all 1.0s;
}
span.text_t:nth-of-type(6n+3){
    transform: translate(10px,30px);
    -webkit-transform: translate(10px,30px);
    transition: all 1.4s;
    -webkit-transition: all 1.4s;
    -moz-transition: all 1.4s;
    -o-transition: all 1.4s;
}
span.text_t:nth-of-type(6n+4){
    transform: translate(10px,-30px);
    -webkit-transform: translate(10px,-30px);
    transition: all 1.2s;
    -webkit-transition: all 1.2s;
    -moz-transition: all 1.2s;
    -o-transition: all 1.2s;
}
span.text_t:nth-of-type(6n+5){
    transform: translate(-10px,20px);
    -webkit-transform: translate(-10px,20px);
    transition: all 1.8s;
    -webkit-transition: all 1.8s;
    -moz-transition: all 1.8s;
    -o-transition: all 1.8s;
}
span.text_t:nth-of-type(6n+6){
    transform: translate(10px,-20px);
    -webkit-transform: translate(10px,-20px);
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
}
.animation1 span.text_t{
    opacity:1;
    transform: translate(0px);
}
.hide {
  display:none;
}


/*2021/04/13*/

.tel_box {
  font-size: 30px;
  text-align: right;
  padding-right: 50px;
  font-weight: bold;
}

.pc-only {
  display: block;
}

#gnav li.spgnav_tel {
    display: none !important;
}


@media only screen and (max-width: 1024px){
  .tel_box {
  padding-right: 85px;
  padding-top: 30px;
}
}

@media only screen and (max-width: 599px){
  .pc-only {
  display: none;
}
  #gnav li.spgnav_tel {
    display: block;
}
 #gnav li.spgnav_tel a{
    display: block !important;
    color:#fff;
    background-color: #000;
    margin: 10px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.ma {
  margin: auto !important;
  width: 40% !important;
}

.ma span.w {
  max-width: 100% !important;
}

.text_r {
  margin-bottom: 50px;
  text-align: center;
}

@media only screen and (max-width: 1024px){
  .ma {
  width: 60% !important;
}
}

@media only screen and (max-width: 599px){
  .office1 ul.ren {
    padding: 0;
  }
  .ma {
  width: 1000% !important;
  margin: auto;
}
}


/* 2023/05/29 */
/* .about2 .i96 .shop-banner li:nth-child(3n+3) {
    margin-top: 30px!important;
} */

/* @media (max-width:1024px) {
  .about2 .i96 .shop-banner li:nth-child(3n+3) {
    margin-top: 0!important;
  }
} */

.about2 .i96 .shop-banner li {
    margin-top: 1%;
    margin-bottom: 1%;
}

@media (max-width:1024px) {
  .about2 .i96 .shop-banner li {
      width: 48%;
      margin-left: 0;
      margin-right: 0;
  }
  
  .about2 .i96 .shop-banner {
      justify-content: space-around;
  }
}

@media (max-width:599px) {
  .about2 .i96 .shop-banner li {
      width: 100%;
      margin: 0;
  }
}

.setsalonmap{
  width: 100%;
    height: 330px;
}

.setsalonmap iframe{
  height: 100%;
  
  width: 100%;
}


/* 2023/10/17 */
.office6 {
    padding: 70px 0 40px 0;
}

.block-type-01 {
    position: relative;
}

.block-type-01 .box .pic {
    margin: 20px 0;
}
.trimming.p30:after {
    padding-top: 30%;
}

@media (max-width:599px) {
  .trimming.p70\@sp:after {
      padding-top: 70%;
  }
  .pb-none\@sp {
    padding-bottom: 0;
  }
}
