@charset "UTF-8";
/* =====================================================
* base
* =================================================== */
body {
  font-family: "Shippori Mincho B1", serif;
/*   font-size: clamp(0.875rem, calc(0.6358418367rem + 1.0204081633vw), 1.125rem); */
  font-size: clamp(0.875rem, calc(0.6358418367rem + 1.0204081633vw), 1rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 180%;
  color: #FFF;
  background: #1E1E1E;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #FFF;
  transition: all 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: #A29667;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a:hover {
    color: #A29667;
  }
}

li {
  list-style: none;
}

p {
  word-break: break-all;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =====================================================
* header
* =================================================== */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 40px;
  z-index: 999;
}

@media screen and (max-width: 1024px) {
  .l-header {
    padding: 0 24px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 72px;
    padding: 0 15px;
    transition: all 0.2s ease-out;
  }
  .l-header.is-show {
    background: #F5F5F5;
  }
}
/* header logo -------------------------------------- */
.l-header__logo {
  width: 19.8%;
  max-width: 268px;
  margin-right: 10px;
}
.l-header__logo a {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 52.5%;
    min-width: 181px;
  }
}
/* header nav --------------------------------------- */
.l-header__main {
  display: flex;
  align-items: center;
}
.l-header__main li {
  margin-right: 1.6666666667vw;
}
.l-header__main li a {
  display: block;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.5rem, calc(96.5rem + -200vw), 0.625rem);
  text-align: center;
  line-height: 1.2;
  color: #1E1E1E;
}
.l-header__main li a span {
  position: relative;
  display: block;
  margin-bottom: 5px;
  font-family: "Baskervville", serif;
  font-size: clamp(0.875rem, calc(96.875rem + -200vw), 1rem);
  font-weight: 400;
}
.l-header__main li a span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #1E1E1E;
  transition: all 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__main li a:hover span::after {
    width: 100%;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .l-header__main li a:hover span::after {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .l-header__nav {
    position: fixed;
    top: 72px;
    right: 0;
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: calc(100vh - 72px);
    padding: 48px 24px 10px;
    background: #F5F5F5;
    transform: translateX(130%);
    transition: all 0.3s ease-out;
  }
  .l-header.is-show .l-header__nav {
    transform: translateX(0);
  }
  .l-header__main {
    align-items: flex-start;
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
  }
  .l-header__main li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
  .l-header__main li:nth-of-type(3), .l-header__main li:nth-of-type(7) {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  }
  .l-header__main li a {
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 0.625rem;
  }
  .l-header__main li a span {
    margin-bottom: 0;
    margin-right: 1rem;
    font-size: 1rem;
  }
}
/* header button ------------------------------------ */
.l-header__button {
  display: none;
  width: 56px;
  height: 56px;
  text-align: center;
}
.l-header__line {
  position: relative;
  display: block;
  width: 29px;
  height: 16px;
  margin: 0 auto;
}
.l-header__line span {
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1E1E1E;
}
.l-header__line span:nth-of-type(1) {
  top: 0;
}
.l-header__line span:nth-of-type(2) {
  width: 79.4%;
  top: calc(50% - 1px);
}
.l-header__line span:nth-of-type(3) {
  bottom: 0;
}
.l-header.is-show .l-header__button .l-header__line {
  width: 30px;
  height: 17px;
}
.l-header.is-show .l-header__button .l-header__line span:nth-of-type(1), .l-header.is-show .l-header__button .l-header__line span:nth-of-type(3) {
  top: 50%;
}
.l-header.is-show .l-header__button .l-header__line span:nth-of-type(1) {
  transform: translateY(-50%) rotate(-30deg);
}
.l-header.is-show .l-header__button .l-header__line span:nth-of-type(2) {
  opacity: 0;
}
.l-header.is-show .l-header__button .l-header__line span:nth-of-type(3) {
  transform: translateY(-50%) rotate(30deg);
}

/* =====================================================
* banner
* =================================================== */
.p-banner a {
  display: block;
}

/* =====================================================
* footer
* =================================================== */
.l-footer {
  position: relative;
  color: #1E1E1E;
  background: #F5F5F5;
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 3rem 0;
}
.l-footer__logo {
  width: 26.2%;
  margin: 30px 20px 30px 0;
}
.l-footer__copyright {
  display: block;
  padding: 2rem 0;
  font-family: "Baskervville", serif;
  font-size: clamp(0.5rem, calc(0.1412627551rem + 1.5306122449vw), 0.875rem);
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  border-top: 1px solid rgba(30, 30, 30, 0.1);
}

@media screen and (max-width: 768px) {
  .l-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .l-footer__logo {
    width: 100%;
    max-width: 330px;
    margin: 0 0 40px;
  }
  .l-footer__copyright {
    padding: 1.5rem 0 1.5rem 1.5rem;
    line-height: 140%;
    text-align: left;
  }
}
/* footer menu --------------------------------------- */
.l-footer__menu {
  display: flex;
}

.l-footer__nav {
  padding: 0 1.5rem;
}
.l-footer__nav.-left, .l-footer__nav.-center {
  border-right: 1px solid rgba(30, 30, 30, 0.1);
}
.l-footer__nav.-left {
  padding-left: 0;
}
.l-footer__nav.-right {
  padding-right: 0;
}
.l-footer__nav li {
  margin-bottom: 1.5rem;
}
.l-footer__nav li:last-of-type {
  margin-bottom: 0;
}
.l-footer__nav li a {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  font-size: 0.625rem;
  line-height: 120%;
  color: #1E1E1E;
}
.l-footer__nav li a span {
  display: block;
  margin-right: 0.5rem;
  font-family: "Baskervville", serif;
  font-size: clamp(0.875rem, calc(0.7554209184rem + 0.5102040816vw), 1rem);
  font-weight: 400;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .l-footer__menu {
    flex-direction: column;
  }
  .l-footer__nav {
    padding: 1rem 0;
  }
  .l-footer__nav.-left, .l-footer__nav.-center {
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
    border-right: none;
  }
  .l-footer__nav.-left {
    padding-top: 0;
  }
  .l-footer__nav.-right {
    padding-bottom: 0;
  }
  .l-footer__nav li {
    margin-bottom: 1rem;
  }
}
/* =====================================================
* main
* =================================================== */
.l-body__inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.l-container {
  width: 100%;
  max-width: 1228px;
  padding: 0 24px;
  margin: 0 auto;
}

.l-container--md {
  width: 100%;
  max-width: 1048px;
  padding: 0 24px;
  margin: 0 auto;
}

.l-container--sm {
  width: 100%;
  max-width: 848px;
  padding: 0 24px;
  margin: 0 auto;
}

/* =====================================================
* breadcrumbs
* =================================================== */
.l-breadcrumbs {
  padding: 0.5rem 0;
  font-size: clamp(0.625rem, calc(0.5054209184rem + 0.5102040816vw), 0.75rem);
  text-align: right;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #1E1E1E;
  text-transform: uppercase;
  font-family: "Noto Serif JP", serif;
}
.l-breadcrumbs a {
  color: #1E1E1E;
}
.l-breadcrumbs > span:first-of-type {
  margin-left: 0;
}
.l-breadcrumbs > span {
  margin: 0 8px;
}
.l-breadcrumbs > span:last-of-type {
  margin-right: 0;
}
.l-breadcrumbs__arrow {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 !important;
  border-top: 1px solid #1E1E1E;
  border-right: 1px solid #1E1E1E;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.8s ease-out;
}

@media screen and (max-width: 768px) {
  .l-breadcrumbs__container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: auto;
    scrollbar-width: thin;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .l-breadcrumbs {
    padding: 0;
    text-align: left;
    width: 100vw;
  }

}
/* =====================================================
* side bar
* =================================================== */
.l-sidebar__group {
  margin-bottom: 40px;
}
.l-sidebar__group:last-of-type {
  margin-bottom: 0;
}
.l-sidebar h2 {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
.l-sidebar h2::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2rem;
  height: 1px;
  background: #FFF;
}
.l-sidebar ul {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.l-sidebar li {
  margin-bottom: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.875rem, calc(0.7554209184rem + 0.5102040816vw), 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
.l-sidebar li a {
  position: relative;
  display: inline-block;
  padding: 3px 11px 5px;
}
.l-sidebar li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 2px;
  height: 100%;
  background: transparent;
  transition: all 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .l-sidebar li a:hover {
    color: #A29667;
  }
  .l-sidebar li a:hover::before {
    background: #A29667;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .l-sidebar li a:hover {
    color: #A29667;
  }
  .l-sidebar li a:hover::before {
    background: #A29667;
  }
}
.l-sidebar li.is-current a {
  color: #A29667;
}
.l-sidebar li.is-current a::before {
  background: #A29667;
}
.l-sidebar__select {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.l-sidebar__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #1E1E1E;
  border-bottom: 1px solid #1E1E1E;
  transform: translateY(-50%) rotate(45deg);
}
.l-sidebar__select form {
  width: -moz-fit-content;
  width: fit-content;
}
.l-sidebar select {
  -webkit-appearance: none;
  appearance: none;
}
.l-sidebar select {
  width: 160px;
  padding: 8px 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #A29667;
  background: #FFF;
  border: 1px solid #A29667;
}

@media screen and (max-width: 768px) {
  .l-sidebar__group {
    margin-bottom: 1rem;
  }
  .l-sidebar__year {
    display: flex;
    align-items: center;
  }
  .l-sidebar__year h2 {
    margin-bottom: 0;
    margin-right: 36px;
    width: 100%;
  }
  .l-sidebar__select, .l-sidebar__select form {
    width: 100%;
  }
  .l-sidebar__cat {
    margin-bottom: 0.5rem;
  }
  .l-sidebar__cat h2 {
    margin-bottom: 1rem;
  }
  .l-sidebar__cat select {
    font-size: 0.75rem;
    width: 100%;
  }
}
/* =====================================================
* flex
* =================================================== */
.c-flex {
  display: flex;
}
.c-flex.-wrap {
  flex-wrap: wrap;
}
.c-flex.-column {
  flex-direction: column;
}
.c-flex.-center {
  justify-content: center;
  align-items: center;
}
.c-flex.-x__center {
  justify-content: center;
}
.c-flex.-x__between {
  justify-content: space-between;
}
.c-flex.-x__bottom {
  justify-content: flex-end;
}
.c-flex.-y__top {
  align-items: flex-start;
}
.c-flex.-y-center {
  align-items: center;
}
.c-flex.-y__bottom {
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .c-flex.-sp-column {
    flex-direction: column;
  }
}

/* =====================================================
* section
* =================================================== */
.p-section {
  padding: 88px 0;
}

@media screen and (max-width: 768px) {
  .p-section {
    padding: 48px 0;
  }
}
/* =====================================================
* button
* =================================================== */
.c-button {
  display: flex;
  align-items: center;
  font-family: "Baskervville", serif;
  line-height: 150%;
  cursor: pointer;
  transition: all 0.8s ease-out;
}
.c-button > span {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 20px;
}
.c-button > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: #FFF;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.8s ease-out;
}
.c-button > span span {
  position: absolute;
  top: 50%;
  left: calc(50% - 1px);
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #1E1E1E;
  border-right: 1px solid #1E1E1E;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.8s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    color: #A29667;
  }
  .c-button:hover > span::before {
    background: #A29667;
  }
  .c-button:hover > span span {
    border-color: #FFF;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-button:hover {
    color: #A29667;
  }
  .c-button:hover > span::before {
    background: #A29667;
  }
  .c-button:hover > span span {
    border-color: #FFF;
  }
}

