@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 10px;
  color: #000;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 68px;
  }
}

main {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 68px;
  }
}

.image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.image--fit {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1271px) {
  .image--mv {
    -o-object-position: 60% 50%;
       object-position: 60% 50%;
  }
}
@media screen and (max-width: 767px) {
  .image--mv {
    -o-object-position: center;
       object-position: center;
  }
}

.header {
  position: fixed;
  z-index: 11;
  width: 100%;
  height: 100px;
  background-color: #fff;
  padding-inline: 15px;
}
@media screen and (max-width: 1271px) {
  .header {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 68px;
    padding-inline: 5%;
  }
}
.header.active {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.04));
}
.header__container {
  position: relative;
  width: 100%;
  max-width: 1860px;
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__logo {
  width: 484px;
  aspect-ratio: 484/46;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1480px) {
  .header__logo {
    width: 339px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 260px;
  }
}
@media screen and (min-width: 768px) {
  .header__logo:hover {
    opacity: 0.5;
  }
}
.header__list {
  position: relative;
  left: 15px;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1480px) {
  .header__list {
    left: 0;
  }
}
@media screen and (max-width: 1271px) {
  .header__list {
    flex-direction: column;
    gap: 0;
  }
}
.header__list-item {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1271px) {
  .header__list-item {
    position: relative;
    font-size: 2.4rem;
    padding: 16px;
    border-bottom: 1px solid #ddd;
  }
}
@media screen and (max-width: 767px) {
  .header__list-item {
    font-size: 18px;
  }
}
@media screen and (max-width: 1271px) {
  .header__list-item::before {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    aspect-ratio: 1/1;
    background: url("/wp-content/themes/anshin-plus/assets/images/icons/arrow-right-circle.svg") no-repeat center/100% 100%;
  }
}
@media screen and (max-width: 1271px) and (max-width: 767px) {
  .header__list-item::before {
    width: 16px;
  }
}
@media screen and (min-width: 768px) {
  .header__list-item:hover {
    opacity: 0.5;
  }
}
.header__inquiry {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1480px) {
  .header__inquiry {
    gap: 20px;
  }
}
@media screen and (max-width: 1271px) {
  .header__inquiry {
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
  }
}
.header__contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1271px) {
  .header__contact {
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    border: 2px solid #094;
  }
}
.header__contact::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 72px;
  background-color: #ddd;
}
@media screen and (max-width: 1480px) {
  .header__contact::before {
    right: -10px;
  }
}
@media screen and (max-width: 767px) {
  .header__contact::before {
    display: none;
  }
}
.header__contact-title {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5714285714em;
  color: #fff;
  padding: 3px 20px 2px;
  border-radius: 4px;
  background-color: #094;
}
@media screen and (max-width: 900px) {
  .header__contact-title {
    font-size: 1rem;
    padding-inline: 18px;
  }
}
.header__contact-num {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6em;
  color: #111;
  margin-top: -5px;
  transition: 0.3s ease-in-out;
  pointer-events: none;
}
@media screen and (max-width: 1271px) {
  .header__contact-num {
    pointer-events: auto;
  }
}
@media screen and (max-width: 900px) {
  .header__contact-num {
    font-size: 2rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .header__contact-num {
    font-size: 22px;
    letter-spacing: 0.02em;
    color: #094;
  }
}
.header__contact-num::before {
  content: "";
  display: inline-block;
  width: 15.29px;
  aspect-ratio: 15.29/19.25;
  background: url("/wp-content/themes/anshin-plus/assets/images/icons/tel.svg") no-repeat center/100% 100%;
  margin-right: 4px;
}
@media screen and (max-width: 900px) {
  .header__contact-num::before {
    width: 12px;
  }
}
@media screen and (max-width: 767px) {
  .header__contact-num::before {
    vertical-align: sub;
    width: 19px;
    margin-right: 12px;
  }
}
@media screen and (min-width: 768px) {
  .header__contact-num:hover {
    opacity: 0.5;
  }
}
.header__contact-detail {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5714285714em;
  display: flex;
  gap: 10px;
  margin-top: -9px;
}
@media screen and (max-width: 767px) {
  .header__contact-detail {
    font-size: 14px;
    margin-top: -5px;
  }
}
.header__consult-btn {
  width: 260px;
  height: 72px;
  border-radius: 10px;
  background-color: #f35900;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1480px) {
  .header__consult-btn {
    width: 200px;
  }
}
@media screen and (max-width: 1271px) {
  .header__consult-btn {
    width: 100%;
    height: 72px;
  }
}
@media screen and (min-width: 768px) {
  .header__consult-btn:hover {
    opacity: 0.5;
  }
}
.header__consult-btn-txt {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 1480px) {
  .header__consult-btn-txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .header__consult-btn-txt {
    position: relative;
    display: block;
    font-size: 22px;
    padding-left: 42px;
  }
}
.header__consult-btn-txt::before {
  content: "";
  display: inline-block;
  vertical-align: sub;
  width: 32px;
  aspect-ratio: 32/24;
  background: url("/wp-content/themes/anshin-plus/assets/images/icons/envelope.svg") no-repeat center/100% 100%;
  margin-right: 10px;
}
@media screen and (max-width: 1480px) {
  .header__consult-btn-txt::before {
    width: 26px;
  }
}
@media screen and (max-width: 767px) {
  .header__consult-btn-txt::before {
    width: 32px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0;
  }
}
.header__hamburger {
  cursor: pointer;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  background-color: #094;
  padding: 15px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    width: 48px;
    gap: 4px;
  }
}
.header__hamburger.active .header__hamburger-line:nth-child(1)::before {
  width: 0;
}
.header__hamburger.active .header__hamburger-line:nth-child(2) {
  transform: rotate(225deg);
}
.header__hamburger.active .header__hamburger-line:nth-child(2)::before {
  width: 100%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.header__hamburger.active .header__hamburger-line:nth-child(3)::before {
  width: 0;
}
.header__hamburger-line {
  display: block;
  position: relative;
  width: 100%;
  height: 4px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header__hamburger-line {
    height: 3px;
  }
}
.header__hamburger-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
.header__hamburger-line:nth-child(2) {
  background-color: #fff;
}
.header__hamburger-line:nth-child(2)::before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
}
.header__hamburger-line:nth-child(3)::before {
  left: unset;
  right: 0;
}
.header__sp-menu {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px 5%;
  background-color: #f9fcf4;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header__sp-menu {
    height: calc(100% - 136px);
  }
}
.header__sp-menu.active {
  top: 100px;
  max-height: 100%;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .header__sp-menu.active {
    top: 67px;
  }
}

