@charset "utf-8";
/* --- ベースを10pxに --- */
html {font-size:62.5%}

/* --- 変数定義 --- */
:root {
  --deep-bk: #111;
  --def-bk: #212121;
  --def-txt-bk:#292929;
  --sub-txt-bk: #999;
  --all-light-bk: #ccc;
}
/* IE非対応のため最終は書き直し */

/* --- reset css ------------------------ */
*, *::before, *::after {
  margin:0; padding:0; border:0;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
}
img,iframe {vertical-align:bottom}
ul{ list-style: none;}
address{font-style: normal}
a { color:inherit; text-decoration:none}
h1,h2,h3{ font: inherit;}
input, button, textarea, select {
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family:inherit;
}
th,td{ font-weight:normal;}
/* ------------------------------------ */


body {
  font-size:1.4rem;
  font-family:'EB Garamond','Noto Serif JP', serif ;
  color: var(--def-txt-bk);
  background-color: #f9f9f9;
}

.sp-txt-br{ display: none;}

@media (max-width:767px) {
  .sp-txt-br{ display:inline-block}
  .sp-none{display: none}
}

/* --- common-font --- */
.justyfy    { text-align:justify; text-justify:inter-ideograph;}
.right      { text-align: right}
.cntr { text-align:center}
.a-btm-line { text-decoration: underline; -webkit-transition: all 0.4s; transition: all 0.4s;}
.a-btm-line:hover {opacity: 0.7;}
/* --- common-color --- */
.bg-wh   { background-color:#fff}


/* --------- header --------- */
header{
  z-index:100;
  width:100%;
  height:70px;
  position:fixed;
  top:0; left:0;
  padding-left: 5%;
  padding-right: 5%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
  background-color:var(--deep-bk);
}
.header-logo{
  width:188px;
}
nav {
  color:#fff;
  height: 100%;
}
nav ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
nav ul li {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
nav ul li:hover{
  background-color:#000;
  color:#aaa;
}
nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* aの中でpの上下左右センタリング */
  height: 100%;
  width: 128px;
}
nav ul li a p {
  font-size: 1.3rem;
  line-height: 1.1;
  padding-top: 5px;
  letter-spacing:0.15em;
}
nav ul li a p span{
  display:block;
  font-size:1.2rem;
  /* margin-left: -0.5em; */
  /* transform: scale(0.8); */
  letter-spacing:0.05em;
  color: var(--sub-txt-bk);
}
.overlay {
  display:block;
  background-color:rgba(255, 255, 255, 0.6);
  position:fixed;
  top:0; left:0;
  z-index:-1;
  width:0; height:0; opacity:0;
  -webkit-transition:opacity .7s;
  transition:opacity .7s
}
.overlay.open { display: block; width:100%; height:100%; opacity:1}

.menu-trigger {
  display:none;
  width:70px; height:70px;
  vertical-align:middle;
  cursor:pointer;
  position:fixed; top:0; right:0;
  background-color:var(--def-bk);
  -webkit-transition:all .5s;
  transition:all .5s;
}
.menu-trigger span {
  position:absolute;
  left:20px;
  width:34px; height:2px;
  border-radius:1px;
  background-color:#fff;
  -webkit-transition:all .5s;
  transition:all .5s;
}
.menu-trigger span:nth-of-type(1) { top:23px }
.menu-trigger.active span:nth-of-type(1) {
   -webkit-transform:translateX(2px) translateY(10px) rotate(-45deg);
   transform:translateX(2px) translateY(10px) rotate(-45deg)
}
.menu-trigger span:nth-of-type(2) { top:33px}
.menu-trigger.active span:nth-of-type(2) { opacity:0 }
.menu-trigger span:nth-of-type(3) { top:43px }
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform:translateX(2px) translateY(-9.5px) rotate(45deg);
  transform:translateX(2px) translateY(-9.5px) rotate(45deg)
}
@media (max-width:767px) {
    .header-logo {width:160px}
    nav {
      position:fixed; top:0; right:0;
      width: 220px;
      height: 100vh;
      padding-top:70px;
      margin-right:0;
      background-color:var(--def-bk);
      -webkit-transform:translateX(220px);
      transform:translateX(220px);
      -webkit-transition: all .6s;
      transition: all .6s;
    }
    nav ul{
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    nav ul li {
      border-bottom: solid 1px var(--deep-bk);
    }
    nav ul li a {
      width: 100%;
      height:100px;
    }
    nav ul li a p {
      font-size: 1.5rem;
      padding-top: 0;
      padding-left: 10px;
      letter-spacing:0.1em;
    }
    nav ul li a p span{
      margin-left: 0;
      text-align: center;
    }
    nav.open {
      -webkit-transform:translateX(0);
      transform:translateX(0);
    }
    .menu-trigger { display:block; }
}

/* --- topview ---- */
.topview-area {
  width:100vw;
  height:100vh;
  position:relative;
  overflow: hidden;
}
.topview-area video {
  position: absolute;top:0;left:0;
  min-width:100%;
  min-height:100%;
  z-index:1;
}
  /* --- topのアニメーション -webkit-animation: darkstart 10s;
  animation: darkstart 10s;
}
    @-webkit-keyframes darkstart {
      0% {-webkit-filter:brightness(5%);filter:brightness(5%);}
      50% {-webkit-filter:brightness(30%);filter:brightness(30%);}
      100% {-webkit-filter:brightness(100%);filter:brightness(100%);}
    }
    @keyframes darkstart {
      0% {-webkit-filter:brightness(5%);filter:brightness(5%);}
      50% {-webkit-filter:brightness(30%);filter:brightness(30%);}
      100% {-webkit-filter:brightness(100%);filter:brightness(100%);}
    }---- */

.on-topview-box{
  position: absolute;
  top:50%; left:50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width:95%;
  z-index:2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.on-topview-box>.logo {
  display: block;
  width:70px;
  margin-bottom:30px;
}
.top-copy{
  font-size:3.2rem;
  letter-spacing:0.2em;
  line-height: 1.6;
  color:#fff;
  text-align: center;
}
.top-copy>span{
  display: block;
  font-size: 0.4em;
  letter-spacing:0.1em;
  line-height: 2em;
  margin-top: 0.6em;
}
.top-arrow{
  position: absolute;
  bottom:100px; left:50%;
  color:#fff;
  font-weight: bold;
  margin-left: -10px;
  font-size: 3rem;
  margin-top: 30px;
  z-index: 99;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
}

    @-webkit-keyframes sdb {
      0% {-webkit-transform:translate(0,0);transform:translate(0,0);opacity:1;}
      100% {-webkit-transform:translate(0,30px);transform:translate(0,30px);opacity: 0.2;}
    }
    @keyframes sdb {
      0% {-webkit-transform:translate(0,0);transform:translate(0,0);opacity:1;}
      100% {-webkit-transform:translate(0,30px);transform:translate(0,30px);opacity: 0.2;}
    }
@media (max-width:767px) {
  .topview-area video {
    left:-40%;
    /* ---transform: translateX(50%);---- */
    transform: translateX(-35%) 
  }

  .top-copy {
    font-size:2.0rem;
    letter-spacing:0.2em;
    line-height: 1.8;
    text-align: left;
  }
}
@media (max-width: 1020px) and (min-width: 768px) { 
#css {width:98%;margin:0 1%;} 
.topview-area video {
left:-40%;
transform: translateX(-30%) 
}
}


/* --- common --- */
.def-title{
  font-size: 2.2rem;
  letter-spacing: 0.13em;
  line-height: 1;
  text-align: center;
  margin-bottom: 2em;
  color: #111;
}
.def-txt{
    line-height:2.5;
    letter-spacing: 0.15em;
  }
.def-txt+.def-txt{
  margin-top: 1.5em;
}
.inner-title > span{
  display: block;
  font-size:0.6em;
  letter-spacing:0.08em;
  margin-bottom: 0.7em;
}
.inner-title{
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  margin-bottom: .8em;
  color:var(--deep-bk);
}
.inner-txt{
  font-size:1.25rem;
  line-height:1.9;
  letter-spacing:0.1em;
}
.inner-txt+.btn-def{
  margin-top:1.5em;
}

.flex-wrap{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
}
.sec-line{
  width: 90%;
  max-width:1280px;
  margin: 0 auto;
  border-top: solid 1px var(--all-light-bk);
}

.sec-area-kyoto{
  width: 90%;
  max-width:1280px;
  padding-top: 120px;
  margin:0 auto;
}

.sec-area{
    width: 90%;
    max-width:1280px;
    padding:120px 0;
    margin:0 auto;
}


.cont-box-70{
  width:70%;
  margin:0 auto;
}
.cont-box{
  width:80%;
  margin:0 auto;
}

.cont-box-title{
  font-size:2.2rem;
  letter-spacing:0.1em;
  line-height: 1;
  text-align:center;
  margin-bottom:70px;
  margin-top: 80px;
}


.cont-box-title>span{
  display:block;
  font-size:0.5em;
  letter-spacing: 0.05em;
  margin-top:0.4em;
  opacity: 0.75;
}

.btn-def{
  display: block;
  width: 260px;
  padding: 1.3em 0 1.3em 0.1em;
  font-size: 1.3rem;
  line-height:1;
  letter-spacing:0.1em;
  text-align:center;
  border-radius:2px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  color:#fff;
  background-color: var(--def-txt-bk);
}
.btn-posi-control{
   margin: 60px auto 0;
}
.btn-posi-center-mt30{
   margin: 30px auto 0;
}
.btn-posi-center{
  margin: 0 auto;
}
.btn-def:hover{
  background-color:#000;
  color:#aaa;
}
.btn-wrap{
  width: 100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  margin: auto 0;
}

/* .btn-arrow-r{
  position: relative;
}
.btn-arrow-r::after{
  content: "●";
  position: absolute;
  top:50%; right:2em;
  transform:translateY(-50%);
  animation: arrow-X 1.8s infinite;
}
@keyframes arrow-X {
  0% {transform:translate(0,-50%);opacity:1;}
  70% {transform:translate(0,-50%);opacity: 0.3;}
  100% {transform:translate(0,-50%);opacity:1;}
} */
@media (max-width:767px) {
  .def-title{
    line-height: 1.7;
    margin-bottom: 1em;
    text-align: left;
  }
  .def-txt,.inner-txt{
      font-size: 1.5rem;
      line-height:2;
      letter-spacing: 0.1em;
  }
  .sec-area{
    padding:80px 0;
  }
  .sec-area-kyoto{
    padding-top: 80px;
  }
  .cont-box,
  .cont-box-70{
    width:100%;
  }
  .btn-def{
    width: 100%;
    font-size: 1.4rem;
  }
  .btn-wrap{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}


/* --- top-Service --- */
.top-service-box {
  position:relative;
  margin-bottom:60px;
}
.top-service-box:last-child{
  margin-bottom: 0;
}
.top-service-img{
  display: block;
  width: 100%;
  height:480px;
  -o-object-fit: cover;
  object-fit: cover;
}
.top-service-on-box{
  position:absolute;
  bottom:5%; left:0;
  width:440px;
  padding:2.5em;
  background-color:#f9f9f9;
}
@media (max-width:767px) {
  .top-service-img { height:240px}
  .top-service-on-box{
    position:static;
    width:100%;
    padding:1.5em 0 3em;
  }
}


/* --- NEWS --- */
.news-box {
  width: 100%;
  margin: 0 auto;
}
.news-item{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.5em 1em;
  border-bottom: solid 1px rgba(0,0,0,0.05);
}
.news-item .date {
  color:var(--sub-txt-bk);
  letter-spacing: 0.1em;
  -ms-flex-preferred-size: 15%;
  flex-basis: 15%;
}
.news-item .txt{
  letter-spacing:0.2em;
  line-height: 1.7;
  -ms-flex-preferred-size: 85%;
  flex-basis: 85%;
}
.news-item .txt span{
  letter-spacing:0.1em;
  line-height: 1.7;
  font-size: 0.85em;
  opacity: .6;
}
.news-box+.btn-def {
  margin-top:40px;
}
@media (max-width:767px) {
  .news-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .news-item .date {
    font-size: 0.9em;
    margin-bottom: 0.6em;
  }
}



/* -- pages-common ----------------------- */
.pages-title-area{
  margin-top: 70px;  /* header分下げる */
  padding: 24px 0 26px 5%;
  background-color:#f2f2f2;
}
.pages-title{
  font-size:1.8rem;
  letter-spacing:0.1em;
  line-height:1;
  -webkit-animation: left-in  1.3s ease-in-out;
  animation: left-in  1.3s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.pages-title span{
  font-size: 0.5em;
  letter-spacing:0.08em;
  margin-left: 1.3em;
}
@-webkit-keyframes left-in {
    0% { opacity: 0; -webkit-transform: translateX(-16px); transform: translateX(-16px)}
    100% {opacity: 1; -webkit-transform: translateX(0); transform: translateX(0);}
  }
@keyframes left-in {
    0% { opacity: 0; -webkit-transform: translateX(-16px); transform: translateX(-16px)}
    100% {opacity: 1; -webkit-transform: translateX(0); transform: translateX(0);}
  }
@media (max-width:767px) {
  .pages-title span{
    display: block;
    margin-left:0;
    padding-left:0.1em;
    margin-top: 0.8em;
  }
}


/* --- pages-SERVICE --- */
.pages-serv-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}
.pages-serv-box:last-child{
  margin-bottom: 0;
}
.pages-serv-txt-box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width:40%;
  padding:0 2.5em;
}
.pages-serv-img-box{
  width: 60%;
  height:300px;
  overflow: hidden;
  position: relative;
}
.pages-serv-img-box img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
@media (max-width:767px) {
  .pages-serv-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom:60px;
  }
  .pages-serv-txt-box{
    width:100%;
    padding:1.5em 0 3em;
  }
  .pages-serv-img-box{
    width: 100%;
    height: 200px;
  }
  .pages-serv-img-box img{
    left: 40%;
    width: 140%;
  }
}


.card-2{
  width:48.5%;
  margin-bottom: 3%;
  position: relative;
}
.card-4{
  width: 24%;
  margin-bottom: 2%;
}

.card-stl_round{
  border-radius: 3px;
  overflow: hidden;
}
.card-stl_shadow{
  background-color: #fff;
  border-bottom: solid 1px rgba(0,0,0,0.05);
  border-right: solid 1px rgba(0,0,0,0.05);
}

.card_img{
  display: block;
  width:100%;
  height:auto;
}
body#work .card_img{
  width: 100%;
  height: auto;
  padding-top: 58.38%;
  background-size: cover;
  background-position: top center;
}
.card_txt-box,.card_txt-box-long{
  width:100%;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #222;
  /* background-color: #fff; */
}
.card_txt-box{
  padding:1.2em 1.5em 1.5em;
}
.card_txt-box-long{
  padding:1.6em 1.5em 2em;
}
.card_txt-box_title{
  font-size:1.6rem;
}
.title-stl_btm-line{
  padding-bottom: 0.8em;
  border-bottom:solid 1px rgba(120,120,120,0.1);
}
.card_txt-box_txt{
  font-size:1.25rem;
  line-height:1.8;
  margin-top: 0.8em;
  letter-spacing: 0.1em;

}
.card_txt-box_subtxt{
  font-size: 1rem;
  margin-top: 0.6em;
}
.card_txt-box_line-subtxt{
  font-size: 1.1rem;
  padding-top: 0.7em;
  margin-top: 0.7em;
  border-top: solid 1px rgba(120,120,120,0.1);
}

