@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;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * 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;
}
@media (max-width: 1100px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  overflow-x: hidden;
}

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

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.c-btn {
  background-color: rgba(0, 164, 66, 0.93);
  border: none;
  border-radius: 0.75rem;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.625rem 3.625rem 1.625rem 1.75rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
  position: relative;
  letter-spacing: 0.05em;
  line-height: 1;
  box-shadow: 0px 0.625rem 1.25rem 0px rgba(0, 0, 0, 0.1);
}

.c-btn.c-btn--beige {
  background-color: #a79353;
  font-size: 0.875rem;
  padding: 1.875rem 4.5rem 1.875rem 3.25rem;
  min-width: 18.75rem;
}

.c-btn::after {
  content: "";
  position: absolute;
  background-image: url(../images/btn_line.png);
  right: 1.0625rem;
  top: 50%;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
}

.c-btn.c-btn--beige::after {
  background-image: url(../images/btn.png);
}

.c-btn:hover {
  background-color: rgba(0, 164, 66, 0.93);
}

.inner {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 640px;
    padding: 0 20px;
  }
}

.inner900 {
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
}

.inner1100 {
  max-width: 68.75rem;
  margin-left: auto;
  margin-right: auto;
}

.c-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #172635;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 1rem;
  }
}

.c-title {
  text-align: center;
  margin-bottom: 3.75rem;
}

.c-title-ja {
  display: block;
  font-size: 1rem;
  color: #172635;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .c-title-ja {
    font-size: 1rem;
  }
}

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

.c-title-en {
  font-size: 2.5rem;
  font-family: "Fraunces", serif;
  color: #a79353;
  letter-spacing: 0.2em;
  position: relative;
  font-weight: 400;
  display: inline-block;
  padding-bottom: 1.25rem;
  line-height: 1.8;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-title-en {
    font-size: 2.5rem;
  }
}

.c-title-en::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 1px;
  background-color: #a79353;
}
.p-company {
  padding: 8.75rem 0 9.25rem;
  background: #1b2938;
  position: relative;
  overflow-x: hidden;
}

.p-company__content {
  margin-top: 5rem;
  display: flex;
  gap: 5.625rem;
  max-width: 53.0625rem;
  margin-left: auto;
  margin-right: auto;
}

.p-company__map {
  width: 65%;
  aspect-ratio: 1/1;
}
.p-company__map iframe {
  width: 100%;
  height: 100%;
}

.p-company__info {
  width: 35%;
  color: #fff;
}

.p-company__list {
  width: 100%;
}

.p-company__item {
  padding: 1.5rem 0;
}

.p-company__term {
  font-size: 1.125rem;
  color: #a79353;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.217px;
}

.p-company__description {
  flex: 1;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 1.217px;
}

.p-company__link {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-company__link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .p-company__content {
    flex-direction: column;
    gap: 2.5rem;
  }
  .p-company__map,
  .p-company__info {
    width: 100%;
  }
}
@media screen and (max-width: 399px) {
  .p-company__item {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
  }
  .p-company__term {
    width: 100%;
  }
}
.p-footer {
  padding: 2.125rem 0;
  background: #111a23;
  text-align: center;
}

.p-footer__copyright {
  color: #fff;
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1.1px;
}

.p-fv {
  margin-top: 7.5rem;
  position: relative;
  height: calc(100vh - 120px);
  background-image: url(../images/fv.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-fv.p-fv--page{
  height: 500px;
  background-position: right;
}
@media screen and (max-width: 767px) {
  .p-fv {
    margin-top: 5.625rem;
    height: calc(100vh - 90px);
    background-image: url(../images/fv_sp.jpg);
  }
  .p-fv.p-fv--page{
    height: 12.5rem;
  }
}

.p-fv__inner {
  position: relative;
  max-width: 82.5rem;
  margin: 0 auto;
  height: inherit;
}

.p-fv__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
  left: 1.5625rem;
  top: 46%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-fv__content {
    left: 0;
    top: initial;
    bottom: 2.625rem;
    transform: none;
  }
  .p-fv.p-fv--page .p-fv__content{
    left: 5%;
    top: 36%;
    bottom: unset;
    transform: none;
  }
}

.p-fv__text {
  color: #fff;
  font-size: 2.125rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  margin-bottom: 2.0625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-fv__text {
    margin-bottom: 1.25rem;
  }
}

.p-fv__text span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-fv__text span {
    background: rgba(30, 44, 59, 0.8);
    padding: 0.3125rem 0.625rem;
    font-size: 1.25rem;
    letter-spacing: 4px;
  }
}