.footer {
  position: relative;
  width: 100%;
  background: url("/wp-content/themes/anshin-plus/assets/images/footer/footer-bg.webp") no-repeat center/cover;
  padding-inline: 15px;
}
@media screen and (max-width: 767px) {
  .footer {
    background-image: url("/wp-content/themes/anshin-plus/assets/images/footer/footer-bg-sp.webp");
    padding-inline: 5%;
  }
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
}
.footer__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1800px;
  margin-inline: auto;
  padding-block: 70px 30px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__container {
    padding-bottom: 100px;
  }
}
.footer__title {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}
.footer__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 27px;
}
.footer__list-item {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6111111111em;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .footer__list-item:hover {
    opacity: 0.5;
  }
}
.footer__info {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.875em;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .footer__info {
    margin-top: 21px;
    font-size: 15px;
  }
}
.footer__info-text {
  display: block;
}
.footer__info-text--margin-r {
  display: inline-block;
  margin-right: 20px;
}
@media screen and (max-width: 375px) {
  .footer__info-text--margin-r {
    display: block;
    margin-right: 0;
  }
}
.footer__info-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}
.footer__copyright {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  border-top: 1px solid #fff;
  padding-top: 30px;
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 50px;
  }
}
.footer__backtotop {
  position: fixed;
  right: 20px;
  bottom: -80px;
  z-index: 9;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #8fc31f;
  padding-top: 2px;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__backtotop {
    right: 5%;
  }
}
@media screen and (min-width: 768px) {
  .footer__backtotop:hover {
    transform: translateY(-5px);
  }
}
.footer__backtotop.show {
  bottom: 20px;
}
@media screen and (max-width: 767px) {
  .footer__backtotop.show {
    bottom: 90px;
  }
}
.footer__backtotop-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.footer__backtotop-text::before {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 19/11;
  background: url("/wp-content/themes/anshin-plus/assets/images/icons/arrow-left-no-bg.svg") no-repeat center/100% 100%;
}

