.page-head-area {
    position: relative;
}
.page-head-area img {
    width: 100%;
}
.page-head-text-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.page-head-area h2 {
    font-size: 3vw;
    color: #fff;
}
.page-head-area h1 {
    margin-top: 0.5vw;
    font-size: 1vw;
    color: #fff;
}
@media screen and (max-width: 768px) {
  .page-head-area h2 {
    font-size: 7vw;
    letter-spacing: 0.02em;
  }
  .page-head-area h1 {
    margin-top: 1.5vw;
    font-size: 4vw;
  }
}
/* -----------------------------------------------
news
----------------------------------------------- */
.pagination {
    margin-top: 2vw;
    text-align: center;
    font-size: 0;
}
.pagination .page-numbers {
    display: inline-block;
    font-size: 1rem;
    margin: 0 5px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}
.pagination .page-numbers:hover {
  background-color: #f5f5f5;
  color: #8AC75A;
}
.pagination .page-numbers.current {
    background-color: #8AC75A;
    border-color: #8AC75A;
    color: #fff;
    cursor: default;
}
.pagination .prev.page-numbers,
.pagination .next.page-numbers {
    font-weight: bold;
}
.pagination .page-numbers.dots {
    border: none;
    background: none;
    cursor: default;
    padding: 8px;
}
@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 24px;
  }
  .pagination .page-numbers {
    font-size: 14px;
    margin: 0 4px;
    padding: 10px 12px;
    min-width: 40px;
    text-align: center;
    box-sizing: border-box;
  }

  .pagination .prev.page-numbers,
  .pagination .next.page-numbers {
    display: inline-block;
    margin-top: 10px;
  }
}

/* -----------------------------------------------
blog-detail
（app/(public)/blog/[id]/page.tsx）
----------------------------------------------- */
.blog-detail {
  margin-top: 6vw;
  padding: 0 1vw;
}
.blog-detail__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 70vw;
  background: #fff;
  border-radius: 20px;
  border: solid 2px #dedede;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.18);
  padding: 3vw 3vw;
  box-sizing: border-box;
}
.blog-detail__top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.blog-detail__back {
  display: inline-block;
  padding: 0.6vw 1.2vw;
  border-radius: 100vw;
  color: #fff;
  background-color: #8AC75A;
  font-size: 0.95vw;
}
.blog-detail__back:hover {
  opacity: 0.9;
}
.blog-detail__title {
  margin-top: 1.8vw;
  font-size: 2vw;
  line-height: 1.4;
  border-left: solid 0.6vw #8AC75A;
  padding-left: 1vw;
}
.blog-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw 2vw;
  margin-top: 1.5vw;
  font-size: 0.95vw;
  color: #333;
}
.blog-detail__metaItem {
  display: inline-flex;
  align-items: center;
  gap: 0.7vw;
}
.blog-detail__metaLabel {
  padding: 0.25vw 0.8vw;
  border-radius: 100vw;
  background: #ffde25;
  color: #000;
  font-size: 0.85vw;
}
.blog-detail__metaValue {
  color: #333;
}
.blog-detail__chip {
  display: inline-block;
  padding: 0.35vw 1vw;
  border-radius: 100vw;
  background: #f3f6fb;
  border: solid 1px #d7e2f0;
  color: #025da3;
  font-size: 0.9vw;
}
.blog-detail__chip:hover {
  background: #e9f2ff;
}
.blog-detail__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1vw;
  margin-top: 1.6vw;
  font-size: 0.95vw;
}
.blog-detail__tagsLabel {
  padding: 0.25vw 0.8vw;
  border-radius: 100vw;
  background: #8AC75A;
  color: #fff;
  font-size: 0.85vw;
}
.blog-detail__tagsList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6vw;
}
.blog-detail__tag {
  display: inline-block;
  padding: 0.35vw 0.9vw;
  border-radius: 100vw;
  background: #ffffff;
  border: solid 1px #cfe7ff;
  color: #8AC75A;
  font-size: 0.9vw;
}
.blog-detail__tag:hover {
  background: #e9f2ff;
}
.blog-detail__hr {
  margin: 2vw 0;
  border: 0;
  height: 2px;
  background: #dedede;
}
.blog-detail__content {
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
  word-break: break-word;
}
.blog-detail__content h2 {
  margin: 2.4vw 0 1vw 0;
  font-size: 1.6vw;
  border-left: solid 0.5vw #ffde25;
  padding-left: 1vw;
}
.blog-detail__content h3 {
  margin: 2vw 0 0.8vw 0;
  font-size: 1.3vw;
  border-bottom: solid 2px #cfe7ff;
  padding-bottom: 0.6vw;
}
.blog-detail__content p {
  margin: 1.2vw 0;
}
.blog-detail__content ul,
.blog-detail__content ol {
  margin: 1.2vw 0 1.2vw 2vw;
}
.blog-detail__content li {
  margin: 0.6vw 0;
}
.blog-detail__content a {
  color: #8AC75A;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-detail__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.6vw auto;
  border-radius: 12px;
  border: solid 2px #dedede;
}
.blog-detail__content blockquote {
  margin: 1.6vw 0;
  padding: 1.2vw 1.5vw;
  border-left: solid 0.5vw #8AC75A;
  background: #f6fbff;
}
.blog-detail__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6vw 0;
  font-size: 0.95vw;
}
.blog-detail__content th,
.blog-detail__content td {
  border: solid 1px #dedede;
  padding: 0.8vw;
  vertical-align: top;
}
.blog-detail__content th {
  background: #8AC75A;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .blog-detail {
    margin-top: 12vw;
  }
  .blog-detail__inner {
    max-width: 92vw;
    padding: 18px 16px;
    border-radius: 18px;
  }
  .blog-detail__back {
    font-size: 14px;
    padding: 10px 14px;
  }
  .blog-detail__title {
    font-size: 20px;
    margin-top: 16px;
    border-left-width: 6px;
    padding-left: 10px;
  }
  .blog-detail__meta {
    font-size: 13px;
    gap: 10px 14px;
    margin-top: 12px;
  }
  .blog-detail__metaLabel,
  .blog-detail__tagsLabel {
    font-size: 12px;
    padding: 4px 10px;
  }
  .blog-detail__chip,
  .blog-detail__tag {
    font-size: 12px;
    padding: 6px 10px;
  }
  .blog-detail__hr {
    margin: 16px 0;
  }
  .blog-detail__content {
    font-size: 14px;
    line-height: 1.9;
  }
  .blog-detail__content h2 {
    font-size: 18px;
    margin: 22px 0 10px 0;
    border-left-width: 6px;
    padding-left: 10px;
  }
  .blog-detail__content h3 {
    font-size: 16px;
    margin: 18px 0 8px 0;
  }
  .blog-detail__content table {
    font-size: 13px;
  }
  .blog-detail__content th,
  .blog-detail__content td {
    padding: 10px;
  }
}
/* -----------------------------------------------
association
----------------------------------------------- */
.page-greeting-wrap {
  margin-top: 10vw;
  padding: 0 10vw;
}
.page-greeting-wrap h3 {
  margin-bottom: 2vw;
  font-size: 2.5vw;
}
.page-greeting-card {
  background: #ffffff;
  border: solid 0.2vw #dedede;
  border-radius: 1.6vw;
  box-shadow: 0.6vw 0.6vw 0.8vw 0 rgba(0, 0, 0, 0.12);
  padding: 2vw 2.2vw;
}
.page-greeting-name {
  font-size: 1.05vw;
  font-weight: 700;
  line-height: 1.6;
  border-left: solid 0.5vw #ffde25;
  padding-left: 1vw;
  margin-bottom: 1.4vw;
}
.page-greeting-name span {
  margin-left: 0.5vw;
}
.page-greeting-text p {
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
}
.page-greeting-text p + p {
  margin-top: 1.2vw;
}

