@charset "UTF-8";
:root {
  --header-height: 200px;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: var(--header-height);
}

h1 {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  h1 {
    font-size: 27px;
  }
}

h2 {
  font-size: 38px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-weight: 700;
}

h3, h4, h5, h6 {
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

p {
  font-size: 18px;
  margin: 0;
}
@media (max-width: 768px) {
  p {
    font-size: 15px;
  }
}

body {
  font-family: "Shippori Mincho", serif;
  color: #151515;
  background-color: #F6EBDE;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
body.is-active {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.categoryButtons {
  display: flex;
  gap: 16px;
  padding-bottom: 32px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .categoryButtons {
    gap: 12px;
  }
}

.categoryButton {
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
  color: #5D8E31;
  padding: 6px 16px;
  border: 1px solid #5D8E31;
  border-radius: 50px;
  background-color: #FFFFFF;
  font-size: 14px;
}
.categoryButton.is-active {
  color: #FFFFFF;
  background-color: #5D8E31;
}

.c-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 300px;
  margin-top: 55px;
  margin-inline: auto;
}
.c-pagination__prev, .c-pagination__next {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 6px;
  text-decoration: none;
  color: #FFFFFF;
  background-color: #555555;
}
.c-pagination__prev.is-gray, .c-pagination__next.is-gray {
  background-color: #D9D9D9;
}
.c-pagination__prev {
  border-radius: 3px 0 0 3px;
}
.c-pagination__prev::before {
  content: "";
  display: block;
  width: 10px;
  height: 9px;
  background-color: #FFFFFF;
  mask-image: url(../images/icon_prev.svg);
  mask-size: 100%;
  mask-position: center;
  mask-repeat: no-repeat;
}
.c-pagination__next {
  border-radius: 0 3px 3px 0;
  flex-direction: row-reverse;
}
.c-pagination__next::before {
  content: "";
  display: block;
  width: 10px;
  height: 9px;
  background-color: #FFFFFF;
  mask-image: url(../images/icon_next.svg);
  mask-size: 100%;
  mask-position: center;
  mask-repeat: no-repeat;
}
.c-pagination__current {
  position: relative;
  width: 100%;
  padding-inline: 20px;
  background-color: #FFFFFF;
  color: #151515;
  border: 1px solid #D9D9D9;
}
.c-pagination__current::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  background: url(../images/icon_arrow_down.svg) no-repeat center;
  transform: translateY(-50%);
  background-size: contain;
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease-in-out;
}
.c-pagination__current.is-active::after {
  transform: translateY(-49%) rotate(180deg);
}

.c-pagination__popup {
  display: none;
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  border: 1px solid #D9D9D9;
  width: calc(100% - 150px);
  max-width: 156px;
}
.c-pagination__popup.is-active {
  display: block;
}
.c-pagination__popup-item {
  text-align: center;
  padding: 5px;
  background-color: #FFFFFF;
}
.c-pagination__popup-item a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: block;
  text-decoration: none;
  color: #151515;
}
.c-pagination__popup-item.is-active {
  color: #FFFFFF;
  background-color: #5D8E31;
}

.c-link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 14px;
  text-decoration: none;
  color: #151515;
  border-bottom: 1px solid #B9AFA3;
  transition: border-color 0.3s ease-in-out;
}
.c-link:hover {
  border-bottom: 1px solid #5D8E31;
}
.c-link:hover .historySec__body-link-arrow {
  transform: translateX(4px) rotate(45deg);
}

.c-breadcrumb {
  font-size: 15px;
}
.c-breadcrumb__list {
  display: flex;
  padding-inline-start: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .c-breadcrumb__list {
    gap: 8px;
    padding-inline: 20px;
    align-items: flex-start;
  }
}
.c-breadcrumb__item {
  list-style: none;
}
@media (max-width: 768px) {
  .c-breadcrumb__item {
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
  }
}
.c-breadcrumb__item::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #B7B7B7;
  border-right: 1px solid #B7B7B7;
  transform: rotate(45deg);
  margin: 0 16px;
}
@media (max-width: 768px) {
  .c-breadcrumb__item::after {
    margin: 0 8px;
  }
}
.c-breadcrumb__item:last-child::after {
  display: none;
}
.c-breadcrumb__item.is-current {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.c-breadcrumb__item a {
  color: #5D8E31;
}

.c-sns-share-block {
  margin-top: 55px;
}
.c-sns-share-block hr {
  border-top: 2px dotted #151515;
}
.c-sns-share-block__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 40px;
}
@media (max-width: 768px) {
  .c-sns-share-block__inner {
    margin-top: 24px;
  }
}
.c-sns-share-block__title {
  text-align: center;
}

.c-sns-share-block__icon-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding-inline: 0;
}
.c-sns-share-block__icon-list-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #151515;
  transition: background-color 0.3s ease-in-out;
}
.c-sns-share-block__icon-list-item:hover {
  background-color: #fff;
}
.c-sns-share-block__icon-list-item:hover.c-sns-share-block__icon-list-item--x svg path {
  fill: #151515;
}
.c-sns-share-block__icon-list-item:hover.c-sns-share-block__icon-list-item--facebook svg path {
  fill: #151515;
}
.c-sns-share-block__icon-list-item:hover.c-sns-share-block__icon-list-item--line svg path {
  fill: #151515;
}
.c-sns-share-block__icon-list-item.c-sns-share-block__icon-list-item--twitter svg path {
  fill: #fff;
}
.c-sns-share-block__icon-list-item.c-sns-share-block__icon-list-item--x svg path {
  fill: #fff;
}
.c-sns-share-block__icon-list-item.c-sns-share-block__icon-list-item--line svg path {
  fill: #fff;
}

.c-note-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c-note-list__item {
  display: flex;
  gap: 4px;
  font-size: 14px;
  line-height: 1.7;
  color: #151515;
}
.c-note-list__mark {
  flex-shrink: 0;
}
.c-note-list__text {
  flex: 1;
}

