:root {
  --color1: #ea5520;
  --color2: #d23918;
  --border: 2px solid #fff;
  --trans: all 0.3s;
  --bg-color: rgba(228, 240, 200, 0.8);
  --shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.06);
}

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

共通項目

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

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

body {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  color: #2b2b2b;
  overflow-x: hidden;
  line-height: 1.5;
  background-color: #fff;
}

section {
  padding: 160px 0;
  @media (max-width: 769px) {
    padding: 80px 0;
  }
}

a {
  width: fit-content;
}

/* 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 (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;
  }
}
.en {
  font-family: "League Spartan", sans-serif;
  font-weight: 500;
}

.sec_title_area {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  @media (max-width: 769px) {
    flex-direction: column;
  }
  h2 {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    color: var(--color1);
    @media (max-width: 769px) {
      font-size: 14px;
    }
    span {
      font-size: min(100px, 10.5vw);
      line-height: 1;
      margin-bottom: 5px;
    }
  }
  .desc {
    width: 50%;
    @media (max-width: 769px) {
      width: 100%;
    }
  }
}

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

.inner1 {
  max-width: 1200px;
  width: calc(100% - 10.26vw);
  margin: 0 auto;
}

.inner2 {
  width: calc(100% - 100px);
  margin: 0 auto;
  max-width: 1450px;
  @media (max-width: 769px) {
    width: calc(100% - 20px);
  }
}

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

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

ボタン

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

.btn {
  background-color: #fff;
  padding: 30px 31px;
  border: 0;
  transition: var(--trans);
  width: 196px;
  display: block;
  margin-right: 0;
  margin-left: auto;
  @media (max-width: 769px) {
    width: 157px;
    padding: 24px 20px;
    max-height: 60px;
    margin-right: auto;
  }

  span {
    font-size: 20px;
    color: var(--color1);
    position: relative;
    display: block;
    padding-right: 40px;
    line-height: 1;
    @media (max-width: 769px) {
      font-size: 15px;
      padding-right: 45px;
    }
  }
  span::after {
    content: "";
    width: 8px;
    aspect-ratio: 1/1;
    background-color: var(--color1);
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -50%;
    transition: var(--trans);
  }
}

.btn:hover {
  background-color: var(--color1);
  span {
    color: #fff;
  }
  span::after {
    background-color: #fff;
    width: 10px;
    rotate: 315deg;
  }
}
.contact_btn {
  background-color: var(--color1);
  color: #fff;
  height: 100%;
}

.to-archive {
  width: 224px;
  height: 56px;
  font-size: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  transition: var(--trans);
  background-color: var(--color1);
  margin: 40px auto;
  border: 1px solid var(--color1);
  @media (max-width: 769px) {
    margin: 20px auto 0;
    font-size: 12px;
    width: 200px;
  }
}
.to-archive:hover {
  background-color: #fff;
  color: var(--color1);
}

.flex {
  display: flex;
}

/* モバイル改行 */

.sp {
  display: none;
}

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

.pc {
  display: block;
}

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

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

ヘッダー

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

header {
  position: fixed;
  width: 100%;
  height: 90px;
  z-index: 800;
  @media (max-width: 769px) {
    height: 70px;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fff;
    width: 100%;
    height: 100%;

    .logo {
      margin-left: 50px;
      display: flex;
      align-items: center;
      gap: 15px;
      @media (max-width: 769px) {
        margin-left: 20px;
        gap: 11px;
      }
      img:nth-child(1) {
        width: 41px;
        @media (max-width: 769px) {
          width: 31px;
        }
      }
      img:nth-child(2) {
        width: 208px;
        @media (max-width: 769px) {
          width: 160px;
        }
      }

      span {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 8px;
        opacity: 0;
        z-index: -1;
      }
    }
    .spacer {
      flex: 1;
    }
    nav {
      margin-right: 25px;
      height: 100%;
      ul.flex {
        height: 100%;
        li {
          transition: var(--trans);
          height: 100%;
          display: grid;
          place-items: center;
          a {
            font-size: 16px;
            font-weight: 700;
            padding: 15px;
          }
        }
        li:hover {
          color: var(--color1);
        }
      }
      @media (max-width: 769px) {
        display: none;
      }
    }
    .contact_btn {
      width: 177px;
      padding: 0 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--color1);
      transition: var(--trans);
      border: 1px solid var(--color1);
      @media (max-width: 769px) {
        display: none;
      }
      span {
        font-size: 20px;
        display: inline-block;
        padding-right: 40px;
        position: relative;
        color: #fff;
      }
      span::after {
        content: "";
        width: 8px;
        aspect-ratio: 1/1;
        background-color: #fff;
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        translate: 0 -50%;
        transition: var(--trans);
      }
    }
    .contact_btn:hover {
      background-color: #fff;
      span {
        color: var(--color1);
      }
      span::after {
        background-color: var(--color1);
        width: 10px;
        rotate: 315deg;
      }
    }
  }
}
#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 {
  margin-right: 10px;
  display: none;
  cursor: pointer;
  z-index: 900;
  @media (max-width: 769px) {
    display: block;
  }

  .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 50px;
    width: 50px;
    position: relative;
    z-index: 999;
    background-color: var(--color1);

    span {
      display: block;
      height: 2px;
      width: 22px;
      background: #fff;
      transition: 0.2s all ease-in-out;
    }
  }
}

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