/* =====================================================
* sentence
* =================================================== */
.c-text.-center {
  text-align: center;
}
.c-text.-right {
  text-align: right;
}

/* =====================================================
* title
* =================================================== */
.c-title {
  margin-bottom: 3.5rem;
  font-family: "Baskervville", serif;
  font-size: clamp(1.5rem, calc(0.9021045918rem + 2.5510204082vw), 2.125rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.c-title span {
  position: relative;
  display: block;
  margin-top: 1rem;
  padding-left: 3rem;
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(0.875rem, calc(0.7554209184rem + 0.5102040816vw), 1rem);
  letter-spacing: 0.04em;
}
.c-title span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2rem;
  height: 1px;
  background: #FFF;
}

@media screen and (max-width: 768px) {
  .c-title {
    margin-bottom: 2rem;
  }
  .c-title span {
    padding-left: 3rem;
  }
}
/* =====================================================
* page visual
* =================================================== */
.p-page-visual {
  background-image: url(../img/page-visual_bg.png);
  background-size: cover;
}
.p-page-visual__block {
  padding: calc(80px + 2rem) 0 2rem;
}
.p-page-visual__title {
  margin-bottom: 1.5rem;
  font-family: "Baskervville", serif;
  font-size: clamp(2rem, calc(0.5650510204rem + 6.1224489796vw), 3.5rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 120%;
  text-transform: uppercase;
  white-space: nowrap;
}
.p-page-visual__title span {
  position: relative;
  display: block;
  padding-left: 3rem;
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(0.75rem, calc(0.5108418367rem + 1.0204081633vw), 1rem);
  letter-spacing: 0.04em;
  line-height: 1;
}
.p-page-visual__title span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2rem;
  height: 1px;
  background: #FFF;
}

@media screen and (max-width: 768px) {
  .p-page-visual {
    background-image: url(../img/page-visual_bg_sp.png);
  }
  .p-page-visual__block {
/*     padding: calc(72px + 0.5rem) 0 1.5rem; */
	      padding: calc(72px + 0.5rem) 0 .5rem;
  }
  .p-page-visual__title {
    margin-bottom: 1rem;
  }
}
/* =====================================================
* pager
* =================================================== */
.p-pager {
  font-family: "Noto Sans JP", sans-serif;
}
.p-pager .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-pager .wp-pagenavi a,
.p-pager .wp-pagenavi > span {
  font-weight: 500;
  letter-spacing: 0;
  line-height: 140%;
  font-size: 1rem;
  border: none;
}
.p-pager .wp-pagenavi a.page,
.p-pager .wp-pagenavi > span {
  display: inline-block;
  padding: 0;
  margin: 0 0.5rem;
}
.p-pager .wp-pagenavi span.current {
  color: #A29667;
}
.p-pager .wp-pagenavi .previouspostslink,
.p-pager .wp-pagenavi .nextpostslink {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 1rem;
}
.p-pager .wp-pagenavi .previouspostslink::before,
.p-pager .wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: #FFF;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.8s ease-out;
}
.p-pager .wp-pagenavi .previouspostslink span,
.p-pager .wp-pagenavi .nextpostslink span {
  position: absolute;
  top: 50%;
  left: calc(50% - 1px);
  display: inline-block;
  padding: 0;
  margin: 0;
  width: 6px;
  height: 6px;
  border: none;
  border-top: 1px solid #1E1E1E;
  border-right: 1px solid #1E1E1E;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.8s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-pager .wp-pagenavi .previouspostslink:hover::before,
  .p-pager .wp-pagenavi .nextpostslink:hover::before {
    background: #A29667;
  }
  .p-pager .wp-pagenavi .previouspostslink:hover span,
  .p-pager .wp-pagenavi .nextpostslink:hover span {
    border-color: #FFF;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .p-pager .wp-pagenavi .previouspostslink:hover::before,
  .p-pager .wp-pagenavi .nextpostslink:hover::before {
    background: #A29667;
  }
  .p-pager .wp-pagenavi .previouspostslink:hover span,
  .p-pager .wp-pagenavi .nextpostslink:hover span {
    border-color: #FFF;
  }
}
.p-pager .wp-pagenavi .previouspostslink span {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.p-pager .wp-pagenavi .nextpostslink span {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* =====================================================
* column 2
* =================================================== */
.p-col2__container {
  display: flex;
  justify-content: space-between;
}
.p-col2__main {
  width: 75.5%;
  max-width: 890px;
}
.p-col2__side {
  width: 21.2%;
  max-width: 250px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .p-col2__container {
    flex-direction: column;
  }
  .p-col2__main {
    margin-bottom: 16px;	
  }
  .p-col2__main, .p-col2__side {
    width: 100%;
    max-width: 100%;
  }
  .p-col2__side {
    margin-right: 0;
  }
}
/* =====================================================
* column 3
* =================================================== */
.p-col3-container {
  display: flex;
  justify-content: space-around;
}

.p-col3 {
  width: calc(33.33% - 43px);
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .p-col3-container {
    flex-direction: column;
  }
  .p-col3 {
    width: 100%;
    max-width: 100%;
  }
}
/* =====================================================
* animation - slider
* =================================================== */
.an-slider {
  animation: slider-left 45s infinite linear 0.5s both;
}

@keyframes slider-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* =====================================================
* TOP - fv
* =================================================== */
.p-fv__item {
  position: relative;
}
.p-fv__img img {
  width: 100%;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.p-fv__text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5.85%;
  display: flex;
  width: 100%;
}
.p-fv__text picture {
  display: inline-block;
  width: 34.2%;
}
.p-fv .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5.8%;
  text-align: right;
  width: 100%;
  max-width: 1228px;
  padding: 0 24px;
  margin: 0 auto;
}
.p-fv .slick-dots li,
.p-fv .slick-dots li button {
  width: 10px;
  height: 10px;
}
.p-fv .slick-dots li button {
  padding: 0;
}
.p-fv .slick-dots li button:before {
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  line-height: 1;
  opacity: 1;
  color: #FFF;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.p-fv .slick-dots li.slick-active button:before {
  top: calc(50% + 1px);
  color: #A29667;
  width: 10px;
  height: 10px;
  font-size: 10px;
}
.p-fv .slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .p-fv__text {
    bottom: 4.1%;
  }
  .p-fv__text picture {
    width: 67.4%;
  }
  .p-fv .slick-dots {
    bottom: 6%;
  }
}
/* =====================================================
* TOP - intro
* =================================================== */
.p-intro {
  min-height: 200px;
}
.p-intro__item {
  width: 50%;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .p-intro {
    min-height: auto;
    flex-direction: column-reverse !important;
  }
  .p-intro__item {
    width: 100%;
    padding: 1.5rem;
  }
}
/* intro jra ---------------------------------------- */
.p-intro__jra {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url(../img/intro_jra.jpg);
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.p-intro__jra::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1E1E1E;
  opacity: 0.7;
  z-index: -1;
}
.p-intro__jra p {
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
  line-height: 1;
}
.p-intro__jra p:first-of-type {
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, calc(1.0393258427rem + 0.8988764045vw), 1.5rem);
}
.p-intro__jra p:first-of-type span {
  display: inline-block;
  margin-left: 1.5rem;
  margin-right: 10px;
  font-size: clamp(2.5rem, calc(1.2359550562rem + 5.393258427vw), 4rem);
  letter-spacing: 0.1em;
}
.p-intro__jra p:last-of-type {
  font-size: clamp(0.75rem, calc(0.6304209184rem + 0.5102040816vw), 0.875rem);
}

