:root {
  --color1: #ffc207;
  --color2: #038e4a;
  /* ボーダー */
  --border: 1px solid #dcdcdc;
  /* トランジション */
  --trans: all 0.3s;
  /* 装飾内bgカラー */
  --bg-color: radial-gradient(
    closest-side,
    rgba(147, 209, 176, 1),
    rgba(177, 226, 169, 1)
  );
  /* シャドー */
  --shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.06);
  /* グラデーション */
  --grade: linear-gradient(180deg, rgba(255, 221, 7, 1), rgba(255, 182, 7, 1));
}
/*------------------------------------------------------------------------------------------

共通項目

------------------------------------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  color: #333;
  overflow-x: hidden;
  line-height: 1.5;
  position: relative;
  background-image: url(../img/background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.flex {
  display: flex;
}
a {
  width: fit-content;
}

img {
  border-radius: 40px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*------------------------------------------------------------------------------------------

レイアウト

------------------------------------------------------------------------------------------*/

section {
  padding: 80px 0;
  @media screen and (max-width: 768px) {
    padding: 40px 0;
  }
}

.inner1 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  @media screen and (max-width: 1300px) {
    width: calc(100% - 100px);
  }
  @media screen and (max-width: 768px) {
    width: calc(100% - 40px);
  }
}
.inner1.il {
  width: calc(100% - 40px);
}

.inner2 {
  width: calc(100% - 100px);
  margin: 0 auto;
  max-width: 1451px;
  @media screen and (max-width: 768px) {
    width: calc(100% - 20px);
  }
}
.inner2.il {
  @media screen and (max-width: 768px) {
    width: calc(100% - 40px);
  }
}

/*------------------------------------------------------------------------------------------

margin

------------------------------------------------------------------------------------------*/
.mb160 {
  margin-bottom: 160px;
}
.mb120 {
  margin-bottom: 120px;
}
.mb100 {
  margin-bottom: 100px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb10 {
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .mb160 {
    margin-bottom: 80px;
  }
  .mb120 {
    margin-bottom: 60px;
  }
  .mb100 {
    margin-bottom: 50px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .mb60 {
    margin-bottom: 30px;
  }
  .mb40 {
    margin-bottom: 20px;
  }
  .mb30 {
    margin-bottom: 15px;
  }
  .mb20 {
    margin-bottom: 10px;
  }
  .mb10 {
    margin-bottom: 5px;
  }
}

.f-m {
  font-weight: 500;
}
.f-b {
  font-weight: 700;
}

.section-title-area {
  text-align: center;
}

.sec-title {
  font-size: clamp(1.875rem, 1.25rem + 1.3021vw, 2.5rem);
  line-height: 1.5;
}

.sub-title {
  color: var(--color2);
  font-size: 20px;
  font-weight: 700;
  @media screen and (max-width: 500px) {
    font-size: 16px;
  }
}

.desc {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  @media screen and (max-width: 500px) {
    font-size: 14px;
  }
}

.text-center {
  text-align: center;
}

/*------------------------------------------------------------------------------------------

区切り線スタイル

------------------------------------------------------------------------------------------*/

.line-top {
  width: 100vw;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
  img {
    width: 100%;
    border-radius: 0;
  }
}

.line-bottom {
  width: 100vw;
  margin-top: -1px;
  position: relative;
  z-index: 2;
  img {
    width: 100%;
    border-radius: 0;
  }
}

/* 装飾内のbg */
.contents-bg {
  /* background-color: var(--bg-color); */
  background-image: var(--bg-color);
}

/*------------------------------------------------------------------------------------------

ボタン

------------------------------------------------------------------------------------------*/

.btn {
  display: flex;
  justify-content: center;
  background-image: var(--grade);
  padding: 20px 30px;
  border-radius: 100px;
  transition: var(--trans);

  span {
    width: 100%;
    color: #333;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 14px;
  }
}
.btn.il {
  background-color: #06c755;
  transition: var(--trans);
}
.btn:hover {
  background-color: #112709;
  box-shadow: var(--shadow);
  scale: 1.03;
}
.btn.il:hover {
  background-color: #0bd35e;
  box-shadow: var(--shadow);
}

.center {
  margin: 0 auto;
}

/*------------------------------------------------------------------------------------------

トップに戻るボタン

------------------------------------------------------------------------------------------*/
.to-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--color2);
  display: grid;
  place-items: center;
  z-index: 333;
  transition: var(--trans);
  padding: 17px;
  @media screen and (max-width: 500px) {
    width: 48px;
    height: 48px;
    right: 10px;
    padding: 12px;
  }
  img {
    width: 16px;
    @media screen and (max-width: 500px) {
      width: 12px;
    }
  }
}
.to-top-btn:hover {
  translate: 0 -5px;
}