.p-fv__heading.u-pconly {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-fv__heading.u-pconly {
    display: none;
  }
}

.p-fv__heading.u-sponly {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-fv__heading.u-sponly {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
}

.p-fv__title {
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.625rem 0.25rem 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    padding: 0.125rem 0.3125rem 0.125rem 0.625rem;
  }
}

.p-fv__title span {
  display: inline-block;
  background: linear-gradient(90deg, #a79353 0%, #564c2b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-fv__title span {
    font-size: 2.25rem;
    line-height: 1;
  }
}

.p-fv__image {
  position: relative;
  overflow: hidden;
}

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

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  background-color: #fff;
  padding: 1.5rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-header {
    min-height: 5.625rem;
    padding: 1.125rem 0;
  }
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.25rem;
  max-width: 79.375rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0 1.875rem;
  }
}

.p-header__logo {
  font-size: 1.75rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #172635;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    font-size: 1.25rem;
  }
}

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

.p-header__hamburger {
  position: relative;
  z-index: 102;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.p-header__hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.875rem;
  height: 1.3125rem;
}

.p-header__hamburger-lines span {
  display: block;
  width: 100%;
  height: 0.1875rem;
  background-color: #333;
  transition: all 0.3s;
}

.p-header__hamburger-text {
  margin-top: 1.3125rem;
  font-size: 0.9375rem;
  color: #333;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  letter-spacing: 3.889px;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger-text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
  }
}

.p-header__hamburger.is-active .p-header__hamburger-lines span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.p-header__hamburger.is-active .p-header__hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger.is-active .p-header__hamburger-lines span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

.p-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 5.5625rem 1.25rem 2.5rem;
  z-index: 100;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.p-drawer.is-active {
  transform: translateX(0);
}

.p-drawer__items {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.p-drawer__item {
  margin-bottom: 1.25rem;
}

.p-drawer__item a {
  display: block;
  font-size: 1.125rem;
  color: #333;
  text-decoration: none;
  padding: 0.625rem 0;
}

.p-drawer__item a:hover {
  opacity: 0.7;
}

body.is-drawer-active {
  overflow: hidden;
}

.p-news {
  padding: 8.75rem 0 8.75rem;
  background: #fff;
  position: relative;
  overflow-x: hidden;
}

.p-news.p-news--page{
  padding: 3.75rem 0 6.75rem;
}

.p-news.p-news--category{
  padding: 3.75rem 0 6.75rem;
}

.p-news__content {
  margin-top: 5rem;
  max-width: 51.4375rem;
  margin-left: auto;
  margin-right: auto;
}

.p-news.p-news--page .p-news__content{
  margin-top: 0;
}

.p-news.p-news--category .p-news__content{
  margin-top: 2rem;
}

.p-news__list {
  margin-bottom: 3.75rem;
}

.p-news__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #D7D7D7;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-news__date {
  font-size: 1rem;
  color: #172635;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 700;
  width: 6.25rem;
  flex-shrink: 0;
}

.p-news__text {
  font-size: 1rem;
  color: #172635;
  line-height: 1.5;
}

