@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
@media screen and (max-width: 1439px) and (min-width: 767px) {
  html {
    font-size: min(1600 / 1440 * 1vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: clamp(12px, 1600 / 375 * 1vw, 16px);
  }
}

body {
  color: #111111;
  font-family: "Noto Serif JP", serif;
  background: #f5f5f5;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.04em;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #111111;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

img,
svg {
  width: 100%;
  height: 100%;
}

button {
  color: inherit;
  background: transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1.125rem 5.125rem 1.0625rem 2.3125rem;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 0.9375rem 1.25rem 0.8125rem;
  }
}

.l-header__inner {
  display: grid;
  grid-template-columns: 14.5rem 1fr;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    grid-template-columns: 8.875rem 1fr;
  }
}

.l-header__logo {
  aspect-ratio: 232/50;
  width: 14.5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 8.875rem;
  }
}
@media (any-hover: hover) {
  .l-header__logo:hover {
    opacity: 0.7;
  }
}

.l-header__nav {
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__list {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
.l-header__list li a {
  font-size: max(12px, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (any-hover: hover) {
  .l-header__list li a:hover {
    color: #3d7e8f;
  }
}

.l-header__fixed {
  position: fixed;
  top: 18.6875rem;
  right: 0;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .l-header__fixed {
        top: 5rem;
  }
}
.l-header__fixed a {
  background: #f5ff9f;
  padding: 1.0625rem 1.4375rem 2.0625rem 1.5rem;
  border-radius: 4px 0 0 4px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 2.0625rem;
  writing-mode: vertical-rl;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.6em;
  width: 4.5rem;
}
@media screen and (max-width: 1000px) {
  .l-header__fixed a {
    padding: 18px 12px 12px 13px;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5em;
    width: 50px;
  }
}
.l-header__fixed a svg {
  width: 1.8125rem;
  height: 1.8125rem;
}
@media (any-hover: hover) {
  .l-header__fixed a:hover {
    background: #2d2d2d;
    color: #f5ff9f;
  }
  .l-header__fixed a:hover svg path {
    fill: #f5ff9f;
  }
}

.l-drawer__icon {
  position: fixed;
  z-index: 102;
  top: 23px;
  right: 22px;
  width: 21px;
  height: 14px;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
@media screen and (max-width: 767px) {
  .l-drawer__icon {
    display: flex;
  }
}

.l-drawer__icon--bar {
  width: 100%;
  height: 2px;
  background: #3d7e8f;
  border-radius: 2px;
  transition: all 0.5s ease;
}

.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 6.5px;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -4px;
}

.l-drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  height: 100svh;
  background: #ffffff;
  overflow-y: scroll;
  translate: 101%;
  transition: translate 0.5s ease;
}
.l-drawer.js-show {
  translate: 0;
}

.l-drawer__body {
  width: 100%;
  height: fit-content;
  padding: 7.5rem 3.125rem 6.125rem;
}

.l-drawer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.5rem;
  width: fit-content;
  margin-inline: auto;
}
.l-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: inherit;
  padding: 0 9.375rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 1.25rem;
  }
}

.l-inner__narrow {
  max-width: 55rem;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    padding: 0 3.125rem;
    max-width: 100%;
  }
}

.l-footer {
  background: #3d7e8f;
  color: #ffffff;
  padding-block: 2.875rem 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-block: 2.25rem 3.625rem;
  }
}

.l-footer__inner {
  max-width: 729px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    max-width: 335px;
  }
}

.l-footer__brand {
  display: grid;
  justify-items: center;
  gap: 1.5625rem;
}

.l-footer__logo img {
  display: block;
  aspect-ratio: 223/41;
  width: 223px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__logo img {
    width: 155px;
  }
}

.l-footer__sns {
  display: flex;
  gap: 0.875rem;
}

.l-footer__sns-link {
  aspect-ratio: 1/1;
  width: 34px;
  height: auto;
}
@media (any-hover: hover) {
  .l-footer__sns-link:hover {
    opacity: 0.8;
  }
}

.l-footer__nav {
  margin-block-start: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    margin-block-start: 1.5625rem;
  }
}

.l-footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-footer__list {
    gap: 0.875rem 1.25rem;
  }
}

.l-footer__list a {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-footer__list a {
    font-size: 12px;
  }
}
@media (any-hover: hover) {
  .l-footer__list a:hover {
    opacity: 0.8;
  }
}

/* ====== details/summary アコーディオン ====== */
.l-footer__related {
  margin-block-start: 1.75rem;
}
@media screen and (max-width: 767px) {
  .l-footer__related {
    margin-top: 1.75rem;
  }
}

/* Safariのカーソル三角を消す */
.l-footer__summary::-webkit-details-marker {
  display: none;
}