/* 記事一覧へのボタン */
.to-news-btn {
  display: block;
  font-size: 16px;
  padding-bottom: 4px;
  border-bottom: var(--border);
  margin-left: auto;
  transition: var(--trans);
}
.to-news-btn:hover {
  color: var(--color2);
}

@media screen and (max-width: 960px) {
  .to-news-btn {
    font-size: 14px;
  }
}

/*------------------------------------------------------------------------------------------

2カラム
1:1

------------------------------------------------------------------------------------------*/
.flex-2c-1-1 {
  display: flex;
  gap: clamp(1.25rem, -2.5rem + 7.8125vw, 5rem);
  align-items: center;
  justify-content: center;
  .img-area,
  .text-area {
    flex: 1;
  }
  h3 {
    font-size: 30px;
    font-weight: 700;
    @media screen and (max-width: 667px) {
      font-size: 20px;
    }
  }
}
@media screen and (max-width: 960px) {
  .flex-2c-1-1 {
    flex-direction: column;
    gap: 20px;
    .btn {
      margin: 0 auto;
    }
  }
}

/*------------------------------------------------------------------------------------------

2カラム
1:2

------------------------------------------------------------------------------------------*/
.flex-2c-1-2 {
  display: flex;
  gap: clamp(1.875rem, 0rem + 3.9063vw, 3.75rem);
  .img-area {
    aspect-ratio: 1;
    max-width: 380px;
    max-height: 380px;
  }
  .text-area {
    flex: 1;
    h3 {
      font-size: 30px;
    }
    ul {
      li {
        display: flex;
        padding: 20px 0;
        border-bottom: var(--border);
        .l-cont {
          width: 120px;
          .tag {
            background-color: var(--color1);
            color: #333;
            padding: 2px 15px;
            border-radius: 10px;
            font-size: 14px;
            text-wrap: nowrap;
            font-weight: 700;
          }
        }
        .r-cont {
          width: calc(100% - 120px);
          span {
            font-size: 16px;
          }
        }
      }
    }
  }
}
@media screen and (max-width: 960px) {
  .flex-2c-1-2 {
    gap: 20px;
    flex-direction: column;
    .img-area {
      max-width: 100%;
      max-height: 100%;
    }
    .text-area {
      flex: auto;
      h3 {
        font-size: 20px;
      }
      ul {
        li {
          .l-cont {
            width: 100px;
            .tag {
              font-size: 12px;
            }
          }
          .r-cont {
            span {
              font-size: 14px;
            }
          }
        }
      }
    }
  }
}

/*------------------------------------------------------------------------------------------

grid

------------------------------------------------------------------------------------------*/
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 20px;
  .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    .name {
      line-height: 1.5;
    }
  }
}
@media screen and (max-width: 960px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 30px;
    .item {
      .name {
        margin-bottom: -10px;
      }
    }
  }
}

/*------------------------------------------------------------------------------------------

マップ

------------------------------------------------------------------------------------------*/
.map {
  height: 380px;
  iframe {
    border-radius: 40px;
  }
}

/* モバイル改行 */

.sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}

@media screen and (max-width: 667px) {
  .pc {
    display: none;
  }
}

/* ----------------------------

ヘッダー

------------------------------*/