/* ---------------MAIRUTO-------------- */

.mairuto-area .logo-area{
  padding: 240px;
  margin-bottom: 60px;
  border-radius:6px ;
  text-align: center;
  background-image: url("../img/mairuto-pv-thumb.jpg");
  background-size: cover;
}

.mairuto-area .logo-area img{
  width: 65%;
}

.mairuto-area .copy{
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
.mairuto-area .def-txt{
  width:80%;
  line-height: 2;
  margin-bottom: 2em;
}

.salon-area{
  margin-top: 80px;
  padding-top: 40px;
  border-top: solid 1px rgba(0,0,0,0.075);
}

.salon-area .info-box{
  margin-bottom: 40px;
}

.salon-img.flex-wrap img{
  width: calc(50% - 8px);
}







@media (max-width:767px){
  .card-2,
  .card-4{
    width: 100%;
    margin-bottom:36px;
  }
  .card_txt-box{
    padding:1.3em 1em;
  }
  .card_txt-box_title{
    font-size:1.8rem;
    letter-spacing: 0.1em;
  }
  .card_txt-box_txt{
    font-size:1.4rem;
  }
  .card_txt-box_subtxt{
    font-size: 1.2rem;
  }
  .card_txt-box_line-subtxt{
    font-size: 1.2rem;
  }

  .mairuto-area .logo-area{
    padding: 200px 0;
  }  
  .mairuto-area .def-txt{
    width:100%;
  }

}




/* --- under works --- */

.paper-t,.paper-y,
.paper-ll-y,.mini-y{
  background-color: rgba(245,245,245,0.9);
}
.paper-t { padding:4em 3em;}
.paper-y { padding:4em 6em;}
.paper-ll-y { padding:4em 2em }
.mini-y {padding: 4em 10em;}

.row-1,.row-2{
  position: relative;
  margin-bottom: 2%;
}
.row-1{ width:100%;}
.row-2{ width:49%;}

body#work .row-1{
  height: auto;
  padding-top: 56.25%;
  background-color: rgba(245,245,245,0.9);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
body#work .row-1.full{
  background-size: cover;
}
.works-tag{
  position: absolute;
  top: 0; left:0;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.08em;
  padding: 0.75em 1.5em;
  background-color: #fff;
}
.works-group+.works-group { margin-top:10%;}