.l-footer__details {
  border: 1px solid #ffffff;
}

/* トリガー行 */
.l-footer__summary {
  cursor: pointer;
  padding: 0.375rem 2.375rem;
  color: #ffffff;
  display: block;
  position: relative;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer__summary {
    padding: 0.3125rem 1.6875rem;
  }
}
@media (any-hover: hover) {
  .l-footer__summary:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

/* 右端の△/▽アイコン（閉＝▽ 開＝△） */
.l-footer__summary::after {
  content: "";
  background: url(../img/icon_arrow-down.svg) no-repeat center center/cover;
  position: absolute;
  right: 2.375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 7px;
}
@media screen and (max-width: 767px) {
  .l-footer__summary::after {
    right: 1.0625rem;
    width: 10px;
  }
}

/* open属性が付いた時の△ */
.l-footer__details[open] > .l-footer__summary::after {
  background: url(../img/icon_arrow-up.svg) no-repeat center center/cover;
}

/* コンテンツ部 */
.l-footer__details-content {
  box-sizing: content-box;
  overflow: hidden;
  margin: 0;
  opacity: 0;
  transition: padding 0.2s ease 0.1s, max-height 0.3s, opacity 0.7s;
  border-top: 1px solid #ffffff;
}

/* 開いた時の表示 */
.l-footer__details.is-open > .l-footer__details-content {
  opacity: 1;
  transition: padding 0.3s, max-height 0.3s, opacity 0.7s;
}

.l-footer__acc-link:first-of-type {
  border-bottom: 1px solid #ffffff;
}
.l-footer__acc-link a {
  width: 100%;
  color: #ffffff;
  padding: 0.3125rem 1.25rem;
}
@media (any-hover: hover) {
  .l-footer__acc-link a:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

.l-footer__copy {
  display: block;
  text-align: center;
  margin-block-start: 2.1875rem;
  color: #f5f5f5;
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    margin-block-start: 1rem;
    font-size: 10px;
    letter-spacing: 0.02em;
  }
}

.c-head {
  margin-block-start: 5.5625rem;
  padding-block: 6.375rem 7.875rem;
  aspect-ratio: 1440/300;
  width: 100%;
  height: auto;
  position: relative;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-head {
    margin-block-start: 3.75rem;
    padding-block: 5.125rem 6.25rem;
    height: 15rem;
  }
}

@media (min-width: 1440px) {
  .c-head.under {
    height: 300px;
  }
}

.c-head__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 18.75rem;
  overflow: hidden;
}
.c-head__bg picture,
.c-head__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c-head__bg {
    max-height: 240px;
  }
}

.c-head__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  left: 51.5%;
  translate: -50%;
}
@media screen and (max-width: 767px) {
  .c-head__title {
    left: 50%;
  }
}

.c-head__title-en {
  font-family: "Courgette", cursive;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .c-head__title-en {
    font-size: 2rem;
    line-height: 1.2;
  }
}

.c-head__title-en.white {
  color: #ffffff;
  text-transform: capitalize;
  white-space: nowrap;
}

.c-head__title-ja {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.23em;
}
@media screen and (max-width: 767px) {
  .c-head__title-ja {
    line-height: 1;
  }
}

.c-head__title-ja.white {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-head__title-ja.white {
    margin-top: 9px;
  }
}

.c-head__title-en-big {
  font-family: "Courgette", cursive;
  font-size: 4rem;
  color: #3d7e8f;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .c-head__title-en-big {
    font-size: 44px;
    letter-spacing: -0.01em;
  }
}

.c-head__title-ja-big {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3d7e8f;
  line-height: 1;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-head__title-ja-big {
    letter-spacing: 0.07em;
    font-size: 16px;
  }
}

.c-head__title-ja-big.about {
  text-align: left;
}

.c-head__title-ja-big.contact {
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .c-head__title-ja-big.contact {
    margin-top: 6px;
  }
}

.p-contact {
  padding-block: 5.0625rem 8.375rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 3.875rem 4.5625rem;
  }
}

.p-contact__wrap {
  max-width: 660px;
  margin-inline: auto;
}

.p-contact__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
  text-align: left;
}
}

.p-contact__form {
  margin-block-start: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    margin-block-start: 4.0625rem;
    gap: 2.5rem;
  }
}

.p-contact__form-item {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  gap: 0.5625rem;
}

.p-contact__form-label {
  font-weight: 600;
}

.p-contact__form-label--required {
  color: blue;
}

.wpcf7-form-control-wrap {
  width: 100%;
  height: 3.5rem;
}
.wpcf7-form-control-wrap input {
  width: 100%;
  height: 100%;
  padding: 0.5625rem;
}