header {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 800;

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    height: 90px;
    @media screen and (max-width: 1200px) {
      height: 60px;
    }
    .logo {
      background-color: #fff;
      padding: 20px 63px;
      border-radius: 0 0 40px 0;
      display: grid;
      place-items: center;
      position: relative;
      height: 90px;
      z-index: 999;
      @media screen and (max-width: 1200px) {
        height: 60px;
        width: 190px;
        padding: 13px 30px;
        border-radius: 0 0 20px 0;
      }
      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 0;
      }

      span {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -999;
        opacity: 0;
      }
    }
    .spacer {
      flex: 1;
    }
    .nav-wrap {
      background-color: #fff;
      height: 100%;
      border-radius: 0 0 0 40px;
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 15px 20px;

      nav {
        ul.flex {
          li {
            transition: var(--trans);
            a {
              font-size: 14px;
              padding: 30px 18px;
              font-family: "Zen Kaku Gothic New", sans-serif;
              font-weight: 700;
            }
          }

          li:hover {
            color: var(--color1);
          }
        }
      }
      .btn {
        height: 100%;
        padding: 20px 30px;
        span {
          font-size: 14px;
        }
      }
      @media screen and (max-width: 1200px) {
        display: none;
      }
    }
  }
}
#header-top {
  transform: translateY(-100%);
  opacity: 0;
  transition: 1.6s cubic-bezier(0.1, 1, 0.6, 1);
}
#header-top.header-animate {
  transform: translateY(0);
  opacity: 1;
}

#hamburger-menu-btn {
  display: none;
  cursor: pointer;
  z-index: 900;
  height: 100%;
  @media screen and (max-width: 1200px) {
    display: block;
  }

  .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 100%;
    width: 56px;
    border-radius: 0 0 0 20px;
    position: relative;
    z-index: 999;
    background-image: var(--grade);

    span {
      display: block;
      height: 2px;
      width: 16px;
      background: #333;
      transition: 0.2s all ease-in-out;
      border-radius: 100px;
    }
  }
}

#hamburger-menu-btn.active {
  z-index: 999;
  .box {
    background-color: #fff;
  }
  span:nth-child(1) {
    transform: rotate(45deg);
    translate: 0 3px;
  }
  span:nth-child(2) {
    display: none;
  }
  span:nth-child(3) {
    transform: rotate(-45deg);
    translate: 0 -3px;
  }
}

/* spメニュー */

#sp-header {
  width: 100vw;
  max-width: 500px;
  height: 100vh;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
  background-color: #fff;
  padding: 100px 45px;

  nav {
    .sp-menu {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      li {
        border-bottom: var(--border);
        text-align: center;
        transition: var(--trans);
        width: 100%;
        a {
          width: 100%;
          display: inline-block;
          padding: 20px 0;
          font-size: 14px;
          font-weight: 700;
        }
        a:hover {
          opacity: 0.6;
        }
      }
      li:last-child {
        border-bottom: 0;
        margin-bottom: 24px;
      }
    }
  }

  .btn {
    margin: 0 auto;
    padding: 20px 78px;
    margin-bottom: 40px;
    span {
      font-size: 14px;
    }
  }
  .tel {
    display: flex;
    gap: 4px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    transition: var(--trans);
    .img {
      width: 40px;
      translate: 0 5px;
      img {
        width: 100%;
      }
    }
    span {
      font-size: 44px;
      color: var(--color2);
      font-weight: 700;
    }
  }
}

#sp-header.active {
  opacity: 1;
  z-index: +2;
  visibility: visible;
}

/*------------------------------------------------------------------------------------------

mv

------------------------------------------------------------------------------------------*/

.mv {
  padding-top: 130px;
  position: relative;

  .flex-mv {
    display: flex;
    gap: clamp(1.875rem, -1.25rem + 5.2083vw, 3.75rem);
    .text-area {
      max-width: 420px;
      flex: 1;
      .sec-title {
        font-size: clamp(1.875rem, 0.625rem + 2.6042vw, 3.125rem);
      }
    }
    .img-area {
      max-height: 500px;
      width: 100%;
      flex: 2;
      picture {
        height: 100%;
        display: block;
        img {
          height: 100%;
          object-fit: cover;
        }
      }
    }
  }
}
@media screen and (max-width: 960px) {
  .mv {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: -40px;

    .flex-mv {
      flex-direction: column;
      gap: 20px;
      .text-area {
        order: 2;
        flex: 1;
        max-width: 100%;
      }
      .img-area {
        flex: 1;
      }
    }
  }
}

/*------------------------------------------------------------------------------------------

トップページ　新着情報

------------------------------------------------------------------------------------------*/