/* spメニュー */

#sp-header {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 70px;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
  background-color: rgba(50, 51, 51, 0.9);
  padding: 60px 20px;

  nav {
    margin-bottom: 20px;
    .sp-menu {
      display: flex;
      flex-direction: column;
      justify-content: center;

      li {
        border-bottom: 0.5px #7c7c7c solid;
        text-align: left;
        transition: var(--trans);
        a {
          width: 100%;
          display: inline-block;
          padding: 20px 0;
          font-size: 18px;
          font-weight: 700;
          color: #fff;
        }
        a:hover {
          opacity: 0.6;
        }
      }
      li:first-child {
        a {
          padding-top: 0;
        }
      }
      li:last-child {
        border-bottom: 0;
      }
    }
  }
  .contact-btn-area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    background-color: var(--color1);
    padding: 0 20px;
    span {
      color: #fff;
      font-size: 20px;
    }
    .img {
      width: 33px;
      height: 33px;
      background-color: #fff;
      display: grid;
      place-items: center;
      svg {
        width: 7px;
      }
    }
  }
}

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

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

トップページ-メインビジュアル

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

.mv {
  padding: 0;
  position: relative;
  height: min(1261px, 100vw);
  @media (max-width: 769px) {
    height: max(490px, 120vw);
  }
  .mv_img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 1536px;
    max-height: 1261px;
    aspect-ratio: 1536/1261;
    @media (min-width: 1690px) {
      scale: 1.15;
      transform-origin: bottom right;
    }
  }
  .mv_text_area {
    padding-top: 190px;
    position: relative;
    z-index: 2;
    margin-left: min(40px, 3vw);
    @media (max-width: 769px) {
      padding-top: 114px;
      margin-left: 10px;
      margin-right: 10px;
    }
    @media (min-width: 1690px) {
      margin-left: min(-100px, -6vw);
    }
    p:nth-child(1) {
      font-size: min(100px, 10vw);
      line-height: 1;
      @media (max-width: 600px) {
        font-size: 38px;
      }
      span {
        color: var(--color1);
      }
    }
    p:nth-child(2) {
      font-size: min(28px, 4vw);
      font-weight: 700;
      @media (max-width: 600px) {
        font-size: 14px;
      }
    }
    .desc {
      @media (max-width: 600px) {
        font-size: 12px;
      }
    }
  }
}