.page-outline-wrap {
  margin-top: 10vw;
  padding: 0 10vw;
}
.page-outline-wrap h3 {
  margin-bottom: 2vw;
  font-size: 2.5vw;
}
.page-outline-wrap ul li {
  display: flex;
  width: 100%;
  font-size: 1vw;
}
.page-outline-wrap ul li span {
  padding: 1vw 0.5vw;
  width: 20%;
  border-bottom: solid 1px #8AC75A;
}
.page-outline-wrap ul li h1,
.page-outline-wrap ul li p,
.association-address {
  padding: 1vw 0.5vw;
  width: 100%;
  border-bottom: solid 1px #c2c2c2;
}
.association-address p {
  padding: 0 0.5vw 1vw 0.5vw !important;
}
.association-map {
  margin-top: 1vw;
}
.association-map iframe {
  width: 100%;
  height: 22vw;
  border-radius: 1vw;
  border: 0;
}

.page-outline-wrap02 {
  margin-top: 10vw;
  padding: 0 10vw;
}
.page-outline-wrap02-title-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-outline-wrap02-title-area h3 {
  font-size: 2vw;
}
.page-outline-wrap02-title-area a {
  display: inline-block;
  padding: 0.8vw 0;
  width: 15vw;
  text-align: center;
  font-size: 1.2vw;
  color: #000;
  background-color: #ffde25;
}
.page-outline-wrap02-title-area a:first-child {
  margin-right: 2vw;
}

