 @charset "UTF-8";

 /* CSS Document */
 html {
   font-size: 62.5%;
   /* 16px * 62.5% = 10px */
   width: 100%;
   scroll-behavior: smooth;
 }

 :root {
   --green: #009a29;
   --l-green: #0db800;
   --text-color: #333333;
   --en: "Yu Mincho", "游明朝", serif;
   --def: "Yu Gothic", "游ゴシック", sans-serif;
 }

 body {
   color: var(--text-color);
   font-family: var(--def);
   font-style: normal;
   font-size: clamp(1.4rem, 3.6vw, 1.8rem);
   letter-spacing: 0.1rem;
   line-height: 1.8;
   text-align: center;
 }

 .en {
   font-family: var(--en);
   font-weight: 400;
   font-style: normal;
   letter-spacing: 0.1em;
 }

 h2,
 h3,
 h4 {
   font-weight: 400;
   letter-spacing: 0;
 }

 .vertical {
   position: static;
   display: inline-block;
   -webkit-writing-mode: vertical-rl;
   -ms-writing-mode: tb-rl;
   writing-mode: vertical-rl;
   text-align: left;
 }

 a {
   color: var(--text-color);
 }

 a:hover {
   opacity: 0.8;
 }

 a.clarity:hover {
   opacity: 1;
 }

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

 img {
   width: 100%;
   display: block;
 }

 .pc_none {
   display: block;
 }

 .sp_none {
   display: none;
 }

 .is-hide {
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 .left {
   text-align: justify;
 }

 .bold {
   font-weight: 700;
 }

 .green {
   color: var(--green);
 }

 .l-green {
   color: var(--l-green);
 }

 .fadeInUpTrigger,
 .fadeInLeftTrigger,
 .fadeInRightTrigger {
   opacity: 0;
 }

 .flex {
   display: flex;
   flex-direction: column;
   gap: 40px;
 }

 .flex.row {
   display: flex;
   flex-direction: row;
   gap: 20px;
 }

 /* header */
 header {
   width: 100%;
   height: 60px;
   position: relative;
   z-index: 100;
   transition: 0.5s all;
   top: 0;
   left: 0;
 }

 .header_inner {
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 4px 4px 4px 2vw;
 }

 header .logo {
   width: 235px;
 }

 /* ham_menu */
 .ham_btn {
   position: fixed;
   cursor: pointer;
   width: 53px;
   height: 53px;
   z-index: 999;
   margin: 0;
   background: var(--green);
   display: flex;
   align-items: center;
   justify-content: center;
     right: 4px;
     top: 4px;
 }

 .ham_btn::before {
   content: "MENU";
   color: #ffffff;
   font-weight: 600;
   transition: all 0.4s;
   letter-spacing: 0.04em;
   line-height: 1;
   font-size: 1.3rem;
   transition: all 0.4s;
 }

 .ham_btn.active::before {
   content: "CLOSE";
   transition: all 0.4s;
 }

 .nav_wrap {
   padding: 60px 0;
   overflow-y: auto;
   overflow-x: hidden;
   background: #ffffff;
   position: fixed;
   top: 0;
   right: 0;
   z-index: 900;
   height: 100%;
   visibility: hidden;
   opacity: 0;
   width: 100%;
   transition: opacity .6s ease, visibility .6s ease;
   line-height: 1.45;
 }

 .nav_wrap ul {
   width: 90%;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   margin-bottom: 40px;
 }

 .nav_wrap li {
   list-style: none;
   text-align: left;
   font-size: 1.8rem;
   line-height: 1.4;
 }

 nav li a {
   font-weight: 600;
   text-decoration: none;
   padding: 20px 10px;
   display: flex;
   flex-direction: column;
   align-items: center;
 }

 nav li a span {
   font-family: var(--en);
   color: var(--green);
   font-size: 1.6rem;
 }

 .nav_wrap.show {
   visibility: visible;
   opacity: 1;
 }

 .nav_wrap nav .sp_nav {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
 }

 .nav_wrap .tel {
   width: 80%;
   max-width: 274px;
   margin: 0 auto;
 }

 /* MV */
 .MV {
   position: relative;
   overflow: hidden;
 }

 .MV_slide {
   width: 100%;
   aspect-ratio: 480/410;
   overflow: hidden;
 }

 .MV_slide .slide {
   width: 100vw;
   aspect-ratio: 480/410;
   background-image: url(../img/mv_01.webp);
   background-size: cover;
   background-position: center;
   position: relative;
 }

 .MV-text {
   position: absolute;
   width: 90%;
   max-width: 910px;
   left: 50%;
   top: 0;
   transform: translateX(-53%);
   z-index: 10;
 }

 .MV-text img.sp_none {
   display: none;
 }

 .MV_slide .slide02 {
   background-image: url(../img/mv_02.webp);
 }

 .MV_slide .slide02 .MV-text {
   position: absolute;
   width: 60%;
   max-width: 570px;
   left: auto;
   right: 4vw;
   top: 0;
   transform: none;
 }

 .MV_slide .slide03 {
   background-image: url(../img/mv_03.webp);
 }

 .MV_slide .slide03 .MV-text {
   position: absolute;
   width: 70%;
   max-width: 555px;
   transform: none;
   left: 4vw;
   top: 2%;
 }

 .slick-prev:before,
 .slick-next:before {
   content: "";
   display: inline-block;
 }

 .slide-arrow {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: min(5vw, 30px);
   cursor: pointer;
   z-index: 10;
 }

 .prev-arrow {
   left: 10px;
 }

 .next-arrow {
   right: 10px;
 }

 .dots .slick-dots {
   text-align: center;
   z-index: 2;
   position: relative;
   margin-bottom: min(5vw, 40px);
 }

 .dots .slick-dots li {
   display: inline-block;
 }

 .dots .slick-dots button {
   display: block;
   width: 10px;
   height: 10px;
   margin: 6px 10px;
   font-size: 0;
   padding: 0;
   border: 0;
   outline: none;
   cursor: pointer;
   background: #c0c0c0;
   border-radius: 50%;
 }

 .dots .slick-dots .slick-active button {
   background: #777777;
 }

 /* 共通 */
 section {
   position: relative;
   padding: min(12vw, 100px) 0 min(14vw, 200px);
 }

 .inner {
   width: 90%;
   display: flex;
   flex-direction: column;
   gap: min(10vw, 80px);
   margin: 0 auto;
 }

 .section_ttl {
   display: flex;
   flex-direction: column;
   font-size: clamp(1.8rem, 5.4vw, 4.0rem);
   font-weight: 600;
 }

 .section_ttl span {
   font-family: var(--en);
   color: var(--green);
   font-weight: 400;
 }

 #top_renovation {
   background-color: #e5ecb4;
   padding-bottom: 0;
 }

 #top_renovation .section_ttl {
   position: relative;
 }

 #top_renovation .section_ttl .deco {
   width: 55px;
   position: absolute;
   top: 0;
   right: 0;
   transform: translateY(-50%)
 }

 #top_renovation .content_wrap {
   display: flex;
   flex-direction: column;
   gap: 20px;
   margin-bottom: 20px;
 }

 #top_renovation .content {
   background-color: #ffffff;
   padding: min(5vw, 40px) min(3vw, 20px) min(8vw, 80px);
   border-radius: min(3vw, 27px);
   display: flex;
   flex-direction: column;
   gap: min(2vw, 20px);
 }

 #top_renovation .content_ttl {
   display: flex;
   flex-direction: column;
   gap: min(2vw, 20px);
 }

 #top_renovation .num {
   aspect-ratio: 1;
   background-color: var(--l-green);
   width: min(10vw, 48px);
   border-radius: 50%;
   color: #ffffff;
   font-size: min(8vw, 40px);
   line-height: 1;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto;
 }

 #top_renovation .content_ttl h3 {
   font-size: clamp(1.8rem, 4vw, 3.0rem);
   font-weight: 600;
 }

 #top_renovation .deco {
   width: min(80%, 450px);
 }

 #top_service {
   padding-bottom: 0;
 }

 #top_service .content_wrap {
   display: flex;
   flex-direction: column;
   margin-bottom: 20px;
 }

 #top_service .content {
   padding: min(10vw, 60px) 0;
   display: flex;
   flex-direction: column;
   gap: min(5vw, 100px);
   border-bottom: 2px dashed #e5ecb4;
 }

 #top_service .content:first-of-type {
   padding: 0 0 min(10vw, 60px) 0;
 }

 #top_service .content:last-of-type {
   border-bottom: none;
 }

 #top_service .content_textWrap {
   display: flex;
   flex-direction: column;
   gap: min(5vw, 60px);
   text-align: justify;
   font-weight: 600;
 }

 #top_service h3 {
   font-size: clamp(1.8rem, 5vw, 3.0rem);
   color: var(--l-green);
   font-weight: 600;
   padding-left: min(4vw, 24px);
   position: relative;
 }

 #top_service h3::before {
   content: "";
   width: min(1.8vw, 9px);
   aspect-ratio: 9/43;
   background-image: url(../img/ttl_deco.webp);
   background-size: contain;
   background-repeat: no-repeat;
   background-position: center bottom;
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
 }

 #top_service .deco {
   width: min(50%, 320px);
   margin: 0 0 0 auto;
 }

 .more a {
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: #009a29;
   width: 70vw;
   max-width: 427px;
   aspect-ratio: 427/71;
   color: #ffffff;
   margin: 0px auto 20px;
   font-size: clamp(1.8rem, 5vw, 3.0rem);
 }

 #top_cost {
   background-color: #e5ecb4;
   padding: min(20vw, 120px) 0 0;
 }

 #top_cost::before {
   content: "";
   width: 100%;
   height: min(10vw, 60px);
   ;
   background-image: url(../img/bg_deco.webp);
   background-size: cover;
   background-repeat: repeat-x;
   position: absolute;
   top: 0;
   left: 0;
   z-index: 1;
 }

 #top_cost .inner {
   width: 100%;
 }

 #top_cost .content_wrap {
   display: flex;
   flex-direction: column;
   gap: min(10vw, 50px);
 }

 #top_cost .content {
   width: 100%;
   background-color: #ffffff;
   padding: min(5vw, 40px);
 }

 #top_cost .content a {
   display: flex;
   flex-direction: column;
   gap: min(3vw, 40px);
   width: 100%;
   max-width: 540px;
   margin: 0 auto;
 }

 #top_cost h3 {
   font-size: clamp(1.8rem, 5vw, 2.4rem);
   font-weight: 600;
   padding-left: min(4vw, 24px);
   position: relative;
   text-align: left;
 }

 #top_cost h3::before {
   content: "";
   width: min(1.8vw, 9px);
   aspect-ratio: 9/43;
   background-image: url(../img/ttl_deco.webp);
   background-size: contain;
   background-repeat: no-repeat;
   background-position: center bottom;
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
 }

 #top_cost .deco {
   width: min(30%, 173px);
 }

 #top_works {
   overflow: hidden;
 }

 #top_works .inner {
   position: relative;
 }

 #top_works .content_wrap {
   display: flex;
   flex-direction: column;
   gap: min(10vw, 100px);
 }

 #top_works .deco {
   width: min(40%, 244px);
   position: absolute;
   top: min(20vw, 200px);
   right: -5vw;
   transform: translateY(-50%)
 }

 #top_works .imgarea {
   position: relative;
   padding: 40px 0;
 }

 #top_works .before {
   width: 40%;
   aspect-ratio: 226/178;
   background-color: #cccccc;
   border-radius: min(3vw, 16px);
   display: flex;
   align-items: flex-end;
   justify-content: center;
   font-family: var(--en);
   font-weight: 500;
   position: absolute;
   z-index: 2;
   top: 0;
 }

 #top_works .after {
   width: 90%;
   aspect-ratio: 501/376;
   background-color: #dddddd;
   border-radius: min(3vw, 16px);
   display: flex;
   align-items: flex-end;
   justify-content: center;
   font-family: var(--en);
   font-weight: 500;
   margin: 0 0 0 auto;
 }

 #top_works h3 {
   font-size: clamp(1.8rem, 5vw, 2.4rem);
   font-weight: 600;
   padding-left: min(4vw, 24px);
   position: relative;
   text-align: left;
 }

 #top_works h3::before {
   content: "";
   width: min(1.8vw, 9px);
   aspect-ratio: 9/43;
   background-image: url(../img/ttl_deco.webp);
   background-size: contain;
   background-repeat: no-repeat;
   background-position: center bottom;
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
 }

 #top_recruit {
   overflow: hidden;
 }

 #top_recruit .inner {
   gap: 0;
 }

 #top_recruit .section_ttl {
   margin-bottom: min(10vw, 80px);
 }

 #top_recruit .section_ttl.sp_none {
   display: none;
 }

 #top_recruit .content {
   position: relative;
 }

 #top_recruit .content::before {
   content: "";
   width: 75vw;
   height: 110%;
   background-image: url(../img/recruit_bg.webp);
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center bottom;
   position: absolute;
   top: 50%;
   right: -5vw;
   transform: translateY(-50%);
 }

 #top_recruit .content_img {
   position: relative;
   z-index: 2;
 }

 #top_recruit .content_textWrap>p {
   width: 94%;
   padding: min(8vw, 60px) min(4vw, 24px) min(5vw, 40px);
   background-color: rgba(255, 255, 255, 0.90);
   margin: -30px auto 0;
   position: relative;
   z-index: 2;
   font-weight: 600;
 }

 #top_recruit .content a {
   margin: 30px auto 0;
   position: relative;
   z-index: 2;
 }

 #top_recruit .deco {
   margin-top: min(10vw, 60px);
   width: min(30%, 244px);
 }

 #top_recruit .bg_content {
   background-color: #0db800;
   padding: min(5vw, 40px) min(3vw, 20px) 0;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: min(5vw, 40px);
   color: #ffffff;
   font-weight: 600;
   border-radius: min(5vw, 33px);
 }

 #top_recruit .bg_content ul {
   font-size: clamp(1.8rem, 4vw, 2.4rem);
 }

 #top_recruit .bg_content a {
   background-color: #ffffff;
   color: var(--green);
 }

 .company {
   padding-bottom: 0;
 }

 .company::before {
   content: "";
   width: 100%;
   height: 75%;
   background-color: #e5ecb4;
   position: absolute;
   bottom: 0;
   left: 0;
   z-index: 1;
 }

 .company .inner {
   background-color: #f9f9f9;
   border-radius: min(5vw, 33px);
   position: relative;
   z-index: 2;
   padding: min(5vw, 40px) min(3vw, 20px) 0;
   gap: min(5vw, 40px);
 }

 .company .section_ttl {
   line-height: 1.5;
 }

 .company .logo {
   width: 50%;
   max-width: 160px;
 }

 .company dl {
   text-align: justify;
   margin: 20px auto;
 }

 .company dl .description-item {
   display: flex;
 }

 .company dt {
   width: 100px;
   font-weight: 600;
 }

 .company dd {
   width: calc(100% - 100px);
   font-weight: 600;
 }

 .company .map {
   aspect-ratio: 39/42;
   border-radius: min(5vw, 33px);
 }

 .company .map iframe {
   border-radius: min(5vw, 33px);
 }

 footer {
   background-color: #e5ecb4;
 }

 footer .inner {
   padding: min(5vw, 40px) 0;
 }

 footer .logo {
   width: 100%;
   max-width: 445px;
   margin: 0 auto;
 }

 footer .pc_nav {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px 10px;
 }

 footer .pc_nav li a {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   line-height: 1.4;
   font-weight: 500;
   font-size: clamp(1.2rem, 3.4vw, 1.7rem);
 }

 footer .pc_nav li a span {
   color: #009a29;
   font-family: var(--en);
   letter-spacing: 0.05em;
 }

 #go_top {
   position: fixed;
   bottom: 10px;
   right: 10px;
   width: 40px;
   z-index: 50;
   box-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
 }

 .cr {
   padding: 10px;
   font-size: 1.6rem;
 }

 /* pcスタイル */
 @media screen and (min-width: 960px) {
   .sp_none {
     display: block;
   }

   .pc_none {
     display: none;
   }

   header {
     height: 150px;
     line-height: 1.2;
     padding: 8px 2vw 0;
   }

   .header_inner {
     width: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px;
     padding-left: 0;
   }

   header .logo {
     width: calc(100% - 400px);
     max-width: 300px;
   }

   .header_upper {
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
   }

   .header_upper-right {
     display: flex;
     flex-direction: column;
     justify-content: space-evenly;
     align-items: flex-end;
     font-size: min(1.5vw, 1.6rem);
     height: 100%;
   }

   .header_upper-right p {
     text-wrap: nowrap;
   }

   .btn_wrapper {
     display: flex;
     gap: 20px;
     max-width: 580px;
   }

   .btn_wrapper {
     display: flex;
     gap: 20px;
   }

   .pc_nav {
     display: flex;
     justify-content: space-between;
     width: 90%;
     max-width: 1300px;
     margin: 0 auto;
   }

   .pc_nav li {
     position: relative;
   }

   .pc_nav li::before {
     content: "";
     width: 2px;
     height: 100%;
     background-image: url(../img/nav_line.png);
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center bottom;
     position: absolute;
     top: 0;
     right: calc(100% + min(3vw, 64px));
     z-index: 1;
   }

   .pc_nav li:last-child:after {
     content: "";
     width: 2px;
     height: 100%;
     background-image: url(../img/nav_line.png);
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center bottom;
     position: absolute;
     top: 0;
     left: calc(100% + min(4vw, 64px));
     z-index: 1;
   }

   .pc_nav li a {
     display: flex;
     flex-direction: column;
     line-height: 1.4;
     font-weight: 500;
     font-size: clamp(1.2rem, 3.4vw, 1.7rem);
   }

   .pc_nav li a span {
     color: #009a29;
     font-family: var(--en);
     letter-spacing: 0.05em;
     font-size: clamp(1.2rem, 3.4vw, 1.8rem);
   }

   .MV_slide {
     aspect-ratio: 1920/668;
   }

   .MV_slide .slide {
     aspect-ratio: 1509/668;
     width: 78vw;
     margin-right: 0;
     transition: all 0.6s ease 0.4s;
     opacity: 0.5;
     transform: scale(0.9);
     position: relative;
   }

   .prev-arrow {
     left: 8vw;
     transform: translate(-50%, -50%);
   }

   .next-arrow {
     right: 8vw;
     transform: translate(50%, -50%);
   }

   .MV_slide .slide.slick-current {
     transform: scale(1);
     opacity: 1;
   }

   .dots .slick-dots {
     margin-bottom: 0;
   }

   .MV-text {

     width: 60%;

     left: 0%;

     transform: none;
   }

   .MV_slide .slide02 .MV-text {
     position: absolute;
     width: 35%;
     max-width: 570px;
     left: auto;
     right: 4vw;
     top: 0;
     transform: none;
   }

   .MV_slide .slide03 .MV-text {
     position: absolute;
     width: 40%;
     max-width: 555px;
     transform: none;
     left: 2vw;
     top: 5%;
   }

   #top_renovation {
     overflow: hidden;
   }

   #top_renovation .section_ttl {
     max-width: 620px;
     margin: 0 auto;
   }

   #top_renovation .section_ttl .deco {
     width: 55px;
     position: absolute;
     top: 50%;
     right: 0;
     transform: translate(150%, -50%);
   }

   #top_renovation .inner {
     max-width: 1500px;
   }

   #top_renovation .content_wrap {
     flex-direction: row;
     justify-content: space-between;
     margin-bottom: 0;
     position: relative;
     z-index: 2;
   }

   #top_renovation .content {
     width: 32%;
   }

   #top_renovation .deco {
     margin-top: -40px;
   }

   #top_service .inner {
     max-width: 1500px;
   }

   #top_service .content {
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }

   #top_service .content:nth-of-type(even) {
     flex-direction: row-reverse;
     align-items: center;
   }

   #top_service .content_img {
     width: 45%;
   }

   #top_service .content_textWrap {
     width: 50%;
   }

   #top_cost .content_wrap {
     width: 90%;
     max-width: 1280px;
     margin: 0 auto 40px;
     flex-direction: row;
     z-index: 2;
   }

   #top_cost .content {
     width: 100%;
     background-color: #ffffff;
     padding: min(5vw, 40px);
   }

   #top_cost .content a {
     width: 100%;
     gap: 20px;
   }

   #top_cost .deco {
     margin-top: max(calc(-2vw*3), -240px);
     margin-left: 2vw;
   }

   #top_works {
     overflow: hidden;
   }

   #top_works .inner {
     max-width: 1280px;
   }

   #top_works .content_wrap {
     flex-direction: row;
     justify-content: space-between;
   }

   #top_works .content {
     flex-direction: row;
     width: 50%;
     max-width: 500px;
   }

   #top_works .imgarea {
     position: relative;
   }

   #top_works .before {
     position: absolute;
     left: -40px;
     width: 50%;
     max-width: 226px;
   }

   #top_works .after {
     width: 100%;
   }

   #top_works .deco {
     top: min(7vw, 160px);
     right: 5vw;
     transform: translate(100%, -50%);
   }

   #top_recruit .section_ttl.sp_none {
     display: flex;
     text-align: left;
     width: 90%;
     margin: 0;
   }

   #top_recruit .section_ttl.pc_none {
     display: none;
   }

   #top_recruit .inner {
     width: 100%;
   }

   #top_recruit .content {
     display: flex;
     flex-direction: row;
   }

   #top_recruit .content_img {
     width: 50%;
     margin-top: -3vw;
   }

   #top_recruit .content_textWrap {
     width: 55%;
     background-color: rgba(255, 255, 255, 0.90);
     z-index: 2;
     margin: 0 0 0 -5vw;
     padding: min(4vw, 40px) min(10vw, 80px);
     display: flex;
     flex-direction: column;
     justify-content: space-evenly;
   }

   #top_recruit .content_textWrap>p {
     width: 90%;
     padding: 0;
     background: none;
     margin: 0;
     position: relative;
     z-index: 2;
     font-weight: 600;
   }

   #top_recruit .content::before {
     width: 90vw;
     height: 120%;
   }

   #top_recruit .bg_content {
     width: 90%;
     max-width: 1280px;
     margin: 0 auto;
     z-index: 2;
     padding: min(5vw, 80px) min(3vw, 60px) min(3vw, 60px);
   }

   #top_recruit .deco {
     margin-top: min(10vw, 60px);
     margin-left: 5vw;
     width: min(30%, 120px);
     transform: translateY(100%);
   }

   .company {
     overflow: hidden;
   }

   .company .inner {
     max-width: 1650px;
   }

   .company .content {
     display: flex;
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
     gap: 40px;
   }

   .company .map {
     width: 60%;
     aspect-ratio: 1157/767;
   }

   .company .content_textWrap {
     width: 40%;
     display: flex;
     flex-direction: column;
     align-items: center;
     line-height: 2.5;
     max-width: 520px;
     margin: 0 0 0 auto;
   }

   .company .content_textWrap .logo {
     margin: 0 auto 0 0;
   }

   footer .pc_nav {
     display: flex;
     justify-content: space-between;
     width: 90%;
     max-width: 1300px;
     margin: 0 auto;
     gap: 0;
   }

   footer .pc_nav li a {
     display: flex;
     flex-direction: column;
     align-items: center;
     line-height: 1.4;
     font-weight: 500;
     font-size: clamp(1.2rem, 3.4vw, 1.7rem);
   }

   footer .pc_nav li a span {
     color: #009a29;
     font-family: var(--en);
     letter-spacing: 0.05em;
   }

   .cr {
     position: relative;
   }

   #go_top {
     position: fixed;
     bottom: 40px;
     right: 40px;
     width: 60px;
     z-index: 50;
   }
 }

