
/*========================

  基本設定

========================*/

*,
::before,
::after {
  background-repeat: no-repeat;
  box-sizing: border-box;
}

html {
  /*font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Arial, sans-serif;*/
  font-family: sans-serif;
  line-height: 1.5;
  font-size: 13px;
  color: #333;
  background: #fff;
}

body {
  margin: 0;
}

a {
  color: #333;
  text-decoration: underline;
}
a:hover {
  color: #aaa;
}
a img,
a svg {
  transition: opacity .2s linear;
}
a:hover img,
a:hover svg {
  opacity: .5;
}

/* マウスクリックによるfocus outlineを非表示に */
[data-whatinput='mouse'] button:focus,
[data-whatinput='touch'] button:focus {
  outline: none;
}


/*========================

  汎用クラス

========================*/

.mt {
  margin-top: 40px;
}
.mb {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .mt {
    margin-top: 30px;
  }
  .mb {
    margin-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .mt {
    margin-top: 20px;
  }
  .mb {
    margin-bottom: 20px;
  }
}

.Container {
  margin-left: auto;
  margin-right: auto;
  width: 940px;
}
@media (max-width: 991px) {
  .Container {
    width: 90%;
  }
}



/*========================

  ヘッダー

========================*/

.Header {
  position: sticky;
  z-index: 11;
  top: 0;
  width: 100%;
  background: #fff;
}
.Header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 940px;
  height: 100px;
}
.Header_left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.Header_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .Header {
    margin-bottom: 10px;
  }
  .Header_inner {
    width: auto;
    height: 50px;
  }
}

.HeaderLogo {
  margin: 0;
}
.HeaderLogo img,
.HeaderLogo svg {
  display: block;
  width: auto;
  height: 17px;
}
@media (max-width: 991px) {
  .HeaderLogo {
    margin-left: 20px;
  }
  .HeaderLogo img,
  .HeaderLogo svg {
    height: 15px;
  }
}

.HeaderNavBtn {
  position: relative;
  margin: 0;
  border: 0;
  padding: 0;
  width: 70px;
  height: 50px;
  background: none;
}
.HeaderNavBtn span {
  display: block;
  position: absolute;
  font-size: 0;
  opacity: 0;
}
.HeaderNavBtn i {
  display: block;
  position: absolute;
  border-top: 2px solid #000;
  left: 20px;
  width: 30px;
  transition: transform .3s ease;
  pointer-events: none;
}
.HeaderNavBtn i:nth-of-type(1) {
  top: 14px;  
}
.HeaderNavBtn i:nth-of-type(2),
.HeaderNavBtn i:nth-of-type(3) {
  top: 24px;  
}
.HeaderNavBtn i:nth-of-type(4) {
  top: 34px;  
}
.HeaderNavBtn.is-pressed i:nth-of-type(1),
.HeaderNavBtn.is-pressed i:nth-of-type(4) {
  transform: scale(0, 1);
}
.HeaderNavBtn.is-pressed i:nth-of-type(2) {
  transform: rotate(45deg);
}
.HeaderNavBtn.is-pressed i:nth-of-type(3) {
  transform: rotate(-45deg);
}
@media (min-width: 992px) {
  .HeaderNavBtn {
    display: none;
  }
}

@media (min-width: 992px) {
  .HeaderNav {
    margin-top: 8px;
  }
  .HeaderNav ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  .HeaderNav li {
    list-style: none;
    margin: 0 0 0 35px;
    padding: 0;
  }
  .HeaderNav a {}
  .HeaderNav a img,
  .HeaderNav a svg {
    display: block;
    width: auto;
    height: 15px;
  }
}
@media (max-width: 991px) {
  .HeaderNav {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    transform-origin: 50% 0%;
    transform: scale(1, 0);
    visibility: hidden;
  }
  .HeaderNav.is-opened {
    transition: transform .3s ease, visibility 0s;
    transform: scale(1, 1);
    visibility: visible;
  }
  .HeaderNav.is-closing {
    transition: transform .3s ease, visibility 0s .3s;
  }
  .HeaderNav ul {
    margin: 0;
    padding: 0;
  }
  .HeaderNav li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #ccc;
  }
  .HeaderNav li:last-child {
    border-bottom: 1px solid #ccc;
  }
  .HeaderNav a {
    display: block;
    padding: 12px 15px;
    background: #fff;
  }
  .HeaderNav a img,
  .HeaderNav a svg {
    display: block;
    width: auto;
    height: 15px;
  }
  .HeaderNav a:hover {
    background: #fafafa;
  }
}