.row-1 img,.row-2 img {
  display: block;
  max-width:100%;
}
.single-img {
  width:auto;
  height:500px;
  margin: 0 auto;
}

.link-box{ display:block;}
.a-hover{ opacity: 1; -webkit-transition: all 0.4s; transition: all 0.4s;}
.a-hover:hover { opacity: 0.6;}
.paper-shadow { -webkit-box-shadow: 1px 2px 3px #ccc; box-shadow: 1px 2px 3px #ccc;}

.works-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width:100%;
}
.works-info dt,
.works-info dd {
  letter-spacing: 0.1em;
  line-height: 1.7;
  padding:1em 0;
  margin: 0;
}
.works-info dt {
  width: 20%;
  color:var(--deep-bk);
}
.works-info dd {
  width: 80%;
}
@media (max-width:767px) {
  .paper-t,.paper-y,
  .paper-ll-y,.mini-y {
    padding: 4em 2em;
  }
  .row-1,.row-2{
    width:100%;
    margin-bottom:5%;
  }
  .single-img {
    width:100%;
    height:auto;
  }
  .works-info dt,
  .works-info dd { width: 100%;}
  .works-info dt {
    padding:0.5em 0 0.5em 1em;
    background-color: #eee;
  }
  .works-info dd { padding:1em 2em;}
}

