@charset "UTF-8";

.grecaptcha-badge { visibility: hidden; }

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #4b4b4b;
  line-height: 1.5;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

.bold {
  font-weight: 700;
}

/* リキッドレイアウト対応 */
html {
  scroll-snap-type: y proximity;
  scroll-padding-top: 70px;
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  a:hover {
    color: #E4AA24;
  }
}

img {
  width: 100%;
}

.youtube-umekomi {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 600px;
  display: block;
  margin: auto;
}

.wp-block-embed__wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 600px;
  display: block;
  margin: auto;
}

.l-inner {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 78.125rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.c-section__title {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 2.8125rem;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 0.7;
}
@media screen and (min-width: 768px) {
  .c-section__title {
    font-size: 6.25rem;
  }
}

.c-section__ja-title {
  font-weight: 700;
  line-height: 1.3;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-section__ja-title {
    font-size: 2.25rem;
  }
}

.c-section__title-header {
  text-align: center;
  margin-top: 3.125rem;
}

.c-section__en-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 0.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-section__en-title {
    font-size: 1.25rem;
  }
}

.c-section__en-title::before {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.125rem;
  height: 0.125rem;
  background-color: #FFE900;
}
.service-en-title {
  position: relative;
}

.service-en-title::before {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.125rem;
  height: 0.125rem;
  background-color: #4b4b4b;
}
.p-service__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 5rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-service__items {
    flex-direction: row;
    justify-content: center;
    gap: 3.75rem;
  }
}

.p-service__item {
  width: 20rem;
  text-align: center;
  margin-top: 2.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-service__item {
    margin-top: 5rem;
    width: 30rem;
  }
}

.sub-service__icon {
  width: 7.125rem;
  margin-inline: auto;
}

.p-service__item-btn a {
  background-color: #FFE900;
  padding: 1.25rem 2rem;
  border-radius: 6.25rem;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s;
  margin-top: 1.25rem;
}

.c-btn__flex.p-service__btn-flex {
  justify-content: center;
}

.u-sp {
  display: block;
}
@media (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

.u-pc {
  display: none;
}
@media (min-width: 768px) {
  .u-pc {
    display: block;
  }
}

.c-btn__arrow {
  width: 3rem;
}

.c-btn__flex {
  display: flex;
  align-items: center;
  gap: 1.4375rem;
  transition: all 0.3s;
}

.c-more-btn__text {
  font-size: 0.9375rem;
  text-transform: uppercase;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  transition: all 0.3s;
}

.c-btn__flex:hover {
  color: #E4AA24;
}

.c-more-btn {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-more-btn {
    margin-top: 4.375rem;
  }
}

.c-btn__flex.service-flex:hover {
  color: #FFE900;
}

.c-btn__arrow {
  transition: transform 0.3s ease; /* 通常状態にもトランジションを適用 */
}

.c-btn__flex:hover .c-btn__arrow {
  transform: translateX(10px); /* 矢印を5px右に移動 */
}

.c-btn__flex.p-service__btn-flex:hover {
  color: #E4AA24;
}

.c-hamburger {
  position: relative;
  width: 1.875rem;
  height: 1.875rem;
  top: 0;
  right: 0;
  z-index: 10000;
}

.c-hamburger span {
  position: absolute;
  width: inherit;
  height: 0.125rem;
  background-color: #4d4d4d;
  transition: 0.3s;
}

.c-hamburger span:nth-child(1) {
  top: 15%;
}

.c-hamburger span:nth-child(2) {
  top: 51%;
  opacity: 1;
}

.c-hamburger span:nth-child(3) {
  top: 85%;
}

.c-hamburger.is-active span:nth-child(1) {
  top: 60%;
  transform: rotate(45deg);
}

.c-hamburger.is-active span:nth-child(2) {
  top: 51%;
  opacity: 0;
}

.c-hamburger.is-active span:nth-child(3) {
  top: 60%;
  transform: rotate(-45deg);
}

.c-page-link {
  padding-top: 6.25rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .c-page-link {
    padding-bottom: 6.25rem;
  }
}

.c-page-link__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8125rem;
}

.c-page-link__archive {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-page-link__archive {
    font-size: 1rem;
  }
}

.c-page-link__archive a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background-color: #4d4d4d;
  border-radius: 2.5rem;
  padding: 0.625rem 2.5rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-page-link__archive a {
    padding: 0.625rem 5.625rem 0.75rem;
    font-size: 1.0625rem;
  }
}

.c-to-top {
  position: fixed;
  right: 0.625rem;
  bottom: 0.625rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid;
  z-index: 999999;
}

.c-to-top a {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #fff;
  position: relative;
}

.c-to-top a span {
  position: absolute;
  background-color: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-top: 2px solid;
  border-right: 2px solid;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 0.25em)) rotate(-45deg);
}

.c-breadcrumbs {
  font-size: 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs {
    font-size: 0.875rem;
  }
}

.post-type-archive .c-breadcrumbs {
  background-color: #FFFDE2;
}

.page-id-500 .c-breadcrumbs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 11.25rem;
  height: 19.5rem;
  border-radius: 0 0 9.375rem 0;
  background-color: #FFFDE2;
  z-index: -1;
}

.c-breadcrumbs__inner {
  margin-inline: auto;
  padding: 0.625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs__inner {
    max-width: 78.125rem;
    padding: 1rem 1.5625rem;
  }
}

.taxonomy.category {
  display: none;
}

.c-scroll__wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 100000;
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.c-scroll-down {
  padding-bottom: 5rem;
  position: relative;
  font-size: 1rem;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.c-scroll-down::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 4.375rem;
  background: #fff;
  -webkit-animation: scroll-down 2s infinite;
          animation: scroll-down 2s infinite;
}

@-webkit-keyframes scroll-down {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes scroll-down {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.p-header {
  height: 3.75rem;
  font-weight: 600;
  position: relative;
  z-index: 10000;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 8.75rem;
  }
}

.p-header__inner {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 0 1.875rem;
    max-width: 90rem;
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-header__drawer {
    display: none;
  }
}

.p-header__pc-nav {
  height: inherit;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__pc-nav {
    display: block;
  }
}

.p-header__logo {
  width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 15.25rem;
  }
}

.p-header__logo img {
  width: 100%;
}

.p-header__right {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__right {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: flex-end; /* 右揃え */
    gap: 2.125rem;
    height: inherit;
  }
}

/* ベースのスタイル */
.p-header__pc-nav {
  position: relative;
}

.pc-nav__item {
  position: relative;
}

.pc-nav__item a {
  justify-content: center;
}

.worry {
  text-align: center;
}

.p-sub-writing__title {
  margin-top: 3.125rem;
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-writing__title {
    font-size: 2.8125rem;
    margin-top: 8.5rem;
  }
}

.p-sub-mv__picture .p-sub-mv__title-en.writing-en-title {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__picture .p-sub-mv__title-en.writing-en-title {
    font-size: 2rem;
  }
}

.p-sub-mv__picture .p-sub-mv__title.writing-ja-title {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__picture .p-sub-mv__title.writing-ja-title {
    font-size: 3rem;
  }
}

.p-sub-writing__text {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-top: 4.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-writing__text {
    font-size: 2rem;
    margin-top: 7.125rem;
  }
}

.p-sub-writing__img-top img {
  max-width: 25rem;
  margin: 0 auto;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-writing__img-top img {
    margin-top: 8.125rem;
    max-width: 57.6875rem;
  }
}

.writing-arrow {
  margin-top: 3.125rem;
  margin-inline: auto;
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .writing-arrow {
    width: 11.125rem;
    margin-top: 6.25rem;
  }
}

.media-catch {
  background: #FFE900;
  border-radius: 20px;
  padding: 1.25rem 0 0 0;
  max-width: 25rem;
  margin: 40px auto;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .media-catch {
    max-width: 48.75rem;
    padding: 40px 0 0 0;
  }
}

.media-catch__top {
  text-align: center;
  padding: 0 8px 20px 8px;
}
@media screen and (min-width: 768px) {
  .media-catch__top {
    padding: 0 32px 32px 32px;
  }
}

.media-catch__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .media-catch__title {
    font-size: 2rem;
  }
}

.media-catch__bottom {
  padding: 24px;
  background: #fff;
  border-radius: 0 0 20px 20px;
  border: 3px solid #FFE900;
  border-top: none;
  padding: 2rem 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .media-catch__bottom {
    padding: 32px;
  }
}

.media-catch__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .media-catch__flex {
    flex-direction: row;
    max-width: 37.5rem;
    margin-inline: auto;
  }
}

.media-catch__list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px 0;
}
.media-catch__list li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 12px;
  font-size: 1rem;
  text-align: left;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .media-catch__list li {
    font-size: 1.125rem;
  }
}

