@charset "UTF-8";
.anime__fadeIn {
  opacity: 0;
  translate: 0 10px;
  transition: opacity 0.9s ease, translate 0.9s ease;
}
.anime__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

.draw-svg path,
.draw-svg line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawPath 2s ease forwards;
  animation-play-state: paused;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}
/* ===================================
ページ遷移アニメーション
 =================================== */
main {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

body.loaded main {
  opacity: 1;
}

/* トップページの main.top だけは常に表示 */
main.top {
  opacity: 1 !important;
}

@media screen and (max-width: 1245px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1246 * 100vw);
  }
}
@media screen and (max-width: 389px) {
  html {
    font-size: calc(16 / 390 * 100vw);
  }
}

.l-pagination {
  width: 376px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-pagination {
    width: 100%;
  }
}

.l-pagination__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-pagination__list .prev a,
.l-pagination__list .next a {
  font-size: 1.125rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .l-pagination__list .prev a,
  .l-pagination__list .next a {
    font-size: 1rem;
  }
}
.l-pagination__list .prev a img,
.l-pagination__list .next a img {
  width: 2.1875rem;
  height: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .l-pagination__list .prev a img,
  .l-pagination__list .next a img {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.l-pagination__list .next a img {
  rotate: 180deg;
}

.l-header {
  background: rgba(255, 255, 255, 0.9);
  letter-spacing: 0;
  font-weight: bold;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 999;
}

.l-header__inner {
  width: 100%;
  padding-block: 25px;
  max-width: 1640px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding-block: 15px;
  }
}

.l-header__logo {
  width: 66px;
  flex-shrink: 0;
}

.l-header__right {
  flex: 1;
  display: flex;
  justify-content: right;
  align-items: center;
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav-list {
    display: none;
  }
}

.l-header__nav-list li a {
  display: block;
  width: 6.25rem;
  text-align: center;
  font-weight: bold;
}

.l-header__sns {
  list-style: none;
  padding: 0;
  margin-left: 2.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .l-header__sns {
    margin: 0;
    margin-right: 50px;
    gap: 10px;
  }
}

.l-header__sns li a {
  display: block;
}

.l-header__sns li a img {
  width: 25px;
  aspect-ratio: 1;
}

.drawer__icon {
  position: fixed;
  z-index: 999;
  top: 18px;
  right: 20px;
  width: 30px;
  height: 20px;
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer__icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.5s ease;
}

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

.drawer {
  position: fixed;
  z-index: 998;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100svh;
  height: 100vh;
  background: #fff;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.drawer.js-show {
  opacity: 1;
  visibility: visible;
}

.drawer__body {
  width: 100%;
  height: fit-content;
  padding-block: 80px 100px;
  padding-inline: 20px;
}

.drawer__items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.drawer__item.--2 .drawer__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer__item.--3 .drawer__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.drawer__item.--3 .item {
  font-size: 1.125rem;
}

.drawer__details {
  position: relative;
  /* プラスとマイナスの線 */
  /* 横線 */
  /* 縦線 */
}
.drawer__details::before, .drawer__details::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 6px;
  background: #000;
  transition: transform 0.3s ease-in-out;
}
.drawer__details::before {
  width: 13px;
  height: 1px;
  transform: translateY(-50%) rotate(0deg); /* 初期状態 */
}
.drawer__details::after {
  width: 1px;
  height: 13px;
  right: 12px;
  transform: translateY(-50%) rotate(0deg); /* 初期状態 */
}

/* details.is-opened の時、縦線を90度回転して横線にする */
details.is-opened::before {
  transform: translateY(-50%) rotate(180deg);
}
details.is-opened::after {
  transform: translateY(-50%) rotate(180deg);
  opacity: 0;
}

summary {
  display: block;
  font-size: 1.125rem;
}
summary::-webkit-details-marker {
  display: none;
}

.drawer__summary a,
.drawer__content li a,
.drawer__item.--3 li a {
  display: block;
  padding-left: 20px;
  position: relative;
}
.drawer__summary a::before,
.drawer__content li a::before,
.drawer__item.--3 li a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 15px;
  height: 15px;
  background: url(../img/common/footer_arrow.png) no-repeat center center/contain;
}

.drawer__content .item {
  margin-left: 20px;
}

.item__title {
  font-size: 1.5rem;
  font-weight: bold;
}

.drawer__content .item .item__title {
  font-size: 1rem;
  font-weight: bold;
}
.drawer__content .item .item__item {
  font-size: 0.875rem;
  margin-left: 0.9375rem;
}
.drawer__content .item a {
  margin-top: 3px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0;
  color: #000;
  background: #FBFBFB;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}
body.is-checked {
  overflow: hidden;
}

main {
  margin-top: 77px;
  padding-bottom: 6.25rem;
  border-top: 1px solid #000;
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 55px;
    padding-bottom: 60px;
  }
}