#service {
  background-image: url(../img/bg-img.webp);
  background-repeat: repeat;
  background-color: #f6f6f6;
  background-size: 684px;
  position: relative;
  .gradation {
    display: block;
    position: absolute;
    top: -126px;
    left: 0;
    width: 100%;
    height: 126px;
    background-image: linear-gradient(
      180deg,
      rgba(246, 246, 246, 0),
      rgba(246, 246, 246, 1)
    );
  }
  .grid_2c {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3列 */
    column-gap: min(80px, 5.5vw);
    row-gap: min(60px, 5vw);
    @media (max-width: 769px) {
      grid-template-columns: repeat(1, 1fr); /* 3列 */
      row-gap: 30px;
      place-items: center;
    }
    .item {
      @media (max-width: 769px) {
        width: max(310px, 70vw);
      }
      .img {
        margin-bottom: 30px;
        @media (max-width: 769px) {
          margin-bottom: 15px;
        }
      }
      h3 {
        margin-bottom: 10px;
        font-size: min(28px, 3vw);
        font-weight: 700;
        @media (max-width: 769px) {
          font-size: 20px;
          margin-bottom: 6px;
        }
      }
    }
  }
}
#company {
  position: relative;
  .point_img {
    position: absolute;
    top: 0;
    right: 5px;
    width: min(725px, 60%);
  }
  dl {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: min(260px, 20vw) 1fr;
    row-gap: 5px;
    @media (max-width: 600px) {
      grid-template-columns: 1fr;
      row-gap: 0;
    }
    dt {
      min-height: 70px;
      display: grid;
      place-items: center;
      background-color: #f0f0f0;
      font-size: 16px;
      font-weight: 700;
      @media (max-width: 769px) {
        font-size: 14px;
      }
      @media (max-width: 600px) {
        padding: 15px 20px;
        justify-items: left;
        min-height: 50px;
      }
    }
    dd {
      background-color: #f6f6f6;
      display: grid;
      align-items: center;
      font-size: 16px;
      line-height: 2;
      padding: 23px 0 23px 40px;
      @media (max-width: 769px) {
        font-size: 14px;
        padding: 15px 20px;
      }
      @media (max-width: 600px) {
        margin-bottom: 3px;
        min-height: 50px;
      }
    }
    .under_line {
      text-decoration: underline;
    }
    .op6 {
      opacity: 0.6;
      font-size: 14px;
      display: inline-block;
      @media (max-width: 960px) {
        font-size: 11px;
      }
    }
  }
}
#news {
  background-image: url(../img/bg-img.webp);
  background-repeat: repeat;
  background-color: #f6f6f6;
  background-size: 684px;
  .sec_title_area {
    align-items: end;
    @media (max-width: 769px) {
      flex-direction: row;
    }
  }
  .point_img2 {
    width: min(206px, 15vw);
    @media (max-width: 769px) {
      width: 97px;
    }
  }
}
ul.grid_3c {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列 */
  grid-auto-rows: auto;
  gap: 30px;
  padding: 0;
  @media (max-width: 769px) {
    grid-template-columns: repeat(1, 1fr); /* 3列 */
    place-items: center;
  }

  li {
    min-width: 0;
    transition: var(--trans);
    @media (max-width: 769px) {
      min-width: auto;
      width: max(310px, 70vw);
    }

    .flex {
      flex-direction: column;
      width: 100%;
      .img {
        width: 100%;
        img {
          width: 100%;
        }
      }
      h3.title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        font-size: 16px;

        @media (max-width: 769px) {
          font-size: 14px;
        }
      }
      .wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
        .date {
          font-size: 14px;
          @media (max-width: 769px) {
            font-size: 12px;
          }
        }
        .category {
          font-size: 12px;
          color: var(--color1);
          font-weight: 700;
          @media (max-width: 769px) {
            font-size: 10px;
          }
        }
      }
    }
  }
  li:hover {
    scale: 1.02;
  }
}
.contact_area {
  display: block;
  padding: 80px 0;
  background-color: var(--color1);
  width: 100%;
  transition: var(--trans);
  @media (max-width: 769px) {
    padding: 40px 0;
  }
  .sec_title_area {
    align-items: center;
    @media (max-width: 769px) {
      flex-direction: row;
    }
    h2 {
      color: #fff;
      span {
        color: #fff;
        @media (max-width: 769px) {
          font-size: 30px;
        }
      }
    }
  }
  .img {
    width: 114px;
    height: 114px;
    background-color: #fff;
    display: grid;
    place-items: center;
    transition: var(--trans);
    @media (max-width: 769px) {
      width: 52px;
      height: 52px;
      svg {
        width: 12px;
      }
    }
  }
}
.contact_area:hover {
  background-color: #fff;
  .sec_title_area {
    h2 {
      color: var(--color1);
      span {
        color: var(--color1);
      }
    }
  }
  .img {
    background-color: var(--color1);
    translate: 10px;
    svg {
      path {
        fill: #fff;
      }
    }
  }
}

footer {
  .footer {
    position: relative;
    padding: 80px 0 0;
    background-color: #323333;
    .to-top-btn {
      position: absolute;
      top: -39px;
      right: 50px;
      width: 78px;
    }
    .flex {
      justify-content: space-between;
      gap: 40px;
      padding-bottom: 80px;
      @media (max-width: 769px) {
        display: block;
      }
      .l-cont {
        width: 50%;
        @media (max-width: 769px) {
          width: 100%;
        }
        a {
          width: fit-content;
        }
        .logo {
          margin-bottom: 40px;
          width: 264px;
          img {
            width: 100%;
          }
        }
      }
      .r-cont {
        display: flex;
        flex-direction: column;
        align-items: end;
        gap: 14px;
        @media (max-width: 769px) {
          align-items: start;
          font-size: 14px;
        }
        a {
          color: #fff;
        }
        a:hover {
          opacity: 0.6;
        }
      }
    }
    .under_area {
      display: flex;
      justify-content: space-between;
      color: #fff;
      border-top: 1px solid #535454;
      padding-top: 20px;
      padding-bottom: 40px;
      font-weight: 400;
      @media (max-width: 769px) {
        padding-bottom: 75px;
      }

      small {
        color: #fff;
        font-size: 12px;
        @media (max-width: 769px) {
          font-size: 10px;
        }
      }
      a {
        color: #fff;
        transition: var(--trans);
        font-size: 12px;
        @media (max-width: 769px) {
          font-size: 10px;
        }
      }
      a:hover {
        opacity: 0.6;
      }
      p {
        position: absolute;
        left: 50%;
        translate: -50%;
        @media (max-width: 769px) {
          bottom: 30px;
          text-wrap: nowrap;
        }
      }

      .to_top {
        display: flex;
        gap: 10px;
        align-items: center;
        font-weight: 500;
        transition: var(--trans);
        @media (max-width: 769px) {
          font-size: 10px;
        }
        img {
          translate: 0 3px;
          transition: var(--trans);
        }
      }
      .to_top:hover {
        img {
          translate: 0 0px;
        }
      }
    }
  }
}

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

