@charset "UTF-8";
:root {
  /* color */
  --text-color: #333333;
  --main-color: #65B25A;
  --sub-color: #f0f0f0; 
  --button02-color: #92cc79;
  --base-color: #F5F5F5;
  --white: #ffffff;
  --step-color01: #C6E0BC;
  --step-color02: #A7D393; 
  --step-color03: #88C66A; 
  --step-color04: #92cc79; 
  /* font */
  --ja: "Noto Sans JP", sans-serif;
  --en: "Oswald", sans-serif;
}

/*-----TOPページ----- */
/* ------hero-mv------ */
@keyframes rotateCircle {
    from {
        transform: translate(50%, -50%) rotate(0deg); 
    }
    to {
        transform: translate(50%, -50%) rotate(360deg); 
    }
}
@keyframes rotateCircle02 {
     from {
        transform: translateX(-50%) scale(0.5) rotate(0deg);
    }
    to {
        transform: translateX(-50%) scale(0.5) rotate(360deg);
    }
}

.hero{
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}
.hero__inner {
    display: flex; 
    flex-direction: column;
    align-items: center;
}
.hero__photo-container{
  margin-bottom: 30px;
}
.hero__text-container{
    padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem); 
    box-sizing: border-box;
    width: 80%;
    min-width: 300px;
    margin-top: 30px;
    }

.hero__round-text {
   /* 大きさ0.5、横軸移動-50% */
   position: absolute;
   top: 7%;
   left: 50%;
   animation: rotateCircle02 20s linear infinite;
}

@media screen and (min-width: 768px) {
    .hero {
    margin-top: 70px;
    }
    .hero__inner{
    display: flex;
    flex-direction: row;
    }
    .hero__photo-container{
      flex: 1250;
      position: relative;
      padding-block: 2%;
    }
    .hero__photo{
    object-fit: contain
    }
    .hero__text-container{
     flex: 960;
     display: flex; 
     align-items: center; 
     justify-content: center;
     padding-inline: 0; 
    }
    .hero__right-text{
     width: 50%;
     object-fit: contain;
     display: block;
    }
    .hero__round-text {
      display: block;
      position: absolute;
      left: initial;
      right: 0; 
      top: 50%; 
      transform: translate(50%, -50%); 
      transform-origin: center center;
      z-index: 10;
      width: 20vw;
      height: auto;
      max-width: 200px; 
      max-height: 200px;
      animation: rotateCircle 20s linear infinite;
  }
}