.cat_list{
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 70px;
  flex-wrap: wrap;
}
.cat_list li{
  margin: 0 15px 10px;
  position: relative;
  line-height: 1;
}
.cat_list li.current a{
  color: #292929;
}
.cat_list li a{
  transition: all .4s;
  font-size: 1.2em;
  color: #999;
  position: relative;
}
.cat_list li a::after{
  position: absolute;
  content: '/';
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}
.cat_list li:last-child a::after{
  display: none;
}
.cat_list li a:hover{
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
body#work.work_index .sec-area{
  padding-top: 0;
}
body#work .card_txt-box_title{
  line-height: 1.2;
}
.cat_list{
  margin-bottom: 40px;
}
.cat_list li{
  margin-bottom: 5px;
}
.cat_list li a{
  font-size: 1em;
}
}
/* ---------------------------------------------
pages-COMPANY 
------------------------------------------------ */

/* @ 事業拠点 --------------- */
.location_ttl{
  font-size: 2rem;
  padding-bottom: 2rem;
  border-bottom: solid 1px #ccc;
  margin-bottom: 60px;
}
.location_ttl span{
  font-size:0.5em;
  margin-left:1em;
  opacity: .65;
}
.location_ttl,
.location_ttl span{
  line-height: 1;
  letter-spacing: 0.08em;
}