@media screen and (max-width: 768px) {
  .p-intro__jra {
    background-image: url(../img/intro_jra_sp.jpg);
    background-position: top;
  }
}
/* intro tv ----------------------------------------- */
.p-intro__tv {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-intro__tv-img {
  width: 29%;
  max-width: 200px;
  min-width: 150px;
  margin-right: 40px;
}
.p-intro__tv-cont {
  width: -moz-fit-content;
  width: fit-content;
}
.p-intro__tv-cont h2,
.p-intro__tv-cont p {
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
}
.p-intro__tv-cont h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, calc(1.0393258427rem + 0.8988764045vw), 1.5rem);
  font-weight: 400;
  line-height: 1;
}
.p-intro__tv-cont p {
  margin-bottom: 1.5rem;
  font-size: clamp(0.75rem, calc(0.6304209184rem + 0.5102040816vw), 0.875rem);
  line-height: 130%;
}
.p-intro__tv-cont .c-button {
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .p-intro__tv-img {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-intro__tv {
    flex-direction: column;
    padding: 2.5rem 0;
  }
  .p-intro__tv-img {
    width: 55.7%;
    min-width: 180px;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .p-intro__tv-cont {
    text-align: center;
  }
  .p-intro__tv-cont h2,
  .p-intro__tv-cont p {
    font-family: "Shippori Mincho", serif;
    letter-spacing: 0.1em;
  }
  .p-intro__tv-cont h2 {
    margin-bottom: 0.5rem;
  }
  .p-intro__tv-cont p {
    margin-bottom: 1rem;
    line-height: 1;
  }
  .p-intro__tv-cont .c-button {
    justify-content: center;
  }
}
/* =====================================================
* TOP - slider
* =================================================== */
.p-post__slider {
  width: calc(100% + (100vw - 100%) / 2);
  padding: 1.5rem 0;
}
.p-post__slider-wrap {
  position: relative;
}
.p-post__slider .slick-slider,
.p-post__slider .slick-list {
  position: static;
}
.p-post__slider li {
  width: 338px;
  margin-right: 40px;
}
@media (hover: hover) and (pointer: fine) {
  .p-post__slider li a:hover .p-post__cat {
    color: #FFF;
    background: #A29667;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .p-post__slider li a:hover .p-post__cat {
    color: #FFF;
    background: #A29667;
  }
}
.p-post__slider .p-post__img {
  margin-bottom: 1rem;
  aspect-ratio: 16/9;
}
.p-post__slider .p-post__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
    object-position: top;
}
.p-post__slider .p-post__cat {
  padding: 2px 8px;
}
.p-post__slider .p-post__title {
  margin-top: 0.5rem;
}
.p-post__slider .slick-prev,
.p-post__slider .slick-next {
  position: absolute;
/*   top: 50%; */
  top: 35%;
  transform: translateY(-50%);
  z-index: 2;
  width: 27px;
  height: 27px;
}
.p-post__slider .slick-prev::before,
.p-post__slider .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: #A29667;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.8s ease-out;
  opacity: 1;
}
.p-post__slider .slick-prev::after,
.p-post__slider .slick-next::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transition: all 0.8s ease-out;
}
.p-post__slider .slick-prev {
  left: -13px;
}
.p-post__slider .slick-prev::after {
  left: calc(50% + 1px);
  transform: translate(-50%, -50%) rotate(-135deg);
}
.p-post__slider .slick-next {
  right: -13px;
}
.p-post__slider .slick-next::after {
  left: calc(50% - 1px);
  transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .p-post__slider li {
    width: 260px;
    margin-right: 1rem;
  }
  .p-post__slider .p-post__cat {
    padding: 2px 20px;
  }
  .p-post__slider .slick-prev,
  .p-post__slider .slick-next {
    width: 23px;
    height: 23px;
  }
  .p-post__slider .slick-prev::after,
  .p-post__slider .slick-next::after {
    width: 7px;
    height: 7px;
  }
  .p-post__slider .slick-prev {
    left: -12px;
  }
  .p-post__slider .slick-next {
    right: -12px;
  }
}
/* =====================================================
* TOP - diary
* =================================================== */
.p-top-diary {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.p-top-diary::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 71.8%;
  height: 100%;
  background: #91886A;
  opacity: 0.1;
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}
.p-top-diary__block {
  padding: 80px 0;
}
.p-top-diary .c-title {
  margin-bottom: 0;
}
.p-top-diary .p-post__slider {
  padding: 2rem 0;
}

