@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond&family=Noto+Sans+JP:wght@400;700&display=swap");
.works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px 50px;
}

@media (max-width: 480px) {
  .works-list {
    display: block;
    margin: 0 0 30px;
  }
}

.works-list li {
  width: calc(100% / 3);
  padding: 0 15px;
}

@media (max-width: 480px) {
  .works-list li {
    width: 100%;
    margin-bottom: 20px;
  }
}

.works-list li a {
  display: block;
  background: #fff;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: #2d3e50;
  height: 100%;
}

@media (max-width: 480px) {
  .works-list li a {
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.works-list li a .thumbnail {
  overflow: hidden;
  height: 200px;
}

@media (max-width: 480px) {
  .works-list li a .thumbnail {
    width: 45%;
    height: auto;
  }
}

.works-list li a .thumbnail img {
  -webkit-transition: 1s all;
  transition: 1s all;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 480px) {
  .works-list li a .thumbnail img {
    height: 100px;
    width: 100%;
    objrct-fit: cover;
  }
}

.works-list li a:hover .thumbnail img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  -webkit-transition: 1s all;
  transition: 1s all;
}

@media (max-width: 480px) {
  .works-list li a:hover .thumbnail img {
    -webkit-transform: unset;
            transform: unset;
  }
}

.works-list li a:hover .inner .ttl {
  text-decoration: underline;
  color: #ff7e02;
}

@media (max-width: 480px) {
  .works-list li a:hover .inner .ttl {
    text-decoration: none;
    color: #2d3e50;
  }
}

.works-list li a:hover .inner .meta .more {
  color: #ff7e02;
  background: url(../img/arrow04.png) no-repeat;
  background-size: 20px;
  background-position: right center;
  white-space: pre;
}

@media (max-width: 480px) {
  .works-list li a:hover .inner .meta .more {
    color: #737373;
    background: url(../img/arrow02.png) no-repeat;
    background-size: 20px;
    background-position: right center;
  }
}

.works-list li a .inner {
  padding: 15px;
}

@media (max-width: 480px) {
  .works-list li a .inner {
    padding: 0 0 0 15px;
    width: 55%;
  }
}

.works-list li a .inner .ttl {
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4em;
  -webkit-transition: 1s all;
  transition: 1s all;
}

.works-list li a .inner .category {
  background: #eef0f7;
  border: solid 1px #d2d2d2;
  height: 25px;
  line-height: 23px;
  min-width: 95px;
  text-align: center;
  padding: 0 10px;
  font-size: .8em;
  display: inline-block;
  color: #737373;
}

.works-list li a .inner .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: .8em;
  line-height: 1.4em;
  margin-top: 15px;
}

.works-list li a .inner .meta .date {
  color: #969696;
}

.works-list li a .inner .meta .more {
  color: #737373;
  display: inline-block;
  background: url(../img/arrow02.png) no-repeat;
  background-size: 20px;
  background-position: right center;
  padding-right: 25px;
  border-bottom: solid 1px;
  -webkit-transition: 1s all;
  transition: 1s all;
  white-space: pre;
}

.service-block {
  position: relative;
  margin-bottom: 70px;
}

@media (max-width: 480px) {
  .service-block {
    margin-bottom: 0;
  }
}

.service-block .img {
  width: 800px;
  max-width: 95%;
}

@media (max-width: 480px) {
  .service-block .img {
    margin-left: -10px;
  }
}

.service-block .inner {
  background: #fff;
  width: 480px;
  padding: 40px 50px;
  position: absolute;
  right: -50px;
  bottom: -40px;
}

@media (max-width: 480px) {
  .service-block .inner {
    position: relative;
    width: 90%;
    padding: 30px 20px;
    right: 0;
    margin-left: 10%;
    margin-bottom: -50px;
    top: -50px;
    bottom: unset;
  }
}

.section-bg2 .service-block .img {
  margin-left: calc(100% - 800px);
}

@media (max-width: 480px) {
  .section-bg2 .service-block .img {
    margin-left: 5%;
    position: relative;
    right: -10px;
  }
}

