@charset "utf-8";

/*============================================================*/
/* html
/*============================================================*/

html {
	width:100%;
}

/*============================================================*/
/* body
/*============================================================*/

body {
	width:100%;
}

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

/*========================================================================*/
/* header
/*========================================================================*/

header {
	position: fixed;
  width: 100%;
	top: 0;
  height: 44px;
  background-color: #b09d7c;
	z-index: 10000;
  touch-action: none;
}

#h1-hr-spad {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
}

#img-h1-hr-spad {
	width: 180px;
  height: auto;
}

#div-hr-pc {
  display:none;
}

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

  header {
    height: 54px;
  }

  #h1-hr-spad {
    height: 54px;
  }

  #img-h1-hr-spad {
    width: 210px;
  }

  #div-hr-pc {
    display: none !important;
  }
}

/*========================================================================*/
/* hbg menu
/*========================================================================*/

#hbg-tgl {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 18px;
  height: 14px;
  cursor: pointer;
  background: none;
}

#hbg-tgl span[id^="spn-hbg-"] {
  position: absolute;
  display: block;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 6px;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#spn-hbg-top {
  top: 0;
}

#spn-hbg-mid {
  top: 6px;
}

#spn-hbg-btm {
  top: 12px;
}

#spn-hbg-txt {
  display: none !important;
}

#hbg-tgl[aria-expanded="true"] #spn-hbg-top {
  transform: translateY(6px) rotate(45deg);
}

#hbg-tgl[aria-expanded="true"] #spn-hbg-mid {
  opacity: 0;
}

#hbg-tgl[aria-expanded="true"] #spn-hbg-btm {
  transform: translateY(-6px) rotate(-45deg);
}

@media only screen and (min-width: 768px) and (max-width: 1024px){
 
  #hbg-tgl {
    position: absolute;
    top: 11px;
    right: 20px;
    width: 28px;
    height: 37px;
  }

  #hbg-tgl span[id^="spn-hbg-"] {
    width: 28px;
    height: 3px;
  }

  #spn-hbg-top {
    top: 0;
  }

  #spn-hbg-mid {
    top: 8px;
  }

  #spn-hbg-btm {
    top: 16px;
  }

  #spn-hbg-txt {
    display: block !important;
    left: -2px !important;
    top: 27px;
    font-size: 10px;
    color: #fff;
    background: none !important;
  }

  #hbg-tgl[aria-expanded="true"] #spn-hbg-top {
    transform: translateY(14px) rotate(45deg);
  }

  #hbg-tgl[aria-expanded="true"] #spn-hbg-mid {
    opacity: 0;
  }

  #hbg-tgl[aria-expanded="true"] #spn-hbg-btm {
    transform: translateY(-2px) rotate(-45deg);
  }

  #hbg-tgl[aria-expanded="true"] #spn-hbg-txt {
    display: none !important;
  }
}

/*============================================================*/
/* drawer nav spad
/*============================================================*/

#nav-drw-spad {
  overflow: hidden;
  position: fixed;
  right: -100%;
  width: 70%;
  max-width: 350px;
  padding-bottom: 20px;
  color: #fff;
  background-color: rgb(195,173,123);
  background-color: #e7e6e0;
  transition: right .5s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  /*overflow-y: scroll;*/
  visibility: hidden;
  opacity: 0;
  z-index: 111;
}

body.drw-opn #nav-drw-spad {
  visibility: visible;
  right: 0;
  opacity: 1;
}

#ul-drw {
  padding: 8px 20px 0 20px;
}

.li-drw {
  position: relative;
  border-bottom: 1px solid #cdc0aa;
}

.li-drw::before {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  background: url("../img/arrow_black.svg") no-repeat center/contain;
  width: 10px;
  height: 14px;
  pointer-events: none
}

.a-drw {
  display: block;
  text-align: left;
  font-size: 15px;
  color: #7c6b3d;
  padding: 18px 0 18px 30px;
  min-height: 44px;
}

body.drw-opn {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

#drw-ovly {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .75);
  z-index: 110;
}

body.drw-opn #drw-ovly {
  display: block;
  opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #nav-drw-spad {
    width: 350px;
    top: 54px;
  }

  #ul-drw-nav {
    padding: 30px 30px 0 30px;
  }

  .a-drw-nav {
    padding: 25px 0 25px 30px;
  }
}

/*============================================================*/
/* drw contact button 
/*============================================================*/

#ul-drw-cntBtn {
  margin: 20px auto 0;
  width: 85%;
}