.c-info-box {
  width: 100%;
  margin: 32px 0;
  padding: 24px 28px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-info-box--full-height {
  height: 100%;
  margin: 0;
  box-sizing: border-box;
}
.c-info-box--gray {
  background: #ebf0f6;
  border: 4px solid #ebf0f6;
  color: #333;
}
.c-info-box--red {
  background: #ffe6ec;
  border: 4px solid #ffaabf;
  color: #b8183f;
}
.c-info-box--red h1, .c-info-box--red h2, .c-info-box--red h3, .c-info-box--red h4, .c-info-box--red h5, .c-info-box--red h6 {
  color: #b8183f;
}
.c-info-box--blue {
  background: #e6f0ff;
  border: 4px solid #94b8f5;
  color: #1a4a9e;
}
.c-info-box--blue h1, .c-info-box--blue h2, .c-info-box--blue h3, .c-info-box--blue h4, .c-info-box--blue h5, .c-info-box--blue h6 {
  color: #1a4a9e;
}

.wp-block-column .c-info-box {
  margin: 0;
}

.topSec {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  gap: 49px;
  margin-top: 93px;
  padding-bottom: 40%;
  background-image: image-set(url("../images/bg_akamatsu.webp") type("image/webp"), url("../images/bg_akamatsu.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
@media screen and (min-width: 1754px) {
  .topSec {
    background-image: image-set(url("../images/bugyosyo_akamatsu_green.webp") type("image/webp"), url("../images/bugyosyo_akamatsu_green.png") type("image/png"));
    background-size: cover;
  }
}
.topSec img {
  position: absolute;
  top: -190px;
  right: 0;
  max-width: 680px;
  width: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .topSec img {
    top: -129px;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .topSec {
    display: flex;
    flex-direction: column;
    margin-top: 99px;
    gap: 32px;
    background-size: contain;
  }
}
.topSec__container {
  display: flex;
  flex-direction: column;
  gap: 49px;
}
@media (max-width: 768px) {
  .topSec__container {
    gap: 32px;
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .topSec__container h1 {
    text-align: start;
  }
}
.topSec__title {
  max-width: 600px;
  margin: 0 auto;
}
.topSec__wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.topSec__wrapper p {
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.03em;
  line-height: 1.9;
  text-align: left;
}

.aboutSec {
  display: flex;
  justify-content: space-between;
  background-color: #5D8E31;
  padding-bottom: 147px;
  gap: 80px;
}
@media (max-width: 1193px) {
  .aboutSec {
    flex-direction: column;
    gap: 32px;
    padding-bottom: 80px;
  }
}
.aboutSec__block {
  display: flex;
  gap: 93px;
  margin: 0 auto;
  align-items: flex-start;
}
@media (max-width: 1193px) {
  .aboutSec__block {
    gap: 66px;
    flex-direction: column;
  }
}
.aboutSec__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1193px) {
  .aboutSec__container {
    padding-inline: 32px;
    max-width: 620px;
    margin: 0 auto;
  }
}
.aboutSec__wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: white;
}
@media (max-width: 768px) {
  .aboutSec__wrapper {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 1193px) {
  .aboutSec__wrapper-title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .aboutSec__wrapper-title {
    font-size: 24px;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}
.aboutSec__wrapper-ruby {
  opacity: 0.5;
}
@media (max-width: 1193px) {
  .aboutSec__wrapper-ruby {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .aboutSec__wrapper-ruby {
    font-size: 17px;
    text-align: center;
  }
}
.aboutSec__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1193px) {
  .aboutSec__body {
    gap: 24px;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .aboutSec__body {
    gap: 24px;
  }
}
.aboutSec__body-text {
  display: flex;
  flex-direction: column;
  max-width: 382px;
  width: 100%;
  gap: 28px;
  color: #fff;
}
@media (max-width: 1193px) {
  .aboutSec__body-text {
    max-width: none;
  }
}
.aboutSec__body-text p {
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.03em;
  line-height: 1.9;
}
.aboutSec__body-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-content: space-between;
  padding: 19.5px 23px 19.5px 32px;
  border: 1px solid #fff;
  border-radius: 50px;
  max-width: 329px;
}
@media (max-width: 768px) {
  .aboutSec__body-link {
    padding: 17px 29px 17px 23px;
  }
}
.aboutSec__body-link:hover {
  transition: background-color 0.3s ease-in-out;
  background-color: #fff;
}
.aboutSec__body-link:hover .aboutSec__body-link-text {
  color: #151515;
}
.aboutSec__body-link:hover .aboutSec__body-link-arrow {
  border-top: solid 1px #151515;
  border-right: solid 1px #151515;
}
.aboutSec__body-link-text {
  color: #fff;
}
@media (max-width: 768px) {
  .aboutSec__body-link-text {
    font-size: 15px;
  }
}
.aboutSec__body-link-arrow {
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
.aboutSec__images {
  display: flex;
  gap: 2px;
  max-width: 656px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 1193px) {
  .aboutSec__images {
    justify-content: center;
    max-width: none;
  }
}
.aboutSec__images img {
  max-width: 240px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 1193px) {
  .aboutSec__images img {
    max-width: 138px;
  }
}

.historySec {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 97px;
}
.historySec__title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}
.historySec__ruby {
  font-family: "Zen Old Mincho", serif;
  font-size: 19px;
  color: #5D8E31;
}
.historySec__card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.historySec__card-base {
  position: relative;
  background-color: #F1E0D1;
}
.historySec__card-base--01 {
  background-image: url("../images/bg_column01.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.historySec__card-number {
  font-size: 120px;
  color: #fff;
  opacity: 0.4;
  text-align: center;
}
.historySec__card-image {
  width: 100%;
  height: auto;
}
.historySec__card-title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  color: #fff;
  min-height: 284px;
  height: auto;
  letter-spacing: 0.27em;
  padding-top: 20px;
  padding-left: 16px;
  padding-right: 16px;
  writing-mode: vertical-rl;
  background-color: #5D8E31;
}
.historySec__card-title span {
  text-combine-upright: all;
}
.historySec__card-body {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 15px;
}
.historySec__card-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  line-height: 1.8;
  min-height: 150px;
  height: auto;
}
.historySec__body-link {
  max-width: 160px;
  width: 100%;
}
.historySec__body-link-text {
  font-size: 14px;
}
.historySec__body-link-arrow {
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #5D8E31;
  border-right: solid 1px #5D8E31;
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) transform 0.2s ease-in-out;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}

.guideSec {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 98px;
  margin-bottom: 78px;
  padding-inline: 20px;
}
@media (max-width: 768px) {
  .guideSec {
    margin-top: 349px;
    margin-bottom: 0;
    padding-bottom: 50px;
    padding-inline: 16px;
    margin-bottom: 0;
    gap: 32px;
  }
}
.guideSec__title {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.guideSec__ruby {
  font-family: "Zen Old Mincho", serif;
  font-size: 17px;
  color: #5D8E31;
}
@media (max-width: 768px) {
  .guideSec__ruby {
    font-size: 16px;
  }
}
.guideSec__image img {
  display: block;
  width: 100%;
  height: auto;
}
.guideSec__image-base {
  position: absolute;
  width: clamp(100px, 16vw, 418px); /* 可変幅 */
  height: auto;
  pointer-events: none;
  user-select: none;
  transform-origin: center;
  will-change: transform;
}
.guideSec__image_01 {
  top: 1%;
  left: 0%;
  width: clamp(200px, 28vw, 280px);
}
@media screen and (min-width: 769px) and (max-width: 1170px) {
  .guideSec__image_01 {
    width: clamp(180px, 20vw, 280px);
    top: 1%;
    left: 0%;
  }
}
@media (max-width: 768px) {
  .guideSec__image_01 {
    top: -24%;
    left: 0%;
  }
}
.guideSec__image_02 {
  top: -12%;
  left: -4%;
  width: clamp(262px, 20vw, 410px);
  z-index: -1;
}
@media (max-width: 768px) {
  .guideSec__image_02 {
    top: -30%;
    left: -10%;
  }
}
.guideSec__image_03 {
  top: 38.5%;
  left: 10.5%;
  width: clamp(126px, 12.6vw, 180px);
}
@media screen and (min-width: 769px) and (max-width: 1170px) {
  .guideSec__image_03 {
    width: clamp(130px, 12vw, 280px);
    left: 1%;
  }
}
@media (max-width: 768px) {
  .guideSec__image_03 {
    top: 54%;
    left: 12%;
  }
}
.guideSec__image_04 {
  top: 12%;
  right: 11.5%;
  width: clamp(117px, 11.7vw, 131px);
}
@media (max-width: 1040px) {
  .guideSec__image_04 {
    top: 10%;
    right: 3%;
  }
}
@media (max-width: 768px) {
  .guideSec__image_04 {
    top: -16%;
    right: 2%;
  }
}
.guideSec__image_05 {
  top: 30%;
  right: 0%;
  width: clamp(126px, 12.6vw, 180px);
}
@media (max-width: 768px) {
  .guideSec__image_05 {
    top: 61%;
    right: 13%;
  }
}
.guideSec__image_06 {
  top: 40%;
  right: 0%;
  width: clamp(262px, 26.2vw, 418px);
  z-index: -1;
}
@media (max-width: 768px) {
  .guideSec__image_06 {
    top: 46%;
    right: 0%;
  }
}
.guideSec__wrapper {
  display: flex;
  flex-direction: column;
  gap: 44px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .guideSec__wrapper {
    gap: 32px;
  }
}
.guideSec__title {
  margin-inline: auto;
  text-align: center;
  font-size: 50px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 300;
}
@media (max-width: 768px) {
  .guideSec__title {
    font-size: 28px;
  }
}
.guideSec__title-text {
  font-size: 22px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .guideSec__title-text {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .guideSec__title--sp {
    text-align: start;
    padding-inline: 16px;
  }
}
.guideSec__body {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  gap: 28px;
}
.guideSec__body p {
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.03em;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .guideSec__body {
    padding-inline: 16px;
  }
}
.guideSec__link {
  margin-top: 176px;
  width: 100%;
  margin-inline: 0 auto;
  text-decoration: none;
}
@media (max-width: 768px) {
  .guideSec__link {
    margin-top: 257px;
  }
}
.guideSec__link-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: 1328px;
  margin: 0 auto;
  padding-top: 87px;
  padding-bottom: 87px;
  border-radius: 10px;
}
.guideSec__link-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: image-set(url("../images/bugyosyo_bunner.webp") type("image/webp"), url("../images/bugyosyo_bunner.png") type("image/png"));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .guideSec__link-wrapper {
    padding-top: 37px;
    padding-bottom: 41px;
    gap: 20px;
  }
}
.guideSec__link-wrapper:hover::before {
  transform: scale(1.05);
}
.guideSec__link-title {
  text-align: center;
  font-size: 36px;
  color: #fff;
}
@media (max-width: 768px) {
  .guideSec__link-title {
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-size: 24px;
  }
}
.guideSec__link-button {
  display: inline-flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px 23px;
  border: 1px solid #fff;
  border-radius: 50px;
  transition: background-color 0.3s ease-in-out;
  margin: 0 auto;
  text-decoration: none;
}
@media (max-width: 768px) {
  .guideSec__link-button {
    padding: 14px 23px 17px;
  }
}
.guideSec__link-button:hover {
  background-color: #fff;
}
.guideSec__link-button:hover .guideSec__link-button-text {
  color: #151515;
}
.guideSec__link-button:hover .guideSec__link-button-arrow {
  border-top: solid 1px #151515;
  border-right: solid 1px #151515;
}
.guideSec__link-button-text {
  font-family: "Zen Old Mincho", serif;
  width: 254px;
  text-align: center;
  font-size: 17px;
  letter-spacing: 0.03em;
  color: #fff;
}
@media (max-width: 768px) {
  .guideSec__link-button-text {
    width: 162px;
    font-size: 15px;
  }
}
.guideSec__link-button-arrow {
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
}

.InstagramSec {
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .InstagramSec {
    padding-bottom: 67px;
  }
}
.InstagramSec__wrapper {
  max-width: 1328px;
  margin: 0 auto;
  padding-left: 11%;
  padding-right: 11%;
}
@media (max-width: 768px) {
  .InstagramSec__wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .InstagramSec__ruby {
    font-size: 16px;
  }
}
.InstagramSec__title {
  font-size: 38px;
}
.InstagramSec__link {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 17px;
  margin-inline: 11%;
}
@media (max-width: 768px) {
  .InstagramSec__link {
    margin-inline: 4%;
  }
}
.InstagramSec__link-text {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .InstagramSec__link-text {
    font-size: 14px;
    margin-right: 4%;
  }
}
.InstagramSec__images {
  display: flex;
  gap: 4px;
  overflow-x: hidden;
  padding-top: 43px;
}
.InstagramSec__images img {
  width: clamp(200px, 22vw, 320px);
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media (max-width: 768px) {
  .InstagramSec__images img {
    width: clamp(140px, 40vw, 200px);
  }
}

.eventSec {
  background-color: #fff;
  padding-top: 123px;
  padding-bottom: 144px;
  padding-inline: 7%;
}
@media (max-width: 768px) {
  .eventSec {
    padding-top: 56px;
    padding-bottom: 72px;
    padding-inline: 32px;
    gap: 32px;
  }
}
.eventSec__outside {
  display: flex;
  flex-direction: column;
  gap: 58px;
  max-width: 1328px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .eventSec__outside {
    gap: 32px;
  }
}
.eventSec__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .eventSec__container {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .eventSec__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.eventSec__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 800px) {
  .eventSec__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.eventSec__ruby {
  color: #5D8E31;
}
.eventSec__card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #151515;
  gap: 12px;
}
.eventSec__card-image-wrapper {
  width: 100%;
  aspect-ratio: 44/29;
  overflow: hidden;
}
.eventSec__card img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eventSec__card:hover img {
  transform: scale(1.05);
}
.eventSec__card:hover .eventSec__body-title::after {
  transform: scale(1, 1);
}
.eventSec__card-badge {
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #5D8E31;
  color: #fff;
  padding: 4px 12px;
  border-bottom-right-radius: 8px;
  font-size: 12px;
}
.eventSec__card-badge.is-close {
  background-color: #9A8266;
}
.eventSec__card-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.eventSec__card:has(.eventSec__card-badge.is-close) .eventSec__card-image-wrapper img {
  filter: grayscale(100%) brightness(0.9);
}
.eventSec__category {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: fit-content;
  display: inline-flex;
  font-size: 11px;
  color: #fff;
  padding: 1px 12px;
  background-color: #5D8E31;
  border-radius: 50px;
}
.eventSec__body {
  font-family: "Zen Old Mincho", serif;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eventSec__body-link {
  max-width: 160px;
  width: 100%;
}
.eventSec__body-link--sp {
  display: none;
}
@media (max-width: 768px) {
  .eventSec__body-link--sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #151515;
    padding: 17px 29px 17px 23px;
    border: 1px solid #151515;
    border-radius: 50px;
    transition: 0.3s all ease-in-out;
    margin-top: 32px;
  }
}
.eventSec__body-link--sp:hover {
  background-color: #151515;
}
.eventSec__body-link--sp:hover div {
  color: #FFFFFF;
}
.eventSec__body-link--sp:hover span {
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
@media (max-width: 768px) {
  .eventSec__body-link {
    display: none;
  }
}
.eventSec__body-link-arrow--sp {
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 1px solid #151515;
  border-right: 1px solid #151515;
  transform: rotate(45deg);
  margin-left: 16px;
}
.eventSec__body-category {
  display: inline; /* テキスト幅に合わせてサイズを決める */
  font-size: 14px;
  color: #fff;
  padding: 1px 12px;
  background-color: #5D8E31;
}
.eventSec__body-title {
  position: relative;
  font-size: 17px;
  width: 100%;
}
.eventSec__body-title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #151515;
  transform: scale(0, 1);
  transition: transform 0.3s ease;
  transform-origin: left top;
}
.eventSec__info {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .eventSec__info {
    gap: 10px;
  }
}
.eventSec__info-category {
  font-size: 13px;
  padding: 2px 8px;
  border: 1px solid #C5BCB4;
  border-radius: 3px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .eventSec__info-category {
    padding: 2px 6px;
  }
}
.eventSec__info-date {
  font-size: 14px;
  color: #626262;
}

.newsSec {
  position: relative;
  padding-top: 124px;
  padding-bottom: 114px;
  padding-left: 11%;
  padding-right: 11%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .newsSec {
    padding-top: 56px;
    padding-bottom: 72px;
    padding-inline: 24px;
  }
}
.newsSec__image {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  max-width: 426px;
  width: 100%;
}
@media (max-width: 768px) {
  .newsSec__image {
    display: none;
  }
}
.newsSec__image--sp {
  display: none;
}
@media (max-width: 768px) {
  .newsSec__image--sp {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    max-width: 240px;
    width: 100%;
  }
}
.newsSec__outside {
  display: flex;
  gap: 120px;
  max-width: 1328px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .newsSec__outside {
    flex-direction: column;
    gap: 58px;
  }
}
@media (max-width: 768px) {
  .newsSec__outside {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .newsSec__title {
    display: flex;
    gap: 17px;
    align-items: center;
  }
}
.newsSec__container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 160px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .newsSec__container {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    max-width: none;
  }
}
.newsSec__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 840px;
  width: 100%;
}
.newsSec__list {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #B9AFA3;
  text-decoration: none;
}
.newsSec__list::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #151515;
  border-right: 1px solid #151515;
  margin-left: 20px;
}
.newsSec__list:hover .newsSec__list-content::after {
  transform: scale(1, 1);
}
.newsSec__list span {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 1193px) {
  .newsSec__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-block: 16px;
  }
}
@media (max-width: 768px) {
  .newsSec__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 20px 0;
  }
}
.newsSec__list:first-child {
  border-top: 1px solid #B9AFA3;
}
.newsSec__list-date {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  color: #626262;
  white-space: nowrap;
  min-width: 8em;
  width: auto;
}
.newsSec__list-category {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  color: #151515;
  background-color: #fff;
  padding: 2px 12px;
  width: fit-content;
  border-radius: 50px;
  white-space: nowrap;
  min-width: fit-content;
  text-align: center;
}
@media (max-width: 768px) {
  .newsSec__list-category {
    font-size: 11px;
  }
}
.newsSec__list-content {
  position: relative;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .newsSec__list-content {
    font-size: 14px;
  }
}
.newsSec__list-content::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #151515;
  transform: scale(0, 1);
  transition: transform 0.3s ease;
  transform-origin: left top;
}
.newsSec__list-content a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: #151515;
}
.newsSec__list-content a:hover {
  text-decoration: underline;
}
.newsSec__list-content div {
  display: -webkit-box;
  color: #151515;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-decoration: none;
  margin-right: 12px;
}
@media (max-width: 768px) {
  .newsSec__list-content div {
    -webkit-line-clamp: 3;
  }
}
.newsSec__list-content-arrow {
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 1px solid #151515;
  border-right: 1px solid #151515;
  transform: rotate(45deg);
  margin-left: 19px;
}
.newsSec__body-link {
  max-width: 160px;
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 14px;
  text-decoration: none;
  color: #151515;
  border-bottom: 1px solid #B9AFA3;
  transition: border-color 0.3s ease-in-out;
}
.newsSec__body-link:hover {
  border-bottom: 1px solid #5D8E31;
}
.newsSec__body-link:hover .historySec__body-link-arrow {
  transform: translateX(4px) rotate(45deg);
}
@media (max-width: 768px) {
  .newsSec__body-link {
    display: none;
  }
}
.newsSec__body-link div {
  font-size: 14px;
}
.newsSec__body-link--sp {
  display: none;
  text-decoration: none;
  color: #151515;
  padding: 17px 29px 17px 23px;
  border: 1px solid #151515;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .newsSec__body-link--sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
  }
}
.newsSec__body-link--sp:hover {
  background-color: #151515;
}
.newsSec__body-link--sp:hover div {
  color: #FFFFFF;
}
.newsSec__body-link--sp:hover span {
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
.newsSec__body-link-arrow--sp {
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 1px solid #151515;
  border-right: 1px solid #151515;
  transform: rotate(45deg);
  margin-left: 16px;
}

.linkSec {
  padding-top: 139px;
  padding-bottom: 109px;
  padding-right: 11%;
  padding-left: 11%;
  background-image: url("../images/bugyosyo_cherry.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1280px) {
  .linkSec {
    padding-top: 51px;
    padding-bottom: 55px;
    padding-right: 24px;
    padding-left: 24px;
    background-image: url("../images/bugyosyo_cherry_sp.png");
  }
}
.linkSec__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 53px;
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
}
@media (max-width: 1280px) {
  .linkSec__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
}
.linkSec__wrapper a {
  text-decoration: none;
}
.linkSec__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 40px;
  padding-right: 10%;
  padding-left: 10%;
  overflow: hidden;
  z-index: 2;
}
.linkSec__card:hover::before {
  transform: scale(1.05);
}
.linkSec__card:hover .linkSec__card-link::after {
  margin-left: 6px;
}
.linkSec__card::before {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.linkSec__card--01::before {
  background-image: url("../images/01_card-link.png");
}
@media (max-width: 1280px) {
  .linkSec__card--01::before {
    background-image: url("../images/bugyosyo-bunner-sp-01.png");
  }
}
.linkSec__card--02::before {
  background-image: url("../images/02_card-link.png");
}
@media (max-width: 768px) {
  .linkSec__card--02::before {
    background-image: url("../images/bugyosyo-bunner-sp-02.png");
  }
}
.linkSec__card--03::before {
  background-image: url("../images/03_card-link.png");
}
@media (max-width: 768px) {
  .linkSec__card--03::before {
    background-image: url("../images/bugyosyo-bunner-sp-03.png");
  }
}
.linkSec__card--04::before {
  background-image: url("../images/04_card-link.png");
}
@media (max-width: 768px) {
  .linkSec__card--04::before {
    background-image: url("../images/bugyosyo-bunner-sp-04.png");
  }
}
@media (max-width: 1280px) {
  .linkSec__card {
    padding: 33.5px 50px 33.5px 29px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 4px;
  }
}
.linkSec__card-item {
  display: flex;
  flex-direction: column;
}
.linkSec__card-title {
  font-size: 26px;
  color: #fff;
  writing-mode: vertical-rl;
  margin: 0 auto;
  min-height: 186px;
  height: auto;
}
@media (max-width: 1280px) {
  .linkSec__card-title {
    font-size: 21px;
    writing-mode: horizontal-tb;
    margin: 0;
    min-height: unset;
    height: auto;
  }
}
.linkSec__card-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  min-height: 75px;
  height: auto;
  margin-top: 42px;
}
@media (max-width: 1280px) {
  .linkSec__card-text {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 6px;
    min-height: unset;
    height: auto;
  }
}
.linkSec__card-link {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  width: 24px;
  height: 24px;
  background-color: #5D8E31;
  margin-top: 7px;
  bottom: 10px;
  right: 10px;
}
.linkSec__card-link::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  margin-right: 3px;
}

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