.media-catch__list li::before {
  content: "✔";
  color: #232323;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1em;
}

.media-catch__desc {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0.75rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .media-catch__desc {
    font-size: 1.125rem;
  }
}

.media-catch__illust img {
  width: 6.25rem;
  height: auto;
  display: block;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .media-catch__illust img {
    margin-bottom: 1.875rem;
    width: 7.5rem;
  }
}

.plan {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .plan {
    padding-block: 7.5rem;
  }
}

.plan-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 61.25rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .plan-cards {
    flex-direction: row;
    justify-content: center;
    margin-top: 5rem;
  }
}

.plan-card {
  background: #FFE900;
  border-radius: 20px;
  max-width: 400px;
  box-sizing: border-box;
  padding-top: 24px;
}
@media screen and (min-width: 768px) {
  .plan-card {
    max-width: 450px;
    padding-top: 40px;
  }
}

.plan-card__top {
  text-align: center;
  padding: 0 16px 20px 16px;
}
@media screen and (min-width: 768px) {
  .plan-card__top {
    padding: 0 32px 32px 32px;
  }
}

.plan-card__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .plan-card__title {
    font-size: 2.25rem;
  }
}

.plan-card__bottom {
  background: #fff;
  border-radius: 0 0 20px 20px;
  border: 2px solid #FFE900;
  border-top: none;
  padding: 24px 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan-card__bottom {
    padding: 32px;
  }
}

.plan-card__price {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan-card__price {
    font-size: 1.5rem;
  }
}

.plan-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.plan-card__list li {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.6;
  position: relative;
  padding-left: 1.2em;
}

.plan-card__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  font-size: 1em;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 22.5rem;
  padding: 24px 0;
  margin-inline: auto;
  margin-top: 5rem;
}
@media (min-width: 900px) {
  .feature-cards {
    flex-direction: row;
    max-width: 75rem;
    gap: 24px;
    margin-top: 6.25rem;
  }
}

.feature-card {
  background: #fff;
  border: 3px solid #FFE900;
  border-radius: 24px;
  padding: 32px 24px 40px 24px;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card__circle {
  width: 80px;
  height: 80px;
  background: #FFE900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px #FFE900;
  font-weight: bold;
  font-size: 2rem;
  margin-inline: auto;
  margin-top: -5rem;
}

.feature-card__number {
  font-size: 2rem;
  font-weight: bold;
}

.feature-card__icon {
  margin-bottom: 20px;
}
.feature-card__icon img {
  width: 10rem;
  height: 8.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .feature-card__title {
    font-size: 1.5rem;
  }
}

.feature-card__desc {
  font-size: 0.875rem;
  text-align: left;
  margin: 0;
  margin-top: 8px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .feature-card__desc {
    font-size: 1rem;
  }
}

.sub-support {
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .sub-support {
    padding-top: 7.5rem;
  }
}

.p-header__pc-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pc-nav__items {
  display: flex;
  align-items: center;
  justify-content: right;
}

.pc-nav__item,
.pc-nav__item a {
  height: inherit;
}

.pc-nav__item {
  position: relative;
  margin-left: 2rem;
}

.pc-nav__item.sns-icon {
  margin-left: 1rem;
}

.pc-nav__item a {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.pc-nav__item a:hover {
  color: #E4AA24;
}

.p-header__contact-cta {
  margin-top: 0.75rem;
}

.pc-nav__item.current-page a {
  color: #E4AA24;
}

.p-header__contact-btn {
  background-color: #FFE900;
  color: #4d4d4d;
  width: inherit;
  border-radius: 1.875rem;
  transition: all 0.3s;
}

.p-header__contact-btn-wrap {
  width: 10rem;
  height: 3rem;
  display: grid;
  place-content: center;
}

.p-header__contact-btn:hover {
  background-color: #fff;
  border: 2px solid #FFE900;
  color: #FFE900;
}

.pc-nav__items--top,
.pc-nav__items--bottom {
  display: flex;
  justify-content: flex-end; /* 右揃え */
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-nav__items--bottom {
  margin-top: 1.5rem;
}

.sns-icon img {
  width: 2.5rem;
}

.p-header__contact-btn-wrap.pc-nav__item {
  margin-left: 1.25rem;
}

.sp-nav {
  display: none;
  position: absolute;
  top: 3.75rem;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 3.75rem);
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
}

.sp-nav.is-active {
  display: block;
}

.sp-nav__items {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2.5rem 0;
  min-height: calc(100vh - 3.75rem);
}

.sp-nav__item {
  width: 100%;
  padding: 1.25rem 0;
}

.sp-nav__item a {
  color: #4d4d4d;
  text-align: center;
  display: block;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-drawer__cta-btn #open {
  width: 17.5rem;
  height: 3.75rem;
}

.sp-nav__item .p-drawer_contact-btn {
  width: 17.5rem;
  height: 3.75rem;
  display: grid;
  place-content: center;
  background-color: #FFE900;
  border-radius: 1.875rem;
}

.sp-nav {
  display: none;
  position: absolute;
  top: 3.75rem;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 3.75rem);
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
}

.sp-nav.is-active {
  display: block;
}

.sp-nav__items {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2.5rem 0;
  min-height: calc(100vh - 3.75rem);
}

.sp-nav__item {
  display: flex;
  justify-content: center; /* 要素を中央に配置 */
  width: 100%;
  padding: 1.25rem 0;
}

.sp-nav__item a {
  color: #4d4d4d;
  text-align: left; /* テキストを左寄せ */
  display: block;
  width: 17.5rem; /* aタグの幅を指定して中央揃え */
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.75rem;
  position: relative;
}

.sp-nav__item a::after {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 30%;
  transform: translateY(-50%);
  width: 0.46875rem;
  height: 0.9375rem;
  background-color: #FFE900;
  border-radius: 100% 0 0 100%/50%;
}

.p-drawer__cta-btn #open {
  width: 17.5rem;
  height: 3.75rem;
}

.p-drawer__cta-btn {
  margin-top: 2.5rem;
}

.sp-nav__item .p-drawer_contact-btn {
  width: 17.5rem;
  height: 3.75rem;
  display: grid;
  place-content: center;
  background-color: #FFE900;
  border-radius: 1.875rem;
  padding-bottom: 0;
}

.sp-nav__item .p-drawer_contact-btn:after {
  display: none;
}

.p-mv {
  position: relative;
}

.p-mv__copy-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  top: 30%;
  left: 5%;
  transform: translateY(-50%);
  text-shadow: 0 0 10px #ffffff;
  z-index: 2;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
.p-mv__copy-text span {
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-mv__copy-text span {
    font-size: 3.375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-mv__copy-text {
    left: 0;
    top: 50%;
    font-size: 2.375rem;
  }
}

.p-mv__inner.l-inner {
  position: relative;
  height: 100%;
}

.fv-bottom {
  background: linear-gradient(to bottom, #FFFFFF, #FFFDE2);
  padding-top: 3.125rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .fv-bottom {
    padding-top: 4.375rem;
    padding-bottom: 0rem;
  }
}

.fv-bottom__img img:hover {
  opacity: 0.7;
}

.p-mv__img {
  width: 100%;
  height: 100%;
  text-align: center;
  margin-inline: auto;
}

.fv-bottom__img {
  width: 60%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
}

.fv-bottom__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__img {
  position: relative;
}

.p-mv-copy {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  left: 5%;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .p-mv-copy {
    top: 40%;
    width: 50%;
  }
}


.p-single__inner {
  width: 100%;
  margin-inline: auto;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-single__inner {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
    max-width: 50rem;
    margin-top: 6.25rem;
  }
}

.p-single-body__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #4d4d4d;
}
@media screen and (min-width: 768px) {
  .p-single-body__title {
    font-size: 1.875rem;
  }
}

.p-single__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.875rem;
}

.p-single-content__date {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
}

.p-single-category {
  color: #fff;
  background-color: #4d4d4d;
  border-radius: 2.5rem;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
}

.p-single-body__image {
  margin-top: 4.375rem;
}

/* 16:9の比率を維持するスタイル */
.aspect-ratio-container {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.aspect-ratio-content {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像がコンテナ全体を覆うように調整 */
}

.p-single-body__content p {
  line-height: 1.5;
  font-size: 1rem;
  margin-top: 1.25rem;
}

h2.wp-block-heading {
  font-weight: 700;
  font-size: 1.5625rem;
  margin-top: 3.75rem;
  line-height: 1.5;
}

h3.wp-block-heading {
  font-size: 0.875rem;
  margin-top: 1rem;
  border-bottom: 0.5px solid #4d4d4d;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  h3.wp-block-heading {
    font-size: 1.125rem;
    margin-top: 1.125rem;
    padding-bottom: 1rem;
  }
}