/*========================

  メイン

========================*/



/*========================

  フッター

========================*/

.Footer {
  margin: 100px 0 0;
}
@media (max-width: 767px) {
  .Footer {
    margin-top: 80px;
  }
}

.FooterContact {
  text-align: center;
}
.FooterContact a {
  display: inline-block;
  padding: 12px 50px;
  border: #000 3px solid;
}
.FooterContact a img {
  vertical-align: top;
}
.FooterContact a:hover {
  background-color: #eee;
}
.FooterContact a:hover img {
  opacity: 1;
}

.FooterNav {
  margin: 50px 0 0;
  border-top: 1px solid #ccc;
  padding: 30px 0;
  font-size: 12px;
}
.FooterNav ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  width: 90%;
  text-align: center;
}
.FooterNav li {
  list-style: none;
  margin: 0;
  padding: 5px 10px;
}
.FooterNav a {
  color: #999;
}
.FooterNav a:hover {
  color: #333;
}
@media (max-width: 767px) {
  .FooterNav ul {
    flex-wrap: wrap;
  }
  .FooterNav li {
    width: 50%;
  }
}

.FooterMain {
  padding: 40px 0;
  background: #f2f2f2;
}
.FooterMain_inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 940px;
}
.FooterMain_left {}
.FooterMain_right {}
@media (max-width: 991px) {
  .FooterMain {
    padding: 30px 0;
    background: #f2f2f2;
  }
  .FooterMain_inner {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .FooterMain_inner {
    display: block;
  }
}

.FooterAddress {
  display: block;
  font-style: normal;
}
.FooterAddress strong {
  display: block;
  margin: 0 0 .5em;
}
.FooterAddress strong small {
  display: block;
  font-weight: normal;
}
.FooterAddress a {
  text-decoration: none;
}
@media (max-width: 767px) {
  .FooterAddress {
    text-align: center;
  }
}

.FooterOfficialLink {
  margin: 1em 0 0;
}
.FooterOfficialLink a {
  color: #999;
}
.FooterOfficialLink a:hover {
  color: #333;
}
@media (max-width: 767px) {
  .FooterOfficialLink {
    text-align: center;
  }
}

.FooterSns {
  display: flex;
  justify-content: flex-end;
}
.FooterSns a {
  margin: 0 0 0 16px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .FooterSns {
    margin: 20px 0 0;
    justify-content: center;
  }
  .FooterSns a {
    margin: 0 8px;
  }
}

.FooterFbLike {
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .FooterFbLike {
    text-align: center;
  }
}

.FooterCopyright {
  display: block;
  padding: 16px 0;
  font-family: 'Roboto Condensed', sans-serif;
  text-align: center;
  font-size: 12px;
}

.FooterPageTop {
  position: fixed;
  z-index: 100;
  bottom: 20px;
  right: 20px;
  margin: 0;
  border: 0;
  padding: 0;
  background: none;
  transition: opacity .3s, visibility 0s .3s;
  opacity: 0;
  visibility: hidden;
}
.FooterPageTop.is-active {
  transition: opacity .3s, visibility 0s;
  opacity: 1;
  visibility: visible;
}
.FooterPageTop img,
.FooterPageTop svg {
  display: block;
  width: 50px;
  height: 50px;
}
@media (max-width: 767px) {
  .FooterPageTop {
    bottom: 10px;
    right: 10px;
  }
  .FooterPageTop img,
  .FooterPageTop svg {
    width: 40px;
    height: 40px;
  }
}


/*========================

  ページタイトル

========================*/

.PageTitle {
  margin: 40px 0 40px;
}
@media (max-width: 767px) {
  .PageTitle {
    margin: 20px 0 20px;
  }
}


/*========================

  施工事例リスト

========================*/

.ResultList {
}
.ResultList::before {
  content: "";
  display: table;
}
.ResultList ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: -40px -15px 0;
  padding: 0;
}
.ResultList li {
  list-style: none;
  margin: 0;
  padding: 40px 15px 0;
  width: calc(100% / 3);
}
.ResultList li a {
  display: block;
  color: #666;
  text-decoration: none;
}
.ResultList li a div {
  position: relative;
  padding-top: 66.67%;
}
.ResultList li a div img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.ResultList li a span {
  display: block;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .ResultList ul {
    margin: -30px -8px 0;
  }
  .ResultList li {
    padding: 30px 8px 0;
    width: calc(100% / 2);
  }
}