.officer-wrap {
  margin-top: 3vw;
  margin-bottom: 8vw;
  padding: 0 10vw;
}
.officer-table-wrap {
  width: 100%;
  overflow-x: auto;
}
.officer-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95vw;
  box-shadow: 0 0.25vw 1vw rgba(0, 0, 0, 0.06);
}
.officer-table th,
.officer-table td {
  padding: 1vw 1.1vw;
  border-bottom: solid 1px #e5e5e5;
  text-align: left;
  vertical-align: middle;
  line-height: 1.6;
}
.officer-table thead th {
  background: #8AC75A;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.officer-table tbody th.officer-category {
  width: 14%;
  background: #f6fbff;
  color: #005f9f;
  font-weight: 700;
  text-align: center;
  border-right: solid 1px #d8ecfa;
}
.officer-table tbody td:nth-child(2) {
  width: 50%;
}
.officer-table tbody td:nth-child(3) {
  width: 36%;
  font-weight: 700;
}
.officer-note {
  margin-top: 1.2vw;
  font-size: 0.95vw;
  color: #555;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .page-greeting-wrap {
    margin-top: 12vw;
    padding: 0 5vw;
  }
  .page-greeting-wrap h3 {
    margin-bottom: 5vw;
    font-size: 5.5vw;
  }
  .page-greeting-card {
    border-radius: 18px;
    padding: 18px 16px;
  }
  .page-greeting-name {
    font-size: 14px;
    border-left-width: 6px;
    padding-left: 10px;
    margin-bottom: 12px;
  }
  .page-greeting-text p {
    font-size: 14px;
    line-height: 1.9;
  }
  .page-greeting-text p + p {
    margin-top: 12px;
  }

  .page-outline-wrap,
  .page-outline-wrap02,
  .officer-wrap {
    padding: 0 5vw;
  }
  .page-outline-wrap {
    margin-top: 12vw;
  }
  .page-outline-wrap h3 {
    margin-bottom: 5vw;
    font-size: 5.5vw;
  }
  .page-outline-wrap ul li {
    flex-direction: column;
    font-size: 14px;
  }
  .page-outline-wrap ul li span {
    width: 100%;
    border-bottom: none;
    padding: 10px 12px;
    background: #f6fbff;
    border-left: solid 6px #8AC75A;
    font-weight: 700;
  }
  .page-outline-wrap ul li h1,
  .page-outline-wrap ul li p,
  .association-address {
    width: 100%;
    padding: 12px 12px;
    border-bottom: solid 1px #e2e2e2;
    box-sizing: border-box;
  }
  .page-outline-wrap ul li h1 {
    font-size: 16px;
  }
  .association-map {
    margin-top: 10px;
  }
  .association-map iframe {
    height: 60vw;
    border-radius: 14px;
  }

  .page-outline-wrap02 {
    margin-top: 12vw;
  }
  .page-outline-wrap02-title-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .page-outline-wrap02-title-area h3 {
    font-size: 5.5vw;
  }
  .outline-btn-area {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .page-outline-wrap02-title-area a {
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
    border-radius: 12px;
  }

  .officer-wrap {
    margin-top: 8vw;
    margin-bottom: 12vw;
  }
  .officer-table {
    min-width: 620px;
    font-size: 13px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  }
  .officer-table th,
  .officer-table td {
    padding: 12px 10px;
  }
  .officer-table tbody th.officer-category {
    width: 90px;
  }
  .officer-table tbody td:nth-child(2) {
    width: 330px;
  }
  .officer-table tbody td:nth-child(3) {
    width: 200px;
  }
  .officer-note {
    margin-top: 12px;
    font-size: 13px;
  }
}
/* -----------------------------------------------
tournament
----------------------------------------------- */
.tournament-year-select-text {
  margin-top: 1vw;
  text-align: center;
}
.tournament-year-select {
  text-align: center;
}
.tournament-year-select form {
  margin-top: 1vw;
}
#select-year {
  cursor: pointer;
  margin-left: 1vw;
  padding: .2vw .8vw;
  font-size: 1.1vw;
  border: solid 1px #000;
  border-radius: 5px;
}
.tournament-schedule-btn {
  position: absolute;
  top: 0vw;
  right: 5vw;
}
.tournament-schedule-btn a {
  display: inline-block;
  padding: 1vw 2vw;
  background-color: #ffde25;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .tournament-year-select form {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5vw;
    font-weight: bold;
  }
  #select-year {
    margin-left: 3vw;
    padding: 1vw 3vw;
    font-size: 4vw;
  }
  .tournament-schedule-btn {
    position: static;
    display: flex;
    justify-content: center;
  }
  .tournament-schedule-btn a {
    display: inline-block;
    margin-top: 5vw;
    margin-bottom: 10vw;
    padding: 3vw 5vw;
    background-color: #ffde25;
    font-size: 4vw;
    border-radius: 5px;
  }
}
/* =================================================
  records
================================================= */
.record-cards {
  display: none;
}
.record-table-wrapper {
  width: 100%;
  margin-top: 2vw;
  overflow: visible;
  background: transparent;
}

.record-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.record-table thead {
  color: #fff;
  background-color: #8AC75A;
}

.record-table th {
  padding: 1.2vw 0.8vw;
  text-align: center;
  font-size: 1vw;
  font-weight: 700;
  line-height: 1.5;
  border-right: solid 1px rgba(255, 255, 255, 0.35);
}

.record-table th:last-child {
  border-right: none;
}

.record-table td {
  padding: 1.2vw 0.8vw;
  text-align: center;
  vertical-align: middle;
  font-size: 1vw;
  line-height: 1.6;
  color: #222;
  border-right: solid 1px #d6d6d6;
  border-bottom: solid 2px #dedede;
  word-break: break-word;
}

.record-table td:last-child {
  border-right: none;
}

.record-table tbody tr:nth-child(even) {
  background-color: #f6fbff;
}

.record-table tbody tr:hover {
  background-color: #fff9d8;
}

.record-table th:nth-child(1),
.record-table td:nth-child(1) {
  width: 20%;
  white-space: nowrap;
}