@media screen and (max-width: 768px) {
  .p-top-diary::before {
    width: 100%;
    height: 66%;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }
  .p-top-diary__block {
    padding: 3rem 0;
  }
  .p-top-diary .c-title span {
    margin-top: 0.5rem;
  }
  .p-top-diary .c-button {
    justify-content: flex-end;
  }
}
/* =====================================================
* TOP - schedule & result
* =================================================== */
.p-top-race {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.p-top-race::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28.2%;
  height: 30.4%;
  background: #91886A;
  opacity: 0.1;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  z-index: -1;
}
.p-top-race__block {
  padding: 88px 0;
}
.p-top-race__title {
  position: relative;
  display: block;
  margin-top: 1rem;
  padding-left: 2.625rem;
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1rem, calc(0.7608418367rem + 1.0204081633vw), 1.25rem);
  letter-spacing: 0.04em;
}
.p-top-race__title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2rem;
  height: 1px;
  background: #FFF;
}
.p-top-race__no-post {
    font-family: "Noto Sans JP", sans-serif;
	font-size: .85rem;
	margin-top: 8px;
}
.p-top-race__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-top-race__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.625rem, calc(0.3858418367rem + 1.0204081633vw), 0.875rem);
}
.p-top-race__desc > div {
/*   margin-bottom: 0.5rem; */
  margin-bottom: 0;
}
.p-top-race__desc p {
  margin-left: 4px;
  margin-right: 4px;
  line-height: 200%;
}
.p-top-race p.p-top-race__house {
  padding: 0 16px;
  margin-right: 4px;
  font-size: clamp(0.625rem, calc(0.5054209184rem + 0.5102040816vw), 0.75rem);
  line-height: 184%;
  border: 1px solid #FFF;
  transition: all 0.3s ease-out;
}
.p-top-race__title {
  font-weight: 400;
  font-size: clamp(1rem, calc(0.8804209184rem + 0.5102040816vw), 1.125rem);
}
.p-top-race h4.p-post__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1rem, calc(0.8804209184rem + 0.5102040816vw), 1.125rem);
  font-weight: 400;
  margin-left: 0;
}
.p-top-race .p-post__item {
  width: calc((100% - 40px) / 2);
  margin-bottom: 0;
}
/* .p-top-race .p-post__item:last-of-type {
  margin-bottom: 0;
} */
.p-top-race .p-post__item a {
  align-items: flex-start;
  flex-direction: column;
  padding: .5rem 1rem 1rem 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-race a:hover p.p-top-race__house {
    border-color: #A29667;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .p-top-race a:hover p.p-top-race__house {
    border-color: #A29667;
  }
}
.p-top-race__schedule {
  margin-bottom: 3.5rem;
}
.p-top-race__result {
  margin-bottom: 40px;
}
.p-top-race__result .p-top-race__desc {
  font-size: clamp(0.75rem, calc(0.6304209184rem + 0.5102040816vw), 0.875rem);
}
.p-top-race .c-button {
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .p-top-race::before {
    top: -0.5px;
    width: 100%;
    height: 33.6%;
  }
  .p-top-race .c-title {
    margin-bottom: 3rem;
  }
  .p-top-race__block {
    padding: 48px 0;
  }
  .p-top-race__title {
    margin-top: 1rem;
  }
  .p-top-race__desc > div {
    margin-bottom: 8px;
  }
  .p-top-race p.p-top-race__house {
    padding: 0 9px;
  }
  .p-top-race h4.p-post__title {
    margin-top: 0;
  }
  .p-top-race .p-post__list {
    padding-top: 0;
  }
  .p-top-race .p-post__item {
    width: 100%;
    margin-bottom: 0;
  }
  .p-top-race .p-post__item:not(:nth-last-of-type(n+3)) {
    display: none;
  }
  .p-top-race__schedule {
    margin-bottom: 3.5rem;
  }
  .p-top-race__schedule .p-top-race__desc {
    align-items: flex-start;
  }
  .p-top-race__result {
    margin-bottom: 1.5rem;
  }
  .p-top-race__result .p-post__slider li {
    width: 280px;
  }
  .p-top-race .c-button {
/*     justify-content: center; */
  }
}
/* =====================================================
* TOP - gallery
* =================================================== */
.p-top-gallery {
  position: relative;
  z-index: 1;
}
.p-top-gallery__block {
  padding: 3.5rem 0;
}
.p-top-gallery__bg {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: -1;
  overflow: hidden;
}
.p-top-gallery__list {
  display: flex;
}
.p-top-gallery__list li {
  width: 20vw;
}
.p-top-gallery__list li img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.p-top-gallery .c-title {
  margin-bottom: 40px;
}
.p-top-gallery__text {
  margin-bottom: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 200%;
}