.stickylink {
  position: fixed;
  z-index: 11;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  background-color: #f9fcf4;
}
.stickylink__box {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stickylink__box--orange {
  background-color: #f35900;
}
.stickylink__number {
  position: relative;
  padding-left: 23px;
  font-size: 20px;
  font-weight: 700;
  color: #094;
}
@media screen and (max-width: 767px) {
  .stickylink__number {
    font-size: 18px;
  }
}
.stickylink__number::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  aspect-ratio: 15/19;
  background: url("/wp-content/themes/anshin-plus/assets/images/icons/tel.svg") no-repeat center/100% 100%;
}
.stickylink__time {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  margin-top: -7px;
}
@media screen and (max-width: 767px) {
  .stickylink__time {
    font-size: 13px;
  }
}
.stickylink__email {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.stickylink__email::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  aspect-ratio: 18/14;
  background: url("/wp-content/themes/anshin-plus/assets/images/icons/envelope.svg") no-repeat center/100% 100%;
}

.page-banner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.page-banner__img-wrap {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  overflow: hidden;
}
.page-banner__img-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f9fcf4;
}
.page-banner__img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: -25rem -185px;
     object-position: -25rem -185px;
  width: 100%;
  min-width: 1920px;
  height: 400px;
  mix-blend-mode: luminosity;
  overflow: hidden;
}
@media screen and (min-width: 1919px) {
  .page-banner__img {
    -o-object-position: 10rem -185px;
       object-position: 10rem -185px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__img {
    height: 200px;
    -o-object-position: -70rem -185px;
       object-position: -70rem -185px;
  }
}
.page-banner__wrap {
  position: absolute;
  width: 100%;
  padding-inline: 40px;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  box-sizing: border-box;
  padding: 32px 40px 45px !important;
  max-width: calc(1500px + 8%) !important;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-banner__wrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__wrap {
    padding: 0 5% !important;
  }
}
.page-banner__border {
  margin-top: 10px;
  position: relative;
  width: 20px;
  background-color: #094;
  height: 4px;
}
@media screen and (max-width: 767px) {
  .page-banner__border {
    width: 15px;
  }
}
.page-banner__border::before {
  content: "";
  position: absolute;
  left: 20px;
  height: 4px;
  width: 20px;
  z-index: 1;
  background-color: #8fc31f;
}
@media screen and (max-width: 767px) {
  .page-banner__border::before {
    width: 15px;
    left: 15px;
  }
}
.page-banner__title-jap {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: 0.02em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .page-banner__title-jap {
    font-size: 30px;
  }
}

.breadcrumbs {
  position: relative;
  margin-top: -17px;
}
.breadcrumbs__content {
  display: flex;
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding: 32px 40px 45px !important;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__content {
    padding: 15px 5% !important;
  }
}
.breadcrumbs__list {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 20px;
    padding: 8px 0;
    max-height: initial;
  }
}
.breadcrumbs__item {
  font-size: 1.4rem;
  font-weight: 500;
  color: #595959;
  line-height: 2.4285714286em;
  letter-spacing: 0.02em;
  position: relative;
}
.breadcrumbs__item--home {
  color: #094;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .breadcrumbs__item--link:hover, .breadcrumbs__item--home:hover {
    opacity: 0.5;
    transition: 0.3s ease-in-out;
  }
}
.breadcrumbs__item--link::before, .breadcrumbs__item--home::before {
  content: "/";
  position: absolute;
  right: -21px;
  width: 7px;
  height: 9px;
  font-size: 1.6rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__item--link::before, .breadcrumbs__item--home::before {
    right: -13px;
    width: 5px;
    height: 7px;
  }
}
.breadcrumbs__cover {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__cover {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs__cover {
    margin: 0;
  }
}

.title {
  font-size: 3.6rem;
  letter-spacing: 0.02em;
  line-height: 1.5em;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .title {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 32px;
  }
}
.title--mb-50 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .title--mb-50 {
    margin-bottom: 30px;
  }
}
.title--mb-56 {
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .title--mb-56 {
    margin-bottom: 20px;
  }
}

.title-heading {
  position: relative;
  font-size: 3.4rem;
  letter-spacing: 0.02em;
  padding-left: 26px;
}
@media screen and (max-width: 767px) {
  .title-heading {
    font-size: 28px;
    padding-left: 16px;
  }
}
.title-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 40px;
  background: linear-gradient(to bottom, #094 50%, #8fc31f 50%);
}
@media screen and (max-width: 767px) {
  .title-heading::before {
    top: 8px;
    height: 28px;
  }
}

.underline {
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: 9px;
}
@media screen and (max-width: 767px) {
  .underline {
    text-decoration-thickness: 4px;
    text-underline-offset: 7px;
  }
}
.underline--red {
  text-decoration-color: #eb3f3f;
}
.underline--gold {
  text-decoration-color: #e8a200;
}
.underline--primary {
  text-decoration-color: #094;
}
.underline--lightgreen {
  text-decoration-color: #8fc31f;
}