#li-drw-csBtn {
}

#li-drw-mlBtn {
  margin-top: 18px;
}

#a-drw-csBtn {
  display: block;
  width: 100%;
  height: 44px;
  font-size: 14px;
  color: #fff;
  line-height: 44px;
  text-align: center;
  background-color: #a17b69;
  border-radius: 4px;
}

#a-drw-mlBtn {
  display: block;
  width: 100%;
  height: 44px;
  font-size: 14px;
  color: #fff;
  line-height: 44px;
  text-align: center;
  background-color: #a17b69;
  border-radius: 4px;
}

#a-drw-mlBtn img {
  margin-top: 16px;
  margin-right: 6px;
  width: auto;
  height: 11px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  
  #ul-drw-cntBtn {
    margin: 40px auto 0;
    width: 250px;
  }

  #li-drw-csBtn {
  }

  #li-drw-mlBtn {
    margin-top: 30px;
  } 
}

/*============================================================*/
/* header pc
/*============================================================*/

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

  #div-hr-spad {
    display: none;
  }

  header {
    position: relative;
    height: auto;
    background-color: #fff;
  }

  #div-hr-pc {
    margin: 0 auto;
    width: 1000px;
    height: 100px;
    display: flex;
    justify-content: space-between;
  }

  #div-hr-lt-pc {
  }

  #h1-hr-pc {
    font-family: "メイリオ","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",Meiryo,sans-serif;
    margin-top: 8px;
    margin-left: 6px;
    font-size: 13px;
    color: #333;
    white-space: nowrap;
  }

  #a-hr-logo-pc {    
    margin-top: 11px;
    display: block;
    width: 100%;
  }

  #a-hr-logo-pc img {
    width: 300px;
    height: auto;
  }

  #div-hr-rt-pc {
  }

  #div-hr-info-pc {
    display: flex;
    justify-content: center;
  }

  #a-hr-tel-pc {
    margin-top: 13px;
    margin-left: 5px;
    display: flex;
  }

  #img-hr-tel-ic {
    margin-top: 3px;
    width: 19px;
    height: auto;
  }

  #img-hr-tel-num {
    margin-left: 5px;
    width: 150px;
    height: auto;
  }

  #div-hr-time-pc {
    margin-top: 11px;
    margin-left: 20px;
  }

  #p-hr-hours {
    font-size: 15px;
  }

  #spn-hr-hours {
    font-size: 16px;
  }

  #p-hr-days {
    margin-top: 7px;
    font-size: 15px;
    text-align: center;
  }

  #ul-hr-cntBtn-pc {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
  }

  #li-hr-csBtn-pc {
  }

  #a-hr-csBtn-pc {
    display: block;
    padding: 1px 16px 0 18px;
    height: 36px;
    line-height: 36px;
    border-radius: 3px;
    background-color: #A2906B;
    font-size: 14px;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
  }

  #li-hr-mlBtn-pc {
    margin-left: 8px;
  }

  #a-hr-mlBtn-pc {
    display: block;
    padding: 1px 26px 0;
    height: 36px;
    line-height: 36px;
    border-radius: 3px;
    background-color: #A2906B;
    font-size: 14px;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
  }

  #a-hr-mlBtn-pc img {
    margin-top: 12px;
    margin-right: 6px;
    width: auto;
    height: 11px;
  }

  #a-hr-csBtn-pc:hover,
  #a-hr-mlBtn-pc:hover {
    opacity: 0.5;
  }
}

/*--------------------------------------------------------------------------------------------*/
/* global navigation pc
/*--------------------------------------------------------------------------------------------*/

#nav-glb-pc {
  overflow: hidden;
  margin-bottom: 16px;
  display: none;
  background-color: #ffffff;
  transition: all 0.5s ease;
}

#ul-glb {
  margin: 0 auto;
  width: 1000px;
  display: table;
  table-layout: fixed;
}

.li-glb {
  display: table-cell;
  height: 44px;
  font-size: 14px;
  font-weight: 500;
  border-right: 1px solid #bbb;
  text-align: center;
  letter-spacing: 1px;
  white-space: nowrap;
}

.li-glb-hm-act,
.li-glb-act {
  background-color: #bfaf8c;
  color: #fff;
  cursor: pointer;
}

.li-glb:first-child {
  border-left: 1px solid #bbb;
}

#li-glb-hm {
  width: 56px;
}

#img-glb-hm,
#object-glb-hm {
  margin-top: 12px;
  width: 20px;
}