.wp-block-group {
  margin-top: 3.125rem;
}

.wp-block-image {
  margin-top: 2.5rem;
}

.p-single-body__image {
  margin-top: 2rem;
}

.p-single-body__image img {
  border-radius: 1rem;
}

.p-single-pr__meta {
  margin-top: 1rem;
}

.p-single-pr h2.wp-block-heading {
  border-bottom: 2px solid #FFE900;
  padding-bottom: 0.25rem;
  display: inline-block;
}

.worry {
  text-align: center;
}

.p-sub-writing__title {
  margin-top: 3.125rem;
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-writing__title {
    font-size: 2.8125rem;
    margin-top: 8.5rem;
  }
}

.p-sub-mv__picture .p-sub-mv__title-en.writing-en-title {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__picture .p-sub-mv__title-en.writing-en-title {
    font-size: 2rem;
  }
}

.p-sub-mv__picture .p-sub-mv__title.writing-ja-title {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__picture .p-sub-mv__title.writing-ja-title {
    font-size: 3rem;
  }
}

.p-sub-writing__text {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-top: 4.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-writing__text {
    font-size: 2rem;
    margin-top: 7.125rem;
  }
}

.p-sub-writing__img-top img {
  max-width: 25rem;
  margin: 0 auto;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-writing__img-top img {
    margin-top: 8.125rem;
    max-width: 57.6875rem;
  }
}

.writing-arrow {
  margin-top: 3.125rem;
  margin-inline: auto;
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .writing-arrow {
    width: 11.125rem;
    margin-top: 6.25rem;
  }
}

.media-catch {
  background: #FFE900;
  border-radius: 20px;
  padding: 1.25rem 0 0 0;
  max-width: 25rem;
  margin: 40px auto;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .media-catch {
    max-width: 48.75rem;
    padding: 40px 0 0 0;
  }
}

.media-catch__top {
  text-align: center;
  padding: 0 8px 20px 8px;
}
@media screen and (min-width: 768px) {
  .media-catch__top {
    padding: 0 32px 32px 32px;
  }
}

.media-catch__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .media-catch__title {
    font-size: 2rem;
  }
}

.media-catch__bottom {
  padding: 24px;
  background: #fff;
  border-radius: 0 0 20px 20px;
  border: 3px solid #FFE900;
  border-top: none;
  padding: 2rem 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .media-catch__bottom {
    padding: 32px;
  }
}

.media-catch__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .media-catch__flex {
    flex-direction: row;
    max-width: 37.5rem;
    margin-inline: auto;
  }
}

.media-catch__list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px 0;
}
.media-catch__list li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 12px;
  font-size: 1rem;
  text-align: left;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .media-catch__list li {
    font-size: 1.125rem;
  }
}

.media-catch__list li::before {
  content: "✔";
  color: #232323;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1em;
}

.media-catch__desc {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0.75rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .media-catch__desc {
    font-size: 1.125rem;
  }
}

.schedule {
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .schedule {
    padding-top: 8.5rem;
  }
}

.media-catch__illust img {
  width: 6.25rem;
  height: auto;
  display: block;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .media-catch__illust img {
    margin-bottom: 1.875rem;
    width: 7.5rem;
  }
}

.p-schedule__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-schedule__container {
    flex-direction: row;
    gap: 40px;
  }
}

.p-schedule__block {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  width: 100%;
  max-width: 400px;
  padding: 24px 20px 20px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-schedule__block {
    width: calc(50% - 20px);
    max-width: none;
  }
}

.p-schedule__list-content {
  margin-top: 0.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-schedule__list-content {
    margin-top: 1.5rem;
  }
}

.p-schedule__header {
  background: #FFE900;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  width: 18.75rem;
  max-width: 100%;
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-schedule__header {
    font-size: 1.5rem;
  }
}

.p-schedule__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-inline: auto;
  border-bottom: 2px solid #FFE900;
  padding-bottom: 0.75rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-schedule__title {
    font-size: 1.25rem;
  }
}

.p-schedule__list li {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-schedule__list li {
    font-size: 1rem;
  }
}

.p-schedule__list-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-schedule__list-title {
    font-size: 1.125rem;
  }
}

.p-schedule__list-title2 {
  margin-top: 1.5rem;
}

.p-sub-strengths__title-en {
  position: relative;
}

.p-sub-strengths__title-en::before {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.125rem;
  height: 0.125rem;
  background-color: #4b4b4b;
}

.sub-strengths {
  background: #FFE900;
  padding-block: 5rem;
  margin-top: 4.375rem;
  border-radius: 0 0 3.125rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .sub-strengths {
    padding-block: 4.375rem;
    border-radius: 0 0 11.25rem 11.25rem;
    margin-top: 4.375rem;
  }
}

.p-sub-strengths__title-header.c-section__title-header {
  margin-top: 0;
}

.sub-strengths__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .sub-strengths__items {
    flex-direction: row;
    gap: 40px;
  }
}

.sub-strengths__item {
  background: #fff;
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 2.5rem 3.75rem;
}

.sub-strengths__item::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 20px solid #FFE900;
  border-right: 20px solid transparent;
  border-bottom: none;
  border-left: none;
  position: absolute;
  top: 20px;
  left: 20px;
}

.sub-strengths__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-strengths__item-title {
    font-size: 1.375rem;
  }
}

.sub-strengths__item-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .sub-strengths__item-desc {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.p-sub-plan__title-en {
  position: relative;
}

.p-sub-plan__title-en::before {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.125rem;
  height: 0.125rem;
  background-color: #4b4b4b;
}

.sub-plan {
  background: #FFE900;
  padding-top: 5rem;
  padding-bottom: 5.625rem;
  margin-top: 4.375rem;
  border-radius: 0 0 3.125rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .sub-plan {
    padding-top: 4.375rem;
    padding-bottom: 8.75rem;
    border-radius: 0 0 11.25rem 11.25rem;
    margin-top: 4.375rem;
  }
}

.p-sub-plan__title-header.c-section__title-header {
  margin-top: 0;
}

.sub-plan__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .sub-plan__items {
    flex-direction: row;
    gap: 3rem;
    margin-top: 7rem;
  }
}

.sub-plan__item {
  background: #fff;
  position: relative;
  width: 100%;
  max-width: 300px;
  padding: 2.5rem 1.25rem 1.25rem;
  border-radius: 1.25rem;
  text-align: center;
}
.sub-plan__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .sub-plan__item-title {
    font-size: 1.5rem;
  }
}

.sub-plan__item-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.75rem;
  font-weight: 500;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .sub-plan__item-desc {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.sub-plan__item-desc li:not(:first-child) {
  margin-top: 0.75rem;
}

.sub-plan__item-desc.last-desc li:not(:first-child) {
  margin-top: 0.25rem;
}

.sub-plan__item-bottom {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  background: #FFE900;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .sub-plan__item-bottom {
    font-size: 1rem;
  }
}

.sub-plan__item-bottom span {
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 0.75rem;
}

.sub-plan__item-price {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-top: 0.75rem;
  color: red;
}
@media screen and (min-width: 768px) {
  .sub-plan__item-price {
    font-size: 1.75rem;
  }
}

.sub-plan__item-price span {
  font-size: 0.875rem;
  font-weight: 400;
}

.sub-plan__item-price-small {
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 0.75rem;
}

.sub-plan__item-feature {
  transform: scale(1.07);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid #f44336;
  z-index: 1;
  padding-top: 0;
}

.sub-plan__item-copy-feature {
  position: relative;
  top: -1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  background: #FFE900;
  color: red;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  white-space: nowrap;
  border: 2px solid #f44336;
}
@media screen and (min-width: 768px) {
  .sub-plan__item-copy-feature {
    font-size: 1rem;
  }
}

.plan1 {
  max-width: 100%;
  margin-inline: auto;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .plan1 {
    max-width: 61.375rem;
  }
}

.plan2 {
  margin-inline: auto;
  max-width: 26.25rem;
  margin-top: 1.5rem;
}

.plan3 {
  margin-inline: auto;
  max-width: 50rem;
  margin-top: 1.5rem;
}

.plan4 {
  margin-inline: auto;
  max-width: 61.25rem;
  margin-top: 1.5rem;
}

.plan5 {
  margin-inline: auto;
  max-width: 56.25rem;
  margin-top: 1.5rem;
}

.plan6 {
  margin-inline: auto;
  max-width: 61.25rem;
  margin-top: 1.5rem;
}

.plan7 {
  margin-inline: auto;
  max-width: 61.25rem;
  margin-top: 1.5rem;
}

.plan8 {
  margin-inline: auto;
  max-width: 56.25rem;
  margin-top: 1.5rem;
}

.plan9 {
  margin-inline: auto;
  max-width: 51.5rem;
  margin-top: 1.5rem;
}