.contact-block {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}
.contact-block__title {
  position: relative;
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1.5em;
  text-align: center;
  padding-inline: 46px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact-block__title {
    font-size: 18px;
    padding-inline: 27px;
  }
}
.contact-block__title::before, .contact-block__title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 57px;
  background: url("/wp-content/themes/anshin-plus/assets/images/icons/title-design.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .contact-block__title::before, .contact-block__title::after {
    width: 27px;
    height: 32px;
    top: unset;
    transform: translateY(0);
    bottom: 0;
  }
}
.contact-block__title::before {
  left: 0;
}
.contact-block__title::after {
  right: 0;
  transform: scaleX(-1) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact-block__title::after {
    transform: scaleX(-1) translateY(0);
  }
}
.contact-block__btn {
  border-radius: 10px;
  background-color: #f35900;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  height: 100px;
  margin-top: 22px;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact-block__btn {
    height: 88px;
  }
}
@media screen and (min-width: 768px) {
  .contact-block__btn:hover {
    opacity: 0.5;
  }
}
.contact-block__btn-text {
  position: relative;
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  padding-left: 46px;
}
@media screen and (max-width: 767px) {
  .contact-block__btn-text {
    font-size: 24px;
    padding-left: 40px;
  }
}
.contact-block__btn-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 26px;
  background: url("/wp-content/themes/anshin-plus/assets/images/icons/envelope.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .contact-block__btn-text::before {
    width: 30px;
    height: 23px;
  }
}

