@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,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  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 {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* 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 {
  max-width: 100%;
  display: block;
}

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

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
@media (max-width: 23.4375rem) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 1rem;
}
@media screen and (min-width: 48rem) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 75rem) {
  html {
    font-size: 1rem;
  }
}

body {
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  background: #f5f2ed;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

body.is-drawerOpen {
  overflow: hidden;
}

.l-site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

body.admin-bar .l-site {
  min-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
  min-height: calc(100svh - var(--wp-admin--admin-bar--height, 0px));
}

.l-main {
  flex: 1 0 auto;
}

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

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

a:focus-visible {
  outline: 0.125rem solid #548672;
  outline-offset: 0.125rem;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f5f2ed;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.51875rem 0.51875rem;
  padding-inline: 0.875rem 0.9375rem;
}
@media screen and (min-width: 48rem) and (max-width: 62.4375rem) {
  .l-header__inner {
    max-width: 72.5rem;
    margin-inline: auto;
    padding-block: 0.6875rem 0.75rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 62.5rem) {
  .l-header__inner {
    max-width: 80.625rem;
    margin-inline: auto;
    padding-block: 1.75rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 81.25rem) {
  .l-header__inner {
    padding-inline: 0;
  }
}

.l-header__logo {
  display: block;
  flex-shrink: 0;
  width: 5.75rem;
  font-size: 1em;
  font-weight: inherit;
  line-height: 1;
}
@media screen and (min-width: 48rem) and (max-width: 62.4375rem) {
  .l-header__logo {
    width: 100px;
  }
}
@media screen and (min-width: 62.5rem) {
  .l-header__logo {
    width: 8.875rem;
  }
}

.l-header__logo a {
  display: block;
}

.l-footer {
  background: #548672;
  color: #fff;
}

.l-footer__inner {
  display: grid;
  justify-items: center;
  padding-block: 2.5rem 1.9375rem;
  padding-inline: 0;
}
@media screen and (min-width: 48rem) {
  .l-footer__inner {
    max-width: 72.5rem;
    margin-inline: auto;
    grid-template-columns: 6.25rem 1.875rem 24.375rem minmax(0, 1fr) max-content 0.9375rem max-content;
    align-items: center;
    justify-items: start;
    min-height: 10rem;
    padding-block: 2.25rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 75rem) {
  .l-footer__inner {
    padding-inline: 0;
  }
}

.l-footer__logo {
  grid-row: 2;
  width: 3.90625rem;
  font-size: 0;
  margin-top: 0.625rem;
}
@media screen and (min-width: 48rem) {
  .l-footer__logo {
    grid-column: 1;
    margin-top: 0;
    grid-row: 1/span 2;
    width: 6.25rem;
  }
}

.l-footer__address {
  grid-row: 3;
  margin-top: 1.125rem;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2.08;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 48rem) {
  .l-footer__address {
    grid-column: 3;
    grid-row: 1/span 2;
    margin-top: 0;
    font-size: 0.9375rem;
    line-height: 2;
    text-align: left;
  }
}

.l-footer__nav {
  grid-row: 1;
  margin-top: 0;
}
@media screen and (min-width: 48rem) {
  .l-footer__nav {
    grid-column: 4/8;
    grid-row: 1;
    justify-self: end;
  }
}

.l-footer__navList {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-items: center;
  -moz-column-gap: 2.1875rem;
       column-gap: 2.1875rem;
  row-gap: 0.25rem;
  margin-left: 1.5rem;
}
@media screen and (min-width: 48rem) {
  .l-footer__navList {
    margin-left: 0;
    row-gap: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }
}

.l-footer__navLink {
  position: relative;
  display: inline-block;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2.54;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .l-footer__navLink {
    font-size: 1.0625rem;
    line-height: 2.23;
  }
}

.l-footer__navLink::after {
  position: absolute;
  right: 0;
  bottom: 0.125rem;
  left: 0;
  height: 0.0625rem;
  background: #fff;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}

@media (any-hover: hover) {
  .l-footer__privacyLink:hover {
    opacity: 0.7;
  }
  .l-footer__navLink:hover {
    opacity: 1;
  }
  .l-footer__navLink:hover::after {
    animation: c-btn-underline-flow 0.6s ease forwards;
  }
}
.l-footer__privacy {
  grid-row: 4;
  margin-top: 0.625rem;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 2.54;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .l-footer__privacy {
    grid-column: 5;
    grid-row: 2;
    margin-top: 0.75rem;
    justify-self: end;
    font-size: 1rem;
    line-height: 2.37;
  }
}

.l-footer__privacyLink {
  position: relative;
  display: block;
  line-height: 1;
}
@media screen and (min-width: 48rem) {
  .l-footer__privacyLink {
    line-height: 2.3;
  }
}

.l-footer__privacyLink::after {
  position: absolute;
  right: 0;
  bottom: 0.125rem;
  left: 0;
  height: 0.0625rem;
  background: #fff;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}

@media (any-hover: hover) {
  .l-footer__privacyLink:hover {
    opacity: 1;
  }
  .l-footer__privacyLink:hover::after {
    animation: c-btn-underline-flow 0.6s ease forwards;
  }
}
.l-footer__copyright {
  grid-row: 5;
  margin-top: 1.75rem;
  color: #8bb6a5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 48rem) {
  .l-footer__copyright {
    grid-column: 7;
    grid-row: 2;
    margin-top: 0.75rem;
    justify-self: start;
    font-size: 0.875rem;
    text-align: right;
    white-space: nowrap;
  }
}

.l-footer__copyrightLink {
  display: inline-block;
}

.c-inner {
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 48rem) {
  .c-inner {
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 81.25rem) {
  .c-inner {
    padding-inline: 0;
  }
}

.c-inner--mv {
  max-width: 72.5rem;
  padding-inline: 0.3125rem;
}
@media screen and (min-width: 48rem) {
  .c-inner--mv {
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 75rem) {
  .c-inner--mv {
    padding-inline: 0;
  }
}

.c-inner--news {
  max-width: 56.25rem;
  padding-inline: 1.5625rem;
}
@media screen and (min-width: 62.5rem) {
  .c-inner--news {
    padding-inline: 0;
  }
}

.c-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-flex;
  align-items: center;
  border: 0;
  color: #548672;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: transparent;
  cursor: pointer;
}

.c-btn--viewMore {
  position: relative;
  justify-content: center;
  padding-block: 0.25rem;
  font-size: 0.84375rem;
  line-height: 1.75;
}
@media screen and (min-width: 48rem) {
  .c-btn--viewMore {
    padding-right: 0.9375rem;
    font-size: 1.125rem;
  }
}

.c-btn--viewMore::after {
  position: absolute;
  right: 0;
  bottom: -0.375rem;
  left: 0;
  height: 0.0625rem;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}

.c-btn--submit {
  justify-content: center;
  padding-block: 0.25rem;
  border-bottom: 0.0625rem solid currentColor;
  font-size: 0.84375rem;
  line-height: 1.75;
}
@media screen and (min-width: 48rem) {
  .c-btn--submit {
    font-size: 1.125rem;
  }
}

@media (any-hover: hover) {
  .c-btn--viewMore:hover {
    opacity: 1;
  }
  .c-btn--viewMore:hover::after {
    animation: c-btn-underline-flow 0.6s ease forwards;
  }
  .c-btn--submit:hover {
    opacity: 0.7;
  }
}
@keyframes c-btn-underline-flow {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.c-btn__text {
  display: block;
}

.c-btn__arrow {
  display: block;
  width: 1.045rem;
  height: 0.72375rem;
  margin-left: 2.8125rem;
  background-image: url("../images/common/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  will-change: transform, opacity;
}
@media screen and (min-width: 48rem) {
  .c-btn__arrow {
    width: 1.25rem;
    height: 0.8125rem;
    margin-left: 3.5rem;
  }
}

@media (any-hover: hover) {
  .c-btn--viewMore:hover .c-btn__arrow {
    animation: c-btn-arrow-loop 0.6s forwards;
  }
  .c-btn--submit:hover .c-btn__arrow {
    animation: c-btn-arrow-loop 0.6s forwards;
  }
}
@keyframes c-btn-arrow-loop {
  0% {
    opacity: 1;
    transform: translateX(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 0;
    transform: translateX(30px);
  }
  51% {
    opacity: 0;
    transform: translateX(-30px);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-sectionTitle {
  color: #548672;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 48rem) {
  .c-sectionTitle {
    font-size: 2.25rem;
  }
}

.c-pagination {
  display: flex;
  justify-content: center;
}

.c-pagination__list {
  display: flex;
  justify-content: center;
  gap: 0.4625rem;
}
@media screen and (min-width: 48rem) {
  .c-pagination__list {
    gap: 0.5625rem;
  }
}

.c-pagination__link {
  display: grid;
  place-items: center;
  width: 2.7371875rem;
  aspect-ratio: 1;
  border: 0.0625rem solid #c0c0c0;
  border-radius: 0.1875rem;
  color: #333;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 0.709625rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.025em;
  background: #f5f2ed;
  transition: border-color 0.6s ease, color 0.6s ease, background-color 0.6s ease;
}
@media screen and (min-width: 48rem) {
  .c-pagination__link {
    width: 3.0375rem;
    border-radius: 0.375rem;
    font-size: 0.7875rem;
  }
}

.c-pagination__link[aria-current=page] {
  border-color: #656565;
  color: #fff;
  font-weight: 500;
  background: #656565;
}

@media (hover: hover) and (pointer: fine) {
  .c-pagination__link:not([aria-current=page]):hover {
    border-color: #c8c4bd;
    color: #fff;
    font-weight: 500;
    background: #c8c4bd;
  }
}

.c-pagination__link--arrow {
  color: #706562;
  font-size: 0.9375rem;
  letter-spacing: 0;
}
@media screen and (min-width: 48rem) {
  .c-pagination__link--arrow {
    font-size: 1.125rem;
  }
}

.c-pagination__arrowText {
  transform: translateY(-0.15em);
}
@media screen and (min-width: 48rem) {
  .c-pagination__arrowText {
    transform: translateY(-0.05em);
  }
}

.p-gnav {
  display: none;
}
@media screen and (min-width: 62.5rem) {
  .p-gnav {
    display: block;
  }
}

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

.p-gnav__item {
  margin-left: 2.5rem;
}

.p-gnav__item:first-child {
  margin-left: 0;
}

.p-gnav__link {
  position: relative;
  display: block;
  color: #548672;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1.03125rem;
  font-weight: 400;
  line-height: 2.3;
  letter-spacing: 0.05em;
}

.p-gnav__link::after {
  position: absolute;
  right: 0;
  bottom: 0.3125rem;
  left: 0;
  height: 0.0625rem;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}

@media (any-hover: hover) {
  .p-gnav__link:hover {
    opacity: 1;
  }
  .p-gnav__link:hover::after {
    animation: c-btn-underline-flow 0.3s ease forwards;
  }
}
.p-hamburger {
  display: grid;
  justify-items: end;
  align-content: center;
  row-gap: 0.390625rem;
  width: 3.125rem;
  padding-block: 0;
  padding-inline: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 48rem) and (max-width: 62.4375rem) {
  .p-hamburger {
    width: 70px;
  }
}
@media screen and (min-width: 62.5rem) {
  .p-hamburger {
    display: none;
  }
}

.p-hamburger__bar {
  display: block;
  width: 2.8125rem;
  height: 0.0625rem;
  background: #548672;
}
@media screen and (min-width: 48rem) and (max-width: 62.4375rem) {
  .p-hamburger__bar {
    width: 45px;
    height: 1px;
  }
}

.p-hamburger__bar--short {
  width: 1.875rem;
}
@media screen and (min-width: 48rem) and (max-width: 62.4375rem) {
  .p-hamburger__bar--short {
    width: 30px;
  }
}

.p-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 100;
  width: 10rem;
  height: 100dvh;
  padding-block: 1.25rem 2.5rem;
  padding-inline: 0;
  background: #548672;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
}
@media screen and (min-width: 48rem) and (max-width: 62.4375rem) {
  .p-drawer {
    width: 200px;
  }
}
@media screen and (min-width: 62.5rem) {
  .p-drawer {
    display: none;
  }
}

.p-drawer.is-open {
  transform: translate3d(0, 0, 0);
}

.p-drawer__close {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 1.5rem;
  margin-inline: auto 0.9375rem;
  padding-block: 0;
  padding-inline: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 48rem) and (max-width: 62.4375rem) {
  .p-drawer__close {
    width: 4.125rem;
    height: 2.25rem;
    margin-inline: auto 2.3125rem;
  }
}

.p-drawer__closeIcon {
  display: block;
  width: 2.8125rem;
  height: 1.09375rem;
}
@media screen and (min-width: 48rem) and (max-width: 62.4375rem) {
  .p-drawer__closeIcon {
    width: 4.21875rem;
    height: 1.640625rem;
  }
}

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

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

.p-drawer__item + .p-drawer__item {
  margin-top: 2.5rem;
}

.p-drawer__link {
  display: inline-block;
  padding-block: 0.5rem;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 48rem) and (max-width: 62.4375rem) {
  .p-drawer__link {
    width: 70px;
    font-size: 16px;
  }
}

@media (any-hover: hover) {
  .p-drawer__link:hover {
    opacity: 0.7;
  }
}
.p-mv {
  padding-top: 0;
}

.p-mv__visual {
  max-width: 72.5rem;
  margin-inline: auto;
  padding-inline: 0;
  aspect-ratio: 750/491;
  overflow: hidden;
}
@media screen and (min-width: 48rem) {
  .p-mv__visual {
    padding-inline: 1.5625rem;
    aspect-ratio: 29/19;
  }
}
@media screen and (min-width: 75rem) {
  .p-mv__visual {
    padding-inline: 0;
  }
}

.p-mv__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-mv__visualLink,
.p-mv__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .p-mv__visualLink:hover img {
    transform: scale(1.05);
  }
}
.p-mv__gallery {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 48rem) {
  .p-mv__gallery {
    margin-top: 0.625rem;
  }
}

.p-mv__button {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 48rem) {
  .p-mv__button {
    margin-top: 4.0625rem;
  }
}

.p-mvGallery {
  max-width: 72.5rem;
  margin-inline: auto;
  padding-inline: 0;
}
@media screen and (min-width: 48rem) {
  .p-mvGallery {
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 75rem) {
  .p-mvGallery {
    padding-inline: 0;
  }
}

.p-mvGallery__list {
  display: grid;
  grid-template-areas: "posA posB" "posC posB" "posE posF" "posE posG";
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, 7.40625rem);
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  row-gap: 0.3125rem;
  background: #f5f2ed;
  padding-inline: 0.3125rem;
}
@media screen and (min-width: 48rem) {
  .p-mvGallery__list {
    grid-template-areas: "posA posB posC" "posD posB posE" "posF posG posE";
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, 15.625rem);
    gap: 0.625rem;
    background: #f5f2ed;
    padding-inline: 0;
  }
}

.p-mvGallery__item {
  overflow: hidden;
  background: #f5f2ed;
}
@media screen and (min-width: 48rem) {
  .p-mvGallery__item {
    background: #f5f2ed;
  }
}

.p-mvGallery__item picture,
.p-mvGallery__item img {
  width: 100%;
  height: 100%;
}

.p-mvGallery__item picture {
  display: block;
}

.p-mvGallery__item img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-mvGallery__link {
  display: block;
  width: 100%;
  height: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .p-mvGallery__link:hover img {
    transform: scale(1.05);
  }
}
.p-mvGallery__item--hideSp {
  display: none;
}
@media screen and (min-width: 48rem) {
  .p-mvGallery__item--hideSp {
    display: block;
  }
}

.p-mvGallery__item--posA {
  grid-area: posA;
}

.p-mvGallery__item--posB {
  grid-area: posB;
}

.p-mvGallery__item--posC {
  grid-area: posC;
}

.p-mvGallery__item--posD {
  grid-area: posD;
}

.p-mvGallery__item--posE {
  grid-area: posE;
}

.p-mvGallery__item--posF {
  grid-area: posF;
}

.p-mvGallery__item--posG {
  grid-area: posG;
}

.p-news {
  max-width: 56.25rem;
  margin-top: 4.375rem;
  margin-bottom: 5rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (min-width: 48rem) {
  .p-news {
    margin-top: 6.25rem;
    margin-bottom: 7.5rem;
  }
}
@media screen and (min-width: 62.5rem) {
  .p-news {
    padding-inline: 0;
  }
}

.p-news__title {
  margin-inline: auto;
}

.p-news__list {
  margin-top: 2.1875rem;
  border-top: 0.0625rem solid #cad1ce;
}
@media screen and (min-width: 48rem) {
  .p-news__list {
    margin-top: 2.8125rem;
  }
}

.p-news__item {
  border-bottom: 0.0625rem solid #cad1ce;
}

.p-news__link {
  display: block;
  padding-block: 1.375rem;
}
@media screen and (min-width: 48rem) {
  .p-news__link {
    padding-block: 2.25rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .p-news__link:hover {
    opacity: 1;
  }
  .p-news__link:hover .p-news__text {
    color: #548672;
  }
  .p-news__link:hover .p-news__text::after {
    opacity: 1;
  }
}
.p-news__date {
  display: block;
  color: #548672;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-news__date {
    font-size: 0.9375rem;
  }
}

.p-news__text {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-top: 0.6875rem;
  margin-bottom: -0.1875rem;
  padding-bottom: 0.0625rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.87;
  letter-spacing: 0.05em;
  transition: color 0.6s ease;
}
.p-news__text::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.0625rem;
  background: currentColor;
  content: "";
  opacity: 0;
  transition: opacity 0.7s ease;
}
@media screen and (min-width: 48rem) {
  .p-news__text {
    overflow: hidden;
    margin-top: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.75;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.p-news__button {
  display: flex;
  justify-content: center;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 48rem) {
  .p-news__button {
    margin-top: 3.75rem;
  }
}

.p-pageTitle {
  padding-top: 3.125rem;
  color: #548672;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 48rem) {
  .p-pageTitle {
    padding-top: 6.875rem;
    font-size: 2.25rem;
  }
}

@media screen and (min-width: 48rem) {
  .p-pageTitle--detail {
    padding-top: 7.5rem;
    font-size: 2.25rem;
  }
}

.p-categoryNav {
  max-width: 20.9375rem;
  margin-inline: auto;
  padding-top: 2.8125rem;
}
@media screen and (min-width: 48rem) {
  .p-categoryNav {
    max-width: 67.5rem;
    margin-top: 5.375rem;
    padding-top: 0;
    border-top: 0;
  }
}

.p-categoryNav__title {
  color: #528672;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-categoryNav__title {
    font-size: 2.125rem;
  }
}

.p-categoryNav__list {
  display: grid;
  row-gap: 0.625rem;
  margin-top: 1rem;
}
@media screen and (min-width: 48rem) {
  .p-categoryNav__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 0.9375rem;
         column-gap: 0.9375rem;
    row-gap: 1.875rem;
    margin-top: 2.125rem;
  }
}

.p-categoryNav__item {
  display: inline-block;
}

.p-categoryNav__link {
  position: relative;
  display: inline-block;
  padding-bottom: 0.0625rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.p-categoryNav__link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.0625rem;
  background: currentColor;
  content: "";
  opacity: 0;
  transition: opacity 0.7s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-categoryNav__link:hover::after {
    opacity: 1;
  }
}
@media screen and (min-width: 48rem) {
  .p-categoryNav__link {
    font-size: 1.0625rem;
    line-height: 1;
  }
}

@media screen and (min-width: 48rem) {
  .p-categoryNav--horizontal {
    display: grid;
    grid-template-columns: 9.625rem minmax(0, 17.3125rem) minmax(0, 17.3125rem);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    align-items: start;
    max-width: 56.25rem;
    margin-top: 5.5rem;
  }
}

@media screen and (min-width: 48rem) {
  .p-categoryNav--horizontal .p-categoryNav__title {
    font-size: 1.625rem;
    line-height: 1.46;
  }
}

@media screen and (min-width: 48rem) {
  .p-categoryNav--horizontal .p-categoryNav__list {
    grid-column: 2/4;
    grid-template-columns: repeat(2, minmax(0, 17.3125rem));
    -moz-column-gap: 2.1875rem;
         column-gap: 2.1875rem;
    row-gap: 0;
    margin-top: 0;
    margin-left: 4.0625rem;
  }
}

@media screen and (min-width: 48rem) {
  .p-categoryNav--horizontal .p-categoryNav__link {
    font-size: 1.0625rem;
    line-height: 2.59;
  }
}

@media screen and (min-width: 48rem) {
  .p-categoryNav--horizontal .p-categoryNav__link::after {
    bottom: calc((1lh - 1em) / 2);
  }
}

.p-works {
  padding-inline: 1.25rem;
}

.p-works__inner {
  max-width: 67.5rem;
  margin-inline: auto;
}

.p-works__list {
  display: grid;
  row-gap: 2.40625rem;
  margin-top: 0;
}
@media screen and (min-width: 48rem) {
  .p-works__list {
    grid-template-columns: repeat(2, minmax(0, 32.5rem));
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    row-gap: 4.6875rem;
    margin-top: 0;
  }
}

.p-works__pagination {
  margin-top: 2.5rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 48rem) {
  .p-works__pagination {
    margin-top: 2.5rem;
    margin-bottom: 7.5rem;
  }
}

.p-works__categoryNav {
  margin-bottom: 2.0625rem;
}
@media screen and (min-width: 48rem) {
  .p-works__categoryNav {
    display: grid;
    grid-template-columns: 9.625rem minmax(0, 1fr);
    -moz-column-gap: 8.125rem;
         column-gap: 8.125rem;
    align-items: start;
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 48rem) {
  .p-works__categoryNav .p-categoryNav__list {
    display: block;
    -moz-columns: 2 17.3125rem;
         columns: 2 17.3125rem;
    -moz-column-gap: 3.125rem;
         column-gap: 3.125rem;
    margin-top: 0;
  }
}

@media screen and (min-width: 48rem) {
  .p-works__categoryNav .p-categoryNav__item {
    display: block;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }

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

@media screen and (min-width: 48rem) {
  .p-works__categoryNav .p-categoryNav__title {
    font-size: 1.625rem;
    line-height: 1.46;
  }
}

.p-worksCard {
  display: block;
}

.p-worksCard__image {
  display: block;
  aspect-ratio: 4/3;
  background: #e9e5dd;
  overflow: hidden;
}

.p-worksCard__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .p-worksCard:hover .p-worksCard__image img {
    transform: scale(1.05);
  }
}
.p-worksCard--noImage .p-worksCard__image {
  display: grid;
  place-items: center;
}

.p-worksCard__meta {
  display: grid;
  grid-template-columns: 6.375rem minmax(0, 1fr);
  -moz-column-gap: 0rem;
       column-gap: 0rem;
  margin-top: 1.25rem;
  color: #333;
  font-size: 0.875rem;
  line-height: 2.07;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-worksCard__meta {
    grid-template-columns: 7.75rem minmax(0, 1fr);
    margin-top: 1.5625rem;
    font-size: 1.0625rem;
    line-height: 2.24;
  }
}

.p-worksCard__term {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.p-worksCard__description {
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.p-worksCard__descriptionTitle {
  display: block;
}

.p-worksCard__descriptionFormerOffice {
  display: block;
  white-space: nowrap;
}

.p-worksDetail {
  padding-inline: 1.25rem;
}

.p-worksDetail__inner {
  max-width: 56.25rem;
  margin-inline: auto;
}

.p-worksDetail__title {
  margin-top: 3.25rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__title {
    margin-top: 6rem;
    font-size: 1.5rem;
    line-height: 1.58;
  }
}

@media screen and (min-width: 48rem) {
  .p-worksDetail__inner:has(.detail-hero) .p-worksDetail__title {
    max-width: 40rem;
    margin-inline: auto;
  }
}

.p-worksDetail__formerOffice {
  margin-top: 0.375rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__formerOffice {
    margin-top: 0.125rem;
    font-size: 1.0625rem;
  }
}

.p-worksDetail__title + .p-worksDetail__hero {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__title + .p-worksDetail__hero {
    margin-top: 2.5625rem;
  }
}

.p-worksDetail__formerOffice + .p-worksDetail__hero {
  margin-top: 1.375rem;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__formerOffice + .p-worksDetail__hero {
    margin-top: 1.9375rem;
  }
}

.p-worksDetail__hero {
  aspect-ratio: 335/219;
  background: #e9e5dd;
  overflow: hidden;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__hero {
    aspect-ratio: 900/588;
  }
}

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

.detail-hero {
  max-width: 40rem;
  margin: 2.5rem auto 1.25rem;
  aspect-ratio: auto;
}

.detail-hero img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: initial;
     object-fit: initial;
}

.p-worksDetail__summary {
  display: grid;
  row-gap: 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__summary {
    grid-template-columns: minmax(0, 27.5rem) minmax(0, 22.5rem);
    justify-content: flex-start;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    margin-top: 2.0625rem;
  }
}

.p-worksDetail__meta,
.p-worksDetail__credit {
  display: grid;
  grid-template-columns: 6.375rem minmax(0, 1fr);
  color: #333;
  font-size: 0.875rem;
  line-height: 2.07;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__meta,
  .p-worksDetail__credit {
    grid-template-columns: 7.75rem minmax(0, 1fr);
    font-size: 1.0625rem;
    line-height: 2.24;
  }
}

.p-worksDetail__credit {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__credit {
    grid-template-columns: max-content minmax(0, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}

.p-worksDetail__term {
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 500;
  white-space: nowrap;
}

.p-worksDetail__description {
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.p-worksDetail__descriptionTitle {
  display: block;
}

.p-worksDetail__descriptionFormerOffice {
  display: block;
  font-size: 0.875rem;
  line-height: 1.7;
  white-space: nowrap;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__descriptionFormerOffice {
    font-size: 1.0625rem;
  }
}

.p-worksDetail__body {
  margin-top: 3rem;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__body {
    margin-top: 2.125rem;
  }
}

.p-worksDetail__text {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2.07;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__text {
    font-size: 1.0625rem;
    line-height: 2.24;
  }
}

.p-worksDetail__text + .p-worksDetail__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__text + .p-worksDetail__text {
    margin-top: 1.125rem;
  }
}

.p-worksDetail__gallery {
  display: grid;
  row-gap: 1.875rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__gallery {
    row-gap: 2.5rem;
    margin-top: 1.25rem;
  }
}

.p-worksDetail__caption {
  margin-bottom: 1.125rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2.07;
  letter-spacing: 0.05em;
  margin-top: -1.75rem;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__caption {
    margin-top: -2.125rem;
    margin-bottom: 1.75rem;
    font-size: 1.0625rem;
    line-height: 2.24;
  }
}

.p-worksDetail__image {
  aspect-ratio: 335/219;
  background: #e9e5dd;
  overflow: hidden;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__image {
    aspect-ratio: 900/588;
  }
}

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

.p-worksDetail__categoryNav {
  border-top: 1px solid #cad1ce;
  margin-bottom: 3.5rem;
  padding-top: 3.625rem;
}
@media screen and (min-width: 48rem) {
  .p-worksDetail__categoryNav {
    padding-top: 5rem;
    margin-bottom: 5rem;
  }
}

.p-worksDetail__title,
.p-worksDetail__descriptionTitle {
  font-weight: 500;
}

.p-worksDetail__formerOffice,
.p-worksDetail__descriptionFormerOffice,
.p-worksDetail__term,
.p-worksDetail__description {
  color: #333;
}

.p-worksDetail__term {
  font-weight: 600;
}

@media screen and (min-width: 48rem) {
  .p-worksDetail__inner:has(.detail-hero) .p-worksDetail__formerOffice {
    max-width: 40rem;
    margin-inline: auto;
  }
  .p-worksDetail__formerOffice,
  .p-worksDetail__descriptionFormerOffice {
    font-size: 1.0625rem;
  }
  .p-worksDetail__summary {
    grid-template-columns: minmax(0, 26.25rem) minmax(0, 1fr);
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .p-worksDetail__meta {
    align-content: start;
    -moz-column-gap: 0.875rem;
         column-gap: 0.875rem;
  }
  .p-worksDetail__credit {
    align-content: start;
    grid-template-columns: minmax(0, 11.25rem) minmax(0, 1fr);
    -moz-column-gap: 1.125rem;
         column-gap: 1.5rem;
    row-gap: 0;
    max-width: 100%;
    line-height: 2.24;
  }
  .p-worksDetail__credit .p-worksDetail__term {
    font-size: 1.0625rem;
    letter-spacing: 0.04em;
  }
  .p-worksDetail__credit .p-worksDetail__description {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

.p-worksDetail__gallery--portrait .p-worksDetail__image {
  aspect-ratio: auto;
  margin-inline: auto;
  overflow: visible;
}

.p-worksDetail__gallery--portrait .p-worksDetail__image img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 48rem) {
  .p-worksDetail__gallery--portrait .p-worksDetail__image,
  .p-worksDetail__gallery--portrait .p-worksDetail__caption {
    width: min(100%, 40rem);
    margin-inline: auto;
  }
}

.p-about {
  padding-block-start: 3.125rem;
  overflow-x: clip;
}

.p-about__inner {
  max-width: 67.5rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 48rem) {
  .p-about__inner {
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 81.25rem) {
  .p-about__inner {
    padding-inline: 0;
  }
}

.p-about__section + .p-about__section {
  margin-top: 3.75rem;
}

.p-about__grid {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

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

.p-about__sectionTitle {
  color: #548672;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: 0.05em;
}

.p-about__sectionBody {
  margin-top: 2.0625rem;
  min-width: 0;
}

.p-about__breakPc {
  display: none;
}

.p-about__breakSp {
  display: inline;
}

.p-aboutMessage {
  padding-block-start: 0;
}

.p-aboutMessage__lead {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-aboutMessage__lead {
    line-height: 1.75;
  }
}

.p-aboutMessage__leadMain {
  font-size: 1.375rem;
}

.p-aboutMessage__leadSub {
  font-size: 0.9375rem;
}

.p-aboutMessage__text {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: break-all;
}

.p-aboutMessage__lead + .p-aboutMessage__text {
  margin-top: 1.125rem;
}

.p-aboutMessage__text + .p-aboutMessage__signature {
  margin-top: 1.25rem;
}
@media screen and (min-width: 48rem) {
  .p-aboutMessage__text + .p-aboutMessage__signature {
    margin-top: 1.875rem;
  }
}

.p-aboutMessage__signature {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}

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

.p-aboutVisual {
  margin-top: 1.875rem;
  overflow: hidden;
}

.p-aboutVisual img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 780/510;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 48rem) {
  .p-about {
    padding-block-start: 5rem;
  }
  .p-about__section {
    padding-block-start: 3.125rem;
  }
  .p-about__section + .p-about__section:not(.p-aboutOutline) {
    margin-top: 3.125rem;
  }
  .p-about__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 3.75rem;
  }
  .p-about__sectionHead {
    flex: 0 0 27%;
    max-width: 27%;
    box-sizing: border-box;
    text-align: left;
  }
  .p-about__sectionBody {
    flex: 1 1 0;
    margin-top: 0;
    min-width: 0;
  }
  .p-about__sectionTitle {
    font-size: 1.625rem;
  }
  .p-about__breakPc {
    display: inline;
  }
  .p-about__breakSp {
    display: none;
  }
  .p-aboutMessage {
    padding-block-start: 0;
  }
  .p-aboutMessage__leadMain {
    font-size: 1.625rem;
  }
  .p-aboutMessage__leadSub {
    font-size: 1.125rem;
  }
  .p-aboutMessage__text {
    font-size: 1.0625rem;
    line-height: 2.23;
    word-break: normal;
  }
  .p-aboutMessage__text + .p-aboutMessage__signature {
    margin-top: 1.5rem;
  }
  .p-aboutMessage__signature {
    font-size: 1.0625rem;
    line-height: 2.23;
  }
  .p-aboutMessage__body {
    max-width: 48.75rem;
    margin-top: 1.875rem;
    margin-inline-start: calc(27% + 3.75rem);
  }
  .p-aboutVisual {
    max-width: 48.75rem;
    margin-top: 2.8125rem;
    margin-inline-start: calc(27% + 3.75rem);
  }
}
@media screen and (min-width: 87.5rem) {
  .p-about__grid {
    display: grid;
    grid-template-columns: 18.75rem 48.75rem;
    gap: 0;
    align-items: start;
  }
  .p-about__sectionHead {
    flex: unset;
    max-width: none;
  }
  .p-about__sectionBody {
    flex: unset;
  }
  .p-aboutMessage__body,
  .p-aboutVisual {
    margin-inline-start: 18.75rem;
  }
}
.p-aboutProfile {
  margin-top: 2.25rem;
  min-width: 0;
}

.p-aboutProfile__photo {
  width: 60%;
  max-width: 18.75rem;
  margin-inline: auto;
  overflow: hidden;
}

.p-aboutProfile__photo img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 300/380;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.p-aboutProfile__group--isLicense {
  margin-top: 1.0625rem;
}

.p-aboutProfile__groupTitle {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.p-aboutProfile__list {
  margin-top: 0.875rem;
}

.p-aboutProfile__year {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.p-aboutProfile__desc {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  word-break: break-all;
}

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

.p-aboutProfile__groupTitle + .p-aboutProfile__desc {
  margin-top: 0.375rem;
}

.p-aboutProfile__groupTitle {
  font-size: 0.875rem;
}

@media screen and (min-width: 48rem) {
  .p-aboutProfile {
    display: grid;
    grid-template-columns: 18.75rem minmax(0, 26.25rem);
    -moz-column-gap: 2.125rem;
         column-gap: 2.125rem;
    align-items: start;
    max-width: 48.75rem;
    margin-top: 2.75rem;
    margin-inline-start: calc(27% + 3.75rem);
  }
  .p-aboutProfile__photo {
    width: 18.75rem;
    margin-inline: 0;
  }
  .p-aboutProfile__body {
    margin-top: -0.375rem;
  }
  .p-aboutProfile__group--isLicense {
    margin-top: 2.125rem;
  }
  .p-aboutProfile__groupTitle {
    font-size: 1.0625rem;
    line-height: 2.23;
  }
  .p-aboutProfile__list {
    display: grid;
    grid-template-columns: 8.125rem minmax(0, 1fr);
    margin-top: 0.125rem;
  }
  .p-aboutProfile__year {
    font-size: 1.0625rem;
    line-height: 2.23;
  }
  .p-aboutProfile__desc {
    font-size: 1.0625rem;
    line-height: 2.23;
    word-break: normal;
  }
  .p-aboutProfile__year:nth-of-type(n + 2) {
    margin-top: 0;
  }
  .p-aboutProfile__groupTitle + .p-aboutProfile__desc {
    margin-top: 0.125rem;
  }
}
@media screen and (min-width: 87.5rem) {
  .p-aboutProfile {
    margin-inline-start: 18.75rem;
  }
}
.p-aboutOutline__list {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-aboutOutline__row {
  border-top: 0.0625rem solid #cad1ce;
  padding-block: 1.125rem;
}

.p-aboutOutline__term {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
}

.p-aboutOutline__desc {
  margin: 0;
  font-size: 0.875rem;
  overflow-wrap: anywhere;
  word-break: break-all;
  line-height: 2;
}

.p-aboutOutline__list--isSub .p-aboutOutline__row:last-child {
  border-bottom: 0.0625rem solid #cad1ce;
}

@media screen and (min-width: 48rem) {
  .p-aboutOutline {
    margin-top: 3.125rem;
  }
  .p-aboutOutline__list {
    line-height: 2.5;
  }
  .p-aboutOutline__term,
  .p-aboutOutline__desc {
    font-size: 1.0625rem;
  }
  .p-aboutOutline__row {
    display: grid;
    grid-template-columns: 10.625rem minmax(0, 1fr);
    align-items: baseline;
    margin-top: 0;
    padding-block: 1.375rem;
  }
  .p-aboutOutline__addressRest {
    margin-inline-start: 0.1875rem;
  }
  .p-aboutOutline__desc {
    word-break: normal;
    line-height: inherit;
  }
}
.p-aboutAccess__map {
  overflow: hidden;
}

.p-aboutAccess__map img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 780/440;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-aboutAccess__info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
}

.p-aboutAccess__addressRow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1875rem;
}

.p-aboutAccess__addressLead,
.p-aboutAccess__address {
  margin: 0;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.p-aboutAccess__addressLead {
  min-width: 0;
}

.p-aboutAccess__mapLink {
  flex-shrink: 0;
  display: block;
  color: #548672;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
  text-underline-offset: 0.2em;
  transition: opacity 0.6s ease, -webkit-text-decoration-color 0.6s ease;
  transition: opacity 0.6s ease, text-decoration-color 0.6s ease;
  transition: opacity 0.6s ease, text-decoration-color 0.6s ease, -webkit-text-decoration-color 0.6s ease;
}

@media (any-hover: hover) {
  .p-aboutAccess__mapLink:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}
@media screen and (min-width: 48rem) {
  .p-aboutAccess__info {
    margin-top: 1.25rem;
  }
  .p-aboutAccess__addressRow {
    flex-direction: row;
    align-items: flex-start;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
  .p-aboutAccess__addressLead {
    flex: 1 1 auto;
  }
  .p-aboutAccess__addressLead,
  .p-aboutAccess__address {
    font-size: 1.0625rem;
    line-height: 2.23;
    word-break: normal;
  }
  .p-aboutAccess__mapLink {
    display: inline-block;
    font-size: 1.125rem;
    line-height: 2.1;
    white-space: nowrap;
  }
}
.p-aboutStaff {
  margin-bottom: 3.75rem;
  padding-block-start: -1.25rem;
}

.p-aboutStaff__list {
  display: grid;
  grid-template-columns: 1fr;
}

.p-aboutStaff__item + .p-aboutStaff__item {
  margin-top: 2.5rem;
}

.p-aboutStaff__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-aboutStaff__photo {
  margin-block: 0;
  margin-inline: auto;
  overflow: hidden;
  width: min(100%, 22.5rem, max(18.625rem, 88.9552238806%));
}

.p-aboutStaff__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 298/267;
}

.p-aboutStaff__body {
  margin-top: 1rem;
  width: min(100%, 22.5rem, max(18.625rem, 88.9552238806%));
  box-sizing: border-box;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.88;
  letter-spacing: 0.05em;
}

.p-aboutStaff__name,
.p-aboutStaff__like {
  margin-top: 0.125rem;
}

@media screen and (min-width: 48rem) {
  .p-aboutStaff {
    margin-bottom: 7.5rem;
    padding-block-start: 3.125rem;
  }
  .p-aboutStaff__list {
    grid-template-columns: repeat(2, minmax(0, 22.5rem));
    -moz-column-gap: 3.75rem;
         column-gap: 3.75rem;
    row-gap: 2.5rem;
  }
  .p-aboutStaff__item + .p-aboutStaff__item {
    margin-top: 0;
  }
  .p-aboutStaff__item {
    align-items: stretch;
  }
  .p-aboutStaff__photo {
    width: 100%;
    max-width: 100%;
  }
  .p-aboutStaff__photo img {
    width: 100%;
    max-width: 22.5rem;
    height: auto;
    aspect-ratio: 360/320;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-aboutStaff__body {
    margin-top: 0.875rem;
    width: auto;
    max-width: none;
    font-size: 1.0625rem;
  }
}
.p-404 {
  margin-top: 2.5rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 48rem) {
  .p-404 {
    margin-top: 6.25rem;
    margin-bottom: 7.5rem;
  }
}

.p-404__title {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75;
  overflow-wrap: anywhere;
  text-align: center;
  letter-spacing: 0.05em;
  word-break: break-all;
}
@media screen and (min-width: 48rem) {
  .p-404__title {
    font-size: 1.75rem;
  }
}

.p-404__btn {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 48rem) {
  .p-404__btn {
    margin-top: 3.75rem;
  }
}

.p-recruit {
  margin-top: 2.5rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-recruit {
    margin-top: 6.25rem;
  }
}

.p-recruit__inner {
  max-width: 67.5rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 48rem) {
  .p-recruit__inner {
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 81.25rem) {
  .p-recruit__inner {
    padding-inline: 0;
  }
}

.p-recruit__leadText {
  margin: 0;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 48rem) {
  .p-recruit__leadText {
    font-size: 1.0625rem;
    line-height: 2.23;
  }
}

.p-recruit__gallery {
  margin-top: 2.5rem;
}
@media screen and (min-width: 48rem) {
  .p-recruit__gallery {
    margin-top: 3.75rem;
  }
}

.p-recruit__photoList {
  margin: 0;
  padding-block: 0;
  padding-inline: 0;
  list-style: none;
}
@media screen and (min-width: 48rem) {
  .p-recruit__photoList {
    display: flex;
    justify-content: space-between;
  }
}

.p-recruit__photoItem {
  margin: 0;
}
@media screen and (min-width: 48rem) {
  .p-recruit__photoItem {
    width: calc((100% - 0.25rem) / 2);
  }
}

.p-recruit__photo {
  margin: 0;
}

.p-recruit__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 538/360;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit__entry {
  margin-top: 3.75rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 48rem) {
  .p-recruit__entry {
    margin-top: 6.25rem;
    margin-bottom: 7.5rem;
  }
}

.p-recruit__sectionTitle {
  margin: 0;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.46;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-recruit__sectionTitle {
    font-size: 1.5rem;
  }
}

.p-recruit__empty,
.p-recruit__closedText {
  margin: 1.25rem 0 0;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 48rem) {
  .p-recruit__empty,
  .p-recruit__closedText {
    margin-top: 1.5rem;
    font-size: 1.0625rem;
    line-height: 2.23;
  }
}

.p-recruit__defs {
  margin: 1.875rem 0 0;
  border-top: 0.0625rem solid #cad1ce;
}
@media screen and (min-width: 48rem) {
  .p-recruit__defs {
    margin: 2.5rem 0 0;
  }
}

.p-recruit__defRow {
  padding-block: 1.125rem;
  border-bottom: 0.0625rem solid #cad1ce;
}
@media screen and (min-width: 48rem) {
  .p-recruit__defRow {
    display: grid;
    grid-template-columns: 16.875rem minmax(0, 1fr);
    align-items: baseline;
    padding-block: 1.5rem;
  }
}

.p-recruit__defTerm {
  margin: 0;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 48rem) {
  .p-recruit__defTerm {
    font-size: 1.0625rem;
    line-height: 2.23;
  }
}

.p-recruit__defDesc {
  margin: 0.375rem 0 0;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
@media screen and (min-width: 48rem) {
  .p-recruit__defDesc {
    margin-top: 0;
    font-size: 1.0625rem;
    line-height: 2.23;
    overflow-wrap: normal;
  }
}

.p-recruit__defDesc p {
  margin: 0;
}

.p-recruit__defDesc p + p {
  margin-top: 0.5rem;
}

.p-recruit__defSubLabel {
  font-weight: 500;
}

.p-recruit__defNote {
  color: #333;
  font-size: 0.8125rem;
  line-height: 1.8;
}
@media screen and (min-width: 48rem) {
  .p-recruit__defNote {
    font-size: 0.9375rem;
  }
}

.p-recruit__defLink {
  color: #548672;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  transition: opacity 0.5s ease, -webkit-text-decoration-color 0.5s ease;
  transition: opacity 0.5s ease, text-decoration-color 0.5s ease;
  transition: opacity 0.5s ease, text-decoration-color 0.5s ease, -webkit-text-decoration-color 0.5s ease;
}

@media (any-hover: hover) {
  .p-recruit__defLink:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
    opacity: 1;
  }
}
.p-newsArchive {
  max-width: 56.25rem;
  margin-top: 2.5rem;
  margin-bottom: 3.75rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (min-width: 48rem) {
  .p-newsArchive {
    margin-top: 3.75rem;
    margin-bottom: 7.5rem;
  }
}
@media screen and (min-width: 62.5rem) {
  .p-newsArchive {
    padding-inline: 0;
  }
}

.p-newsArchive__pagination {
  margin-top: 2.5rem;
}
@media screen and (min-width: 48rem) {
  .p-newsArchive__pagination {
    margin-top: 3.75rem;
  }
}

.p-newsArchive__list {
  margin-top: 0;
}

.p-newsDetail {
  max-width: 56.25rem;
  margin-bottom: 5rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail {
    margin-bottom: 7.5rem;
  }
}
@media screen and (min-width: 62.5rem) {
  .p-newsDetail {
    padding-inline: 0;
  }
}

.p-newsDetail__head {
  margin-top: 2.5rem;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__head {
    margin-top: 3.75rem;
  }
}

.p-newsDetail__date {
  display: block;
  color: #548672;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__date {
    font-size: 0.9375rem;
  }
}

.p-newsDetail__title {
  margin-top: 0.9375rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__title {
    font-size: 1.5rem;
  }
}

.p-newsDetail__body {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 0.0625rem solid #cad1ce;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__body {
    margin-top: 1.875rem;
    padding-top: 1.875rem;
  }
}

.p-newsDetail__text {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__text {
    font-size: 0.9375rem;
  }
}

.p-newsDetail__heading {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__heading {
    font-size: 1.5rem;
  }
}

.p-newsDetail__heading + .p-newsDetail__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__heading + .p-newsDetail__text {
    margin-top: 1.125rem;
  }
}

.p-newsDetail__text + .p-newsDetail__text {
  margin-top: 1.125rem;
}

.p-newsDetail__figure {
  width: 100%;
  max-width: 100%;
  margin-top: 1.75rem;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__figure {
    max-width: 80%;
    margin-top: 1.875rem;
    margin-inline: auto;
  }
}

.p-newsDetail__figure + .p-newsDetail__text {
  margin-top: 1.75rem;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__figure + .p-newsDetail__text {
    margin-top: 1.875rem;
  }
}

.p-newsDetail__image {
  display: block;
  width: 100%;
  height: auto;
}

.p-newsDetail__link {
  display: inline-block;
  margin-top: 0.1875rem;
  color: #548672;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
  text-underline-offset: 0.0625rem;
  transition: -webkit-text-decoration-color 0.5s ease;
  transition: text-decoration-color 0.5s ease;
  transition: text-decoration-color 0.5s ease, -webkit-text-decoration-color 0.5s ease;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__link {
    font-size: 0.9375rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .p-newsDetail__link:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}
.p-newsDetail__nav {
  margin-top: 3.125rem;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__nav {
    margin-top: 3.125rem;
  }
}

.p-newsDetail__navList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__navList {
    gap: 4.375rem;
  }
}

.p-newsDetail__navLink {
  position: relative;
  display: inline-block;
  padding-bottom: 0.1875rem;
  color: #548672;
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__navLink {
    font-size: 1.25rem;
  }
}

.p-newsDetail__navLink::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.0625rem;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}

@media (hover: hover) and (pointer: fine) {
  .p-newsDetail__navLink:hover::after {
    animation: c-btn-underline-flow 0.6s ease forwards;
  }
}

/* ===== ブロックエディタ出力対応（the_content() 用） ===== */
.p-newsDetail__body > *:first-child {
  margin-top: 0;
}

.p-newsDetail__body h2,
.p-newsDetail__body h3 {
  margin-top: 2.5rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__body h2,
  .p-newsDetail__body h3 {
    margin-top: 3.125rem;
    font-size: 1.5rem;
  }
}

.p-newsDetail__body h3 {
  font-size: 1.125rem;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__body h3 {
    font-size: 1.25rem;
  }
}

.p-newsDetail__body p {
  margin-top: 1.125rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__body p {
    font-size: 0.9375rem;
  }
}

.p-newsDetail__body h2 + p,
.p-newsDetail__body h3 + p {
  margin-top: 1.25rem;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__body h2 + p,
  .p-newsDetail__body h3 + p {
    margin-top: 1.125rem;
  }
}

.p-newsDetail__body figure,
.p-newsDetail__body .wp-block-image {
  width: 100%;
  max-width: 100%;
  margin-top: 1.75rem;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__body figure,
  .p-newsDetail__body .wp-block-image {
    max-width: 80%;
    margin-top: 1.875rem;
    margin-inline: auto;
  }
}

.p-newsDetail__body figure img,
.p-newsDetail__body .wp-block-image img,
.p-newsDetail__body img {
  display: block;
  width: 100%;
  height: auto;
}

.p-newsDetail__body figure + p,
.p-newsDetail__body .wp-block-image + p {
  margin-top: 1.75rem;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__body figure + p,
  .p-newsDetail__body .wp-block-image + p {
    margin-top: 1.875rem;
  }
}

.p-newsDetail__body a {
  color: #548672;
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
  text-underline-offset: 0.0625rem;
  transition: -webkit-text-decoration-color 0.5s ease;
  transition: text-decoration-color 0.5s ease;
  transition: text-decoration-color 0.5s ease, -webkit-text-decoration-color 0.5s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-newsDetail__body a:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}

.p-newsDetail__body ul,
.p-newsDetail__body ol {
  margin-top: 1.125rem;
  padding-inline-start: 1.5rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-newsDetail__body ul,
  .p-newsDetail__body ol {
    font-size: 0.9375rem;
  }
}

.p-newsDetail__body ul {
  list-style: disc;
}

.p-newsDetail__body ol {
  list-style: decimal;
}

.p-privacy {
  max-width: 62.5rem;
  margin-top: 2.5rem;
  margin-bottom: 5rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (min-width: 48rem) {
  .p-privacy {
    margin-top: 5.625rem;
    margin-bottom: 7.5rem;
  }
}
@media screen and (min-width: 62.5rem) {
  .p-privacy {
    padding-inline: 0;
  }
}

.p-privacy__intro {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-privacy__intro {
    font-size: 1.0625rem;
  }
}

.p-privacy__section {
  margin-top: 0.625rem;
}

.p-privacy__heading {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-privacy__heading {
    font-size: 1.0625rem;
  }
}

.p-privacy__text {
  margin-top: 0.0625rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-privacy__text {
    font-size: 0.9375rem;
  }
}

.p-privacy__list {
  margin-top: 1rem;
  padding-left: 1.25rem;
}

.p-privacy__listItem {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  list-style: disc;
}
@media screen and (min-width: 48rem) {
  .p-privacy__listItem {
    font-size: 0.9375rem;
  }
}

.p-privacy__contact {
  margin-top: 1.75rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-privacy__contact {
    font-size: 0.9375rem;
  }
}

.p-privacy__contactLink {
  color: #548672;
  text-decoration: underline;
  text-underline-offset: 0;
  transition: opacity 0.5s ease, -webkit-text-decoration-color 0.5s ease;
  transition: opacity 0.5s ease, text-decoration-color 0.5s ease;
  transition: opacity 0.5s ease, text-decoration-color 0.5s ease, -webkit-text-decoration-color 0.5s ease;
}

@media (any-hover: hover) {
  .p-privacy__contactLink:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
    opacity: 1;
  }
}
.p-contact {
  padding-block-start: 2.5rem;
  padding-block-end: 5rem;
}
@media screen and (min-width: 48rem) {
  .p-contact {
    padding-block-start: 6.25rem;
    padding-block-end: 7.5rem;
  }
}

.p-contact__inner {
  max-width: 62.5rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 48rem) {
  .p-contact__inner {
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 81.25rem) {
  .p-contact__inner {
    padding-inline: 0;
  }
}

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

.p-contact__leadTitle {
  display: inline-block;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
  word-break: break-all;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 48rem) {
  .p-contact__leadTitle {
    display: block;
    font-size: 1.375rem;
    overflow-wrap: normal;
    word-break: normal;
    text-align: center;
  }
}

.p-contact__leadText {
  display: inline-block;
  margin-top: 1rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
  word-break: break-all;
  text-align: left;
}
@media screen and (min-width: 48rem) {
  .p-contact__leadText {
    line-height: 2;
    display: block;
    font-size: 1.125rem;
    overflow-wrap: normal;
    word-break: normal;
    text-align: center;
  }
}

.p-contact__notice {
  margin-top: 2.5rem;
  text-align: left;
}
@media screen and (min-width: 48rem) {
  .p-contact__notice {
    margin-top: 3.75rem;
  }
}

.p-contact__noticeText {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
  word-break: break-all;
}
@media screen and (min-width: 48rem) {
  .p-contact__noticeText {
    line-height: 2.5;
    font-size: 0.875rem;
    overflow-wrap: normal;
    word-break: normal;
  }
}

.p-contact__noticeLink {
  color: #548672;
  text-decoration: underline;
  text-underline-offset: 0;
  transition: opacity 0.5s ease, -webkit-text-decoration-color 0.5s ease;
  transition: opacity 0.5s ease, text-decoration-color 0.5s ease;
  transition: opacity 0.5s ease, text-decoration-color 0.5s ease, -webkit-text-decoration-color 0.5s ease;
}

.p-contact__noticeRequired {
  color: #548672;
}

@media (any-hover: hover) {
  .p-contact__noticeLink:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
    opacity: 1;
  }
}
.p-contact__form {
  margin-top: 1.75rem;
}
@media screen and (min-width: 48rem) {
  .p-contact__form {
    margin-top: 0.625rem;
  }
}

.p-contact__row {
  display: block;
  padding-block: 1.25rem;
  border-bottom: 0.0625rem solid #e6e1d8;
}
@media screen and (min-width: 48rem) {
  .p-contact__row {
    display: grid;
    grid-template-columns: 13.75rem 1fr;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    align-items: start;
    padding-block: 1.5rem;
  }
}

.p-contact__row:first-of-type {
  border-top: 0.0625rem solid #e6e1d8;
}

.p-contact__row--group {
  padding-block: 1.5rem;
}
@media screen and (min-width: 48rem) {
  .p-contact__row--group {
    padding-block: 2rem;
  }
}

.p-contact__rowHead {
  display: flex;
  align-items: center;
  gap: 0;
}

.p-contact__rowBody {
  margin-top: 0.5rem;
}
@media screen and (min-width: 48rem) {
  .p-contact__rowBody {
    margin-top: 0;
  }
}

.p-contact__label {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 48rem) {
  .p-contact__label {
    font-size: 1.0625rem;
  }
}

.p-contact__label--group {
  color: #333;
  font-weight: 500;
}

.p-contact__required {
  color: #548672;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 48rem) {
  .p-contact__required {
    font-size: 1.0625rem;
  }
}

.p-contact__input,
.p-contact__textarea,
.p-contact__select {
  width: 100%;
  padding-block: 0.625rem;
  padding-inline: 0.875rem;
  border: 0.0625rem solid #e6e1d8;
  border-radius: 0;
  background-color: #ebe7e0;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-contact__input,
  .p-contact__textarea,
  .p-contact__select {
    padding-block: 0.75rem;
    font-size: 1rem;
  }
}

.p-contact__input::-moz-placeholder, .p-contact__textarea::-moz-placeholder {
  color: #999999;
  opacity: 1;
}

.p-contact__input::placeholder,
.p-contact__textarea::placeholder {
  color: #999999;
  opacity: 1;
}

.p-contact__input:focus,
.p-contact__textarea:focus,
.p-contact__select:focus,
.p-contact__submitBtn:focus {
  outline: 0.125rem solid #548672;
  outline-offset: 0.0625rem;
}

.p-contact__textarea {
  min-height: 10rem;
  resize: vertical;
}

.p-contact__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-inline-end: 2.75rem;
}

.p-contact__select:has(option:checked[value=""]) {
  border-color: #d4cfc7;
  background-color: #d8d4cd;
}

.p-contact__selectWrap {
  display: block;
  position: relative;
}

.p-contact__selectWrap::after {
  position: absolute;
  top: 50%;
  right: 1.125rem;
  width: 0;
  height: 0;
  border-inline: 0.625rem solid transparent;
  border-block-start: 0.875rem solid #333333;
  content: "";
  pointer-events: none;
  transform: translateY(-50%);
}
@media screen and (min-width: 48rem) {
  .p-contact__selectWrap::after {
    right: 1.125rem;
    border-inline-width: 0.625rem;
    border-block-start-width: 0.875rem;
  }
}

.p-contact__nameGroup {
  display: block;
}
@media screen and (min-width: 48rem) {
  .p-contact__nameGroup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
}

.p-contact__nameGroup .p-contact__input--half + .p-contact__input--half {
  margin-top: 0.5rem;
}
@media screen and (min-width: 48rem) {
  .p-contact__nameGroup .p-contact__input--half + .p-contact__input--half {
    margin-top: 0;
  }
}

.p-contact__input--half {
  width: 100%;
}

.p-contact .wpcf7-form-control-wrap {
  display: block;
}

.p-contact__nameGroup .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 0.5rem;
}
@media screen and (min-width: 48rem) {
  .p-contact__nameGroup .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
    margin-top: 0;
  }
}

.p-contact__checkList {
  margin: 0;
  padding-block: 0;
  padding-inline: 0;
  list-style: none;
}

.p-contact__checkList .wpcf7-list-item {
  display: block;
  margin: 0;
}

.p-contact__checkList .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 0.75rem;
}

.p-contact__checkItem + .p-contact__checkItem {
  margin-top: 0.75rem;
}

.p-contact__agree {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.p-contact__agree .wpcf7-list-item {
  margin: 0;
}

.p-contact__checkbox {
  width: 1.25rem;
  aspect-ratio: 1;
  margin: 0 0.625rem 0 0;
  border: 0.0625rem solid #e6e1d8;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ebe7e0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.8125rem 0.625rem;
  accent-color: #548672;
  vertical-align: middle;
}

.p-contact__checkList input[type=checkbox],
.p-contact__agree input[type=checkbox] {
  width: 1.25rem;
  aspect-ratio: 1;
  margin: 0 0.625rem 0 0;
  border: 0.0625rem solid #e6e1d8;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ebe7e0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.8125rem 0.625rem;
  accent-color: #548672;
  vertical-align: middle;
}

.p-contact__checkbox:checked {
  border-color: #548672;
  background-color: #548672;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2213%22%20height%3D%2210%22%20viewBox%3D%220%200%2013%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1%204.8L4.6%208.4L12%201%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
}

.p-contact__checkList input[type=checkbox]:checked,
.p-contact__agree input[type=checkbox]:checked {
  border-color: #548672;
  background-color: #548672;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2213%22%20height%3D%2210%22%20viewBox%3D%220%200%2013%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1%204.8L4.6%208.4L12%201%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
}

.p-contact__checkLabel {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.p-contact__checkList .wpcf7-list-item-label,
.p-contact__agree .wpcf7-list-item-label {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
@media screen and (min-width: 48rem) {
  .p-contact__checkLabel {
    font-size: 1.0625rem;
  }
  .p-contact__checkList .wpcf7-list-item-label,
  .p-contact__agree .wpcf7-list-item-label {
    font-size: 1.0625rem;
  }
}

.p-contact__groupLead {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  padding-bottom: 0.25rem;
}
@media screen and (min-width: 48rem) {
  .p-contact__groupLead {
    font-size: 1rem;
  }
}

.p-contact__subRow {
  margin-top: 0.625rem;
}

.p-contact__subLabel {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-contact__subLabel {
    font-size: 1rem;
  }
}

.p-contact__subBody {
  margin-top: 0.25rem;
}

@media screen and (min-width: 48rem) {
  .p-contact__subBody:has(.p-contact__selectWrap) {
    display: grid;
    grid-template-columns: 18.75rem 1fr;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    align-items: start;
  }
}

.p-contact__selectNote {
  margin: 0.5rem 0 0;
  padding-block: 0;
  padding-inline: 0;
  color: #c00000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  list-style: none;
}
@media screen and (min-width: 48rem) {
  .p-contact__selectNote {
    margin-top: 0;
    font-size: 0.9375rem;
  }
}

.p-contact__captcha {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-top: 2.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 48rem) {
  .p-contact__captcha {
    margin-top: 3.125rem;
  }
}

.p-contact__captcha .cf7-cf-turnstile,
.p-contact__captcha .wpcf7-turnstile {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}

.p-contact__captchaPlaceholder {
  width: 18.75rem;
  height: 4.0625rem;
  border: 0.0625rem dashed #e6e1d8;
  background-color: #ebe7e0;
}

.p-contact__submit {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 48rem) {
  .p-contact__submit {
    margin-top: 3.125rem;
  }
}

.p-contact__submit .wpcf7-spinner {
  position: absolute;
  top: 100%;
  left: 50%;
  margin: 0.75rem 0 0;
  transform: translateX(-50%);
}

.p-contact__submitBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 17.5rem;
  padding-block: 1.125rem;
  padding-inline: 2.5rem;
  border: 0.0625rem solid #548672;
  border-radius: 2.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  color: #548672;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.5s ease, color 0.5s ease;
}
@media screen and (min-width: 48rem) {
  .p-contact__submitBtn {
    min-width: 23.75rem;
    padding-block: 1.375rem;
    font-size: 1.0625rem;
  }
}

.p-contact__submitBtn:focus {
  outline-offset: 0.125rem;
}

@media (any-hover: hover) {
  .p-contact__submitBtn:hover {
    background-color: #548672;
    color: #fff;
  }
}
.p-thanks {
  max-width: 62.5rem;
  margin-bottom: 5rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (min-width: 48rem) {
  .p-thanks {
    margin-bottom: 7.5rem;
  }
}
@media screen and (min-width: 62.5rem) {
  .p-thanks {
    padding-inline: 0;
  }
}

.p-thanks__lead {
  margin-top: 3.125rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-thanks__lead {
    margin-top: 6.25rem;
    font-size: 1.375rem;
  }
}

.p-thanks__leadMain,
.p-thanks__leadNote {
  display: inline-block;
  max-width: 100%;
  text-align: left;
}

.p-thanks__leadNote {
  margin-top: 1.125rem;
  font-size: 0.9375rem;
}
@media screen and (min-width: 48rem) {
  .p-thanks__leadNote {
    font-size: 1.125rem;
  }
}

.p-thanks__text {
  margin-top: 1.25rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  text-align: left;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 48rem) {
  .p-thanks__text {
    margin-top: 1.875rem;
    font-size: 0.9375rem;
  }
}

.p-thanks__btnGroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 48rem) {
  .p-thanks__btnGroup {
    margin-top: 3.75rem;
  }
}

.p-thanks__btnGroup .c-btn {
  justify-content: center;
  min-width: 17.5rem;
  padding-block: 1.125rem;
  padding-inline: 2.5rem;
  border: 0.0625rem solid #548672;
  border-radius: 2.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  transition: background-color 0.5s ease, color 0.5s ease;
}
@media screen and (min-width: 48rem) {
  .p-thanks__btnGroup .c-btn {
    min-width: 23.75rem;
    padding-block: 1.375rem;
    font-size: 1.0625rem;
  }
}

.p-thanks__btnGroup .c-btn::after {
  content: none;
}

@media (any-hover: hover) {
  .p-thanks__btnGroup .c-btn:hover {
    background-color: #548672;
    color: #fff;
  }
}
/*# sourceMappingURL=style.css.map */