a {
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

button {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.c-section-title {
  font-size: 3.75rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    white-space: unset;
    font-size: 1.5625rem;
  }
}

.l-inner {
  padding-inline: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 20px;
  }
}

.l-container {
  max-width: 1246px;
  margin-left: auto;
  margin-right: auto;
}

.l-pageHead {
  padding-block: 3.125rem;
  min-height: 18.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-pageHead {
    min-height: 6.25rem;
  }
}

.c-page-title {
  font-size: 3.75rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-page-title {
    font-size: 1.5625rem;
  }
}

.c-button {
  display: block;
  width: 100%;
  font-size: 1.0625rem;
  padding: 0.8125rem;
  text-align: center;
  background: #BEBEBE;
  border-radius: 999px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: 0.875rem;
  }
}
.c-button::after {
  content: "Click the link";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #999999;
  color: #fff;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 1;
  }
  .c-button:hover::after {
    opacity: 1;
    visibility: visible;
  }
}

.c-button-type2 {
  display: block;
  width: 100%;
  font-size: 1.0625rem;
  padding: 0.8125rem;
  text-align: center;
  background: #999999;
  color: #fff;
  border-radius: 999px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-button-type2 {
    font-size: 0.875rem;
  }
}
.c-button-type2::after {
  content: "Click the link";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #999999;
  color: #000;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (any-hover: hover) {
  .c-button-type2:hover::after {
    opacity: 1;
    visibility: visible;
  }
}

.c-contact-cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: #ACACAF;
  border-radius: 999px;
  padding: 11px;
  font-size: 1.0625rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
.c-contact-cta-button.icon svg {
  width: 24px;
}
.c-contact-cta-button.text {
  display: block;
  line-height: 1.4;
}

.l-cta {
  padding-block: 3.125rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .l-cta {
    padding-block: 40px;
  }
}