.plan10 {
  margin-inline: auto;
  max-width: 62.5rem;
  margin-top: 1.5rem;
}

.plan11 {
  margin-inline: auto;
  max-width: 62.5rem;
  margin-top: 1.5rem;
}

.plan12 {
  margin-inline: auto;
  max-width: 61.25rem;
  margin-top: 1.5rem;
}

.other__plan-single {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .other__plan-single {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

.other__plan-single-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2.5rem;
  color: #87CEEB;
}
@media screen and (min-width: 768px) {
  .other__plan-single-title {
    font-size: 1.5rem;
    margin-top: 3rem;
  }
}

.other__plan-single-title1 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2.5rem;
  color: #f05d67;
}
@media screen and (min-width: 768px) {
  .other__plan-single-title1 {
    font-size: 1.5rem;
  }
}

.sub-plan__item.month-plan {
  border: 2px solid #FFE900;
  border-radius: 1.25rem;
  padding: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .sub-plan__item.month-plan {
    margin-inline: initial;
  }
}

.month__plan-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .month__plan-list {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.sub-plan__item-bottom.month-plan-bottom {
  background: #fffee1;
}

.month-plan-bottom-small {
  font-size: 0.75rem;
  color: #f05d67;
}

.sub-plan__item-single {
  border: 1px solid #87CEEB;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .sub-plan__item-single {
    flex-direction: row;
  }
}

.other-img {
  aspect-ratio: 72/74;
  max-width: 4.5rem;
}

.plan9 {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .plan9 {
    margin-top: 2.5rem;
  }
}

.media-title {
  position: relative;
}

.media-title::before {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.125rem;
  height: 0.125rem;
  background-color: #FFE900;
}

.media__scroll {
  overflow-x: scroll;
}

.plan10, .plan11 {
  width: 62.5rem;
}

.p-cta {
  margin-top: 3.125rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-cta {
    margin-top: 6.25rem;
  }
}

.post-type-archive .p-cta {
  background-color: #FFFDE2;
  margin-top: 0;
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .post-type-archive .p-cta {
    padding-top: 0rem;
  }
}

.p-cta__container {
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-cta__container {
    max-width: 70rem;
    margin-inline: auto;
    padding-top: 2.375rem;
    padding-bottom: 2.8125rem;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
  }
}

.post-type-archive .p-cta__container {
  background: #fff;
  margin: 0 calc(50% - 50vw);
  padding: 4.375rem calc(50vw - 50%);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .post-type-archive .p-cta__container {
    position: relative;
    bottom: -10.625rem;
    margin: 0 auto;
    padding: 2.375rem 0 2.8125rem;
    width: 70rem;
    max-width: 100%;
  }
}

.p-cta__title {
  font-size: 1.625rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-cta__title {
    font-size: 1.8125rem;
  }
}

.p-cta__text {
  font-weight: 700;
  margin-top: 0.9375rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-cta__text {
    margin-top: 0.75rem;
  }
}

.p-cta__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5625rem;
  align-items: center;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-cta__wrap {
    margin-top: 1.75rem;
    flex-direction: row;
    gap: 2.5rem;
  }
}

.cta-btn {
  width: 21.875rem;
  height: 6.25rem;
  color: #4b4b4b;
  font-size: 1.6875rem;
  font-weight: 700;
  display: grid;
  place-content: center;
  border-radius: 20px;
  transition: all 0.3s;
}
.p-header__document-btn {
  width: 21.875rem;
  height: 6.25rem;
  color: #fff;
  font-size: 1.6875rem;
  font-weight: 700;
  display: grid;
  place-content: center;
  border-radius: 20px;
  transition: all 0.3s;
  background-color: #4b4b4b;
}

#open02:hover {
  background-color: #fff;
  border: 2px solid #FFE900;
  color: #FFE900;
}

.p-cta-btn {
  background-color: #FFE900;
}

.cta-btn.p-document-btn:hover {
  background-color: #fff;
  border: 2px solid #FFE900;
  color: #FFE900;
}

.cta-btn.p-cta-btn:hover {
  background-color: #fff;
  border: 2px solid #FFE900;
  color: #FFE900;
}

.p-news {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-news {
    margin-top: 5rem;
  }
}

.p-news__inner {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    max-width: 64.375rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.p-news__item-inner {
  padding-bottom: 1.25rem;
  margin-top: 1.25rem;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 768px) {
  .p-news__item-inner {
    display: flex;
    gap: 1.375rem;
  }
}

.p-news__item-inner:not(:first-child) {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-news__item-inner:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.p-news__contents {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-news__contents {
    display: flex;
    gap: 6.25rem;
  }
}

.p-news__content {
  line-height: 1.5;
}

.p-news__title {
  position: relative;
  display: inline-block;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-news__title {
    font-size: 1.25rem;
  }
}

.p-news__title::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  width: 3.125rem;
  height: 2px;
  background: #FFE900;
}

.p-news__ja-title {
  font-weight: 700;
  line-height: 1.3;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .p-news__ja-title {
    font-size: 3rem;
  }
}

.p-news__items {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-news__items {
    margin-top: 0;
  }
}

.p-news-content__date {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-news-content__title {
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-news-content__title {
    margin-top: 0rem;
    font-size: 1.125rem;
  }
}

.p-news-content__excerpt {
  font-weight: 400;
  font-size: 0.875rem;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-news-content__excerpt {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
  }
}

.p-about {
  padding-top: 1.875rem;
  padding-bottom: 3.75rem;
  background-color: #FFFDE2;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-top: 9.375rem;
    padding-bottom: 6.25rem;
  }
}

.p-about__inner {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    max-width: 77.5rem;
    margin-inline: auto;
  }
}

.p-about__heading {
  text-align: center;
}

.c-more-btn.p-about__btn {
  margin-top: 1.5rem;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-more-btn.p-about__btn {
    margin-top: 2rem;
  }
}

.p-about__wrap {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3%;
    margin-top: 2.5rem;
  }
}

.p-about__text {
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    font-size: 1.125rem;
  }
}

.p-about__left {
  margin-top: 2.5rem;
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .p-about__left {
    margin-top: 0;
    width: 40%;
  }
}

.p-about__left iframe {
  border-radius: 1.25rem;
}

.p-service-swiper {
  position: relative;
}

.p-service-swiper .swiper-slide {
  width: 21.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-swiper .swiper-slide {
    width: 43.75rem;
  }
}

.p-service-swiper .swiper-slide img {
  width: 21.5rem;
  height: 14.875rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-service-swiper .swiper-slide img {
    height: 25rem;
  }
}

.p-service-swiper .swiper-pagination {
  bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-service-swiper .swiper-pagination {
    bottom: 2.5rem;
  }
}

.p-service-swiper .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #0E1D3A;
  background: #fff;
}

.p-service-swiper__button-wrap {
  display: flex;
  justify-content: center;
}