.location_img-box{
  width:100%;
  margin-bottom: 60px;
  position: relative;
}
.location_img-box:before{
  position: absolute;
    content: "▶︎▶︎▶︎";
    top:1em;
    right:1em;
    z-index: 5;
  font-size: 1rem;
  -webkit-transform: scaleY(75%);
  transform: scaleY(75%);
  color: #eee;
}
.location_img-box .scroll-box{
  overflow-x: scroll;
  height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0.95;
}
.location_img-box img{
  display: block;
}
.location_img-box img:not(:first-child){
  margin-left: 6px;
}

.location_info_txt-box{
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  letter-spacing: 0.1em;
}
.location_info_txt-box dt{
  font-size: 0.85em;
  margin-bottom: .25em;
}
.location_info_txt-box dd+dt{
  margin-top: 2rem;
}
.location_info_txt-box .sub-list{
  font-size: 0.85em;
  opacity: .65;
  margin-top: 1rem;
}
.location_info_txt-box .sub-list li+li{
  margin-top: .5em;
}
.location_info_map-box {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 40px;
  -webkit-filter:grayscale(25%);
  filter:grayscale(25%);
  height: 320px;
}
@media (max-width:767px) {
  .location_info_txt-box,
  .location_info_map-box{
    -ms-flex-preferred-size:100%;
    flex-basis:100%;
  }
  .location_info_map-box{
    margin-top: 60px;
    margin-left: 0;
  }
}