@media screen and (max-width: 768px) {
  .p-top-gallery__list {
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-top-gallery__list li {
    width: 300px;
  }
}
/* =====================================================
* TOP - media
* =================================================== */
.p-top-media-info {
  position: relative;
  z-index: 1;
}
.p-top-media-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url(../img/top-media.jpg);
  background-size: cover;
  -o-object-position: right;
     object-position: right;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.1;
  z-index: -1;
}
.p-top-media-info__block {
  padding: 6rem 0;
}
.p-top-media-info__title {
  display: flex;
  flex-direction: column;
  width: 25.5%;
  margin-right: 40px;
}
.p-top-media-info__list {
  flex: 1;
}
.p-top-media-info__list.p-post__list {
  padding-top: 0;
  margin-bottom: 0;
}
.p-top-media-info__list.p-post__list .p-post__cat {
  padding: 4px 16px;
}
.p-top-media-info .p-post__item:first-of-type a {
  padding-top: 0;
}
.p-top-media-info__button {
  margin-top: auto;
}

@media screen and (max-width: 1024px) {
  .p-top-media-info::before {
    width: 85%;
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@media screen and (max-width: 768px) {
  .p-top-media-info::before {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 190%;
    height: 63%;
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .p-top-media-info__block {
    padding: 3.5rem 0 4.5rem;
  }
  .p-top-media-info__title {
    width: 100%;
    margin-right: 0;
  }
  .p-top-media-info__list.p-post__list {
    margin-bottom: 2rem;
  }
  .p-top-media-info .c-button {
    justify-content: center;
  }
}

/* =====================================================
* TOP - instagram
* =================================================== */
.p-top-instagram {
  position: relative;
  z-index: 1;
  margin: 3rem 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-top-instagram {
    margin: 2.5rem 0;
  }
}
/* =====================================================
* profile
* =================================================== */
.p-profile {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.p-profile::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54.6%;
  height: calc(100% + 56px);
  background: #91886A;
  opacity: 0.1;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: -1;
}
.p-profile__block {
  padding: 120px 0;
}
.p-profile__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-profile__cont {
  width: 47.1%;
}
.p-profile__name {
  display: flex;
  align-items: center;
  margin-bottom: 0.875rem;
  font-size: clamp(2rem, calc(1.5216836735rem + 2.0408163265vw), 2.5rem);
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1;
}
.p-profile__name span {
  display: inline-block;
  margin-left: 1.5rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  line-height: 120%;
}
.p-profile__affiliation {
  display: flex;
  align-items: center;
  margin-bottom: 38px;
  font-size: clamp(0.875rem, calc(0.7554209184rem + 0.5102040816vw), 1rem);
  letter-spacing: 0.1em;
}
.p-profile__affiliation span {
  margin-right: 1rem;
  padding: 0 1.125rem;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.625rem, calc(0.5054209184rem + 0.5102040816vw), 0.75rem);
  letter-spacing: 0.04em;
  line-height: 200%;
  border: 1px solid #FFF;
}
.p-profile__text {
  margin-bottom: 40px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 180%;
}
.p-profile__desc {
  display: flex;
  flex-wrap: wrap;
}
.p-profile__desc > div {
  display: flex;
  width: 46%;
  margin-bottom: 10px;
}
.p-profile__desc > div:nth-last-of-type(-n+2) {
  margin-bottom: 0;
}
.p-profile__desc dt,
.p-profile__desc dd {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 180%;
}
.p-profile__desc dt {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 1rem;
}
.p-profile__img {
  width: 49.7%;
}

@media screen and (max-width: 1024px) {
  .p-profile__cont {
    width: 53%;
  }
  .p-profile__desc > div {
    width: 35%;
  }
  .p-profile__desc > div:nth-of-type(odd) {
    width: 60%;
  }
  .p-profile__img {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .p-profile::before {
    left: 0;
    right: auto;
    width: calc(100% + 45px);
    height: 46%;
  }
  .p-profile__block {
    padding: 48px 0;
  }
  .p-profile__inner {
    flex-direction: column;
  }
  .p-profile__cont {
    width: 100%;
    order: 2;
  }
  .p-profile__name {
    margin-bottom: 1rem;
  }
  .p-profile__affiliation {
    margin-bottom: 1.5rem;
  }
  .p-profile__affiliation span {
    padding: 0 20px;
  }
  .p-profile__text {
    margin-bottom: 1.5rem;
  }
  .p-profile__desc {
    flex-direction: column;
  }
  .p-profile__desc > div {
    width: 100%;
  }
  .p-profile__desc > div:nth-of-type(odd) {
    width: 100%;
  }
  .p-profile__desc > div:nth-last-of-type(n+2) {
    margin-bottom: 10px;
  }
  .p-profile__img {
    width: 100%;
    margin-bottom: 40px;
  }
}
/* timeline ------------------------------------ */
.p-timeline__table > div {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.p-timeline__table dt {
  width: 3.3em;
  margin-right: 2rem;
  font-size: clamp(1rem, calc(0.5216836735rem + 2.0408163265vw), 1.5rem);
  line-height: 200%;
}
.p-timeline__table dd {
  flex: 1;
  line-height: 180%;
  font-size: clamp(0.75rem, calc(0.3912627551rem + 1.5306122449vw), 1rem);
}
.p-timeline__table dd span {
  display: inline-block;
  margin-right: 1rem;
}

@media screen and (max-width: 768px) {
  .p-timeline__table > div {
    padding: 1rem 0.5rem;
  }
  .p-timeline__table dt {
    width: 3.3em;
    margin-right: 1.5rem;
  }
  .p-timeline__table dd span {
    margin-right: 1em;
  }
}
/* =====================================================
* archive
* =================================================== */
.p-post__list {
  padding-top: 1rem;
  margin-bottom: 40px;
}
.p-post__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.p-post__item a {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
}
.p-post__date, .p-post__cat {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 200%;
}
.p-post__date {
  font-size: clamp(0.75rem, calc(0.6304209184rem + 0.5102040816vw), 0.875rem);
}
.p-post__cat {
  text-align: center;
  width: 100px;
  margin-left: 12px;
  padding: 4px 16px;
  font-size: clamp(0.625rem, calc(0.5054209184rem + 0.5102040816vw), 0.75rem);
  color: #1E1E1E;
  background: #FFF;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .p-post__cat {
    width: inherit;
  }
}

.p-post__list .p-post__title {
  margin-left: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.875rem, calc(0.7554209184rem + 0.5102040816vw), 1rem);
  flex: 1;
}
@media (hover: hover) and (pointer: fine) {
  .p-post__list .p-post__item a:hover .p-post__cat {
    color: #FFF;
    background: #A29667;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .p-post__list .p-post__item a:hover .p-post__cat {
    color: #FFF;
    background: #A29667;
  }
}

@media screen and (max-width: 768px) {
  .p-post__item a {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0 0.5rem;
  }
  .p-post__cat {
    padding: 2px .5rem;
  }
  .p-post__list .p-post__title {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
/* =====================================================
* single
* =================================================== */
.p-post__thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: top;
}

.single .p-post__title {
  font-weight: 600;
  font-size: clamp(1.5rem, calc(1.0216836735rem + 2.0408163265vw), 2rem);
  margin: 1rem 0 40px;
  letter-spacing: 0;
  line-height: 140%;
}
.single .p-post__date {
  font-size: clamp(0.875rem, calc(0.7554209184rem + 0.5102040816vw), 1rem);
}
.single .p-post__content {
  margin: 40px 0;
  line-height: 150%;
}
.single .p-post__content h2,
.single .p-post__content h3,
.single .p-post__content h4,
.single .p-post__content p,
.single .p-post__content ul,
.single .p-post__content tr,
.single .p-post__content a {
  line-height: 150%;
}
.single .p-post__content h2 {
  margin: 1.5rem 0;
  font-size: clamp(1.25rem, calc(1.0108418367rem + 1.0204081633vw), 1.5rem);
}
.single .p-post__content h3 {
  position: relative;
  padding-left: 12px;
  margin: 40px 0;
  font-size: clamp(1rem, calc(0.8804209184rem + 0.5102040816vw), 1.125rem);
}
.single .p-post__content h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #FFF;
}
.single .p-post__content h4 {
  padding: 2px 12px 3px;
  margin: 40px 0;
  font-size: 1rem;
  font-weight: 400;
  background: #A29667;
  border-radius: 4px;
}
.single .p-post__content tr {
  font-size: 0.875rem;
  margin-bottom: 1.5em;
}
.single .p-post__content ul {
  margin-bottom: 1.5em;
}
.single .p-post__content li {
  list-style: disc;
  margin-left: 16px;
  font-size: 0.875rem;
}
.single .p-post__content p {
  /* font-size: 0.875rem; */
  font-size: .95rem;
  margin-bottom: 1.5em;
  font-family: "Noto Serif JP", serif;
}
.single .p-post__content a {
  font-weight: 700;
  text-decoration: underline;
  color: #A29667;
}
.single .c-button {
  justify-content: center;
}

.single .wp-block-gallery {
  margin-bottom: 24px;
}
.wp-block-table td {
  color: #1E1E1E;
  background: #fff
}
.wp-block-table th {
  color: #fff;
  background: #A29667;
  border: 1px solid #1e1e1e;
}

@media screen and (max-width: 768px) {
  .single .p-post__title {
    margin: 0.5rem 0 2rem;
  }
  .single .p-post__content {
    margin: 2rem 0;
  }
  .single .p-post__content h3 {
    margin: 2rem 0;
  }
  .single .p-post__content h4 {
    padding: 4px 12px;
    margin: 2rem 0;
  }
}
/* =====================================================
* gallery - 一覧
* =================================================== */
.p-gallery__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.p-gallery__list .p-gallery__img {
  margin-bottom: 1rem;
}
.p-gallery__list .p-post__date {
  font-size: clamp(0.625rem, calc(0.5054209184rem + 0.5102040816vw), 0.75rem);
}
.p-gallery__list .p-post__cat {
  padding: 2px 8px;
}
.p-gallery__list .p-gallery__title {
  margin-top: 0.5rem;
  font-size: clamp(1rem, calc(0.8804209184rem + 0.5102040816vw), 1.125rem);
}
.p-gallery__item {
  width: calc((100% - 120px) / 4);
}
@media (hover: hover) and (pointer: fine) {
  .p-gallery__item a:hover .p-post__cat {
    color: #FFF;
    background: #A29667;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .p-gallery__item a:hover .p-post__cat {
    color: #FFF;
    background: #A29667;
  }
}
.p-gallery__img {
  aspect-ratio: 1/1;
  background: #DFDFDF;
}
.p-gallery__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1024px) {
  .p-gallery__item {
    width: calc((100% - 80px) / 3);
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__list {
    gap: 24px;
  }
  .p-gallery__item {
    width: calc((100% - 24px) / 2);
  }
}
/* =====================================================
* gallery - 詳細
* =================================================== */
.single .p-post__cat {
  padding: 4px 16px;
}
.single .p-gallery__img {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .single .p-post__cat {
    padding: 2px 16px;
  }
}
/* =====================================================
* race - 一覧
* =================================================== */
.p-race__archive-title {
  margin-bottom: 2rem;
  font-size: clamp(1.5rem, calc(1.0216836735rem + 2.0408163265vw), 2rem);
  font-weight: 600;
  line-height: 140%;
}
.p-race__table {
  width: 100%;
  padding-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: auto;
  scrollbar-width: thin;
  scrollbar-color: #A29667 #FFF;
}
.p-race__table::-webkit-scrollbar {
  height: 3px;
}
.p-race__table::-webkit-scrollbar-track {
  background: #FFF;
  border-radius: 999px;
}
.p-race__table::-webkit-scrollbar-thumb {
  background: #A29667;
  border-radius: 999px;
}
.p-race__table table {
  min-width: 800px;
  border-collapse: collapse;
/*   font-size: 0.875rem; */
  font-size: 0.8rem;
  letter-spacing: 0;
  line-height: 160%;
  text-align: center;
  color: #1E1E1E;
  background: #FFF;
}
.p-race__table a {
  color: #A29667;
  text-decoration: underline;
}
.p-race__table thead {
  color: #FFF;
  background: #A29667;
}
.p-race__table thead th {
  border-right: 1px solid #FFF;
}
.p-race__table thead th:last-of-type {
  border-right: none;
}
.p-race__table tbody {
  font-family: "Noto Sans JP", sans-serif;
}
.p-race__table tbody td {
  border-right: 1px solid #9FA0A0;
  border-bottom: 1px solid #9FA0A0;
}
/* .p-race__table tbody td:nth-of-type(1) {
  width: 11.6%;
}
.p-race__table tbody td:nth-of-type(2) {
  width: 24.1%;
}
.p-race__table tbody td:nth-of-type(3) {
  width: 9.1%;
}
.p-race__table tbody td:nth-of-type(4) {
  width: 10.3%;
}
.p-race__table tbody td:nth-of-type(5) {
  width: 15.7%;
}
.p-race__table tbody td:nth-of-type(7), .p-race__table tbody td:nth-of-type(8), .p-race__table tbody td:nth-of-type(9) {
  width: 6%;
} */
.p-race__table tbody td:last-of-type {
  border-right: none;
}
.p-race__table tbody tr:last-of-type td {
  border-bottom: none;
}
.p-race__table th,
.p-race__table td {
  font-weight: 500 !important;
  padding: 10px 8px;
}
.p-race__pager {
  margin-top: 0.5rem;
}
.p-race__rank-1 td.p-race__rank, .p-race__rank-2 td.p-race__rank {
  position: relative;
  z-index: 1;
}
.p-race__rank-1 td.p-race__rank::before, .p-race__rank-2 td.p-race__rank::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background-size: contain;
  z-index: -1;
}
.p-race__rank-1 {
  background: #FFFAE6;
}
.p-race__rank-1 td.p-race__rank::before {
  background-image: url(../img/icon_star_yl.png);
}
.p-race__rank-2 {
  background: #F0F0F0;
}
.p-race__rank-2 td.p-race__rank::before {
  background-image: url(../img/icon_star_gry.png);
}

@media screen and (max-width: 1241px) {
  .p-race__pager {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-race__archive-title {
    margin-top: 66px;
  }
  .p-race__table table {
/*     min-width: 794px; */
    min-width: 680px;
  }
  .p-race__table th,
  .p-race__table td {
    padding: 8px 0;
  }
  .p-race__table tbody:nth-of-type(1) {
    width: 13%;
  }
  .p-race__table tbody:nth-of-type(2) {
    width: 27%;
  }
  .p-race__table tbody:nth-of-type(3) {
    width: 10.2%;
  }
  .p-race__table tbody:nth-of-type(4) {
    width: 7.5%;
  }
  .p-race__table tbody:nth-of-type(5) {
    width: 17.6%;
  }
  .p-race__pager {
    margin-top: 70px;
  }
}
/* GI勝利 -------------------------------------------- */
.g1-victory-all .p-race__table tbody td:nth-of-type(1), .g1-victory-all .p-race__table tbody td:nth-of-type(8) {
  width: 11.6%;
}
.g1-victory-all .p-race__table tbody td:nth-of-type(6), .g1-victory-all .p-race__table tbody td:nth-of-type(7) {
  width: 8.6%;
}

@media screen and (max-width: 768px) {
  .g1-victory-all .p-race__table tbody td:nth-of-type(1), .g1-victory-all .p-race__table tbody td:nth-of-type(8) {
    width: 13%;
  }
  .g1-victory-all .p-race__table tbody td:nth-of-type(6), .g1-victory-all .p-race__table tbody td:nth-of-type(7) {
    width: 5.6%;
  }
}
/* =====================================================
* race - 詳細
* =================================================== */
.single-race .p-post__img {
  margin-bottom: 40px;
  aspect-ratio: 16/9;
}
.single-race .p-post__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
}
.single-race .p-post__content {
  margin-top: 1rem;
}

.p-race__desc {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-race__desc > div {
  display: flex;
  width: calc((100% - 24px) / 2);
  margin-bottom: 1.5rem;
  background: #FFF;
}
.p-race__desc dt,
.p-race__desc dd {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 160%;
  text-align: center;
}
.p-race__desc dt {
  width: 37%;
  background: #A29667;
}
.p-race__desc dd {
  font-family: "Noto Sans JP", sans-serif;
  color: #1E1E1E;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .single-race .p-col2__side {
    display: none;
  }
  .single-race .p-post__title {
    margin-bottom: 40px;
  }
  .single-race .p-post__content {
    margin-top: 2rem;
  }
  .p-race__desc > div {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .p-race__desc dt {
    width: 30.6%;
  }
}
/* =====================================================
* achievement
* =================================================== */
.p-achievement dl {
  margin-bottom: 3rem;
}
.p-achievement dl:last-of-type {
  margin-bottom: 0;
}
.p-achievement dt,
.p-achievement dd {
  line-height: 160%;
}
.p-achievement dt {
  padding: 3px 8px;
  font-size: clamp(1.125rem, calc(1.0054209184rem + 0.5102040816vw), 1.25rem);
  font-weight: 700;
  background: #A29667;
}
.p-achievement dd {
  position: relative;
  padding: 10px 8px 10px calc(1em + 8px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1E1E1E;
  background: #FFF;
  border-bottom: 1px solid #FFF;
  border-bottom: 1px solid #9FA0A0;
}
.p-achievement dd::before {
  content: "・";
  position: absolute;
  top: 10px;
  left: 8px;
}
.p-achievement dd:last-of-type {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .p-achievement dl {
    margin-bottom: 2rem;
  }
  .p-achievement dt {
    padding: 3px 8px;
  }
  .p-achievement dd {
    padding: 8px 8px 8px calc(1em + 8px);
  }
  .p-achievement dd::before {
    top: 8px;
  }
}
/* =====================================================
* total
* =================================================== */
.total .p-race__table tbody td:nth-of-type(2), .total .p-race__table tbody td:nth-of-type(3), .total .p-race__table tbody td:nth-of-type(4) {
  width: 9%;
}
.total .p-race__table tbody td:nth-of-type(5) {
  width: 10%;
}
.total .p-race__table tbody td:nth-of-type(6) {
  width: 20%;
}
.total .p-race__table tbody td:nth-of-type(7), .total .p-race__table tbody td:nth-of-type(8) {
  width: 11.6%;
}

/* =====================================================
* victory all
* =================================================== */
.victory-all .p-race__table tbody td:nth-of-type(1) {
  width: 10.2%;
}
.victory-all .p-race__table tbody td:nth-of-type(2) {
  width: 12.7%;
}
.victory-all .p-race__table tbody td:nth-of-type(3) {
  width: 25.5%;
}
.victory-all .p-race__table tbody td:nth-of-type(4) {
  width: 19.2%;
}

/* =====================================================
* schedule
* =================================================== */
.race-schedule .p-race__archive-title {
  margin-top: 3.375rem;
}
.race-schedule .p-race__archive-title:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .race-schedule .l-sidebar__cat {
    display: flex;
    flex-direction: column;
  }
  .race-schedule .l-sidebar__group:first-of-type {
    margin: 1.5rem 0 0;
    order: 2;
  }
  .race-schedule .p-race__archive-title:first-of-type {
    margin-top: 3.25rem;
  }
}
.p-schedule__title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, calc(1.0108418367rem + 1.0204081633vw), 1.5rem);
  font-weight: 600;
}
.p-schedule__title span {
  display: block;
  margin-right: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.7554209184rem + 0.5102040816vw), 1rem);
}