.p-service-swiper__button-wrap .swiper-button-prev,
.p-service-swiper__button-wrap .swiper-button-next {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff9ee;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-service-swiper__button-wrap .swiper-button-prev,
.p-service-swiper__button-wrap .swiper-button-next {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.p-service-swiper__button-wrap .swiper-button-next {
  margin-left: 6.25rem;
}

.p-service-swiper__button-wrap .swiper-button-prev::before,
.p-service-swiper__button-wrap .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.1875rem solid #0E1D3A;
  border-right: 0.1875rem solid #0E1D3A;
}
@media screen and (min-width: 768px) {
  .p-service-swiper__button-wrap .swiper-button-prev::before,
.p-service-swiper__button-wrap .swiper-button-next::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-service-swiper__button-wrap .swiper-button-prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.p-service-swiper__button-wrap .swiper-button-next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.swiper-button-prev:after {
  display: none;
}

.swiper-button-next:after {
  display: none;
}

.p-footer {
  margin-top: 6.25rem;
  background-color: #F0EEE4;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-footer {
    margin-top: -10.625rem;
    padding-top: 18.75rem;
    text-align: left;
  }
}

.post-type-archive .p-footer {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .post-type-archive .p-footer {
    padding-top: 26.875rem;
  }
}

.page-id-50 .p-footer {
  padding-top: 3.75rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .page-id-50 .p-footer {
    padding-top: 7.5rem;
  }
}

.page-id-52 .p-footer {
  padding-top: 3.75rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .page-id-52 .p-footer {
    padding-top: 7.5rem;
  }
}

.page-id-510 .p-footer {
  padding-top: 3.75rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .page-id-510 .p-footer {
    padding-top: 7.5rem;
    margin-top: 12.5rem;
  }
}

.p-footer__inner {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    max-width: 78.125rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__wrap {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
  }
}

.p-footer__logo img {
  width: 15.25rem;
}

.p-footer__sns-logo {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns-logo {
    margin-top: 5.5rem;
    padding-left: 1.25rem;
  }
}

.p-footer__sns-logo img {
  width: 2.5rem;
}

.p-footer__privacy-policy {
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid #707070;
  margin-top: 3.75rem;
  display: inline-block;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__privacy-policy {
    margin-top: 1.875rem;
  }
}

.p-footer__copyright {
  margin-top: 2.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.p-footer__nav-wrap {
  text-align: left;
  padding-left: 1.25rem;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-wrap {
    padding-left: 3.125rem;
    margin-top: 0;
    display: flex;
    gap: 8.125rem;
  }
}

.footer-nav__big {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer-nav__big {
    font-size: 1.125rem;
    font-size: 1.25rem;
  }
}

.footer-nav__big::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  top: 50%;
  transform: translateY(-50%);
  left: -0.875rem;
  border-radius: 50%;
  background-color: #4b4b4b;
}

.footer-nav__small {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .footer-nav__small {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .footer-nav__margin {
    margin-top: 0rem;
  }
}

.p-archive-home {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-archive-home {
    margin-top: 5rem;
  }
}

.p-archive-home__item {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  font-size: 0.875rem;
  border-bottom: 1px solid #999;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-archive-home__item {
    display: flex;
    gap: 4.375rem;
  }
}

.p-archive-home__item::first-child {
  border-top: 1px solid #999;
}

.p-home-content__meta {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-home-content__meta {
    font-size: 0.9375rem;
  }
}

.p-home-content__title {
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-home-content__title {
    font-size: 1.125rem;
  }
}

.p-home-content__excerpt {
  font-size: 0.875rem;
  margin-top: 0.625rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-home-content__excerpt {
    font-size: 0.9375rem;
    line-height: 1;
  }
}

.p-privacy__container {
  margin-top: 6.875rem;
  margin-bottom: 6.875rem;
  line-height: 1.5;
}

.p-privacy__inner {
  margin-inline: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__inner {
    max-width: 62.5rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.p-privacy__inner h2 {
  font-size: 1.25rem;
  margin: 2em 0 0.5em;
}

.p-page-contact {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-page-contact {
    margin-top: 6.875rem;
    margin-bottom: 6.875rem;
  }
}

.p-page-contact__inner {
  margin-inline: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-page-contact__inner {
    max-width: 62.5rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.p-sub-contact-header {
  text-align: center;
}

.p-sub-contact-header-text {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-sub-contact-header-text {
    font-size: 1.5625rem;
    text-align: center;
  }
}

.p-sub-contact__text {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 1.25rem;
  line-height: 1.5;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__text {
    text-align: center;
  }
}

.p-sub-contact__recapture {
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__recapture {
    margin-top: 3rem;
  }
}

.p-page-contact__content {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-page-contact__content {
    margin-top: 6.25rem;
  }
}

.p-contact__text-block {
  margin-top: 1.875rem;
  text-align: center;
}

.p-contact__btn {
  margin-top: 1.875rem;
  text-align: center;
}

.p-contact__text {
  text-align: center;
  padding: 0.875rem;
  font-weight: 300;
}

.p-form__item.last-item {
  align-items: flex-start;
}

.p-form__item:nth-child(n+2) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-form__item:nth-child(n+2) {
    margin-top: 3.125rem;
  }
}

.p-form__item dt {
  font-size: 0.9375rem;
  font-weight: 600;
}

.p-form__item dt span {
  font-size: 0.625rem;
  font-weight: 600;
  background-color: #FFE900;
  padding: 0.25rem 0.5rem;
  margin-right: 0.875rem;
}

.p-form__item dt span.p-form__span {
  color: #4b4b4b;
  background-color: #fff;
  border: solid 1px #4b4b4b;
}

@media screen and (min-width: 768px) {
  .last-dt {
    margin-top: 0.5rem;
  }
}

.p-form__item dd {
  width: 100%;
}

.p-form__item input[type=text],
.p-form__item input[type=tel],
.p-form__item input[type=email] {
  width: 100%;
  background-color: #f4f4f4;
  border-radius: 4px;
  margin-top: 1rem;
  padding: 1.125rem 1.25rem;
  font-size: 0.9375rem;
}

.p-form__item input[type=text]::-moz-placeholder, .p-form__item input[type=tel]::-moz-placeholder, .p-form__item input[type=email]::-moz-placeholder {
  color: #bcbcbc;
}

.p-form__item input[type=text]::placeholder,
.p-form__item input[type=tel]::placeholder,
.p-form__item input[type=email]::placeholder {
  color: #bcbcbc;
}

.p-form__item textarea {
  background-color: #f4f4f4;
  border-radius: 4px;
  margin-top: 1rem;
  padding: 1.125rem 1.25rem;
  font-size: 0.9375rem;
  width: 100%;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background-color: #f4f4f4;
  border-radius: 4px;
  margin-top: 1rem;
  padding: 1.125rem 1.25rem;
  font-size: 0.9375rem;
}

select::-moz-placeholder {
  color: #bcbcbc;
}

select::placeholder {
  color: #bcbcbc;
}

select option {
  color: #4b4b4b;
  background-color: #fff;
}

input[type=submit] {
  border-radius: 20px;
  color: #fff;
  background: #4d4d4d;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18.75rem;
  font-size: 1.125rem;
  margin-top: 3.125rem;
  margin-inline: auto;
  height: 4.375rem;
  cursor: not-allowed;
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  input[type=submit] {
    width: 31.25rem;
    border: none;
  }
}
input[type=submit]:disabled {
  background: #ddd;
}
input[type=submit]:not(:disabled) {
  background: #4d4d4d;
  color: #fff;
  cursor: pointer;
}

.p-form__btn {
  margin-top: 2.5rem;
  text-align: center;
}

.wpcf7-list-item {
  margin-left: 0;
}

.agree p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.125rem;
}

#agree {
  margin-right: 0.5rem;
}

.agree span {
  color: #1f87af;
  text-decoration: underline;
}

.agree {
  font-size: 1rem;
  font-weight: 500;
}

.p-form__item.u-first-item {
  margin-top: 0;
}

.p-page-thanks__inner.l-inner {
  text-align: center;
}

.p-page-thanks-img {
  margin-top: 2.5rem;
  width: 8.75rem;
  height: 8.75rem;
  display: inline-block;
}

.p-page-thanks__title {
  font-size: 1.5625rem;
  font-weight: 600;
  margin-top: 2.25rem;
}

.p-page-thanks__text {
  margin-top: 1.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 2;
  text-align: left;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-page-thanks__text {
    margin-bottom: 0rem;
    text-align: center;
  }
}

.p-page-thanks__text.p-page-thanks-document-text {
  margin-bottom: 1rem;
  text-align: center;
}

.page-id-593 .p-footer {
  padding-top: 3.75rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .page-id-593 .p-footer {
    padding-top: 7.5rem;
    margin-top: 12.5rem;
  }
}

.p-thanks-document-btn {
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-thanks-document-btn {
    margin-bottom: 6.25rem;
  }
}

.p-concept {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-concept {
    margin-top: 5rem;
  }
}

.p-concept__inner.l-inner {
  max-width: 65rem;
  overflow: hidden;
}

.p-concept__title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-concept__title {
    font-size: 3.75rem;
  }
}

.p-concept__title::after {
  position: absolute;
  content: "";
  background-image: url(./../images/sub-about01.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 23.75rem;
  height: 4.625rem;
  top: 50%;
  transform: translateY(-50%);
  left: 120%;
}

.p-concept__wrap {
  display: flex;
  position: relative;
  margin-top: 3.75rem;
}

.p-concept__left-item {
  display: inline-block;
  transform: rotate(-90deg);
  transform-origin: left top;
  position: absolute;
  top: 11.875rem;
  left: -5rem;
}

.p-concept__left-item-inner span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #FFE900;
  display: inline-block;
  margin-left: 0.625rem;
}
.p-concept__left-item-inner span.color-yellow {
  background-color: #FFF352;
}
.p-concept__left-item-inner span.color-blue {
  background-color: #87CEEB;
}

.p-concept__left-item-inner-text {
  display: inline-block;
  margin-left: 1.75rem;
  color: #FFE900;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
}

.p-concept__text {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-concept__text {
    font-size: 1.125rem;
  }
}

.p-concept__text-2 {
  margin-top: 2rem;
  font-size: 1.125rem;
  line-height: 2;
}

.p-value {
  padding-top: 12.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-value {
    padding-top: 25rem;
  }
}

.p-value::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 11.875rem;
  height: 9.6875rem;
  background-image: url(./../images/about-back01.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-value::before {
    width: 23.75rem;
    height: 19.0625rem;
    top: 2%;
  }
}

.p-value__ja-text {
  color: #fff;
  position: relative;
}

.p-value-section__header {
  padding-top: 2.8125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-value-section__header {
    padding-top: 5.625rem;
    text-align: left;
  }
}

.p-value__title-header {
  position: relative;
}

.p-value__title-header:before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(./../images/sub-about02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4rem;
  height: 4.375rem;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-value__title-header:before {
    margin-top: 0.625rem;
    top: -10rem;
    width: 8rem;
    height: 8.75rem;
  }
}

.p-value__container {
  max-width: 50rem;
  margin-inline: auto;
}

.value-items {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .value-items {
    margin-top: 3.125rem;
  }
}

.value-item {
  margin-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .value-item {
    margin-bottom: 5rem;
    padding-left: 0;
  }
}

.value__text-box {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .value__text-box {
    margin-left: 6.6875rem;
  }
}

.p-value-number__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 2px solid #cbcbcb;
  padding-bottom: 0.625rem;
}