/*--------------------
下層ページ
---------------------*/
.h2_ttl
{
    max-width: 1814px;
    width: 96%;
    margin: 0 auto;
    height: max(20vw , 150px);
    background: url("../img/h2_ttl.png") no-repeat center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    text-align: center;
}
.h2_ttl h2 span
{
    color: #FFFFFF;
    font-size: max(3vw , 30px);
    font-weight: 600;
}
/*===会社概要===*/

#company_wrapper h3.ttl
{
    font-size: max(2vw, 20px);
    font-weight: 600;
    margin-bottom: 5%;
}
.inner1500
{
    max-width: 1500px;
    margin: 0 auto;
}
.inner1280
{
    max-width: calc(1200px + 6%);
    width: 100%;
  margin: 0 auto;
  padding: 3%;
}
.flex_wrap
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flex_wrap .img
{
    width: 100%;
}
.flex_wrap .txt
{
    width: 100%;
}
.flex_wrap .txt p
{
    text-align: justify;
}
.under
{
    padding-top: 12vw;
    position: relative;
}
.company.under::before {
  height: 70%;
}
.f_deco
{
    position: absolute;
    top: 0;
    right: 3%;
    width: calc(297 / 1920* 100vw);
    max-width: 297px;
}
#top_cost .bg_ttl
{
    background: #0db800;
    text-align: center;
    color: #FFFFFF;
    font-size: max(2vw , 20px);
    font-weight: 600;
    padding: 10px;
    margin-bottom: 3%;
}
/*===お問い合わせ===*/
#contact_01 .right {
    text-align: right;
}
#contact_01 h3 {
   font-size: clamp(2rem, 5vw, 3.0rem);
 }

 .form_outer {
   width: 100%;
   max-width: 1280px;
   margin: 0 auto;
   padding-bottom: min(5vw, 40px);
 }

 form {
   margin: 0 auto;
   max-width: 1160px;
   text-align: left;
   line-height: 3;
   container-type: inline-size;
   container-name: form;
   font-size: clamp(1.4rem, 4vw, 2.0rem);
 }

 .form_item--ttl {
   line-height: 2;
   font-weight: 400;
   padding: 2%;
    text-align: justify;
 }

 .must {
   color: #FF0000;
 }

 .form_item--input {
   padding: 2%;
 }
