@charset "UTF-8";
/* リセットcss */
@import url(https://unpkg.com/ress/dist/ress.min.css);
/* Google Fonts */
@import url(https://fonts.googleapis.com);
@import url(https://fonts.gstatic.com);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100..900&display=swap);
/*
color-swatch ========================================*/
/*
breakpoint ==========================================================================*/
/*
font ========================================*/
/* Roboto */
/* Noto Sans JP */
/* font size */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-top: solid 10px #06C755;
  background-color: #fff;
  padding-block: 0 25px;
  z-index: 999;
}
@media screen and (max-width: 750px) {
  .header {
    padding-block: 2.9333333333vw 3.3333333333vw;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__inner--logo {
  display: block;
  max-width: 130px;
}
@media screen and (max-width: 1024px) {
  .header__inner--logo {
    max-width: unset;
    width: 12.6953125vw;
  }
}
@media screen and (max-width: 750px) {
  .header__inner--logo {
    width: 26.6666666667vw;
  }
}
.header__inner--logo h1,
.header__inner--logo p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 17px;
}
@media screen and (max-width: 1024px) {
  .header__inner--logo h1,
  .header__inner--logo p {
    margin-top: 1.66015625vw;
  }
}
.header__inner--logo h1 img,
.header__inner--logo p img {
  display: block;
}
.header__inner nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  z-index: 900;
}
@media screen and (max-width: 1024px) {
  .header__inner nav {
    gap: 2.9296875vw;
  }
}
@media screen and (max-width: 750px) {
  .header__inner nav {
    position: fixed;
    top: -2000px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding-top: 16.9333333333vw;
    padding-inline: 1rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    opacity: 0;
    transition: all 0.4s ease;
    gap: 6.9333333333vw;
  }
  .header__inner nav.is-active {
    top: 10px;
    opacity: 1;
    overflow-y: auto;
  }
}
@media screen and (max-width: 550px) {
  .header__inner nav {
    padding-top: 13vw;
  }
}
.header__inner nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .header__inner nav ul {
    gap: 3.90625vw;
  }
}
@media screen and (max-width: 750px) {
  .header__inner nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.9333333333vw;
    margin-right: 0;
    width: 100%;
  }
}
.header__inner nav ul li {
  position: relative;
}
@media screen and (max-width: 750px) {
  .header__inner nav ul li {
    position: static;
    width: 100%;
  }
}
.header__inner nav ul li a {
  display: block;
}
.header__inner nav ul li a span {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #06C755;
  margin-bottom: 4px;
}
@media screen and (max-width: 1024px) {
  .header__inner nav ul li a span {
    font-size: 1.171875vw;
    margin-bottom: 0.390625vw;
  }
}
@media screen and (max-width: 750px) {
  .header__inner nav ul li a span {
    display: inline-block;
    font-size: 2.9333333333vw;
    margin-bottom: 0.8vw;
  }
}
.header__inner nav ul li a p {
  position: relative;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding-bottom: 3px;
}
@media screen and (max-width: 1024px) {
  .header__inner nav ul li a p {
    font-size: 1.5625vw;
    padding-bottom: 0.29296875vw;
  }
}
@media screen and (max-width: 750px) {
  .header__inner nav ul li a p {
    font-size: 5.3333333333vw;
    padding-bottom: 0.8vw;
  }
}
.header__inner nav ul li a p::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  content: "";
  display: block;
  background-color: #333333;
}
.header__inner nav ul li a:hover {
  opacity: 1;
}
.header__inner nav ul li a:hover p::after {
  animation: line-flow 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes line-flow {
  0% {
    left: 0;
    right: 0;
  }
  20% {
    left: 100%;
    right: 0;
  }
  35% {
    left: 60%;
    right: 0;
  }
  45% {
    left: 0;
    right: 60%;
  }
  55% {
    left: 0;
    right: 100%;
  }
  80% {
    left: 0;
    right: 100%;
  }
  100% {
    left: 0;
    right: 0;
  }
}
/* サービス ドロップダウン（PC:ホバー / SP:常時展開） */
.header__inner nav ul li .header__subNav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 950;
}
@media screen and (max-width: 1024px) {
  .header__inner nav ul li .header__subNav {
    padding-top: 1.7578125vw;
  }
}
@media screen and (max-width: 750px) {
  .header__inner nav ul li .header__subNav {
    position: static;
    transform: none;
    padding-top: 2.9333333333vw;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
}
.header__inner nav ul li .header__subNav ul {
  display: block;
  gap: 0;
  width: -moz-max-content;
  width: max-content;
  min-width: 180px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  padding-block: 6px;
}
@media screen and (max-width: 1024px) {
  .header__inner nav ul li .header__subNav ul {
    min-width: 17.578125vw;
    border-radius: 0.78125vw;
    padding-block: 0.5859375vw;
  }
}
@media screen and (max-width: 750px) {
  .header__inner nav ul li .header__subNav ul {
    display: flex;
    flex-direction: column;
    gap: 2.9333333333vw;
    width: 100%;
    min-width: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    padding-block: 0;
    padding-left: 4vw;
  }
}
.header__inner nav ul li .header__subNav ul li {
  width: 100%;
}
.header__inner nav ul li .header__subNav ul li a {
  display: block;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #333333;
  white-space: nowrap;
  padding: 12px 22px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__inner nav ul li .header__subNav ul li a {
    font-size: 1.46484375vw;
    padding: 1.171875vw 2.1484375vw;
  }
}
@media screen and (max-width: 750px) {
  .header__inner nav ul li .header__subNav ul li a {
    position: relative;
    font-size: 4vw;
    white-space: normal;
    padding: 0 0 0 4vw;
  }
}
.header__inner nav ul li .header__subNav ul li a::before {
  display: none;
}
@media screen and (max-width: 750px) {
  .header__inner nav ul li .header__subNav ul li a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 2.6666666667vw;
    height: 1px;
    background-color: #06C755;
    content: "";
    display: block;
  }
}
.header__inner nav ul li .header__subNav ul li a:hover {
  opacity: 1;
  background-color: rgba(6, 199, 85, 0.08);
  color: #06C755;
}
@media screen and (max-width: 750px) {
  .header__inner nav ul li .header__subNav ul li a:hover {
    background-color: transparent;
  }
}
.header__inner nav ul li.has-sub:hover .header__subNav {
  opacity: 1;
  visibility: visible;
}
.header__inner--contact {
  display: block;
  position: relative;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #E10000;
  border: solid 2px #E10000;
  padding: 19px 50px 19px 20px;
  border-radius: 999px;
  transition: all 0.3s ease;
  margin-top: 18px;
}
@media screen and (max-width: 1024px) {
  .header__inner--contact {
    font-size: 1.5625vw;
    padding: 1.85546875vw 4.8828125vw 1.85546875vw 1.953125vw;
    margin-top: 1.7578125vw;
  }
}
@media screen and (max-width: 750px) {
  .header__inner--contact {
    font-size: 4.4vw;
    padding: 4vw 8.6666666667vw 4.5333333333vw 4.6666666667vw;
    margin-inline: auto;
  }
}
.header__inner--contact::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #E10000;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .header__inner--contact::after {
    right: 1.171875vw;
  }
}
@media screen and (max-width: 750px) {
  .header__inner--contact::after {
    right: 2.1333333333vw;
    width: 2vw;
    height: 2vw;
  }
}
.header__inner--contact:hover {
  opacity: 1;
  background-color: #E10000;
  color: #fff;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .header__inner--contact:hover {
    gap: 0.9765625vw;
  }
}
.header__inner--contact:hover::after {
  width: 20px;
  height: 20px;
  background-color: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/common/arrow_circle_rw.png);
  transform: translateX(-10%);
}
@media screen and (max-width: 750px) {
  .header__inner--contact:hover::after {
    width: 4vw;
    height: 4vw;
  }
}
.header__toggleBtn {
  display: none;
  transition: all 0.4s ease;
}
@media screen and (max-width: 750px) {
  .header__toggleBtn {
    display: block;
    width: 50px;
    cursor: pointer;
  }
}
@media screen and (max-width: 550px) {
  .header__toggleBtn {
    width: 40px;
  }
}
.header__toggleBtn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #06C755;
  margin-bottom: 11px;
  transition: all 0.4s ease;
}
.header__toggleBtn span:last-of-type {
  margin-bottom: 0;
}
.header__toggleBtn.is-active span:nth-child(1) {
  transform: translateY(14.5px) rotate(45deg);
}
.header__toggleBtn.is-active span:nth-child(2) {
  opacity: 0;
}
.header__toggleBtn.is-active span:nth-child(3) {
  transform: translateY(-14.5px) rotate(-45deg);
}