/*========================

  ホーム

========================*/

.HomeHero {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.HomeHero_slide {
  width: 62%;
}
.HomeHero_title {
  width: 35%;
}
.HomeHero_title svg {
  width: auto;
  height: auto;
  max-width: 100%;
}
@media (max-width: 767px) {
  .HomeHero {
    display: block;
  }
  .HomeHero_slide {
    width: auto;
  }
  .HomeHero_title {
    width: auto;
    margin-top: 20px;
  }
}

.HomeHeroSlide {
  position: relative;
}
.HomeHeroSlide::before {
  content: "";
  display: block;
  padding-top: calc(100% * 285/535);
}
.HomeHeroSlide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.HomeFacebook {
  display: flex;
  align-items: center;
  margin: 40px 0;
}
.HomeFacebook_header {
  flex-shrink: 0;
  margin: 0 15px 0 0;
}
.HomeFacebook_header img {
  display: block;
  width: 25px;
  height: 25px;
}
.HomeFacebook_body {
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.HomeResult {
  margin: 40px 0 0;
}

.HomeResultHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.HomeResultHeader h2 {
  margin: 0;
}
.HomeResultHeader h2 img {
  vertical-align: middle;
}
.HomeResultHeader a {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #999;
}
.HomeResultHeader a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 18px;
  background-image: url(../img/common/arrow001.svg);
  background-size: 100%;
}

.HomeResultList {
  margin: 30px 0 0;
}
@media (max-width: 767px) {
  .HomeResultList {
    margin-top: 20px;
  }
}


/*========================

  コンセプト

========================*/

.ConceptMain {
  display: flex;
  justify-content: space-between;
}
.ConceptMain_text {
  width: 53%;
}
.ConceptMain_text p {
  margin: 0;
  line-height: 3;
}
.ConceptMain_image {
  width: 45%;
}
.ConceptMain_image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .ConceptMain {
    flex-direction: column-reverse;
  }
  .ConceptMain_text {
    width: auto;
  }
  .ConceptMain_text p {
    margin: 2em 0 0;
    line-height: 2.5;
  }
  .ConceptMain_image {
    width: auto;
  }
}

.ConceptProfile {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 100px auto 0;
  width: 95%;
}
.ConceptProfile_text {
  width: 43%;
}
.ConceptProfile_text h3 {
  margin: 0;
}
.ConceptProfile_text h4 {
  margin: 40px 0 30px;
  font-size: 19px;
  letter-spacing: 0.3em;
}
.ConceptProfile_text p {
  margin: 1em 0 0;
  line-height: 3;
}
.ConceptProfile_image {
  width: 45%;
}
.ConceptProfile_image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .ConceptProfile {
    flex-direction: column-reverse;
    align-items: center;
    width: auto;
  }
  .ConceptProfile_text {
    margin-top: 40px;
    width: 100%;
  }
  .ConceptProfile_text p {
    line-height: 2.5;
  }
  .ConceptProfile_image {
    width: 80%;
    max-width: 400px;
  }
}


/*========================

  施工事例

========================*/

.ResultPaginate {
  margin: 80px 0 0;
}
@media (max-width: 767px) {
  .ResultPaginate {
    margin-top: 50px;
  }
}
.ResultPaginate .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.ResultPaginate .page-numbers li {
  list-style: none;
  margin: 0 .3em;
  padding: 0;
}
.ResultPaginate .page-numbers a,
.ResultPaginate .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  min-width: 2em;
  height: 2em;
  color: #999;
  text-decoration: none;
  font-family: 'Roboto Condensed', sans-serif;
}
.ResultPaginate .page-numbers a:hover {
  background-color: #aaa;
  color: #fff;
}
.ResultPaginate .page-numbers span.current {
  background-color: #aaa;
  color: #fff;
}