.record-table th:nth-child(2),
.record-table td:nth-child(2) {
  width: 64%;
}

.record-table td:nth-child(2) {
  text-align: left;
  font-weight: 600;
}

.record-table th:nth-child(3),
.record-table td:nth-child(3) {
  width: 16%;
}

.record-table td a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.record-table td a:hover {
  opacity: 0.75;
  transform: translateY(-0.1vw);
}
.record-cards .month-cards__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.record-cards .month-card__actions {
  justify-content: flex-start;
  gap: 10px;
}
.record-cards .month-card__action--disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 999px;
  opacity: 0.45;
}
.tournament-schedule .record-year-select-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  margin: 2vw auto;
  padding: 1vw 1.8vw;
  max-width: 30vw;
  background-color: #ffde25;
  border-radius: 100vw;
  box-shadow: 0 0.16vw 0.5vw rgba(0, 0, 0, 0.06);
}
.tournament-schedule .record-year-select-form label {
  font-size: 1vw;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}
.tournament-schedule .record-year-select-form select {
  flex: 1;
  min-width: 10vw;
  padding: 0.6vw 1.2vw;
  font-size: 1.1vw;
  border-radius: 100vw;
  border: 0.08vw solid #d0d7e2;
  background-color: #fff;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.tournament-schedule .record-year-select-form select:focus,
.tournament-schedule .record-year-select-form select:hover {
  border-color: #8AC75A;
  box-shadow: 0 0 0 0.3vw rgba(0, 146, 244, 0.15);
  background-color: #fff;
}
@media (max-width: 768px) {
  .record-cards {
    display: block;
    margin-top: 14px;
  }
  .record-table-wrapper {
    display: none;
  }
  .tournament-schedule .record-year-select-form {
    width: 100%;
    max-width: 520px;
    margin: 16px auto 24px;
    padding: 12px 14px;
    gap: 10px;
  }
  .tournament-schedule .record-year-select-form label {
    font-size: 14px;
  }
  .tournament-schedule .record-year-select-form select {
    font-size: 14px;
    padding: 10px 12px;
    min-width: 0;
  }
  .record-cards .pdf-logo {
    width: 20px;
    height: 20px;
  }
}
.record-table th:nth-child(1),
.record-table td:nth-child(1) {
  width: 18%;
  white-space: nowrap;
}

.record-table th:nth-child(2),
.record-table td:nth-child(2) {
  width: 58%;
}

.record-table th:nth-child(3),
.record-table td:nth-child(3) {
  width: 12%;
}

.record-table th:nth-child(4),
.record-table td:nth-child(4) {
  width: 12%;
}

/* =================================================
  record photo modal
================================================= */
.record-photo-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 auto;
  padding: 0;
  border: solid 1px rgba(138, 199, 90, 0.35);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fff1 100%);
  box-shadow: 0 6px 16px rgba(40, 80, 20, 0.12);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.record-photo-button:hover {
  transform: translateY(-2px);
  border-color: rgba(138, 199, 90, 0.8);
  box-shadow: 0 10px 22px rgba(40, 80, 20, 0.18);
}

.record-photo-button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(138, 199, 90, 0.28),
    0 10px 22px rgba(40, 80, 20, 0.18);
}

.record-photo-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
  transform: none;
  box-shadow: none;
}

.record-photo-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #5ca934;
}

.record-photo-button__svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.record-photo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px;
}

.record-photo-modal__overlay {
  position: absolute;
  inset: 0;
  border: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 32%),
    rgba(15, 23, 42, 0.74);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.record-photo-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  max-height: min(86vh, 820px);
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  animation: recordPhotoModalIn 0.22s ease-out;
}

@keyframes recordPhotoModalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.record-photo-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  border-bottom: solid 1px #e8edf3;
  background:
    linear-gradient(135deg, rgba(138, 199, 90, 0.16), rgba(255, 222, 37, 0.18)),
    #ffffff;
}

.record-photo-modal__label {
  margin: 0 0 4px;
  color: #5ca934;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.record-photo-modal__head h2 {
  margin: 0;
  color: #1f2937;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.record-photo-modal__close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: solid 1px rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.record-photo-modal__close:hover {
  transform: rotate(90deg);
  background: #f8fafc;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.13);
}

.record-photo-modal__body {
  max-height: calc(min(86vh, 820px) - 92px);
  overflow-y: auto;
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbf5 100%);
}

.record-photo-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.record-photo-modal__item {
  overflow: hidden;
  margin: 0;
  border: solid 1px #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.record-photo-modal__imageLink {
  display: block;
  overflow: hidden;
  background: #f1f5f9;
}

.record-photo-modal__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.record-photo-modal__imageLink:hover .record-photo-modal__image {
  transform: scale(1.025);
}

