@charset "UTF-8";
.section_title p {
  font-size: 1.8em;
  text-align: center;
  line-height: 1.2em;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.section_title p span {
  font-size: 60%;
}

.sec_bg_text {
  width: auto;
  height: 8vw;
  opacity: 0.1;
}
.sec_bg_text img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .sec_bg_text {
    width: auto;
    height: 15vw;
    opacity: 0.1;
  }
}
.service_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.service_flex_re {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  margin-bottom: 20px;
}

.service_img {
  width: 60%;
}

.service_text {
  width: 40%;
  padding: 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.service_text div {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.service_text p:nth-child(1) {
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px solid #ED1C24;
}
.service_text p:nth-child(2) {
  font-size: 1em;
  line-height: 1.8em;
}
.service_text p:nth-child(2) span {
  color: #ED1C24;
}

/*20250709共通化(style.css)
.more_btn {
  width: 90%;
  max-width: 320px;
  background: #F05A24;
  padding: 15px 5px;
  border-radius: 10px;
  text-align: center;
  margin: 30px auto;

  a {
    display: block;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
  }
}
  */
/*------------------------------------------------*/
/*------------------------------------------------*/
/*------------------------------------------------*/
.sec_title {
  width: 100%;
  height: 30vw;
  background: url("../img/works/main_works.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sec_title {
    width: 100%;
    height: 60vw;
    background: url("../img/works/main_works.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
  }
}
.sec_title_sub {
  width: 100%;
  position: relative;
  padding-top: 120px;
}

.sec_title_img {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 20%;
  width: auto;
}
.sec_title_img img {
  height: 100%;
  width: auto;
  opacity: 0.5;
}

.sec_main {
  width: 100%;
  padding: 50px 0;
}
.sec_main .sec_in {
  width: 94%;
  max-width: 1000px;
  margin: 0 auto;
}
.sec_main .sec_in .tab_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px auto 100px;
}
.sec_main .sec_in .tab_area .tab {
  width: 30%;
  text-align: center;
  border: solid 1px #F05A24;
  border-radius: 5px;
  cursor: pointer;
}
.sec_main .sec_in .tab_area .tab p {
  color: #F05A24;
  font-size: clamp(0.875rem, 0.54rem + 0.696vw, 1.063rem);
  padding-block: 17px;
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.sec_main .sec_in .tab_area .tab.show {
  background: #F05A24;
}
.sec_main .sec_in .tab_area .tab.show p {
  color: #fff;
}
.sec_main .sec_in .works {
  display: none;
}
.sec_main .sec_in .works.show {
  display: block;
}
.sec_main .sec_in .w1-tab__items {
  margin-top: min(6.3vw, 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(1.56vw, 30px);
}
.sec_main .sec_in .w1-tab__items .tab__item {
  padding: 15px;
  color: #F05A24;
  font-size: 20px;
  border: 1px solid #F05A24;
  cursor: pointer;
}
.sec_main .sec_in .w1-tab__items .tab__item.active {
  background-color: #F05A24;
  color: #fff;
}
.sec_main .sec_in .w1__panel--item {
  display: none;
}
.sec_main .sec_in .w1__panel--item.active {
  display: -ms-grid;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: min(3vw, 60px) min(1.3vw, 30px);
}
.sec_main .sec_in .w1__panel--item.active .works_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(0.5vw, 10px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sec_main .sec_in .w1__panel--item.active .works_item p {
  font-size: 1em;
  line-height: 1.4em;
}
.sec_main .sec_in .w1__panel--item.active .works_item p a {
  font-size: 1em;
  line-height: 1.4em;
  color: #F05A24;
  text-decoration: underline;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.sec_main .sec_in .w1__panel--item.active .works_item p a:hover {
  opacity: 0.6;
}
.sec_main .sec_in .w1__panel--item.active .works_item.none {
  width: 230px;
  height: 0;
  margin: 0 auto 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sec_main .sec_in .works_flex {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: min(3vw, 60px) min(1.3vw, 30px);
}
.sec_main .sec_in .works_flex .works_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(0.5vw, 10px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sec_main .sec_in .works_flex .works_item p {
  font-size: 1em;
  line-height: 1.4em;
}
.sec_main .sec_in .works_flex .works_item p a {
  font-size: 1em;
  line-height: 1.4em;
  color: #F05A24;
  text-decoration: underline;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.sec_main .sec_in .works_flex .works_item p a:hover {
  opacity: 0.6;
}
.sec_main .sec_in .works_flex .works_item.none {
  width: 230px;
  height: 0;
  margin: 0 auto 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .sec_main .sec_in .w1__panel--item.active {
    gap: min(8vw, 60px) min(4vw, 30px);
  }
  .sec_main .sec_in .works_flex {
    gap: min(8vw, 60px) min(4vw, 30px);
  }
}
/*-------------------------------------------------*/
.sec_works {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 0 100px;
}
.sec_works .sec_works_in {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.sec_works .sec_works_in .sub_title {
  font-size: 1.2em;
  line-height: 1.2em;
  text-align: left;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}
.sec_works .sec_works_in .sub_title::before {
  content: "";
  width: 8%;
  height: 1px;
  position: absolute;
  left: -10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #F05A24;
}
.sec_works .sec_works_in .sub_copy {
  font-size: 1.2em;
  line-height: 1.2em;
  text-align: left;
  font-weight: bold;
  margin: 30px auto 0;
  position: relative;
}
.sec_works .sec_works_in .sub_copy::before {
  content: "";
  width: 8%;
  height: 1px;
  position: absolute;
  left: -10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #F05A24;
}
.sec_works .sec_works_in .sub_text {
  font-size: 1em;
  line-height: 1.6em;
  text-align: left;
  margin: 10px auto 10px;
  position: relative;
}
.sec_works .sec_works_in .sub_img {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  position: relative;
}
.sec_works .sec_works_in .sub_img .before,
.sec_works .sec_works_in .sub_img .after {
  position: absolute;
  top: 0;
  left: 0;
  padding: min(1.3vw, 16px) min(5.8vw, 70px) min(1vw, 12px) min(3.3vw, 40px);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  text-transform: uppercase;
  font-size: clamp(1.125rem, 0.865rem + 1.154vw, 1.875rem);
  color: #fff;
}
.sec_works .sec_works_in .sub_img .before {
  background: rgba(0, 0, 0, 0.5);
}
.sec_works .sec_works_in .sub_img .after {
  background: rgba(240, 90, 36, 0.9);
}
.sec_works .sec_works_in .swiper-container {
  width: 100%;
}
.sec_works .sec_works_in .swiper-container.slider {
  overflow: hidden;
}
.sec_works .sec_works_in .swiper-container.slider .swiper-button-prev,
.sec_works .sec_works_in .swiper-container.slider .swiper-button-next {
  color: #fff;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.sec_works .sec_works_in .swiper-container.thumbnail {
  margin-top: 30px;
  overflow: hidden;
}
.sec_works .sec_works_in .swiper-container.thumbnail .swiper-wrapper .swiper-slide {
  position: relative;
  opacity: 0.3;
}
.sec_works .sec_works_in .swiper-container.thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.sec_works .sec_works_in .swiper-container.thumbnail .swiper-scrollbar {
  top: auto;
  bottom: -20px;
}
.sec_works .sec_works_in .swiper-container.thumbnail .swiper-scrollbar .swiper-scrollbar-drag {
  background: #F05A24;
}

@media screen and (max-width: 768px) {
  .sec_main .sec_in .tab_area {
    margin: 40px auto 60px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sec_main .sec_in .tab_area .tab {
    width: 48%;
  }
  .sec_main .sec_in .tab_area .tab:nth-of-type(3), .sec_main .sec_in .tab_area .tab:nth-of-type(4) {
    margin-top: 2%;
  }
  .sub_title {
    font-size: 1em;
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
  }
  .sub_title .sub_copy {
    font-size: 1em;
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    margin: 30px auto 0;
    position: relative;
  }
  .sub_title .sub_text {
    font-size: 0.9em;
    line-height: 1.6em;
    text-align: left;
    margin: 10px auto 10px;
    position: relative;
  }
  .swiper-container.slider .swiper-button-prev:after,
  .swiper-container.slider .swiper-button-next:after {
    font-size: 30px;
  }
}