.bunnerSec {
  padding-top: 79px;
  padding-bottom: 88px;
  padding-left: 11%;
  padding-right: 11%;
}
@media (max-width: 768px) {
  .bunnerSec {
    padding-top: 59px;
    padding-bottom: 57.5px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
.bunnerSec__wrapper {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .bunnerSec__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.bunnerSec__wrapper a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
}
.bunnerSec__wrapper a:hover img {
  transform: scale(1.05);
}
.bunnerSec__wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.bugyosyo-page__wrapper {
  padding-inline: 32px;
}
@media (max-width: 768px) {
  .bugyosyo-page__wrapper {
    padding-inline: 20px;
  }
}

.bugyosyo-page__content * {
  margin-top: 2rem;
}
.bugyosyo-page__content *:first-child {
  margin-top: 0;
}
.bugyosyo-page__content .wp-block-bugyosyo-info-box * {
  margin-top: 0;
}
.bugyosyo-page__content a[target=_blank] {
  margin-top: 0;
}
.bugyosyo-page__content .card-link a {
  margin-top: 0;
}
.bugyosyo-page__content {
  max-width: 952px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .bugyosyo-page__content {
    padding-top: 20px;
  }
}

.bugyosyo-page__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFFFFF;
  padding-top: 132px;
  padding-bottom: 132px;
}
@media (max-width: 768px) {
  .bugyosyo-page__head {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.bugyosyo-page__head--event {
  background-image: url("../images/bg_information.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.bugyosyo-page__head--news {
  background-image: url("../images/bg_information.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bugyosyo-page__en {
  text-align: center;
}

.bugyosyo-page__title {
  font-size: 38px;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 768px) {
  .bugyosyo-page__title {
    font-size: 32px;
  }
}

.bugyosyo-page__content h2 {
  position: relative;
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: clamp(32px, 4.8vw, 60px);
}
@media (max-width: 768px) {
  .bugyosyo-page__content h2 {
    padding: 6px 16px;
    line-height: 1.4;
  }
}

.bugyosyo-page__content h3 {
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #151515;
}
@media (max-width: 768px) {
  .bugyosyo-page__content h3 {
    padding: 4px 14px;
  }
}

.bugyosyo-page__content h4 {
  position: relative;
  font-family: "Shippori Mincho", serif;
  color: #151515;
  font-size: clamp(19px, 2.4vw, 24px);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .bugyosyo-page__content h4 {
    padding-inline: 12px;
  }
}

.bugyosyo-page__content h5 {
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .bugyosyo-page__content h5 {
    padding-inline: 12px;
  }
}

.bugyosyo-page__content h6 {
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .bugyosyo-page__content h6 {
    padding-inline: 12px;
  }
}

.bugyosyo-page__content strong {
  line-height: 34px;
}

.bugyosyo-page__content a {
  position: relative;
  color: #5D8E31;
}
.bugyosyo-page__content a:hover {
  text-decoration: none;
}

.bugyosyo-page__content a[target=_blank]::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  display: inline-block;
  width: 23px;
  height: 23px;
  background-image: url("../images/icon_target.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 8px;
}

.bugyosyo-page__content p {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 34px;
}
@media (max-width: 768px) {
  .bugyosyo-page__content p {
    font-size: 14px;
    padding-inline: 12px;
    line-height: 28px;
  }
}

.bugyosyo-page__content ul, ol {
  padding-inline-start: 28px;
}

.bugyosyo-page__content li {
  font-size: 16px;
  line-height: 32px;
}
@media (max-width: 768px) {
  .bugyosyo-page__content li {
    font-size: 14px;
  }
}

.bugyosyo-page__content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #F6EBDE;
  padding: 14px 31.5px;
  color: #151515;
  border: 1px solid #151515;
  border-radius: 50px;
  margin-top: 20px;
  transition: all 0.3s ease;
}
.bugyosyo-page__content .wp-block-button__link::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #151515;
  border-right: 1px solid #151515;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.bugyosyo-page__content .wp-block-button__link:hover {
  background-color: #151515;
  color: #FFFFFF;
}
.bugyosyo-page__content .wp-block-button__link:hover::after {
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
.bugyosyo-page__content .wp-block-buttons.midium .wp-block-button__link {
  font-size: 16px;
  padding: 13px 21px;
}
.bugyosyo-page__content .wp-block-buttons.midium .wp-block-button {
  margin-inline: 20px;
}

.bugyosyo-page__content .card-link a {
  display: inline-flex;
  color: #151515;
  text-decoration: none;
  min-width: 160px;
  width: max-content;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #B9AFA3;
}
.bugyosyo-page__content .card-link a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #5D8E31;
  border-right: 1px solid #5D8E31;
  transform: rotate(45deg);
}

.bugyosyo-page__content .wp-block-flexible-table-block-table {
  margin-top: 24px;
}
.bugyosyo-page__content .wp-block-flexible-table-block-table table.has-fixed-layout td, .bugyosyo-page__content .wp-block-flexible-table-block-table table.has-fixed-layout th {
  border: 1px solid #D5DDE5;
}
.bugyosyo-page__content .wp-block-flexible-table-block-table table {
  width: 100%;
  border: 1px solid #D5DDE5;
  border-collapse: collapse;
}
.bugyosyo-page__content .wp-block-flexible-table-block-table tr:first-child td {
  background-color: #151515;
  color: #FFFFFF;
  font-weight: bold;
}
.bugyosyo-page__content .wp-block-flexible-table-block-table td:first-child {
  background-color: #151515;
  color: #FFFFFF;
  font-weight: 600;
}

.bugyosyo-page__content .table-width {
  width: 200px;
}
@media (max-width: 768px) {
  .bugyosyo-page__content .table-width {
    width: 120px;
  }
}

.bugyosyo-page__content .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bugyosyo-page__content .wp-block-group__inner-container p:first-child {
  font-size: 20px;
}
@media (max-width: 768px) {
  .bugyosyo-page__content .wp-block-group__inner-container p:first-child {
    font-size: 16px;
  }
}
.bugyosyo-page__content .wp-block-group__inner-container p {
  padding: 0;
}

.bugyosyo-page__content .wp-block-gallery {
  margin-top: 40px;
}
.bugyosyo-page__content .wp-block-gallery.has-nested-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc((100% - 40px) / 3), 1fr));
  gap: 20px;
  align-items: center;
}
.bugyosyo-page__content .wp-block-gallery.has-nested-images img {
  width: 100%;
  height: 100%;
  aspect-ratio: 5/4;
  background-color: #F5FBEF;
  object-fit: contain !important;
  padding: 2%;
}
.bugyosyo-page__content .wp-block-gallery.has-nested-images figcaption {
  display: block;
  text-shadow: none !important;
  background: none !important;
  overflow: unset !important;
}
.bugyosyo-page__content .wp-block-gallery.has-nested-images .wp-block-image figcaption {
  position: static;
  inset: auto;
  color: #777777;
}
.bugyosyo-page__content .wp-block-gallery.has-nested-images .wp-element-caption {
  padding-top: 12px;
  padding-bottom: 0;
  padding-inline: 0 !important;
}
.bugyosyo-page__content .wp-block-gallery.has-nested-images > .wp-block-image {
  width: 100% !important;
  margin: 0;
}

