@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.0.1/dist/css/yakuhanjp.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

:root {
  font-size: 16px;
  --font_family: YakuHanJP, "Noto Sans JP", sans-serif;
  --primary_green: hsl(178, 44%, 46%);
  --primary_orange: hsl(11, 89%, 67%);
  --white: hsl(0, 0%, 100%);
  --bg: hsl(0, 0%, 95%);
  --bg_green_color: hsl(180, 22%, 91%);
  --text_color: hsl(178, 45%, 12%);
  --shadow_color: rgba(0, 0, 0, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  width: 100%;
  color: var(--text_color);
  line-height: 1.5;
  letter-spacing: 0.05rem;
  background-color: var(--bg);
  font-family: var(--font_family);
  @media screen and (max-width: 768px) {
    line-height: 1.8;
  }
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}

/*------------------------------
  common
------------------------------*/
.sp {
  display: none;
  @media (max-width: 768px) {
    display: block;
  }
}
.pc {
  display: block;
  @media (max-width: 768px) {
    display: none;
  }
}
h2 {
  margin-bottom: 40px;
  font-size: 32px;
  color: var(--primary_green);
  text-align: center;
  @media (max-width: 768px) {
  }
}
.small_txt {
  font-size: 12px;
}
.wrapper {
  max-width: 995px;
  margin: 0 auto;
  @media (max-width: 1023px) {
    max-width: 840px;
    padding: 80px 20px;
  }
  @media (max-width: 768px) {
    padding: 80px 16px;
  }
}

/*---フェードインアニメーション---*/
.fade-in-element {
  opacity: 0;
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
  -webkit-transition:
    opacity 0.4s ease-out,
    -webkit-transform 0.4s ease-out;
  will-change: opacity, transform;
}
.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/*------------------------------
  header KV
------------------------------*/
.kv_header_wrapper {
  position: relative;
  & header {
    position: absolute;
    width: 100%;
    z-index: 100;
    & .header_wrapper {
      max-width: 1030px;
      margin: 0 auto;
      padding: 10px 0;
      @media screen and (max-width: 768px) {
        padding: 10px 16px;
      }
      & .header_logo {
        & img {
          width: 60px;
        }
      }
    }
  }
  .kv {
    position: relative;
    background: url(cc-1_pc_fv_bg.svg) no-repeat 0;
    background-position: top;
    background-size: 100%;

    @media screen and (max-width: 768px) {
    }
    & .kv_wrapper {
      display: flex;
      justify-content: space-between;
      max-width: 1030px;
      margin: 0 auto 240px;
      padding: 60px 0 120px;
      @media screen and (max-width: 768px) {
        display: block;
        margin: 0 auto 180px;
        padding: 35px 10px 10px;
      }
      & .kv_title_area {
        margin-top: 120px;
        @media screen and (max-width: 768px) {
          margin-top: 60px;
        }
        & .kv_sub_ttl {
          margin-bottom: 20px;
          font-size: 30px;
          font-weight: 500;
          background: linear-gradient(transparent 80%, #ffe713 50%);
          color: var(--primary_green);
          @media screen and (max-width: 768px) {
            font-size: 5.2vw;
            line-height: 1.2;
            background: linear-gradient(transparent 70%, #ffe713 50%);
          }
        }
        & .kv_main_ttl {
          margin-bottom: 30px;
          font-size: 32px;
          font-weight: 600;
          line-height: 1.3;
          @media screen and (max-width: 768px) {
            margin-bottom: 280px;
            font-size: 6vw;
          }
        }
        & .kv_point_wrapper {
          display: flex;
          justify-content: space-between;
          margin-bottom: 40px;
          @media screen and (max-width: 768px) {
            margin-bottom: 30px;
          }
          & .kv_point_item {
            box-shadow: 0px 4px 10px 0px rgba(65, 169, 165, 0.2);
            border-radius: 10px;
            @media screen and (max-width: 768px) {
              width: 32%;
            }
            & img {
              display: block;
              width: 100%;
            }
          }
        }
        & .fv_btn {
          a {
            width: 100%;
            display: inline-block;
            padding: 20px 50px;
            font-size: 20px;
            text-align: center;
            color: var(--white);
            background: var(--primary_orange);
            border: 2px solid var(--primary_orange);
            border-radius: 60px;
            justify-items: center;
            align-content: center;
            transition: 0.3s;
            &:hover {
              color: var(--primary_orange);
              background: var(--white);
            }
          }
        }
      }
      & .kv_image {
        width: 43%;
        @media screen and (max-width: 768px) {
          position: absolute;
          width: 100%;
          top: 50vw;
          z-index: -1;
        }
      }
    }
  }
}

/*------------------------------
  WILLOFが解決
------------------------------*/
.solution {
  position: relative;
  padding: 200px 0 80px;
  background: var(--bg_green_color);
  z-index: -10;
  @media screen and (max-width: 768px) {
    padding: 120vw 20px 80px;
  }
  & .bg_curve_top {
    width: 100vw;
    position: absolute;
    left: 0;
    top: -9vw;
  }
  & .worries_wrapper {
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    width: 1030px;
    @media screen and (max-width: 768px) {
      display: block;
      width: 100%;
      padding: 0 20px;
      top: -80px;
    }
  }
  & .solution_txt_wrapper {
    position: relative;
    padding-bottom: 200px;
    text-align: center;
    @media screen and (max-width: 768px) {
      padding-bottom: 60px;
    }
    & .solution_sub_txt {
      font-size: 28px;
      font-weight: 500;
      @media screen and (max-width: 768px) {
        font-size: 17px;
      }
    }
    & .solution_main_txt {
      font-size: 40px;
      color: var(--primary_green);
      font-weight: 700;
      @media screen and (max-width: 768px) {
        font-size: 28px;
        line-height: 1.4;
      }
    }
    & img {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 50%;
      min-width: 800px;
      z-index: -1;
      @media screen and (max-width: 768px) {
        width: 100%;
        min-width: auto;
        top: auto;
        bottom: 16px;
      }
    }
  }
  & .solution_point_wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1030px;
    margin: 0 auto;
    @media screen and (max-width: 768px) {
      display: block;
    }
    & .solution_point_item {
      width: 32%;
      @media screen and (max-width: 768px) {
        width: 100%;
        margin-bottom: 60px;
      }
      & .solution_point_txt_wrapper {
        margin-top: -20px;
        padding: 30px;
        background: var(--white);
        border-radius: 10px;
        box-shadow: 0px 4px 10px 0px rgba(65, 169, 165, 0.2);
        @media screen and (max-width: 768px) {
          margin-top: -40px;
        }
        & ul {
          & .solution_point_ttl {
            padding-bottom: 20px;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary_green);
            text-align: center;
            & .emphasis_txt {
              font-size: 30px;
              color: var(--primary_orange);
            }
            & .solution_small_txt {
              display: block;
              margin-top: -4px;
              font-size: 10px;
              font-weight: 300;
              color: var(--text_color);
            }
          }
          & .solution_point_detail {
            @media screen and (max-width: 768px) {
              line-height: 1.6;
            }
          }
        }
      }
    }
  }
}

/*------------------------------
  お問い合わせ
------------------------------*/
.contact {
  position: relative;
  background: var(--bg_green_color);
  padding: 80px 0;
  @media screen and (max-width: 768px) {
    padding: 0 16px 80px;
  }
  & .contact_wrapper {
    max-width: 995px;
    height: 100%;
    margin: 0 auto;
    padding: 40px 80px;
    background: var(--white);
    border-radius: 10px;
    @media screen and (max-width: 928px) {
      height: 100%;
    }
    @media screen and (max-width: 768px) {
      height: 1340px;
      padding: 10px;
    }
  }
  & .bg_curve_bottom {
    width: 100vw;
    position: absolute;
    left: 0;
    bottom: -9vw;
  }
}

/*------------------------------
  会社概要
------------------------------*/
.overview {
  margin: 200px 0 200px;
  z-index: 20;
  position: relative;
  background: #f2f2f2;
  padding-top: 60px;
  margin-top: 140px;
  @media screen and (max-width: 768px) {
    margin: 80px 0 120px;
    padding: 0 20px;
  }
  .overview_wrapper {
    @media screen and (max-width: 1023px) {
    }
    @media screen and (max-width: 768px) {
    }
    & .txt-area {
      max-width: 800px;
      margin: 0 auto;
      & table {
        & tbody {
          & tr {
            &:last-of-type {
              th,
              td {
                border-bottom: none;
              }
            }
            & th {
              width: 32%;
              padding: 30px 0;
              vertical-align: top;
              border-right: 3px solid var(--bg);
              border-bottom: 3px dotted var(--primary_green);
              font-size: 18px;
              font-weight: bold;
              text-align: left;
              color: var(--primary_green);
              @media screen and (max-width: 1023px) {
                width: 100%;
                padding: 30px 20px 20px;
                font-size: 18px;
                text-align: left;
                border-bottom: none;
              }
            }
            & td {
              padding: 30px;
              font-size: 16px;
              vertical-align: top;
              border-bottom: 3px dotted var(--primary_green);
              @media screen and (max-width: 1023px) {
                padding: 0 20px 40px;
              }
              & a {
                color: var(--text_color);
                border-bottom: 1px solid var(--text_color);
                transition: 0.3s;
                &:hover {
                  opacity: 0.6;
                }
              }
              & p {
                margin-bottom: 20px;
                &:last-child {
                  margin-bottom: 0;
                }
              }
            }
          }
        }
      }
    }
  }
}
@media screen and (max-width: 1023px) {
  .txt-area table tbody,
  .txt-area table tbody tr th,
  .txt-area table tbody tr td {
    display: block;
    width: 100%;
  }
}

/*------------------------------
  フッター
------------------------------*/
.footer {
  background: var(--primary_green);
  padding: 20px 0;
  text-align: center;
  color: var(--white);
}

/* thanks_page */

.thanks_main_wrapper {
  width: 100%;
  min-height: 100vh;
  background: var(--bg_green_color);
  position: relative;
  overflow: hidden;
}

.thanks_main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  width: 100%;
  padding: 0 16px;
}

.thanks_title {
  font-size: 32px;
  color: #112d2c;
  font-weight: 700;
  text-align: center;
  margin-bottom: 46px;
  line-height: 1.4;
}

.thanks_text {
  font-size: 16px;
  color: #112d2c;
  margin-bottom: 24px;
}

.thanks_text:last-child {
  margin-bottom: 60px;
}

.thanks_text--mail {
  text-align: center;
  color: #112d2c;
}

.thanks_text--mail_link {
  color: #112d2c;
  text-decoration: underline;
}

.thanks_footer {
  background: var(--primary_green);
  padding: 20px 0;
  text-align: center;
  color: var(--white);
  position: fixed;
  bottom: 0;
  width: 100%;
}

.thanks_image {
  position: absolute;
  right: -20%;
  bottom: -50%;
}
.br_block {
  display: none;
}

@media (width < 768px) {
  .br_block {
    display: block;
  }

  .thanks_main_wrapper {
    height: 100vmax;
  }

  .thanks_title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .thanks_footer {
    max-height: 57px;
    line-height: 0;
  }

  .thanks_footer small {
    font-size: 12px;
  }

  .thanks_image {
    position: static;
    width: 160px;
    height: 165px;
    display: block;
    margin-left: auto;
  }
}