.p-race__table.-schedule {
  padding-bottom: 10px;
  margin-bottom: 22px;
}
.p-race__table.-schedule tbody td:nth-of-type(1) {
  width: 10.3%;
}
.p-race__table.-schedule tbody td:nth-of-type(2) {
  width: 34.6%;
}
.p-race__table.-schedule tbody td:nth-of-type(3) {
  width: 9.1%;
}
.p-race__table.-schedule tbody td:nth-of-type(4) {
  width: 17.3%;
}
.p-race__table.-schedule tbody td:nth-of-type(5) {
  width: 11.3%;
}
.p-race__table.-schedule tbody td:nth-of-type(6), .p-race__table.-schedule tbody td:nth-of-type(7) {
  width: 8.6%;
}

@media screen and (max-width: 768px) {
  .p-race__table.-schedule {
    padding-bottom: 20px;
    margin-bottom: 2rem;
  }
}
/* =====================================================
* contact
* =================================================== */
.p-contact__text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-contact__row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}
.p-contact__row:last-of-type {
  align-items: center;
  margin-bottom: 4rem;
}
.p-contact__row:last-of-type dt {
  padding-top: 0;
}
.p-contact__form {
  padding: 4rem 3rem;
  border: 1px solid #FFF;
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: 0.05em;
}
.p-contact__form dt {
  display: flex;
  align-items: center;
  padding-top: 12px;
  width: 200px;
  margin-right: 1rem;
}
.p-contact__form dt span {
  padding: 5px 10px;
  margin-right: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
  border: 1px solid #FFF;
}
.p-contact__form dt span.p-contact__required {
  color: #A29667;
  border-color: #A29667;
}
.p-contact__form dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  flex: 1;
}
.p-contact__form dd span {
  display: block;
}
.p-contact__form dd input,
.p-contact__form dd select,
.p-contact__form dd textarea {
  width: 100%;
  padding: 13px 10px;
  color: #1E1E1E;
  background: #FFF;
  border: 1px solid #A29667;
}
.p-contact__form dd select {
  color: #D3D3D3;
}
.p-contact__form dd textarea {
  height: 136px;
}
.p-contact__form .c-button {
  position: relative;
  justify-content: center;
}
.p-contact__form .c-button span.wpcf7-spinner {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
}
.p-contact__select dd > span {
  position: relative;
}
.p-contact__select dd > span::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 14px;
  width: 14px;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  background-image: url(../img/icon_arrow.png);
  background-size: contain;
  pointer-events: none;
}