.bugyosyo-page__content .itakura-parts {
  align-items: flex-start;
}
.bugyosyo-page__content .column-list {
  display: grid;
  grid-template-columns: 3fr 1fr !important;
  gap: 20px;
}
.bugyosyo-page__content .wp-block-columns {
  margin: 0;
  padding-block: 20px;
}
@media (max-width: 768px) {
  .bugyosyo-page__content .wp-block-columns {
    gap: 0px;
  }
}
.bugyosyo-page__content .scroll-history {
  max-height: 400px;
  overflow-y: auto;
}
.bugyosyo-page__content .flexible-color tr:first-child td:nth-child(2) {
  background-color: white;
  color: #151515;
}
.bugyosyo-page__content .flexible-color td:first-child {
  background-color: #F5FBEF !important;
  color: #151515 !important;
}
.bugyosyo-page__content .history-card {
  position: relative;
  padding-inline: 4%;
  padding-top: 16px;
  padding-bottom: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 48px;
}
.bugyosyo-page__content .history-card::before {
  content: "";
  position: absolute;
  width: 116px;
  height: 90px;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.bugyosyo-page__content .history-card--first {
  background-color: #F1E0D1;
}
.bugyosyo-page__content .history-card--first::before {
  background-image: url(../images/number-first.png);
}
.bugyosyo-page__content .history-card--second {
  background-color: #E6D1BE;
}
.bugyosyo-page__content .history-card--second::before {
  background-image: url(../images/number-second.png);
}
.bugyosyo-page__content .history-card--third {
  background-image: url(../images/bg_card-03.png);
}
.bugyosyo-page__content .history-card--third::before {
  background-image: url(../images/number-third.png);
}
.bugyosyo-page__content .history-card--fourth {
  background-image: url(../images/bg_card-04.png);
}
.bugyosyo-page__content .history-card--fourth::before {
  background-image: url(../images/number-fourth.png);
}
.bugyosyo-page__content .history-card--fifth {
  background-image: url(../images/bg_card-05.png);
}
.bugyosyo-page__content .history-card--fifth::before {
  background-image: url(../images/number-fifth.png);
}

.custom__lead {
  padding: 10px 20px;
  letter-spacing: 0.15em;
  line-height: 40px;
  text-align: center;
  margin-top: clamp(32px, 4.8vw, 40px);
  border-bottom: 1px solid #5D8E31;
  padding-bottom: 24px !important;
}

.custom__note {
  list-style: none;
  padding-left: 1em;
}
.custom__note li {
  position: relative;
}
.custom__note li::before {
  content: "※";
  position: absolute;
  left: -1em;
}

.custom__pdf-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background-color: #FFFFFF;
  border: 2px solid #5D8E31;
  border-radius: 40px;
  margin-top: 20px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.custom__pdf-link::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../images/icon_pdf.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.custom__pdf-link:hover {
  background-color: #5D8E31;
}
.custom__pdf-link:hover div {
  color: #FFFFFF;
}
.custom__pdf-link:hover span {
  color: #FFFFFF;
}
.custom__pdf-link:hover::after {
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
.custom__pdf-link div {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #151515;
  text-decoration: underline;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 0;
}
.custom__pdf-link span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #151515;
  font-size: 13px;
  line-height: 1;
  margin: 0;
}
.custom__pdf-link::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #151515;
  border-right: 1px solid #151515;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.newsPage__content {
  margin: 0 auto;
  max-width: 952px;
  width: 100%;
}