.section-bg2 .service-block .inner {
  background: #f8f8f8;
  right: unset;
  left: -50px;
}

@media (max-width: 480px) {
  .section-bg2 .service-block .inner {
    left: 0;
    margin-left: 0;
  }
}

.list-container {
  -webkit-box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-left: solid 3px #ff7e02;
  padding: 20px 50px 25px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

@media (max-width: 480px) {
  .list-container {
    width: 100%;
    padding: 20px;
  }
}

.list-container .head {
  font-weight: bold;
  border-bottom: solid 1px;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.list-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list-container ul li {
  width: calc(100% / 3);
}

@media (max-width: 480px) {
  .list-container ul li {
    width: calc(100% / 2);
  }
}

.list-container ul li:before {
  content: '●';
  color: #ff7e02;
  font-size: .8em;
  margin-right: 5px;
}

.recruit-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  top: -100px;
  margin-bottom: -100px;
}

@media (max-width: 480px) {
  .recruit-block {
    display: block;
    top: -50px;
    margin-bottom: -50px;
  }
}

.recruit-block > div {
  width: 350px;
  max-width: 33%;
  padding: 0 20px;
}

@media (max-width: 480px) {
  .recruit-block > div {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
  }
}

.recruit-block > div .inner {
  background: #fff;
  -webkit-box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 50px 20px 20px;
  height: 100%;
}

@media (max-width: 480px) {
  .recruit-block > div .inner {
    padding: 20px;
    margin-bottom: 20px;
  }
}

.recruit-block > div .inner:after {
  content: '';
  display: block;
  background: #ff7e02;
  width: 250px;
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}

@media (max-width: 480px) {
  .recruit-block > div .inner:after {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .recruit-block > div .inner .sp-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 480px) {
  .recruit-block > div .inner .sp-header .img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 70px;
  }
}

@media (max-width: 480px) {
  .recruit-block > div .inner .sp-header .img img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .recruit-block > div .inner .sp-header .head {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc(100% - 70px);
    padding-left: 20px;
    text-align: left;
    line-height: 1.6;
  }
}

.recruit-block > div .inner .head {
  text-align: center;
  font-weight: bold;
  font-size: 1.4em;
}

.recruit-block > div .inner .head .marker {
  color: #ff7e02;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fffbae));
  background: linear-gradient(transparent 60%, #fffbae 60%);
}

.recruit-block > div .inner .img {
  text-align: center;
  margin: 5px 0 20px;
}

.recruit-block > div .inner .img img {
  height: 100px;
  width: auto;
}

.recruit-about {
  width: calc(100% - 40px);
  margin: 0 auto 40px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.1);
  padding: 40px 50px;
}

@media (max-width: 480px) {
  .recruit-about {
    width: 100%;
    padding: 20px;
  }
}

.recruit-about table {
  width: 100%;
}

.recruit-about table th {
  width: 260px;
  border-bottom: solid 1px #ff7e02;
  padding: 1em 0;
  vertical-align: top;
}

@media (max-width: 480px) {
  .recruit-about table th {
    display: block;
    width: 100%;
    border-bottom: solid 1px #c8c8c8;
    padding: .5em 0;
    position: relative;
  }
}

@media (max-width: 480px) {
  .recruit-about table th:after {
    content: '';
    display: block;
    background: #ff7e02;
    height: 1px;
    width: 25%;
    position: absolute;
    left: 0;
    bottom: -1px;
  }
}

.recruit-about table td {
  border-bottom: solid 1px #c8c8c8;
  padding: 1em 0;
}

@media (max-width: 480px) {
  .recruit-about table td {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: .5em 0 1em;
  }
}

.recruit-about table td ul li:before {
  content: '●';
  color: #ff7e02;
  font-size: .8em;
  margin-right: 5px;
}

@media (max-width: 480px) {
  #contents2 .section.section-bg1 .section_inner {
    padding: 0 0 20px;
  }
}

#contents .contact-info {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
}

@media (max-width: 480px) {
  #contents .contact-info {
    width: calc(100% - 20px);
    padding: 10px;
  }
}