.news {
  .flex {
    gap: 80px;
    justify-content: space-between;
  }
  .r-cont {
    flex: 1;
    max-width: 800px;
    .news-list {
      display: flex;
      flex-direction: column;
      li {
        border-bottom: var(--border);
        .flex {
          gap: 40px;
          align-items: center;
          padding: 30px 0;
          transition: var(--trans);
          .time {
            font-size: 16px;
          }
          .category {
            width: 72px;
            font-size: 14px;
            border: 1px solid var(--color2);
            color: var(--color2);
            border-radius: 100px;
            text-align: center;
          }
          h3 {
            font-size: 16px;
            font-weight: 500;
            flex: 1;
          }
        }
      }
      li:first-child {
        border-top: 1px solid #dcdcdc;
      }
      li:hover {
        .flex {
          scale: 1.02;
          color: var(--color2);
        }
      }
    }
  }
}

@media screen and (max-width: 960px) {
  .news {
    .flex {
      gap: 40px;
      flex-direction: column;
    }
    .r-cont {
      flex: 1;
      max-width: 800px;
      .news-list {
        li {
          .flex {
            gap: 20px;
            padding: 15px 0;
            flex-direction: row;
            .time {
              font-size: 14px;
            }
            .category {
              width: 64px;
              font-size: 12px;
            }
            h3 {
              font-size: 14px;
            }
          }
        }
      }
    }
  }
}

/*------------------------------------------------------------------------------------------

フッター

------------------------------------------------------------------------------------------*/

footer {
  .footer {
    padding: 80px 0;
    background-color: var(--color2);

    .sdgs-icon {
      display: block;
      width: 107px;
      aspect-ratio: 1;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 40px;
      background-color: #fff;
      border-radius: 50%;
      img {
        width: 100%;
      }
    }
    .logo-area {
      display: block;
      width: fit-content;
      margin: 0 auto 60px auto;
    }
    .logo {
      border-radius: 20px;
      background-color: #fff;
      display: grid;
      place-items: center;
      padding: 10px 40px;
      width: 306px;
      img {
        height: 100%;
        border-radius: 0;
      }
    }
    .info {
      text-align: center;
      color: #fff;
    }
    small {
      color: #fff;
      font-size: 12px;
      display: block;
      width: fit-content;
      margin: 0 auto;
    }
  }
}

@media screen and (max-width: 768px) {
  footer {
    .footer {
      padding: 40px 0 35px 0;

      .logo {
        width: 190px;
        margin: 0 auto 40px auto;
        padding: 10px 20px;
        img {
          width: 100%;
          height: 100%;
          object-fit: contain;
          border-radius: 0;
        }
      }
      small {
        font-size: 10px;
      }
    }
  }
}

/*------------------------------------------------------------------------------------------

下層ページ　mv

------------------------------------------------------------------------------------------*/

.under-mv {
  padding-top: 130px;
  padding-bottom: 80px;
  .flex-under-mv {
    display: flex;
    align-items: start;
    gap: clamp(1.875rem, 0rem + 3.9063vw, 3.75rem);
    .text-area {
      max-width: 420px;
      flex: 1;
      .sec-title {
        font-size: clamp(1.875rem, 0.625rem + 2.6042vw, 3.125rem);
      }
    }
    .img-area {
      height: 280px;
      flex: 2;
    }
  }
}
@media screen and (max-width: 960px) {
  .under-mv {
    padding: 80px 0 40px 0;
    .flex-under-mv {
      flex-direction: column;
      gap: 20px;
      .text-area {
        max-width: 100%;
        order: 2;
      }
      .img-area {
        height: 183px;
        width: 100%;
        flex: auto;
      }
    }
  }
}