.wpcf7-not-valid-tip {
  color: #FFF;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
  border: none;
}

@media screen and (max-width: 768px) {
  .p-contact__text {
    margin-bottom: 1.5rem;
  }
  .p-contact__row {
    flex-direction: column;
  }
  .p-contact__row:last-of-type {
    margin-bottom: 40px;
  }
  .p-contact__form {
    padding: 40px 1.5rem;
  }
  .p-contact__form dt,
  .p-contact__form dd {
    width: 100%;
  }
  .p-contact__form dt {
    padding-top: 0;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .p-contact__select dd > span::after {
    top: calc(50% - 2px);
  }
}
/* =====================================================
* terms
* =================================================== */
.p-terms h2,
.p-terms h3,
.p-terms p,
.p-terms a,
.p-terms li {
  line-height: 150%;
  letter-spacing: 0.04em;
}
.p-terms h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.25rem, calc(1.0108418367rem + 1.0204081633vw), 1.5rem);
}
.p-terms h3 {
  position: relative;
  padding-left: 12px;
  margin: 1.5rem 0;
  font-size: clamp(1rem, calc(0.8804209184rem + 0.5102040816vw), 1.125rem);
}
.p-terms h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #FFF;
}
.p-terms p,
.p-terms a,
.p-terms li {
  font-size: 0.875rem;
}
.p-terms p a {
  text-decoration: underline;
}
.p-terms li {
  position: relative;
  padding-left: 1em;
}
.p-terms li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-terms .c-button {
  margin-top: 40px;
  justify-content: center;
}