/* ------sec-001------ */
.sec-001 {
  margin-inline: auto;
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
}
.sec-001 .sec-001-container {
  background-color: var(--sub-color);
  padding-block: 40px;
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
  max-width: 1180px;
}
.sec-001 dl {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.sec-001 dl div {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dashed var(--main-color);
}
.sec-001 dl div:last-child {
  border: none;
}
.sec-001 dt {
  width: 100%;
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.sec-001 dt span {
  display: inline-block;
  font-size: 12px;
  padding: 5px 7px;
  text-align: center;
  background-color: #009043;
  color: var(--white);
  border-radius: 3px;
  margin-right: 10px;
  font-weight: bold;
}
.sec-001 dd {
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 26px;
}
.sec-001 dd a {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .sec-001 dl div dd a:hover {
    font-weight: bold;
  }
}
@media screen and (min-width: 768px) {
  .sec-001 {
    margin-inline: auto;
  }
  .sec-001 .sec-001-list {
    width: 100%;
    max-width: 860px;
    margin-inline: auto;
  }
  .sec-001 .wv-justify {
    margin-inline: 0;
  }
  .sec-001 dl div {
    flex-wrap: nowrap;
    -moz-column-gap: 2vw;
         column-gap: 2vw;
  }
  .sec-001 dl {
    row-gap: 15px;
  }
  .sec-001 dt {
    /* display: flex;
    align-items: center; */
    width: 250px;
    line-height: 1.5;
    letter-spacing: 0.15em;
    margin-bottom: 0;
    padding-bottom: 15px;
  }
  .sec-001 dt span {
    margin-right: 40px;
  }
  .sec-001 dd {
    width: 100%;
    flex-grow: 1;
    max-width: 500px;
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 0;
    padding-bottom: 15px;
  }
}
/* -----sec-002----- */
.sec-002 {
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
}

.sec-002_container {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.sec-002_text h3 {
  font-size: clamp(1.125rem, 0.95rem + 0.75vw, 1.5rem);
  margin-bottom: 20px;
  letter-spacing: 0.07em;
}
.sec-002_text p:not(.common-btn01) {
  text-align: justify;
  text-justify: inter-ideograph;
  letter-spacing: 0.07em;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .sec-002_container {
    flex-direction: row-reverse;
  }
  .sec-002 .wv-justify {
    margin: 0;
  }
  .sec-002 .sec-002_img {
    width: 50%;
    max-width: 500px;
    flex-shrink: 0;
  }
  .sec-002_text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .sec-002_text p:not(.common-btn01) {
    font-size: 16px;
  }
  .sec-002_text .common-btn01 {
    text-align: right;
  }
}
/* ------sec-003----- */
.sec-003 {
  background-color: var(--sub-color);
  max-width: 100%;
}
.sec-003 > div {
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
  max-width: calc(1180px + 2 * clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem));
  margin-inline: auto;
}

.sec-003_container {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.sec-003_container li {
  display: grid;
  gap: 0;
  grid-row: span 3;
  grid-template-rows: subgrid;
}
.sec-003_container li .img-wrapper {
  max-height: 250px;
  overflow: hidden;
}
.sec-003_container li .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.sec-003_container li h3, .sec-003_container li p {
  background-color: var(--white);
  padding: 15px;
}
.sec-003_container li p {
  font-size: 14px;
}
.sec-003_container li h3 {
  padding-bottom: 0px;
  margin-top: 10px;
  text-align: center;
  font-size: clamp(1.2rem, 1.134rem + 0.5vw, 1.4rem);
}

.link-btn{
  text-align: center;
  margin-top: 60px;
}
.link-btn a {
    transition: opacity 0.3s ease;
}
.link-btn a:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* ------sec-004----- */
.sec-004 {
  max-width: calc(1180px + 2 * clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem));
}

.sec-004 > div {
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
}

.sec-004_container {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 30px;
}


.sec-004_container iframe {
  /* ここが100vwになってる 100%に戻すのもあり */
  width: 100vw;
  height: 300px;
}

.sec-004_list div {
  display: flex;
  flex-direction: column;
}
.sec-004_list div dd, .sec-004_list div dt {
  border-bottom: 1px solid var(--main-color);
  width: 100%;
  display: flex;
  justify-content: center;
  padding-block: 15px;
}
.sns-icon{
  padding-block: 15px;
  display: flex; 
  justify-content: center;
  align-items: center; 
}



@media screen and (min-width: 768px) {
  .sec-004_container {
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .sec-004_container iframe {
    margin: 0;
    width: auto;
    flex-grow: 1;
    height: auto;
    aspect-ratio: 16/9;
    min-width: 320px;
  }
  .sec-004_list div {
    min-width: 400px;/* 400px */
    flex-direction: row;
    border-bottom: 1px solid var(--main-color);
    padding-inline: 10px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .sec-004_list div:last-child {
    border-bottom: none;
}
.sns-icon{
    justify-content: flex-end;
    padding-block: 20px;
}
  .sec-004_list div dt, .sec-004_list div dd {
    border: none;
    padding-inline: 0;
    padding-block: 20px;
  }
  .sec-004_list div dt {
    max-width: 100px;
  }
  .sec-004_list div dd {
    justify-content: flex-start;
  }
}


.sec-contact-001 {
  background-color: var(--sub-color);
  max-width: 100%;
}
.sec-contact-001 > div {
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
  margin-inline: auto;
  max-width: calc(1180px + 2 * clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem));
}
.sec-contact-001 .sec-contact-001_container ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.sec-contact-001 .sec-contact-001_container ul .ca-tel a {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.ca-tel .c-right::before {
  content: ''; 
  display: inline-block;
  width: 20px; 
  height: 20px; 
  background-color: #009043; 
  -webkit-mask-image: url('../img/telephone.svg'); 
  mask-image: url('../img/telephone.svg'); 
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  vertical-align: middle;
  margin-right: 20px; 
}
.ca-contact .c-right::before {
  content: ''; 
  display: inline-block; 
  width: 20px; 
  height: 20px; 
  background-color: #009043; 
  -webkit-mask-image: url('../img/mail.svg'); 
  mask-image: url('../img/mail.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  vertical-align: middle; 
  margin-right: 20px; 
}


.sec-contact-001 .sec-contact-001_container ul li a {
  transition: 0.4s;
}
.sec-contact-001 .sec-contact-001_container ul li a span {
  display: block;
  padding-block: 10px;
  text-align: center;
  text-transform: uppercase;
}
.sec-contact-001 .sec-contact-001_container ul li a span:first-child {
  background-color: var(--main-color);
  color: var(--white);
  font-size: clamp(1.5rem, 0.375rem + 4vw, 1.5rem);
  letter-spacing: 0.1em;
}
.sec-contact-001 .sec-contact-001_container ul li a span:nth-child(2) {
  background-color: var(--white);
  /* padding-left: 40px; */
  font-size: clamp(1.125rem, 0.375rem + 3vw, 1.25rem);
}
.sec-contact-001 .sec-contact-001_container ul .ca-contact a {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .sec-contact-001 .sec-contact-001_container ul {
    flex-direction: row;
    justify-content: space-evenly;
  }
  .sec-contact-001 .sec-contact-001_container ul .ca-tel {
    width: 40%;
    max-width: 400px;
  }
  .sec-contact-001 .sec-contact-001_container ul .ca-contact {
    width: 50%;
    max-width: 500px;
  }
}
@media (any-hover: hover) {
  .sec-contact-001_container ul li a:hover {
    opacity: 0.8;
  }
}/*# sourceMappingURL=style.css.map */

/* -----sec-005,sec-005-ver01------ 田口*/
.sec-005{
  margin-inline: auto;
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
}
.sec-005container{
  margin-top: 20px;
  max-width: calc(1180px + 2 * clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem));
  position: relative;
}
.sec-005img img{
  object-fit: cover;
  object-position: center;
  height: 300px;
  width: 1180px;
}
.sec-005inner p{
  background-color: rgba(23, 23, 23,.4);
  color: var(--white);
  letter-spacing: 0.08em;
}
.sec-005-ver01inner p{
  background-color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.07em;
}
.sec-005inner p, .sec-005-ver01inner p{
  position: absolute;
  width: clamp(15rem, 0.68rem + 61vw, 30rem);
  text-align: center;
  padding: 25px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: clamp(0.9rem, 0.75rem + 0.7vw, 1.25rem);
  font-weight: bold;
  backdrop-filter: blur(5px);
}
.sec-005inner p span,.sec-005-ver01inner p span{
  white-space: nowrap;
}
@media screen and (min-width: 768px){
  .sec-005container, .sec-005-ver01container{
    margin-top: 40px;
  }
  .sec-005inner p, .sec-005-ver01inner p{
    width: 570px;
  }
}
/* -----sec-006----- 田口*/
.sec-006{
  max-width: 100%;
  background-color: var(--sub-color);
}
.sec-006container{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
  margin: 20px auto;
  gap: 20px
}
.sec-006img {
  width: 100%;
}
.sec-006img  img{
  object-fit: cover;
  object-position: center;
}
.sec-006chart{
  width: 100%;
}
.sec-006chart dl{
  display: flex;
  font-size: clamp(1rem, 0.88rem + 0.5vw, 1.25rem);
  line-height: 3;
  font-weight: bold;
  gap: 1.5em;
}
.sec-006chart dl dt{
  position: relative;
  width: 5em;
}
.sec-006chart dl dt::after{
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  line-height: 12px;
  background-color: var(--main-color);
  border-radius: 50%;
  top: 1em;
  right: -0.6em;
}
.sec-006chart dl dt::before{
  position: absolute;
  content: "";
  display: block;
  width: 3px;
  height: 6em;
  background-color: var(--main-color);
  top: 1em;
  right: calc(-0.6em + 6px - 1.5px);
}
.sec-006chart :last-child dt::before{
  content: none;
}
.sec-006chart dd{
  width: 70%;
}  
.greeting h3 {
  font-size: clamp(1.125rem, 0.95rem + 0.75vw, 1.5rem);
}
.greeting h3 + p {
  margin: 20px 0;
  line-height: 1.5;
}
.greeting p:last-of-type {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .sec-006container{
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 40px;
    margin-bottom: 0;
    max-width: calc(1180px + 2 * clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem));
    gap: clamp(2.5rem, 1.7rem + 3vw, 4.375rem);
  }
  .sec-006img {
    width: min(80%, 580px);
  }
  .sec-006chart{
    width: max(44.9%, 440px);
  }
  .sec-006chart dl{
    line-height: 4;
  }
  .sec-006chart dl dt{
    width: 20%;
  }
  .sec-006chart dl dt::after{
    width: 15px;
    height: 15px;
    line-height: 15px;
    top: 1.5em;
    right: -0.8em;
  }
  .sec-006chart dl dt::before{
    height: 7em;
    top: 1.5em;
    right: calc(-0.8em + 7.5px - 1.5px);
  }
} 

/* -----sec-007----- 田口*/
.sec-007{
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);

}
.sec-007table{
  margin: 20px auto 0;
  border: var(--main-color) 1px solid;

}
.sec-007table,
.sec-007table tbody,
.sec-007table tr {
    display: block;
    width: 100%;

}

.sec-007table th,
.sec-007table td {
    display: block;
    width: 100%;
    text-align: left;
}

.sec-007table th {
    background-color: var(--main-color);
    color: var(--white);
    padding: 10px;
    font-size: clamp(1em, 0.94rem + 0.25vw, 1.125rem);
    font-weight: bold;
}

.sec-007table td {
    background-color: var(--white);
    padding: 10px;
}
.sec-007table td ul {
  margin-left: 1.5em;
}
.sec-007table td ul li{
  position: relative;
  list-style: disc;

}


@media screen and (min-width: 768px) {
  .sec-007table {
      display: table;
      max-width: 800px;
      border-collapse: collapse;
      margin-top: 40px;
  }
  .sec-007table tbody {
      display: table-row-group;
  }
  .sec-007table tr {
      display: table-row;
      margin-bottom: 0;
  }
  .sec-007table th,
  .sec-007table td {
      display: table-cell;
      width: auto;
      text-align: left;
  }
  .sec-007table td {
    border: 1px solid var(--main-color);
    padding: 10px 20px;
    font-size: 1rem;
  }
  .sec-007table th{
    border-top: 1px solid var(--white);
    text-align: center;
    width: 37.5%;
  }
  .sec-007table tr:first-of-type th{
    border-top: none;
  }
  
}

/* -----sec-008----- 田口*/

.sec-008 {
  background-color: var(--sub-color);
}
.sec-008_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
  margin: 20px auto 40px;
}
.sec-008_container h3 {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
}
.sec-008_container p {
  text-align: justify;
  line-height: 1.7;
  font-size: 14px;
  order: 2;
}
.sec-008_img{
  order: 1;
  width: 100%; 
  aspect-ratio: 4 / 3;
}
.sec-008_img img{
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.sec-008_container:last-of-type{
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .sec-008{
    max-width: 100%;
    padding-top: 25px;
  }

.sec-008>:first-of-type{
  margin-top: 40px;
}

  .sec-008_container {
    flex-direction: row;
    max-width: calc(1180px + 2 * clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem));
    margin: 40px auto 60px;
  }
  
  .sec-008_container h3{
    margin-bottom: 20px;
  }
  .sec-008_container:nth-of-type(odd) .sec-008-textcontainer{
    order: 2;
  }
  .sec-008-textcontainer{
    width: 60%;
  }
  .sec-008_img {
    width:38%;
  }
  .sec-008_container p{
    font-size: 16px;
  }
}

/* -----sec-009----- 田口*/
.sec-009container {
  display: grid;
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 250px以上で自動調整 */
  gap: 20px 30px; 
  max-width: 1100px;
  margin: 20px auto 0; 
  justify-content: center; 
}
.sec-009container img {
  width: 100%;
  aspect-ratio: 300/300;
  object-fit: cover;
  object-position: center; 
  display: block;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .sec-009container {
    margin-top: 40px;
    gap: 40px 50px; 
  }
}

/* -----sec-010----- 田口*/

.sec-010{
  background-color: var(--white);
  max-width: 100%;
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
  z-index: -1;
}
.sec-010_description {
  font-size: clamp(1rem, 0.88rem + 0.5vw, 1.25rem);
  margin-block: 20px 40px;
  text-align: center;
  font-weight: bold;
}
.sec-010_summary {
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #444;
}
.sec-010_description span{
  white-space: nowrap;
}
.sec-010_container{
  max-width: 980px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin-inline: auto;
  counter-reset: step-counter; /* カウンターをリセット */
}
.sec-010_step{
  display: flex;
  align-items: stretch;
  width: 100%;
  background-color: var(--white);
  counter-increment: step-counter; /* カウンターを増加 */
}
.sec-010_step-content{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 15px 15px 30px 15px;
  z-index: 1;
}
.sec-010_step-title {
  font-size: clamp(1rem, 0.88rem + 0.5vw, 1.25rem);
  font-weight: bold;
  margin-bottom: 15px;
}
.sec-010_step-description{
  font-size: clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
  text-align: justify;
  line-height: 1.7;
  }
/* ステップのアイコン */
.sec-010_step-icon {
  width:calc(156px * 2/3);
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.sec-010_step-icon-middle{
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow:1;
  height: auto;
}
.sec-010_step-icon-upper{
  content: "";
  display: block;
  flex-basis: 20px;
  width: 100%;
  flex-grow: 0;
  margin-bottom: -2px;
  margin-top: -5px;
}
.sec-010_step-icon-lower{
  content: "";
  flex-basis: calc(70px * 2/3);
  width: 100%;
  flex-shrink: 0;
  mask-image: url(../img/sec-010_step-lower.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  margin-top: -2px;
  margin-bottom: -10px;
}
.sec-010_container div:first-of-type .sec-010_step-icon .sec-010_step-icon-upper{
  mask-image: url(../img/sec-010_step1-upper.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  flex-basis: calc(80px * 2/3);
  margin-top: -10px;
}
.sec-010_container div:last-of-type .sec-010_step-icon .sec-010_step-icon-lower{
  mask-image: url(../img/sec-010_step4-lower.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  flex-basis: calc(80px * 2/3);
  margin-bottom: -15px;
}
/* STEPの文字と番号を縦に配置 */
.sec-010_step-icon-middle::before {
  content: "STEP";  /* "STEP" のみ表示 */
  font-size: clamp(1rem, 0.88rem + 0.5vw, 1.25rem);
  font-weight: bold;
  }
.sec-010_step-icon-middle::after {
  content: counter(step-counter); /* 番号を表示 */
  font-size: clamp(2.25rem, 1.668rem + 2.48vw, 3.5rem);  /* 番号のフォントサイズ */
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 768px) {
.sec-010_description {
  margin-block: 40px 80px;
}
.sec-010_container{
  gap: 34px;
  }
.sec-010_step-icon {
  width:156px;
  top: -10px;
  margin-left: 20px;
}
.sec-010_step-icon-upper{
  content: "";
  flex-basis: 40px;
}
.sec-010_step-icon-lower{
  content: "";
  flex-basis: 70px;
  margin-bottom: -20px;
}
.sec-010_container div:first-of-type .sec-010_step-icon .sec-010_step-icon-upper{
  flex-basis: 80px;
  margin-top: -40px;
}
.sec-010_container div:last-of-type .sec-010_step-icon .sec-010_step-icon-lower{
  flex-basis: 80px;
  margin-bottom: -43px;
}
.sec-010_step-content{
  padding: 30px 30px 60px 40px;
}
}


/* -----sec-011---- */

.sec-011 {
  padding: 4rem 1rem;
}

.sec-011 h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.sec-011-lead {
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.sec-011-steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  min-width: 80px;
  background: #ccc;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 1rem;
  font-size: 0.9rem;
  border-radius: 4px;
  line-height: 1.4;
}

.step-number span {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-top: 0.25rem;
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.step-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    margin-bottom: 0.5rem;
  }
}

/* ------sec-020----- */

.sec-020_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
  margin: 20px auto;
  gap: 30px;
}

.sec-020_list div {
  display: flex;
  flex-direction: column;
}

.sec-020_list div dd, .sec-020_list div dt {
  border-bottom: 1px solid var(--main-color);
  width: 100%;
  display: flex;
  justify-content: center;
  padding-block: 15px;
}

.sec-020img img{
  width: 100%;
}
.shop-link{
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #009043;
}

.shop-link:visited {
  color: purple;
}

.shop-link::after {
  content: '';
  position: absolute;
  left: -10px;
  width: calc(100% + 20px);
  bottom: -2px;
  height: 2px; /* 下線の太さ */
  background-color: var(--main-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}

.shop-link:hover::after {
   transform: scaleX(1);
}

.shop-link::before { 
  content: ''; 
  display: inline-block; 
  width: 16px; 
  height: 16px; 
  -webkit-mask-image: url('../img/link_icon.svg'); 
  mask-image: url('../img/link_icon.svg'); 
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  vertical-align: middle; 
  margin-right: 5px; 
}

@media (min-width: 768px) {
  .sec-020_container{
    margin-top: 40px;
    margin-bottom: 0;
    padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
    flex-direction: row-reverse;
    justify-content: space-between;
    row-gap: 30px;
  }

  .sec-020_list{
    flex-grow: 1;
  }

  .sec-020img {
    max-width: 500px;
  }

  .sec-020img  img{
    object-fit: cover;
    object-position: center;
  }

  .sec-020_list dl div{
    border-bottom: 1px solid var(--main-color);
    display: flex;
    flex-direction: row;
    padding-inline: 20px;
    column-gap: 20px;
  }

  .sec-020_list dl div dt {
    padding-block: 20px;
    display: flex;
    justify-content: center;
    max-width: 100px;
    width: 100%;
    border-style: none;
  }
   .sec-020_list dl div dd{
    padding-block: 20px;
    border-style: none;
    justify-content: flex-start;
}
}
/* ------sec-021----- */


/* ==================================== */
/* 共通スタイル & SP（スマートフォン）向けスタイル */
/* ==================================== */

.sec-021 {
    padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
}
.sec-021 article ul li{
  list-style-type: square;
}
.sec-021 article ol li{
  list-style-type: decimal;
}
.sec-021 ul,.sec-021 ol{
  padding-left: 20px;
}
.sec-021 article{
  p,ul,ol,div{
    margin-bottom: 10px;
  }
}

.sec-021 article{
  scroll-margin-top: 100px;
}

.sec-021 article {
    border: 2px solid #333;
    border-radius: 20px;
    padding-block: clamp(1rem, 1.25rem + 1vw, 1.875rem);
    padding-inline: clamp(0.813rem, 0.528rem + 1.22vw, 1.5rem);
}

.sec-021 article:not(:first-child) {
    margin-block: clamp(12px, 1rem + 0.8vw, 20px);
}

.sec-021 article > div:first-child {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px dashed #333;
    max-width: 230px;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.sec-021 article > div:first-child > span {
    background-color: #009043;
    border-radius: 5px;
    color: var(--white);
    padding: 0.2em 0.6em 0.3em;
    font-size: 0.75em;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.sec-021 article > h2 {
    font-size: clamp(1.125rem, 0.97rem + 0.66vw, 1.5rem); 
    margin-bottom: 10px;
}

.sec-021 article dl div {
    display: flex;
}

.sec-021 article > div:not(:first-child) {
    margin-top: clamp(12px, 1.25rem + 0.5vw, 20px); 
}

.sec-021 article div:has(img) {
    display: flex; 
    flex-direction: column; 
    gap: clamp(20px, 2vw, 30px);
    align-items: center; 
}
.sec-021 article div:has(img) > div:first-child {
    flex-shrink: 0;
    width: 100%; /* SPでは幅を80%に調整 */
    height: auto;
    border-radius: 5px;
    overflow: hidden;
}

.sec-021 article div:has(img) img {
    width: 100%;
    height: auto;
    display: block;
}

.sec-021 article div:has(img) div:last-child {
    flex-grow: 1;
    font-size: clamp(0.9rem, 1rem + 0.1vw, 1.1rem); 
    text-align: left; 
}

.sec-021 article p a {
    background: linear-gradient(135deg, var(--main-color), #5A9E50);
    color: white;
    padding: clamp(10px, 0.8rem + 0.5vw, 15px) clamp(20px, 1.5rem + 1vw, 30px);
    border: none;
    font-size: clamp(13px, 1rem + 0.3vw, 18px);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    white-space: nowrap; 
    margin-top: clamp(12px, 1.3rem + 0.5vw, 25px);
    display: block;
    margin-inline: auto; 
    display: inline-block; 
}

.sec-021 article p a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-top: 10px solid transparent;
    border-right: 10px solid #009043;
    border-bottom: 10px solid #009043;
}

.sec-021 article p a:hover {
    transform: translateY(-2px); 
    background: linear-gradient(135deg, #7DC475, #6BAA5D); 
}



/* ==================================== */
/* PC（デスクトップ・タブレット）向けスタイル */
/* min-width: 768px 以上で適用 */
/* ==================================== */
@media screen and (min-width: 768px) {
    /* 記事内の画像とテキストの横並びレイアウトをPCで適用 */
    .sec-021 article div:has(img) {
        flex-direction: row; /* PCでは横並びに */
        align-items: flex-start; /* 上端を揃える */
    }

    /* 画像のラッパー（PCでは幅を調整） */
    .sec-021 article div:has(img) div:first-child {
        width: clamp(200px, 25vw, 300px); /* PCでの画像幅 */
        margin-bottom: 0; /* PCでは画像下の余白を削除 */
    }
}

/* ==================================== */
/* ホバー効果（PCでのみ適用されることが想定） */
/* ==================================== */
@media (any-hover: hover) {
    /* 「READ MORE」ボタンのホバー */
    .sec-021 > p > a {
        transition: 0.4s;
    }
    .sec-021 > p > a:hover {
        background-color: var(--main-color);
        color: var(--white);
    }
    .sec-021 > p > a:hover::before,
    .sec-021 > p > a:hover::after {
        background-color: var(--white);

    }

    /* 記事内の青いグラデーションボタンのホバー */
    .sec-021 article > p a:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 10px rgba(74, 144, 226, 0.4);
        background: linear-gradient(135deg, #7DC475, #6BAA5D);
    }
}

/* ------sec-013----- */

.sec-013_container{
  max-width: calc(1180px + 2 * clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem));
  margin: 0px auto 70px;
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
}
.sec-013_container > h2.common-heading-003{
  margin-bottom: 40px;
}

.faq-container{
  margin-bottom: 70px;
}

.faq-container dt {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5em;
cursor: pointer;
border-bottom: 3px solid #e5e5e5;
}

.dt-left {
display: flex;
align-items: center;
}

.dt-left .dt-text{
  display: flex;
}

.dt-left .dt-text::before {
  content: "Q."; 
  margin-right: 0.5em;
  color: #888;
  }  

.arrow-icon {
display: block;
width: 24px;
height: 24px;
margin-left: 10px;
flex-shrink: 0;
background-image: url(../img/w-b-arrow-r.png);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
transform: rotate(90deg);
transition: transform 0.3s ease-out;
}

dt.faq-open .arrow-icon {
  transform: rotate(-90deg); 
}

.faq-container dd {
  display: none;
  padding: 1.5em;
  background-color: #f9f9f9;
  }

.faq-container dd .faq-dd-inner {
  display: flex;
  align-items: flex-start;
  }

.faq-container dd .faq-dd-inner::before {
content: "A."; 
display: inline-block;
margin-right: 0.5em;
color: #888;
font-weight: bold;
}


/* -----sec-014----- */
.sec-014_container{
      margin-bottom: 0;
      max-width: calc(1180px + 2 * clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem));
      margin: 0px auto 60px;
      padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
}
.center-wrapper{
  display: flex;
  justify-content: center;
}
.center-wrapper p{
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-block{
  margin: 40px auto;
}
.policy-block h2{
  border-left: 3px solid #333;
  padding-left: 0.8em;
}
.policy-block p{
  padding: 1em;
}

/* -----お問い合わせ -----田口*/

.contact {
  padding: 40px clamp(1.25rem, -0.54rem + 7.63vw, 3.125rem);
  font-size: clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
}
.contact-form-container {
  max-width: 1180px; 
  margin: 40px auto 0;
  background: var(--sub-color); 
  padding: 20px;
  border-radius: 10px;
}
/* レイアウト*/
.contact-center{
  text-align: center;
}
.contact-underline{
  text-decoration: underline #555;
  text-underline-offset: 2px;
  a{
    font-weight: bold;
  }
}
.contact-form-container form dl{
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}
.contact-form-container form dl dt {
  width: min(100%, 440px);
  text-align: start;
  font-weight: 400;
  margin: 0 auto;
}
.contact-form-container form dl dt label{
  width: 100%;
}
.contact-form-container form dl dd  {
  width: min(100%, 440px);
  margin: auto;
}
.contact-form-container form dl dd input, 
.contact-form-container form dl dd textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
}
.contact-form-container textarea{
  height: 10em;
}
.contact-required {
  color: #da1725;
}
/* 送信ボタン */
.contact-submit-button {
  display: block;
  width: 260px;
  background-color: var(--button02-color);
  color: var(--white);
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  margin: 30px auto;
  transition: 0.4s;
}
.contact-submit-button:hover {
  background-color: var(--main-color);
}
.contact-policy span a{
 font-weight: bold;
 text-decoration-color: var(--base-color);
 transition: 0.4s;
}
.contact-policy span a:hover {
  opacity: 0.7;
}
/* 必須項目の説明 */
.contact-note{
  max-width: 440px;
  margin: 0 auto 30px;
  text-align: end;
}
 .contact-note span {
  color: #da1725;
}
@media screen and (min-width: 768px) {
  .contact-p{
    line-height: 2;
  }
  .contact-form-container form dl{
    flex-direction: row;
    max-width: 650px;
    margin: 30px auto 0; 
  }
  .contact-form-container form dl dt {
    width: 200px;
  }
  .contact-note{
    max-width: 650px;
  }
}

/*　施工実績　　藤田　*/
.sec-work001{
  .work-gallery-text{
  p,ul,ol{
    margin-bottom: 10px;
  }
  ul{
    list-style-type: disc;
    padding-left: 20px;
  }
  ol{
    list-style-type: decimal;
    padding-left: 20px;
  }
  }
  padding-inline: 1.5%;
  scroll-margin-top: 80px;
}

.sec-work001-gallery-inner > div {
  display: flex;
  gap: 30px;
} 
.sec-work001-gallery-inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 15px;
  background-color: var(--main-color);

}
.sec-work001-hb-btn {
  width: fit-content;
  margin-bottom: 10px; 
  padding: 0.4rem 0.5rem 0.5rem;
  border-radius: 4px;
  font-size: 14px;
  color: var(--white);
  background-color:  var(--main-color);
}

.sec-work001-slide-container {
  margin: auto;
  width: 60%;
  /* max-width: 680px; */
  flex-shrink: 0;
}

.sec-work001-GalleryMainImg-wrapper {
  position: relative;
  text-align: center;
  overflow: hidden;
  margin: auto;
}

.sec-work001-GalleryMainImg-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.wg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background:none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
}
/* ギャラリー矢印位置調整 */
.wg-arrow.wg-arrow-left {
  left: 10px;
}
.wg-arrow.wg-arrow-right {
  right: 10px;
}

/* ギャラリーサムネ */
.work-gallery-thumbnail-wrapper {
  margin-top: 8px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--step-color01);
}
.work-gallery-thumbnails {
  display: flex;
  margin: 10px auto;
  width: 94%;
  justify-content: center;
}
.work-gallery-thumbnails li{
   flex: 0 0 auto;
}
.work-gallery-thumbnails img {
  object-fit: cover;
  cursor: pointer;
  border: 3px solid transparent;
  width: 15vw;
  height: 100%;
  max-width: 200px;
  margin-inline: 5px;
  aspect-ratio: 3/2;
}
.work-gallery-thumbnails img.active {
  border-color: var(--main-color);
}
.wg-thumb-arrow.wg-arrow.wg-arrow-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.wg-thumb-arrow.wg-arrow.wg-arrow-right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.fade-in {
  opacity: 1;
}

/* スライドショー切り替えフェード */
.sec-work001-GalleryMainImg-wrapper { position: relative; }
.work-gallery-mainImg { display:block; width:100%; height:auto; }
.work-gallery-mainImg--next {
  position:absolute; inset:0;
  width:100%; height:100%; object-fit: cover; /* 要らなければ外す */
  opacity:0; transition: opacity .35s ease;
  pointer-events:none;
}


.work-gallery-text {
  h3 {
    font-size: clamp(18px,4vw,24px); 
    margin-bottom: clamp(20px,4vw,40px);
    &::after {
      content: "";
      display: block;
      width: 285px;
      height: 4px;
      background-image: url(../img/wg-h-line.svg);
      margin-top: 10px;
    }
  }
  p {
    font-size: clamp(14px,4vw,16px);
    letter-spacing: 0.9px;
    line-height: 1.7;
  }
}

@media screen and (max-width: 768px) {
  .sec-work001-gallery-inner > div{
    display: block;
  }
  .sec-work001 {
    margin: 0 1rem;
  }
  .sec-work001-slide-container {
    width: 100%;
    margin: auto;
  }
  
  .sec-work001-GalleryMainImg-wrapper
 {
    width: 100%;
    height: 100%;
  }
  .work-gallery-thumbnails img {
    width: 23vw;
    border-radius: 0;
    object-fit: cover;
  }
  .wg-arrow.wg-arrow-left {
    display: none;
  }
  .wg-arrow.wg-arrow-right {
    display: none;
  }
  .wg-thumb-arrow.wg-arrow.wg-arrow-left {
    display: inline-block;
    width: 13px;
    padding: 0;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
  }
  .wg-thumb-arrow.wg-arrow.wg-arrow-right {
    display: inline-block;
    width: 13px;
    padding: 0;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
  }
  h3 {
    margin-top: 20px;
  }
}
/* ページネーション */
.sec-work001-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  gap: 10px;
  margin-bottom: 120px;

  p {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--sub-color);
    width: 26px;
    height: 31px;
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
    padding-bottom: 3px; 

    &:hover {
      background-color: var(--step-color02);
      transition: all 0.4s ease-in-out;
    }
  }

  a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;

    img {
      width: 8px;
      height: auto;
      display: block;
    }
  }
  .wg-pagination-prev {
    border-radius: 12px 0;
    padding-top: 3px;
  }
  .wg-pagination-next {
    border-radius: 0 12px;
    padding-top: 3px;
  }
  /* 現在表示のページリンク／背景色変更／リンク無効化 */
  p.wg-current {
    background-color: var(--main-color); 
    pointer-events: none;
    color: #fff;
    font-weight: bold;
  }
}


