/*更新履歴*/
@charset “UTF-8”;

/*ーーーーーーーーーー
リセットcss
ーーーーーーーーーーー*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  /*vertical-align: baseline;*/
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/*html {
  font-size: 62.5%!important;
}*/

a {
    text-decoration:none;
}



/*ーーーーーーーーーー
.header
ーーーーーーーーーーー*/
.head_wrap{
  height: 60px;
  position: fixed;
  z-index: 9999999;
  background: #fff;
  width: 100%;
  top: 0;
}

.header-Dlogo{
  display: none;
}


#hamburger .btn-gNav{
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 24px;
  z-index: 3;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

#hamburger .btn-gNav span{
  position: absolute;
  width: 100%;
  height: 4px;
  background: #666;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
#hamburger .btn-gNav span:nth-child(1) {
  top:0;
}
#hamburger .btn-gNav span:nth-child(2) {
  top:10px;
}
#hamburger .btn-gNav span:nth-child(3) {
  top:20px;
}
#hamburger .btn-gNav.open span:nth-child(1){
  background: #666;  /*#fffから#666へ変更閉じる際にハンバーガーメニューを表示*/
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
#hamburger .btn-gNav.open span:nth-child(2),#hamburger .btn-gNav.open span:nth-child(3){
  top: 6px;
  background: #666;  /*#fffから#666へ変更閉じる際にハンバーガーメニューを表示*/
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
#gNav{
  position: fixed;
  top: 0px;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #fff;  /*#444;から#fffへ変更*/
  font-size: 12px;  /*フォントサイズを16pxから12pxへ変更*/
  box-sizing: border-box;
  z-index: 2;
  /*padding-top: 50px;*/  /*画面からヘッダーをおろさないようコメントアウト*/
  transition: .3s;
}
#gNav.open{
  right: 0px;
}
#gNav .gNav-menu{
  width: 100%;
  height:100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;  /*中央ゾロえ*/
  margin-top: 10px;
  /*justify-content: center;*/
}



#gNav .gNav-menu li{
  display: block;
  padding: 20px 5px 20px 0px;  /*padding : 20px 30px;からヘッダー内の枠変更*/
  margin: 0 auto; /*pc表示のヘッダーを中央揃え*/
  line-height: 16px;

}
#gNav .gNav-menu li a{
  color: #000;  /*#dddから#000へ変更*/
  text-decoration: none;
  font-size: 14px;  /*標準から14pxへ変更*/
}


@media screen and (min-width: 600px){
  .btn-gNav{
    display: none;
  }
  #gNav{
    position: fixed;
    top: 0px;
    right: 0;
    height: 55px;  /*50pxから55pxへ変更*/
  }
  #gNav .gNav-menu{
    display: flex;
    flex-direction: row;
    max-width: 960px;  /*width100%からmax-width960pxへ変更*/
    height: 100%;　　　　　/*こいつが画面全体を覆っているのでクリックできない*/
    position: fixed;   /*こいつが画面全体を覆っているのでクリックできない*/
    top: 0;
    /*right: 0;*/  /*コメントアウトへ変更*/
    padding-left: 0px;  /*画面の50pxから0pxへ変更*/
  }
  #gNav .gNav-menu li{
    padding-top: 5px;
  }
}



/* ==== Slider Style === */
.slideshow .item .img-fill{
  width: :100%;
  background:rgba(182,148,64,.50);
}

.slideshow .item .img-fill .info{
  position:absolute;
  min-width:100%;
  height:100%;
  right:5%;
  top: -45%;
  line-height:100vh;
  text-align:right;
}

.slideshow .item .info > div{
  display:inline-block!important;
}

.slideshow .NextArrow{
  position:absolute;
  top:50%;
  right:0px;
  width:45px;
  height:45px;
  background:rgba(182,148,64,.60);
  border:0 none;
  margin-top:-22.5px;
  text-align:center;
  font:20px/45px FontAwesome;
  color:#FFF;
  z-index:5;
}

.slideshow .NextArrow:before{content:'\f105';}