.record-photo-modal__caption {
  margin: 0;
  padding: 12px 14px;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  border-top: solid 1px #edf2f7;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .record-photo-button {
    width: 38px;
    height: 38px;
  }

  .record-photo-button__icon {
    width: 22px;
    height: 22px;
  }

  .record-photo-modal {
    align-items: flex-end;
    padding: 0;
  }

  .record-photo-modal__panel {
    width: 100%;
    height: 92dvh;
    max-height: 92dvh;
    border-radius: 22px 22px 0 0;
    animation: recordPhotoModalMobileIn 0.24s ease-out;
  }

  @keyframes recordPhotoModalMobileIn {
    from {
      opacity: 0;
      transform: translateY(28px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .record-photo-modal__head {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 16px 18px;
  }

  .record-photo-modal__label {
    font-size: 11px;
  }

  .record-photo-modal__head h2 {
    font-size: 19px;
  }

  .record-photo-modal__close {
    width: 38px;
    height: 38px;
    font-size: 25px;
  }

  .record-photo-modal__body {
    height: calc(92dvh - 76px);
    max-height: none;
    overflow-y: auto;
    padding: 14px;
  }

  .record-photo-modal__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .record-photo-modal__item {
    width: 100%;
    border-radius: 16px;
  }

  .record-photo-modal__imageLink {
    width: 100%;
  }

  .record-photo-modal__image {
    width: 100% !important;
    height: auto;
    max-height: none;
    object-fit: initial;
  }

  .record-photo-modal__caption {
    padding: 10px 12px;
    font-size: 13px;
  }
}
/* -----------------------------------------------
ranking
----------------------------------------------- */
.ranking {
  margin-top: 6vw;
  padding: 0 1vw 8vw;
}

.ranking__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 76vw;
  padding: 3vw;
  box-sizing: border-box;
  background: #fff;
  border: solid 2px #dedede;
  border-radius: 20px;
  box-shadow: 6px 6px 6px 0 rgba(0, 0, 0, 0.18);
}

.ranking__title {
  margin-bottom: 2vw;
  padding-left: 1vw;
  border-left: solid 0.6vw #8AC75A;
  font-size: 2.2vw;
  line-height: 1.4;
  color: #222;
}

.ranking__imageWrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  border: solid 1px #dedede;
  background: #fff;
}

.ranking__image {
  display: block;
  width: 100%;
  height: auto;
}

.ranking__pdfSaveArea {
  display: flex;
  justify-content: center;
  margin-top: 2.5vw;
}

.ranking__pdfSaveBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 1vw 2.4vw;
  border-radius: 100vw;
  background-color: #8AC75A;
  color: #fff;
  font-size: 1.1vw;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0.3vw 0.8vw rgba(0, 0, 0, 0.16);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ranking__pdfSaveBtn:hover {
  opacity: 0.85;
  transform: translateY(-0.12vw);
}

@media screen and (max-width: 768px) {
  .ranking {
    margin-top: 12vw;
    padding: 0 4vw 12vw;
  }

  .ranking__inner {
    max-width: 100%;
    padding: 5vw;
    border-radius: 18px;
  }

  .ranking__title {
    margin-bottom: 5vw;
    padding-left: 3vw;
    border-left-width: 1.4vw;
    font-size: 6vw;
  }

  .ranking__imageWrap {
    max-width: 100%;
    border-radius: 14px;
  }

  .ranking__pdfSaveArea {
    margin-top: 6vw;
  }

  .ranking__pdfSaveBtn {
    width: 100%;
    min-width: 0;
    padding: 3.5vw 4vw;
    font-size: 4vw;
    border-radius: 100vw;
  }
}
/* -----------------------------------------------
links
----------------------------------------------- */
.url-text {
  padding: 2vw;
  border-left: solid 1vw #8AC75A;
  background-color: #fafff6;
  font-size: 1.2vw;
  border-radius: 2vw;
}
/* links-list を「2列 × 8行」固定にする */
.page-outline-wrap.links-page ul.links-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(8, auto);
  grid-auto-flow: row;
  gap: 1vw;
  margin-top: 5vw;
}
.links-link {
  display: flex;
  align-items: center;
  width: 29vw !important;
  padding: .5vw 1vw;
  border: solid 2px #c2c2c2 !important;
  border-radius: 100vw;
}
.links-title, .links-arrow {
  width: auto !important;
  border-bottom: none !important;
}
.links-badge {
  display: block;
  width: 4vw !important;
  padding: .1vw 0 !important;
  background-color: #8AC75A;
  text-align: center;
  font-size: .9vw;
  color: #fff;
  border-radius: 100vw;
  border: none !important;
}
.links-badge--yellow {
  background-color: #ffde25;
}
.links-title {
  margin-left: 2vw;
  font-size: 1.1vw;
}
.links-arrow {
    margin-left: auto;
  flex: 0 0 auto;
  font-size: 1.2vw;
  font-weight: bold;
  color: #8AC75A;
}
@media screen and (max-width: 768px) {
  .url-text {
    padding: 3vw 5vw;
    border-left: solid 1vw #8AC75A;
    background-color: #cfe7ff;
    font-size: 3.5vw;
    border-radius: 5vw;
  }
  /* links-list を「2列 × 8行」固定にする */
  .page-outline-wrap.links-page ul.links-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(16, auto);
    grid-auto-flow: row;
    gap: 5vw;
    margin-top: 10vw;
  }
  .links-link {
    width: 90vw !important;
    padding: 2vw 3vw;
    border: solid 2px #c2c2c2 !important;
    border-radius: 100vw;
  }
  .links-title, .links-arrow {
    width: auto !important;
    border: none !important;
  }
  .links-badge {
    display: block;
    width: 12vw !important;
    padding: 1vw 0 !important;
    background-color: #8AC75A !important;
    text-align: center;
    font-size: 3vw;
    color: #fff;
    border-radius: 100vw;
  }
  .links-badge--yellow {
    background-color: #ffde25 !important;
  }
  .links-title {
    margin-left: 1vw;
    font-size: 3.5vw;
    background-color: #fff !important;
  }
  .links-arrow {
    margin-left: auto;
    flex: 0 0 auto;
    font-size: 4vw;
    font-weight: bold;
    color: #8AC75A !important;
    background-color: #fff !important;
  }
}