.ResultDetail {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.ResultDetail_data {
  margin: 0 20px 0 0;
}
.ResultDetail_photos {
  flex-shrink: 0;
  width: 600px;
}
@media (max-width: 991px) {
  .ResultDetail {
    flex-direction: column-reverse;
  }
  .ResultDetail_data {
    margin: 30px 0 0;
  }
  .ResultDetail_photos {
    margin: 0 auto;
    max-width: 100%;
  }
}

.ResultSlide {}
.ResultSlideItem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.ResultSlideItem img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.ResultSlideNav {
  margin-top: 3px;
}
.ResultSlideNav .splide__slide {
  box-sizing: content-box;
}
.ResultSlideNavItem {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ResultDetailName {}
.ResultDetailName div {
}
.ResultDetailName h3 {
  margin: 10px 0 0;
  line-height: 1.6;
  font-size: 100%;
  font-weight: bold;
}
.ResultDetailData {
  margin: 0;
  padding: 0;
}
.ResultDetailData dt {
  margin: 30px 0 0;
  padding: 0;
  font-weight: normal;
}
.ResultDetailData dd {
  margin: 10px 0 0;
  padding: 0;
  line-height: 1.6;
  font-size: 100%;
  font-weight: bold;
}

a.ResultLink {
  display: inline-block;
  align-items: center;
  border: 1px solid #b3b3b3;
  padding: 1px 15px 2px;
  background-color: #fff;
  color: #666;
  font-weight: normal;
  font-family: 'Roboto Condensed', sans-serif;
  text-decoration: none;
}
a.ResultLink::after {
  content: "\0bb";
  margin-left: 5px;
  font-size: 125%;
}
a.ResultLink:hover {
  background-color: #aaa;
  color: #fff;
}

.ResultDetailNav {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 80px 0 0;
}
@media (max-width: 767px) {
  .ResultDetailNav {
    margin-top: 50px;
  }
}
.ResultDetailNav div {
  flex-shrink: 0;
  width: 12em;
  max-width: 33.33%;
}
.ResultDetailNav a {
  color: #aaa;
}
.ResultDetailNav a:hover {
  color: #333;
}


/*========================

  業務の流れ

========================*/

.FlowBoxWrap {
  margin: 60px 0 0;
}
@media (max-width: 767px) {
  .FlowBoxWrap {
    margin-top: 30px;
  }
}

.FlowBox {
  position: relative;
}
.FlowBox h3 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-weight: bold;
}
.FlowBox h3 img {
  width: 63px;
  height: 63px;
}
.FlowBox h3 span {
  margin-left: 30px;
  font-size: 15px;
}
.FlowBox div {
  line-height: 1.8;
}
.FlowBox div a {
  text-decoration:underline;
}
@media (min-width: 992px) {
  .FlowBoxWrap {
    display: flex;
    flex-wrap: wrap;
  }
  @supports (flex-wrap: wrap) {
  }
  .FlowBox {
    margin: 0 0 60px 80px;
    width: 260px;
  }
  .FlowBox::before {
    content: "";
    display: block;
    position: absolute;
    left: -46px;
    top: 100px;
    width: 12px;
    height: 24px;
    background-image: url(../img/flow/flowArrow01.svg);
  }
  .FlowBox:nth-child(3n-2) {
    margin-left: 0;
  }
  .FlowBox:nth-child(3n-2)::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .FlowBox {
    margin: 0 0 80px;
  }
  .FlowBox:nth-child(n+2)::before {
    content: "";
    display: block;
    position: absolute;
    top: -46px;
    right: 0;
    left: 0;
    margin: auto;
    width: 24px;
    height: 12px;
    background-image: url(../img/flow/flowArrow02.svg);
  }
  .FlowBox h3 {
    margin-bottom: 20px;
  }
  .FlowBox h3 img {
    width: 45px;
    height: 45px;
  }
  .FlowBox h3 span {
    margin-left: 20px;
  }
  .FlowBox div br {
    display:none;
  }
}
@media (max-width: 767px) {
  .FlowBox {
    margin: 0 0 60px;
  }
  .FlowBox:nth-child(n+2)::before {
    top: -36px;
  }
}


/*========================

  会社概要

========================*/

.CompanyOutline {
  display: flex;
  justify-content: space-between;
}
.CompanyOutline_text {
  width: 48%;
}
.CompanyOutline_text dl {
  margin: 0;
}
.CompanyOutline_text dt {
  margin: 30px 0 0;
  font-weight: normal;
}
.CompanyOutline_text dt:first-child {
  margin-top: 0;
}
.CompanyOutline_text dd {
  margin: 10px 0 0;
  line-height: 1.6;
  font-weight: bold;
}
.CompanyOutline_image {
  width: 50%;
}
.CompanyOutline_image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .CompanyOutline {
    flex-direction: column-reverse;
    align-items: center;
  }
  .CompanyOutline_text {
    margin-top: 30px;
    width: 100%;
  }
  .CompanyOutline_image {
    width: 280px;
  }
}