.singleNews {
  padding-top: 110px;
  padding-bottom: 150px;
  max-width: 954px;
  padding-inline: 20px;
  margin-inline: auto;
}
.singleNews__container {
  display: flex;
  gap: 12px;
  padding: 12px 20px;
}
.singleNews__title {
  font-size: 28px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-inline: 20px;
}
.singleNews__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #151515;
  padding: 14px 24px;
  border: 1px solid #151515;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.singleNews__link::after {
  display: inline-block;
  content: "";
  width: 9px;
  height: 9px;
  border-top: 1px solid #151515;
  border-right: 1px solid #151515;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.singleNews__link:hover {
  background-color: #151515;
  color: #FFFFFF;
}
.singleNews__link:hover::after {
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
@media (max-width: 768px) {
  .singleNews__link {
    font-size: 16px;
  }
}
.singleNews__wrapper {
  width: fit-content;
  margin: 0 auto;
  margin-top: 55px;
}

.singleEvent {
  max-width: 954px;
  margin-top: 80px;
  margin-bottom: 80px;
  padding-inline: 20px;
  margin-inline: auto;
}
.singleEvent__title {
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding-top: 12px;
}
.singleEvent__info {
  padding: 12px 0;
}

.eventPage {
  margin-top: 68px;
  margin-bottom: 150px;
  padding-inline: 12%;
}
.eventPage__container {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
}
.eventPage__content {
  max-width: 952px;
  width: 100%;
  margin: 0 auto;
}
.eventPage__wrapper {
  padding-top: 32px;
}
.eventPage__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.eventPage__image img {
  max-width: 632px;
  max-height: 400px;
  object-fit: contain;
  width: 100%;
}

.custom__faq {
  border: 2px solid #5D8E31;
  border-radius: 5px;
  margin-top: 20px;
  margin-inline: 4%;
}
.custom__faq--close {
  display: flex;
  justify-content: space-between;
  padding: 16px 32px;
  background-color: #FFFFFF;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}
.custom__faq--close * {
  margin: 0;
}
.custom__faq--close:active {
  background-color: rgba(93, 142, 49, 0.05);
}
@media (max-width: 768px) {
  .custom__faq--close {
    padding-inline: 16px;
    /* mobile: allow items to wrap so long questions won't overflow */
    align-items: center;
  }
}
.custom__faq--close p {
  padding: 0;
  padding-left: 20px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .custom__faq--close p {
    padding-left: 16px;
    font-size: 16px;
  }
}
.custom__faq-text {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .custom__faq-text {
    /* allow text to shrink properly inside flex container on mobile */
    flex: 1 1 auto;
    min-width: 0;
  }
}
.custom__faq-text--answer {
  display: flex;
  align-items: flex-start;
}
.custom__faq-head {
  color: #777777;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.custom__faq-button {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: #5D8E31;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}
.custom__faq-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: #FFFFFF;
  transform: translate(-50%, -50%);
}
.custom__faq-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 12px;
  background-color: #FFFFFF;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .custom__faq-button {
    /* slightly smaller tappable button on mobile and placed for wrapping */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-top: 8px;
    margin-left: 8px;
    flex: 0 0 auto;
  }
}
.custom__faq--open {
  display: none;
  background-color: #F5FBEF;
  padding: 16px 32px;
  margin-top: 0;
}
.custom__faq--open p {
  padding-top: 0;
  padding-left: 20px;
}
.custom__faq--open * {
  margin: 0;
}
@media (max-width: 768px) {
  .custom__faq--open {
    padding-inline: 16px;
    /* mobile: allow items to wrap so long questions won't overflow */
    align-items: center;
  }
}
.custom__faq.is-open .custom__faq--open {
  display: block;
}
.custom__faq.is-open .custom__faq-button::after {
  opacity: 0;
}

