@charset "UTF-8";
html {
  font-size: 10px;
}

@media screen and (max-width: 1730px) {
  html {
    font-size: 0.625vw;
  }
}
@media screen and (max-width: 1060px) {
  html {
    font-size: 0.9333333333vw;
  }
}
@media screen and (max-width: 520px) {
  html {
    font-size: 1.3333333333vw;
  }
}
:root {
  --var-animation-timing-function: cubic-bezier(0.41, 0.67, 0.37, 1);
  --var-linear-gradient: linear-gradient(90deg, rgba(14, 148, 188, 1) 0%, rgba(89, 195, 166, 1) 100%);
  --var-linear-gradient-reverse: linear-gradient(270deg, rgba(14, 148, 188, 0.9) 0%, rgba(89, 195, 166, 0.9) 100%);
}

@media screen and (max-width: 1060px) {
  body,
  html {
    min-width: 0;
    overscroll-behavior-y: none;
  }
}

body {
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  font-stretch: 95%;
  line-height: 1.8;
  color: #000;
  font-weight: 400;
  word-break: break-all; /* 2023.08.09 変更 */
  background-color: #fff;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.main {
  padding-top: 20rem;
}
@media screen and (max-width: 1060px) {
  .main {
    padding-top: 13rem;
  }
}

/* header */
.header {
  width: 100%;
  position: fixed;
  z-index: 20;
  height: 20rem;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1060px) {
  .header {
    height: 13rem;
    border-bottom: none;
  }
}

.header__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  height: 100%;
}

.header__logo {
  width: 27.0833%;
  height: 100%;
}
@media screen and (max-width: 1060px) {
  .header__logo {
    width: calc(100% - 13rem);
    position: relative;
    z-index: 11;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
  }
}
.header__logo .logo {
  width: 100%;
  height: 100%;
  display: block;
}
.header__logo .logo a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.header__logo .logo a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-image: var(--var-linear-gradient);
  transition: all 0.2s var(--var-animation-timing-function);
  opacity: 0;
}
@media screen and (max-width: 1060px) {
  .header__logo .logo a::before {
    display: none;
  }
}
.header__logo .logo a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 0.2s var(--var-animation-timing-function);
}
@media screen and (max-width: 1060px) {
  .header__logo .logo a span {
    justify-content: flex-start;
    padding-left: 1.8rem;
  }
}
.header__logo .logo a span.white {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}
@media screen and (max-width: 1060px) {
  .header__logo .logo a span.white {
    display: none;
  }
}
.header__logo .logo a span.black {
  position: relative;
  z-index: 1;
  opacity: 1;
}
.header__logo .logo a:hover::before {
  opacity: 1;
}
.header__logo .logo a:hover span.white {
  opacity: 1;
}
.header__logo .logo a:hover span.black {
  opacity: 0;
}
@media screen and (max-width: 1060px) {
  .header__logo .logo a:hover span.black {
    opacity: 1;
  }
}
.header__logo .logo a img {
  width: 84.0385%;
}
@media screen and (max-width: 1060px) {
  .header__logo .logo a img {
    width: 30.66rem;
  }
}
@media screen and (max-width: 520px) {
  .header__logo .logo a img {
    width: 43.8rem;
  }
}

.header__menu__wrapper {
  width: 72.9167%;
  line-height: 1;
  border-left: 1px solid #ccc;
  height: 100%;
}
@media screen and (max-width: 1060px) {
  .header__menu__wrapper {
    border-left: none;
  }
}
.header__menu__wrapper a {
  text-decoration: none;
}
@media screen and (max-width: 1060px) {
  .header__menu__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100vh;
    transition: all 0.3s;
    transform: translateX(100%);
  }
}

@media screen and (max-width: 1060px) {
  .is-drawerActive .header__menu__wrapper {
    transform: translateX(0);
  }
}

.header__nav {
  height: 100%;
  -ms-overflow-style: none; /* 2023.08.09 追加 */
  scrollbar-width: none; /* 2023.08.09 追加 */
}
/* 2023.08.09 追加 ここから */
.header__nav::-webkit-scrollbar {
  display: none;
}
/* 2023.08.09 追加 ここまで */
@media screen and (max-width: 1060px) {
  .header__nav {
    background-color: #f5f5f5;
    height: 100vh;
    width: calc(100% - 13rem);
    position: absolute;
    padding: 13rem 0 0;
    overflow-y: auto;
    top: 0;
    left: 0;
  }
}