.form_item--input:nth-of-type(4)
{
    border-bottom: 1px solid #28325B;
}

 .form_item--input.privacy_area {
   border-bottom: 1px solid #28325B;
   margin-bottom: 40px;
 }

 .form_item--input span {
   color: #28325B;
   line-height: 1;
   display: block;
   padding: 8px 0;
 }

 .postal_codewrap {
   display: flex;
   align-items: center;
   justify-content: flex-start;
   gap: 5px;
   margin-bottom: 2%;
 }

 #postal_code_1,
 #postal_code_2 {
   max-width: 96px;
 }

 label {
   display: inline-block;
 }

 input[type="text"],
 input[type="tel"],
 input[type="email"],
 select,
 textarea {
   display: block;
   height: 48px;
   width: 100%;
   font-size: 2.0rem;
   padding: 6px;
   background-color: #f2f2f2;
  border: 1px solid #ccc;
 }

 .privacy {
   height: 200px;
   overflow-y: scroll;
   line-height: 1.5;
   font-size: clamp(1.2rem, 3vw, 1.5rem);
   padding: 2%;
   background-color: #ffffff;
   margin-bottom: 2%;
 }

 .privacy p {
   padding-bottom: min(4vw, 30px);
 }

 .agree_privacy {
   font-size: clamp(1.2rem, 3vw, 1.5rem);
 }

 .form_submit button {
   width: 80%;
   max-width: 345px;
   margin: 0 auto;
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   border: none;
   transition: all 0.5s;
   padding: 0;
 }

 .form_submit button:hover {
   opacity: 0.7;
 }

 .form_submit button p {
   font-size: 2.2rem;
   color: #ffffff;
   text-align: left;
   font-weight: 400;
   letter-spacing: 0.1rem;
 }

 #contact_wrapper #top_recruit {
   display: none;
 }