/*------------------------------------------------------------------------------------------

会社概要ページ

------------------------------------------------------------------------------------------*/
.message {
  .flex-2c-1-2 {
    align-items: center;
    h3 {
      line-height: 1.5;
    }
  }
}
.about.under {
  ul {
    width: 100%;
    li {
      display: flex;
      justify-content: start;
      padding: 30px 0;
      border-bottom: var(--border);
      .l-cont {
        width: 120px;
        h3 {
          font-weight: 700;
          font-size: 16px;
        }
      }
      .r-cont {
        flex: 1;
        text-align: left;
        p {
          font-size: 16px;
        }
      }
    }
    li:first-child {
      padding-top: 0;
    }
  }
}
@media screen and (max-width: 960px) {
  .about.under {
    ul {
      li {
        flex-direction: column;
        padding: 20px 0;
        gap: 10px;
        .l-cont {
          width: 100%;
          h3 {
            font-weight: 700;
            font-size: 14px;
          }
        }
        .r-cont {
          p {
            font-size: 14px;
          }
        }
      }
    }
    .map {
      height: 200px;
    }
  }
}

/*------------------------------------------------------------------------------------------

新着情報ページ

------------------------------------------------------------------------------------------*/
.under.news {
  padding-bottom: 160px;
  margin-bottom: -80px;
  .inner1 {
    .blog-list {
      display: flex;
      gap: clamp(1.25rem, 0.3992rem + 3.4904vw, 3.75rem);
      flex-wrap: wrap;
      li {
        width: calc(
          (100% - (clamp(1.25rem, 0.3992rem + 3.4904vw, 3.75rem) * 2)) / 3
        );
        transition: var(--trans);

        .card {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          .img {
            width: 100%;
            margin-bottom: 20px;
            aspect-ratio: 16 / 9;
            overflow: hidden;

            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              border-radius: 20px;
            }
          }
          h3.title {
            font-size: var(--16-14);
            margin-bottom: 10px;
            flex: 1;
          }
          .flex {
            gap: 20px;
            align-items: center;
            padding-top: 0;
            justify-content: start;
            margin: 0;
            .date {
              font-size: 14px;
            }
            .category {
              border: 1px solid var(--color2);
              border-radius: 100px;
              padding: 0 8px;
              font-size: 12px;
              color: var(--color2);
            }
          }
        }
      }
      li:hover {
        scale: 1.02;
      }
    }
  }
}
@media screen and (max-width: 960px) {
  .under.news {
    padding-bottom: 40px;
    margin-bottom: -40px;
    .inner1 {
      .blog-list {
        li {
          width: calc(
            50% - (clamp(1.25rem, 0.3992rem + 3.4904vw, 3.75rem) / 2)
          );
          transition: var(--trans);

          .card {
            .img {
              margin-bottom: 10px;
            }
            h3.title {
              font-size: 14px;
              margin-bottom: 10px;
            }
            .flex {
              gap: 10px;
              flex-direction: row;
              .date {
                font-size: 14px;
              }
              .category {
                font-size: 10px;
              }
            }
          }
        }
      }
    }
  }
}
/*------------------------------------------------------------------------------------------

よくあるご質問ページ

------------------------------------------------------------------------------------------*/

.faq {
  padding-bottom: 160px;
  margin-bottom: -80px;
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;

    .faq-item {
      position: relative;
      display: flex;
      flex-direction: column;
      background-color: #fff;
      border-radius: 80px;
      padding: 30px 120px 30px 80px;
      cursor: pointer;
      .q,
      .a {
        display: flex;
        align-items: top;
        gap: 40px;
        span {
          display: block;
          color: var(--color2);
          font-weight: 700;
          font-size: 30px;
          translate: 0 -5px;
        }
        p {
          font-size: 18px;
          font-weight: 500;
          line-height: 2;
        }
      }

      .a {
        align-items: top;

        span,
        p {
          transition: var(--trans);
          visibility: hidden;
          translate: 0 -100%;
          opacity: 0;
          display: none;
        }
        span {
          color: #59c241;
        }
      }

      .faq-btn {
        position: absolute;
        top: 44px;
        right: 90px;
        span {
          display: block;
          width: 20px;
          height: 4px;
          background-color: var(--color2);
          border-radius: 100px;
        }
        span:nth-child(1) {
          rotate: 90deg;
          translate: 0 4px;
        }
      }
    }
    .faq-item.active {
      gap: 20px;

      .faq-btn {
        span:nth-child(1) {
          display: none;
        }
      }
      .a {
        span,
        p {
          visibility: visible;
          translate: 0 0;
          opacity: 1;
          display: block;
        }
      }
    }
  }
}
@media screen and (max-width: 960px) {
  .faq {
    padding-bottom: 80px;
    margin-bottom: -40px;
    .faq-list {
      gap: 10px;

      .faq-item {
        border-radius: 40px;
        padding: 15px 70px 15px 30px;
        .q,
        .a {
          gap: 20px;
          span {
            font-size: 20px;
            translate: 0;
          }
          p {
            font-size: 14px;
          }
        }

        .faq-btn {
          top: 25px;
          right: 30px;
          span {
            width: 16px;
            height: 3px;
          }
          span:nth-child(1) {
            translate: 0 3px;
          }
        }
      }
    }
  }
}