.header__nav__inner {
  height: 100%;
}
@media screen and (max-width: 1060px) {
  .header__nav__inner {
    width: 100%;
    padding-bottom: 21rem;
    height: auto;
  }
}

.header__utility__box {
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 1921px) {
  .header__utility__box {
    border-right: 1px solid #ccc;
  }
}
.header__utility__box.pc__box {
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 9.5rem;
}
@media screen and (max-width: 1060px) {
  .header__utility__box.pc__box {
    display: none;
  }
}
.header__utility__box.sp__box {
  display: none;
}
@media screen and (max-width: 1060px) {
  .header__utility__box.sp__box {
    display: block;
    padding-top: 7rem;
    padding-left: 7.5rem;
  }
}
.header__utility__box.sp__box .link__list {
  display: flex;
  margin-bottom: 7rem;
}
.header__utility__box.sp__box .link__list .link__item {
  padding-left: 1rem;
  padding-right: 1rem;
  border-right: 1px solid #000;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.header__utility__box.sp__box .link__list .link__item:first-child {
  padding-left: 0;
}
.header__utility__box.sp__box .link__list .link__item:last-child {
  padding-right: 0;
  border-right: none;
}
.header__utility__box.sp__box .link__list .link__item a {
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 1060px) {
  .header__utility__box {
    flex-wrap: wrap;
    width: 100%;
    border-bottom: none;
  }
}
.header__utility__box a {
  color: #000;
}

.utility__item01 {
  margin-right: 5.5rem;
}
@media screen and (max-width: 1060px) {
  .utility__item01 {
    margin-right: 0;
    margin-bottom: 6.5rem;
  }
}
.utility__item01 .text {
  margin-right: 1rem;
}
.utility__item01 .icon svg {
  width: 1.6rem;
  height: 1.2rem;
}
@media screen and (max-width: 1060px) {
  .utility__item01 .icon svg {
    width: 2.3rem;
    height: 1.8rem;
  }
}

.utility__item01 a,
.utility__item03 a {
  font-weight: 700;
  display: flex;
  align-items: center;
}
.utility__item01 a .underline::before,
.utility__item03 a .underline::before {
  bottom: -0.5rem;
}