.footer {
  background-color: #333333;
}
.footer .wrapper {
  display: flex;
  justify-content: space-between;
  padding-block: 74px 76px;
}
@media screen and (max-width: 1440px) {
  .footer .wrapper {
    padding-block: 5.1353226926vw 5.2741151978vw;
  }
}
@media screen and (max-width: 750px) {
  .footer .wrapper {
    flex-direction: column;
    padding-block: 13.3333333333vw;
    gap: 9.3333333333vw;
  }
}
.footer__left {
  max-width: 330px;
  width: 29%;
}
@media screen and (max-width: 1200px) {
  .footer__left {
    width: 33.5%;
  }
}
@media screen and (max-width: 750px) {
  .footer__left {
    max-width: unset;
    width: 100%;
  }
}
.footer__left--logo {
  display: block;
  width: 140px;
  margin-bottom: 23px;
}
@media screen and (max-width: 1024px) {
  .footer__left--logo {
    width: 13.671875vw;
    margin-bottom: 2.24609375vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__left--logo {
    width: 40vw;
    margin-bottom: 3.3333333333vw;
  }
}
.footer__left--add {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 0.01em;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .footer__left--add {
    font-size: 1.3671875vw;
    margin-bottom: 2.9296875vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__left--add {
    font-size: 3.7333333333vw;
    margin-bottom: 4vw;
  }
}
.footer__left--contact {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 16px;
  width: 100%;
  border: solid 2px #E10000;
  border-radius: 999px;
  transition: all 0.3s ease;
  margin-left: auto;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .footer__left--contact {
    padding-block: 1.1103400416vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__left--contact {
    width: 73.3333333333vw;
    padding-block: 2.6666666667vw;
    margin-left: unset;
    margin-inline: auto;
  }
}
.footer__left--contact p {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #E10000;
  padding-right: 20px;
  letter-spacing: 0.015em;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .footer__left--contact p {
    font-size: 1.5625vw;
    padding-right: 1.953125vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__left--contact p {
    font-size: 4vw;
    padding-right: 4vw;
  }
}
.footer__left--contact p::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #E10000;
  border-radius: 100%;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 750px) {
  .footer__left--contact p::after {
    width: 2vw;
    height: 2vw;
  }
}
.footer__left--contact:hover {
  background-color: #E10000;
  opacity: 1;
}
.footer__left--contact:hover p {
  padding-right: 30px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .footer__left--contact:hover p {
    padding-right: 2.9296875vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__left--contact:hover p {
    padding-right: 5.3333333333vw;
  }
}
.footer__left--contact:hover p::after {
  width: 16px;
  height: 16px;
  background-color: transparent;
  background-image: url(../img/common/arrow_circle_rw.png);
}
@media screen and (max-width: 750px) {
  .footer__left--contact:hover p::after {
    width: 4vw;
    height: 2.1333333333vw;
  }
}
.footer__right {
  display: flex;
  gap: 40px;
  max-width: 740px;
  width: 62%;
}
@media screen and (max-width: 1024px) {
  .footer__right {
    gap: 3.90625vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__right {
    max-width: unset;
    width: 100%;
    gap: 5.3333333333vw;
  }
}
/* SNS列削除に伴い 3カラム → 2カラム（2026-07-23） */
.footer__right .footer__nav {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1024px) {
  .footer__right .footer__nav {
    width: calc((100% - 3.90625vw) / 2);
  }
}
@media screen and (max-width: 750px) {
  .footer__right .footer__nav {
    width: calc((100% - 5.3333333333vw) / 2);
  }
}
.footer__right .footer__nav--block.service {
  padding-block: 20px;
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 1024px) {
  .footer__right .footer__nav--block.service {
    padding-block: 1.953125vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__right .footer__nav--block.service {
    padding-block: 3.3333333333vw;
  }
}
.footer__right .footer__nav--block.service .current {
  padding-block: 0;
}
.footer__right .footer__nav--block.service .current::after {
  display: none;
}
.footer__right .footer__nav--block:first-of-type .current {
  padding-block: 0 17px;
}
@media screen and (max-width: 1024px) {
  .footer__right .footer__nav--block:first-of-type .current {
    padding-block: 0 1.66015625vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__right .footer__nav--block:first-of-type .current {
    padding-block: 0 2.6666666667vw;
  }
}
.footer__right .footer__nav--block .current {
  position: relative;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding-block: 20px;
}
@media screen and (max-width: 1024px) {
  .footer__right .footer__nav--block .current {
    padding-block: 1.953125vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__right .footer__nav--block .current {
    padding-block: 3.3333333333vw;
  }
}
.footer__right .footer__nav--block .current::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  animation: line-out 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.footer__right .footer__nav--block .current:hover {
  opacity: 1;
}
.footer__right .footer__nav--block .current:hover::after {
  right: auto;
  left: 0;
  animation: line-in 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes line-in {
  0% {
    width: 100%;
    left: 0;
  }
  40% {
    width: 0%;
    left: 100%;
  }
  41% {
    width: 0%;
    left: 0;
  }
  100% {
    width: 100%;
    left: 0;
  }
}
@keyframes line-out {
  0% {
    width: 0%;
    opacity: 0;
  }
  10% {
    width: 0%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
.footer__right .footer__nav--block .current .g {
  display: block;
  color: #06C755;
  font-size: 12px;
  margin-bottom: 4px;
}
@media screen and (max-width: 1024px) {
  .footer__right .footer__nav--block .current .g {
    font-size: 1.171875vw;
    margin-bottom: 0.390625vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__right .footer__nav--block .current .g {
    font-size: 3.7333333333vw;
    margin-bottom: 0.6666666667vw;
  }
}
.footer__right .footer__nav--block .current .w {
  display: block;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .footer__right .footer__nav--block .current .w {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__right .footer__nav--block .current .w {
    font-size: 4.8vw;
  }
}
.footer__right .footer__nav--block ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 17px;
}
@media screen and (max-width: 1024px) {
  .footer__right .footer__nav--block ul {
    gap: 1.26953125vw;
    margin-top: 1.66015625vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__right .footer__nav--block ul {
    gap: 2vw;
    margin-top: 2.6666666667vw;
  }
}
.footer__right .footer__nav--block ul li a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding-left: 30px;
}
@media screen and (max-width: 1200px) {
  .footer__right .footer__nav--block ul li a {
    font-size: 1.26953125vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer__right .footer__nav--block ul li a {
    padding-left: 2.9296875vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__right .footer__nav--block ul li a {
    font-size: 2.6666666667vw;
    padding-left: 4vw;
  }
}
.footer__right .footer__nav--block ul li a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 1px;
  background-color: #06C755;
  content: "";
  display: block;
}
@media screen and (max-width: 1024px) {
  .footer__right .footer__nav--block ul li a::before {
    width: 1.953125vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__right .footer__nav--block ul li a::before {
    width: 2.6666666667vw;
  }
}
.footer__right .footer__nav--sns {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .footer__right .footer__nav--sns {
    gap: 1.953125vw;
    padding-top: 1.953125vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__right .footer__nav--sns {
    gap: 2.6666666667vw;
    padding-top: 3.3333333333vw;
  }
}
.footer__right .footer__nav--sns a {
  display: block;
  width: 40px;
}
@media screen and (max-width: 1024px) {
  .footer__right .footer__nav--sns a {
    width: 3.90625vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__right .footer__nav--sns a {
    width: 9.3333333333vw;
  }
}
.footer__right .footer__nav--sns a img {
  display: block;
}
.footer__copy {
  background-color: #fff;
  text-align: center;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding-block: 20px;
}
@media screen and (max-width: 1024px) {
  .footer__copy {
    font-size: 1.3671875vw;
    padding-block: 1.953125vw;
  }
}
@media screen and (max-width: 750px) {
  .footer__copy {
    font-size: 2.4vw;
    padding-block: 3.3333333333vw 20vw;
  }
}

@keyframes spinRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fix__btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 160px;
  height: 160px;
  background-color: #E10000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  z-index: 100;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .fix__btn {
    bottom: 1.387925052vw;
    right: 1.387925052vw;
    width: 11.1034004164vw;
    height: 11.1034004164vw;
  }
}
@media screen and (max-width: 750px) {
  .fix__btn {
    bottom: 2.6666666667vw;
    right: 2.6666666667vw;
    width: 24.2666666667vw;
    height: 24.2666666667vw;
  }
}
.fix__btn:hover {
  transform: scale(1.125);
  opacity: 1;
}
.fix__btn:hover p::after {
  background-color: transparent;
  border-radius: 0;
  width: 14px;
  height: 14px;
  background-image: url("../img/common/arrow_circle_rw.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  .fix__btn:hover p::after {
    width: 0.9715475364vw;
    height: 0.9715475364vw;
  }
}
@media screen and (max-width: 750px) {
  .fix__btn:hover p::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.fix__btn--ring {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  animation: spinRing 15s linear infinite;
  pointer-events: none;
}
@media screen and (max-width: 1440px) {
  .fix__btn--ring {
    top: 0.346981263vw;
    left: 0.346981263vw;
    width: calc(100% - 0.693962526vw);
    height: calc(100% - 0.693962526vw);
  }
}
@media screen and (max-width: 750px) {
  .fix__btn--ring {
    top: 0.7466666667vw;
    left: 0.7466666667vw;
    width: calc(100% - 1.4933333333vw);
    height: calc(100% - 1.4933333333vw);
  }
}
.fix__btn--inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.fix__btn--icon {
  width: 45px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1440px) {
  .fix__btn--icon {
    width: 3.1228313671vw;
    margin-bottom: 0.5551700208vw;
  }
}
@media screen and (max-width: 750px) {
  .fix__btn--icon {
    width: 8vw;
    margin-bottom: 1.6vw;
  }
}
.fix__btn p {
  font-size: 15px;
  font-weight: bold;
  margin: 0;
  display: flex;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .fix__btn p {
    font-size: 1.040943789vw;
  }
}
@media screen and (max-width: 750px) {
  .fix__btn p {
    font-size: 2.4vw;
  }
}
.fix__btn p::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 8px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .fix__btn p::after {
    width: 0.5551700208vw;
    height: 0.5551700208vw;
    margin-left: 0.5551700208vw;
  }
}
@media screen and (max-width: 750px) {
  .fix__btn p::after {
    width: 1.4666666667vw;
    height: 1.4666666667vw;
    margin-left: 1.4666666667vw;
  }
}

/*
all ==========================================================================*/
html, body {
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding: 0;
  margin: 0;
  background-color: #fff;
  color: #333333;
  font-size: 24px;
  font-feature-settings: "palt";
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
  overscroll-behavior: none;
}

img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

a {
  text-decoration: none;
  color: #333333;
  transition: all 0.3s ease;
}
a:active, a:visited {
  text-decoration: none;
  color: #333333;
  transition: all 0.5s ease;
}
a:hover {
  opacity: 0.6;
}

ul li {
  list-style: none;
}

.wrapper {
  width: min(1200px + 2rem, 100%);
  margin-inline: auto;
  padding-inline: 1rem;
}

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

.breadcrumbs {
  background-color: #06C755;
  padding-block: 3px;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 1440px) {
  .breadcrumbs {
    font-size: 1.1103400416vw;
    padding-block: 0.2081887578vw;
  }
}
@media screen and (max-width: 750px) {
  .breadcrumbs {
    font-size: 3.2vw;
    padding-block: 0.6666666667vw;
  }
}
.breadcrumbs .wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1440px) {
  .breadcrumbs .wrapper {
    gap: 0.693962526vw;
  }
}
@media screen and (max-width: 750px) {
  .breadcrumbs .wrapper {
    gap: 2vw;
    flex-wrap: wrap;
  }
}
.breadcrumbs span,
.breadcrumbs a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 1440px) {
  .breadcrumbs span,
  .breadcrumbs a {
    font-size: 1.1103400416vw;
  }
}
@media screen and (max-width: 750px) {
  .breadcrumbs span,
  .breadcrumbs a {
    font-size: 3.2vw;
  }
}

.mvHeader {
  position: relative;
  margin-left: auto;
  padding-left: 24px;
  width: calc((100% - 1000px) / 2 + 1000px);
  padding-block: 0 60px;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .mvHeader {
    width: calc((100% - 69.3962526024vw) / 2 + 69.3962526024vw);
    padding-block: 0 4.1637751561vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader {
    padding-block: 0 16.6666666667vw;
  }
}
.mvHeader__inner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-block: 80px 20px;
  padding-left: 65px;
  border-radius: 0 0 0 105px;
}
@media screen and (max-width: 1440px) {
  .mvHeader__inner {
    padding-block: 5.5517002082vw 1.387925052vw;
    padding-left: 4.5107564192vw;
    border-radius: 0 0 0 7.2866065232vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader__inner {
    padding-block: 10.6666666667vw 2.6666666667vw;
    padding-left: 6vw;
    border-radius: 0 0 0 10.6666666667vw;
  }
}
.mvHeader__wrap {
  max-width: 1200px;
  margin-right: auto;
  margin-left: -190px;
}
@media screen and (max-width: 1440px) {
  .mvHeader__wrap {
    max-width: unset;
    width: 83.2755031228vw;
    margin-left: -13.1852879944vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader__wrap {
    width: 85.3333333333vw;
    margin-left: -19.2vw;
  }
}
.mvHeader__wrap h1, .mvHeader__wrap .mvTtl {
  font-size: 60px;
  color: #fff;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1440px) {
  .mvHeader__wrap h1, .mvHeader__wrap .mvTtl {
    font-size: 4.1637751561vw;
    margin-bottom: 2.0818875781vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader__wrap h1, .mvHeader__wrap .mvTtl {
    font-size: 8vw;
    margin-bottom: 5.3333333333vw;
    line-height: 1.25;
  }
}
.mvHeader__wrap h1 small, .mvHeader__wrap .mvTtl small {
  display: inline-block;
  font-size: 0.66em;
  margin-bottom: 20px;
}
@media screen and (max-width: 1440px) {
  .mvHeader__wrap h1 small, .mvHeader__wrap .mvTtl small {
    margin-bottom: 1.387925052vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader__wrap h1 small, .mvHeader__wrap .mvTtl small {
    margin-bottom: 3.3333333333vw;
  }
}
.mvHeader__wrap h1 .sp-show, .mvHeader__wrap .mvTtl .sp-show {
  display: none;
}
@media screen and (max-width: 750px) {
  .mvHeader__wrap h1 .sp-show, .mvHeader__wrap .mvTtl .sp-show {
    display: block;
  }
}
.mvHeader__wrap--sub {
  color: #fff;
  font-size: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 19px;
  letter-spacing: 0.035em;
  line-height: 1.35;
}
@media screen and (max-width: 1440px) {
  .mvHeader__wrap--sub {
    font-size: 2.7758501041vw;
    margin-bottom: 1.3185287994vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader__wrap--sub {
    font-size: 6vw;
    margin-bottom: 3.3333333333vw;
  }
}
.mvHeader__wrap--sub .sp-show {
  display: none;
}
@media screen and (max-width: 750px) {
  .mvHeader__wrap--sub .sp-show {
    display: block;
  }
}
.mvHeader__wrap--lead {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.035em;
  line-height: 1.65;
}
@media screen and (max-width: 1440px) {
  .mvHeader__wrap--lead {
    font-size: 0.9715475364vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader__wrap--lead {
    font-size: 3.7333333333vw;
  }
}
.mvHeader__fixTxt {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 120px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #F7F7F1;
}
@media screen and (max-width: 1440px) {
  .mvHeader__fixTxt {
    font-size: 8.3275503123vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader__fixTxt {
    font-size: 16vw;
  }
}
.mvHeader.recruitMv::before {
  position: absolute;
  background-color: #06C755;
  left: -30vw;
  top: 0;
  content: "";
  display: block;
  width: 104vw;
  height: 600px;
  border-radius: 0 0 65px 0;
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  .mvHeader.recruitMv::before {
    height: 41.6377515614vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader.recruitMv::before {
    height: 130.5333333333vw;
  }
}
.mvHeader.recruitMv .mvHeader__inner {
  background-image: url(../img/under/recruit_mv_bg.png);
}
.mvHeader.recruitMv .mvHeader__wrap--leaf {
  max-width: 221px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1440px) {
  .mvHeader.recruitMv .mvHeader__wrap--leaf {
    max-width: unset;
    width: 15.3365718251vw;
    margin-bottom: 0.693962526vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader.recruitMv .mvHeader__wrap--leaf {
    width: 50vw;
    margin-bottom: 10vw;
  }
}
.mvHeader.recruitMv h1 small, .mvHeader.recruitMv .mvTtl small {
  position: relative;
}
.mvHeader.recruitMv h1 small::after, .mvHeader.recruitMv .mvTtl small::after {
  position: absolute;
  content: "";
  top: -68px;
  right: -110px;
  width: 95px;
  height: 95px;
  background-image: url(../img/under/recruit_blow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1440px) {
  .mvHeader.recruitMv h1 small::after, .mvHeader.recruitMv .mvTtl small::after {
    top: -4.718945177vw;
    right: -7.6335877863vw;
    width: 6.5926439972vw;
    height: 6.5926439972vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader.recruitMv h1 small::after, .mvHeader.recruitMv .mvTtl small::after {
    top: -9.0666666667vw;
    right: -14.6666666667vw;
    width: 12.6666666667vw;
    height: 12.6666666667vw;
  }
}
.mvHeader.lineMv::before {
  position: absolute;
  background-color: #06C755;
  left: -30vw;
  top: 0;
  content: "";
  display: block;
  width: 105vw;
  height: 600px;
  border-radius: 0 0 65px 0;
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  .mvHeader.lineMv::before {
    height: 41.6377515614vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader.lineMv::before {
    height: 105.6vw;
  }
}
.mvHeader.lineMv .mvHeader__inner {
  background-image: url(../img/under/line_mv_bg.png);
  padding-block: 96px 74px;
}
@media screen and (max-width: 1440px) {
  .mvHeader.lineMv .mvHeader__inner {
    padding-block: 6.6620402498vw 5.1353226926vw;
  }
}
.mvHeader.lineMv .mvHeader__wrap--leaf {
  max-width: 773px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1440px) {
  .mvHeader.lineMv .mvHeader__wrap--leaf {
    max-width: unset;
    width: 53.6433032616vw;
    margin-bottom: 0.693962526vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader.lineMv .mvHeader__wrap--leaf {
    width: 87.6vw;
    margin-bottom: 5.3333333333vw;
  }
}
.mvHeader.advMv::before {
  position: absolute;
  background-color: #06C755;
  left: -30vw;
  top: 0;
  content: "";
  display: block;
  width: 105vw;
  height: 600px;
  border-radius: 0 0 65px 0;
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  .mvHeader.advMv::before {
    height: 41.6377515614vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader.advMv::before {
    height: 124.5333333333vw;
  }
}
.mvHeader.advMv .mvHeader__inner {
  background-image: url(../img/under/adv_mv_bg.png);
  padding-block: 92px 31px;
}
@media screen and (max-width: 1440px) {
  .mvHeader.advMv .mvHeader__inner {
    padding-block: 6.6620402498vw 2.1512838307vw;
  }
}
.mvHeader.advMv .mvHeader__wrap--leaf {
  max-width: 530px;
  margin-bottom: 7px;
}
@media screen and (max-width: 1440px) {
  .mvHeader.advMv .mvHeader__wrap--leaf {
    max-width: unset;
    width: 36.7800138793vw;
    margin-bottom: 0.4857737682vw;
  }
}
@media screen and (max-width: 750px) {
  .mvHeader.advMv .mvHeader__wrap--leaf {
    width: 87.6vw;
    margin-bottom: 5.3333333333vw;
  }
}
.mvHeader.advMv h1, .mvHeader.advMv .mvTtl {
  line-height: 1.125;
  margin-bottom: 42px;
}

.noMvHeader {
  position: relative;
  padding-block: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  background-image: url(../img/under/no_mv_header_bg.png);
}
@media screen and (max-width: 1440px) {
  .noMvHeader {
    padding-block: 10.4094378904vw;
  }
}
@media screen and (max-width: 750px) {
  .noMvHeader {
    padding-block: 13.3333333333vw 33.3333333333vw;
    background-image: url(../img/under/no_mv_header_bg_sp.png);
  }
}
.noMvHeader::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.noMvHeader.aboutHeader::after {
  right: 261px;
  width: 276px;
  height: 354px;
  background-image: url(../img/under/about_ttl_bg.png);
}
@media screen and (max-width: 1440px) {
  .noMvHeader.aboutHeader::after {
    right: 18.1124219292vw;
    width: 19.1533657183vw;
    height: 24.5662734212vw;
  }
}
@media screen and (max-width: 750px) {
  .noMvHeader.aboutHeader::after {
    right: 14.8vw;
    top: 32.9333333333vw;
    width: 30.8vw;
    height: 39.2vw;
  }
}
.noMvHeader.columnHeader::after {
  right: 228px;
  width: 350px;
  height: 354px;
  background-image: url(../img/under/column_ttl_bg.png);
}
@media screen and (max-width: 1440px) {
  .noMvHeader.columnHeader::after {
    right: 15.8223455933vw;
    width: 24.2886884108vw;
    height: 24.5662734212vw;
  }
}
@media screen and (max-width: 750px) {
  .noMvHeader.columnHeader::after {
    right: 20vw;
    top: 32.9333333333vw;
    width: 38.8vw;
    height: 39.2vw;
  }
}
.noMvHeader.newsHeader::after {
  right: 248px;
  width: 284px;
  height: 354px;
  background-image: url(../img/under/news_ttl_bg.png);
}
@media screen and (max-width: 1440px) {
  .noMvHeader.newsHeader::after {
    right: 17.2102706454vw;
    width: 19.7085357391vw;
    height: 24.5662734212vw;
  }
}
@media screen and (max-width: 750px) {
  .noMvHeader.newsHeader::after {
    right: 22.9333333333vw;
    top: 32.9333333333vw;
    width: 31.6vw;
    height: 39.2vw;
  }
}
.noMvHeader.contactHeader::after {
  right: 164px;
  width: 476px;
  height: 354px;
  background-image: url(../img/under/contact_ttl_bg.png);
}
@media screen and (max-width: 1440px) {
  .noMvHeader.contactHeader::after {
    right: 11.3809854268vw;
    width: 33.0326162387vw;
    height: 24.5662734212vw;
  }
}
@media screen and (max-width: 750px) {
  .noMvHeader.contactHeader::after {
    right: 20vw;
    top: 51.8666666667vw;
    width: 39.6vw;
    height: 30.1333333333vw;
  }
}
.noMvHeader h1, .noMvHeader .pageTtl {
  line-height: 0.9;
}
@media screen and (max-width: 750px) {
  .noMvHeader h1, .noMvHeader .pageTtl {
    line-height: 1.25;
  }
}
.noMvHeader h1 strong, .noMvHeader .pageTtl strong {
  font-size: 120px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #06C755;
}
@media screen and (max-width: 1440px) {
  .noMvHeader h1 strong, .noMvHeader .pageTtl strong {
    font-size: 8.3275503123vw;
  }
}
@media screen and (max-width: 750px) {
  .noMvHeader h1 strong, .noMvHeader .pageTtl strong {
    font-size: 16vw;
  }
}
.noMvHeader h1 small, .noMvHeader .pageTtl small {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 1440px) {
  .noMvHeader h1 small, .noMvHeader .pageTtl small {
    font-size: 1.387925052vw;
  }
}
@media screen and (max-width: 750px) {
  .noMvHeader h1 small, .noMvHeader .pageTtl small {
    font-size: 5.3333333333vw;
  }
}

.underTtl {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  font-size: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
}
@media screen and (max-width: 1440px) {
  .underTtl {
    font-size: 2.7758501041vw;
    margin-bottom: 4.1637751561vw;
  }
}
@media screen and (max-width: 750px) {
  .underTtl {
    font-size: 6.6666666667vw;
    margin-bottom: 9.3333333333vw;
  }
}
.underTtl span {
  display: inline-block;
  margin-bottom: 16px;
  padding: 2px 10px;
  background-color: #06C755;
  color: #fff;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: normal;
}
@media screen and (max-width: 1440px) {
  .underTtl span {
    margin-bottom: 1.1103400416vw;
    padding: 0.1387925052vw 0.693962526vw;
    font-size: 1.387925052vw;
    border-radius: 0.2775850104vw;
  }
}
@media screen and (max-width: 750px) {
  .underTtl span {
    margin-bottom: 2.6666666667vw;
    padding: 0.4vw 2vw;
    font-size: 3.2vw;
    border-radius: 0.8vw;
  }
}

.descBlock {
  margin-left: auto;
  padding-left: 24px;
  width: calc((100% - 1250px) / 2 + 1250px);
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .descBlock {
    padding-left: 1.6655100625vw;
    width: calc((100% - 86.7453157529vw) / 2 + 86.7453157529vw);
  }
}
@media screen and (max-width: 750px) {
  .descBlock {
    padding-left: 3.2vw;
  }
}
.descBlock__inner {
  background-color: #fff;
  padding-block: 60px;
  padding-left: 60px;
  border-radius: 105px 0 0 0;
}
@media screen and (max-width: 1440px) {
  .descBlock__inner {
    padding-block: 4.1637751561vw;
    padding-left: 4.1637751561vw;
    border-radius: 7.2866065232vw 0 0 0;
  }
}
@media screen and (max-width: 750px) {
  .descBlock__inner {
    padding-block: 8vw;
    padding-left: 8vw;
    border-radius: 10.6666666667vw 0 0 0;
  }
}
.descBlock__wrap {
  max-width: 1140px;
  margin-right: auto;
}
@media screen and (max-width: 1440px) {
  .descBlock__wrap {
    max-width: unset;
    width: 79.1117279667vw;
  }
}
@media screen and (max-width: 750px) {
  .descBlock__wrap {
    width: 71.3333333333vw;
    flex-direction: column;
  }
}
.descBlock__ttl {
  margin-bottom: 30px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1440px) {
  .descBlock__ttl {
    margin-bottom: 2.0818875781vw;
  }
}
@media screen and (max-width: 750px) {
  .descBlock__ttl {
    margin-bottom: 4vw;
  }
}
.descBlock__ttl span {
  display: inline-block;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  background-color: #fff;
  color: #06C755;
  padding: 2px 10px;
  margin-bottom: 20px;
  border-radius: 3px;
}
@media screen and (max-width: 1440px) {
  .descBlock__ttl span {
    font-size: 1.387925052vw;
    padding: 0.1387925052vw 0.693962526vw;
    margin-bottom: 1.387925052vw;
  }
}
@media screen and (max-width: 750px) {
  .descBlock__ttl span {
    font-size: 3.2vw;
    padding: 0.4vw 2vw;
    margin-bottom: 3.3333333333vw;
  }
}
.descBlock__ttl h2 {
  font-size: 40px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1440px) {
  .descBlock__ttl h2 {
    font-size: 2.7758501041vw;
    margin-bottom: 1.387925052vw;
  }
}
@media screen and (max-width: 750px) {
  .descBlock__ttl h2 {
    font-size: 5.6vw;
    margin-bottom: 4vw;
  }
}
.descBlock__ttl h2 strong {
  font-size: 1.5em;
  border-bottom: dashed 4px #fff;
}
.descBlock__ttl p {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1440px) {
  .descBlock__ttl p {
    font-size: 0.9715475364vw;
  }
}
@media screen and (max-width: 750px) {
  .descBlock__ttl p {
    font-size: 3.7333333333vw;
  }
}
.descBlock:nth-of-type(2n) {
  margin-left: unset;
  margin-right: auto;
  padding-left: unset;
  padding-right: 24px;
  width: calc((100% - 1250px) / 2 + 1250px);
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .descBlock:nth-of-type(2n) {
    padding-right: 1.6655100625vw;
    width: calc((100% - 86.7453157529vw) / 2 + 86.7453157529vw);
  }
}
@media screen and (max-width: 750px) {
  .descBlock:nth-of-type(2n) {
    padding-right: 3.2vw;
  }
}
.descBlock:nth-of-type(2n) .descBlock__inner {
  background-color: #fff;
  padding-block: 60px;
  padding-right: 60px;
  padding-left: none;
  border-radius: 0 105px 0 0;
}
@media screen and (max-width: 1440px) {
  .descBlock:nth-of-type(2n) .descBlock__inner {
    padding-block: 4.1637751561vw;
    padding-right: 4.1637751561vw;
    border-radius: 0 7.2866065232vw 0 0;
  }
}
@media screen and (max-width: 750px) {
  .descBlock:nth-of-type(2n) .descBlock__inner {
    padding-block: 8vw;
    padding-right: 8vw;
    border-radius: 0 10.6666666667vw 0 0;
  }
}
.descBlock:nth-of-type(2n) .descBlock__wrap {
  max-width: 1140px;
  margin-left: auto;
  margin-right: 0 !important;
}
@media screen and (max-width: 1440px) {
  .descBlock:nth-of-type(2n) .descBlock__wrap {
    max-width: unset;
    width: 83.2755031228vw;
  }
}
@media screen and (max-width: 750px) {
  .descBlock:nth-of-type(2n) .descBlock__wrap {
    width: 71.3333333333vw;
    flex-direction: column;
  }
}
.descBlock:nth-of-type(2n) .descBlock__ttl {
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .descBlock:nth-of-type(2n) .descBlock__ttl {
    margin-left: 10vw;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
  clear: both;
}
.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin: 0 !important;
  border: none !important;
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: bold;
  background-color: rgba(6, 199, 85, 0.3);
  color: #333333;
  transition: all 0.3s ease;
}
.wp-pagenavi .current {
  background-color: #06C755;
  color: #fff;
}
.wp-pagenavi a.page:hover {
  background-color: #06C755;
  color: #fff;
  opacity: 0.8;
}
.wp-pagenavi .pages,
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  opacity: 0.7;
}
.wp-pagenavi .previouspostslink img,
.wp-pagenavi .nextpostslink img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 750px) {
  .wp-pagenavi {
    gap: 10px;
  }
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 44px;
    height: 44px;
  }
}/*# sourceMappingURL=all-page.css.map */
/* スクリーンリーダー向け（視覚的に非表示・検索エンジンには読まれる）2026-07-23 追加 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/*
reCAPTCHA v3 ==========================================================================*/
/* 右下の固定ボタン（.fix__btn）と重なるためバッジは隠し、
   代わりにフォーム下へ帰属表示を出す（Googleが認めている方法） */
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-note {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.8;
  color: #666666;
  text-align: center;
}
.recaptcha-note a {
  color: #666666;
  text-decoration: underline;
}
@media screen and (max-width: 750px) {
  .recaptcha-note {
    margin-top: 6.4vw;
    font-size: 3.2vw;
  }
}