/* =====================================================
* 404
* =================================================== */
.error404 .l-main .p-section {
 min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin-bottom: 0;
}
.error404 .l-main .l-container {
  text-align: center;
}
.error404 .l-main .l-container h2 {
  margin-bottom: 10px;
}

/* =====================================================
* padding top
* =================================================== */
.u-pt-0 {
  padding-top: 0;
}
.u-pt-5 {
  padding-top: 5px;
}
.u-pt-10 {
  padding-top: 10px;
}
.u-pt-15 {
  padding-top: 15px;
}
.u-pt-20 {
  padding-top: 20px;
}
.u-pt-25 {
  padding-top: 25px;
}
.u-pt-30 {
  padding-top: 30px;
}
.u-pt-40 {
  padding-top: 40px;
}
.u-pt-50 {
  padding-top: 50px;
}
.u-pt-60 {
  padding-top: 60px;
}
.u-pt-70 {
  padding-top: 70px;
}
.u-pt-80 {
  padding-top: 80px;
}

/* =====================================================
* padding bottom
* =================================================== */
.u-pb-0 {
  padding-bottom: 0;
}
.u-pb-5 {
  padding-bottom: 5px;
}
.u-pb-10 {
  padding-bottom: 10px;
}
.u-pb-15 {
  padding-bottom: 15px;
}
.u-pb-20 {
  padding-bottom: 20px;
}
.u-pb-25 {
  padding-bottom: 25px;
}
.u-pb-30 {
  padding-bottom: 30px;
}
.u-pb-40 {
  padding-bottom: 40px;
}
.u-pb-50 {
  padding-bottom: 50px;
}
.u-pb-60 {
  padding-bottom: 60px;
}
.u-pb-70 {
  padding-bottom: 70px;
}
.u-pb-80 {
  padding-bottom: 80px;
}

/* =====================================================
* margin top
* =================================================== */
.u-mt-0 {
  margin-top: 0;
}
.u-mt-5 {
  margin-top: 5px;
}
.u-mt-10 {
  margin-top: 10px;
}
.u-mt-15 {
  margin-top: 15px;
}
.u-mt-20 {
  margin-top: 20px;
}
.u-mt-25 {
  margin-top: 25px;
}
.u-mt-30 {
  margin-top: 30px;
}
.u-mt-40 {
  margin-top: 40px;
}
.u-mt-50 {
  margin-top: 50px;
}
.u-mt-60 {
  margin-top: 60px;
}
.u-mt-70 {
  margin-top: 70px;
}
.u-mt-80 {
  margin-top: 80px;
}

/* =====================================================
* margin bottom
* =================================================== */
.u-mb-0 {
  margin-bottom: 0;
}
.u-mb-5 {
  margin-bottom: 5px;
}
.u-mb-10 {
  margin-bottom: 10px;
}
.u-mb-15 {
  margin-bottom: 15px;
}
.u-mb-20 {
  margin-bottom: 20px;
}
.u-mb-25 {
  margin-bottom: 25px;
}
.u-mb-30 {
  margin-bottom: 30px;
}
.u-mb-40 {
  margin-bottom: 40px;
}
.u-mb-50 {
  margin-bottom: 50px;
}
.u-mb-60 {
  margin-bottom: 60px;
}
.u-mb-70 {
  margin-bottom: 70px;
}
.u-mb-80 {
  margin-bottom: 80px;
}

/* =====================================================
* display
* =================================================== */
.u-none-pc {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .u-none-pc {
    display: block !important;
  }
}

.u-none-tab {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-none-tab {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .u-none-sp {
    display: none !important;
  }
}

.u-dis-pc {
  display: block !important;
}
@media screen and (max-width: 1024px) {
  .u-dis-pc {
    display: none !important;
  }
}

.u-dis-tab {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .u-dis-tab {
    display: none !important;
  }
}


/* 20260112 追加 */
.p-fv__credit {
  position: absolute;
  bottom: 8px;
  right: 2vw;
  font-size: 12px;
  text-shadow: 1px 1px 10px #333;
}
.p-fv__credit.-black {
  color: #333;
  text-shadow: 1px 1px 10px #fff;
}

/* 日記・お知らせ詳細ページ */
.single-media-info .p-section,
.single-diary .p-section {
  color: #1E1E1E;
  background: #F5F5F5;
}
.single-media-info .p-section .p-post__cat,
.single-diary .p-section .p-post__cat {
  color: #fff;
  background: #A29667;
}
/* .single-media-info.single .p-post__title,
.single-diary.single .p-post__title {
  font-family: "Noto Serif JP", serif;
} */
.single-media-info .c-button,
.single-diary .c-button {
  color: #1E1E1E;
}
.single-media-info .c-button > span::before,
.single-diary .c-button > span::before {
  background: #A29667;
}
.single-media-info .c-button > span span,
.single-diary .c-button > span span {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/* レース詳細ページ */
.single-race .p-post__content {
  color: #1E1E1E;
  background: #fff;
  padding: 24px 24px 16px;
}
/* .single-race .p-post__content p {
  font-family: "Noto Sans JP", sans-serif;
} */
@media screen and (max-width: 768px) {
  .single-race .p-post__content {
    padding: 16px 16px 8px;
  }
}