#img-glb-hm:hover path {
  fill: red;
}

#spn-glb-hm {
  display: block;
  padding-top: 13px;
  font-size: 16px;
  color: #777;
  text-align: center;
}

.a-glb {
  display: block;
  height: 100%;
  color: #000;
  font-weight: 500;
  padding-top: 16px;
  text-align: center;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.a-glb:hover {
  color: #fff;
  background-color: #bfaf8c;
}

#a-glb-hm {
  padding-top: 0;
}

#a-glb-hm:hover #spn-glb-hm {
  color: #fff;
}

#li-glb-blg {
  background-color: #f1f1f1;
}

@media only screen and (min-width: 1025px) {
  #nav-glb-pc {
    display: block !important;
  }
}


/*--------------------------------------------------------------------------------------------*/
/* main メイン top-swiper にもある second main
/*--------------------------------------------------------------------------------------------*/

.sp-main {
  display:block;
}

.pc-main {
  display:none;
}

.sp-second-main {
  display:block;
}

.pc-second-main {
  display:none;
}

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

  .sp-main {
    margin-top:54px!important;
  }

  .sp-second-main {
    margin-top:54px!important;
  }
}

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

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

  .pc-main {
    /*margin-top:20px;*/
    display:block!important;
  }

  .sp-second-main {
    display:none!important;
  }

  .pc-second-main {
    display:block!important;
  }
}

/*--------------------------------------------------------------------------------------------*/
/* contents コンテンツ
/*--------------------------------------------------------------------------------------------*/

#contents {
  width:100%;
  /*background-color:#FAEBDA;*/
}

#div-top-content-sp {
  display:block;
}

#div-top-carousel-laser {
  display:none;
}

#div-top-content-pc {
  display:none;
}

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

  #contents {
  }

  #div-top-content-pc {
    display:none;
  }
}

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

  #div-top-content-sp {
    display:none;
  }
}

/*--------------------------------------------------------------------------------------------*/
/* breadcrumb
/*--------------------------------------------------------------------------------------------*/

#div-breadcrumb {
  overflow:hidden;
  width:100%;
  background-color:#F8F8F8;
  /*border-bottom:1px solid #DDDDDD;*/
  z-index:1;
  user-select: none;
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer */
  -webkit-user-select: none; /* Chrome, Safari, and Opera */
}

#ul-breadcrumb {
  margin-left:8px;
  width:100%;
  height:35px;
  display:flex;
  display:-webkit-flex;
}

#a-li-breadcrumb-home {
  position:relative;
  display:block;
  width:100%;
  height:100%;
  color: #555;
  padding-left:2px;
  padding-right:8px;
  font-size:16px;
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
}

.a-li-breadcrumb {
  position:relative;
  display:block;
  width:100%;
  height:100%;
  color:#000;
  padding-left:2px;
  padding-right:9px;
  font-size:13px;
  -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
}

.li-breadcrumb:first-child {
  padding-right: 0;
}

.li-breadcrumb {
  position:relative;
  color:#000;
  font-size:13px;
}

.li-breadcrumb + li {
  padding-left:20px;
  padding-top:11px;
}

.li-breadcrumb + li::before {
  position:absolute;
  content:"";
  margin:auto;
  top:15px;
  left:0;
  width:6px;
  height:6px;
  border-top:1px solid #000;
  border-right:1px solid #000;  
  transform:rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#img-breadcrumb-home {
  margin-top:8px;
  width:18px;
  height:18px;
}

.pc-breadcrumb {
  display:none;
}

.sp-breadcrumb {
  margin-top:46px;
}

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

  .pc-breadcrumb {
    display:none;
  }

  .sp-breadcrumb {
    margin-top:64px;
  }

  #ul-breadcrumb {
    margin-left:12px;
    height:44px;
  }

  #a-li-breadcrumb-home {
    font-size:16px;
  }

  .li-breadcrumb:first-child {
  }

  .li-breadcrumb {
    font-size:14px;
  }

  .li-breadcrumb + li {
    padding-left:20px;
    padding-top:14px;
  }
  
  .li-breadcrumb + li::before {
    top:18px;
  }

  #img-breadcrumb-home {
    margin-top:12px;
  }
}

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

  .sp-breadcrumb {
    display:none;
  }

  #ul-breadcrumb {
    margin:0 auto;
    width:1000px;
    height:44px;
  }

  .li-breadcrumb + li {
    padding-left:20px;
    padding-top:17px;
  }

  .li-breadcrumb + li::before {
    margin-right:50px;
    top:19px;
  }

  #img-breadcrumb-home {
    margin-top:12px;
  }
}