.header {
  display: inline-flex;
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  padding: 38px 47px 119px 43px;
  top: 0;
  left: 0;
  z-index: 10;
}
.header--pc {
  display: inline-flex;
}
.header--pc.is-sticky {
  padding: 38px 47px 38px 43px;
}
.header--sp {
  display: none;
}
.header--sp.sp-nav-open {
  color: #FFFFFF;
  background: opacity;
  padding-bottom: 12px;
  z-index: 11;
}
@media (max-width: 1193px) {
  .header--sp {
    display: inline-flex;
    padding: 12px 18px 90px 26px;
  }
  .header--pc {
    display: none;
  }
  .header__logo-img {
    max-width: 119px;
    width: 100%;
  }
  .header .header__lang a {
    padding: 6px 12px;
    font-size: 12px;
  }
  .header.is-sticky {
    padding: 12px 18px 12px 26px;
  }
}
.header.is-sticky {
  position: fixed;
  background: none;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}
.header.is-sticky .header__logo-img--normal {
  display: none;
}
.header.is-sticky .header__logo-img--sticky {
  display: block;
}
.header.is-sticky .headList__item a {
  color: #151515;
}
.header.is-sticky .header__lang {
  border: 1px solid #151515;
}
.header.is-sticky .header__lang-separator {
  border-left: 1px solid #151515;
}
.header.is-sticky .header__lang-item {
  color: #B0B0B0;
}
.header.is-sticky .header__lang-item.is-active {
  color: #151515;
}
.header.is-sticky .header__hamburger::before, .header.is-sticky ::after {
  background-color: #151515;
}
.header__logo-img--normal {
  display: block;
}
.header__logo-img--sticky {
  display: none;
}
.header__lang {
  font-size: 14px;
  display: flex;
  border: 1px solid #FFFFFF;
}
.header__lang-item {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  vertical-align: middle;
}
.header__lang-item--jp {
  padding: 11px 11px 9px 15px;
}
.header__lang-item--en {
  padding: 11px 15px 9px 11px;
}
.header__lang-item.is-active {
  color: #FFFFFF;
}
.header__lang-separator {
  border-left: 1px solid #FFFFFF;
  margin-top: 6px;
  margin-bottom: 8px;
}
.header__wrapper {
  display: flex;
  gap: 55px;
}
.header__wrapper--sp {
  align-items: center;
  gap: 21px;
}
.header__hamburger {
  position: relative;
  width: 20px;
  height: 7px;
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
}
.header__hamburger::before, .header__hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  transition: transform 0.3s ease;
}
.header__hamburger::before {
  top: 0;
  transform-origin: center;
}
.header__hamburger::after {
  bottom: 0;
  transform-origin: center;
}
.header__hamburger.is-active::before {
  transform: rotate(45deg) translateY(4px);
}
.header__hamburger.is-active::after {
  transform: rotate(-45deg) translateY(-4px);
}
.header__mv {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.header__mv-vertical {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 102px;
  width: 100%;
  height: auto !important;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (max-width: 1193px) {
  .header__mv-vertical {
    max-width: 64px;
  }
}
.header__mv img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  display: block;
}
.header__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.header__container {
  position: relative;
  width: 100%;
  height: 100vh;
}
.header__info {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
  bottom: 20px;
  right: 20px;
  width: 426px;
  height: auto;
}
@media (max-width: 1193px) {
  .header__info {
    width: 92%;
    bottom: -370px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
}
.header__info-wrapper {
  position: relative;
  background-color: #fff;
}
.header__info-green {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #5D8E31;
}
.header__info-link {
  font-size: 14px;
  align-items: center;
}
.header__info-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-size: 15px;
  color: #151515;
  background-color: rgba(93, 142, 49, 0.1019607843);
  padding: 6px 28px 6px;
}
@media (max-width: 1193px) {
  .header__info-head {
    padding: 9px 8px 9px 16px;
  }
}
.header__info-head a {
  display: flex;
  gap: 8px;
  color: #5D8E31;
}
.header__info-head a:hover {
  text-decoration: none;
}
.header__info-head a:hover .header__info-icon::after {
  margin-left: 4px;
}
.header__info-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: #5D8E31;
}
.header__info-icon::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  transform: rotate(45deg);
  margin-right: 3px;
}
.header__info-block {
  display: flex;
  flex-direction: column;
  padding: 18px 18px 21px 28px;
}
@media (max-width: 1193px) {
  .header__info-block {
    padding: 8px 16px 18px;
  }
}
.header__info-body {
  display: flex;
  gap: 13px;
}
@media (max-width: 768px) {
  .header__info-body {
    align-items: center;
  }
}
.header__info-body-title {
  width: 150px;
  font-size: 15px;
  color: #151515;
}
.header__info-body-time {
  position: relative;
  align-items: center;
  font-size: 15px;
  padding-left: 1.2em;
}
.header__info-body-time::before {
  position: absolute;
  content: "";
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #5D8E31;
  border-radius: 50%;
  margin-bottom: 3px;
  margin-right: 11px;
}
.header__info-body-time-sub {
  font-size: 12px;
}
.header__info-body-date {
  font-size: 14px;
  color: #626262;
  padding-bottom: 6px;
}
@media (max-width: 768px) {
  .header__info-body-date {
    font-size: 13px;
  }
}
.header__info-body-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-decoration: underline;
}
.header__info-body-text:hover {
  text-decoration: none;
  cursor: pointer;
}
.header__info-body-text a {
  color: #151515;
}
.header__info-hr {
  display: block;
  border: solid 1px #DDDDDD;
  width: 100%;
  margin: 10px 0;
}
.header__news {
  display: flex;
  justify-content: center;
  margin-top: 49px;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 1193px) {
  .header__news {
    display: block;
    margin-top: 0;
  }
}
.header__news-wrapper {
  display: flex;
}
@media (max-width: 1193px) {
  .header__news-wrapper {
    flex-direction: column;
    padding-inline: 16px;
    margin-top: 265px;
    margin-inline: auto;
    width: 92%;
  }
}
.header__news-title {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 3px;
  background-color: rgba(93, 142, 49, 0.9019607843);
  color: #fff;
  letter-spacing: 0.03em;
  padding: 42px 32px;
}
@media (max-width: 1193px) {
  .header__news-title {
    flex-direction: row;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
  }
}
.header__news-title-jp {
  font-size: 17px;
}
@media (max-width: 768px) {
  .header__news-title-jp {
    font-size: 15px;
  }
}
.header__news-title-en {
  font-size: 10px;
}
.header__news-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  min-width: 695px;
  max-width: 695px;
  padding: 35px 28px 32px 28px;
}
@media (max-width: 1193px) {
  .header__news-body {
    gap: 15px;
    padding: 14px 12px 23px 16px;
    min-width: auto;
    max-width: none;
  }
}
.header__news-body-item {
  display: flex;
  max-width: 100%;
  width: 100%;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #FFFFFF;
}
@media (max-width: 1193px) {
  .header__news-body-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}