.utility__item02 {
  display: flex;
  align-items: center;
  margin-right: 4.5rem;
}
@media screen and (max-width: 1060px) {
  .utility__item02 {
    margin-right: 0;
  }
}
.utility__item02 .text {
  font-weight: 700;
  margin-right: 1.5rem;
}
.utility__item02 button {
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.06);
  position: relative;
  color: #000;
}
@media screen and (max-width: 1060px) {
  .utility__item02 button {
    border-radius: 1rem;
  }
}
.utility__item02 button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-image: var(--var-linear-gradient);
  opacity: 0;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  transition: all 0.2s var(--var-animation-timing-function);
}
@media screen and (max-width: 1060px) {
  .utility__item02 button::before {
    border-radius: 1rem;
  }
}
.utility__item02 button span {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.utility__item02 button.active {
  border: none;
  color: #fff;
}
.utility__item02 button.active::before {
  opacity: 1;
}
.utility__item02 button.bt01 {
  margin-right: 0.8rem;
}
.utility__item02 button:hover {
  color: #fff;
  border: none;
}
@media screen and (max-width: 1060px) {
  .utility__item02 button:hover {
    color: inherit;
    border: 1px solid #ccc;
  }
}
.utility__item02 button:hover::before {
  opacity: 1;
}
@media screen and (max-width: 1060px) {
  .utility__item02 button:hover::before {
    opacity: 0;
  }
}
.utility__item02 button:hover.active {
  border: none;
  color: #fff;
}
.utility__item02 button:hover.active::before {
  opacity: 1;
}

@media screen and (max-width: 1060px) {
  .utility__item03 {
    margin-bottom: 5.8rem;
  }
}
.utility__item03 .text {
  margin-right: 2rem;
}
.utility__item03 .icon svg {
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 1060px) {
  .utility__item03 .icon svg {
    width: 3.8rem;
    height: 3.8rem;
  }
}

.header__nav__list {
  display: flex;
  height: 70%;
}
@media screen and (max-width: 1060px) {
  .header__nav__list {
    display: block;
    height: auto;
    order: 1;
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
}
.header__nav__list .list__item {
  flex: 1;
  line-height: 1;
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 1060px) {
  .header__nav__list .list__item {
    border-right: none;
    margin-bottom: 8.5rem;
  }
}
.header__nav__list .list__item:last-child {
  border-right: none;
  margin-bottom: 0;
}
@media screen and (min-width: 1921px) {
  .header__nav__list .list__item:last-child {
    border-right: 1px solid #ccc;
  }
}
.header__nav__list .list__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 3.5rem 0 0 10%;
  color: #000;
  background-color: #fff;
  transition: all 0.2s var(--var-animation-timing-function);
  position: relative;
}
@media screen and (max-width: 1060px) {
  .header__nav__list .list__item a {
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 0 0;
  }
}
.header__nav__list .list__item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-image: var(--var-linear-gradient);
  transition: all 0.2s var(--var-animation-timing-function);
  opacity: 0;
}
@media screen and (max-width: 1060px) {
  .header__nav__list .list__item a::before {
    display: none;
  }
}
.header__nav__list .list__item a .en {
  display: block;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1060px) {
  .header__nav__list .list__item a .en {
    width: 100%;
    order: 2;
    color: #939393;
    margin-bottom: 0;
  }
}
.header__nav__list .list__item a .jp {
  display: block;
  letter-spacing: 0;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1060px) {
  .header__nav__list .list__item a .jp {
    width: 100%;
    order: 1;
    margin-bottom: 2rem;
  }
}
.header__nav__list .list__item a:hover {
  color: #fff;
}
@media screen and (max-width: 1060px) {
  .header__nav__list .list__item a:hover {
    color: inherit;
  }
}
.header__nav__list .list__item a:hover::before {
  opacity: 1;
}
.header__nav__list.current-top .list__item.item01 a {
  color: #fff;
}
@media screen and (max-width: 1060px) {
  .header__nav__list.current-top .list__item.item01 a {
    color: inherit;
  }
}
.header__nav__list.current-top .list__item.item01 a::before {
  opacity: 1;
}
.header__nav__list.current-about .list__item.item02 a {
  color: #fff;
}
@media screen and (max-width: 1060px) {
  .header__nav__list.current-about .list__item.item02 a {
    color: inherit;
  }
}
.header__nav__list.current-about .list__item.item02 a::before {
  opacity: 1;
}
.header__nav__list.current-incorporate .list__item.item03 a {
  color: #fff;
}
@media screen and (max-width: 1060px) {
  .header__nav__list.current-incorporate .list__item.item03 a {
    color: inherit;
  }
}
.header__nav__list.current-incorporate .list__item.item03 a::before {
  opacity: 1;
}
.header__nav__list.current-result .list__item.item04 a {
  color: #fff;
}
@media screen and (max-width: 1060px) {
  .header__nav__list.current-result .list__item.item04 a {
    color: inherit;
  }
}
.header__nav__list.current-result .list__item.item04 a::before {
  opacity: 1;
}
.header__nav__list.current-equip .list__item.item05 a {
  color: #fff;
}
@media screen and (max-width: 1060px) {
  .header__nav__list.current-equip .list__item.item05 a {
    color: inherit;
  }
}
.header__nav__list.current-equip .list__item.item05 a::before {
  opacity: 1;
}
.header__nav__list.current-event .list__item.item06 a {
  color: #fff;
}
@media screen and (max-width: 1060px) {
  .header__nav__list.current-event .list__item.item06 a {
    color: inherit;
  }
}
.header__nav__list.current-event .list__item.item06 a::before {
  opacity: 1;
}
.header__nav__list.current-recruit .list__item.item07 a {
  color: #fff;
}
@media screen and (max-width: 1060px) {
  .header__nav__list.current-recruit .list__item.item07 a {
    color: inherit;
  }
}
.header__nav__list.current-recruit .list__item.item07 a::before {
  opacity: 1;
}

.header__copyright {
  display: none;
}
@media screen and (max-width: 1060px) {
  .header__copyright {
    position: fixed;
    top: 13rem;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13rem;
    height: calc(100% - 13rem);
    background-color: #fff;
    border-left: 1px solid #ccc;
    line-height: 1;
    padding-left: 0.5rem;
  }
}
.header__copyright p {
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  color: #7f7f7f;
  white-space: nowrap;
}