/* @ 会社概要 --------------- */

.data-list {
  width:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.data-list dt,
.data-list dd{
  margin: 0; /* ddに謎のmargin-inline-startあり */
  letter-spacing: 0.1em;
  padding:1.5em 2em;
  border-bottom: solid 1px #ccc;
}
.data-list dt {width:18%;}
.data-list dt.dt-wide {width:25%;}
.data-list dd {width:82%;}
.data-list dd.dd-narrow {width:75%;}

@media (max-width:767px) {
  .data-list dt,
  .data-list dd,
  .data-list dt.dt-wide,
  .data-list dd.dd-narrow {
    width:100%;
  }
  .data-list dt {
    border:0;
    padding:1.5em 1em 0;
  }
  .data-list dd {
    padding:0.3em 1em 1.5em;
  }
}

.company-log-list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  width: 100%;
}
.company-log-list_date{
  width: 160px;
  padding: 20px 0 20px 20px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #ccc;
}
.company-log-list_txt {
  width:calc(100% - 160px);
  padding: 20px;
  border-bottom: 1px solid #ccc;
}
.tag_enkaku::after{
  content: "沿革";
  background-color: #eee;
}
.tag_jisseki::after{
  content: "実績";
  background-color: #efede0;
}
.tag_enkaku::after,
.tag_jisseki::after{
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1em;
  padding:0.5em 1.5em;
  border-radius: 20px;
  margin-left: 20px;
  letter-spacing: 0;
}