.p-contact__form-checkbox .wpcf7-form-control-wrap {
  height: auto;
}
.p-contact__form-checkbox input {
  width: auto;
  height: auto;
}
.p-contact__form-checkbox .wpcf7-checkbox {
  max-width: 22.625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4375rem 2.3125rem;
  grid-auto-rows: max-content;
}
@media screen and (max-width: 767px) {
  .p-contact__form-checkbox .wpcf7-checkbox {
    gap: 0.5625rem 0.375rem;
  }
}
@media screen and (max-width: 375px) {
  .p-contact__form-checkbox .wpcf7-checkbox {
    font-size: 13px;
  }
}
.p-contact__form-checkbox .wpcf7-list-item {
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.p-contact__form-checkbox .wpcf7-list-item-label {
  white-space: nowrap;
}

.p-contact__form-checkbox.--01 .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form-checkbox.--01 .wpcf7-checkbox {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4375rem;
  }
}

.p-contact__form-checkbox.--03 .wpcf7-checkbox {
  max-width: 21.3125rem;
  gap: 3.4375rem;
}

.p-contact__form-checkbox.--04 .wpcf7-checkbox {
  grid-template-columns: repeat(4, 1fr);
  max-width: 24.375rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form-checkbox.--04 .wpcf7-checkbox {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-contact__form-textarea-wrap {
  width: 100%;
  height: 9.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form-textarea-wrap {
    margin-top: 2.5rem;
  }
}
.p-contact__form-textarea-wrap .wpcf7-form-control-wrap {
  width: 100%;
  height: 100%;
}
.p-contact__form-textarea-wrap textarea {
  width: 100%;
  height: 100%;
  padding: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form-textarea-wrap textarea {
    padding: 1.0625rem 0.5rem;
  }
}

.p-contact__button {
  margin: 3.5rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact__button {
    margin: 0.375rem auto 0;
  }
}
.p-contact__button input {
  width: 25rem;
  padding: 20px 40px 22px 15px;
  background: #3d7e8f;
  border-radius: 100vmax;
  border: 1px solid #3d7e8f;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-contact__button input {
    width: 180px;
    padding: 8px 26px 9px 8px;
    font-size: 16px;
    line-height: 1.4375;
  }
}
.p-contact__button::after {
  content: "";
  position: absolute;
  mask-image: url(../img/icon_arrow-white.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #ffffff;
  width: 10px;
  height: 14px;
  top: 50%;
  translate: 0 -50%;
  left: calc(50% + 42px);
}
@media screen and (max-width: 767px) {
  .p-contact__button::after {
    top: 55%;
    width: 10px;
    height: 21px;
    left: calc(50% + 32px);
  }
}
@media (any-hover: hover) {
  .p-contact__button:hover input {
    cursor: pointer;
    color: #3d7e8f;
    background-color: #ffffff;
  }
  .p-contact__button:hover::after {
    background-color: #3d7e8f;
  }
}

.wpcf7-spinner {
  display: none;
}

.p-thanks {
  padding-block: 7.375rem 9.4375rem;
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding-block: 3.875rem;
  }
}

.p-thanks__text {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-thanks__text {
  text-align: left;
}
}

.p-top-fv {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv {
        margin-top: 1.75rem;
    position: relative;
  }
}
.p-top-fv__inner {
  display: flex;
  max-width: 76.25rem;
  gap: 2.9375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-fv__inner {
    flex-flow: column;
    gap: 0;
    padding-inline: 1.25rem;
  }
}
.p-top-fv__wrap {
  width: 33.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__wrap {
    width: 100%;
  }
}
.p-top-fv__head {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__head {
    margin-top: 2.3125rem;
    z-index: 10;
    position: relative;
    padding-bottom: 1.5625rem;
  }
}
.p-top-fv__img-wrap {
  position: absolute;
  right: 0;
  width: 51%;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__img-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1440px) {
  .p-top-fv__img-wrap {
    width: unset;
    right: calc(50vw - 720px);
    max-width: 45.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__img {
    position: absolute;
    right: 0;
    height: auto;
        width: 53.7%;
        height: auto;
        bottom: -21px;
                max-width: 310px;

  }
}
.p-top-fv__deco {
  margin-top: 0.25rem;
  width: 110%;
  position: relative;
  left: -3.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__deco {
    width: 68%;
    padding-bottom: 65px;
    left: -1.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-fv {
    height: 440px;
  }
}

.p-top-fv__wrap {
  margin-top: 6.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__wrap {
    margin-top: 52px;
  }
}

@media screen and (max-width: 767px) {
  .p-top-fv__head.c-head {
    margin-top: unset;
    padding-block: unset;
  }
}

@media screen and (max-width: 767px) {
  .p-top-fv__img {
        position: absolute;
        right: 0;
        height: auto;
        width: 66.7%;
        height: auto;
        bottom: 8px;
        bottom: -39px;
  }
}

@media screen and (max-width: 767px) {
  .p-top-fv__deco {
    margin-top: 0px;
  }
}
@media screen and (max-width: 499px) {
  .p-top-fv__deco {
    margin-top: 50px;
  }
}

h2.c-head__ttl {
  color: #2d2d2d;
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.24em;
}
@media screen and (max-width: 767px) {
  h2.c-head__ttl {
    font-size: 1.5rem;
  }
}

.c-head__catch {
  color: #3d7e8f;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.92px;
  margin-top: 2.8125rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-head__catch {
    font-size: 1rem;
    font-weight: 500;
    line-height: 2.2;
    letter-spacing: 1.28px;
    margin-top: 0.8125rem;
  }
}
.c-head__catch span {
  border-bottom: dashed 0.8px #3d7e8f;
  padding-bottom: 0.3125rem;
  padding-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-head__catch span {
    padding-bottom: 0rem;
    padding-right: 0rem;
  }
}
.c-head__catch span.margin {
  margin-top: 1.125rem;
  padding-bottom: 0.3125rem;
  padding-right: 0.25rem;
}
@media screen and (max-width: 767px) {
  .c-head__catch span.margin {
    margin-top: 0;
    padding-bottom: 0rem;
  }
}

.p-top-blog {
  background-color: #3d7e8f;
  padding-block: 2.0625rem 0rem;
  margin-top: -6.75rem;
  position: relative;
  opacity: 0.9;
}
@media screen and (max-width: 767px) {
  .p-top-blog {
margin-top: 23px;
    padding-block: 26px 43px;
  }
}

.p-top-blog__inner {
  width: min(90rem, 100%);
  padding-inline: 6.9375rem 8.9375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-blog__inner {
    padding-inline: 1.25rem;
  }
}

.p-top-blog__wrap {
  display: flex;
  gap: 9.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-blog__wrap {
    flex-direction: column;
    gap: 26px;
  }
}

.p-top-blog__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 2.875rem;
  margin-top: 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-blog__left {
    flex: unset;
    display: block;
    margin-top: unset;
  }
}

.p-top-blog__right {
  width: 72.5%;
}
@media screen and (max-width: 767px) {
  .p-top-blog__right {
    width: 91.6417910448%;
  }
}

.p-top-blog__btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-blog__btn {
    display: none;
  }
}

.p-top-blog__btn-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  letter-spacing: 0.23em;
}