.header__news-body-date {
  min-width: 7em;
  width: auto;
  font-size: 14px;
  color: #AEAEAE;
  white-space: nowrap;
}
.header__news-body-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-decoration: underline;
  transition: text-decoration 0.3s ease-in-out;
  min-width: 0;
  flex: 1;
}
@media (max-width: 1193px) {
  .header__news-body-text {
    font-size: 14px;
  }
}
.header__news-body-text:hover {
  text-decoration: none;
  cursor: pointer;
}
.header__wrapper-sp {
  display: none;
}
@media (max-width: 768px) {
  .header__wrapper-sp {
    display: inline-flex;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    padding: 12px 18px 90px 26px;
    top: 0;
    left: 0;
    z-index: 11;
    transition: background 0.3s ease;
  }
}
@media (max-width: 768px) {
  .header__wrapper-sp.sp-nav-open {
    background: opacity;
    padding-bottom: 12px;
  }
}
.header__wrapper-sp img {
  max-width: 119px;
  width: 100%;
}
.header__wrapper-sp--sticky {
  position: fixed;
  background: none;
  z-index: 3;
  background-color: #FFFFFF;
  top: 0;
  left: 0;
  padding: 12px 19px 12px 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}
.header__wrapper-sp--sticky.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.header__wrapper-sp--sticky.sp-nav-open {
  z-index: 11;
  background-color: transparent;
  color: #FFFFFF;
}
.header__wrapper-sp--sticky.sp-nav-open .header__wrapper-logo {
  display: none;
}
.header__wrapper-sp--sticky.sp-nav-open .header__wrapper-sp {
  padding: 12px 19px 12px 24px;
  background-color: transparent;
}
.header__wrapper-sp--sticky.sp-nav-open .header__wrapper-logo--sp {
  display: block;
}
.header__wrapper-sp--sticky.sp-nav-open .headList__language-selector-item-sp--sticky {
  color: #FFFFFF;
}
.header__wrapper-sp--sticky.sp-nav-open .headList__language-selector-separator--sticky {
  border-left: 1px solid #FFFFFF;
}
.header__wrapper-sp--sticky.sp-nav-open .headList__language-selector-sp {
  border: 1px solid #FFFFFF;
}
.header__wrapper-sp--sticky.sp-nav-open .headList__trigger--sticky::before, .header__wrapper-sp--sticky.sp-nav-open ::after {
  background-color: #FFFFFF;
}
.header__wrapper--sticky {
  position: fixed;
  display: inline-flex;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 26px 3% 27px 3%;
  background: none;
  background-color: #FFFFFF;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}
.header__wrapper--sticky.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .header__wrapper--sticky {
    display: none;
  }
}
.header__wrapper-item {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__wrapper-item-sp {
  gap: 21px;
}
.header__wrapper-logo {
  max-width: 210px;
  width: 100%;
}
.header__wrapper-logo--sp {
  display: none;
}
.header__text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 34px;
  color: #FFFFFF;
  writing-mode: vertical-rl;
}