/*----------------------------------------------*/
/* breadcrumbs new
/*----------------------------------------------*/
#nav-breadcrumbs {
  overflow: hidden;
  width: 100%;
  border-top: 1px solid #CEB4AE;
  border-bottom: 1px solid #CEB4AE;
  background-color: #F2E2DD;
  border-top: 1px solid #aaa !important;
  border-bottom: 1px solid #aaa !important;
  background-color: #eee !important;
}

#ul-breadcrumbs {
  overflow: hidden;
  width: 100%;
  display: flex; /*-- liの横並び --*/
}

.li-breadcrumbs-item {
  position: relative;
  display: flex; /*-- liのaの縦中央揃え --*/
  align-items: center; /*-- liの縦中央揃え --*/
  justify-content: center; /*-- liの横中央揃え --*/
  height: 7.6vw;
  font-size: 3.5vw;
  color: #81635C;
  color: #666 !important;
}

.li-breadcrumbs-item:last-child {
  width: auto;
  padding: 0 4vw 0 6.5vw;
}

.a-breadcrumbs-item {
  position: relative;
  display: flex;
  align-items: center; /*-- liのaの縦中央揃え --*/
  justify-content: center; /*-- liのaの横中央揃え --*/
  width: 100%;
  height: 100%;
  padding: 0 4vw 0 6.5vw;
  color: #666 !important;
}

#li-breadcrumbs-item-home a {
  padding: 0 4vw 0 5vw;
}

.a-breadcrumbs-item img {
  width: 5vw;
  height: auto;
}

.a-breadcrumbs-item:before,
.a-breadcrumbs-item:after,
/*.li-breadcrumbs-item:last-child:before,*/
.li-breadcrumbs-item:last-child:after,
#li-breadcrumbs-item-home a:hover:before,
.a-breadcrumbs-item:hover:after {
  position: absolute;
  content: ''; 
  display: block;
  width: 3vw; 
  height: 7.6vw;
  top: 0;
  left: 100%;
  z-index: 2;
}

.a-breadcrumbs-item:before,
/*.li-breadcrumbs-item:last-child:before,*/
#li-breadcrumbs-item-home a:hover:before
 {
  clip-path: polygon(0% 0%, 10% 0%, 70% 50%, 10% 100%, 0% 100%, 60% 50%);
  background-color: #CEB4AE;/*#81635C;*/
  background-color: #aaa !important;
}

.a-breadcrumbs-item:after {
  clip-path: polygon(-1% 0%, 60% 50%, -1% 100%);
  background-color: #F2E2DD;
  background-color: #eee !important;
}

.li-breadcrumbs-item:last-child {
  background-color: #e6d0ce;
  background-color: #ddd !important;
}

.li-breadcrumbs-item:last-child:after {
  clip-path: polygon(-1% 0%, 60% 50%, -1% 100%);
  background-color: #e6d0ce;
  background-color: #ddd !important;
}

#li-breadcrumbs-item-home a:hover:after {
  clip-path: polygon(-1% 0%, 60% 50%, -1% 100%);
  background-color: #D0A09C;
  background-color: #ccc !important;
}

.a-breadcrumbs-item:hover {
  background-color: #D0A09C;
  background-color: #ccc !important;
}

.a-breadcrumbs-item:hover:after {
  clip-path: polygon(-1% 0%, 60% 50%, -1% 100%);
  background-color: #D0A09C;
  background-color: #ccc !important;
}

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

@media only screen and (min-width: 1025px){
  #ul-breadcrumbs {
    margin: 0 auto;
    max-width: 1025px;
  }

  .li-breadcrumbs-item {
    height: 34px;
    font-size: 15px;
  }

  .a-breadcrumbs-item {
    padding: 2px 30px 0 40px;
  }

  #li-breadcrumbs-item-home a {
    padding: 0 30px 0 40px;
  }

  .a-breadcrumbs-item img {
    width: 25px;
    height: auto;
  }

  .li-breadcrumbs-item:last-child {
    width: auto;
    padding: 2px 30px 0 40px;
  }

  .a-breadcrumbs-item:before,
  .a-breadcrumbs-item:after,
  .li-breadcrumbs-item:last-child:before,
  .li-breadcrumbs-item:last-child:after,
  #li-breadcrumbs-item-home a:hover:before,
  .a-breadcrumbs-item:hover:after {
    width: 15px; 
    height: 34px;
  }
}