.p-top-blog__btn-circle {
  position: relative;
  border-radius: 100vmax;
  background-color: #ffffff;
  width: 2.25rem;
  height: auto;
  aspect-ratio: 1;
}
.p-top-blog__btn-circle::before {
  content: "";
  position: absolute;
  background: url(../img/icon_vector_green.svg) no-repeat center center/cover;
  width: 0.8125rem;
  height: 0.625rem;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.p-top-blog__table {
  display: flex;
  flex-direction: column;
  text-align-last: left;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-blog__table {
    padding-block: 17px 5px;
    gap: 4px;
  }
}

.p-top-blog__table-link {
  text-align-last: left;
  padding-block: 0.9375rem;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-blog__table-link {
    padding-block: 5px 5px;
  }
}

.p-top-blog__table-time {
  font-size: 1rem;
}

.p-top-blog__table-ttl {
  font-size: 1rem;
  color: #ffffff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.p-top-blog__btn-under {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-blog__btn-under {
    margin-top: -50px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.p-top-blog__btn-circle {
  position: relative;
  border-radius: 100vmax;
  background-color: #ffffff;
  width: 2.25rem;
  height: auto;
  aspect-ratio: 1;
}
.p-top-blog__btn-circle::before {
  content: "";
  position: absolute;
  background: url(../img/icon_vector_green.svg) no-repeat center center/cover;
  width: 0.8125rem;
  height: 0.625rem;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.p-top-pro {
  padding-block: 2.875rem 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-pro {
    padding-block: 32px 54px;
  }
}

.p-top-pro__inner {
  width: min(90rem, 100%);
  padding-inline: 9.375rem;
  margin-inline: auto;
}
.p-top-pro__head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-pro__head {
    gap: 8px;
    margin-left: 9px;
  }
}

.p-top-pro__wrap {
  margin-top: 3.75rem;
  display: grid;
  grid-template-areas: "text img" "btn img";
  grid-template-columns: 1fr 34.25rem;
  column-gap: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-pro__wrap {
    grid-template-areas: "img" "text" "btn";
    grid-template-columns: 1fr;
    gap: 42px;
  }
}
.p-top-pro__wrap .p-top-pro__description {
  grid-area: text;
}
.p-top-pro__wrap .p-top-pro__btn {
  grid-area: btn;
}
.p-top-pro__wrap .p-top-pro__img {
  grid-area: img;
}

@media screen and (max-width: 767px) {
  .p-top-pro__description {
    margin-top: 18px;
  }
}

.p-top-pro__text {
  font-size: 1rem;
  line-height: 1.8;
}

.p-top-pro__text + .p-top-pro__text {
  margin-top: 1.875rem;
}

.p-top-contact {
  padding-block: 0rem 3.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact {
    padding-block: 77px 64px;
  }
}

.p-top-contact__inner {
  width: min(90rem, 100%);
  padding-inline: 9.375rem;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top-contact__inner {
    padding-inline: 1.25rem;
  }
}

.p-top-contact__box {
  padding: 1.875rem 11rem 4.125rem 11.1875rem;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-contact__box {
    padding: 2.8125rem 0rem 3.875rem 0rem;
  }
}

.p-top-contact-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-contact-head {
    gap: 8px;
  }
}

.p-top-contact__text {
  margin-top: 2.0625rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-contact__text {
    line-height: 1.8;
    margin-top: 29px;
      text-align: left;
      padding-inline: 1rem;
  }
}

.p-top-contact__btn-wrap {
  margin-top: 3.0625rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact__btn-wrap {
    margin-left: 3px;
    margin-top: 47px;
    flex-direction: column;
    gap: 37px;
    align-items: center;
  }
}

.p-top-contact__btn-box {
  text-align: center;
  width: 21.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact__btn-box {
    width: 296px;
  }
}

.p-top-contact__btn-lead {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.125em;
  color: #3d7e8f;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-contact__btn-lead {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}

.p-top-contact__btn {
  position: relative;
  width: 100%;
  margin-top: 0.8125rem;
  background-color: #3d7e8f;
  padding-block: 1rem;
  padding-left: 4.4375rem;
  padding-right: 1.5625rem;
  border-radius: 0.3125rem;
  border: 1px solid #3d7e8f;
}
.p-top-contact__btn svg {
  width: 2.125rem;
  height: auto;
  aspect-ratio: 34/32;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact__btn {
    margin-top: 20px;
    width: 300px;
  }
}
@media (any-hover: hover) {
  .p-top-contact__btn:hover {
    background-color: #ffffff;
  }
  .p-top-contact__btn:hover .p-top-contact__btn-text {
    color: #3d7e8f;
  }
  .p-top-contact__btn:hover svg path {
    fill: #3d7e8f;
  }
}

.p-top-contact__btn-wrap .p-top-contact__btn-box:nth-child(2) .p-top-contact__btn svg {
  width: 2.0625rem;
  height: auto;
  aspect-ratio: 33/33;
  top: 48%;
  translate: 0 -50%;
  left: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact__btn-wrap .p-top-contact__btn-box:nth-child(2) .p-top-contact__btn svg {
    left: 41px;
  }
}

.p-top-contact__btn-text {
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.11em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-contact__btn-text {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.75;
  }
}

.p-top-menu {
  padding-block: 4.375rem 5.0625rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu {
    padding-block: 38px 6.0625rem;
  }
}

.p-top-menu__inner {
  width: min(90rem, 100%);
  padding-inline: 9.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-menu__inner {
    padding-inline: 1.25rem;
  }
}

.p-top-menu__head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-menu__head {
    gap: 8px;
    margin-left: 13px;
  }
}

.p-top-menu__text {
  margin-top: 2.25rem;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-menu__text {
    margin-top: 55px;
    line-height: 1.75;
    text-align: left;
  }
}

.p-top-menu__cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__cards {
         margin-top: 37px;
        gap: 105px;

  }
}