.p-hamburger {
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 100;
  width: 13rem;
  height: 100%;
  background-color: #fff;
  margin: auto;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  transition: all 0.3s var(--var-animation-timing-function);
  display: none;
}
@media screen and (max-width: 1060px) {
  .p-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
}

.p-hamburger__line {
  display: block;
  width: 6rem;
  height: 2rem;
  position: relative;
}
.p-hamburger__line .line {
  display: block;
  width: 100%;
  height: 0.4rem;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: all 0.3s var(--var-animation-timing-function);
}
.p-hamburger__line .line:nth-child(1) {
  top: 0px;
  animation: sp-menu07-bar01 0.75s forwards;
}
.p-hamburger__line .line:nth-child(2) {
  top: 2rem;
  animation: sp-menu07-bar03 0.75s forwards;
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line .line:nth-child(1) {
  animation: sp-active-menu07-bar01 0.75s forwards;
}
.p-hamburger[aria-expanded="true"] .p-hamburger__line .line:nth-child(2) {
  animation: sp-active-menu07-bar03 0.75s forwards;
}

@keyframes sp-menu07-bar01 {
  0% {
    transform: translateY(1rem) rotate(30deg);
  }
  30% {
    transform: translateY(1rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes sp-menu07-bar03 {
  0% {
    transform: translateY(-1rem) rotate(-30deg);
  }
  30% {
    transform: translateY(-1rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes sp-active-menu07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  30% {
    transform: translateY(1rem) rotate(0);
  }
  100% {
    transform: translateY(1rem) rotate(30deg);
  }
}
@keyframes sp-active-menu07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  30% {
    transform: translateY(-1rem) rotate(0);
  }
  100% {
    transform: translateY(-1rem) rotate(-30deg);
  }
}
/* footer */
.footer {
  border-top: 1px solid #ccc;
  padding-top: 5.5rem;
  padding-bottom: 11.5rem;
}
@media screen and (max-width: 1060px) {
  .footer {
    padding: 0;
  }
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  padding-right: 60px;
}
@media screen and (max-width: 1060px) {
  .footer__inner {
    display: block;
    padding-right: 0;
  }
}

.footer__left {
  padding-right: 1rem;
}
@media screen and (max-width: 1060px) {
  .footer__left {
    padding: 9.5rem 4rem;
    text-align: center;
    background-color: #f9f9f7;
  }
}
.footer__left .logo {
  /* width: 437px; */
  width: 357px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1060px) {
  .footer__left .logo {
    width: 52rem;
    /* margin: 0 auto 5rem; */
    margin: 0 auto 0rem;
  }
}
.footer__left .address__text {
  line-height: 2;
}

.footer__right {
  padding-left: 1rem;
  padding-top: 2.5rem;
}
@media screen and (max-width: 1060px) {
  .footer__right {
    padding: 5rem 4rem 10rem 4rem;
  }
}
.footer__right .copyright {
  color: #ccc;
  letter-spacing: 0;
}
@media screen and (max-width: 1060px) {
  .footer__right .copyright {
    text-align: center;
  }
}

.footer__list {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 1060px) {
  .footer__list {
    justify-content: center;
    margin-bottom: 5.5rem;
  }
}
.footer__list .link__item {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  border-right: 1px solid #000;
  line-height: 1.2;
}
@media screen and (max-width: 1060px) {
  .footer__list .link__item {
    letter-spacing: 0.1em;
  }
}
.footer__list .link__item:first-child {
  padding-left: 0;
}
.footer__list .link__item:last-child {
  padding-right: 0;
  border-right: none;
}
.footer__list .link__item a {
  color: #000;
  text-decoration: none;
}

/* バナー */
.foot__banner__section .content__inner {
  padding-top: 12rem;
  padding-bottom: 12rem;
  padding-right: 60px;
}
@media screen and (max-width: 1060px) {
  .foot__banner__section .content__inner {
    padding: 10rem 3.5rem;
  }
}
.foot__banner__section .banner__list {
  display: flex;
  flex-wrap: wrap;
}
.foot__banner__section .banner__list li {
  width: 20%;
}
@media screen and (max-width: 1060px) {
  .foot__banner__section .banner__list li {
    width: 50%;
  }
}
.foot__banner__section .banner__list li a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: relative;
}
.foot__banner__section .banner__list li a .icon {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: block;
}
@media screen and (max-width: 1060px) {
  .foot__banner__section .banner__list li a .icon {
    top: auto;
    right: 2rem;
    bottom: 2rem;
  }
}
.foot__banner__section .banner__list li a .icon svg {
  width: 1.7rem;
  height: 1.3rem;
}
@media screen and (max-width: 1060px) {
  .foot__banner__section .banner__list li a .icon svg {
    width: 2.3rem;
    height: 1.8rem;
  }
}
.foot__banner__section .banner__list li a .icon.white svg .icon_link-1 {
  fill: #fff;
}
.foot__banner__section .banner__list li a .icon.white svg .icon_link-2 {
  stroke: #fff;
}
.foot__banner__section .banner__list li:nth-child(1),
.foot__banner__section .banner__list li:nth-child(2),
.foot__banner__section .banner__list li:nth-child(3),
.foot__banner__section .banner__list li:nth-child(4) {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.foot__banner__section .banner__list li:nth-child(5) {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1060px) {
  .foot__banner__section .banner__list li:nth-child(5) {
    border-right: 1px solid #ccc;
  }
}
.foot__banner__section .banner__list li:nth-child(6),
.foot__banner__section .banner__list li:nth-child(7),
.foot__banner__section .banner__list li:nth-child(8),
.foot__banner__section .banner__list li:nth-child(9) {
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 1060px) {
  .foot__banner__section .banner__list li:nth-child(even) {
    border-right: none;
  }
}
@media screen and (max-width: 1060px) {
  .foot__banner__section .banner__list li:nth-child(6),
  .foot__banner__section .banner__list li:nth-child(7),
  .foot__banner__section .banner__list li:nth-child(8) {
    border-bottom: 1px solid #ccc;
  }
}

body {
  opacity: 0;
  transition-property: all;
  transition-duration: 0.5s;
}
body .header {
  opacity: 0;
  transition-property: all;
  transition-duration: 0.5s;
  transition-delay: 0.3s;
  transition-timing-function: var(--var-animation-timing-function);
}
body.loaded {
  opacity: 1;
}
body.loaded .header {
  opacity: 1;
}

/*ページネーション*/

/* 0818追加 */
.wp-pagenaviWrapper .wp-pagenavi {
  text-align: center;
  position: relative;
  margin-top: 8px;
}
@media only screen and (min-width: 1061px) {
  .wp-pagenaviWrapper .wp-pagenavi {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 18px;
  }
}
.wp-pagenaviWrapper .wp-pagenavi > span,
.wp-pagenaviWrapper .wp-pagenavi > .page,
.wp-pagenaviWrapper .wp-pagenavi > .last,
.wp-pagenaviWrapper .wp-pagenavi > .first {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  /* margin-left: 18px; */
  margin-left: 6px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: #000;
  /* color: #fff; */
  /* color: #103ea2; */
  /* border-bottom: 1px solid rgba(0, 0, 0, 0); */
}
@media only screen and (min-width: 1061px) {
  .wp-pagenaviWrapper .wp-pagenavi > span,
  .wp-pagenaviWrapper .wp-pagenavi > .page,
  .wp-pagenaviWrapper .wp-pagenavi > .last,
  .wp-pagenaviWrapper .wp-pagenavi > .first {
    font-size: 16px;
    margin-left: 14px;
    width: 50px;
    height: 50px;
  }
}
.wp-pagenaviWrapper .wp-pagenavi > span:nth-child(1),
.wp-pagenaviWrapper .wp-pagenavi > .page:nth-child(1),
.wp-pagenaviWrapper .wp-pagenavi > .last:nth-child(1),
.wp-pagenaviWrapper .wp-pagenavi > .first:nth-child(1) {
  margin-left: 0;
}
.wp-pagenaviWrapper .wp-pagenavi > span.current {
  color: #fff;
  background-color: #000;
  /* border-color: #cfcfcf; */
}
.wp-pagenaviWrapper .wp-pagenavi > .page:hover,
.wp-pagenaviWrapper .wp-pagenavi > .last:hover,
.wp-pagenaviWrapper .wp-pagenavi > .first:hover {
  color: #fff;
  background-color: #000;
  /* border-color: #cfcfcf; */
}
.wp-pagenaviWrapper .wp-pagenavi .extend {
  border: none;
}
.wp-pagenaviWrapper .wp-pagenavi .previouspostslink,
.wp-pagenaviWrapper .wp-pagenavi .nextpostslink {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 20px;
  height: 24px;
  color: #000;
}
@media only screen and (min-width: 1061px) {
  .wp-pagenaviWrapper .wp-pagenavi .previouspostslink,
  .wp-pagenaviWrapper .wp-pagenavi .nextpostslink {
    font-size: 16px;
    gap: 0 44px;
    height: 37px;
  }
}
.wp-pagenaviWrapper .wp-pagenavi .nextpostslink {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (min-width: 1061px) {
  .wp-pagenaviWrapper .wp-pagenavi .nextpostslink {
    -webkit-transition: right 0.1s ease;
    transition: right 0.1s ease;
  }
}
/* .wp-pagenaviWrapper .wp-pagenavi .nextpostslink::after {
  content: "";
  display: block;
  background-image: url("/assets/img/svg/arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 7.6466666667px;
  height: 13.8733333333px;
}
@media only screen and (min-width: 1061px) {
  .wp-pagenaviWrapper .wp-pagenavi .nextpostslink::after {
    width: 11.47px;
    height: 20.81px;
  }
} */
/* .wp-pagenaviWrapper .wp-pagenavi .nextpostslink::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 1px;
  right: 18px;
  height: 100%;
  background-color: #cfcfcf;
}
@media only screen and (min-width: 1061px) {
  .wp-pagenaviWrapper .wp-pagenavi .nextpostslink::before {
    right: 33px;
  }
} */
.wp-pagenaviWrapper .wp-pagenavi .nextpostslink:hover {
  right: -4px;
}
.wp-pagenaviWrapper .wp-pagenavi .previouspostslink {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (min-width: 1061px) {
  .wp-pagenaviWrapper .wp-pagenavi .previouspostslink {
    -webkit-transition: left 0.1s ease;
    transition: left 0.1s ease;
  }
}
/* .wp-pagenaviWrapper .wp-pagenavi .previouspostslink::before {
  content: "";
  display: block;
  background-image: url("/assets/img/svg/arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 7.6466666667px;
  height: 13.8733333333px;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
@media only screen and (min-width: 1061px) {
  .wp-pagenaviWrapper .wp-pagenavi .previouspostslink::before {
    width: 11.47px;
    height: 20.81px;
  }
} */
/* .wp-pagenaviWrapper .wp-pagenavi .previouspostslink::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 1px;
  left: 18px;
  height: 100%;
  background-color: #cfcfcf;
}
@media only screen and (min-width: 1061px) {
  .wp-pagenaviWrapper .wp-pagenavi .previouspostslink::after {
    left: 33px;
  }
} */
.wp-pagenaviWrapper .wp-pagenavi .previouspostslink:hover {
  left: -4px;
}

/* 0818ここまで */

/* ページトップ */

.page-top {
  position: fixed;
  z-index: 5;
  bottom: 20px;
  right: 30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* background-color: #fff; */
  transition: background-color 0.2s var(--var-animation-timing-function);
}

@media screen and (max-width: 1060px) {
  .page-top {
    bottom: 2rem;
    right: 3rem;
    width: 8rem;
    height: 8rem;
  }
}
.page-top::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-image: var(--var-linear-gradient);
  border-radius: 50%;
  transition: opacity 0.2s var(--var-animation-timing-function);
  opacity: 0;
}

.page-top:hover {
  background-color: #fff;
}
.page-top:hover::before {
  opacity: 1;
}

.page-top svg {
  fill: none;
  stroke: #fff;
  /* stroke: #000; */
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  fill-rule: evenodd;
  width: 21.16px;
  height: 11.56px;
}

.caption {
  font-size: 1.3rem;
  background: #ededed;
  padding: 1.5rem;
}
.unit-img {
  padding: 40px;
}
.general__style figure img {
  padding: 3rem 4.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
}
.img-border-wrapper {
  padding: 3rem 4.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  max-width: 640px;
}

@media screen and (max-width: 1060px) {
  .page-top svg {
    width: 2.116rem;
    height: 1.156rem;
  }
}