下層ページ

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

.under_page {
  background-color: #f6f6f6;
}
.under-mv {
  padding-top: 190px;
  @media (max-width: 769px) {
    padding-top: 114px;
  }
}
/* ----------------------------

お問い合わせ

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

.under.contact {
  @media screen and (max-width: 769px) {
    .inner1 {
      display: contents;
    }
  }
  .contents {
    /* フォーム */
    .contact-area {
      background-color: #fff;
      padding: 80px 20px;
      margin-bottom: 160px;

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

        tr {
          padding: 10px 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(--color1);
            color: #fff;
            font-size: 12px;
            border-radius: 100px;
            margin-left: 20px;
            font-weight: 400;
            font-family: "Zen Kaku Gothic New";
          }
        }
        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: 769px) {
            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(--color1);
          font-weight: 700;
          margin-bottom: 10px;
        }
      }
    }
    .send-btn-area {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

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

    .back-btn:hover {
      scale: 1.02;
    }
  }
  .recha-info {
    font-size: 14px;
    padding-top: 40px;
    text-align: center;
  }
  .policy-area {
    h3 {
      font-size: 36px;
      text-align: center;
    }
    .policy-text-area {
      background-color: #fff;
      overflow-y: auto;
      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: 16px;
  @media (max-width: 769px) {
    height: 40px;
    font-size: 14px;
  }
}
textarea {
  height: 300px;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  translate: 0 3px;
  margin-right: 10px;
  border: 1px #3f3f3f solid;
  font-size: 16px;
  color-scheme: light; /* 強制的にライトテーマで描画 */
}

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

@media (max-width: 769px) {
  .under.contact {
    .contents {
      padding: 0 20px;
      .info {
        .desc {
          font-size: 14px;
        }
        a {
          gap: 4px;
          margin: 0 auto 10px auto;
          span {
            font-size: 40px;
            text-wrap: nowrap;
          }
          .img {
            width: 30px;
          }
        }
        a:hover {
          opacity: 0.7;
        }
      }
      /* フォーム */
      .contact-area {
        padding: 40px 20px;
        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.news {
  .news-contents-area {
    width: 100%;
    min-height: 30vh;
    text-align: left;
    background-color: #fff;
    padding: 40px 80px;
  }

  .news-dates {
    color: #5c5575;
    font-size: 14px;
  }
  .news-page-title {
    padding: 20px 0;
    font-size: 24px;
    font-weight: 700;
  }
  .news-content {
    padding: 40px 0;
  }
  .company-info {
    display: flex;
    flex-direction: column;

    h4 {
      font-size: 24px;
      font-weight: normal;
    }
    p.sub-title {
      font-size: 20px;
    }

    p {
      font-size: 16px;
    }
    a {
      text-decoration: none;
      font-size: 16px;
    }
    a.contact {
      text-decoration: none;
      font-size: 16px;
    }
  }
}

@media (max-width: 769px) {
  .under.news {
    .news-contents-area {
      padding: 40px 20px;
      .inner1 {
        width: 100%;
      }
    }

    .news-dates {
      font-size: 10px;
      margin-bottom: 20px;
    }
    .news-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;

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

  .wp-pagenavi a,
  .current {
    width: 30px;
    height: 30px;
    transition: var(--trans);
    font-size: 14px;
    display: grid;
    place-items: center;
    background-color: var(--color1);
    border: 1px solid var(--color1);
    color: #fff;
  }
  .wp-pagenavi a:hover {
    color: var(--color1);
    background-color: #fff;
  }

  .current {
    color: var(--color1);

    border: 1px solid var(--color1);
    background-color: transparent;
  }
}

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

リキャプチャ非表示

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

.grecaptcha-badge {
  visibility: hidden;
}