.value-number {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #FFF352;
}
@media screen and (min-width: 768px) {
  .value-number {
    font-size: 3.125rem;
  }
}

.value-number-title {
  line-height: 1.5;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .value-number-title {
    font-size: 1.875rem;
  }
}

.value-description-title {
  position: relative;
  font-size: 1.4375rem;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Kumbh Sans", sans-serif;
  color: #FFE900;
}

.value-description-title::after {
  content: "";
  position: absolute;
  left: -1.625rem;
  top: 55%;
  transform: translateY(-50%);
  width: 0.6875rem;
  height: 0.6875rem;
  background-color: #FFE900;
  border-radius: 50%;
}

.value-description {
  margin-top: 1rem;
  font-weight: 500;
  line-height: 2;
}

.p-value__text {
  font-size: 1rem;
  text-align: center;
  margin-top: 2.5rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-value__text {
    font-size: 1.125rem;
    margin-top: 4.375rem;
  }
}

.p-overview {
  padding-top: 6.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-overview {
    padding-top: 12.5rem;
  }
}

.p-overview::before {
  content: "";
  position: absolute;
  top: -6.875rem;
  left: 0;
  width: 100%;
  background-image: url(./../images/about-back02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 13rem;
  height: 13rem;
}
@media screen and (min-width: 768px) {
  .p-overview::before {
    width: 26.1875rem;
    height: 26.1875rem;
    top: -6.875rem;
  }
}

.p-overview__title-header {
  position: relative;
}

.p-overview__title-header:before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url(./../images/sub-value02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 5.75rem;
  height: 6.125rem;
  top: -6.875rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-overview__title-header:before {
    top: -6.875rem;
    width: 5.75rem;
    height: 6.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-overview__inner.l-inner {
    padding-left: 3.75rem;
  }
}

.p-overview__contents {
  position: relative;
  margin-top: -3.75rem;
  padding-top: 5rem;
}

.p-overview__title::first-letter {
  color: #FFE900;
}

.p-company__profile {
  margin-top: 4.125rem;
}

.p-company-profile__list {
  font-weight: 600;
  padding-bottom: 0.9375rem;
  display: flex;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  border-bottom: 2px solid #cbcbcb;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-company-profile__list {
    padding-bottom: 1.5625rem;
    font-size: 1.125rem;
    width: 75%;
  }
}

.p-company-profile__list + .p-company-profile__list {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-company-profile__list + .p-company-profile__list {
    margin-top: 1.5625rem;
  }
}

.p-company-profile__term {
  max-width: 7.5rem;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-company-profile__term {
    max-width: 15rem;
  }
}

.p-overview {
  position: relative;
}

.p-service {
  padding-block: 5rem;
  background-color: #FFE900;
}

.p-service__title-header.c-section__title-header {
  margin-top: 0;
}

.p-service__slick {
  width: 100%;
  margin: 0 auto;
}

.p-service-slick__img {
  width: 100%;
  padding: 0 0.625rem;
}
.p-service-slick__img iframe {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service__text {
  font-size: 1rem;
  text-align: center;
  margin-top: 2.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-service__text {
    font-size: 1.125rem;
  }
}

.p-reason {
  padding-block: 5rem;
}

.p-reason__inner.l-inner {
  max-width: 61.25rem;
  margin-inline: auto;
}

.p-reason__items {
  margin-top: 3.5rem;
}

.p-reason__title-header.c-section__title-header {
  margin-top: 0.875rem;
}

.p-reason__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid #4b4b4b;
}

.p-reason__item:first-child {
  border-top: 1px solid #4b4b4b;
}

.p-reason__item-number {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-reason__item-number {
    font-size: 2.5rem;
  }
}

.p-reason__item-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-reason__item-text {
    font-size: 1.25rem;
  }
}

.p-reason__item .text-1,
.p-reason__item .text-2 {
  transition: all 0.3s ease-in-out;
}

.p-reason__item .text-2 {
  display: none;
}

.p-reason__item:hover .text-1 {
  display: none;
}

.p-reason__item:hover .text-2 {
  display: block;
}

.p-reason__item .text-2 {
  color: #E4AA24;
}

.c-btn__flex.p-reason__btn-flex {
  justify-content: center;
}

.p-voice {
  padding-block: 6.25rem;
  padding-top: 7.5rem;
  position: relative;
  background-color: #FFFDE2;
}

.p-voice::before {
  content: "CUSTOMER REVIEWS";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 3.3125rem;
  font-weight: 700;
  color: #FFF7C0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-voice::before {
    font-size: 6.625rem;
    top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .p-voice__inner.l-inner {
    max-width: 93.75rem;
  }
}

.p-service-slick {
  position: relative;
  margin-top: 4rem;
}

.p-service-slick.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.p-service-slick__img {
  transform: scale(0.7);
  transition: 1s;
}

.p-service-slick__img.slick-center {
  transform: scale(1);
}

.p-service-slick__img iframe {
  width: 100%;
  aspect-ratio: 300/180;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}

.p-service-slick__arrow {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: #4b4b4b;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-service-slick__arrow {
    width: 3.75rem;
    height: 3.75rem;
  }
}

.p-service-slick__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.1875rem solid #fff;
  border-right: 0.1875rem solid #fff;
}
@media screen and (min-width: 768px) {
  .p-service-slick__arrow::before {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}

.p-service-slick__arrow.p-service-slick__arrow--prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.p-service-slick__arrow.p-service-slick__arrow--next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-service-slick__arrow--next.js-service-slick-arrow-next {
  position: absolute;
  top: 45%;
  right: 7%;
}

.p-service-slick__arrow--prev.js-service-slick-arrow-prev {
  position: absolute;
  top: 45%;
  left: 7%;
}

.p-service-slick__title {
  margin-top: 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-service-slick__title {
    font-size: 1rem;
  }
}

.p-service-slick__text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-service-slick__text {
    font-size: 1rem;
  }
}

.p-blog {
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .p-blog {
    padding-block: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-blog__inner.l-inner {
    max-width: 64.375rem;
  }
}

.p-blog__img {
  width: 21.25rem;
  border-radius: 1.875rem 1.875rem 0 0;
}

.c-more-btn.p-blog__btn {
  max-width: 20.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-more-btn.p-blog__btn {
    max-width: initial;
  }
}

.c-more-btn__text {
  white-space: nowrap;
}

.c-btn__flex.blog-flex {
  justify-content: flex-end;
}

.p-blog__item {
  border-radius: 1.875rem;
  display: flex;
  justify-content: center;
}

.p-blog__item:first-child {
  padding-top: 5rem;
}
.p-blog__item:nth-child(n+2) {
  margin-top: 2.5rem;
}
.p-blog__item-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .p-blog__item-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2.375rem;
  }
}

.p-blog__thumbnail {
  width: 20.625rem;
  border-radius: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-blog__thumbnail {
    width: 15rem;
    height: 7.5rem;
  }
}

.p-blog__thumbnail img {
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-blog__thumbnail img {
    width: 100%;
  }
}

.p-blog__content {
  width: 100%;
  max-width: 20.625rem;
}
@media screen and (min-width: 768px) {
  .p-blog__content {
    flex-grow: 1;
    max-width: 100%;
  }
}

.p-blog-content__date {
  display: inline-block;
  font-size: 0.875rem;
  color: #5f5f5f;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-blog-content__date {
    font-size: 0.9375rem;
  }
}

.p-blog-content__category {
  display: inline-block;
  color: #fff;
  font-size: 0.8125rem;
  background-color: #4b4b4b;
  border-radius: 0.625rem;
  padding: 0.3125rem 0.625rem;
  margin-left: 0.625rem;
}

.p-blog-content__title {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-blog-content__title {
    margin-top: 0.625rem;
    font-size: 1.125rem;
  }
}

