@charset "UTF-8";
/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove all animations and transitions for people that prefer not to see them */
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}

body {
  color: #343835;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.c-breadcrumb {
  padding: 16px 0;
  padding: 1rem 0;
}

.c-breadcrumb a {
  color: #000;
}

.c-btn {
  background-color: #fff;
  border: 1px solid #343835;
  color: #343835;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  min-width: 300px;
  min-width: 18.75rem;
  padding: 19px 30px 19px 20px;
  padding: 1.1875rem 1.875rem 1.1875rem 1.25rem;
  position: relative;
  text-align: center;
  transition: 0.3s;
}

.c-btn::after {
  -webkit-mask-image: url(../images/common/icon_arrow02.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #343835;
  content: "";
  display: inline-block;
  height: 6px;
  height: 0.375rem;
  margin-left: 16px;
          mask-image: url(../images/common/icon_arrow02.svg);
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
  position: absolute;
  right: 1em;
  top: 48%;
  transform: translate(0, -50%);
  transition: 0.3s;
  width: 20px;
  width: 1.25rem;
}

.c-btn:hover {
  -webkit-text-decoration: none;
  background-color: #343835;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  text-decoration: none;
}

.c-btn:hover::after {
  background-color: #fff;
}

.c-btn--black {
  background-color: #343835;
  border: 1px solid #fff;
  color: #fff;
}

.c-btn--black:hover {
  background-color: #fff;
  border: 1px solid #343835;
  color: #343835;
}

.c-btn--black::after {
  background-color: #fff;
}

.c-btn--black:hover::after {
  background-color: #343835;
}

.c-btn--hover-green:hover {
  background-color: #267f53;
  border: 1px solid #267f53;
}

.c-btn01 {
  -webkit-text-decoration: none;
  align-items: center;
  background-color: #5e7d68;
  border: none;
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-size: 1rem;
  gap: 24px;
  gap: 1.5rem;
  height: 48px;
  height: 3rem;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0 24px;
  padding: 0 1.5rem;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
  width: 250px;
  width: 15.625rem;
}
.c-btn01::after {
  background-image: url(../images/common/icon_arrow_right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  height: 1rem;
  width: 16px;
  width: 1rem;
}
.c-btn01:hover {
  -webkit-text-decoration: none;
  background-color: rgb(72.1095890411, 95.8904109589, 79.7808219178);
  opacity: 1;
  text-decoration: none;
}

.c-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 50px;
  padding-top: 3.125rem;
  position: relative;
  width: 300px;
  width: 18.75rem;
}

.c-card__inner {
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(25, 18, 4, 0.08);
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  padding: 80px 16px 16px;
  padding: 5rem 1rem 1rem;
  width: 100%;
}

.c-card__image {
  border-radius: 50%;
  height: 100px;
  height: 6.25rem;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100px;
  width: 6.25rem;
  z-index: 1;
}
.c-card__image img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.c-card__name {
  color: #5e7d68;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}

.c-card__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.c-card__section {
  border-bottom: 1px solid #e2e0db;
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
  padding: 24px 0;
  padding: 1.5rem 0;
  width: 100%;
}
.c-card__section:first-child {
  padding-top: 0;
}
.c-card__section:last-child {
  border-bottom: none;
}

.c-card__row {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  gap: 0.875rem;
  width: 100%;
}
.c-card__row--center {
  align-items: center;
}

.c-card__icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 24px;
  height: 1.5rem;
  justify-content: center;
  overflow: hidden;
  width: 24px;
  width: 1.5rem;
}
.c-card__icon img {
  -o-object-fit: contain;
  height: 18px;
  height: 1.125rem;
     object-fit: contain;
  width: 18px;
  width: 1.125rem;
}

.c-card__tags {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 6px 10px;
  gap: 0.375rem 0.625rem;
}

.c-card__tag {
  background-color: #eee;
  color: #343835;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
}

.c-card__location {
  color: #343835;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-size: 1rem;
  gap: 4px;
  gap: 0.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.c-card__location p {
  color: #343835;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.c-card__text {
  color: #343835;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  width: 100%;
}

/* カスタムマーカーのコンテナ */
.custom-marker {
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}
.custom-marker:hover {
  z-index: 1000 !important;
}
.custom-marker:hover {
  transform: scale(1.1);
}

/* プロフィール写真ラッパー */
.marker-photo-wrapper {
  height: 50px;
  height: 3.125rem;
  position: relative;
  width: 50px;
  width: 3.125rem;
}

/* プロフィール写真（丸型） */
.marker-photo {
  -o-object-fit: cover;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: block;
  height: 50px;
  height: 3.125rem;
     object-fit: cover;
  width: 50px;
  width: 3.125rem;
}

/* プロフィール写真プレースホルダー */
.marker-photo-placeholder {
  align-items: center;
  background-color: #e0e0e0;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  font-size: 24px;
  font-size: 1.5rem;
  height: 50px;
  height: 3.125rem;
  justify-content: center;
  width: 50px;
  width: 3.125rem;
}

/* バッジ（🏠など） */
.marker-badge {
  align-items: center;
  background: white;
  border-radius: 50%;
  bottom: -5px;
  bottom: -0.3125rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  display: flex;
  font-size: 18px;
  font-size: 1.125rem;
  height: 24px;
  height: 1.5rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -5px;
  right: -0.3125rem;
  width: 24px;
  width: 1.5rem;
}

/* 情報ウィンドウのスタイル */
.info-window {
  max-width: 280px;
  max-width: 17.5rem;
  padding: 10px;
  padding: 0.625rem;
}
.info-window h3 {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  margin: 0 0 8px 0;
  margin: 0 0 0.5rem 0;
}
.info-window p {
  color: #666;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 12px 0;
  margin: 0 0 0.75rem 0;
}

.info-location-label {
  color: #666;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin: 0 0 8px 0;
  margin: 0 0 0.5rem 0;
}

.info-link {
  -webkit-text-decoration: none;
  color: #4a90e2;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.info-link:hover {
  -webkit-text-decoration: underline;
  color: #357abd;
  text-decoration: underline;
}

/* モバイル対応 */
.c-member-table {
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(38, 30, 7, 0.08);
  max-width: 930px;
  max-width: 58.125rem;
  width: 100%;
}

.c-member-table__row {
  border-bottom: 1px solid #f6f5f2;
  display: flex;
}
.c-member-table__row--last {
  border-bottom: none;
}

.c-member-table__header {
  align-items: center;
  background-color: #e3e9e5;
  border-bottom: 1px solid #f6f5f2;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  padding: 19px 30px;
  padding: 1.1875rem 1.875rem;
  width: 200px;
  width: 12.5rem;
}
.c-member-table__header p {
  color: #343835;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  white-space: nowrap;
}

.c-member-table__content {
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #f6f5f2;
  display: flex;
  flex: 1;
  padding: 24px;
  padding: 1.5rem;
}
.c-member-table__row--last .c-member-table__content {
  padding: 8px 24px;
  padding: 0.5rem 1.5rem;
}

.c-member-table__tags {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  gap: 0.625rem 0.625rem;
}

.c-member-table__tag {
  background-color: #eee;
  color: #343835;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
}

.c-member-table__text {
  width: 100%;
}
.c-member-table__text p {
  color: #343835;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  white-space: pre-wrap;
}

.c-member-table__icons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
}

.c-member-table__icon {
  display: block;
  flex-shrink: 0;
  height: 40px;
  height: 2.5rem;
  transition: opacity 0.3s;
  width: 40px;
  width: 2.5rem;
}
.c-member-table__icon:hover {
  opacity: 0.7;
}
.c-member-table__icon img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.c-page-top {
  bottom: 50px;
  bottom: 3.125rem;
  color: #343835;
  cursor: pointer;
  position: fixed;
  right: 50px;
  right: 3.125rem;
  text-transform: uppercase;
  transition: 0.3s ease;
  writing-mode: vertical-rl;
}

.c-page-top::before {
  -webkit-mask-image: url(../images/common/icon_arrow04.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background: #343835;
  content: "";
  height: 20px;
  height: 1.25rem;
  left: 50%;
          mask-image: url(../images/common/icon_arrow04.svg);
          mask-repeat: no-repeat;
          mask-size: contain;
  position: absolute;
  top: -30px;
  top: -1.875rem;
  transition: 0.3s ease;
  width: 100%;
}

.c-page-top.in-footer {
  color: #fff;
}

.c-page-top.in-footer::before {
  background: #fff;
}

.c-title-section {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.c-title-section span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.c-title-section--white {
  color: #fff;
}

.c-title {
  color: #5e7d68;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.l-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 900;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.l-inner-s {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.l-pager {
  margin-top: 32px;
  margin-top: 2rem;
}

.l-post-connect {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-404 {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-404__title {
  text-align: center;
}

.p-404__btn {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}

.p-about {
  margin-top: 160px;
  margin-top: 10rem;
}

.p-about__text-box {
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  margin-top: 4rem;
  max-width: 930px;
  max-width: 58.125rem;
  text-align: center;
}

.p-about__top-text {
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.p-about__top-text span {
  display: inline-block;
}

.p-about__top-text-en,
.p-about__text {
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.p-about__top-text-en span,
.p-about__text span {
  display: inline-block;
}

.p-about__top-text-en {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-about__text {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-about__img {
  aspect-ratio: 780/791;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  margin-top: 4rem;
  max-width: 780px;
  max-width: 48.75rem;
}
.p-about__img img {
  height: 100%;
}

.p-table__list {
  border-bottom: 1px solid #ccc;
  display: flex;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}

.p-table__list:last-of-type {
  border: none;
}

.p-table__list + .p-table__list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-table__term {
  flex-shrink: 0;
  font-weight: 700;
  max-width: 120px;
  max-width: 7.5rem;
  width: 100%;
}

.p-table__description--multi {
  line-height: 1.8;
}

.p-company {
  margin-top: 160px;
  margin-top: 10rem;
}

.p-company__profile {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-company__map-wrap {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-company__map {
  aspect-ratio: 375/260;
  width: 100%;
}

.p-company__map iframe {
  -o-object-fit: cover;
  filter: grayscale(100%);
  height: 100%;
     object-fit: cover;
  vertical-align: bottom;
  width: 100%;
}

.p-company__map-text {
  display: block;
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}
.p-company__map-text span {
  display: inline-block;
}

.p-contact__title {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-contact__top-text {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}
.p-contact__top-text a {
  -webkit-text-decoration: underline;
  color: #17639b;
  display: inline-block;
  text-decoration: underline;
}
.p-contact__top-text span {
  display: inline-block;
}

.p-contact__contents {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  margin-top: 4.375rem;
  max-width: 600px;
  max-width: 37.5rem;
}
.p-contact__contents .wpcf7-list-item {
  display: block;
  margin: 0;
}
.p-contact__contents .wpcf7-list-item.first {
  margin-left: 0px;
  margin-left: 0rem;
}

.p-contact__head {
  width: 230px;
  width: 14.375rem;
}
.p-contact__head label {
  display: inline-flex;
  width: 100%;
}

.p-contact__item {
  margin-top: 6px;
  margin-top: 0.375rem;
  width: 100%;
}

.p-contact__item-example {
  color: gray;
  margin-top: 6px;
  margin-top: 0.375rem;
}

.p-contact__required {
  background-color: #cc0000;
  color: #fff;
  margin-left: 1em;
  padding: 0px 8px;
  padding: 0rem 0.5rem;
  text-align: center;
}

.p-contact__policy,
.p-contact__content,
.p-contact__btn {
  margin: 24px 0;
  margin: 1.5rem 0;
}

.p-contact__policy-link {
  color: blue;
  transition: all 0.3s;
}

.p-contact__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-contact__btn {
  display: block;
  padding: 0;
  text-align: center;
}

.p-contact__text {
  margin-top: 90px;
  margin-top: 5.625rem;
  text-align: center;
}

.p-contact__item-text,
.p-contact__item-tel,
.p-contact__item-email,
.p-contact__item-textarea,
.p-contact__item-select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
  outline: none;
  padding: 0.8em;
  width: 100%;
}

.p-contact__item-text:focus,
.p-contact__item-tel:focus,
.p-contact__item-email:focus,
.p-contact__item-textarea:focus,
.p-contact__item-select:focus {
  border: 1px solid rgba(0, 0, 0, 0.7);
  box-shadow: none;
  outline: none;
}

.p-contact__item-textarea {
  height: 200px;
  overflow: auto;
  resize: none;
}

.p-contact__item-message {
  white-space: pre-wrap;
}

.p-contact__item-select {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-position: right 0.5em center;
  background-repeat: no-repeat;
  background-size: 1em;
  color: inherit;
  padding-right: 3em;
}

.p-contact__item-select:invalid {
  color: rgba(0, 0, 0, 0.32);
}

.p-contact__item-select select::-ms-expand {
  display: none;
}

.p-contact__item-radio input[type=radio],
.p-contact__item-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-contact__item-radio input[type=radio] + span,
.p-contact__item-checkbox input[type=checkbox] + span {
  color: #333;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  padding: 0.5em 1em 0.5em 1.5em;
  position: relative;
}

.p-contact__item-radio input[type=radio]:focus + span,
.p-contact__item-checkbox input[type=checkbox]:focus + span {
  opacity: 0.7;
}

.p-contact__item-radio input[type=radio] + span::before,
.p-contact__item-checkbox input[type=checkbox] + span::before {
  background: white;
  border: 1px solid black;
  content: "";
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
}

.p-contact__item-checkbox input[type=checkbox]:checked + span::before {
  background: #333;
}

.p-contact__item-radio input[type=radio]:checked + span::before {
  background: white;
}

.p-contact__item-radio input[type=radio] + span::before {
  border-radius: 50%;
}

.p-contact__item-radio input[type=radio] + span::after {
  background: #333;
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  height: 0.5em;
  left: 0.25em;
  opacity: 0;
  padding: 0.125em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 0.5em;
}

.p-contact__item-checkbox input[type=checkbox] + span::after {
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  display: block;
  height: 0.35em;
  left: 0.15em;
  margin-top: -0.1em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 0.8em;
}

.p-contact__item-checkbox input[type=checkbox]:checked + span::after,
.p-contact__item-radio input[type=radio]:checked + span::after {
  opacity: 1;
}

/* button */
.p-contact__btn input[type=submit],
.p-contact__btn input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #343835;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  min-width: 200px;
  min-width: 12.5rem;
  padding: 17px 2em;
  padding: 1.0625rem 2em;
}

.p-contact__btn input[type=submit]:hover,
.p-contact__btn input[type=button]:hover,
.p-contact__btn input[type=submit]:focus,
.p-contact__btn input[type=button]:focus {
  color: inherit;
  outline: none;
}

.wpcf7-spinner {
  bottom: -60%;
  position: absolute;
  right: 0%;
}

.p-contact__btn--return {
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.p-contact__btn--return input[type=submit],
.p-contact__btn--return input[type=button] {
  display: inline-block !important;
}

.p-contact__btn--return input[type=submit],
.p-contact__btn--return input[type=button] {
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding-left: 0;
}

.p-contact__btn--return::before {
  background: url(../images/common/icon_arrow03.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  height: 6px;
  height: 0.375rem;
  margin-right: 0.5em;
  position: relative;
  top: -3px;
  top: -0.1875rem;
  width: 20px;
  width: 1.25rem;
}

.p-contact__send-message {
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-top: 78px;
  margin-top: 4.875rem;
  text-align: center;
}

.p-contact__description {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
}

.p-contact__btn-tanks {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-faq-list__item {
  background-color: #ebebeb;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
}

.p-faq-list__item + .p-faq-list__item {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-faq-list__item-question {
  cursor: pointer;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 12px 56px 12px 60px;
  padding: 0.75rem 3.5rem 0.75rem 3.75rem;
  position: relative;
  text-indent: -24px;
  text-indent: -1.5rem;
}

.p-faq-list__item-question::before,
.p-faq-list__item-question::after {
  background: #707070;
  content: "";
  height: 1px;
  height: 0.0625rem;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 32px;
  top: 2rem;
  transition: 0.3s;
  width: 18px;
  width: 1.125rem;
}

.p-faq-list__item-question::after {
  transform: rotate(90deg);
}

.p-faq-list__item-question.is-open::after {
  transform: rotate(0deg);
}

.p-faq-list__item-question span {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 20px;
  margin-right: 1.25rem;
}

.p-faq-list__item-answer {
  display: none;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 15px 30px 15px 60px;
  padding: 0.9375rem 1.875rem 0.9375rem 3.75rem;
}

.p-faq {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-faq__inner {
  margin: auto;
  max-width: 600px;
  max-width: 37.5rem;
  padding: 0 20px;
  padding: 0 1.25rem;
  width: 100%;
}

.p-faq__tab {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-footer {
  background-color: #5e7d68;
  margin-top: 0;
  padding: 10px;
  padding: 0.625rem;
}

.p-footer__inner {
  align-items: center;
  display: flex;
  justify-content: center;
}

.p-footer__text {
  color: #fff;
  text-align: center;
}
.p-footer__text span {
  display: inline-block;
}

.p-footer__btn {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}
.p-footer__btn a {
  max-width: 550px;
  max-width: 34.375rem;
  width: 100%;
}

.p-footer__tel-wrap {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-footer__tel {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.p-footer__tel-time {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-footer__sns-warp {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-footer__sns-list {
  align-items: center;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  justify-content: center;
}

.p-footer__bottom-wrap {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-footer__link-container {
  align-items: center;
  color: #fff;
  display: flex;
}

.p-footer__link-wrap {
  margin-left: 48px;
  margin-left: 3rem;
}

.p-footer__link {
  padding: 0 11px;
  padding: 0 0.6875rem;
  text-transform: capitalize;
  transition: 0.3s ease;
}

.p-footer__link:hover {
  color: #999;
}

.p-footer__copyright {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

.p-header {
  background-color: transparent;
  height: 40px;
  height: 2.5rem;
  padding-top: 16px;
  padding-top: 1rem;
}

.p-header__inner {
  display: flex;
  height: inherit;
  justify-content: space-between;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.p-header__logo {
  height: inherit;
  max-width: 48px;
  max-width: 3rem;
  width: 100%;
  z-index: 999;
}

.p-header__logo a {
  align-items: center;
  display: flex;
  height: inherit;
}

.p-header__logo img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-header__nav {
  display: none;
  height: inherit;
}

.p-header__nav-items {
  display: flex;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
  align-items: center;
  display: flex;
  margin-left: 15px;
  margin-left: 0.9375rem;
}

.p-header__nav-item a {
  align-items: center;
  color: #333;
  display: flex;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  height: inherit;
  line-height: 1;
  padding: 0 15px;
  padding: 0 0.9375rem;
  text-transform: uppercase;
}

.p-header__nav-item.p-header__nav-item--contact a::after {
  background-image: url(./../images/common/contact-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 12px;
  height: 0.75rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  width: 11px;
  width: 0.6875rem;
}

.p-header__hamburger {
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  transition: 0.3s;
  z-index: 999;
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  background-color: #343835;
  display: block;
  height: 2px;
  position: relative;
  transition: 0.5s;
  width: 40px;
  width: 2.5rem;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -6px;
  top: -0.375rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  margin-left: auto;
  top: 6px;
  top: 0.375rem;
  width: 20px;
  width: 1.25rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(0%) rotate(30deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  top: -2px;
  top: -0.125rem;
  transform: translateX(0%) rotate(-30deg);
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  opacity: 0;
}

.p-header__drawer {
  background-color: white;
  bottom: 0;
  display: none;
  height: 100vh;
  left: 0;
  overflow-y: scroll;
  padding: 228px 0;
  padding: 14.25rem 0;
  position: absolute;
  right: 0;
  scrollbar-width: none;
  top: 0;
  width: 100%;
  z-index: 900;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item a {
  color: #343835;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 15px 0;
  padding: 0.9375rem 0;
  text-align: center;
  text-transform: uppercase;
}

.p-header__sns-warp {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-header__sns-list {
  align-items: center;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  justify-content: center;
}

.p-member-detail {
  padding: 60px 0;
}
.p-member-detail__back {
  margin-bottom: 30px;
}
.p-member-detail__back--bottom {
  margin-bottom: 0;
  margin-top: 60px;
}
.p-member-detail__back .back-link {
  -webkit-text-decoration: none;
  align-items: center;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 8px;
  color: #333;
  display: inline-flex;
  font-weight: 600;
  gap: 8px;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.p-member-detail__back .back-link:hover {
  background: #fff;
  border-color: #4285f4;
  color: #4285f4;
  transform: translateX(-4px);
}
.p-member-detail__hero {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0 auto 40px;
  max-width: 200px;
  overflow: hidden;
  width: 100%;
}
.p-member-detail__hero img {
  display: block;
  height: auto;
  width: 100%;
}
.p-member-detail__header {
  margin-bottom: 50px;
  text-align: center;
}
.p-member-detail__title {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-member-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.p-member-detail__categories, .p-member-detail__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-member-detail .category-tag {
  background: #e3f2fd;
  border-radius: 16px;
  color: #1976d2;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
}
.p-member-detail .region-tag {
  background: #fff3e0;
  border-radius: 16px;
  color: #e65100;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
}
.p-member-detail__body {
  grid-gap: 40px;
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: 300px 1fr;
}
.p-member-detail__sidebar {
  position: sticky;
  top: 100px;
}
.p-member-detail__sidebar .info-block {
  background: #f8f9fa;
  border-left: 4px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
}
.p-member-detail__sidebar .info-block--highlight {
  background: #e8f5e9;
  border-left-color: #4caf50;
}
.p-member-detail__sidebar .info-block:last-child {
  margin-bottom: 0;
}
.p-member-detail__sidebar .info-block__title {
  align-items: center;
  color: #333;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 6px;
  margin-bottom: 12px;
}
.p-member-detail__sidebar .info-block__content {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
}
.p-member-detail__main .section-title {
  border-bottom: 3px solid #4285f4;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
}
.p-member-detail__description {
  margin-bottom: 50px;
}
.p-member-detail__description .content {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}
.p-member-detail__description .content p {
  margin-bottom: 1em;
}
.p-member-detail__description .content p:last-child {
  margin-bottom: 0;
}
.p-member-detail__description .content h2,
.p-member-detail__description .content h3,
.p-member-detail__description .content h4 {
  font-weight: 700;
  margin-bottom: 0.5em;
  margin-top: 1.5em;
}
.p-member-detail__description .content ul,
.p-member-detail__description .content ol {
  margin: 1em 0;
  padding-left: 2em;
}
.p-member-detail__description .content li {
  margin-bottom: 0.5em;
}
.p-member-detail__map-section {
  margin-bottom: 50px;
}
.p-member-detail__map-section .member-map {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 400px;
  overflow: hidden;
  width: 100%;
}
.p-member-detail__gallery {
  margin-bottom: 50px;
}
.p-member-detail__gallery .gallery-grid {
  grid-gap: 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.p-member-detail__gallery .gallery-item {
  aspect-ratio: 1;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.p-member-detail__gallery .gallery-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}
.p-member-detail__gallery .gallery-item:hover img {
  transform: scale(1.05);
}
.p-member-detail__gallery .gallery-item img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.info-window {
  max-width: 250px;
  padding: 10px;
}
.info-window h3 {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.info-window p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.p-member-gallery {
  grid-gap: 20px;
  display: grid;
  gap: 20px;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 13.75rem);
  justify-content: center;
  max-width: 930px;
  max-width: 58.125rem;
  width: 100%;
}

.p-member-gallery__item {
  background-color: #848484;
  box-shadow: 0px 0px 30px 0px rgba(38, 30, 7, 0.08);
  height: 220px;
  height: 13.75rem;
  overflow: hidden;
  width: 220px;
  width: 13.75rem;
}
.p-member-gallery__item img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  transition: transform 0.3s;
  width: 100%;
}
.p-member-gallery__item:hover img {
  transform: scale(1.05);
}

.p-member-map {
  box-shadow: 0px 0px 30px 0px rgba(38, 30, 7, 0.08);
  max-width: 930px;
  max-width: 58.125rem;
  width: 100%;
}

.p-member-map__container {
  background-color: #e5e3df;
  height: 500px;
  height: 31.25rem;
  max-width: 930px;
  max-width: 58.125rem;
  overflow: hidden;
  width: 100%;
}

.p-member-map__address-row {
  align-items: center;
  border-bottom: 1px solid #f6f5f2;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.p-member-map__address-header {
  align-items: center;
  background-color: #e3e9e5;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  padding: 19px 30px;
  padding: 1.1875rem 1.875rem;
  width: 200px;
  width: 12.5rem;
}
.p-member-map__address-header p {
  color: #343835;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.p-member-map__address-content {
  align-items: center;
  background-color: #fff;
  display: flex;
  flex: 1;
  padding: 24px;
  padding: 1.5rem;
}
.p-member-map__address-content p {
  color: #343835;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.p-members-detail {
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  padding-top: 120px;
  padding-top: 7.5rem;
}

.p-members-detail__content {
  margin: 0 auto;
  max-width: 930px;
  max-width: 58.125rem;
  width: 100%;
}

.p-members-map {
  padding: 60px 0;
}
.p-members-map__filter {
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 20px;
}
.p-members-map__filter .filter-controls {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.p-members-map__filter .filter-item {
  flex: 1;
  min-width: 200px;
}
.p-members-map__filter .filter-item label {
  color: #333;
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.p-members-map__filter .filter-item .filter-select {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  width: 100%;
}
.p-members-map__filter .filter-item .filter-select:hover {
  border-color: #999;
}
.p-members-map__filter .filter-item .filter-select:focus {
  border-color: #4285f4;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
  outline: none;
}
.p-members-map__filter .filter-reset-btn {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.p-members-map__filter .filter-reset-btn:hover {
  background: #f5f5f5;
  border-color: #333;
}
.p-members-map__filter .filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}
.p-members-map__filter .filter-tags .filter-tag {
  align-items: center;
  background: #333;
  border-radius: 20px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  gap: 8px;
  padding: 6px 12px;
}
.p-members-map__filter .filter-tags .filter-tag .filter-tag-remove {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  margin-left: 4px;
  opacity: 0.8;
  padding: 0;
  transition: opacity 0.2s ease;
}
.p-members-map__filter .filter-tags .filter-tag .filter-tag-remove:hover {
  opacity: 1;
}
.p-members-map__result-count {
  background: #f0f7ff;
  border-left: 4px solid #4285f4;
  border-radius: 4px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 12px 20px;
}
.p-members-map__result-count #result-number {
  color: #4285f4;
  font-size: 20px;
  font-weight: 700;
  margin: 0 4px;
}
.p-members-map__map {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 500px;
  margin-bottom: 40px;
  overflow: hidden;
  width: 100%;
}
.p-members-map__cards {
  grid-gap: 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.member-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}
.member-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.member-card.highlight {
  outline: 3px solid #4285f4;
  outline-offset: 2px;
}
.member-card__image {
  height: 200px;
  overflow: hidden;
  width: 100%;
}
.member-card__image img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
.member-card__content {
  padding: 20px;
}
.member-card__title {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.member-card__tags {
  margin-bottom: 10px;
}
.member-card__categories, .member-card__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}
.member-card__categories:last-child, .member-card__regions:last-child {
  margin-bottom: 0;
}
.member-card .category-tag {
  background: #e3f2fd;
  border-radius: 12px;
  color: #1976d2;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
}
.member-card .region-tag {
  background: #fff3e0;
  border-radius: 12px;
  color: #e65100;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
}
.member-card__address, .member-card__minpaku {
  align-items: center;
  color: #666;
  display: flex;
  font-size: 14px;
  gap: 5px;
  margin-bottom: 8px;
}
.member-card__address .icon, .member-card__minpaku .icon {
  font-size: 16px;
}
.member-card__minpaku {
  color: #2e7d32;
  font-weight: 500;
}
.member-card__skills {
  align-items: flex-start;
  color: #666;
  display: flex;
  font-size: 14px;
  gap: 5px;
  margin-bottom: 10px;
}
.member-card__skills .icon {
  flex-shrink: 0;
  font-size: 16px;
}
.member-card__skills strong {
  color: #333;
  font-weight: 600;
}
.member-card__description {
  border-top: 1px solid #eee;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
  padding-top: 12px;
}

.no-members {
  color: #999;
  font-size: 16px;
  grid-column: 1/-1;
  padding: 60px 20px;
  text-align: center;
}

.info-window {
  max-width: 250px;
  padding: 10px;
}
.info-window h3 {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.info-window p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.p-members-title {
  align-items: center;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.p-members-title__image {
  border-radius: 50%;
  flex-shrink: 0;
  height: 100px;
  height: 6.25rem;
  overflow: hidden;
  width: 100px;
  width: 6.25rem;
}
.p-members-title__image img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-members-title__name {
  color: #5e7d68;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-news__title {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-news__container {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  margin-top: 3rem;
}

.p-news__item {
  display: block;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding: 20px 0;
  padding: 1.25rem 0;
}

.p-news__item:hover {
  opacity: 1;
}
.p-news__item:hover .p-news__date,
.p-news__item:hover .p-news__cat {
  opacity: 0.8;
}
.p-news__item:hover .p-news__article-title {
  color: #267f53;
}

.p-news__item + .p-news__item {
  border-top: 1px solid #343835;
}

.p-news__date {
  font-size: 14px;
  font-size: 0.875rem;
  transition: ease 0.3s;
}

.p-news__cat {
  border: 1px solid #343835;
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 24px;
  margin-left: 1.5rem;
  min-width: 126px;
  min-width: 7.875rem;
  padding: 4px 10px;
  padding: 0.25rem 0.625rem;
  transition: ease 0.3s;
}

.p-news__article-title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 12px;
  margin-top: 0.75rem;
  transition: all 0.3s ease;
}

.p-pager-list {
  display: flex;
  justify-content: space-between;
}

.p-pager-list__btn {
  text-align: center;
}

.p-pager-list__btn a {
  display: inline-block;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  padding-top: 16px;
  padding-top: 1rem;
}

.p-policy {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-policy__contents {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-policy__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
  padding: 0 20px;
}

.p-policy h2.wp-block-heading {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 25px 0 10px 0;
  margin: 1.5625rem 0 0.625rem 0;
}

.p-post-article {
  margin-top: 200px;
  margin-top: 12.5rem;
}

.p-post-article__info {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.p-post-article__category {
  align-items: center;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
  justify-content: center;
}

.p-post-article__category li {
  border: 1px solid #000;
  color: #000;
  padding: 5px;
  padding: 0.3125rem;
}

.p-post-article__box {
  margin: 102.4px auto 0;
  margin: 6.4rem auto 0;
}

.p-post-article__content {
  background-color: #fff;
  margin-top: 60px;
  margin-top: 3.75rem;
  width: 100%;
}

.p-post-article__content-wrap {
  margin: auto;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  width: 100%;
}

.p-post-article__content-title {
  border-bottom: 1px solid #cfcfcf;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-post-article__contents {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-post-article__main-img {
  aspect-ratio: 7/4;
}

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

.p-post-article__category {
  letter-spacing: 0;
}

.p-post-article__data {
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: 0.05em;
  margin-left: auto;
  text-align: right;
}

.p-post-article__contents h3 {
  border-left: 0.5em solid #000;
  color: #000;
  font-size: 28px;
  font-size: 1.75rem;
  margin: 30px 0 15px;
  margin: 1.875rem 0 0.9375rem;
  padding-left: 10px;
  padding-left: 0.625rem;
}

.p-post-article__contents h4 {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-post-article__contents h5 {
  border-bottom: 2px solid #000;
  border-top: 2px solid #000;
  color: #000;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 10px 0;
  margin: 0.625rem 0;
  padding: 2px 12.5px;
  padding: 0.125rem 0.78125rem;
}

.p-post-article__contents p {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-post-article__contents a {
  -webkit-text-decoration: underline;
  color: #000;
  text-decoration: underline;
}

.p-post-article__contents img {
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-post-article__contents figure {
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-post-article__contents figcaption {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-post-item {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}

.p-post-item + .p-post-item {
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
  padding-top: 1.875rem;
}

.p-post-card__link {
  align-items: center;
  display: flex;
}

.p-post-card__img {
  aspect-ratio: 400/300;
  width: 100%;
}

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

.p-post-card__body {
  display: flex;
}

.p-post-card__info {
  align-items: center;
  display: flex;
  padding: 8px 0;
  padding: 0.5rem 0;
}

.p-post-card__category {
  margin-left: 19px;
  margin-left: 1.1875rem;
}

.p-post-card__category li {
  border: 1px solid #7f7f7f;
  color: #000;
  line-height: 1;
  min-width: 140px;
  min-width: 8.75rem;
  padding: 2px 5px;
  padding: 0.125rem 0.3125rem;
  text-align: center;
}

.p-post-card__new {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  left: 0;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  position: absolute;
  top: 0;
}

.p-post-card__title {
  margin-left: 39px;
  margin-left: 2.4375rem;
}

.p-post-connect__title {
  color: #000;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-post-connect__items {
  grid-gap: 50px;
  display: grid;
  gap: 50px;
  gap: 3.125rem;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-post-list {
  position: relative;
}

.p-post-list__wrap {
  margin: 32px 0;
  margin: 2rem 0;
}

.p-post-list__cards {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-post-list__btn {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-tab__menu {
  grid-gap: 20px;
  display: grid;
  gap: 20px;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

.p-tab__menu-item {
  color: #e5e5e5;
  cursor: pointer;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  padding: 10px 0;
  padding: 0.625rem 0;
  position: relative;
  text-align: center;
}

.p-tab__menu-item::after {
  background-color: #e5e5e5;
  content: "";
  display: block;
  height: 4px;
  margin-top: 12px;
  margin-top: 0.75rem;
  transition: transform 0.3s;
  width: 100%;
}

.p-tab__menu-item.is-active {
  color: #343835;
}

.p-tab__menu-item.is-active::after {
  background-color: #343835;
}

.p-tab__menu-item.is-active::before {
  bottom: 4px;
  bottom: 0.25rem;
  content: "▼";
  display: block;
  font-size: 10px;
  font-size: 0.625rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.p-tab__content {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-tab__content-item {
  display: none;
  padding: 25px 0;
  padding: 1.5625rem 0;
}

.p-tab__content-item.is-active {
  animation: fade 0.3s;
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-terms {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-terms__contents {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-terms__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
  padding: 0 20px;
}

.p-terms h2.wp-block-heading {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 25px 0 10px 0;
  margin: 1.5625rem 0 0.625rem 0;
}
.p-terms a {
  -webkit-text-decoration: underline;
  color: #17639b;
  text-decoration: underline;
}

.box {
  background-color: #999;
  height: 100px;
  width: 100px;
}

.box2 {
  background-color: red;
  height: 100px;
  margin-top: 100px;
  margin-top: 6.25rem;
  width: 100px;
}

.wrap {
  display: flex;
  gap: 10px;
  gap: 0.625rem;
}

.p-top-about {
  background-color: #fafafa;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 100px;
  padding-top: 6.25rem;
}

.p-top-about__title {
  text-align: center;
}

.p-top-about__text {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
.p-top-about__text span {
  display: inline-block;
}

.p-top-about__text-en {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.75;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-top-about__btn {
  margin-top: 64px;
  margin-top: 4rem;
  text-align: center;
}

.p-top-cards {
  margin: 0 auto;
  max-width: 930px;
  max-width: 58.125rem;
  padding: 80px 0 120px;
  padding: 5rem 0 7.5rem;
  width: 100%;
}

.p-top-cards__grid {
  grid-gap: 10px;
  display: grid;
  gap: 10px;
  gap: 0.625rem;
  grid-template-columns: repeat(3, 1fr);
}

.p-top-cards__item {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  padding-top: 3.125rem;
  position: relative;
}
.p-top-cards__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-top-clients {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-top-clients__logo-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
  gap: 1.25rem 0.9375rem;
  justify-content: center;
  margin-top: 64px;
  margin-top: 4rem;
}

.p-top-clients__logo {
  aspect-ratio: 180/120;
  max-width: 100px;
  max-width: 6.25rem;
}

.p-top-gallery__inner {
  margin: 5% 5% 0 5%;
}

.p-top-gallery .splide__slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-gallery .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .splide__slide img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-gallery .swiper-slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-gallery .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .swiper-slide img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-gallery .slick-track {
  display: block;
  width: 100%;
}

.p-top-gallery .slick-slide {
  aspect-ratio: 600/300;
  display: block;
  margin: 0 5px;
  width: 100%;
}

.p-top-gallery .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .slick-slide img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-header {
  background-color: #f6f5f2;
  padding: 80px 120px;
  padding: 5rem 7.5rem;
  width: 100%;
}

.p-top-header__image {
  height: 346px;
  height: 21.625rem;
  margin: 0 auto;
  overflow: hidden;
  width: 800px;
  width: 50rem;
}
.p-top-header__image img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-header__title {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -80px;
  margin-top: -5rem;
}

.p-top-header__logo {
  height: auto;
  width: 260px;
  width: 16.25rem;
}
.p-top-header__logo img {
  height: auto;
  width: 100%;
}

.p-top-header__logo-text {
  color: #5e7d68;
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-top-header__subtitle {
  color: #5e7d68;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}

.p-top-mv-slick {
  background: black;
}

.p-top-mv-slick__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-slick .slick-track {
  display: block;
  width: 100%;
}

.p-top-mv-slick .slick-slide {
  aspect-ratio: 600/300;
  display: block;
  margin: 0 5px;
  width: 100%;
}

.p-top-mv-slick .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-slick .slick-slide img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-mv-splide__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-splide .splide__slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-mv-splide .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-splide .splide__slide img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-mv-swiper__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-swiper .swiper-slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-mv-swiper .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-swiper .swiper-slide img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-mv-swiper .swiper-button-prev,
.p-top-mv-swiper .swiper-button-next {
  text-rendering: initial;
}

.p-top-mv {
  align-items: center;
  background: url(../images/top/img_fv01.png) no-repeat center center/cover;
  content: "";
  display: flex;
  height: calc(100vh - 3.1875rem);
  justify-content: center;
  width: 100%;
}

.p-top-mv__text-container {
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  padding: 50px;
  padding: 3.125rem;
}

.p-top-mv__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}
.p-top-mv__text img {
  margin-left: auto;
  margin-right: auto;
}

.p-top-mv__text + .p-top-mv__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-top-news {
  padding: 14px 40px;
  padding: 0.875rem 2.5rem;
}

.p-top-news-wrap {
  display: flex;
  justify-content: space-between;
}

.p-top-news__title {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-top-news__item {
  display: block;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-top-news__item:hover {
  opacity: 1;
}
.p-top-news__item:hover .p-top-news__date,
.p-top-news__item:hover .p-top-news__cat {
  opacity: 0.8;
}
.p-top-news__item:hover .p-top-news__article-title {
  color: #267f53;
}

.p-top-news__date {
  font-size: 14px;
  font-size: 0.875rem;
  transition: ease 0.3s;
}

.p-top-news__cat {
  border: 1px solid #343835;
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 24px;
  margin-left: 1.5rem;
  min-width: 126px;
  min-width: 7.875rem;
  padding: 4px 10px;
  padding: 0.25rem 0.625rem;
  transition: ease 0.3s;
}

.p-top-news__article-title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 12px;
  margin-top: 0.75rem;
  transition: all 0.3s ease;
}

.p-top-news__btn {
  margin-left: auto;
  padding-left: 20px;
  padding-left: 1.25rem;
}
.p-top-news__btn a {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-size: 0.875rem;
  min-width: 60px;
  min-width: 3.75rem;
  transition: ease 0.3s;
}
.p-top-news__btn a::after {
  background: url(../images/common/icon_arrow02.svg) no-repeat center center/contain;
  content: "";
  content: "";
  display: inline-block;
  height: 6px;
  height: 0.375rem;
  left: 0;
  margin-left: 0.5em;
  position: relative;
  top: -2px;
  transition: ease 0.3s;
  width: 21px;
  width: 1.3125rem;
}
.p-top-news__btn a:hover::after {
  left: 4px;
  left: 0.25rem;
}

.p-top-post__inner {
  margin: 5% 5% 0 5%;
}

.p-top-post .splide__slide {
  display: block;
  width: 100%;
}

.p-top-post .splide__slide a {
  aspect-ratio: 600/400;
  display: block;
}

.p-top-post .splide__slide img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-post .splide__pagination {
  bottom: -2em;
}

.p-top-post .splide__pagination__page.is-active {
  background-color: blue;
}

.p-top-post .swiper {
  padding-bottom: 20px;
}

.p-top-post .swiper-slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-post .swiper-slide img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-post .swiper-pagination {
  bottom: 0;
}

.p-top-post .swiper-button-prev,
.p-top-post .swiper-button-next {
  text-rendering: initial;
}

.p-top-post .slick-track {
  display: block;
  width: 100%;
}

.p-top-post .slick-slide {
  display: block;
  height: 100%;
  margin: 0 5px;
  width: 100%;
}

.p-top-post .slick-slide img {
  -o-object-fit: cover;
  aspect-ratio: 600/300;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-top-post .slick-next,
.p-top-post .slick-prev {
  background: gray;
}

.p-top-search-section {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-top-search {
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
  max-width: 930px;
  max-width: 58.125rem;
  width: 100%;
}

.p-top-search__title {
  align-items: center;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
.p-top-search__title::before {
  background-color: #5e7d68;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 24px;
  height: 1.5rem;
  width: 2px;
  width: 0.125rem;
}
.p-top-search__title p {
  color: #5e635f;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-top-search__box {
  background-color: #5e7d68;
  box-shadow: 0px 0px 30px 0px rgba(34, 34, 32, 0.08);
  padding: 40px;
  padding: 2.5rem;
}

.p-top-search__controls {
  grid-gap: 43px;
  align-items: center;
  display: grid;
  gap: 43px;
  gap: 2.6875rem;
  grid-template-columns: 1fr 1fr 12.5rem;
}

.p-top-search__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%235e635f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 12px center;
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  border: 1px solid #e2e0db;
  box-shadow: 0px 0px 30px 0px rgba(34, 34, 32, 0.08);
  color: #5e635f;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
  height: 48px;
  height: 3rem;
  letter-spacing: 0.05em;
  padding: 0 16px;
  padding: 0 1rem;
  padding-right: 48px;
  padding-right: 3rem;
  width: 100%;
}
.p-top-search__select:focus {
  border-color: #5e7d68;
  outline: none;
}

.p-top-search__clear {
  background-color: #f9f9f9;
  border: none;
  box-shadow: 0px 0px 30px 0px rgba(34, 34, 32, 0.08);
  color: #5e635f;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
  height: 48px;
  height: 3rem;
  letter-spacing: 0.05em;
  transition: background-color 0.3s;
  width: 100%;
}
.p-top-search__clear:hover {
  background-color: #e5e5e5;
}

.p-top-search__result {
  color: #5e635f;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-top: 24px;
  margin-top: 1.5rem;
}
.p-top-search__result span {
  font-weight: 500;
}

.p-top-search__result-text {
  color: #5e635f;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.p-top-works__img-wrap {
  align-items: center;
  background: url(../images/top/img_work01.jpg) no-repeat center center/cover;
  content: "";
  display: flex;
  justify-content: center;
  min-height: 376px;
  min-height: 23.5rem;
  width: 100%;
}

.p-top-works__list-warp {
  margin-left: auto;
  margin-right: auto;
  margin-top: -100px;
  margin-top: -6.25rem;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-top-works__btn {
  margin-top: 64px;
  margin-top: 4rem;
  text-align: center;
}

.p-works-article {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-works-article__wrap {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-works-article__content-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
}

.p-works-article__contents {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-works-article-swiper {
  margin-top: 60px;
  margin-top: 3.75rem;
  position: relative;
}

.p-works-article-swiper .swiper-slide img {
  -o-object-fit: cover;
  aspect-ratio: 1000/500;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-works-article-swiper .swiper-pagination {
  bottom: -25px;
  bottom: -1.5625rem;
}

.p-works-article-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #c9c9c9;
  opacity: 1;
}

.p-works-article-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #98bfa9;
}

.p-works-article-swiper__button-wrap {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 100%;
}
.p-works-article-swiper__button-wrap .swiper-button-prev,
.p-works-article-swiper__button-wrap .swiper-button-next {
  border-radius: 50%;
  height: 60px;
  height: 3.75rem;
  position: relative;
  width: 60px;
  width: 3.75rem;
}

.p-works-article-swiper__button-wrap .swiper-button-next {
  margin-left: 100px;
  margin-left: 6.25rem;
}

.p-works-article-swiper__button-wrap .swiper-button-prev::before,
.p-works-article-swiper__button-wrap .swiper-button-next::before {
  border-right: 3px solid #fff;
  border-right: 0.1875rem solid #fff;
  border-top: 3px solid #fff;
  border-top: 0.1875rem solid #fff;
  content: "";
  height: 24px;
  height: 1.5rem;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 24px;
  width: 1.5rem;
}

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

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

.p-works-article__table {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-works-article__interview {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-works-article__interview-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-works-article__interview-info-wrap {
  align-items: center;
  display: flex;
  margin-top: 44px;
  margin-top: 2.75rem;
}

.p-works-article__interview-img {
  aspect-ratio: 1/1;
  margin-right: 20px;
  margin-right: 1.25rem;
  max-width: 130px;
  max-width: 8.125rem;
}
.p-works-article__interview-img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-works-article__interview-text-box {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.p-works-article__interview-faq .p-faq-list__item-question {
  cursor: auto;
  cursor: initial;
}
.p-works-article__interview-faq .p-faq-list__item-answer {
  display: block;
}
.p-works-article__interview-faq .p-faq-list__item-question::before,
.p-works-article__interview-faq .p-faq-list__item-question::after {
  display: none;
}

.p-works-article__voice {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-works-article__voice-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-works-article__voice-list {
  grid-gap: 60px 10px;
  display: grid;
  gap: 60px 10px;
  gap: 3.75rem 0.625rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-works-article__voice-item {
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  min-height: 160px;
  min-height: 10rem;
}

.p-works-article__voice-img {
  aspect-ratio: 1/1;
  max-width: 160px;
  max-width: 10rem;
}
.p-works-article__voice-img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-works-article__voice-text-box {
  display: flex;
  flex-direction: column;
}

.p-works-article__voice-name {
  font-weight: 700;
  margin-top: auto;
}

.p-works-card__img {
  aspect-ratio: 230/160;
  width: 100%;
}

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

.p-works-card__body {
  position: relative;
}

.p-works-card__info {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  padding: 0.5rem 0;
}

.p-works-card__category li {
  border: 1px solid #000;
  color: #000;
  padding: 5px;
  padding: 0.3125rem;
}

.p-works-card__new {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  left: 0;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  position: absolute;
  top: 0;
}

.p-works-list {
  position: relative;
}

.p-works-list__wrap {
  margin: 32px 0;
  margin: 2rem 0;
}

.p-works-list__title {
  color: #000;
  font-size: 48px;
  font-size: 3rem;
}

.p-works-list__items {
  grid-gap: 50px;
  display: grid;
  gap: 50px;
  gap: 3.125rem;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-works-list__cards {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-works__title {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-works__items {
  grid-gap: 50px;
  display: grid;
  gap: 50px;
  gap: 3.125rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  margin-top: 1rem;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-works__pagination {
  margin-top: 80px;
  margin-top: 5rem;
}

.pagination {
  width: 100%;
}
.nav-links ul {
  display: flex;
  justify-content: center;
}

.nav-links ul li a,
.nav-links ul li span {
  align-items: center;
  color: #7f7f7f;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  font-size: 1rem;
}

.nav-links ul li span.current {
  color: #343835;
}

.nav-links ul li {
  margin: 0 5px;
  margin: 0 0.3125rem;
  position: relative;
}

.nav-links ul li a,
.nav-links ul li span {
  display: block;
  padding: 5px;
  padding: 0.3125rem;
  width: 100%;
}

.nav-links ul li .nav-links ul .dots {
  padding-left: 0;
  padding-right: 0;
}

.nav-links ul li a.prev,
.nav-links ul li a.next {
  height: 20px;
  height: 1.25rem;
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  width: 20px;
  width: 1.25rem;
}

.nav-links ul li a.next {
  background: url(../images/common/icon_arrow02.svg) no-repeat center center/contain;
  margin-left: 40px;
  margin-left: 2.5rem;
}

.nav-links ul li a.prev {
  background: url(../images/common/icon_arrow03.svg) no-repeat center center/contain;
  margin-right: 40px;
  margin-right: 2.5rem;
}

.u-desktop {
  display: none;
}

.u-mobile {
  display: block;
}

@media (prefers-reduced-motion: reduce){
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 375px){
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px){
  html {
    font-size: 1.6vw;
  }
  a:hover {
    opacity: 0.8;
  }
  .c-btn {
    font-size: 24px;
    font-size: 1.5rem;
    min-width: 400px;
    min-width: 25rem;
  }
  .c-btn01 {
    font-size: 16px;
    font-size: 1rem;
  }
  .c-title-section {
    font-size: 50px;
    font-size: 3.125rem;
  }
  .c-title-section span {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .l-inner {
    max-width: 1050px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .l-inner-s {
    max-width: 930px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .p-about {
    margin-top: 200px;
    margin-top: 12.5rem;
  }
  .p-about__text-box {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-about__top-text {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.75;
  }
  .p-about__top-text-en,
  .p-about__text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
  .p-about__top-text-en {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-about__text {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-about__img {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-table__list {
    font-size: 16px;
    font-size: 1rem;
    padding-bottom: 29px;
    padding-bottom: 1.8125rem;
  }
  .p-table__list + .p-table__list {
    margin-top: 29px;
    margin-top: 1.8125rem;
  }
  .p-table__term {
    max-width: 240px;
    max-width: 15rem;
  }
  .p-company {
    margin-top: 200px;
    margin-top: 12.5rem;
  }
  .p-company__map-wrap {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-company__map {
    aspect-ratio: 1400/600;
  }
  .p-company__map-text {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-contact__title {
    margin-top: 200px;
    margin-top: 12.5rem;
  }
  .p-contact__top-text {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-contact__contents {
    display: inline-block;
    margin: 0;
    max-width: none;
    max-width: initial;
  }
  .p-contact__contents .wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 1em;
  }
  .p-contact__content {
    align-items: center;
    display: flex;
    gap: 20px;
    gap: 1.25rem;
  }
  .p-contact__content--large {
    align-items: flex-start;
  }
  .p-contact__content--large .p-contact__head {
    position: relative;
    top: 1em;
  }
  .p-contact__head {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .p-contact__required {
    margin-left: auto;
  }
  .p-contact__btn-wrap {
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
    position: relative;
  }
  .p-contact__btn input[type=submit],
  .p-contact__btn input[type=button] {
    min-width: 400px;
    min-width: 25rem;
  }
  .wpcf7-spinner {
    bottom: 20px;
    right: -15%;
  }
  .p-contact__btn--return {
    left: 0;
    position: absolute;
  }
  .p-contact__send-message {
    font-size: 42px;
    font-size: 2.625rem;
  }
  .p-contact__description {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-faq-list__item-question {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 14px 60px 14px 80px;
    padding: 0.875rem 3.75rem 0.875rem 5rem;
  }
  .p-faq-list__item-question::before,
  .p-faq-list__item-question::after {
    top: 32px;
    top: 2rem;
    width: 20px;
    width: 1.25rem;
  }
  .p-faq-list__item-answer {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 20px 40px 15px 80px;
    padding: 1.25rem 2.5rem 0.9375rem 5rem;
  }
  .p-faq {
    margin-top: 200px;
    margin-top: 12.5rem;
  }
  .p-faq__inner {
    max-width: 1200px;
    max-width: 75rem;
    padding: 0 25px;
    padding: 0 1.5625rem;
  }
  .p-footer__btn {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-footer__tel-wrap {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-footer__tel {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .p-footer__bottom-wrap {
    flex-direction: row;
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-footer__link-wrap {
    margin-left: 60px;
    margin-left: 3.75rem;
  }
  .p-header {
    height: 70px;
    height: 4.375rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-header__inner {
    padding: 0 50px;
    padding: 0 3.125rem;
  }
  .p-header__logo {
    max-width: 200px;
    max-width: 12.5rem;
  }
  .p-header__nav {
    display: block;
  }
  .p-header__hamburger span {
    width: 60px;
    width: 3.75rem;
  }
  .p-header__hamburger span:nth-of-type(1) {
    top: -10px;
    top: -0.625rem;
  }
  .p-header__hamburger span:nth-of-type(3) {
    top: 10px;
    top: 0.625rem;
    width: 30px;
    width: 1.875rem;
  }
  .p-header__drawer-item a {
    font-size: 24px;
    font-size: 1.5rem;
    padding: 20px 0;
    padding: 1.25rem 0;
  }
  .p-members-detail {
    padding: 60px 40px;
    padding: 3.75rem 2.5rem;
    padding-top: 200px;
    padding-top: 12.5rem;
  }
  .p-news__title {
    margin-top: 200px;
    margin-top: 12.5rem;
  }
  .p-news__container {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-news__item {
    align-items: center;
    display: flex;
    margin-left: 38px;
    margin-left: 2.375rem;
    margin-top: 0px;
    margin-top: 0rem;
    padding: 24px 0;
    padding: 1.5rem 0;
  }
  .p-news__cat {
    margin-left: 30px;
    margin-left: 1.875rem;
  }
  .p-news__article-title {
    margin-left: 48px;
    margin-left: 3rem;
    margin-top: 0px;
    margin-top: 0rem;
  }
  .p-policy {
    margin-top: 200px;
    margin-top: 12.5rem;
  }
  .p-policy__contents {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-policy__inner {
    padding: 0 25px;
  }
  .p-post-connect__items {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 40px;
    row-gap: 2.5rem;
  }
  .p-post-list__cards {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-post-list__btn {
    margin: 28px auto 0;
    margin: 1.75rem auto 0;
    max-width: calc(61.25rem + 50px);
    padding: 0 10px;
    padding: 0 0.625rem;
    width: 100%;
  }
  .p-tab__menu-item {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-tab__menu-item.is-active::before {
    bottom: -1px;
    bottom: -0.0625rem;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-terms {
    margin-top: 200px;
    margin-top: 12.5rem;
  }
  .p-terms__contents {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-terms__inner {
    padding: 0 25px;
  }
  .p-top-about {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
  .p-top-about__text {
    font-size: 40px;
    font-size: 2.5rem;
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-top-about__text-en {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-top-about__btn {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-top-clients {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .p-top-clients__logo-wrap {
    gap: 25px 20px;
    gap: 1.5625rem 1.25rem;
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-top-clients__logo {
    max-width: 180px;
    max-width: 11.25rem;
  }
  .p-top-news {
    padding: 0 40px;
    padding: 0 2.5rem;
  }
  .p-top-news__container {
    align-items: center;
    display: flex;
    flex-direction: row;
  }
  .p-top-news__item {
    align-items: center;
    display: flex;
    margin-left: 38px;
    margin-left: 2.375rem;
    margin-top: 0px;
    margin-top: 0rem;
    padding: 10px 0;
    padding: 0.625rem 0;
  }
  .p-top-news__cat {
    margin-left: 30px;
    margin-left: 1.875rem;
  }
  .p-top-news__article-title {
    margin-left: 48px;
    margin-left: 3rem;
    margin-top: 0px;
    margin-top: 0rem;
  }
  .p-top-search-section {
    margin-top: 0px;
    margin-top: 0rem;
  }
  .p-top-search__title p {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-top-works__list-warp {
    max-width: none;
    max-width: initial;
  }
  .p-top-works__btn {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-works-article {
    margin-top: 200px;
    margin-top: 12.5rem;
  }
  .p-works-article__content-title {
    font-size: 42px;
    font-size: 2.625rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-works-article__contents {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-works-article-swiper .swiper-pagination {
    bottom: -30px;
    bottom: -1.875rem;
  }
  .p-works-article-swiper__button-wrap .swiper-button-prev,
  .p-works-article-swiper__button-wrap .swiper-button-next {
    height: 100px;
    height: 6.25rem;
    width: 100px;
    width: 6.25rem;
  }
  .p-works-article-swiper__button-wrap .swiper-button-prev::before,
  .p-works-article-swiper__button-wrap .swiper-button-next::before {
    height: 30px;
    height: 1.875rem;
    width: 30px;
    width: 1.875rem;
  }
  .p-works-article__interview {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-works-article__interview-title {
    font-size: 32px;
    font-size: 2rem;
  }
  .p-works-article__interview-text-box {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-works-article__voice {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-works-article__voice-title {
    font-size: 32px;
    font-size: 2rem;
  }
  .p-works-list__items {
    -moz-column-gap: 1.6875rem;
         column-gap: 1.6875rem;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 40px;
    row-gap: 2.5rem;
  }
  .p-works-list__cards {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-works__title {
    margin-top: 200px;
    margin-top: 12.5rem;
  }
  .p-works__items {
    -moz-column-gap: 1.6875rem;
         column-gap: 1.6875rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 80px;
    margin-top: 5rem;
    max-width: none;
    max-width: initial;
    row-gap: 40px;
    row-gap: 2.5rem;
  }
  .nav-links ul li a,
  .nav-links ul li span {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .nav-links ul li {
    margin: 0 10px;
    margin: 0 0.625rem;
  }
  .nav-links ul li a,
  .nav-links ul li span {
    padding: 10px;
    padding: 0.625rem;
  }
  .u-desktop {
    display: block;
  }
  .u-mobile {
    display: none;
  }
}

@media (min-width: 1000px){
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px){
  .c-card {
    width: 100%;
  }
  .c-card__name {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .c-card__tag {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c-card__location {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c-card__location p {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c-card__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .marker-photo,
  .marker-photo-placeholder {
    border-width: 2px;
    height: 40px;
    height: 2.5rem;
    width: 40px;
    width: 2.5rem;
  }
  .marker-photo-wrapper {
    height: 40px;
    height: 2.5rem;
    width: 40px;
    width: 2.5rem;
  }
  .marker-badge {
    bottom: -3px;
    bottom: -0.1875rem;
    font-size: 14px;
    font-size: 0.875rem;
    height: 20px;
    height: 1.25rem;
    right: -3px;
    right: -0.1875rem;
    width: 20px;
    width: 1.25rem;
  }
  .info-window {
    max-width: 240px;
    max-width: 15rem;
  }
  .info-window h3 {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .info-window p {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .c-member-table__row {
    flex-direction: column;
  }
  .c-member-table__header {
    padding: 15px 20px;
    padding: 0.9375rem 1.25rem;
    width: 100%;
  }
  .c-member-table__content {
    padding: 20px 20px;
    padding: 1.25rem 1.25rem;
  }
  .c-member-table__row--last .c-member-table__content {
    padding: 12px 20px;
    padding: 0.75rem 1.25rem;
  }
  .c-member-table__tags {
    gap: 6px 8px;
    gap: 0.375rem 0.5rem;
  }
  .c-member-table__tag {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 4px 10px;
    padding: 0.25rem 0.625rem;
  }
  .c-member-table__text p {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c-member-table__icons {
    gap: 8px;
    gap: 0.5rem;
  }
  .c-member-table__icon {
    height: 36px;
    height: 2.25rem;
    width: 36px;
    width: 2.25rem;
  }
  .c-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-member-detail__title {
    font-size: 24px;
  }
  .p-member-detail__main .section-title {
    font-size: 20px;
  }
  .p-member-detail__map-section .member-map {
    height: 300px;
  }
  .p-member-detail__gallery .gallery-grid {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-member-gallery {
    gap: 10px;
    gap: 0.625rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-member-gallery__item {
    aspect-ratio: 1/1;
    height: auto;
    width: 100%;
  }
  .p-member-map__container {
    height: 400px;
    height: 25rem;
  }
  .p-member-map__address-row {
    flex-direction: column;
  }
  .p-member-map__address-header {
    width: 100%;
  }
  .p-member-map__address-content {
    width: 100%;
  }
  .p-members-map__filter .filter-controls {
    align-items: stretch;
    flex-direction: column;
  }
  .p-members-map__filter .filter-reset-btn {
    width: 100%;
  }
  .p-members-map__map {
    height: 400px;
  }
  .p-members-map__cards {
    grid-template-columns: 1fr;
  }
  .p-members-title {
    gap: 16px;
    gap: 1rem;
  }
  .p-members-title__image {
    height: 80px;
    height: 5rem;
    width: 80px;
    width: 5rem;
  }
  .p-members-title__name {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-top-cards {
    padding: 40px 20px 60px;
    padding: 2.5rem 1.25rem 3.75rem;
  }
  .p-top-cards__grid {
    gap: 24px;
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }
  .p-top-header {
    padding: 40px 20px;
    padding: 2.5rem 1.25rem;
  }
  .p-top-header__image {
    aspect-ratio: 800/346;
    height: auto;
    width: 100%;
  }
  .p-top-header__title {
    margin-top: -40px;
    margin-top: -2.5rem;
  }
  .p-top-header__logo {
    width: 200px;
    width: 12.5rem;
  }
  .p-top-header__logo-text {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .p-top-header__subtitle {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-top-search__box {
    padding: 24px 16px;
    padding: 1.5rem 1rem;
  }
  .p-top-search__controls {
    gap: 16px;
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .p-top-search__select {
    width: 100%;
  }
  .p-top-search__clear {
    width: 100%;
  }
}
/*# sourceMappingURL=styles.css.map */