.form_submit button {
     margin: 40px auto 0;
   }

 /* pcスタイル */
 @media screen and (min-width: 960px) {
     
     .flex_wrap .img
{
    width: 45%;
}
.flex_wrap .txt
{
    width: 50%;
}
   #contact_01 .inner {
     max-width: 1080px;
   }

   form {
     max-width: 1080px;
   }

   .form_item {
     display: flex;
     justify-content: center;
     align-items: flex-start;
       flex-wrap: wrap;
     max-width: 1100px;
     margin: 0 auto;
   }

   .form_item--ttl {
     padding: 30px 40px 10px;
     width: 100%;
     margin: 0;
     line-height: 1;
   }

   .form_item--input {
     width: 100%;
     margin: 0;
     padding: 10px 30px 20px;
     line-height: 1;
   }
     
   .form_item--input label {
     line-height: 1;
   }

   .form_submit button {
     margin: 40px auto 0;
   }
 }
/*===求人情報===*/
#recruit_wrapper h3 {
   font-size: clamp(2rem, 5vw, 3.0rem);
 }
#recruit_wrapper .section_lead , #recruit_wrapper .content_img
{
    width: 100%;
}
#recruit_wrapper .section_lead
{
    text-align: justify;
}

#top_renovation.u_renovation
{
    background: url("../img/recruit_bg.webp")no-repeat center / cover;
    padding: min(12vw, 100px) 0 min(14vw, 100px);
}
#top_renovation.u_renovation .content {
box-shadow: 0px 5px 15px -5px #777777;
    border-radius: 3px;
}
#recruit_description dl {
    font-size: clamp(1.6rem, 3.7vw, 1.4rem);
    font-weight: 700;
    text-align: left;
    max-width: 780px;
    width: 100%;
  margin: 0 auto;
}
#recruit_description .description-item {
    text-align: left;
    border-bottom: none;
    flex-direction: column;
}
.description-item {
    display: flex;
    width: 100%;
    padding: 4px 0;
    border-bottom: 1px solid #333333;
}
#recruit_description dt {
    width: 100%;
    border-bottom: 1px solid #333333;
    padding: 4px 0;
}
.description-item dt {
    width: 100px;
}
#recruit_description dd {
    width: 100%;
    border-bottom: 1px solid #333333;
    padding: 4px 0;
    font-weight: 300;
}
.description-item dd {
    width: calc(100% - 100px);
}
.t30
{
    font-size: clamp(2rem, 3.7vw, 2.4rem);
    font-weight: 600;
}
.btn
{
   width: 80%;
  max-width: 345px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: all 0.5s;
  padding: 0; 
}
@media screen and (min-width: 960px) {
    #recruit_description .description-item {
        text-align: left;
        border-bottom: none;
        flex-direction: row;
        margin-bottom: 8px;
    }
    #recruit_description dt {
        width: 200px;
        border-bottom: 1px solid #333333;
        padding: 8px 8px 20px;
    }
        #recruit_description dd {
        width: calc(100% - 200px);
        border-bottom: 1px solid #333333;
        padding: 8px 8px 20px;
    }
    #recruit_wrapper .section_lead, #recruit_wrapper .content_img {
  width: 48%;
}
}
/*===施工実績===*/

.explanation .subttl
{
    font-size: max(1vw , 18px);
    font-weight: 600;
    margin-bottom: 10px;
}
.borderbox
{
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 3%;
}
.works
{
    position: relative;
}
@media screen and (min-width: 960px) {
.works_deco
{
    position: absolute;
    right: 5%;
    top: 1%;
    width: calc(244 / 1920* 100vw);
    max-width: 244px;
}
}
.works_deco
{
    position: absolute;
    right: 5%;
    top: 1%;
    width: calc(244 / 767* 100vw);
    max-width: 244px;
}