.article__arrow {
  display: block;
}
.article__list {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
@media screen and (max-width: 1271px) {
  .article__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .article__list {
    display: flex;
    gap: 0;
  }
}
.article__list-item {
  display: block;
  height: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  padding-bottom: 70px;
}
.article__img {
  display: block;
  width: 100%;
  aspect-ratio: 404/252;
}
@media screen and (max-width: 767px) {
  .article__img {
    aspect-ratio: 360/225;
  }
}
.article__content {
  padding: 26px 30px 0;
}
@media screen and (max-width: 767px) {
  .article__content {
    padding: 20px 20px 0;
  }
}
.article__title {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.5em;
  margin-bottom: 10px;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .article__title {
    font-size: 18px;
  }
}
.article__desc {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.6875em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .article__desc {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
.article__btn {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  border-radius: 10px;
  background-color: #094;
  width: calc(100% - 60px);
  height: 40px;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .article__btn {
    width: calc(100% - 40px);
  }
}
@media screen and (min-width: 768px) {
  .article__btn:hover {
    opacity: 0.5;
  }
}
.article__btn-text {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .article__btn-text {
    font-size: 16px;
  }
}
.article__btn-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  top: 50%;
  transform: translateY(-55%);
  width: 16px;
  aspect-ratio: 1/1;
  -webkit-mask: url("/wp-content/themes/anshin-plus/assets/images/icons/arrow-right-circle.svg") no-repeat center/100% 100%;
          mask: url("/wp-content/themes/anshin-plus/assets/images/icons/arrow-right-circle.svg") no-repeat center/100% 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .article__btn-text::before {
    transform: translateY(-50%);
  }
}
.article__single-wrapper {
  padding: 80px 40px 100px;
}
@media screen and (max-width: 767px) {
  .article__single-wrapper {
    padding: 40px 5% 50px;
  }
}
.article__single-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}
.article__single-img {
  display: block;
  width: 100%;
  aspect-ratio: 1280/798;
  border-radius: 10px;
  overflow: hidden;
}
.article__single-category {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #094;
  background-color: #f6faec;
  padding: 4px 20px;
  border-radius: 10px;
  margin-block: 40px 18px;
}
.article__single-title {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 2px solid #ddd;
  padding-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .article__single-title {
    font-size: 32px;
  }
}
.article__single-subtitle {
  margin-top: 46px;
}
.article__single-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.6875em;
  margin-top: 36px;
}
.article__single-text--mt-small {
  margin-top: 18px;
}
.article__single-list-container {
  display: flex;
  flex-direction: column;
  gap: 29px;
  margin-top: 34px;
}
.article__single-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article__single-list--ordered {
  list-style-type: none;
  counter-reset: num;
}
.article__single-list-item {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.6875em;
  padding-left: 18px;
}
.article__single-list-item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #094;
}
.article__single-list-item--ordered {
  counter-increment: num;
}
.article__single-list-item--ordered::before {
  content: counter(num, decimal) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
  color: #094;
  width: 0;
  height: 0;
  border-radius: 0;
  background-color: unset;
}
.article__single-heading {
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  color: #094;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .article__single-heading {
    font-size: 20px;
  }
}
.article__single-heading--small {
  font-size: 2rem;
  color: #000;
  margin-top: 29px;
}
@media screen and (max-width: 767px) {
  .article__single-heading--small {
    font-size: 18px;
  }
}
.article__single-block-wrapper {
  display: flex;
  flex-direction: column;
  gap: 54px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .article__single-block-wrapper {
    gap: 40px;
  }
}
.article__single-block-wrapper--small {
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .article__single-block-wrapper--small {
    gap: 20px;
  }
}
.article__single-block-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 54px;
       column-gap: 54px;
}
@media screen and (max-width: 767px) {
  .article__single-block-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .article__single-block-container--img-right > :first-child {
    order: 1;
  }
}
.article__single-block-img {
  display: block;
  width: 100%;
  aspect-ratio: 613/383;
  border-radius: 10px;
  overflow: hidden;
}
.article__single-block-info {
  display: flex;
  flex-direction: column;
  gap: 46px;
}
@media screen and (max-width: 767px) {
  .article__single-block-info {
    gap: 30px;
  }
}
.article__single-block-info--small {
  gap: 9px;
}
.article__single-block-info-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6875em;
  padding-left: 54px;
  text-indent: -27px;
}
.article__single-block-info-title::before {
  content: "——— ";
  display: inline-block;
}
.article__single-block {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.article__single-block-title {
  font-weight: 700;
  color: #f35900;
}
.article__single-block-title::after {
  content: "：";
  display: inline-block;
}
.article__single-block-title--green {
  color: #094;
}
.article__single-block-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.6875em;
}
.article__single-block-img-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article__single-btn-container {
  margin-top: 100px;
  gap: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .article__single-btn-container {
    margin-top: 50px;
    flex-direction: column;
    gap: 10px;
  }
}
.article__single-btn {
  position: relative;
  width: 200px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #094;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #094;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .article__single-btn:hover {
    background-color: #094;
    color: #fff;
  }
}
.article__single-btn--disable {
  opacity: 0.5;
  pointer-events: none;
}
.article__single-btn--return {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .article__single-btn--return {
    width: 200px;
    order: 3;
  }
}
.article__single-btn--prev::before, .article__single-btn--next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  -webkit-mask: url("/wp-content/themes/anshin-plus/assets/images/icons/arrow-left-no-bg.svg") no-repeat center/100% 100%;
          mask: url("/wp-content/themes/anshin-plus/assets/images/icons/arrow-left-no-bg.svg") no-repeat center/100% 100%;
  background-color: #094;
}
@media screen and (max-width: 767px) {
  .article__single-btn--prev {
    order: 2;
  }
}
.article__single-btn--prev::before {
  left: 16px;
  transform: translateY(-50%) rotate(-90deg);
}
.article__single-btn--next::before {
  right: 16px;
  transform: translateY(-50%) rotate(90deg);
}
.article__single-latest-title {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .article__single-latest-title {
    margin-bottom: 35px;
  }
}
.article__single-latest-list {
  padding: 120px 40px 160px;
  background-color: #f9fcf4;
}
@media screen and (max-width: 767px) {
  .article__single-latest-list {
    padding: 60px 5% 20px;
  }
}

.contact__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  box-sizing: border-box;
  max-width: calc(1280px + 8%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .contact__container {
    max-width: 100%;
  }
}
.contact__intro {
  padding-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .contact__intro {
    padding-bottom: 36px;
  }
}
.contact__intro-text {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8888888889em;
}
@media screen and (max-width: 767px) {
  .contact__intro-text {
    font-size: 16px;
  }
}
.contact__form {
  background: #f9fcf3;
  padding-block: 90px 160px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    padding-block: 60px 140px;
  }
}
.contact__iframe-wrap {
  margin-left: auto;
  margin-right: auto;
}
.contact__iframe {
  border: none;
  display: block;
  width: 100%;
  height: 1500px;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .contact__iframe {
    height: 1640px;
  }
}

.overflow {
  overflow: hidden;
}

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

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

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

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: flex;
  }
}

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

.tablet-sp-flex {
  display: none;
}
@media screen and (max-width: 1271px) {
  .tablet-sp-flex {
    display: flex;
  }
}

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