.l-cta__contents {
  width: min(776px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .l-cta__contents {
    grid-template-columns: repeat(1, 1fr);
  }
}

.l-footer {
  margin-top: 4.375rem;
}

.l-footer__contents {
  display: grid;
  grid-template-columns: 13.75rem 1fr;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__contents {
    width: fit-content;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.l-footer__logo {
  width: 88px;
}

.l-footer__company {
  font-size: 0.8125rem;
}

.l-footer__company .company-name {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .l-footer__company .company-name {
    margin-top: 30px;
  }
}

.l-footer__company .company-address {
  margin-top: 32px;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .l-footer__company .company-address {
    margin-top: 0;
  }
}

.l-footer__right {
  font-size: 0.875rem;
}

.l-footer__lists {
  display: flex;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-footer__lists {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.l-footer__list.--list1 {
  width: 32.25%;
}
@media screen and (max-width: 767px) {
  .l-footer__list.--list1 {
    width: 100%;
  }
}

.l-footer__list.--list2 {
  width: 37.625%;
}
@media screen and (max-width: 767px) {
  .l-footer__list.--list2 {
    width: 100%;
  }
}

.l-footer__list.--list3 {
  width: 22.75%;
}
@media screen and (max-width: 767px) {
  .l-footer__list.--list3 {
    width: 100%;
  }
}

.l-footer__list .item a,
.l-footer__list .subItem a {
  display: block;
  padding-left: 1.25rem;
  position: relative;
}
.l-footer__list .item a::before,
.l-footer__list .subItem a::before {
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  background: url(../img/common/footer_arrow.png) no-repeat center center/contain;
}

.l-footer__list .subItem {
  margin-left: 1.25rem;
}

.l-footer__list .subItem.--mt {
  margin-top: 1.25rem;
}

.l-footer__list .subItem .subItem__item {
  margin-left: 0.625rem;
}

.l-footer__copy {
  margin-top: 5.6875rem;
  background: #a3a3a3;
  padding-block: 2.8125rem;
  border-top: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    margin-top: 60px;
    padding-block: 20px;
  }
}

.Copyright {
  text-align: center;
  font-size: 12px;
}

.p-topSection {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .p-topSection {
    padding-block: 60px;
  }
}

.p-top-twoColumn {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-twoColumn {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.p-mv {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.p-mv__movie {
  width: 100%;
  text-align: center;
}

.p-mv__movie video {
  max-width: 520px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__movie video {
    width: 100%;
    height: auto;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.p-topAbout__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "item1 item2" "item1 item3";
  column-gap: 24px;
  row-gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-topAbout__contents {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "item1" "item2" "item3";
  }
}

.p-topAbout__item {
  background: #E7E7E7;
  border-radius: 30px;
  border: 1px solid #000000;
  padding: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__item {
    padding: 1.25rem;
  }
}

.p-topAbout__item.--item1 {
  grid-area: item1;
}

.p-topAbout__item.--item2 {
  grid-area: item2;
}

.p-topAbout__item.--item3 {
  grid-area: item3;
}

.p-topAbout .lead {
  margin-top: 2.5rem;
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topAbout .lead {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

.p-topAbout .text {
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout .text {
    margin-top: 1.25rem;
  }
}

.p-topAbout__button {
  margin-top: 3.125rem;
  width: min(150px, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-topAbout__button {
    margin-top: 1.875rem;
  }
}

.p-topAbout__brandingFirm {
  margin-top: 3.125rem;
  padding-top: 6.25rem;
  border-top: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-topAbout__brandingFirm {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }
}

.p-topAbout__brandingFirm-container {
  width: min(1076px, 100%);
  margin-inline: auto;
}

.p-topService {
  background: #E7E7E7;
}

.p-topService__head {
  width: min(1076px, 100%);
  margin-inline: auto;
}

.p-topService__lead {
  margin-top: 2.5rem;
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topService__lead {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-topService__description {
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-topService__description {
    margin-top: 1.875rem;
  }
}

.p-topService__contents {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-topService__contents {
    margin-top: 1.875rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.p-topService__card {
  background: #fff;
  border-radius: 30px;
  padding: 3.4375rem 2.1875rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-topService__card {
    padding: 2.5rem 1.25rem;
  }
}

.p-topService__card .title {
  margin-top: 3.4375rem;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topService__card .title {
    margin-top: 1.25rem;
  }
}

.p-topService__card .text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-topService__card .text {
    margin-top: 1.25rem;
  }
}

.p-topService__card .button {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-topService__card .button {
    margin-top: 1.25rem;
  }
}

.p-topService__card.--card1 .icon {
  width: 3.4375rem;
  margin-inline: auto;
}

.p-topService__card.--card2 .icon {
  width: 3.3125rem;
  margin-inline: auto;
}

.p-topService__card.--card3 .icon {
  width: 3.25rem;
  margin-inline: auto;
}

.p-topNews {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-topNews {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .p-topNews__head {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-topNews__title {
    order: 1;
  }
}

.p-topNews__head .button {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__head .button {
    margin-top: 0rem;
    order: 3;
  }
}

@media screen and (max-width: 767px) {
  .p-topNews__contents {
    order: 2;
  }
}

.p-topNews__post {
  border-top: 1px solid #000;
}
.p-topNews__post:last-of-type {
  border-bottom: 1px solid #000;
}

.p-topNews__post a {
  padding: 1.875rem;
  display: grid;
  grid-template-columns: 5.1875rem 1fr;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .p-topNews__post a {
    padding: 1.25rem 0.625rem;
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.p-topNews__post .date {
  margin-top: 5px;
  font-size: 0.875rem;
}

.p-topNews__post .title {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__post .title {
    font-size: 0.875rem;
  }
}

.p-topBlog {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-topBlog {
    margin-top: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-topBlog__head {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-topNews__title {
    order: 1;
  }
}

.p-topBlog__head .button {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-topBlog__head .button {
    margin-top: 0;
    order: 3;
  }
}

.p-topBlog__contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-topBlog__contents {
    order: 2;
  }
}

.p-topBlog__post {
  border: 1px solid #000;
}

.p-topBlog__post a {
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-topBlog__post a {
    padding: 1.25rem;
    gap: 0.625rem;
  }
}

.p-topBlog__post .title {
  font-size: 1.3125rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-topBlog__post .title {
    font-size: 1rem;
  }
}

.p-topBlog__post .info {
  display: flex;
  gap: 1.5rem;
}

.p-topBlog__post .date {
  margin-top: 3px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-topBlog__post .date {
    font-size: 0.75rem;
  }
}

.p-topBlog__post .category {
  border: 1px solid #000;
  padding: 5px;
  font-size: 0.8125rem;
  width: min(15.625rem, 100%);
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topBlog__post .category {
    font-size: 0.75rem;
  }
}

.p-topBlog__post .contents {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.p-topInfo {
  background: #E7E7E7;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.p-topInfo__contents {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "company contact" "company otherbBusi" "access access";
  column-gap: 0;
  row-gap: 0;
}
@media screen and (max-width: 767px) {
  .p-topInfo__contents {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "company" "contact" "otherbBusi" "access";
  }
}

.p-topInfo__section {
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-topInfo__section {
    padding-inline: 1.25rem;
  }
}

section#company {
  grid-area: company;
  border-right: 1px solid #000;
}
@media screen and (max-width: 767px) {
  section#company {
    border-right: none;
    border-bottom: 1px solid #000;
  }
}

section#contact {
  grid-area: contact;
  border-bottom: 1px solid #000;
}

section#otherbBusi {
  grid-area: otherbBusi;
}

section#access {
  grid-area: access;
  border-top: 1px solid #000;
}

.p-topCompany__contents {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-topCompany__contents {
    gap: 0.625rem;
  }
}

.p-topCompany__item {
  display: flex;
  flex-direction: column;
  border: 1px solid #000;
}

.p-topCompany__item .heading {
  background: #BBBBBB;
  text-align: center;
  padding: 3px;
}

.p-topCompany__item .text {
  text-align: center;
  padding: 3px;
  border-top: 1px solid #000;
}

.p-topCompany__item .text.--list ul {
  width: fit-content;
  text-align: left;
  margin-inline: auto;
  line-height: 1.75;
}

.p-topContact__contents {
  margin-top: 2.5rem;
}

.p-topContact__contents .button {
  margin-top: 3.125rem;
  width: min(23.5rem, 100%);
  margin-inline: auto;
}

.p-topOtherbBusi .c-section-title {
  white-space: nowrap;
}

.p-topOtherbBusi__contents .image {
  margin-top: 3.75rem;
  width: min(12.5rem, 100%);
  margin-inline: auto;
}

.p-topOtherbBusi__contents a {
  display: block;
  margin-top: 1.5625rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
}

.p-topOtherbBusi__contents .text {
  margin-top: 2rem;
}

.p-topAccess__contents {
  margin-top: 2.5rem;
}

.map-wrap iframe {
  filter: grayscale(100%);
  width: 100%;
  height: auto;
  aspect-ratio: 1176/400;
}
@media screen and (max-width: 767px) {
  .map-wrap iframe {
    aspect-ratio: 16/9;
  }
}

.p-vmSection {
  border-bottom: 1px solid #000;
}

.p-vmSection__box {
  padding-top: 3.125rem;
  border-inline: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-vmSection__box {
    padding-top: 1.875rem;
  }
}

.p-vm-section-title {
  background: #000;
  padding-block: 25px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-vm-section-title {
    padding: 1.25rem;
    font-size: 1.125rem;
  }
}

.p-vmSection__contents p {
  line-height: 1.8;
}
.p-vmSection__contents p + p {
  margin-top: 1.25rem;
}

.p-vmVision__contents {
  padding: 3.125rem;
  display: grid;
  grid-template-columns: 1fr 39.219330855%;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-vmVision__contents {
    padding: 1.875rem 1.25rem;
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.p-vmMission__contents {
  padding: 3.125rem;
  display: grid;
  grid-template-columns: 56.1338289963% 1fr;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-vmMission__contents {
    padding: 1.875rem 1.25rem;
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.p-vmFuture__contents {
  padding: 3.125rem;
  display: grid;
  grid-template-columns: 56.1338289963% 1fr;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-vmFuture__contents {
    padding: 1.875rem 1.25rem;
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.p-wbfSection {
  padding-block: 3.125rem;
  position: relative;
}
.p-wbfSection::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-image: radial-gradient(#000000 2px, transparent 2px);
  background-size: 7px 7px;
  background-repeat: repeat-x;
}

.p-wbfSection-heading {
  text-align: center;
}

.p-wbfSection-title {
  font-size: 2.5rem;
  font-weight: bold;
  /* wbrで改行 */
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .p-wbfSection-title {
    font-size: 1.5625rem;
  }
}

.p-wbfSection-subtitle {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-wbfSection-subtitle {
    font-size: 1rem;
  }
}

.p-wbf__subtitle {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.875rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-wbf__subtitle {
    font-size: 1rem;
  }
}

.p-wbfPhilosophy {
  padding-block: 50px 58px;
}

.p-wbfPhilosophy__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-wbfPhilosophy__contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

.p-wbfDefinition__contents {
  margin-top: 3.5625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-wbfDefinition__contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 7.5rem;
  }
}

.p-wbfDefinition__item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.batsu {
  display: block;
  position: absolute;
  top: 4.375rem;
  right: -3.5rem;
  width: 5.625rem;
  height: 5.625rem;
}
@media screen and (max-width: 767px) {
  .batsu {
    top: unset;
    bottom: -6.5625rem;
    right: 50%;
    transform: translateX(50%);
  }
}
.batsu::before, .batsu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 130%; /* 棒の高さ */
  background: #333;
  border-radius: 999px;
}
.batsu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.batsu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-wbfDefinition__item .head {
  width: 14.6875rem;
  margin-inline: auto;
  height: auto;
  aspect-ratio: 1;
  border: 5px solid #000;
  background: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.p-wbfDefinition__item .head .title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #9696A1;
}

.p-wbfDefinition__item .box {
  margin-top: -2.8125rem;
  background: #E7E7E7;
  border-radius: 20px;
  padding: 5.9375rem 2.375rem 4.5625rem 2.375rem;
  position: relative;
  z-index: -1;
  height: 100%;
}

.p-wbfDefinition__item .box .title {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}

.p-wbfDefinition__item .box .text {
  margin-top: 2.5rem;
}

.p-wbf__comparison-mechanism-wrap .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-wbf__comparison-mechanism-wrap .box {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.75rem;
  }
}

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

.p-wbfComparison__text {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}

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

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

.p-wbfMechanism__service {
  margin-top: 3rem;
  border: 1px solid #000000;
  border-radius: 20px;
  background: #E7E7E7;
  padding: 1.8125rem 4.25rem 2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-wbfMechanism__service {
    margin-top: 1.875rem;
    padding: 1.25rem;
  }
}

.p-wbfMechanism__service .item {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-wbfMechanism__service .item {
    font-size: 0.875rem;
  }
}

.p-wbfMechanism__text2 {
  margin-top: 1.875rem;
}

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

.p-wbfMessage {
  background: #E7E7E7;
  padding-block: 3.125rem 4.1875rem;
}

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

.p-wbfMessage__text {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-wbfMessage__text {
    font-size: 0.875rem;
  }
}

.p-serviceTopHead__contents {
  display: grid;
  grid-template-columns: 30.375rem auto;
  gap: 7.125rem;
}
@media screen and (max-width: 767px) {
  .p-serviceTopHead__contents {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

.p-serviceTopHead__contents .c-page-title {
  text-align: left;
}
.p-serviceTop__subtitle {
  margin-top: 1.625rem;
  font-size: 1.875rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-serviceTop__subtitle {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

.p-serviceTopHead__contents .right {
  font-weight: bold;
}

.p-serviceTopHead__text {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-serviceTopHead__text {
    font-size: 1.125rem;
  }
}

.p-serviceTopHead__text2 {
  font-size: 1.125rem;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-serviceTopHead__text2 {
    margin-top: 1.875rem;
    font-size: 0.875rem;
  }
}

.p-serviceItem.--branding {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-serviceItem.--branding {
    margin-top: 3.75rem;
  }
}

.p-serviceItem:nth-of-type(n + 2) {
  margin-top: 3.4375rem;
}

.p-serviceItem__contents {
  display: grid;
  grid-template-columns: 20.9375rem 28.125rem auto;
  align-items: center;
  gap: 43px;
}
@media screen and (max-width: 767px) {
  .p-serviceItem__contents {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.p-serviceItem__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5625rem;
  border: 1px solid #000;
  border-radius: 999px;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-serviceItem__head {
    width: 17.5rem;
    margin-inline: auto;
    gap: 0.9375rem;
  }
}

.p-serviceItem__title {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-serviceItem__title {
    font-size: 1rem;
  }
}

.p-serviceItem__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-serPageHead__contents {
  display: grid;
  grid-template-columns: 20.9375rem auto;
  gap: 4.0625rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-serPageHead__contents {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-serviceItem__h1 {
  font-size: 1.875rem;
  font-weight: bold;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-serviceItem__h1 {
    font-size: 1.25rem;
    padding-bottom: 0.625rem;
  }
}

.p-serPageHead__contents .p-serviceItem__description {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-serPageHead__contents .p-serviceItem__description {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

.p-servicePoints {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-servicePoints {
    margin-top: 3.75rem;
  }
}

.p-servicePoints__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-servicePoints__cards {
    grid-template-columns: 1fr;
  }
}

.p-servicePoints__card {
  background: #E7E7E7;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 1.875rem 1.25rem 2.375rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 1.8125rem;
}
.p-servicePoints__card:nth-of-type(even) {
  background: #BEBEBE;
}

.p-servicePoints__card .title {
  font-size: 1.3125rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-servicePoints__card .title {
    font-size: 1.125rem;
  }
}

.p-serviceReason {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-serviceReason {
    margin-top: 3.75rem;
  }
}

.p-serviceReason__title {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #000;
  padding-bottom: 2.4375rem;
}
@media screen and (max-width: 767px) {
  .p-serviceReason__title {
    font-size: 1.125rem;
    padding-bottom: 1.25rem;
  }
}

.p-serviceReason__description {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-serviceReason__description {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-serviceCta {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-serviceCta {
    margin-top: 3.75rem;
  }
}

.p-serviceCta__box {
  background: #E7E7E7;
  border-radius: 20px;
  padding: 1.875rem;
  display: grid;
  grid-template-columns: 22.625rem auto 23.5rem;
  column-gap: 1.875rem;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-serviceCta__box {
    padding: 1.25rem;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.p-serviceCta__title {
  font-size: 1.75rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-serviceCta__title {
    font-size: 1.125rem;
    text-align: center;
  }
}

.p-serviceCta__text {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-serviceCta__text {
    font-size: 0.875rem;
    text-align: center;
  }
}

.p-serviceCta__contents .tel {
  margin-top: 0.9375rem;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.p-serviceCta__contents .hour {
  margin-top: 0.9375rem;
  text-align: center;
}

.l-newsArchive__box {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: 12.5rem auto;
  gap: 1.4375rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .l-newsArchive__box {
    margin-top: 3.75rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.l-newsArchive__left {
  border-right: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .l-newsArchive__left {
    border-right: none;
  }
}

.l-newsArchive__left .title {
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-newsArchive__left .title {
    font-size: 2.5rem;
  }
}

.l-newsArchive__left .subtitle {
  margin-top: 1.625rem;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .l-newsArchive__left .subtitle {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.l-newsArchive__right {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .l-newsArchive__right {
    gap: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .l-newsArchive__post {
    display: flex;
    flex-direction: column;
  }
}

.l-newsArchive__post-title {
  font-size: 1.3125rem;
  font-weight: bold;
  padding-bottom: 1.0625rem;
  border-bottom: 1px solid #000;
  padding-left: 11rem;
}
@media screen and (max-width: 767px) {
  .l-newsArchive__post-title {
    order: 2;
    font-size: 1rem;
    padding-left: 0;
    padding-bottom: 0.625rem;
  }
}

.l-newsArchive__post-contents {
  margin-top: 0.625rem;
  display: grid;
  grid-template-columns: 9.6875rem auto;
  gap: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .l-newsArchive__post-contents {
    display: contents;
  }
}

.l-newsArchive__post-contents .date {
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-newsArchive__post-contents .date {
    order: 1;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .l-newsArchive__post-contents .text {
    order: 3;
    padding-top: 0.625rem;
  }
}

.l-newsArchive__pagination {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-newsArchive__pagination {
    margin-top: 1.875rem;
  }
}

.l-notePost__box {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: 12.5rem auto;
  gap: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .l-notePost__box {
    margin-top: 3.75rem;
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}

.l-notePost__left .title {
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-notePost__left .title {
    font-size: 2.5rem;
  }
}

.l-notePost__left .subtitle {
  margin-top: 1.625rem;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .l-notePost__left .subtitle {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.l-notePost__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-notePost__right {
    gap: 2.5rem;
  }
}

.l-notePost__pagination {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-notePost__pagination {
    margin-top: 1.875rem;
  }
}

.l-noteArchive__article {
  border: 1px solid #000;
}

.l-noteArchive__article-inner {
  padding: 1.875rem;
  display: grid;
  grid-template-columns: 21.875rem auto;
  gap: 1.25rem;
  grid-template-areas: "title title" "info subTitle" "thumbnail excerpt";
}
@media screen and (max-width: 767px) {
  .l-noteArchive__article-inner {
    padding: 1.25rem;
    grid-template-columns: 1fr;
    grid-template-areas: "title" "info" "subTitle" "thumbnail" "excerpt";
  }
}

.l-noteArchive__article .title {
  grid-area: title;
  font-size: 1.75rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-noteArchive__article .title {
    font-size: 1rem;
  }
}

.l-noteArchive__article .subTitle {
  grid-area: subTitle;
  font-size: 1.3125rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-noteArchive__article .subTitle {
    font-size: 1rem;
  }
}

.l-noteArchive__article-info {
  grid-area: info;
  margin-top: 0.625rem;
  display: flex;
  align-items: start;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-noteArchive__article-info {
    margin-top: 0;
    flex-direction: column;
    gap: 0.625rem;
  }
}

.l-noteArchive__article-info .date {
  font-size: 0.875rem;
}

.l-noteArchive__article-info .category {
  width: 100%;
  font-size: 0.8125rem;
  font-weight: bold;
  padding: 0.5rem 1.625rem;
  text-align: center;
  border: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .l-noteArchive__article-info .category {
    width: fit-content;
    padding: 0.3125rem 1.25rem;
  }
}

.l-noteArchive__article .thumbnail {
  grid-area: thumbnail;
}
.l-noteArchive__article .thumbnail img {
  aspect-ratio: 345/195;
  object-fit: cover;
}

.l-noteArchive__article .excerpt {
  grid-area: excerpt;
}

.l-noteSingle .l-notePost__box {
  border-bottom: 1px solid #000;
}

.l-noteSingle .l-notePost__left {
  border-right: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .l-noteSingle .l-notePost__left {
    border-right: none;
  }
}

.l-noteSingle .l-notePost__right {
  padding-bottom: 58px;
}

.l-noteSingle__article .title {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-noteSingle__article .title {
    font-size: 22px;
  }
}

.l-noteSingle__article .subTitle {
  margin-top: 22px;
  font-size: 21px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-noteSingle__article .subTitle {
    font-size: 16px;
  }
}

.l-noteSingle__article-info {
  margin-top: 39px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .l-noteSingle__article-info {
    margin-top: 20px;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}

.l-noteSingle__article-info .date {
  font-size: 14px;
}

.l-noteSingle__article-info .category {
  width: fit-content;
  font-size: 13px;
  font-weight: bold;
  padding: 0.5rem 1.625rem;
  text-align: center;
  border: 1px solid #000;
}

.l-noteSingle__article .excerpt {
  margin-top: 30px;
  font-size: 16px;
  padding-block: 50px;
  border-block: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .l-noteSingle__article .excerpt {
    font-size: 14px;
    padding-block: 20px;
  }
}

.p-block-editor {
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-block-editor * {
    font-size: 14px;
  }
}
.p-block-editor p {
  font-size: 16px;
  margin-block: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-block-editor p {
    font-size: 14px;
  }
}
.p-block-editor strong {
  font-weight: bold;
}
.p-block-editor em {
  font-style: italic;
}
.p-block-editor h1,
.p-block-editor h2,
.p-block-editor h3,
.p-block-editor h4,
.p-block-editor h5,
.p-block-editor h6 {
  font-weight: bold;
}
.p-block-editor h3 + p,
.p-block-editor h4 + p,
.p-block-editor h5 + p,
.p-block-editor h6 + p {
  margin-top: 0 !important;
}
.p-block-editor h2 {
  font-size: 24px;
  margin-block: 50px;
}
@media screen and (max-width: 767px) {
  .p-block-editor h2 {
    font-size: 18px;
    margin-block: 30px;
  }
}
.p-block-editor h3 {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-block-editor h3 {
    font-size: 16px;
  }
}
.p-block-editor h4 {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-block-editor h4 {
    font-size: 16px;
  }
}
.p-block-editor ul,
.p-block-editor ol {
  list-style: disc;
  padding-left: 1.5em;
}
.p-block-editor li {
  margin-block: 0;
}
.p-block-editor a {
  color: #007acc;
  text-decoration: underline;
}
.p-block-editor blockquote {
  border-left: 4px solid #ccc;
  padding-left: 1em;
  margin: 1.5em 0;
  color: #555;
}
.p-block-editor img {
  max-width: 100%;
  height: auto;
  display: block;
}
.p-block-editor figure {
  text-align: center;
}
.p-block-editor figure figcaption {
  font-size: 14px;
  color: #666;
  margin-top: 0.5em;
}
.p-block-editor table {
  width: 100%;
  border-collapse: collapse;
}
.p-block-editor table th,
.p-block-editor table td {
  border: 1px solid #ddd;
  padding: 0.75em;
  text-align: left;
}
.p-block-editor hr {
  width: 100% !important;
  margin-block: 50px !important;
  border: none;
  border-top: 1px solid #000000;
}
.p-block-editor .wp-block-media-text {
  gap: 30px;
  margin-block: 1.5rem;
}
.p-block-editor .wp-block-media-text__content {
  padding: 0 !important;
}

.l-policyHead {
  margin-top: 109px;
}
@media screen and (max-width: 767px) {
  .l-policyHead {
    margin-top: 60px;
  }
}

.l-policyHead__title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-policyHead__title {
    font-size: 25px;
  }
}

.l-policy__box {
  margin-top: 50px;
  max-width: 824px;
  margin-inline: auto;
  border-block: 1px solid #000;
  padding-block: 30px;
}

.p-policy__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-policyBlock .title {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-policyBlock .title {
    font-size: 18px;
  }
}

.p-policyBlock .text {
  font-size: 16px;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-policyBlock .text {
    font-size: 14px;
    line-height: 1.7;
  }
}
.p-policyBlock .text a {
  text-decoration: underline;
}

.p-policyBlock__list li {
  position: relative;
  padding-left: 1.5625rem;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-policyBlock__list li {
    font-size: 14px;
  }
}
.p-policyBlock__list li::after {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.l-sitemapPost__box {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: 19.6875rem auto;
  gap: 5.3125rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .l-sitemapPost__box {
    margin-top: 3.75rem;
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.l-sitemapPost__left {
  border-right: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .l-sitemapPost__left {
    border-right: none;
    border-bottom: 1px solid #000;
    padding-bottom: 1.875rem;
  }
}

.l-sitemapPost__left .title {
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-sitemapPost__left .title {
    font-size: 1.5625rem;
  }
}

.l-sitemapPost__right {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.625rem;
  padding-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  .l-sitemapPost__right {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    padding-bottom: 3.75rem;
  }
}

.l-sitemap__list.--list2 {
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .l-sitemap__list.--list2 {
    margin-top: 1.875rem;
  }
}

.l-sitemap__list {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .l-sitemap__list {
    gap: 0.3125rem;
  }
}

.l-sitemap__list .item a,
.l-sitemap__list .subItem a {
  display: block;
  padding-left: 20px;
  position: relative;
}
.l-sitemap__list .item a::before,
.l-sitemap__list .subItem a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 15px;
  height: 15px;
  background: url(../img/common/footer_arrow.png) no-repeat center center/contain;
}

.l-sitemap__list .subItem {
  margin-left: 20px;
}

.item__title {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .item__title {
    font-size: 1rem;
  }
}

.l-sitemap__list .subItem .subItem__title {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-sitemap__list .subItem .subItem__title {
    font-size: 0.875rem;
  }
}

.l-sitemap__list .subItem .subItem__item {
  margin-left: 0.9375rem;
}
.l-sitemap__list .subItem .subItem__item:first-of-type {
  margin-top: 0.3125rem;
}

.l-contact {
  background: #999999;
}

.l-contactPost__box {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: 19.6875rem auto;
  gap: 5.3125rem;
  border-bottom: 1px solid #fff;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-contactPost__box {
    margin-top: 3.75rem;
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.l-contactPost__left {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .l-contactPost__left {
    border-right: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 1.875rem;
  }
}

.l-contactPost__left .title {
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-contactPost__left .title {
    font-size: 1.5625rem;
  }
}

.l-contactPost__right {
  padding-bottom: 6.25rem;
}

.l-contactText {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  font-weight: 400;
}

.l-contactForm {
  margin-top: 50px;
}

.Form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .Form {
    gap: 30px;
  }
}

.Form-Item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .Form-Item {
    gap: 5px;
  }
}

.Form-Item-Label {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
}

.Form-Item-Label-Required {
  display: block;
  padding: 5px 11px;
  font-size: 14px;
  color: #fff;
  background: #FF0000;
  line-height: 1;
}

input[type=text],
input[type=tel],
input[type=email] {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=email] {
    padding: 10px;
  }
}
input[type=text]:-webkit-autofill,
input[type=tel]:-webkit-autofill,
input[type=email]:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
  border: none;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder {
  color: #B4B4B4;
  font-weight: 400;
}

textarea {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: normal !important;
  resize: vertical;
  min-height: 300px;
}
textarea:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
  border: none;
}
textarea::placeholder {
  color: #B4B4B4;
  font-weight: normal !important;
}

.Form__policy-title {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .Form__policy-title {
    font-size: 1rem;
  }
}

.Form__policy-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .Form__policy-box {
    flex-direction: column;
  }
}

.Form__policy-button {
  font-size: 1.0625rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .Form__policy-button {
    font-size: 0.875rem;
  }
}
.Form__policy-button a {
  width: 18.75rem;
  text-align: center;
  max-width: 100%;
  background: #E7E7E7;
  color: #000000;
  padding: 0.9375rem;
  border-radius: 999px;
}

input[type=checkbox] {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  border-radius: 3px;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -3px;
  width: 23px;
  height: 17.53px;
  background: url(../img/common/icon_checkbox.png) no-repeat center center/contain;
}

.Form-attention__input {
  display: inline-block;
}

.Form__attention-checkbox {
  display: block;
  text-align: center;
  padding-block: 33px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .Form__attention-checkbox {
    padding-block: 15px;
    font-size: 16px;
  }
}

.Form__button {
  text-align: center;
}

.submit-button {
  padding: 14px 24px;
  border: 1px solid #FFF;
  background: #999999;
  font-size: 21px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .submit-button {
    font-size: 16px;
  }
}

/* ===================================
その他
=================================== */
.wpcf7-spinner {
  display: none !important;
}

/* // エラーメッセージ */
.wpcf7-not-valid-tip {
  font-size: 10px !important;
  color: red;
}

/* // // デフォルトのサンクスメッセージ */
/*reCAPTCHAのバッジを非表示に*/
.l-thanks__text {
  font-size: 1.125rem;
}

.l-thanks__button {
  margin-top: 40px;
}

.u-list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}