.p-blog-content__excerpt {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-blog-content__excerpt {
    font-weight: 500;
    font-size: 0.9375rem;
    margin-top: 0.625rem;
  }
}

.p-sub-mv {
  position: relative;
  height: 15rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-mv {
    height: 21.25rem;
  }
}

.p-sub-mv__picture.p-sub-mv__about {
  background-image: url(./../images/sub-company.jpeg);
  width: 100%;
  height: 100%;
}

.p-sub-mv_background-color {
  background-color: #F0EEE4;
  height: inherit;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv_background-color {
    padding-top: 6.25rem;
  }
}

.p-sub-mv__picture::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: brightness(30%);
  /* 最背面へ */
  z-index: -1;
  top: 0;
  left: 0;
}

.p-sub-mv__inner {
  height: inherit;
}

.p-sub-mv_background-color.back__blue {
  background-color: rgba(135, 206, 235, 0.4);
}
.p-sub-mv_background-color .p-sub-mv__accent {
  padding-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv_background-color .p-sub-mv__accent {
    padding-top: 5rem;
  }
}
.p-sub-mv_background-color .p-sub-mv__accent span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #87CEEB;
  display: inline-block;
}
.p-sub-mv_background-color .p-sub-mv__accent span.p-sub-mv__accent-color-pink {
  background-color: #FFE900;
  margin-left: 0.625rem;
}
.p-sub-mv_background-color .p-sub-mv__accent span.p-sub-mv__accent-color-yellow {
  background-color: #FFF352;
  margin-left: 0.625rem;
}
.p-sub-mv_background-color .p-sub-mv__title-en {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-top: 1.25rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-sub-mv_background-color .p-sub-mv__title-en {
    font-size: 4.375rem;
  }
}
.p-sub-mv_background-color .p-sub-mv__title {
  margin-top: 1rem;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-mv_background-color .p-sub-mv__title {
    font-size: 1.5625rem;
  }
}

.p-sub-mv__text {
  height: inherit;
}

.p-sub-mv__picture {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-sub-mv__picture .p-sub-mv__title-en {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__picture .p-sub-mv__title-en {
    font-size: 4.375rem;
  }
}
.p-sub-mv__picture .p-sub-mv__title {
  margin-top: 1rem;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__picture .p-sub-mv__title {
    font-size: 1.5625rem;
  }
}
.p-sub-mv__picture .p-sub-mv__img {
  height: inherit;
}
.p-sub-mv__picture .p-sub-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-mv__picture {
  background-position: center;
  background-size: cover;
  color: #fff;
  height: 21.25rem;
  position: relative;
  z-index: 0;
}

.p-sub-mv__title-en.category {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.75rem;
}

.sub-service__pack {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .sub-service__pack {
    padding-bottom: 7.5rem;
    padding-top: 5rem;
  }
}

.page-id-504 .c-breadcrumbs {
  z-index: 1;
}

.p-service-banner::after {
  content: "";
  position: absolute;
  top: -2.875rem;
  left: 0;
  width: 11.25rem;
  height: 19.5rem;
  border-radius: 0 0 9.375rem 0;
  background-color: #FFE900;
  z-index: -1;
}

.p-service-list__en-text-box {
  text-align: center;
}

.p-service-list__en-text {
  color: #FFE900;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-service-list__en-text {
    font-size: 2.25rem;
    margin-top: 8.75rem;
  }
}

.p-service-list__ja-text {
  margin-top: 1.25rem;
  padding-bottom: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-service-list__ja-text {
    margin-top: 1.5rem;
  }
}

.p-service-list__ja-text::after {
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 5.625rem;
  height: 0.125rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4b4b4b;
}
@media screen and (min-width: 768px) {
  .p-service-list__ja-text::after {
    width: 6.25rem;
    height: 0.25rem;
  }
}

.p-section__ja-title-header {
  text-align: center;
}

.p-works-list {
  display: grid;
  gap: 3.75rem 1.875rem;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-works-list {
    gap: 6.25rem 3.75rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 7.5rem;
  }
}

.p-works-list__item {
  height: 100%;
}

.p-works-list__item-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
  border-radius: 2.5rem;
}

.p-works-list__item-content {
  flex-grow: 1;
}

.p-works-list__item-meta {
  margin-top: auto;
}

.p-works-list__item-img {
  width: 100%;
}

.p-works-list__item-img img {
  width: 100%;
  aspect-ratio: 290/200;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.875rem 1.875rem 0 0;
}

.p-works-list__item-content {
  padding: 0.9375rem 1.5625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-works-list__item-content {
    padding: 1.25rem 2.25rem 1.25rem;
  }
}

.p-works-list__item-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-works-list__item-title {
    font-size: 1rem;
  }
}

.p-works-list__item-text {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-works-list__item-text {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

.p-works-list__item-title::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 55%;
  transform: translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  background-color: #FFE900;
  border-radius: 50%;
}

.p-consul-service {
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-consul-service {
    padding-top: 3.125rem;
    padding-bottom: 6.25rem;
    margin-top: 7.5rem;
  }
}

.p-consul-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF352;
  border-radius: 0 9.375rem 9.375rem 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-consul-service::before {
    width: 50%;
  }
}

.p-p-consul-service__accent {
  padding-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-p-consul-service__accent {
    padding-top: 5rem;
  }
}

.p-consul-service__contents {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-consul-service__contents {
    display: flex;
  }
}

.p-consul-service-en-title-box {
  text-align: right;
  text-transform: uppercase;
  transform-origin: left bottom;
  position: absolute;
  top: -15%;
  right: 0;
  font-size: 0.875rem;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-consul-service-en-title-box {
    transform: rotate(-90deg);
    top: 78%;
    left: 1.5625rem;
    right: unset;
  }
}

@media screen and (min-width: 768px) {
  .p-consul-service-ja-title-box {
    margin-left: 3.75rem;
  }
}

.p-consul-service-ja-title {
  line-height: 1.75;
  font-size: 1.125rem;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-consul-service-ja-title {
    font-size: 1.5rem;
    padding-left: 0;
  }
}
.p-consul-service-ja-title span {
  font-weight: 700;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-consul-service-ja-title span {
    font-size: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-consul-service__desc-box {
    margin-left: 6.25rem;
  }
}

.p-consul-service__desc-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  padding-left: 1em;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-consul-service__desc-text {
    font-size: 1.125rem;
    font-weight: 400;
    padding-left: 0;
  }
}
.p-consul-service__desc-text span {
  font-weight: 500;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-consul-service__desc-text span {
    font-size: 1.5rem;
  }
}

.p-consul-service__desc-text02 {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 2;
  padding-bottom: 0.875rem;
  padding-top: 0.875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-bottom: 1px solid #4b4b4b;
  border-top: 1px solid #4b4b4b;
  display: inline-block;
}

/*********************
ANIMATION
*********************/
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition-property: transform, opacity;
  transition-duration: 1.5s;
  transition-delay: 0s;
}

.fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}

.delay--2 {
  transition-delay: 0.3s;
}

.delay--3 {
  transition-delay: 0.6s;
}

.delay--4 {
  transition-delay: 0.9s;
}

.p-sub-reason {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-reason {
    padding-top: 5rem;
    padding-bottom: 6.25rem;
  }
}

.p-sub-reason__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-reason__item {
    flex-direction: row;
    gap: 4%;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-reason__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.p-sub-reason__item:nth-child(n+2) {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-reason__item:nth-child(n+2) {
    margin-top: 10rem;
  }
}

.p-sub-reason__point-header {
  font-size: 3.5rem;
  font-family: "Kumbh Sans", sans-serif;
  color: #FFE900;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-reason__point-header {
    font-size: 4.375rem;
  }
}

.p-sub-reason__ja-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-sub-reason__ja-title {
    font-size: 1.25rem;
  }
}

.p-sub-reason__text {
  font-weight: 500;
  line-height: 2;
  margin-top: 1.25rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-reason__text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.p-sub-reason__content-left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-reason__content-left {
    width: 53%;
  }
}

.p-sub-reason__item-right {
  position: relative;
  border-radius: 1.875rem;
  width: 100%;
  aspect-ratio: 400/324;
}
@media screen and (min-width: 768px) {
  .p-sub-reason__item-right {
    width: 40%;
  }
}