/* -----------------------------------------------
contact
----------------------------------------------- */
/* -----------------------------------------------
   FAQ（アコーディオン）
----------------------------------------------- */
.page-contact-faq-area {
  margin-top: 5vw;
  margin-left: 5%;
  margin-right: 5%;
  padding: 4vw 5vw;
  width: 90%;
  background-color: #fff;
  border-radius: 30px;
}

.page-contact-faq-title {
  margin-bottom: 2vw;
  text-align: center;
  font-size: 1.8vw;
}

.page-contact-faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-contact-faq-item + .page-contact-faq-item {
  margin-top: 1.5vw;
  padding-top: 1.5vw;
  border-top: 1px solid #ddd;
}

.page-contact-faq-item-title {
  margin-top: 5vw;
  margin-bottom: 4vw;
  text-align: center;
  font-size: 1.5vw;
}
.page-contact-faq-subtitle {
  margin-top: 2.5vw;
  margin-bottom: 2vw;
  font-size: 1.2vw;
}
.page-contact-faq-q {
  cursor: pointer;
  font-size: 1.1vw;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 0.5vw;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 2vw;
}

.page-contact-faq-q::after {
  content: "＋";
  position: absolute;
  right: 0;
  font-size: 1.4vw;
  color: #8AC75A;
}

.page-contact-faq-a {
  font-size: 1vw;
  line-height: 1.6;
  display: none;
}

.page-contact-faq-q .faq-label,
.page-contact-faq-a .faq-label {
  display: inline-block;
  margin-right: 0.5vw;
  font-weight: 700;
  color: #8AC75A;
}

.page-contact-faq-item.is-open .page-contact-faq-a {
  display: block;
}

.page-contact-faq-item.is-open .page-contact-faq-q::after {
  content: "－";
}

/* -----------------------------------------------
   外枠（フォームエリア）
----------------------------------------------- */
.page-contact-area {
  margin-top: 5vw;
  margin-left: 5%;
  margin-right: 5%;
  padding: 5vw 15vw;
  width: 90%;
  background-color: #8AC75A;
  border-radius: 30px;
}

.page-contact-form-area {
  position: relative;
  margin-top: 0;
  padding: 5vw 5vw 4vw 5vw;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
}

#page-contact-form-title {
  position: absolute;
  top: -2.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  padding: 1vw 0;
  width: 30vw;
  text-align: center;
  font-size: 1.3vw;
  color: #000;
  background-color: #ffde25;
  border-radius: 50px;
}

.page-contact-form-text-area {
  font-size: 1vw;
  line-height: 1.5;
}

.page-contact-form-text-area a {
  color: #8AC75A;
  border-bottom: solid 0.15vw #8AC75A;
  text-decoration: none;
}

.page-contact-form-wrap {
  margin-top: 8%;
  font-size: 1vw;
  color: #000;
}

/* -----------------------------------------------
   成功/エラー表示
----------------------------------------------- */
.contact-form-error {
  margin-top: 1.2vw;
  padding: 1vw 1.2vw;
  border-radius: 12px;
  border: solid 2px #ff6b6b;
  background: #fff5f5;
  color: #b00020;
  font-size: 1vw;
}

.contact-form-info {
  margin-top: 1.2vw;
  padding: 1vw 1.2vw;
  border-radius: 12px;
  border: solid 2px #8AC75A;
  background: #f6fbff;
  color: #025da3;
  font-size: 1vw;
}