.p-top-menu__card {
  display: flex;
  gap: 5.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card {
    gap: 2.5625rem;
    flex-direction: column-reverse;
  }
}

.p-top-menu__card:nth-child(1) {
  gap: 6.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card:nth-child(1) {
    gap: 40px;
            flex-direction: column-reverse;
  }
}

.p-top-menu__card:nth-child(2) {
  gap: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card:nth-child(2) {
    gap: 3.6875rem;
  }
}

.p-top-menu__card:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card:nth-child(even) {
          flex-direction: column-reverse;
  }
}

.p-top-menu__card-description {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card-description {
    order: 2;
  }
}

.p-top-menu__card:nth-child(2) .p-top-menu__card-description {
  margin-top: 0rem;
  padding-right: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card:nth-child(2) .p-top-menu__card-description {
    margin-top: unset;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-top-menu__card:nth-child(3) .p-top-menu__card-description {
    margin-top: unset;
  }
}

.p-top-menu__card-title {
  margin-top: 2.9375rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #3d7e8f;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #3d7e8f;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card-title {
    margin-top: unset;
    padding-bottom: 0.3125rem;
  }
}

.p-top-menu__card:nth-child(2) .p-top-menu__card-title {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card:nth-child(2) .p-top-menu__card-title {
    margin-top: unset;
  }
}

