@charset "UTF-8";

.body {
  background: url(//assetes/img/bg_texcure.png);
}

/* ========= 
main
============ */
.mv {
  width: 88%;
  margin-left: auto;
  display: flex;
}

.fig_vertical {
  writing-mode: vertical-rl;
  -ms-writing-mode: bt-lr;
}

.mv .top_mv_img {
  padding-left: 2%;
}

.top_mv_img img {
  border-radius: 10px 0 0 10px;
}

.mv .nav__item {
  display: block;
}

@media screen and (max-width: 768px) {
  .mv {
    width: 100vw;
    margin-left: unset;
    display: block;
  }

  .mv_img {
    padding: 0;
  }

  .mv_img img {
    border-radius: 0;
  }

  .mv .mv_img {
    padding-left: 0;
  }
}

/* ========= 
施工事例
============ */

.left__container {
  width: 86%;
  margin: 10% auto 0;
  max-width: 1192px;
}

.title_left {
  width: 27%;
  height: 12%;
  display: flex;
  align-items: center;
  gap: 8vw;
}

.title_vertical {
  font-size: 3.2rem;
  writing-mode: vertical-rl;
  -ms-writing-mode: bt-rl;
  letter-spacing: 0.5em;
  padding-right: 20%;
}

.title_align {
  height: 28px;
  color: #85450a;
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  position: relative;
}

.title_align::before {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  background-color: #85450a;
  position: absolute;
  left: -110px;
  top: 14px;
  transform: translateY(5px);
}

/* レスポンシブ h3*/
@media screen and (max-width: 1100px) {
  .title_left h3 {
    display: inline-block;
    left: 90px;
  }
}
/* PC 1100px */

.Works_contents {
  width: 91%;
  display: flex;
  flex-wrap: wrap;
  gap: 7%;
  margin-left: auto;
  padding-top: 2%;
}

.item {
  width: 44%;
  height: 100%;
  margin-bottom: 6%;
  position: relative;
  box-shadow: 3px 3px 20px -10px #ababab;
  cursor: pointer;
}

.item figure {
  display: flex;
}

.Works_contents .figtxt {
  margin-left: 16px;
  margin-top: -1.8em;
  border: 1px solid rgba(63, 63, 63, 0.5);
  height: fit-content;
  padding: 5%;
  position: relative;
  left: -50px;
  background: #fffefe;
  z-index: 1;
  box-shadow: 5px 11px 10px -9px #ababab;
  font-weight: 600;
}

.hover_mask {
  font-family: "Roboto", sans-serif;
  color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.hover_mask p {
  padding-right: 3%;
}

.hover_mask::after {
  content: url(../img/arrow.png);
  display: block;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
}

@media (hover: hover) {
  .hover_mask:hover {
    opacity: 1;
  }
}

/* 施工事例sp */
@media screen and (max-width: 768px) {
  .left__container {
    width: 91%;
    margin: 6.4rem 4% 0;
  }

  .title_left {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    gap: unset;
    margin-left: 10%;
  }

  .title_vertical {
    font-size: 1.8rem;
    writing-mode: unset;
    -ms-writing-mode: unset;
    letter-spacing: normal;
  }

  .title_align {
    height: auto;
    font-size: 1.4rem;
    position: static;
  }

  .title_align::before {
    display: none;
  }

  .Works_contents {
    width: 82%;
    display: block;
    gap: 0;
    margin: 0 auto;
    padding-top: 0;
  }

  .item {
    width: 100%;
    margin-bottom: 0;
    margin-top: 2.4rem;
    box-shadow: unset;
  }

  .item figure {
    display: block;
  }

  .Works_contents .figtxt {
    font-size: 1.6rem;
    margin-left: 5px;
    margin-top: 10px;
    text-align: center;
    border: unset;
    height: unset;
    padding: 0;
    position: unset;
    left: unset;
    background: transparent;
    box-shadow: unset;
  }

  .btn__img {
    width: 50%;
    margin: 10px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* slider btn */
  .arrow__box {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .prev-arrow,
  .next-arrow {
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
  }

  .prev-arrow {
    display: block;
    margin-right: 20px;
  }

  .prev-arrow::before,
  .next-arrow::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #85450a;
    border-top: 2px solid #85450a;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transform: rotate(45deg);
  }

  .prev-arrow::before {
    transform: rotate(-145deg);
  }

  /* ここまで */
}

/* 
/* 769px sp */

/* ========= 
about
============ */
.about__container {
  /* margin: clamp(60px, 8vw, 100px) auto 0; */
  text-shadow: 0 0 rgb(66, 66, 66);
  background-image: url(../img/about_top1.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  position: relative;
}

.about__container .btn {
  text-shadow: 0 0 rgb(66, 66, 66);
}

.about__container .arrow {
  border-bottom: #3f3f3f 2px solid;
  border-right: #3f3f3f 2px solid;
}

.txt {
  text-align: center;
  padding-top: 24px;
}

.txt_wrapper {
  position: relative;
  height: 800px;
}

.txt_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.56);
  padding: 48px;
  /* -webkit-mask-image: linear-gradient(
      to top,
      transparent 0%,
      black 5%,
      black 97%,
      transparent 100%
    ),
    linear-gradient(
      to left,
      transparent 0%,
      black 5%,
      black 97%,
      transparent 100%
    );
  mask-image: linear-gradient(
      to top,
      transparent 0%,
      black 5%,
      black 97%,
      transparent 100%
    ),
    linear-gradient(
      to left,
      transparent 0%,
      black 5%,
      black 97%,
      transparent 100%
    );
  mask-composite: intersect; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* .title_about,
.item__txt {
  text-shadow: 2px 1px 9px rgba(0, 0, 0, 0.2);
} */

.item__txt {
  font-size: 2rem;
  line-height: 2.6;
}

.title__right {
  height: 12%;
  display: flex;
  justify-content: space-around;
  position: relative;
  margin-left: auto;
}

.subtitle__about {
  color: #85450a;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.55;
  text-shadow: 2px 1px 9px rgba(255, 255, 255, 0.2);
}

.title_about {
  font-size: 3rem;
  letter-spacing: 0.3em;
  text-align: center;
}

.img_about {
  width: 100%;
  max-width: 480px;
  box-shadow: 2px 1px 20px 0.5px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

/* .about__container .txt p {
  text-shadow: 2px 1px 9px rgba(0, 0, 0, 0.2);
} */

/* about sp */
@media (max-width: 768px) {
  .about__container {
    margin: 10% 0 0;
    background-image: url(../img/about_top_sp.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
  }

  .txt {
    width: 85%;
    text-align: center;
    margin: 3.2rem auto;
    padding: 0;
  }

  .txt_wrapper {
    height: 550px;
  }

  .item__txt {
    font-size: 1.6rem;
    line-height: 2.6;
  }

  .title__right {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
    margin-right: 0;
    position: static;
  }

  .txt_bg {
    padding: 0;
    -webkit-mask-image: unset;

    mask-composite: unset;
  }

  .subtitle__about {
    font-size: 2rem;
  }

  .title_about {
    font-size: 1.8rem;
    letter-spacing: 0.5em;
  }

  .img_about {
    max-width: 350px;
  }
}

/* 769px sp */

/* ipad */
@media (min-width: 768px) and (max-width: 1100px) {
  .about__container {
    background-position: center;
  }
  .txt_bg {
    padding: 0;
    -webkit-mask-image: unset;

    mask-composite: unset;
  }
  .txt_wrapper {
    height: 500px;
  }
}

/* ========= 
contact
============ */
.contact__container {
  margin-top: clamp(60px, 8vw, 120px);
  background: #fcf3e4;
  padding: 16rem 0;
}

.contact__titile {
  color: #85450a;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
}

.contact__txt {
  text-align: center;
  margin-top: 24px;
  line-height: 2.6;
  /* 46.8px */
}

/* contact sp */
@media screen and (max-width: 768px) {
  .contact__container {
    width: 100%;
    padding: 6.4rem 6% 9.6rem;
  }

  .contact__titile {
    font-size: rem;
    font-weight: 700;
  }

  .contact__txt {
    font-size: 1.6rem;
    margin-top: 32px;
    line-height: 2.6;
  }
}

/* 769px sp */

/* ========= 
news
============ */
/* .title_left__info {
  width: 30%;
  height: 12%;
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

/* レスポンシブ h3*/
@media screen and (max-width: 1100px) {
  .title_left__info h3 {
    display: inline-block;
    left: 90px;
  }
}

/* PC 1100px */
.container.news {
  max-width: 1000px;
}
.news__contents {
  background-color: #fcf3e4;
  width: 100%;
  border-radius: 30px;
  margin: 0 auto;
  padding: 4% 0;
  max-width: 800px;
}

.news__item {
  display: flex;
  margin-top: 30px;
  justify-content: center;
  position: relative;
}

.news__item:first-of-type {
  margin-top: 0;
}

th {
  margin-right: 15px;
  margin-bottom: 8px;
}

tr::after {
  content: "";
  width: 80%;
  height: 1px;
  background-color: #c0bfbe;
  position: absolute;
  bottom: -1.4rem;
}

table {
  width: 100%;
}

/* news sp */
@media screen and (max-width: 768px) {
  .news__contents {
    width: 82%;
    border-radius: 30px;
    margin: 0 auto;
    padding: 5%;
    margin-top: 3.2rem;
  }

  .news__item {
    width: 91%;
    margin: 3.2rem 4% 0;
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .news__item::after {
    display: none;
    /* content: "";
    width: 100%;
    height: 1px;
    background-color: #c0bfbe;
    position: absolute;
    bottom: -1.4rem; */
  }
}

/* 769px sp */