/* -----------------------------------------------
   フォーム本体（CF7風DOM）
----------------------------------------------- */
.contact-form-7-like {
  margin-top: 2vw;
}
.contact-form-7-like > label {
  display: block;
  margin-top: 2vw;
}
.contact-form-7-text {
  display: flex;
  align-items: center;
  gap: 1vw;
  font-size: 1.1vw;
  margin-bottom: 0.8vw;
}
span.required {
  margin-left: 1vw;
  padding: 0.2vw 1vw;
  font-size: 0.8vw;
  color: #fff;
  background-color: #ff0000;
  border-radius: 50px;
}
.contact-form-7-like input[type="text"],
.contact-form-7-like input[type="email"],
.contact-form-7-like input[type="tel"],
.contact-form-7-like textarea,
.contact-form-7-like select {
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.5vw;
  padding: 0.8vw 0.9vw;
  font-size: 1vw;
  border: solid 2px #000;
  border-radius: 10px;
  background: #fff;
}
.contact-form-7-like select {
  cursor: pointer;
}
.contact-form-7-like textarea {
  min-height: 10vw;
  resize: vertical;
}
.contact-form-7-like input[type="text"]:focus,
.contact-form-7-like input[type="email"]:focus,
.contact-form-7-like input[type="tel"]:focus,
.contact-form-7-like textarea:focus,
.contact-form-7-like select:focus {
  outline: none;
  box-shadow: 0 0 0.8vw 0.2vw rgba(0, 94, 255, 0.5);
  border-color: #8AC75A;
}
.contact-form-checkbox-group {
  margin-top: 0.8vw;
  padding: 1vw 1.2vw;
  border: solid 2px #dedede;
  border-radius: 12px;
  background: #fafafa;
}
.contact-form-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  margin-top: 0.8vw;
  font-size: 1vw;
}
.contact-form-checkbox-item input[type="checkbox"] {
  width: 1.2vw;
  height: 1.2vw;
}
.contact-form-hint {
  margin-top: 1vw;
  font-size: 0.9vw;
  color: #666;
}
.contact-form-btn-area {
  margin-top: 4vw;
  text-align: center;
}
.contact-form-btn-area p {
  position: relative;
  margin: 0 8vw;
  padding: 1vw 6vw 1vw 4vw;
  background-color: #8AC75A;
  color: #fff;
  border-radius: 50px;
}
.contact-form-btn-area p > button {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.2vw;
  line-height: 1;
  color: #fff;
}
.contact-form-btn-area p > button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.contact-form-btn-area p span {
  position: absolute;
  top: 50%;
  right: 1vw;
  transform: translateY(-50%);
  width: 3vw;
  height: 3vw;
  text-align: center;
  line-height: 3vw;
  color: #8AC75A;
  font-size: 1.5vw;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  /* FAQ */
  .page-contact-faq-area {
    margin-top: 15vw;
    margin-left: 0.5vw;
    margin-right: 0.5vw;
    padding: 7vw 6vw;
    width: 99vw;
    border-radius: 20px;
  }
  .page-contact-faq-title {
    margin-bottom: 10vw;
    font-size: 5vw;
  }
  .page-contact-faq-item + .page-contact-faq-item {
    margin-top: 4vw;
    padding-top: 4vw;
  }
  .page-contact-faq-item-title {
    margin-top: 8vw;
    margin-bottom: 7vw;
    text-align: center;
    font-size: 4vw;
    white-space: nowrap;
  }
  .page-contact-faq-subtitle {
    margin-top: 5vw;
    margin-bottom: 4vw;
    font-size: 4vw;
  }
  .page-contact-faq-q {
    font-size: 3.5vw;
    margin-bottom: 2vw;
    padding-right: 6vw;
  }
  .page-contact-faq-q::after {
    font-size: 5vw;
  }
  .page-contact-faq-a {
    font-size: 3.2vw;
  }
  .page-contact-faq-q .faq-label,
  .page-contact-faq-a .faq-label {
    margin-right: 1.5vw;
  }
  .page-contact-area {
    margin-top: 10vw;
    margin-left: 0.5vw;
    margin-right: 0.5vw;
    padding: 15vw 4vw;
    width: 99vw;
    border-radius: 20px;
  }
  .page-contact-form-area {
    padding: 15vw 5vw 15vw 5vw;
    border-radius: 18px;
  }
  #page-contact-form-title {
    top: -2.5%;
    width: 80vw;
    padding: 2.8vw 0;
    font-size: 5vw;
    border-radius: 50vw;
  }
  .page-contact-form-text-area {
    font-size: 3.2vw;
    line-height: 1.6;
  }
  .page-contact-form-wrap {
    font-size: 3.2vw;
  }
  .contact-form-error,
  .contact-form-info {
    font-size: 3.2vw;
    padding: 3.2vw 3.2vw;
    border-radius: 3.2vw;
  }
  .contact-form-7-text {
    font-size: 3.5vw;
    margin-bottom: 2.1vw;
    gap: 2.7vw;
  }
  span.required {
    margin-left: 2.7vw;
    padding: 0.8vw 2.6vw;
    font-size: 2.8vw;
  }
  .contact-form-7-like input[type="text"],
  .contact-form-7-like input[type="email"],
  .contact-form-7-like input[type="tel"],
  .contact-form-7-like textarea,
  .contact-form-7-like select {
    font-size: 3.2vw;
    padding: 3.2vw 3.2vw;
    border-radius: 2.7vw;
  }
  .contact-form-7-like textarea {
    min-height: 32vw;
  }
  .contact-form-checkbox-item {
    font-size: 3.2vw;
    gap: 2.7vw;
  }
  .contact-form-checkbox-item input[type="checkbox"] {
    width: 4.8vw;
    height: 4.8vw;
  }
  .contact-form-hint {
    font-size: 2.9vw;
  }
  .contact-form-btn-area p {
    margin: 0 4vw;
    padding: 3.7vw 15vw 3.7vw 4.8vw;
    border-radius: 50vw;
  }
  .contact-form-btn-area p > button {
    font-size: 4vw;
  }
  .contact-form-btn-area p span {
    width: 12vw;
    height: 12vw;
    line-height: 12vw;
    font-size: 5.4vw;
    right: 2.7vw;
  }
}