.p-top-menu__card:nth-child(3) .p-top-menu__card-title {
  margin-top: 2.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card:nth-child(3) .p-top-menu__card-title {
    margin-top: unset;
  }
}

.p-top-menu__card-body {
  margin-top: 2.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card-body {
    margin-top: 1.625rem;
    gap: 1.625rem;
  }
}

.p-top-menu__cards .p-top-menu__card:nth-child(2) .p-top-menu__card-body {
  margin-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__cards .p-top-menu__card:nth-child(2) .p-top-menu__card-body {
    margin-top: 1.3125rem;
  }
}

.p-top-menu__cards .p-top-menu__card:nth-child(3) .p-top-menu__card-body {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__cards .p-top-menu__card:nth-child(3) .p-top-menu__card-body {
    margin-top: 1.625rem;
  }
}

.p-top-menu__card-body-main {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.p-top-menu__card-body-money {
  display: flex;
  flex-direction: column;
}

.p-top-menu__card-body-money .p-top-menu__card-body-money-text:nth-child(2) {
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card-body-money .p-top-menu__card-body-money-text:nth-child(2) {
    gap: 50px;
  }
}

.p-top-menu__card-body-money-text {
  display: flex;
  gap: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card-body-money-text {
    gap: 17px;
  }
}

.p-top-menu__card-body-money-text-main {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.p-top-menu__card-body-money-text-sub {
  display: flex;
  gap: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card-body-money-text-sub {
    gap: 27px;
  }
}

.p-top-menu__body-money-text-sub-num {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.p-top-menu__body-money-text-sub-tax {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.p-top-menu__card-img {
  width: 48.0701754386%;
}
@media screen and (max-width: 767px) {
  .p-top-menu__card-img {
    text-align: center;
        margin-top: 0;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-top-menu__card:nth-child(2) .p-top-menu__card-img {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-top-menu__card:nth-child(3) .p-top-menu__card-img {
    margin-top: 0;
  }
}

.p-top-pro {
  padding-block: 3.8125rem 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-pro {
    padding-block: 40px 3.375rem;
  }
}

.p-top-pro__inner {
  width: min(90rem, 100%);
  padding-inline: 9.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-pro__inner {
    padding-inline: 1.25rem;
  }
}

.p-top-pro__head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  padding-left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-pro__head {
    gap: 0.5rem;
    padding-left: unset;
  }
}

.p-top-pro__wrap {
  margin-top: 4.75rem;
  display: grid;
  grid-template-areas: "text img" "btn img";
  grid-template-columns: 1fr 34.25rem;
  column-gap: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-pro__wrap {
    margin-top: 68px;
    grid-template-areas: "img" "text" "btn";
    grid-template-columns: 1fr;
    gap: 2.625rem;
  }
}
.p-top-pro__wrap .p-top-pro__description {
  grid-area: text;
}
.p-top-pro__wrap .p-top-pro__btn {
  grid-area: btn;
}
.p-top-pro__wrap .p-top-pro__img {
  grid-area: img;
}

@media screen and (max-width: 767px) {
  .p-top-pro__description {
    margin-top: 20px;
  }
}

.p-top-pro__text {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-top-pro__text {
    line-height: 1.75;
  }
}

.p-top-pro__text + .p-top-pro__text {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-pro__text + .p-top-pro__text {
    margin-top: 30px;
  }
}

.p-top-pro__btn {
  margin-top: 1.1875rem;
  width: 25rem;
  padding-block: 0.9375rem;
  padding-inline: 2.15625rem 0;
  background-color: #3d7e8f;
  border-radius: 0.25rem;
  border: 1px solid #3d7e8f;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-pro__btn {
    width: 18.75rem;
    margin-top: unset;
    padding-block: 0.8125rem;
    padding-inline: 1.075rem 0;
    background-size: 1.25rem 1.25rem;
    background-position: 95% 50%;
  }
}
.p-top-pro__btn::before {
  content: "";
  position: absolute;
  background-image: url(../img/icon_vector_white.svg);
  width: 1.5rem;
  height: auto;
  aspect-ratio: 24/24;
  top: 54%;
  translate: 0 -50%;
  left: 85%;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-top-pro__btn::before {
    width: 20px;
    height: auto;
    aspect-ratio: 20/20;
    left: 88%;
  }
}
@media (any-hover: hover) {
  .p-top-pro__btn:hover {
    border: 1px solid #3d7e8f;
    background-color: #ffffff;
  }
  .p-top-pro__btn:hover::before {
    top: 55%;
    background-image: url(../img/icon_vector_green.svg);
  }
  .p-top-pro__btn:hover p {
    color: #3d7e8f;
  }
}
.p-top-pro__btn p {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.48;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-pro__btn p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-pro__img {
    margin-inline: auto;
  }
}

.p-top-about {
  overflow-x: hidden;
  padding-block: 5.5rem 6.3125rem;
  background-color: #f5f5f5;
  background-image: url(../img/top_about_bg_pc.webp);
  background-size: 49.375rem 31.9375rem;
  background-repeat: no-repeat;
  background-position: calc(50vw - 35.625rem) 9.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-about {
    padding-block: 2.1875rem 3.125rem;
    background-size: 100vw 42.125rem;
    background-repeat: no-repeat;
    background-position: 0rem 5.125rem;
  }
}
.p-top-about::before {
  content: "";
  position: absolute;
  width: calc((100vw - 71.25rem) / 2);
  height: 31.9375rem;
  background-color: #ffffff;
  top: 9.125rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top-about::before {
    display: none;
  }
}

.p-top-about__inner {
  width: min(90rem, 100%);
  padding-inline: 9.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner {
    padding-inline: 1.25rem;
  }
}

.p-top-about-wrap {
  display: flex;
    gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-about-wrap {
    flex-direction: column;
    gap: 5.3125rem;
  }
}

.p-top-about__description {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__description {
    flex: unset;
    gap: 36px;
  }
}

.p-top-about__head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__head {
    gap: 0.5rem;
    margin-top: unset;
  }
}

.p-top-about__body-text {
  font-size: 1rem;
  line-height: 1.8;
}
.p-top-about__body-text + .p-top-about__body-text {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__body-text + .p-top-about__body-text {
    margin-top: 31px;
  }
}

.p-top-about__img {
  width: 48.0701754386%;
}
@media screen and (max-width: 767px) {
  .p-top-about__img {
    display: none;
  }
}

.p-top-about__img-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-about__img-sp {
        margin-top: 5.3125rem;
        display: block;
        padding-inline: 1.25rem;
        height: auto;
  }
}

.p-under {
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .p-under {
    margin-top: 3.625rem;
  }
}

.p-under-head {
  height: 18.75rem;
  background-image: url(../img/blog_img_top_pc.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-under-head {
    height: 15rem;
    background-image: url(../img/blog_img_top_sp.webp);
  }
}

.p-under-list {
  padding-block: 7.125rem 5.3125rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-under-list {
    padding-block: 3.375rem 3.75rem;
  }
}

.p-under-list__inner {
  width: min(90rem, 100%);
  padding-inline: 9.3125rem 8.1875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-under-list__inner {
    padding-inline: 1.25rem;
  }
}

.p-under-list__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2.6875rem;
  column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-under-list__cards {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
    column-gap: unset;
  }
}

.p-under-list__card {
  background-color: #ffffff;
  padding: 0.8125rem 1.4375rem 2.3125rem 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-under-list__card {
    padding: 0.8125rem 1.375rem 2.1875rem 1.3125rem;
  }
}

.p-under-list__card a {
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-under-list__card a {
    gap: 0.75rem;
    height: unset;
  }
}

.p-under-list__card-img {
  width: 19.625rem;
  height: auto;
  aspect-ratio: 314/187;
}
@media screen and (max-width: 767px) {
  .p-under-list__card-img {
    width: 100%;
  }
}
.p-under-list__card-img picture {
  width: 100%;
}

.p-under-list__card-meta {
  margin-top: 0.875rem;
  display: flex;
  gap: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .p-under-list__card-meta {
    margin-top: 0.5625rem;
    gap: 8%;
  }
}

.p-under-list__card-category {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding: 0.125rem 1.125rem;
  background-color: #f5ff9f;
}
@media screen and (max-width: 767px) {
  .p-under-list__card-category {
    padding: 0.125rem 0.9375rem;
  }
}

.p-under-list__card-date {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.p-under-list__card-text {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3.0625rem;
}
@media screen and (max-width: 767px) {
  .p-under-list__card-text {
    height: 50px;
  }
}

.p-under-list__page {
  padding-bottom: 6.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-under-list__page {
    margin-left: 16px;
    padding-bottom: 69px;
  }
}

.p-under-list__page .page-numbers {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: #3d7e8f;
  width: 1.875rem;
  height: 2.125rem;
  padding-block: 0.1875rem;
  display: flex;
  justify-content: center;
  align-items: center;
    font-family: 'Noto Sans JP',
    sans-serif;
}
@media (any-hover: hover) {
  .p-under-list__page a:hover {
    cursor: pointer;
    color: #ffffff;

  }
}
span.page-numbers.current {
      color: #ffffff;
    background-color: #3d7e8f;
    pointer-events: none;
}


.p-under-list__page .page-numbers.dots {
  border: unset;
  color: #111111;
  pointer-events: none;
}


.p-under-list__page .page-numbers.prev,
.p-under-list__page .page-numbers.next {
  opacity: 0;
  visibility: hidden;
}

.p-under-list__page ul {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-under-list__page ul {
    margin-left: 16px;
  }
}

.p-under-list__page li a {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  border: 1px solid #3d7e8f;
  color: #3d7e8f;
  width: 1.875rem;
  height: 2.125rem;
  padding-block: 0.1875rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (any-hover: hover) {
.p-under-list__page a.page-numbers:hover {
    cursor: pointer;
    color: #ffffff;
    background-color: #3d7e8f;
  }
}

.p-under-list__page li:nth-child(4) a {
  border: 1px solid #3d7e8f;
}

.p-under-list__page li:last-child {
  position: relative;
  left: -0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-under-list__page li:last-child {
    left: -16px;
  }
}

.p-under-single {
  padding-block: 7.125rem 6.375rem;
}
@media screen and (max-width: 767px) {
  .p-under-single {
    padding-block: 3.5625rem 3.6875rem;
  }
}

.p-under-single__inner {
  width: min(90rem, 100%);
  padding-inline: 14.0625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-under-single__inner {
    padding-inline: 1.25rem;
  }
}

.p-under-single__head {
  display: flex;
  flex-direction: column;
}

.p-under-single__date {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.p-under-single__title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .p-under-single__title {
    font-size: 18px;
  }
}

.p-under-single__body {
  margin-top: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .p-under-single__body {
    margin-top: 3.0625rem;
  }
}

.p-under-single__body p {
    margin-top: 2.5625rem;
    font-size: 1.3rem;
    line-height: 1.8;
    letter-spacing: normal;
    margin-bottom: 2.5625rem;
}
    @media screen and (max-width: 767px) {
      .p-under-single__body p {
        font-size: 16px;
      }
    }

.p-under-single__body p:first-child {
  margin-top: unset;
}

.p-under-single__page {
  margin-top: 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-under-single__page {
    margin-top: 3.0625rem;
  }
}
.p-under-single__page::before {
  content: "";
  position: absolute;
  width: 0.0625rem;
  height: 2.75rem;
  background-color: #3d7e8f;
  top: 0.625rem;
  left: 50%;
  translate: -50%;
}
@media screen and (max-width: 767px) {
  .p-under-single__page::before {
    height: 3.875rem;
  }
}

.p-under-single__page-wrap {
  display: grid;
  grid-template-columns: repeat(2, 16.75rem);
  gap: 9rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-under-single__page-wrap {
    grid-template-columns: repeat(2, 40%);
    justify-content: space-between;
    gap: unset;
  }
}

.p-under-single__page-text-sub {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #3d7e8f;
}

.p-under-single__page-text-main {
  margin-top: 0.3125rem;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-decoration-line: underline;
}
@media screen and (max-width: 767px) {
  .p-under-single__page-text-main {
    letter-spacing: -0.04em;
  }
}

.p-under-single__page-next {
  text-align: right;
}

.p-under-single__btn {
  margin-top: 5.9375rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #3d7e8f;
  border-radius: 2.5rem;
  padding-block: 0.9375rem;
  width: 25rem;
  text-align: center;
  display: block;
  margin-inline: auto;
  position: relative;
  border: 1px solid #3d7e8f;
}
.p-under-single__btn svg {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: auto;
  aspect-ratio: 12/13;
  top: 51%;
  translate: 0 -50%;
  left: 16.4375rem;
}
@media screen and (max-width: 767px) {
  .p-under-single__btn {
    margin-top: 62px;
    padding-right: 19px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.48125;
    padding-block: 8px;
    width: 180px;
  }
  .p-under-single__btn svg {
    top: 50%;
    translate: 0 -50%;
    left: 128px;
  }
}
@media (any-hover: hover) {
  .p-under-single__btn:hover {
    color: #3d7e8f;
    background-color: #ffffff;
  }
  .p-under-single__btn:hover svg path {
    fill: #3d7e8f;
  }
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

.js-fade-up {
    opacity: 0;
    transform: translateY(40px);
    /* 下から */
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
img.attachment-medium_large.size-medium_large.wp-post-image {
    aspect-ratio: 314 / 187;
    border-radius: 10px;
}