.p-sub-reason__item-right img {
  border-radius: 1.875rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.p-sub-reason__item-right::before {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 100%;
  height: 100%;
  background-color: #FFE900;
  border-radius: 1.875rem;
  z-index: -1;
}

.p-archive-voice {
  background-color: #FFFDE2;
}

.p-archive-voice__items {
  padding-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem 1.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-archive-voice__items {
    padding-top: 5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-archive-voice__item {
  gap: 0.5rem 0;
  height: 100%;
  background-color: #fff;
  max-width: 23.75rem;
  padding: 1.5625rem 1.5625rem 2rem 1.5625rem;
  border-radius: 1.875rem;
  margin-inline: auto;
  min-width: 0;
}

.p-archive-voice__thumbnail {
  aspect-ratio: 330/200;
  margin-bottom: 1.125rem;
  width: 100%;
  height: auto;
  min-width: 0;
}

.p-archive-voice__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-archive-voice__category-wrap-title {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 2px solid #4d4d4d;
  padding-bottom: 0.875rem;
  position: relative;
}

.p-archive-voice__category-wrap {
  padding-top: 7.5rem;
  background-color: #f5f5f5;
}

.p-archive-voice__category-wrap-contents {
  padding-left: 3.125rem;
  position: relative;
}

.p-archive-voice__category-wrap-contents img {
  width: 1.625rem;
  height: 1.625rem;
  position: absolute;
  top: -0.25rem;
  left: 0;
}

.single-voice__cat-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none; /* リストのデフォルトのスタイルをリセット */
  gap: 1.25rem; /* 各リストアイテム間のスペース */
  margin-top: 0.875rem;
}

.single-voice__cat-list li {
  display: grid;
  place-items: center;
  background-color: #4d4d4d;
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: 2.5rem;
}

.single-voice__cat-list li.current-cat {
  background-color: #E4AA24;
}

#open {
  background-color: #4d4d4d;
  color: #fff;
  width: inherit;
  border-radius: 1.875rem;
  transition: all 0.3s;
  width: 10rem;
  height: 3rem;
  display: grid;
  place-content: center;
  cursor: pointer;
}

#open:hover {
  background-color: #fff;
  border: 2px solid #FFE900;
  color: #FFE900;
}

#mask {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 100vh;
}

#modal {
  position: fixed;
  background: #fff;
  color: #555;
  width: 21.875rem;
  padding: 20px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999999999999;
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
}
@media screen and (min-width: 768px) {
  #modal {
    padding: 40px;
    top: 20px;
    width: 37.5rem;
    padding: 2.5rem;
    max-height: calc(100vh - 2.5rem);
  }
}

#mask.hidden {
  display: none;
}

#modal.hidden {
  display: none;
}

#modal .p-form__item:nth-child(n+2) {
  margin-top: 2rem;
}

#modal .p-form__item {
  margin-top: 1.25rem;
}

#modal input[type=submit] {
  width: 18.75rem;
}

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

#close {
  position: absolute;
  top: 10px;
  right: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-color: #4b4b4b;
  color: #fff;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #close {
    top: 30px;
  }
}

#close:before, #close:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#close:hover {
  background: #FFE900;
}

/* 初期設定 */
button {
  background: none;
}

:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

body:has(dialog[open]) {
  overflow: hidden;
}

.modal__open-btn {
  padding: 4px 20px;
  border: 1px solid #000;
}

/* モーダルのスタイル ============ */
dialog.js-show.modal__content {
  opacity: 1;
}
dialog.js-show::-webkit-backdrop {
  opacity: 1;
  /* 背景画像 */
  background: rgba(0, 0, 0, 0.7);
}
dialog.js-show::backdrop {
  opacity: 1;
  /* 背景画像 */
  background: rgba(0, 0, 0, 0.7);
}

.modal__content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
  opacity: 0;
  /* モーダル枠組みのスタイル */
  width: min(600px, 95%);
  max-height: calc(100vh - 2.5rem);
  background: #fff;
}
@media screen and (min-width: 768px) {
  .modal__content {
    max-height: calc(100vh - 2.5rem);
  }
}

.modal__body {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.modal__close-btn {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  font-size: 30px;
  background-color: #4b4b4b;
  color: #fff;
  transition: all 0.3s;
  cursor: pointer;
  width: 45px;
}

#modal2 {
  padding: 20px;
  border-radius: 4px;
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
}
@media screen and (min-width: 768px) {
  #modal2 {
    padding: 2.5rem;
    max-height: calc(100vh - 2.5rem);
  }
}

#modal-head1 {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #modal-head1 {
    font-size: 1.25rem;
  }
}

#modal__text1 {
  text-align: left;
}

.modal__open-btn {
  width: 21.875rem;
  height: 6.25rem;
  color: #fff;
  font-size: 1.6875rem;
  font-weight: 700;
  display: grid;
  place-content: center;
  border-radius: 20px;
  transition: all 0.3s;
  background-color: #4b4b4b;
}

.p-support {
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-support {
    padding-top: 6.25rem;
  }
}

.c-infinite-slider {
  margin-top: 2.5rem;
  overflow: hidden;
  position: relative;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-infinite-slider {
    margin-top: 3.75rem;
    height: 3.5rem;
  }
}

.c-infinite-slider__track {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  will-change: transform;
  -webkit-animation: c-marquee 120s linear infinite;
          animation: c-marquee 120s linear infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.c-infinite-slider__track[aria-hidden=true] {
  -webkit-animation-delay: -60s;
          animation-delay: -60s;
}

.c-infinite-slider__slide {
  flex: 0 0 auto;
}

.c-infinite-slider__slide img {
  height: 2.5rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-infinite-slider__slide img {
    height: 3.5rem;
  }
}

@-webkit-keyframes c-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes c-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (min-width: 768px) {
  .c-infinite-slider__track {
    -webkit-animation-duration: 140s;
            animation-duration: 140s;
  }
  .c-infinite-slider__track[aria-hidden=true] {
    -webkit-animation-delay: -70s;
            animation-delay: -70s;
  }
}
.p-pr {
  padding-block: 5rem;
}

.p-pr__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.75rem;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-pr__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.75rem;
  }
}

.pr-thumbnail {
  aspect-ratio: 360/200;
  overflow: hidden;
  border-radius: 1.25rem;
}
.pr-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-more-btn.p-pr__btn {
  text-align: center;
}

.p-pr-content__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.5rem;
  word-wrap: break-word;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .c-btn__flex.p-pr__btn-flex {
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .c-more-btn.p-pr__btn {
    text-align: center;
  }
}

.heading-top_img {
  width: 6.375rem;
  height: 6.9375rem;
  margin-inline: auto;
}
.heading-top_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.heading-top_img-service {
  width: 7.125rem;
  height: 5.5rem;
  margin-inline: auto;
}
.heading-top_img-service img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.heading-top_img-reason {
  width: 9.25rem;
  height: 7.6875rem;
  margin-inline: auto;
  transform: translateX(20px);
}
.heading-top_img-reason img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-support__title-header.c-section__title-header {
  margin-top: 0;
}

.wp-pagenavi {
  background-color: #fff;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  font-size: 1rem;
  padding-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    font-size: 1.125rem;
  }
}

.post-type-archive-blog .wp-pagenavi {
  background-color: #f5f5f5;
}

.post-type-archive-voice .wp-pagenavi {
  background-color: #f5f5f5;
}

.wp-pagenavi a, .wp-pagenavi span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  transition: 0.3s ease;
  background-color: #fff;
  padding: 0.25rem 0.625rem 0.375rem 0.625rem;
}

.wp-pagenavi a:hover {
  color: #fff;
  background-color: #4d4d4d;
  opacity: 1;
}

.wp-pagenavi span.current {
  color: #fff;
  background-color: #4d4d4d;
}

.wp-pagenavi .previouspostslink {
  color: #4d4d4d;
  background-color: transparent;
}

.wp-pagenavi .nextpostslink {
  color: #4d4d4d;
  background-color: transparent;
}

span.pages {
  display: none;
}

.p-voice-content__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-voice-content__title {
    height: 3em;
    font-size: 1.125rem;
  }
}

.p-archive-voice__thumbnail img {
  border-radius: 1rem;
}

.archive-pr__meta-item .meta-item__title {
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 500;
  border: 1px solid #4b4b4b;
  padding: 4px;
  border-radius: 62.4375rem;
  line-height: 1.5;
  width: 80px;
  text-align: center;
  transition: all 0.3s;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .archive-pr__meta-item .meta-item__title {
    padding: 4px 8px;
  }
}

.archive-pr__meta {
  margin-top: 0.5rem;
}

.archive-pr__meta-item {
  margin-top: 0.375rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.archive-pr__tag {
  font-size: 0.625rem;
  display: grid;
  place-items: center;
  background-color: #4686EC;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 62.4375rem;
}

.page-archive-pr__tag {
  font-size: 0.625rem;
  display: grid;
  place-items: center;
  background-color: #4686EC;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 62.4375rem;
  display: inline-block;
  margin-bottom: 0.25rem;
}

.wp-block-embed-youtube {
  margin-top: 1.5rem;
  text-align: center;
}

.voice-excerpt {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .voice-excerpt {
    margin-top: 0rem;
  }
}