#contents .contact-info .section_title {
  margin-bottom: -20px;
}

@media (max-width: 480px) {
  #contents .contact-info .section_title {
    margin-bottom: 0;
  }
}

#contents .contact-info .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#contents .contact-info .time .head {
  background: #eef0f7;
  border: solid 1px #d2d2d2;
  height: 25px;
  line-height: 23px;
  min-width: 95px;
  text-align: center;
  padding: 0 10px;
  font-size: .8em;
  display: inline-block;
  color: #737373;
}

#contents .contact-info .time .inner {
  font-size: .9em;
  text-align: left;
  padding-left: 10px;
}

.news-list {
  margin-bottom: 50px;
}

.news-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2d3e50;
  text-decoration: none;
  padding: 30px 0;
  border-bottom: solid 1px #737373;
  background: url(../img/arrow02.png) no-repeat;
  background-size: 40px;
  background-position: right 20px center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 480px) {
  .news-list li a {
    display: block;
    background-size: 25px;
    background-position: right center;
    padding: 15px 0;
  }
}

.news-list li a .ttl {
  color: #2d3e50;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 480px) {
  .news-list li a .ttl {
    padding-right: 35px;
  }
}

.news-list li a:hover {
  border-color: #ff7e02;
  background-position: right center;
}

@media (max-width: 480px) {
  .news-list li a:hover {
    border-color: #737373;
  }
}

.news-list li a:hover .ttl {
  color: #ff7e02;
}

@media (max-width: 480px) {
  .news-list li a:hover .ttl {
    color: #2d3e50;
  }
}

.news-list li .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}

@media (max-width: 480px) {
  .news-list li .meta {
    margin-bottom: 5px;
  }
}

.news-list li .meta .date {
  font-weight: bold;
  font-size: .9em;
  margin-right: 20px;
  color: #6f728a;
}

.news-list li .meta .category {
  color: #737373;
  font-size: .7em;
  background: #eef0f7;
  border: solid 1px #d2d2d2;
  line-height: 20px;
  height: 20px;
  min-width: 90px;
  text-align: center;
}

.article-header {
  margin-bottom: 40px;
}

.article-header .ttl {
  font-weight: bold;
  font-size: 1.8em;
  line-height: 1.5;
  border-bottom: solid 2px #ff7e02;
  padding-bottom: .5em;
  margin-bottom: .5em;
}

@media (max-width: 480px) {
  .article-header .ttl {
    font-size: 1.5em;
  }
}

.article-header .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: .9em;
}

.article-header .meta .date {
  color: #6f728a;
}

.article-header .meta .category a {
  color: #737373;
  font-size: .7em;
  background: #eef0f7;
  border: solid 1px #d2d2d2;
  line-height: 20px;
  height: 20px;
  min-width: 90px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

article .slider-for {
  margin-bottom: 10px;
  padding: 0 5px;
}

@media (max-width: 480px) {
  article .slider-for {
    padding: 0 2.5px;
    margin-bottom: 5px;
  }
}

article .slider-nav {
  margin-bottom: 50px;
}

@media (max-width: 480px) {
  article .slider-nav {
    margin-bottom: 30px;
  }
}

article .slider-nav .slick-track > div {
  padding: 0 5px;
}

@media (max-width: 480px) {
  article .slider-nav .slick-track > div {
    padding: 0 2.5px;
  }
}

article .slider-nav .slick-track .slick-slide {
  opacity: .5;
}

article .slider-nav .slick-track .slick-slide img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 480px) {
  article .slider-nav .slick-track .slick-slide img {
    height: 74px;
  }
}

article .slider-nav .slick-track .slick-slide.slick-current {
  opacity: 1;
}

article .before-after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 5px;
  margin-bottom: 50px;
  background: url(../img/arrow04.png) no-repeat;
  background-size: 30px;
  background-position: center;
}

@media (max-width: 480px) {
  article .before-after {
    background: none;
    margin-bottom: 40px;
    padding: 0;
  }
}

article .before-after > div {
  width: calc(50% - 20px);
  position: relative;
}