/* -----------------------------------------------
privacy
----------------------------------------------- */
.privacy {
  margin-top: 6vw;
  padding: 0 1vw;
}
.privacy__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 70vw;
  background: #fff;
  border-radius: 20px;
  border: solid 2px #dedede;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.18);
  padding: 3vw 3vw;
  box-sizing: border-box;
}
.privacy__titleArea {
  margin-bottom: 2.2vw;
}
.privacy__title {
  font-size: 2vw;
  line-height: 1.4;
  border-left: solid 0.6vw #8AC75A;
  padding-left: 1vw;
}
.privacy__lead {
  margin-top: 1.4vw;
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
}
.privacy__section {
  margin-top: 2.4vw;
  padding-top: 2.2vw;
  border-top: solid 2px #dedede;
}
.privacy__h2 {
  font-size: 1.3vw;
  margin-bottom: 1.2vw;
  border-left: solid 0.5vw #ffde25;
  padding-left: 1vw;
}
.privacy__p {
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
  margin-top: 1vw;
}
.privacy__list {
  margin-top: 1.2vw;
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
}
.privacy__list--disc {
  list-style: disc;
  padding-left: 2vw;
}
.privacy__list--decimal {
  list-style: decimal;
  padding-left: 2vw;
}
.privacy__list li + li {
  margin-top: 0.8vw;
}
.privacy__hr {
  margin: 3vw 0 2vw 0;
  border: 0;
  height: 2px;
  background: #dedede;
}
.privacy__dates {
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
  background: #f6fbff;
  border-left: solid 0.5vw #8AC75A;
  padding: 1.2vw 1.5vw;
  border-radius: 12px;
}
.privacy a {
  color: #000fff;
  border-bottom: solid 1px #000fff;
}
@media screen and (max-width: 768px) {
  .privacy {
    margin-top: 12vw;
  }
  .privacy__inner {
    max-width: 92vw;
    padding: 18px 16px;
    border-radius: 18px;
  }
  .privacy__title {
    font-size: 20px;
    border-left-width: 6px;
    padding-left: 10px;
  }
  .privacy__lead,
  .privacy__p,
  .privacy__list,
  .privacy__dates {
    font-size: 14px;
    line-height: 1.9;
  }
  .privacy__section {
    margin-top: 18px;
    padding-top: 18px;
  }
  .privacy__h2 {
    font-size: 16px;
    border-left-width: 6px;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .privacy__list--disc,
  .privacy__list--decimal {
    padding-left: 22px;
  }
  .privacy__hr {
    margin: 20px 0 14px 0;
  }
  .privacy__dates {
    padding: 12px 12px;
    border-left-width: 6px;
  }
}
/* -----------------------------------------------
terms
----------------------------------------------- */
.terms {
  margin-top: 6vw;
  padding: 0 1vw;
}
.terms__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 70vw;
  background: #fff;
  border-radius: 20px;
  border: solid 2px #dedede;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.18);
  padding: 3vw 3vw;
  box-sizing: border-box;
}
.terms__titleArea {
  margin-bottom: 2.2vw;
}
.terms__title {
  font-size: 2vw;
  line-height: 1.4;
  border-left: solid 0.6vw #8AC75A;
  padding-left: 1vw;
}
.terms__section {
  margin-top: 2.4vw;
  padding-top: 2.2vw;
  border-top: solid 2px #dedede;
}
.terms__h2 {
  font-size: 1.3vw;
  margin-bottom: 1.2vw;
  border-left: solid 0.5vw #ffde25;
  padding-left: 1vw;
}
.terms__p {
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
  margin-top: 1vw;
}
.terms__list {
  margin-top: 1.2vw;
  font-size: 1.05vw;
  line-height: 1.9;
  color: #333;
}
.terms__list--disc {
  list-style: disc;
  padding-left: 2vw;
}
.terms__list li + li {
  margin-top: 0.8vw;
}
.terms__contact {
  margin-top: 1.2vw;
  background: #f6fbff;
  border-left: solid 0.5vw #8AC75A;
  padding: 1.2vw 1.5vw;
  border-radius: 12px;
}
.terms a {
  color: #000fff;
  border-bottom: solid 1px #000fff;
}
@media screen and (max-width: 768px) {
  .terms {
    margin-top: 12vw;
  }
  .terms__inner {
    max-width: 92vw;
    padding: 18px 16px;
    border-radius: 18px;
  }
  .terms__title {
    font-size: 20px;
    border-left-width: 6px;
    padding-left: 10px;
  }
  .terms__section {
    margin-top: 18px;
    padding-top: 18px;
  }
  .terms__h2 {
    font-size: 16px;
    border-left-width: 6px;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .terms__p,
  .terms__list {
    font-size: 14px;
    line-height: 1.9;
  }
  .terms__list--disc {
    padding-left: 22px;
  }
  .terms__contact {
    padding: 12px 12px;
    border-left-width: 6px;
  }
}