/* sec-022 */
.sec-022 {
  /* background-color: var(--sub-color); */
  max-width: 100%;
}
.sec-022 > div {
  padding-inline: clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem);
  max-width: calc(1180px + 2 * clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem));
  margin-inline: auto;
}
.work-cards-container{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px; 
  margin-bottom: 20px;
}
.work-card-image-wrapper{
  width: 100%;
  aspect-ratio: 1 / 1; 
  overflow: hidden;
  display: flex; 
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
.work-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: filter 0.3s ease;
}  
.work-card-item h3{
  margin-block: 10px;
  font-size:clamp(0.75rem, 0.662rem + 0.38vw, 1rem);
}
.work-card-link .work-card-image-wrapper img {
  transition: 0.5s;
}
.work-card-link:hover .work-card-image-wrapper img {
  transform: scale(1.05);
}
.sec-022 .label{ 
    display: inline-block;
    font-size: 12px;
    padding: 5px 7px;
    text-align: center;
    background-color: var(--main-color);
    color: var(--white);
    border-radius: 3px;
    margin-bottom: 10px;
} 
@media screen and (max-width: 768px){
  .work-cards-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }
}


/* newsモーダル用 */
/* モーダルの初期状態（非表示） */

.sec-021 article div:has(img) img{
  cursor: zoom-in;
}

#imageModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 5%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

#imageModal p{
  position: relative;
  width: fit-content;
}

/* モーダル内の画像 */
#imageModal img {
    width: 100%;
    max-width: 980px;
    max-height: 80vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* 閉じるボタン */
#closeModal {
    position: absolute;
    top: -20px;
    right: -20px;
    color: var(--text-color);
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 9px 10px 11px;
    line-height: 20px;
    background-color: #fff;
    border-radius: 50%;
}

/* お問い合わせ完了 */

.page-thanks main{
  min-height: calc(100vh - 150px);
}

@media screen and (min-width: 768px) {
  .page-thanks main{
  min-height: calc(100vh - 170px);
}
}
  
.contact-thanks{
 padding-inline: 5%;
 h3{
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
 }
 p{
  margin-bottom: 5px;
 }
}
@media screen and (min-width: 768px) {
  .contact-thanks p{
    text-align: center;
  }
}