@media (max-width: 480px) {
  article .before-after > div {
    width: calc(50% - 2.5px);
  }
}

article .before-after > div img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 480px) {
  article .before-after > div img {
    height: 100px;
  }
}

article .before-after > div .text {
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  font-size: .8em;
  border: solid 1px #ff7e02;
  height: 30px;
  width: 90px;
  text-align: center;
  line-height: 30px;
  color: #ff7e02;
}

@media (max-width: 480px) {
  article .before-after > div .text {
    position: relative;
    width: 100%;
  }
}

article .before-after > div.after .text {
  background: #ff7e02;
  color: #fff;
}

article .works-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}

@media (max-width: 480px) {
  article .works-gallery {
    display: block;
  }
}

article .works-gallery .slider-for-works {
  width: calc(100% - 260px);
}

@media (max-width: 480px) {
  article .works-gallery .slider-for-works {
    width: 100%;
    margin-bottom: 10px;
  }
}

article .works-gallery .slider-nav-works {
  width: 240px;
}

@media (max-width: 480px) {
  article .works-gallery .slider-nav-works {
    width: 100%;
    margin-left: -2.5px;
  }
}

article .works-gallery .slider-nav-works .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

article .works-gallery .slider-nav-works .slick-track > div {
  width: calc(50% - 5px) !important;
  margin: 0 2.5px 5px;
}

@media (max-width: 480px) {
  article .works-gallery .slider-nav-works .slick-track > div {
    width: calc(25% - 5px) !important;
  }
}

article .works-gallery .slider-nav-works .slick-track > div img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 480px) {
  article .works-gallery .slider-nav-works .slick-track > div img {
    height: 60px;
  }
}

article .works-gallery .slider-nav-works .slick-track .slick-slide {
  background: #000;
}

article .works-gallery .slider-nav-works .slick-track .slick-slide.slick-current img {
  opacity: .5;
}

.article-pagenav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: solid 1px #737373;
  padding-top: .5em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: .9em;
  margin: 50px 0 60px;
}

.article-pagenav a {
  color: #6f728a;
}

body.archive .works-list li {
  margin-bottom: 40px;
}

@media (max-width: 480px) {
  body.archive .works-list li {
    padding: 0;
    margin-bottom: 20px;
  }
}

.page-nav {
  margin-bottom: 50px;
}

@media (max-width: 480px) {
  .page-nav {
    margin-bottom: 30px;
  }
}

.page-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 480px) {
  .page-nav ul {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }
}

.page-nav ul li {
  width: calc(100% / 4);
  padding: 0 10px;
}

@media (max-width: 480px) {
  .page-nav ul li {
    padding: 0 2.5px;
    font-size: .9em;
    width: calc(100% / 2);
    margin-bottom: 5px;
  }
}

.page-nav ul li a {
  display: block;
  border: solid 1px #ff7e02;
  color: #ff7e02;
  text-decoration: none;
  text-align: center;
  padding: 10px;
  background: #fff url(../img/arrow04.png) no-repeat;
  background-size: 20px;
  background-position: right 15px center;
}

.page-nav ul li.current a {
  color: #fff;
  background: #ff7e02 url(../img/arrow03.png) no-repeat;
  background-size: 20px;
  background-position: right 15px center;
}

.tax-works_category.term-painting .page-nav li:nth-child(2) a {
  color: #fff;
  background: #ff7e02 url(../img/arrow03.png) no-repeat;
  background-size: 20px;
  background-position: right 15px center;
}

.tax-works_category.term-interior .page-nav li:nth-child(3) a {
  color: #fff;
  background: #ff7e02 url(../img/arrow03.png) no-repeat;
  background-size: 20px;
  background-position: right 15px center;
}

.tax-works_category.term-exterior .page-nav li:nth-child(4) a {
  color: #fff;
  background: #ff7e02 url(../img/arrow03.png) no-repeat;
  background-size: 20px;
  background-position: right 15px center;
}

.slick-slide:focus {
  outline: none;
}

.pagenav {
  text-align: center;
}

.pagenav a {
  color: #ff7e02;
}
/*# sourceMappingURL=contents.css.map */