.p-news__btn {
  min-width: 18.75rem;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.p-profile {
  padding: 6.25rem 0 8.75rem;
  background: linear-gradient(90deg, #1b2938 33.83%, rgba(32, 48, 66, 0.9) 100%);
  position: relative;
  overflow-x: hidden;
}

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

.p-profile__item {
  display: flex;
  gap: 3.75rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-profile__item {
    flex-direction: column;
  }
}

.p-profile__left {
  width: 36%;
}
@media screen and (max-width: 767px) {
  .p-profile__left {
    width: 100%;
  }
}
.p-profile__left img {
  width: 100%;
  height: auto;
  aspect-ratio: 380/440;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-profile__info {
  width: 64%;
  background-color: #fff;
  padding: 2.5rem 3.75rem;
  color: #172635;
}
@media screen and (max-width: 767px) {
  .p-profile__info {
    width: 100%;
  }
}

.p-profile__name-wrap {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  padding-bottom: 0.625rem;
  border-bottom: 0.125rem solid #a79353;
  letter-spacing: 1px;
  line-height: 1.8;
}

.p-profile__name {
  font-size: 1.5rem;
  font-weight: 700;
}

.p-profile__name-en {
  font-size: 1rem;
}

.p-profile__position {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.8;
  color: #DDD8C9;
}

.p-profile__title {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
  color: #a79353;
  letter-spacing: 1px;
}

.p-profile__heading {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1.875rem;
  letter-spacing: 1px;
}

.p-profile__text {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 0.625rem;
  letter-spacing: 1px;
}

.p-profile__history {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8; /* 25.2px */
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
}

.p-profile__history p:not(:first-child) {
  margin-top: 0.3125rem;
}

.p-profile__qualification {
  margin-top: 0.625rem;
  letter-spacing: 1px;
}

.p-profile__qualification:first-of-type {
  margin-top: 1.25rem;
}

.p-profile__qualification-title {
  font-size: 1rem;
  color: #a79353;
  margin-bottom: 0.3125rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-profile__qualification-text {
  font-size: 0.875rem;
  line-height: 1.6;
}

.p-service {
  padding: 4.0625rem 0 11.25rem;
  background-color: #fff;
  position: relative;
  overflow-x: hidden;
}

.p-service__content {
  margin-top: 5rem;
}

.p-service__list {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}

.p-service__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-service__item {
    flex-direction: column;
  }
}

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

.p-service__img {
  width: 48%;
  aspect-ratio: 514/360;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
  max-height: 22.75rem;
}
@media screen and (max-width: 767px) {
  .p-service__img {
    width: 100%;
    max-height: none;
  }
}

.p-service__img::after {
  content: "";
  position: absolute;
  background: #1b2938;
  width: 100vw;
  height: 22.5625rem;
  top: 2.75rem;
  right: 2.4375rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-service__img::after {
    height: 18.75rem;
    top: initial;
    bottom: -1.25rem;
  }
}

.p-service__item:nth-child(odd) .p-service__img::after {
  content: "";
  position: absolute;
  background: #1b2938;
  width: 100vw;
  height: 22.5625rem;
  top: 2.75rem;
  left: 2.4375rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-service__item:nth-child(odd) .p-service__img::after {
    height: 18.75rem;
    top: initial;
    bottom: -1.25rem;
  }
}

.p-service__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  position: relative;
}

.p-service__textbox {
  width: 52%;
}
@media screen and (max-width: 767px) {
  .p-service__textbox {
    width: 100%;
  }
}

.p-service__title {
  font-size: 1.75rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #172635;
  line-height: 1.8;
  padding: 0.3125rem 1.25rem;
  border-bottom: 1px solid #a79353;
  border-left: 0.1875rem solid #a79353;
}
@media screen and (max-width: 767px) {
  .p-service__title {
    font-size: 1.5rem;
  }
}

.p-service__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #172635;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__text {
    font-size: 1rem;
  }
}

.p-service__attention {
  font-size: 0.75rem;
  color: #172635;
  line-height: 1.4;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-service__attention {
    font-size: 0.75rem;
  }
}

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

.p-vision {
  padding: 8.75rem 0 11rem;
  background-color: #fff;
  position: relative;
}

.p-vision::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35%;
  height: 80%;
  background-color: #172635;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-vision::before {
    display: none;
  }
}

.p-vision__inner {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 1.6875rem;
  position: relative;
  z-index: 1;
}

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

.p-vision__image {
  width: 52%;
}
@media screen and (max-width: 767px) {
  .p-vision__image {
    width: 100%;
  }
}

.p-vision__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 514/407;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-vision__body {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-vision__body {
    width: 100%;
  }
}

.p-vision__title {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #172635;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-vision__title {
    font-size: 1.5rem;
  }
}

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

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

/* パンくず */
.breadcrumb {
  margin-top: 1.875rem;
}

.breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 1em 5rem 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb__inner {
    padding: 1em 1.25rem 0;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 375px) {
  .breadcrumb__inner {
    font-size: 0.625rem;
  }
}

.breadcrumb a {
  color: #a79353;
}

.breadcrumb .current-item {
  font-weight: 700;
}

.breadcrumb span[property=name] {
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}


/* ページネーション */
.pagination {
  margin-top: 3.4375rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5625rem;
}

.pagination__arrow {
  color: #a79353;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #a79353;
  background-color: #fff;
  border: 1px solid #a79353;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-numbers:hover{
  background-color: #a79353;
  color: #fff;
}

.page-numbers.current {
  color: #fff;
  background-color: #a79353;
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
  background-color: transparent;
}


.post {
  padding: 5rem 0;
}

.post__inner {
  width: 100%;
  max-width: 1024px;
  padding: 0 1.25rem;
  margin: 0 auto;
}