.slideshow .PrevArrow{
  position:absolute;
  top:50%;
  left:0px;
  width:45px;
  height:45px;
  background:rgba(182,148,64,.60);
  border:0 none;
  margin-top:-22.5px;
  text-align:center;
  font:20px/45px FontAwesome;
  color:#FFF;
  z-index:5;
}

.slideshow .PrevArrow:before{content:'\f104';}

.slideshow .slick-dots{
  position:absolute;
  height:5px;
  background:rgba(255,255,255,.20);
  bottom:0px;
  width:100%;
  left:0px;
  padding:0px;
  margin:0px;
  list-style-type:none;
}
.slideshow .slick-dots li button{display:none;}
.slideshow .slick-dots li{
  float:left;
  width:0px;
  height:5px;
  background:#B6944C;
  position:absolute;
  left:0px;
  bottom:0px;
}

.slideshow .slick-dots li.slick-active{
  width:100%;
  -webkit-animation:ProgressDots 6s both;
          animation:ProgressDots 6s both;
}

.slideshow .item h3{
  font-family: 'Century Gothic', sans-serif;
  font-size: 1.6rem;
  text-transform:uppercase;
  color:#B6944C;
  -webkit-animation:fadeIn 1s both;
          animation:fadeIn 1s both;
  margin:0;
  padding:0;
}

.slideshow .item.slick-active h3{
  -webkit-animation:fadeIn 1s both 1s;
          animation:fadeIn 1s both 1s;
}


.slideshow .item img{
  -webkit-animation:fadeIn 1s both;
          animation:fadeIn 1s both;
}

.slideshow .item.slick-active img{
  -webkit-animation:fadeIn 1s both;
          animation:fadeIn 1s both;
}


@-webkit-keyframes ProgressDots{from{width:0px;}to{width:100%;}}
@keyframes ProgressDots{from{width:0px;}to{width:100%;}}

/* ==== Slick Slider Css Ruls === */
.slick-slider{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}
.slick-list:focus{outline:none}.slick-list.dragging{cursor:hand}
.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
.slick-track{position:relative;top:0;left:0;display:block}
.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}
.slick-loading .slick-track{visibility:hidden}
.slick-slide{display:none;float:left /* If RTL Make This Right */ ;height:100%;min-height:1px}
.slick-slide.dragging img{pointer-events:none}
.slick-initialized .slick-slide{display:block}
.slick-loading .slick-slide{visibility:hidden}
.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}


/*/スライド*/

/*インフォメーション*/
.info {
  -webkit-overflow-scrolling: touch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 800px;
  height: 13em;
  margin: 0 auto;
  overflow-y: scroll
}

@media (min-width:768px) {
  .info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    flex-wrap: wrap
  }
}

.info dd,
.info dt {
  box-sizing: border-box;
  width: 100%;
  padding-bottom: .5em;
  padding-left: .5em
  letter-spacing: 0.8em;
}

.info dt {
  font-style: normal;
  font-weight: initial
}

@media (min-width:768px) {
  .info dt {
    width: 12.5em;
    margin-bottom: .5em;
    border-bottom: 1px dotted #343a40
  }
}

.info dt:first-of-type {
  padding-top: .5em;
  border-top: 1px dotted #343a40
}

.info dt time {
  margin-right: .5em
}

.info dt span {
  box-sizing: border-box;
  display: inline-block;
  width: 7em;
  margin-right: .5em;
  padding: 0 .5em;
  background-color: #dbd7cc;
  color: #5d5d5d;
  font-size: .8em;
  line-height: 1.75;
  text-align: center
}

.info time {
  color: #adb5bd
}

.info dd {
  margin-left: 0;
  margin-bottom: .5em;
  border-bottom: 1px dotted #343a40
}

@media (min-width:768px) {
  .info dd {
    width: calc(100% - 12.5em)
  }
  .info dd:first-of-type {
    padding-top: .5em;
    border-top: 1px dotted #343a40
  }
}

.info dd:nth-of-type(-n+3) {
  position: relative
}


/*ーーーーーーーーーー
CSS追加分ここから
ーーーーーーーーーーー*/
/*基本CSS*/
.clear{clear:both;}