@media (max-width:767px) {
  .company-log-list{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
  .company-log-list_date{
    width: 100%;
    padding: 20px 0 0 20px;
    border-bottom: none;
  }
  .company-log-list_txt {
    width: 100%;
    padding: 8px 20px 24px 20px;
  }
  .tag_enkaku::after,
  .tag_jisseki::after{
  font-size: 1.2rem;
  margin-left: 16px;
}

}
/* ---------------------------------------------
pages-COMPANY  END
------------------------------------------------ */



/* --- service02 --- */
.service-banner-big{
  width: 80%;
  height: 360px;
  overflow: hidden;
  margin: 0 auto;
}
.service-banner-big img{
  width: 100%;
  height:auto;
}
.service-banner-big>a{
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-filter: brightness(60%);
  filter: brightness(60%);
}
.service-banner-big>a:hover{
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}

/* --- contact --- */
.contact-box{
  width:80%;
  margin: 0 auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact-item{
  width: 100%;
  margin-bottom:4%;
}

.contact-item.half{
  width:48.5%;
}

.contact-item-label{
  display:inline-block;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}
.label-required{
  display: inline-block;
  font-size: 1.2rem;
  line-height:1;
  padding:0.4em 0.8em;
  border-radius: 2px;
  color: #fff;
  background-color: var(--def-txt-bk);
  margin-right: 0.8rem;
}
.contact-box input,
.contact-box textarea{
  /* display:block; */
  width: 100%;
  padding:0.8em 1em;
  border: 1px solid #ccc;
  border-radius: 2px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #efefef;
}
.contact-item textarea{
  resize: none;
  height: 180px;
}
/* input,select{ outline:none; transition: all 0.4s; } */
/* input:focus,select:focus {box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3)} */
.error{
  display: block;
  color: red;
  font-size: 1.3rem;
  margin-top: 0.4em;
}


@media (max-width:767px) {
  .contact-box{
    font-size: 1.6rem;
    width:100%;
  }
  .contact-item.half {
    width: 100%;
  }
  .contact-item input,
  .contact-item textarea{
    width: 100%;
  }
}





.recruit-box{
  width: 100%;
}
.recruit-box time{
  display: block;
  font-size: 0.9em;
  letter-spacing: .1em;
  color: var(--sub-txt-bk);
  margin-bottom: .75em;
}
.recruit-box h2{
  font-size: 1.25em;
  padding-bottom:1em ;
  margin-bottom: 2em;
  border-bottom: 1px solid var(--all-light-bk);
}

.recruit-box .ttl{
  font-size: 1.1em;
  letter-spacing: .1em;
  margin-bottom: 0.75em;
}
.recruit-box dl .ttl:not(:first-child){
  margin-top: 3em;
}
.recruit-box .txt,
.recruit-box .sub-txt{
  line-height: 1.8em;
  padding-left: 1em;
  letter-spacing: .08em;
}
.recruit-box .sub-txt{
  font-size: 0.9em;
  margin-top: 0.3em;
}
.recruit-box .sub-txt a{
  text-decoration: underline;
}
.recruit-box .txt ul li{
  line-height: 1.5em;
  text-indent: -1em;
  padding-left: 1em;
}
.recruit-box .txt ul li::before{
  content: "−";
  padding-right: 0.5em;
}
.recruit-box .txt ul li:not(:first-child){
  margin-top: .75em;
}








/* --- privacy_policy --- */
.privacy-box{
  width:100%;
  letter-spacing: 0.05em;
  list-style-position:inside;
}
.privacy-box>li{
  margin-bottom: 3em;
  text-align:justify;
  text-justify:inter-ideograph;
  line-height: 1.75;
 }
.privacy-title{
  display: inline-block;
  margin-bottom: 0.6em;
}
.privacy-sub-list li{
  font-size: 0.9em;
  padding:1em 1em 0;
}
.privacy-sub-list li::before{
  content: "・";
  margin-left: -1.1em;
}
.privacy-contact{
  font-size: 0.9em;
  margin-top:2em;
  line-height: 1.7;
}
.privacy-date{
  text-align: right;
  letter-spacing: 0.05em;
  margin-top: 2em;
}


/* ----- footer ----- */
footer{
  background-color: var(--def-bk);
  color: #fff;
}
footer a { -webkit-transition: all 0.4s; transition: all 0.4s }
footer a:hover { color:var(--sub-txt-bk) }
.ex{border-bottom: solid 1px rgba(255,0,0,0.3)}
.sp-contact-box{
  display:none;
  width:100%;
  padding:50px 0;
  border-bottom: solid 1px var(--deep-bk);
  text-align:center;
}
.sp-contact-btn{
    padding:1em 5em 1em 5.5em;
    text-align:center;
    font-size: 1.6rem;
    border-radius: 3px;
    /* background-color:#fff; */
    line-height:1;
    border: solid 1px rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
    color:#fff;
}
.footer-info-area {
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:80px 5%;
  letter-spacing: 0.08em;
}
.footer-l-box,.footer-r-box{
  padding-top:60px;
  position:relative;
}
.footer-l-box {-ms-flex-preferred-size:45%;flex-basis:45%}
.footer-r-box {-ms-flex-preferred-size:45%;flex-basis:45%}
.footer-l-box::before,
.footer-r-box::before{
  position: absolute;
  top:0; left:0;
  font-size: 1.3rem;
}
.footer-l-box::before{ content: "Company" ;}
.footer-r-box::before{ content: "Menu"}
.footer-logo-box{
  margin-bottom:32px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex; -webkit-box-align:center; -ms-flex-align:center; align-items:center;
}
.footer-logo-box>img{
  height:84px;
}
.footer-copy{
  font-size: 1.8rem;
  letter-spacing:0.2em;
  line-height:1.5;
  margin-left:1.5em;
}
.footer-copy>span{
  display: block;
  font-size: 0.5em;
  letter-spacing:0.08em;
  line-height: 2em;
  margin-top: 0.5em;
  color:#999
}
footer address{
  padding-top:32px;
  border-top: solid 1px #999;
}
footer address>p{
  font-size:2rem;
  margin-bottom: 0.8em;
}
footer address>p>a>span{
  font-size:0.7em;
  margin-left:1em;
  color:#999;
}
footer address ul li{
  font-size: 1.3rem;
  line-height: 1.7;
}
.sp-add-menu{
  display: none;
}
.footer-menu-box{
    margin-bottom: 60px;
}
.footer-menu p{
  font-size: 1.6rem;
  margin-bottom:0.5em;
}
.footer-menu ul li{
    font-size: 1.2rem;
    line-height: 2.3;
    text-indent:1.5em;
    position: relative;
}
.footer-menu ul li::before{
    position:absolute;
    top:0; left:-1.5em;
    content: "−";
}
.footer-contact-btn{
  padding:1em 3em 1em 3.5em;
  text-align:center;
  border: solid 1px #fff;
  border-radius:2px;
  background-color:#fff;
  line-height: 1;
  letter-spacing: 0.1em;
  color:var(--def-txt-bk);
}
.footer-contact-btn:hover{
  color:#fff;
  background-color:transparent;
}
.footer-copyright {
  display: block;
  padding:1.5em 0 2em;
  background-color:var(--deep-bk);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-align:center;
}
@media (max-width:767px) {
  .sp-contact-box {display:block}
  .footer-info-area {padding:50px 5%}
  .footer-r-box,.footer-l-box::before {display:none}
  .footer-l-box {-ms-flex-preferred-size:100%;flex-basis:100%}
  .footer-l-box,.footer-r-box{ padding-top:0}
  .footer-logo-box {-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
  .footer-copy {
    margin-left:0;
    margin-top:0.8em;
    text-align: center;
  }
  .sp-add-menu{
    display:inline-block;
    font-size: 1.2rem;
    border-bottom: solid 1px #999;
    margin-top:1em;
  }
}

/* ふわっと読み込みanimation */
.sec-area { -webkit-animation: boyatto 2.5s ease; animation: boyatto 2.5s ease; }
@-webkit-keyframes boyatto {
    0% { opacity: 0.1}
    100% { opacity: 1;}
}
.sec-area-kyoto{ -webkit-animation: boyatto 2.5s ease; animation: boyatto 2.5s ease; }
@-webkit-keyframes boyatto {
    0% { opacity: 0.1}
    100% { opacity: 1;}
}
@keyframes boyatto {
    0% { opacity: 0.1}
    100% { opacity: 1;}
}

/*bnr_area*/
.bnr_area01{
  padding-top: 120px;
  margin: 0 auto;
}
.bnr_list01{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bnr_list01 li{
  width: calc((100% - 25px) / 2);
}
.bnr_img{
  position: relative;
}
.bnr_img::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .3);
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
}
.bnr_img:hover::after{
  opacity: 1;
}
.bnr_img img{
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media (max-width:767px) {
.bnr_area01{
  padding-top: 60px;
}
.bnr_list01 li{
  width: 100%;
}
.bnr_list01 li:first-child{
  margin-bottom: 30px;
}
}