.headList {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding-inline-start: 0;
}
.headList__item a {
  position: relative;
  text-decoration: none;
  color: #FFFFFF;
  padding-top: 8px;
  padding-bottom: 6px;
}
.headList__item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  bottom: -10px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.headList__item a:hover::after {
  transform: scale(1, 1);
}
.headList__item a--sticky {
  position: relative;
  text-decoration: none;
  color: #151515;
}
.headList__item a--sticky::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #151515;
  bottom: -10px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.headList__item a--sticky:hover::after {
  transform: scale(1, 1);
}
.headList__language-selector {
  display: flex;
  border: 1px solid #FFFFFF;
}
.headList__language-selector-sp {
  border: 1px solid #151515;
}
.headList__language-selector--sticky {
  display: flex;
  border: 1px solid #151515;
}
.headList__language-selector--jp {
  color: #B0B0B0 !important;
}
.headList__language-selector-item {
  text-decoration: none;
  color: #FFFFFF;
  margin: 0;
  padding: 9px 15px;
}
.headList__language-selector-item--jp {
  color: rgba(255, 255, 255, 0.4);
}
.headList__language-selector-item--jp .is-active {
  color: rgba(255, 255, 255, 0.4);
}
.headList__language-selector-item--jp.is-none {
  color: #fff;
}
.headList__language-selector-item--en {
  color: #fff;
}
.headList__language-selector-item--en.is-active {
  color: rgba(255, 255, 255, 0.4);
}
.headList__language-selector-item-sp {
  font-size: 12px;
  padding: 6px 12px;
}
.headList__language-selector-item-sp--sticky {
  color: #151515;
}
.headList__language-selector-item--sticky {
  text-decoration: none;
  color: #151515;
  margin: 0;
  padding: 9px 15px;
}
.headList__language-selector-separator {
  border-left: 1px solid #FFFFFF;
  margin-top: 6px;
  margin-bottom: 8px;
}
.headList__language-selector-separator--sticky {
  border-left: 1px solid #151515;
  margin-top: 6px;
  margin-bottom: 8px;
}
.headList__trigger {
  position: relative;
  width: 20px;
  height: 7px;
}
.headList__trigger::before, .headList__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  transition: transform 0.3s ease;
}
.headList__trigger::before {
  top: 0;
  transform-origin: center;
}
.headList__trigger::after {
  bottom: 0;
  transform-origin: center;
}
.headList__trigger.is-active::before {
  transform: rotate(45deg) translateY(4px);
}
.headList__trigger.is-active::after {
  transform: rotate(-45deg) translateY(-4px);
}
.headList__trigger--sticky::before, .headList__trigger--sticky::after {
  background-color: #151515;
}
.headList__trigger--sticky.is-active::before {
  transform: rotate(45deg) translateY(4px);
}
.headList__trigger--sticky.is-active::after {
  transform: rotate(-45deg) translateY(-4px);
}

.sp-nav {
  position: fixed;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  z-index: 10;
  padding-top: 55px;
  background-color: #151515;
  background-image: url(../images/bugyosyo_sp-menu.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.sp-nav a[href^=tel] {
  color: #fff;
}
.sp-nav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sp-nav__button {
  margin-top: 27px;
}
.sp-nav__link {
  display: flex;
  flex-direction: column;
}
.sp-nav__link > a:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.sp-nav__link-text {
  color: #FFFFFF;
}
.sp-nav__link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 21px 20px 24px;
}
.sp-nav__link a div {
  color: #FFFFFF;
}
.sp-nav__link a span {
  display: inline-flex;
  width: 6px;
  height: 6px;
  border: 0;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  transform: rotate(45deg);
}
.sp-nav__address {
  display: flex;
  flex-direction: column;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #FFFFFF;
  padding-inline: 24px;
  padding-top: 38px;
  padding-bottom: 46px;
}
.sp-nav__address p {
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.sp-nav__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.sp-nav__info p {
  font-size: 12px;
}
.sp-nav__info copy {
  font-size: 12px;
  letter-spacing: 0.03em;
}

.hamburger-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  background: rgba(3, 3, 3, 0.5);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hamburger-cover.is-active {
  display: block;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
  width: 70px;
  height: 70px;
  right: 24px;
  bottom: 24px;
  z-index: 8;
  border-radius: 50%;
  background-color: #000;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.back-to-top.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.back-to-top img {
  margin: 0 auto;
  max-width: 10px;
}
.back-to-top div {
  font-size: 12px;
  text-decoration: none;
  color: #FFFFFF;
  margin: 0 auto;
}

.header__mv-pagination .splide__pagination {
  position: static;
  display: flex;
  flex-wrap: nowrap !important;
  gap: 8px;
}
@media (max-width: 1193px) {
  .header__mv-pagination .splide__pagination {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
}

.header__mv-pagination {
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1193px) {
  .header__mv-pagination {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    bottom: auto;
    top: 50%;
    left: 97%;
    transform: translate(-50%, -50%);
  }
}

.splide-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.splide-toggle svg {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.splide-toggle .icon-play {
  display: none;
  opacity: 0;
}

.splide-toggle[aria-pressed=true] .icon-pause {
  display: none;
  opacity: 0;
}

.splide-toggle[aria-pressed=true] .icon-play {
  display: block;
  opacity: 1;
}

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

.footer {
  position: relative;
  background-image: image-set(url("../images/bugyosyo_akamatsu-04.webp") type("image/webp"), url("../images/bugyosyo_akamatsu-04.png") type("image/png"));
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  padding-top: 128px;
  padding-bottom: 82px;
  padding-inline: 40px;
}
.footer a[href^=tel] {
  color: #fff;
}
@media (max-width: 768px) {
  .footer {
    padding: 72px 6%;
    background-image: image-set(url("../images/bugyosyo_akamatsu-sp.webp") type("image/webp"), url("../images/bugyosyo_akamatsu-sp.png") type("image/png"));
  }
}
.footer__inner {
  max-width: 1120px;
  margin-inline: auto;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 56px;
  }
}
.footer__flex-top {
  display: flex;
  justify-content: space-between;
}
.footer__block-top {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  width: 210px;
  height: auto;
}
@media (max-width: 768px) {
  .footer__logo {
    max-width: 140px;
    width: 100%;
  }
}
.footer__address {
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  max-width: 260px;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .footer__address {
    font-size: 13px;
    margin-top: 15px;
  }
}
.footer__nav {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer__nav {
    align-items: flex-start;
  }
}
.footer__nav a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
}
.footer__nav a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  bottom: -10px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.footer__nav a:hover::after {
  transform: scale(1, 1);
}
.footer__nav span {
  display: none;
}
@media (max-width: 768px) {
  .footer__nav span {
    display: inline-flex;
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    transform: rotate(45deg);
    margin-right: 10px;
  }
}
.footer__nav div {
  font-size: 15px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__nav div {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.footer__block-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 11px;
}
@media (max-width: 768px) {
  .footer__block-bottom {
    gap: 24px;
    margin-top: 56px;
  }
}
.footer__link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  max-width: 182px;
  width: 100%;
  padding: 10px 21px 10px 25px;
  border: 1px solid #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 14px;
  margin-top: 151px;
}
.footer__link::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 5px;
  border: none;
  background-image: url("../images/footer_link-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.footer__link:hover {
  background-color: #FFFFFF;
}
.footer__link:hover div {
  color: #151515;
}
.footer__link:hover::after {
  background-image: url("../images/footer_link-arrow-hover.svg");
}
@media (max-width: 768px) {
  .footer__link {
    display: none;
  }
}
.footer__link--sp {
  display: none;
}
@media (max-width: 768px) {
  .footer__link--sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 12px 25px;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-top: 0;
    text-decoration: none;
    width: 182px;
    margin-top: 27px;
  }
  .footer__link--sp::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-top: 5px;
    border: none;
    background-image: url("../images/footer_link-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .footer__link--sp div {
    color: #FFFFFF;
  }
}
.footer__link--sp:hover {
  background-color: #FFFFFF;
}
.footer__link--sp:hover div {
  color: #151515;
}
.footer__link--sp:hover span {
  border-top: 1px solid #151515;
  border-right: 1px solid #151515;
}
.footer__link--sp:hover::after {
  background-image: url("../images/footer_link-arrow-hover.svg");
}
.footer__body {
  font-size: 12px;
}
.footer__copy {
  font-size: 12px;
}

/*# sourceMappingURL=main.css.map */