/* マージン＆パディング */
.m0 { margin:0 !important;}
.mt3 { margin-top:3px !important;}
.mt5 { margin-top:5px !important;}
.mt10 { margin-top:10px !important;}
.mt20 { margin-top:20px !important;}
.mt30 { margin-top:30px !important;}
.mt40 { margin-top:40px !important;}
.mt50 { margin-top:50px !important;}
.mt60 { margin-top:60px !important;}
.mt70 { margin-top:70px !important;}
.mt80 { margin-top:80px !important;}
.mt90 { margin-top:90px !important;}
.mt100 { margin-top:100px !important;}
.mb3 { margin-bottom:3px !important;}
.mb5 { margin-bottom:5px !important;}
.mb10 { margin-bottom:10px !important;}
.mb15 { margin-bottom:15px !important;}
.mb20 { margin-bottom:20px !important;}
.mb30 { margin-bottom:30px !important;}
.mb40 { margin-bottom:40px !important;}
.mb50 { margin-bottom:50px !important;}
.mb60 { margin-bottom:60px !important;}
.mb70 { margin-bottom:70px !important;}
.mb80 { margin-bottom:80px !important;}
.mb90 { margin-bottom:90px !important;}
.mb100 { margin-bottom:100px !important;}
.ml3 { margin-left:3px !important;}
.ml5 { margin-left:5px !important;}
.ml6 { margin-left:6px !important;}
.ml7 { margin-left:7px !important;}
.ml8 { margin-left:8px !important;}
.ml9 { margin-left:9px !important;}
.ml10 { margin-left:10px !important;}
.ml20 { margin-left:20px !important;}
.ml30 { margin-left:30px !important;}
.ml40 { margin-left:40px !important;}
.ml50 { margin-left:50px !important;}
.ml60 { margin-left:60px !important;}
.ml70 { margin-left:70px !important;}
.ml80 { margin-left:80px !important;}
.ml90 { margin-left:90px !important;}
.ml100 { margin-left:100px !important;}
.mr3 { margin-right:3px !important;}
.mr5 { margin-right:5px !important;}
.mr6 { margin-right:6px !important;}
.mr7 { margin-right:7px !important;}
.mr8 { margin-right:8px !important;}
.mr9 { margin-right:9px !important;}
.mr10 { margin-right:10px !important;}
.mr15 { margin-right:15px !important;}
.mr20 { margin-right:20px !important;}
.mr30 { margin-right:30px !important;}
.mr40 { margin-right:40px !important;}
.mr50 { margin-right:50px !important;}
.mr60 { margin-right:60px !important;}
.mr70 { margin-right:70px !important;}
.mr80 { margin-right:80px !important;}
.mr90 { margin-right:90px !important;}
.mr100 { margin-right:100px !important;}
.p0 { padding:0 !important;}
.pl3 { padding-left:3px !important;}
.pl5 { padding-left:5px !important;}
.pl8 { padding-left:8px !important;}
.pl10 { padding-left:10px !important;}
.pl20 { padding-left:20px !important;}
.pl30 { padding-left:30px !important;}
.pl40 { padding-left:40px !important;}
.pl50 { padding-left:50px !important;}
.pr3 { padding-right:3px !important;}
.pr5 { padding-right:5px !important;}
.pr10 { padding-right:10px !important;}
.pr20 { padding-right:20px !important;}
.pr30 { padding-right:30px !important;}
.pr40 { padding-right:40px !important;}
.pr50 { padding-right:50px !important;}
.pr60 { padding-right:60px !important;}
.pr70 { padding-right:70px !important;}
.pr80 { padding-right:80px !important;}
.pr90 { padding-right:90px !important;}
.pr100 { padding-right:100px !important;}
.pt3 { padding-top:3px !important;}
.pt5 { padding-top:5px !important;}
.pt10 { padding-top:10px !important;}
.pt15 { padding-top:15px !important;}
.pt20 { padding-top:20px !important;}
.pt30 { padding-top:30px !important;}
.pt40 { padding-top:40px !important;}
.pb3 { padding-bottom:3px !important;}
.pb5 { padding-bottom:5px !important;}
.pb10 { padding-bottom:10px !important;}
.pb15 { padding-bottom:15px !important;}
.pb20 { padding-bottom:20px !important;}
.pb30 { padding-bottom:30px !important;}
.pb40 { padding-bottom:40px !important;}