.post__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.9375rem;
}

.post__category {
  display: inline-block;
  background-color: #a79353;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 0.3125rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .post__category {
    font-size: 0.75rem;
  }
}

.post__date {
  font-size: 1rem;
  font-weight: 300;
  color: #000;
}
@media screen and (max-width: 767px) {
  .post__date {
    font-size: 0.875rem;
  }
}

.post__title {
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
}

.post__title::after {
  position: absolute;
  content: "";
  width: 100%;
  background: #a79353;
  height: 1px;
  left: 0;
  bottom: -0.3125rem;
}

.post__body {
  margin-top: 3.75rem;
}

.single-nav__items {
  margin-top: 4.5rem;
  max-width: 500px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 1.25rem), 1fr)); /* カードの間隔を考慮して均等に */
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  justify-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .single-nav__items {
    margin-top: 3.4375rem;
    grid-template-columns: 1fr;
    row-gap: 1.6875rem;
  }
}

.single-nav__item {
  width: 100%;
}

.page-nav-button{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  background-color: #a79353;
  color: #fff;
  padding: 0.625rem 1.25rem;

  transition: all 0.3s ease;
}

.page-nav-button:hover{
  border: 1px solid #a79353;
  background-color: #fff;
  color: #a79353;
  opacity: 1;
}

.site-content h2,
.site-content h3 {
  margin-bottom: 1.5625rem;
}

.site-content p,
.site-content h4,
.site-content h5,
.site-content h6,
.site-content img,
.site-content ul,
.site-content ol {
  margin-bottom: 0.9375rem;
}

.site-content p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
}
@media screen and (max-width: 768px) {
  .site-content p {
    line-height: 1.8;
  }
}
@media screen and (max-width: 375px) {
  .site-content p {
    font-size: 0.875rem;
  }
}

.site-content h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  background-color: #a79353;
  color: #fff;
  padding: 0.625rem 0.9375rem;
}
@media screen and (max-width: 768px) {
  .site-content h2 {
    font-size: clamp(1.5rem, 0.998rem + 2.87vw, 2.375rem);
  }
}

.site-content h3 {
  font-size: 1.625rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #172635;
  line-height: 1.8;
  padding: 0.3125rem 1.25rem;
  border-bottom: 1px solid #a79353;
  border-left: 0.1875rem solid #a79353;
}
@media screen and (max-width: 768px) {
  .site-content h3 {
    font-size: clamp(1.125rem, 0.838rem + 1.64vw, 1.625rem);
  }
}

.site-content h4 {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 700;
  color: #a79353;
  letter-spacing: 1px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .site-content h4 {
    font-size: 1rem;
  }
}

.site-content h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}
@media screen and (max-width: 768px) {
  .site-content h5 {
    font-size: 0.875rem;
  }
}

.site-content h6 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  color: #172635;
}
@media screen and (max-width: 768px) {
  .site-content h6 {
    font-size: 0.75rem;
  }
}

.site-content ul {
  list-style: none;
  padding-left: 2.25rem;
}

.site-content ul li {
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.site-content ul li::before{
  content: "⚫︎";
  color: #a79353;
  font-size: 0.6em;
  margin-right: 1em;
}

.site-content ul li:not(:first-child) {
  margin-top: 0.625rem;
}

.site-content ol {
  counter-reset: number;
  list-style-type: none !important;
  padding-left: 1.25rem;
}

.site-content ol li {
  position: relative;
  line-height: 1.6;
  padding-left: 2.1875rem;
}

.site-content ol li:not(:first-child) {
  margin-top: 0.625rem;
}

.site-content ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background-color:#a79353;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.site-content a {
  color: #a79353;
}

.site-content figure.wp-block-image img {
  width: auto !important;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* YouTube iframe対応（レスポンシブ） */
.site-content iframe {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* CSSでアスペクト比を維持 */
  margin-bottom: 15px;
}

/* 旧ブラウザ対応が必要な場合はwrapで対応 */
.site-content .video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  margin-bottom: 15px;
}

.site-content .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.news__category-title-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.news__category-title-en {
  font-family: "Fraunces", serif;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color:#a79353;
}
@media screen and (max-width: 768px) {
  .news__category-title-en {
    font-size: clamp(1.75rem, 1.607rem + 0.82vw, 2rem);
  }
}

.news__category-title {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #172635;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .news__category-title {
    font-size: clamp(1rem, 0.607rem + 0.82vw, 1.5rem);
  }
}
/*# sourceMappingURL=style.css.map */