/* ----------------------------

お問い合わせ

------------------------------*/

.under.contact {
  padding-bottom: 160px;
  margin-bottom: -80px;
  @media screen and (max-width: 768px) {
    .inner1 {
      display: contents;
    }
  }
  .contents {
    .info {
      text-align: center;

      .desc {
        font-size: 16px;
        color: #333;
      }

      .workday {
        margin-bottom: 40px;
        font-size: 16px;
      }
      a {
        display: flex;
        gap: 10px;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        transition: var(--trans);
        .img {
          width: 52px;
          translate: 0 5px;
          img {
            width: 100%;
          }
        }
        span {
          font-size: 58px;
          color: var(--color2);
          font-weight: 700;
        }
      }
      a:hover {
        opacity: 0.7;
      }
    }

    /* フォーム */
    .contact-area {
      background-color: #fff;
      border-radius: 40px;
      padding: 80px 20px;
      margin-bottom: 160px;

      table {
        max-width: 700px;
        margin: 0 auto;
        margin-bottom: 40px;
        width: 100%;

        tr {
          padding: 20px 0;
          display: flex;
          align-items: start;
          flex-direction: column;
          width: fit-content;
          width: 100%;

          th {
            padding: 0px 10px;
            font-size: 16px;
            margin: 20px 0;
          }

          th.il::after {
            content: "必須";
            padding: 2px 10px;
            background-color: var(--color2);
            color: #fff;
            font-size: 12px;
            border-radius: 100px;
            margin-left: 20px;
            font-weight: 400;
          }
        }
        tr.notes {
          margin-top: 20px;
          padding: 5px 10px;
          background-color: #f6cdaa;
          width: fit-content;
          border-radius: 2px;
          th {
            margin: 0;
            font-size: 14px;
            color: var(--color2);
            font-weight: 500;
          }
        }
        td {
          width: 100%;
        }
        td.half {
          width: 50%;
        }
        td.flex-area {
          display: flex;
          justify-content: space-between;
          gap: 20px;
          width: 70%;
          @media screen and (max-width: 768px) {
            gap: 5px;
            width: 100%;
          }
          .wrapper {
            display: flex;
            gap: 10px;
            align-items: center;
            width: 100%;
            text-wrap: nowrap;
          }
        }
        p {
          font-size: 14px;
          margin-bottom: 20px;
        }
      }

      .policy-desc {
        margin-bottom: 20px;
        text-align: center;
        font-size: 14px;
      }
      .check-area {
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
      }
      .thanks-message {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin: 60px 0;
        text-align: center;
        .thanks-title {
          font-size: 38px;
          color: var(--color2);
          font-weight: 700;
          margin-bottom: 10px;
        }
      }
    }
    .send-btn-area {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .send-btn {
      background-image: var(--grade);
      border-radius: 30px;
      padding: 0px 30px;
      cursor: pointer;
      color: #333;
      width: fit-content;
      border: 0;
      transition: var(--trans);
    }
    .send-btn:hover {
      scale: 1.02;
    }
    .back-btn {
      background-color: #eee;
      border-radius: 30px;
      padding: 0px 30px;
      border: 1px #eee solid;
      cursor: pointer;
      color: #999;
      width: fit-content;
      transition: var(--trans);
    }

    .back-btn:hover {
      scale: 1.02;
    }
  }
  .recha-info {
    font-size: 14px;
    padding-top: 40px;
    text-align: center;
  }
  .policy-area {
    h3 {
      font-size: 36px;
    }
    .policy-text-area {
      border-radius: 40px;
      background-color: #fff;
      overflow-y: scroll;
      padding: 40px;
      height: 500px;
      p {
        font-size: 14px;
      }
    }
    .policy-text-area::-webkit-scrollbar {
      display: none;
    }
  }
}

input,
select,
textarea {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  border: #999 0.5px solid;
  background-color: rgb(255, 255, 255, 0.6);
  padding: 10px;
  font-size: var(--16-14);
}
textarea {
  height: 300px;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  translate: 0 3px;
  margin-right: 10px;
  border: 1px #3f3f3f solid;
  font-size: var(--16-14);
}

input,
select,
textarea:focus {
  outline: none;
  box-shadow: none;
}

@media screen and (max-width: 768px) {
  .under.contact {
    padding-bottom: 40px;
    margin-bottom: -40px;
    .contents {
      padding: 60px 20px;
      .info {
        .desc {
          font-size: 14px;
        }
        a {
          gap: 4px;
          margin: 0 auto 10px auto;
          span {
            font-size: 48px;
          }
          .img {
            width: 40px;
          }
        }
      }
      /* フォーム */
      .contact-area {
        margin-bottom: 40px;
        table {
          tr {
            padding: 10px 0;
            th {
              font-size: 14px;
              margin: 10px 0;
            }

            th.il::after {
              padding: 2px 8px;
              font-size: 10px;
              margin-left: 10px;
            }
          }
          td {
            width: 100%;
          }
        }

        .policy-desc {
          font-size: 12px;
        }
        .check-area {
          font-size: 14px;
        }
        .thanks-message {
          gap: 10px;
          margin: 40px 0;
          .thanks-title {
            font-size: 20px;
          }
        }
      }
      .flex {
        .btn-privacy-policy {
          padding-left: 20px;
          margin-bottom: 60px;
        }
      }
      .recha-info {
        font-size: 12px;
      }
    }
    .policy-area {
      h3 {
        font-size: 20px;
      }
      .policy-text-area {
        padding: 20px;
        height: 300px;
      }
    }
  }
}

/* ブログ記事ページ */

.under.blog {
  padding-bottom: 160px;
  margin-bottom: -80px;
  .to-archive {
    font-size: 14px;
    display: block;
    padding: 20px 0;
    width: fit-content;
    transition: var(--trans);
  }
  .to-archive:hover {
    opacity: 0.6;
  }
  .blog-contents-area {
    width: 100%;
    text-align: left;
    background-color: #fff;
    border-radius: 50px;
    padding: 40px 80px;
    min-height: 30vh;

    .inner1 {
      width: 100%;
    }
  }

  .blog-dates {
    margin-bottom: 40px;
    color: #5c5575;
    font-size: 14px;
  }
  .blog-page-title {
    padding: 20px 0;
    font-size: 24px;
    font-weight: 700;
  }
  .blog-content {
    padding: 40px 0;
  }
}

@media screen and (max-width: 768px) {
  .under.blog {
    .inner1.il {
      display: contents;
    }
    .blog-contents-area {
      padding: 40px 20px;
      .inner1 {
        width: 100%;
      }
    }

    .blog-dates {
      font-size: 12px;
      margin-bottom: 20px;
    }
    .blog-page-title {
      font-size: 18px;
      padding: 0;
      margin-bottom: 10px;
    }
  }
}

/* ----------------------------

フェードインアニメーション

------------------------------*/

.fadeIn {
  transform: translate3d(0, 50px, 0);
  transition: 1.5s;
  opacity: 0;
}
.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
/* ----------------------------

固定フェードインアニメーション

------------------------------*/
.fadeIn-fixed {
  animation-name: fadeIn;
  animation-duration: 1.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ----------------------------

ページネーション

------------------------------*/

.page-nation {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  @media (max-width: 768px) {
    margin-bottom: 60px;
  }

  .wp-pagenavi {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
  }

  .wp-pagenavi a,
  .current {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 16px;
    background-color: var(--color2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
  }
  .wp-pagenavi a:hover {
    scale: 1.02;
  }

  .current {
    border: 1px solid var(--color2);
    background-color: transparent;
    color: var(--color2);
  }
}

/* ----------------------------

リキャプチャ非表示

------------------------------*/

.grecaptcha-badge {
  visibility: hidden;
}