/*float関係*/
.fl{ float:left; }
.fr{ float:right; }

/* font関係 */
.b{font-weight:bold;}
.fs_l{font-weight:bold;font-size:130%;}
.fs_m{font-weight:bold;font-size:110%;}
.fs_s{font-size:90%;}
.fs130{font-size:130%;}
.fs120{font-size:120%;}
.fs110{font-size:110%;}
.fs100{font-size:100%;}
.fs90{font-size:90%;}
.fs80{font-size:80%;}
.fs70{font-size:70%;}
.white{color:#cccccc;}
.c_333{color:#333333;}
.c_999{color:#999999;}
.red{color:#ff0000;}
.tac{text-align:center;}
.tar{text-align:right;}
.tal{text-align:left;}
.cf:before,.cf:after{content:"";display:table;}.cf:after {clear:both;}.cf{zoom:1;}




/*ーーーーーーーーーー
body
ーーーーーーーーーーー*/
body{
  font-family: 'Helvetica Neue','Arial','Hiragino Kaku Gothic ProN','Hiragino Sans','Meiryo',sans-serif;
}

p{
  letter-spacing:0.08em;
}

a:link {
  color:#000;
}

a:visited {
  color:#000;
}

/*.bgPP a:link, a:visited, a:hover, a:active{*/
.bgPP a:visited,{
  color: #fff;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

.pc{
 display: block!important;
}

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

.mobile{
 display: none!important;
}

/*ーーーーーーーーーー
wrap
ーーーーーーーーーーー*/
.wrap {
  max-width: 960px;
  margin:0 auto;
  padding: 0px 20px;
}


h1{
  font-size: 24px;
}

h2{
  font-size: 18px;
  padding-bottom: 4px;
}

a{
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}




/*ーーーーーーーーーー
seen
ーーーーーーーーーーー*/
.seen{
  position: relative;/*相対配置*/
  margin-bottom: 60px;
}

.seenbox{
  width: 90%;
  margin:0 auto;
}

.seenHeading{
  font-size: 22px;

}

.seenTitle{
  color: #fff;
  font-size:24px!important;
  text-shadow: 1px 2px 3px #808080;
}

.seenP{
  width: 55%;
  font-size:16px;
  position: absolute;/*絶対配置*/
  top: 50px;
  left: 50px;
  line-height: 24px;
}

@media screen and (max-width: 960px){
  .seenbox{
    width: 100%;
  }
  .seenP{
    left: 0;
    width: 100%;
    position:static;
  }
  .seen img{
    display: none;
  }
}

.seen img{
  width: 100%;
}


/*ーーーーーーーーーー
hover
ーーーーーーーーーーー*/
.seen1 a, .seen2 a, .seen3 a{
 background: #fff;	/* 透過させる色 */
 display: flex;		/* 透過部分を画像サイズに合わせる */
 align-items: flex-start;
}

.seen1 a img, .seen2 a img, .seen3 a img{
 /* opacity: 1; */	/* 必要かもしれない */
 transition: 1.5s;	/* 変化の速さ */
}

.seen1 a img:hover, .seen2 a img:hover, .seen3 a img:hover{
 opacity: 0.5;		/* 透明度 */
}


/*ーーーーーーーーーー
news
ーーーーーーーーーーー*/


/*ーーーーーーーーーー
main
ーーーーーーーーーーー*/


.bgPP{
  background-color: #db0f8c;
  color: #fff!important;
  padding: 4px;
}

.TopImgVa{
  vertical-align: bottom;
}

.news{
  font-size: 22px;
  transform: rotate(.03deg);
  border-bottom:solid 2px;
  border-color:#e8e3da;
  display: inline-block;
  letter-spacing:0.1em;

}

/*ーーーーーーーーーー
sns
ーーーーーーーーーーー*/
.SnsFieldContainer{
  width: 80%;
  margin: 0 auto;
}

@media (min-width:768px) {
  .SnsFieldContainer{
  width: 60%;
  margin: 0 auto;
  }
}



/*ーーーーーーーーーー
footer
ーーーーーーーーーーー*/
.fLogo{
  width: 100%;

}

.fLogo div{
  margin: 0 auto;
  padding: 5% 0% 2% 5%;

}

.fLogo a{
  text-decoration:none;
  line-height: 1.3em;
}


.clearfix:after {
  clear: both;
  content: '';
  display: block;
}

@media screen and (max-width: 600px){
  .fLogo{
    width: 50%;
    margin: 0 auto;

  }

  .fLogo div{
    padding:0px;
  　margin-top:20px;
  　margin-bottom:10px;
  }
}

/*ーーーーーーーーーー
company.pages
ーーーーーーーーーーー*/
/*会社概要変更のため下記css移行*/
/*.companyBox{
  position: relative;
}

.companyTitleL{
  position: absolute;
  width: 55%;
  top: 12%;
  left: 5%;
  font-size: 14px;
  width: 50%;

}

.companyTitleR{
  width: 40%;
  position: absolute;
  bottom: 3%;
  right: 3%;
  font-size: 14px;
}

@media screen and (max-width: 600px){
  .companyTitleR{
    font-size: 10px;
  }
  .companyTitleL{
    font-size: 10px;
  }
}*/


.companyTable{
  color: #4d4d4d;
  line-height: 1.5;
}

.companyTable th tr td{
  text-align:
 vertical-align: middle;
}

/*ーーーーーーーーーー
shopinfo.pages
ーーーーーーーーーーー*/
.shopinfoBox{
  position: relative
}

.shopinfoBox p{
 font-size: 16px;
 letter-spacing: 0.02em;
}

.shopinfoText{
 position: absolute;
 width: 48%;
 top: 12%;
 right: 2%;
 padding: 1%;
 background: rgba(255, 255, 255, 0.6);
}

.shopinfoTitle{
 line-height: 1.4em;
 margin-bottom: 24px;
}

.shopinfoUrl{
 text-align: right;
}

/*ーーーーーーーーーー
item.pages
ーーーーーーーーーーー*/
.itemBox{
  position: relative;
}

.itemMainTxt{
    position: absolute;
    width: 80%;
    top: 44%;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 15px;
    line-height: 24px;
}

.itemUrl{
    position: absolute;
    width: 15%;
    top: 60%;
    right: 0;
    /*left: 0;*/
    margin: auto;
    text-align: right;
    font-size: 14px;
    line-height: 24px;
}

.itemSubTitle {
    position: absolute;
    top: 65%;
    left: 33%;
    font-size: 15px;
    letter-spacing: 14px;
    padding-bottom: 10px;
    border-bottom: solid 1px #a0a0a0;
    width: 65%;
}

.itemSubTxt{
    position: absolute;
    top: 69%;
    left: 33%;
    font-size: 14px;
    line-height: 24px;
    width: 46%;

}
.itemSubList{
    position: absolute;
    top: 78%;
    right: 5%;
    font-size: 14px;
    line-height: 24px;
}

/*ーーーーーーーーーー
about.pages
ーーーーーーーーーーー*/
.aboutBox ul{
 display: flex;
 padding: 16px 5% 0 5%;
 margin-bottom: 16px;
}

.aboutBox ul li{
 width: 50%;
 padding: 0 2%;
}

.aboutBox ul li img{
 width: 100%;
}

.aboutBox ul li div{
 font-size: 16px;
 line-height: 1.4em;
}

.aboutBox ul li div ul{
 padding: 0;
 margin-bottom: 0;
}

.aboutBox ul li div ul li{
 padding: 0;
}

.aboutBox ul li div ul li:nth-child(odd){
 width: 33%;
}

.aboutBox ul li div ul li:nth-child(even){
 width: 67%;
}

/*ーーーーーーーーーー
dning.pages
ーーーーーーーーーーー*/
.tst{
 height: 100%;
}

.tst ul{
 display: table;
 margin: auto 10px;
}

.tst ul li{
 display: table-cell;
 width: 50%;
}

.dningBox{
 padding: 0% 5%;
}

.dningBox dt{
 font-size: 18px;
 padding:5px 0 2% 0;
}

dt.under-bar{
 border-bottom: solid 1px #444;
}

.dningBox dd{
 padding: 2% 5%;
 line-height: 1.4em;
 margin-bottom: 18px;
}

.dningBox img{
 clear: both;
}

/*ーーーーーーーーーー
living.pages
ーーーーーーーーーーー*/
.livingbg{
 width: 100%;
 height: 100%;
}

div.living-main{
 position: relative;
}

div.living-main ul{
 position: absolute;
 top: 16px;
 left: 16px;
 margin: 0 16px 0 0;
 display: table;
}

div.living-main ul li{
 display: table-cell;
 line-height: 1.1em;
}

div.living-main ul li.textimfo{
 width: 32%;
 background: rgba(255, 255, 255, 0.5);
}

div.living-main ul li.space{
 width: 2%;
}

div.living-main ul li dl.livingBox{
 padding: 16px 16px 0 16px;
}

div.living-main ul li dl dt, dd{
 font-size: 16px;
}

div.living-main ul li dl dd{
 padding: 3px 16px 16px 16px;
}

/*ーーーーーーーーーー
import.pages
ーーーーーーーーーーー*/
.importbg{
 width: 100%;
 height: 100%;
}

.import-main:after{
 content: "";
 display: table;
 clear: both;
}

div.import-main ul{
 width: 50%;
 float: left;
}

div.import-main ul li{
 padding:0 20%;
 line-height: 1.4em;
}

div.import-main ul li dl dt{
 font-size: 18px;
 padding: 18px 0 2% 0;
}

div.import-main ul li:first-child{
 padding-top: 36px;
}

div.import-main ul li dl dd{
 font-size: 16px;
}

div.import-main ul li dl dd{
 padding: 2% 16px 16px 16px;
}

div.import-main img{
 width: 100%;
 margin-bottom: 16px;
}

div.import-main img.main-vi{
 width: 50%;
 float: rigth;
}

/*ーーーーーーーーーー
bedroom.pages
ーーーーーーーーーーー*/
.bedroombg{
 width: 100%;
 height: 100%;
}

div.main-con{
 line-height: 1.4em;
}

div.main-con dl dt{
 font-size: 18px;
 padding: 18px 0 6px 0;
}

div.main-con dl dd{
 font-size: 16px;
}

div.main-con dl dd{
 padding: 6px 16px 16px 16px;
}

div.bedroom-main ul{
 display: flex;
 margin-bottom: 16px;
}

div.bedroom-main ul li{
 line-height: 1.4em;
 width: 50%;
}

div.bedroom-main ul li img{
 width: 100%;
}

div.bedroom-main ul li dl{
 padding: 0 5%;
}

div.bedroom-main ul li dl dt{
 font-size: 18px;
 padding: 18px 0 2% 0;
}

div.bedroom-main ul li dl dd{
 font-size: 16px;
}

div.bedroom-main ul li dl dd{
 padding: 2% 16px 16px 16px;
}

div.bedroom-main p.sub-con{
 width: 60%;
 font-size: 16px;
 line-height: 1.4em;
 border: solid 1px #c3c3c3;
 padding: 16px;
 margin:0 auto 16px auto;
}

/*ーーーーーーーーーー
privacy.pages
ーーーーーーーーーーー*/
.privacyBox{
  width: 80%;
  margin: 0 auto;
}

.privacyBox h1{
  width: 75%;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 5px;
  font-size: 18px;
  line-height: 18px;
  border-left: solid 4px #87692D;
}

.privacyBox p{
  width: 75%
  font-size: 14px;
  line-height: 20px;
}


/*ーーーーーーーーーー
contact.pages
ーーーーーーーーーーー*/
label {
  font-weight: 600;
  border-left: 4px solid #87692D;
  padding-left: 10px;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
label.label_inline {
  display: inline-block;
  font-weight: normal;
  border-left: none;
}
.required {
  font-size: .83em;
  background: #db0f8c;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  margin: 0 5px;
}
.key_font {
  font-family: 'Didact Gothic', sans-serif;
}
.tC {
    text-align: center;
    margin: 0 auto;
}
.contactBox{

}


/*ーーーーーーーーーー
thanks.pages
ーーーーーーーーーーー*/
.top_bg, .top_bg_ptn1 {
    padding: 1em 0 4em 0;
}