.color-secondary {
  color: #f35900;
}

.inline {
  white-space: nowrap;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: grid;
}
.splide__arrows {
  position: absolute;
  width: 100%;
  height: calc(100% - 36px);
  overflow-x: hidden;
}
.splide__arrow {
  position: absolute;
  width: 66px;
  height: 66px;
  background-color: #094;
  opacity: 1;
}
.splide__arrow .article__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-mask: url("/wp-content/themes/anshin-plus/assets/images/icons/arrow-left.svg") no-repeat center/100% 100%;
          mask: url("/wp-content/themes/anshin-plus/assets/images/icons/arrow-left.svg") no-repeat center/100% 100%;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
.splide__arrow:hover:not(:disabled) {
  opacity: 1;
}
.splide__arrow--prev {
  left: unset;
  right: calc(100% - 33px);
}
.splide__arrow--prev .article__arrow {
  right: 11px;
}
.splide__arrow--next {
  right: unset;
  left: calc(100% - 33px);
}
.splide__arrow--next .article__arrow {
  left: 11px;
  transform: scaleX(-1) translateY(-50%);
}
.splide__track {
  display: flex;
  justify-content: center;
  overflow: visible;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .splide__track {
    padding-inline: 0;
    overflow: hidden;
  }
}
.splide__slide {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .splide__slide {
    padding: 3px calc(5% - 3px);
    width: calc(100% - 6px) !important;
  }
}
.splide__pagination {
  position: relative;
  margin-top: 24px;
  bottom: unset;
}
.splide__pagination__page {
  margin: 0 4px;
  opacity: 1;
  background-color: #8fc31f;
}
.splide__pagination__page.is-active {
  transform: scale(1.5);
  background: #094;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.wp-pagenavi .disabled {
  pointer-events: none;
  opacity: 0.5;
}
.wp-pagenavi .page,
.wp-pagenavi .current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #094;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #094;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .page:hover,
  .wp-pagenavi .current:hover {
    background-color: #094;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    font-size: 14px;
  }
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 40px;
  height: 40px;
  border: 1px solid #094;
  border-radius: 10px;
  position: relative;
  margin-right: 30px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    margin-right: 20px;
  }
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #094;
  transition: 0.3s ease-in-out;
  width: 12px;
  height: 12px;
  -webkit-mask: url("/wp-content/themes/anshin-plus/assets/images/icons/arrow-left-no-bg.svg") no-repeat center/100% 100%;
          mask: url("/wp-content/themes/anshin-plus/assets/images/icons/arrow-left-no-bg.svg") no-repeat center/100% 100%;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .previouspostslink:hover,
  .wp-pagenavi .nextpostslink:hover {
    background-color: #094;
  }
  .wp-pagenavi .previouspostslink:hover::before,
  .wp-pagenavi .nextpostslink:hover::before {
    background-color: #fff;
  }
}
.wp-pagenavi .previouspostslink {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink {
    margin-right: 20px;
  }
}
.wp-pagenavi .previouspostslink::before {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.wp-pagenavi .nextpostslink {
  margin-left: 30px;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .nextpostslink {
    margin-left: 20px;
  }
}
.wp-pagenavi .nextpostslink::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.wp-pagenavi .current {
  background-color: #094;
  pointer-events: none;
}
.wp-pagenavi .current > span {
  color: #fff;
}

.wp-archivenav {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .wp-archivenav {
    margin-top: 40px;
    gap: 14px;
  }
}
.wp-archivenav .previousachivelink,
.wp-archivenav .nextarchivelink,
.wp-archivenav .back-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 40px;
  width: 200px;
  border-radius: 10px;
  border: 1px solid #094;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #094;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .wp-archivenav .previousachivelink,
  .wp-archivenav .nextarchivelink,
  .wp-archivenav .back-list {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .wp-archivenav .previousachivelink:hover,
  .wp-archivenav .nextarchivelink:hover,
  .wp-archivenav .back-list:hover {
    background-color: #094;
    color: #fff;
  }
}
.wp-archivenav .previousachivelink {
  padding: 0 41px 0 14px;
}
.wp-archivenav .nextarchivelink {
  padding: 0 14px 0 41px;
}
.wp-archivenav .back-list {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .wp-archivenav .back-list {
    width: 200px;
  }
}
.hd_right {
  display: flex;
  gap: 20px;
}
.hd_right{
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1271px) {
  .hd_right{
    display: none;
  }
}