@charset "UTF-8";
/* CSS BUILD TIMESTAMP: 2025-01-28 14:30:00 */
/* ===============================
   TICKET PRICE MANAGEMENT STYLES
   =============================== */
/* チケット料金管理画面専用のスタイル */
.ticket-price-management {
  /* レスポンシブ対応 */
}
.ticket-price-management .table-responsive {
  overflow-x: auto;
  min-height: 400px;
}
.ticket-price-management .table th, .ticket-price-management .table td {
  min-width: 120px;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}
.ticket-price-management .table th:first-child, .ticket-price-management .table td:first-child {
  min-width: 150px;
  position: sticky;
  left: 0;
  background-color: white;
  z-index: 10;
}
.ticket-price-management .table thead th:first-child {
  background-color: var(--bs-gray-dark) !important;
}
.ticket-price-management .input-ticket-per-set {
  width: 60px;
}
@media (max-width: 1200px) {
  .ticket-price-management .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* FAQ ACCORDION STYLES (Laravel版準拠) */
.p-qa__contents {
  margin-bottom: 60px;
}

.p-staticPage__contents {
  font-size: 14px;
}

.p-staticPage__wrap {
  font-size: 14px;
}

.p-staticPage__accordion {
  font-size: 1.4rem;
}

.p-staticPage__accordion .p-accordion__wrap {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 16px;
}

.p-staticPage__accordion dt {
  cursor: pointer;
  padding: 20px 50px 20px 30px;
  position: relative;
  margin: 0;
  background: #fafafa;
  border-radius: 8px;
  font-weight: 500;
  line-height: 1.5;
}

.p-staticPage__accordion dt::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  background-image: url("/assets/icon/icon_arrow_down_green-5b066a35.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
}

.p-staticPage__accordion dt.active::after {
  background-image: url("/assets/icon/icon_arrow_up_green-4e56c2d9.svg");
}

.p-staticPage__accordion dt.active {
  border-radius: 8px 8px 0 0;
}

.p-staticPage__accordion dt::before {
  display: block;
  content: "";
  position: absolute;
  top: 20px;
  left: 8px;
  width: 16px;
  height: 16px;
  background-image: url("/assets/icon/icon_q-ccfc66ba.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-staticPage__accordion dd {
  display: none;
  padding: 20px 30px 20px 30px;
  position: relative;
  margin: 0;
  background: #fff;
  border-radius: 0 0 8px 8px;
  line-height: 1.6;
}

.p-staticPage__accordion dd::before {
  display: block;
  content: "";
  position: absolute;
  top: 20px;
  left: 8px;
  width: 16px;
  height: 16px;
  background-image: url("/assets/icon/icon_a-1a0ec84c.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .p-qa__contents {
    margin-bottom: 50px;
  }
  .p-staticPage__accordion {
    font-size: 1.5rem;
  }
  .p-staticPage__accordion dt {
    cursor: pointer;
    padding: 30px 40px;
    position: relative;
  }
  .p-staticPage__accordion dt::before {
    display: block;
    content: "";
    position: absolute;
    top: 30px;
    left: 0px;
    width: 16px;
    height: 16px;
    background-image: url("/assets/icon/icon_q-ccfc66ba.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .p-staticPage__accordion dd {
    padding: 0 0 30px 40px;
    position: relative;
  }
  .p-staticPage__accordion dd::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 16px;
    height: 16px;
    background-image: url("/assets/icon/icon_a-1a0ec84c.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
/* INQUIRY STYLES */
.inquiry-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-label.required::after {
  content: " *";
  color: #e74c3c;
  font-weight: bold;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #009A44;
  box-shadow: 0 0 0 3px rgba(0, 154, 68, 0.1);
}

.readonly-field {
  padding: 12px 16px;
  background-color: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  color: #6c757d;
  margin: 0;
}

.contact-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
}

.contact-phone {
  font-size: 24px;
  font-weight: bold;
  color: #009A44;
  margin: 10px 0;
}

.contact-hours {
  color: #666;
  margin: 10px 0;
}

.error-messages {
  background: #ffe6e6;
  border: 1px solid #ff9999;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.error-messages h3 {
  color: #e74c3c;
  margin-top: 0;
  margin-bottom: 10px;
}

.error-messages ul {
  margin: 0;
  padding-left: 20px;
}

.error-messages li {
  color: #e74c3c;
  margin-bottom: 5px;
}

.privacy-policy {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.privacy-policy h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
}

.privacy-content {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 15px;
  background: white;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  gap: 10px;
}

.checkbox-label input[type=checkbox] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.form-actions {
  text-align: center;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.btn-primary {
  background-color: #009A44;
  color: white;
}

.btn-primary:hover {
  background-color: #007935;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #545b62;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

/* CONFIRM PAGE STYLES */
.confirm-message {
  background: #e8f5e8;
  border: 1px solid #009A44;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.confirm-content {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.confirm-item {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.confirm-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.confirm-item label {
  display: block;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}

.confirm-item p {
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.confirm-item p.comment {
  white-space: pre-wrap;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 4px;
}

/* お問い合わせ確認ページの統一スタイル */
.form-contents .form-confirmbox {
  margin-bottom: 20px;
}

/* 確認ページ専用のform-dlスタイル（新規作成ページには適用しない） */
.inquiry-confirm .form-contents .form-dl {
  background: #F2F2F2;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.inquiry-confirm .form-contents .form-dl dt {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  margin-top: 20px;
}

.inquiry-confirm .form-contents .form-dl dt:first-child {
  margin-top: 0;
}

.inquiry-confirm .form-contents .form-dl dd {
  background: white;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 0;
  color: #333;
  line-height: 1.6;
  white-space: pre-wrap;
}

/* COMPLETE PAGE STYLES */
.complete-message {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  margin-bottom: 30px;
}

.complete-message h2 {
  color: #009A44;
  margin-bottom: 30px;
  font-size: 28px;
}

.complete-message p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.note {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
  text-align: left;
}

.note h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
  font-size: 18px;
}

.note ul {
  margin: 0;
  padding-left: 20px;
}

.note li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* お問い合わせ完了ページの追加スタイル */
.form-confirmbox {
  background: #F2F2F2;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
}

.form-confirmbox__text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.form-btn-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

/* TERMS OF USE STYLES */
.terms-form {
  max-width: 100%;
}

.terms-description {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.terms-description p {
  margin: 0;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}

.terms-description p:last-child {
  margin-bottom: 0;
}

.terms-content {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.terms-text {
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 20px;
  background: #fafafa;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.terms-agreement {
  text-align: center;
}

.agreement-checkbox {
  margin-right: 8px;
  width: 18px;
  height: 18px;
}

.checkbox-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

/* AUTH CODE STYLES */
.auth-code-form {
  max-width: 100%;
}

.auth-code-description {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.auth-code-description p {
  margin: 0;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}

.auth-code-description p:last-child {
  margin-bottom: 0;
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
  transition: 0.4s;
}

.header-logo {
  margin-left: 65px;
}

@media screen and (max-width: 768px) {
  .header-logo {
    margin-left: 14px;
  }
}
.header-logo img {
  max-height: 49px;
  width: auto;
}

@media screen and (max-width: 768px) {
  .header-logo img {
    max-height: 44px;
  }
}
.header-nav {
  margin-right: 23px;
}

@media screen and (max-width: 768px) {
  .header-nav {
    margin-right: 10px;
  }
}
.header-nav ul {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .header-nav ul {
    gap: 10px;
  }
}
.header-nav ul li {
  font-size: 11px;
}

@media screen and (max-width: 768px) {
  .header-nav ul li {
    font-size: 8px;
  }
}
.header-nav ul li a {
  text-decoration: none;
  text-align: center;
  color: #111111;
  height: 38px;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* ヘッダーメニューアイコン（data-theme-colorがtrueの要素）をテーマカラーに設定 */
.header-nav ul li a svg[data-theme-color=true] {
  fill: var(--theme-color, #009A44) !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
}

.header-nav ul li a svg[data-theme-color=true] path {
  fill: var(--theme-color, #009A44) !important;
}

.header-nav ul li a svg {
  fill: #009A44;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
}

.header.is-home {
  background: none;
  border-bottom: 1px solid transparent;
}

.header.is-home .header-nav ul li a {
  color: white;
}

/* ホームページでのヘッダーメニューアイコン（data-theme-colorがtrueの要素）を白色に設定 */
.header.is-home .header-nav ul li a svg[data-theme-color=true] {
  fill: #FFFFFF !important;
}

.header.is-home .header-nav ul li a svg[data-theme-color=true] path {
  fill: #FFFFFF !important;
}

.header.is-home .header-nav ul li a svg {
  fill: #FFFFFF;
}

/* FOOTER */
.footer {
  background: #111;
  width: 100%;
  padding: 30px 20px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.footer-info {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .footer-info {
    order: 1;
  }
}
.footer-info__item {
  width: 48%;
  height: 320px;
  border-radius: 7px;
  background: rgba(17, 17, 17, 0.55);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .footer-info__item {
    height: 143px;
  }
}
.footer-info__item--img {
  position: absolute;
  top: -100px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .footer-info__item--img {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
  }
}
.footer-info__item--img::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(17, 17, 17, 0.55);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.footer-info__item--body {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

@media screen and (max-width: 768px) {
  .footer-info__item--body {
    top: inherit;
    bottom: 10px;
    transform: translate(-50%, 0);
  }
}
.footer-info__item--title {
  font-size: 24px;
  padding-top: 30px;
  margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .footer-info__item--title {
    font-size: 16px;
    padding-top: 0;
    margin-bottom: 2px;
  }
}
.footer-info__item--text {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .footer-info__item--text {
    font-size: 11px;
  }
}
.footer-link {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .footer-link {
    order: 3;
  }
}
.footer-link ul {
  text-align: center;
}

.footer-link ul li {
  display: inline;
  font-size: 13px;
  padding-right: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer-link ul li {
    white-space: nowrap;
  }
}
.footer-link ul li::after {
  content: "｜";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: white;
}

.footer-link ul li:last-child {
  padding-right: 0;
}

.footer-link ul li:last-child::after {
  display: none;
}

.footer-link ul li a {
  text-decoration: none;
  color: white;
}

.footer-nav {
  margin-top: 30px;
  width: 510px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .footer-nav {
    width: 100%;
    order: 2;
  }
}
.footer-nav__inquiry {
  margin-bottom: 20px;
}

.footer-nav__list {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .footer-nav__list {
    flex-wrap: wrap;
  }
}
.footer-nav__list li {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .footer-nav__list li {
    flex: 0 0 calc((100% - 10px) / 2);
  }
}
.footer-nav__list li:first-child {
  margin-left: 0;
}

.footer-nav__list li .btn {
  font-size: 11px;
  letter-spacing: -1.1px;
  padding-left: 9px;
  padding-right: 9px;
  margin: 0;
}

.footer-nav__list li .btn svg {
  vertical-align: middle;
}

.footer-nav__list li .btn svg path {
  fill: var(--theme-color, #009A44) !important;
}

/* フッター内のお問い合わせボタンのマージンをリセット */
.footer-nav .btn.--primary {
  margin: 0;
}

/* フッターナビゲーションボタンのSVGアイコンをテーマカラーに設定 */
.footer-nav__list .btn svg path {
  fill: var(--theme-color, #009A44) !important;
}

/* フッターナビゲーションボタンのホバー効果を無効化 */
.footer-nav__list .btn:hover {
  background-color: #fff !important;
  border-color: none !important;
  color: #111 !important;
  opacity: 1 !important;
  transform: none !important;
}

/* フッターナビゲーションボタンのSVGアイコンのホバー効果も無効化 */
.footer-nav__list .btn:hover svg path {
  fill: var(--theme-color, #009A44) !important;
}

.footer-copyright {
  text-align: center;
  color: #888888;
  font-size: 10px;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .footer-copyright {
    order: 4;
  }
}
.sp-footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-footer {
    display: block;
  }
}
.sp-footer::before {
  content: "";
  width: 100%;
  height: 50px;
  display: block;
  background: #fff;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.sp-footer-nav ul {
  display: flex;
  align-items: flex-end;
}

.sp-footer-nav ul li {
  flex: 1;
}

.sp-footer-nav ul li a {
  text-decoration: none;
  color: #000;
  text-align: center;
  font-size: 10px;
  letter-spacing: -1px;
  display: block;
  padding-bottom: 5px;
  font-weight: 500;
}

.sp-footer-nav ul li a svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2px;
}

.sp-footer-nav ul li a.sp-btn {
  width: 77px;
  height: 77px;
  padding-bottom: 0;
  border: 3px solid #009A44;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.25));
}

/*
buildOutputFile: 'style';
*/
/*------- reset  --------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

html, body {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: #000;
}

.c-search__button {
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  width: 50px;
  height: 52px;
  border: none;
  cursor: pointer;
}

.c-search__button .i-desvg {
  width: 17px;
  height: 17px;
  fill: #b7d019;
}

.c-flex {
  display: flex;
}

.c-required {
  background: #ee5328;
  color: #fff;
  font-size: 1rem;
  padding: 0 3px;
  margin-left: 10px;
}

/* c-input__text */
.c-input__text {
  border-radius: 3px;
  width: 100%;
  padding: 18px;
  border: none;
  background: #eff2ee;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .c-input__text {
    font-size: 1.3rem;
  }
}
.c-input__text--short {
  display: inline;
  border-radius: 3px;
  width: 49%;
  padding: 18px;
  border: none;
  background: #eff2ee;
  font-size: 1.4rem;
}

.c-input__text--short + .c-input__text--short {
  margin-left: 1%;
}

/* c-input__radio */
.c-input__radio {
  display: none;
}

/*------- sp ----------------*/
.sp-show {
  display: none;
}

.sp-hide {
  display: inherit;
}

@media screen and (max-width: 599px) {
  .sp-show {
    display: inherit;
  }
  .sp-hide {
    display: none;
  }
}
.sp-show-inline {
  display: none;
}

.sp-hide-inline {
  display: inline;
}

@media screen and (max-width: 599px) {
  .sp-show-inline {
    display: inline;
  }
  .sp-hide-inline {
    display: none;
  }
}
/*------- display ----------------*/
.is-hide {
  display: none !important;
}

.is-visible-hide {
  visibility: hidden !important;
}

.is-block {
  display: block !important;
}

.is-flex {
  display: flex !important;
}

/* LAYOUT */
/*----- breadcrumb -----*/
.breadcrumb {
  padding: 10px 0;
  margin-left: 65px;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-left: 10px;
  }
}
.breadcrumb ul li {
  font-size: 11px;
  display: inline;
  color: #555555;
}

.breadcrumb ul li::before {
  content: "〉";
}

.breadcrumb ul li:first-child::before {
  display: none;
}

.breadcrumb ul li a {
  text-decoration: none;
  color: #555555;
}

.breadcrumb ul li svg {
  vertical-align: sub;
}

/*----- container -----*/
.container {
  padding-top: 70px;
}

.container-inner {
  width: 1100px;
  margin: 0 auto;
  padding-bottom: 70px;
}

.container-inner.--w800 {
  width: 800px;
}

@media screen and (max-width: 768px) {
  .container-inner.--w800 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .container-inner {
    width: 100%;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*----- contents -----*/
.contents.--gap20 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contents-head {
  margin-bottom: 30px;
}

.contents-head__title {
  text-align: center;
  font-size: 13px;
  font-weight: normal;
  color: #111111;
}

.contents-head__title svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4px;
}

.contents-head__title--noticon {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  padding-top: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contents-head__title--noticon {
    padding-top: 10px;
  }
}
.contents-box {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  background: #F2F2F2;
  margin-bottom: 30px;
}

.contents-box__title {
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}

.contents-box__sub {
  font-size: 13px;
  font-weight: bold;
  color: #009A44;
  margin-bottom: 4px;
}

.contents-box__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.contents-box .contents-dl {
  font-size: 13px;
}

.contents-box-l {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 30px;
  background: #F2F2F2;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .contents-box-l {
    padding: 10px;
  }
}
.contents-box-l__title {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .contents-box-l__title {
    font-size: 15px;
  }
}
.contents-title {
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}

.contents-text {
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .contents-text {
    font-size: 11px;
  }
}
.contents-dl {
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .contents-dl {
    font-size: 13px;
  }
}
.contents-dl.--small {
  font-size: 13px;
}

.contents-dl dd {
  font-weight: bold;
  margin-top: 4px;
}

.contents-dl dt {
  font-weight: normal;
}

.contents-list li {
  font-size: 13px;
  text-indent: -0.75rem;
  margin-left: 0.75rem;
} /* COMPONENT */
/*------- btn  --------*/
.btn {
  padding: 16px;
  font-size: 14px;
  color: #111;
  background: #fff;
  border-radius: 7px;
  display: block;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

.btn svg {
  vertical-align: text-top;
}

.btn svg path {
  fill: #009A44;
}

.btn.btn-full {
  width: 100%;
}

.btn.btn-fit {
  display: inline-block;
  padding: 12px;
}

.btn.btn-l {
  width: 370px;
}

@media screen and (max-width: 768px) {
  .btn.btn-l {
    max-width: 100%;
  }
}
.btn.btn-m {
  width: 200px;
}

.btn.btn-s {
  font-size: 13px;
  padding: 8px;
}

.btn.btn-ss {
  font-size: 13px;
  padding: 3px 6px;
  min-width: 84px;
}

.btn.btn-height {
  height: 100%;
}

.btn.--primary {
  color: white;
  background: #009A44;
}

.btn.--primary svg path {
  fill: white;
}

.btn.--primary.--disabled,
.btn.--primary:disabled {
  color: #999;
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn.--primary.--disabled svg path,
.btn.--primary:disabled svg path {
  fill: #999;
}

.btn.--secondary {
  border: 1px solid #009A44;
  background: #F7F7F7;
  color: #009A44;
}

.btn.--gray {
  border: 1px solid #999999;
  background: #999999;
  color: white;
}

.btn.--white {
  border: 1px solid #009A44;
  background: white;
  color: #009A44;
  font-size: 11px;
}

.btn-select {
  border-radius: 4px;
  line-height: 1;
  border: 1px solid #AAA;
  background: #FFF;
  font-size: 13px;
  color: #000000;
  padding: 7px 29px 7px 14px;
  box-sizing: border-box;
  min-width: 84px;
  display: inline-block;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
}

.btn-select svg {
  position: absolute;
  right: 10px;
  top: 10px;
}

.btn-section {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-section.--col2 {
  gap: 20px;
}

.btn-section.--col2 .btn-section__item {
  flex: 0 0 calc((100% - 20px) / 2);
}

/*------- label --------*/
.label {
  font-size: 11px;
  border-radius: 3px;
  border: 1px solid #AAA;
  background: #FFF;
  line-height: 1;
  padding: 3px;
}

.label.--primary {
  border: 1px solid #009A44;
  background: #009A44;
  color: white;
}

.label.--secondary {
  border: 1px solid #009A44;
  background: #F7F7F7;
  color: #009A44;
}

.label.--red {
  border: 1px solid #EC0000;
  background: #EC0000;
  color: white;
}

.label.--important {
  border: 1px solid #C64F7B;
  color: white;
  background: #C64F7B;
}

/*------- page nation --------*/
.page-nation {
  margin-bottom: 10px;
}

.page-nation.--bgwhite ul li a.active, .page-nation.--bgwhite ul li span.active {
  background: #F2F2F2;
}

.page-nation.--bgwhite ul li a.page-nation__prev, .page-nation.--bgwhite ul li a.page-nation__next, .page-nation.--bgwhite ul li span.page-nation__prev, .page-nation.--bgwhite ul li span.page-nation__next {
  background: #F2F2F2;
}

.page-nation ul {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 15px;
  font-weight: bold;
}

.page-nation ul li a, .page-nation ul li span {
  text-decoration: none;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}

.page-nation ul li a.active, .page-nation ul li span.active {
  border-radius: 7px;
  background: #FFF;
}

.page-nation ul li a.page-nation__prev, .page-nation ul li a.page-nation__next, .page-nation ul li span.page-nation__prev, .page-nation ul li span.page-nation__next {
  border-radius: 7px;
  background: #FFF;
  display: flex;
  padding: 5px 10px;
  gap: 4px;
  width: 75px;
  box-sizing: border-box;
}

/*------- text --------*/
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

/*------- html list --------*/
.html-list li {
  width: 100%;
  border-bottom: 1px dotted #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.html-list li a {
  text-decoration: none;
  color: #111;
  display: block;
  padding: 8px;
  box-sizing: border-box;
  flex: 1;
  transition: 0.4s;
  background: white;
}

.html-list li a:hover {
  background: #F2F2F2;
} /* FORM */
.select-white {
  border-radius: 7px;
  border: 1px solid white;
  -webkit-appearance: none;
  appearance: none;
  padding: 8px 24px 7px 15px;
  font-size: 13px;
  color: #111;
  background-image: url("/assets/icon/icon_arrow_down_green-5b066a35.svg");
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: right 8px center;
  height: 100%;
  box-sizing: border-box;
}

.form-contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-dl dt {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-dl dt .label {
  margin-left: 10px;
}

.form-dl dd {
  margin-bottom: 30px;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .form-dl dd {
    font-size: 13px;
  }
}
.form-dl__row {
  display: flex;
  flex-wrap: wrap;
}

.form-dl__row dt {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .form-dl__row dt {
    width: 40%;
  }
}

.form-col2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-col2__item {
  flex: 0 0 calc((100% - 10px) / 2);
}

.form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-inline__item .form-select {
  width: auto;
}

.form-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
}

.form-list__indent {
  margin-left: 34px;
  margin-top: 5px;
}

.form-frame {
  border-radius: 7px;
  border: 1px solid #CCC;
  background: #F7F7F7;
  width: 100%;
  height: 125px;
  box-sizing: border-box;
  padding: 12px 20px;
  overflow-y: auto;
  margin-top: 20px;
  margin-bottom: 10px;
}

.form-frame__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-frame__title {
  font-size: 18px;
  font-weight: bold;
}

.form-frame__text {
  font-size: 13px;
}

.form-frame__text.text-right {
  text-align: right;
}

.form-frame__text.text-center {
  text-align: center;
}

.form-confirmbox {
  background: #F2F2F2;
  padding: 10px;
  text-align: left;
}

.form-confirmbox .form-dl dd:last-child {
  margin-bottom: 0;
}

.form-confirmbox__title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left;
}

.form-confirmbox__text {
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}

.form-confirmbox__text a {
  color: #000;
}

.form-separate {
  display: flex;
  justify-content: space-between;
}

.form-agreement {
  text-align: center;
  font-size: 13px;
}

.form-btn-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}

/* input */
.form-input {
  border-radius: 7px;
  border: 1px solid #CCC;
  background: #F7F7F7;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 1;
  font-size: 13px;
  height: 45px;
  width: 100%;
}

.form-radio {
  position: relative;
  cursor: pointer;
  padding-left: 14px;
  font-size: 13px;
}

.form-radio input[type=radio] {
  visibility: hidden;
}

/* Styling for radio buttons in ticket application form */
.form-contents .form-radio input[type=radio] {
  margin-left: 3px;
}

/* Credit card payment options styling */
.form-credit-options {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 15px;
  margin-top: 10px;
}

.form-credit-options .form-list {
  margin-bottom: 0;
}

.form-credit-options .form-list li {
  margin-bottom: 10px;
}

.form-credit-options .form-list li:last-child {
  margin-bottom: 0;
}

.recent-card-info {
  display: block;
  font-size: 12px;
  color: #666;
  margin-left: 20px;
  margin-top: 5px;
}

.js-credit-card-new-input {
  border-top: 1px solid #e9ecef;
  padding-top: 10px;
  margin-top: 10px;
}

.js-credit-card-new-input p {
  margin: 5px 0 0 0;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

/* Privacy notice styling for credit card payment */
.form-privacy-notice {
  border-top: 1px solid #e9ecef;
  padding-top: 15px;
  margin-top: 15px;
}

/* Privacy policy specific frame styling */
.privacy-policy-frame {
  height: 200px; /* 高さを増やして詳細な内容に対応 */
  border: 1px solid #CCC;
  background: #F7F7F7;
  border-radius: 7px;
  overflow-y: auto;
}

.privacy-policy-frame .form-frame__title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.privacy-policy-frame .form-frame__text {
  font-size: 12px;
  line-height: 1.5;
  color: #555;
}

.privacy-policy-frame .form-frame__text p {
  margin: 0 0 8px 0;
}

.privacy-policy-frame .form-frame__text p:last-child {
  margin-bottom: 0;
}

.privacy-policy-frame .form-frame__text ul {
  margin: 8px 0;
  padding-left: 20px;
}

.privacy-policy-frame .form-frame__text li {
  margin-bottom: 3px;
}

.privacy-policy-frame .form-frame__text h5 {
  font-size: 13px;
  color: #333;
}

.privacy-link {
  color: #007bff;
  text-decoration: underline;
}

.privacy-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.privacy-consent {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 12px;
}

.privacy-consent-checkbox {
  font-size: 13px;
  font-weight: normal;
}

.privacy-consent-checkbox .required-text {
  color: #333;
}

.privacy-consent-checkbox .label {
  margin-left: 5px;
}

.form-radio::before, .form-radio::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.form-radio::before {
  background-color: #fff;
  border: 2px solid #aaa;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  left: 5px;
  box-sizing: border-box;
}

.form-radio::after {
  background-color: #009A44;
  border-radius: 50%;
  opacity: 0;
  width: 12px;
  height: 12px;
  left: 11px;
  box-sizing: border-box;
}

.form-radio:has(:checked)::after {
  opacity: 1;
}

.form-checkbox {
  position: relative;
  cursor: pointer;
  padding-left: 14px;
  font-size: 13px;
}

.form-checkbox input[type=checkbox] {
  visibility: hidden;
}

.form-checkbox::before, .form-checkbox::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.form-checkbox::before {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 3px;
  width: 17px;
  height: 17px;
  left: 5px;
  box-sizing: border-box;
}

.form-checkbox::after {
  background-color: #009A44;
  border-radius: 3px;
  opacity: 0;
  width: 12px;
  height: 12px;
  left: 8px;
  box-sizing: border-box;
}

.form-checkbox:has(:checked)::after {
  opacity: 1;
}

.form-select {
  border-radius: 7px;
  border: 1px solid #CCC;
  background: #F7F7F7;
  width: 100%;
  height: 45px;
  padding-left: 20px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("/assets/icon/icon_arrow_down_green-5b066a35.svg");
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: right 10px center;
  min-width: 110px;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .form-select {
    min-width: 92px;
  }
}
.form-select option {
  color: #000;
}

.form-select:invalid,
.form-select option:first-child {
  color: #aaa;
}

.form-textarea {
  border-radius: 7px;
  border: 1px solid #CCC;
  background: #F7F7F7;
  resize: none;
  width: 100%;
  height: 125px;
  box-sizing: border-box;
  padding: 10px 20px;
  font-size: 13px;
  line-height: 1.5;
}

.form-caption {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
} /* HOME */
.home-main {
  width: 100%;
  height: 580px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .home-main {
    height: 432px;
    z-index: 2;
  }
}
.home-main::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(17, 17, 17, 0.4);
}

.home-main__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.home-main__img .slick-list {
  width: 100%;
  height: 100%;
}

.home-main__img .slick-list .slick-track {
  height: 100%;
}

.home-main__img--item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home-main__img--item:nth-child(1) {
  z-index: -1;
}

.home-main__img--item:nth-child(2) {
  z-index: -2;
}

.home-main__img--item:nth-child(3) {
  z-index: -3;
}

.home-main__img--item:nth-child(4) {
  z-index: -4;
}

.home-main__img--item:nth-child(5) {
  z-index: -5;
}

.home-main__img--item:nth-child(6) {
  z-index: -6;
}

.home-main__img--item:nth-child(7) {
  z-index: -7;
}

.home-main__img--item:nth-child(8) {
  z-index: -8;
}

.home-main__img--item:nth-child(9) {
  z-index: -9;
}

.home-main__img--item:nth-child(10) {
  z-index: -10;
}

.home-main__img--item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-main__box {
  position: absolute;
  bottom: -70px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  width: 740px;
  box-sizing: border-box;
  border-radius: 7px;
  background: #F5F5F5;
  padding: 19px 25px;
}

@media screen and (max-width: 768px) {
  .home-main__box {
    width: 90%;
    padding: 16px;
    bottom: -230px;
  }
}
.home-main__search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.home-main__search--item {
  position: relative;
}

@media screen and (max-width: 768px) {
  .home-main__search--item {
    width: 100%;
  }
  .home-main__search--item#keyword-selector-container {
    width: 72%;
  }
  .home-main__search--item#button-selector-container {
    width: auto;
  }
}
.home-main__search--icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  z-index: 1;
}

.home-main__search--select {
  width: 164px;
  height: 45px;
  border-radius: 7px;
  border: 1px solid #CCC;
  background: #FFF;
  text-align: center;
  box-sizing: border-box;
  padding: 0 30px 0 35px;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("/assets/icon/icon_arrow_down-00da1e52.svg");
  background-repeat: no-repeat;
  background-size: 7px auto;
  background-position: right 12px center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.home-main__search--select span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .home-main__search--select {
    width: 100%;
  }
}
.home-main__search--input {
  width: 251px;
  height: 45px;
  border-radius: 7px;
  border: 1px solid #CCC;
  background: #FFF;
  box-sizing: border-box;
  padding-left: 14px;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .home-main__search--input {
    width: 100%;
  }
}
.home-main__search--button {
  width: 75px;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  background: none;
  border: none;
  box-sizing: border-box;
}

.home-main__category {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-main__category--item {
  flex: 1;
  border-radius: 7px;
  border: 1px solid #CCC;
  background: #FFF;
  text-decoration: none;
  color: #000;
  font-size: 11px;
  text-align: center;
  letter-spacing: -1.1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px 0 12px;
}

@media screen and (max-width: 768px) {
  .home-main__category--item {
    width: 20%;
    flex: auto;
  }
}
.home-main__category--item svg {
  fill: #009A44;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
}

/* home container */
.home-container {
  padding-top: 85px;
  background: #F5F5F5;
}

@media screen and (max-width: 768px) {
  .home-container {
    padding-top: 230px;
  }
}
.home-container__inner {
  width: 1170px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .home-container__inner {
    width: 100%;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* home feature */
.home-feature__head {
  padding-left: 85px;
}

@media screen and (max-width: 768px) {
  .home-feature__head {
    padding-left: 35px;
  }
}
.home-feature__head--title {
  width: 120px;
  background: white;
  text-align: center;
  border: 1px solid #CCCCCC;
  color: #009A44;
  font-size: 13px;
  font-weight: bold;
  border-radius: 7px 7px 0 0;
  padding: 5px 0;
  line-height: 1;
}

.home-feature__slider {
  width: 100%;
  display: flex;
}

.home-feature__slider--item {
  width: 415px;
  margin-left: 27px;
}

@media screen and (max-width: 768px) {
  .home-feature__slider--item {
    margin-left: 15px;
  }
}
.home-feature__slider--prev, .home-feature__slider--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.home-feature__slider--prev {
  left: 3%;
}

.home-feature__slider--next {
  right: 3%;
}

/* home ranking */
.home-ranking {
  padding-top: 44px;
  padding-bottom: 70px;
}

.home-ranking__head {
  margin-bottom: 36px;
}

.home-ranking__head--title {
  font-size: 16px;
  color: #111111;
  text-align: center;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .home-ranking__head--title {
    font-size: 12px;
  }
}
.home-ranking__head--title svg {
  display: block;
  margin: 0 auto;
}

.home-ranking__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .home-ranking__wrap {
    row-gap: 30px;
    column-gap: 4%;
  }
}
.home-ranking__item {
  width: 370px;
  border-radius: 7px;
}

@media screen and (max-width: 768px) {
  .home-ranking__item {
    width: 100%;
  }
  .home-ranking__item:nth-child(n+3) {
    width: 48%;
    height: auto;
  }
}
.home-ranking__item a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.home-ranking__item--img {
  height: 278px;
}

@media screen and (max-width: 768px) {
  .home-ranking__item--img {
    height: auto;
  }
}
.home-ranking__item--img img {
  object-fit: cover;
  border-radius: 7px;
}

.home-ranking__item--mark {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 23px;
  height: 23px;
  background: #8CA308;
  color: white;
  text-align: center;
  border-radius: 50%;
  font-size: 15px;
  list-style: 23px;
}

.home-ranking__item--name {
  font-size: 13px;
  text-align: center;
  color: #111111;
  margin-top: 8px;
  padding: 0 5px;
}

/* home contents */
.home-contents {
  background: white;
  padding-bottom: 70px;
}

.home-contents__tab {
  background: #F5F5F5;
}

.home-contents__tab ul {
  display: flex;
  width: 1170px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .home-contents__tab ul {
    width: 100%;
  }
}
.home-contents__tab ul li {
  font-size: 13px;
  width: 260px;
}

.home-contents__tab ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  border: 1px solid #CCC;
  background: #EEE;
  display: block;
  text-align: center;
  padding: 12px 0;
}

.home-contents__tab ul li a.is-active {
  color: #8CA308;
  font-weight: bold;
  position: relative;
  background: white;
}

.home-contents__tab--item-bar.is-active {
  display: block;
  width: 100%;
  height: 4px;
  background: #8CA308;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.home-contents__body {
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .home-contents__body {
    width: 100%;
    overflow-x: scroll;
    box-sizing: border-box;
    padding-bottom: 15px;
  }
}
.home-contents__wrap {
  display: flex;
  width: 1170px;
  margin: 0 auto;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .home-contents__wrap {
    width: 930px;
  }
}
.home-contents__item {
  flex: 1;
  max-width: 370px;
  min-width: 300px;
  border-radius: 7px;
  background: white;
  box-shadow: 1px 1px 3px 3px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #000;
  margin-left: 27px;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .tab-content {
    flex-direction: column;
    gap: 20px;
  }
  .home-contents__item {
    width: 280px;
    max-width: none;
    min-width: auto;
    margin-left: 15px;
  }
}
.home-contents__item--img img {
  border-radius: 7px 7px 0 0;
}

.home-contents__item--info {
  padding: 13px;
}

.home-contents__item--tag {
  display: flex;
  gap: 8px;
  margin-bottom: 5px;
}

.home-contents__item--tag span {
  display: block;
  color: #8CA308;
  border: 1px solid #8CA308;
  border-radius: 10px;
  padding: 4px 13px;
  text-align: center;
  font-size: 11px;
  line-height: 1;
}

.home-contents__item--title {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 6px;
  padding-left: 6px;
  height: 40px;
}

.home-contents__item--text {
  font-size: 10px;
  font-weight: bold;
  padding-left: 6px;
  height: 30px;
}

/* タブコンテンツのスタイル */
.tab-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 30px;
  width: 100%;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.tab-content:first-child {
  display: flex;
  visibility: visible;
  height: auto;
}

/* JavaScriptで表示される際もflexレイアウトを適用 */
.tab-content[style*="display: block"] {
  display: flex !important;
}

.no-content {
  text-align: center;
  padding: 40px 0;
  color: #666;
  font-size: 14px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.no-content p {
  margin: 0;
}

/* カード画像のサイズ統一 */
.home-contents__item--img {
  height: 200px;
  overflow: hidden;
}

.home-contents__item--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px 7px 0 0;
}

/* レスポンシブ対応の改善 */
@media screen and (max-width: 768px) {
  .home-contents__item--img {
    height: 180px;
  }
}
/* home-main__search--modal */
html:has(dialog[open]) {
  overflow: hidden;
}

.home-main__search--modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  border: none;
  padding: 0;
  background: transparent;
  outline: none;
}

.home-main__search--modal *:focus {
  outline: none;
}

.home-main__search--modal .home-main__search {
  position: fixed;
  width: 100%;
  height: 74px;
  padding-bottom: 10px;
  background: #f5f5f5;
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 20px;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.home-main__search--modal-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #009A44;
  border-radius: 50%;
  background: #f5f5f5;
  line-height: 1;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .home-main__search--modal-close {
    top: -20px;
  }
}
.home-main__search--open {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  background: #F5F5F5;
  border-radius: 7px;
  width: 740px;
  max-width: 90vw;
  max-height: 80vh;
  padding-bottom: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .home-main__search--open {
    width: 100%;
  }
}
.home-main__search--modal-body {
  padding-top: 94px;
  overflow-y: auto;
  height: calc(100% - 94px);
  max-height: calc(80vh - 130px);
  padding-left: 25px;
  padding-right: 25px;
  box-sizing: border-box;
  outline: none;
}

/* home-main__search--accordion */
.home-main__search--accordion dt {
  font-size: 14px;
  font-weight: bold;
  color: #009A44;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-main__search--accordion dd {
  display: none;
  padding-bottom: 5px;
}

.home-main__search--accordion dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-main__search--accordion.is-open dd {
  display: block;
}

.home-main__search--accordion.is-open #category-accordion-close-icon {
  display: block;
}

.home-main__search--accordion #category-accordion-close-icon {
  display: none;
}

.home-main__search--accordion.is-open #category-accordion-open-icon {
  display: none;
}

.home-main__search--accordion #category-accordion-open-icon {
  display: block;
}

/* home-main__search--area */
.home-main__search--area {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .home-main__search--area {
    gap: 10px;
  }
}
.home-main__search--area .btn-item {
  width: 218px;
  height: 178px;
}

@media screen and (max-width: 768px) {
  .home-main__search--area .btn-item {
    flex: 0 0 calc((100% - 10px) / 2);
  }
}
.home-main__search--category {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}

.home-main__search--category .btn-item {
  width: 164px;
  height: 132px;
}

@media screen and (max-width: 768px) {
  .home-main__search--category .btn-item {
    flex: 0 0 calc((100% - 10px) / 2);
  }
}
.btn-item {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 7px;
  cursor: pointer;
}

.btn-item::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(17, 17, 17, 0.3);
  z-index: 0;
  border-radius: 7px;
}

.btn-item img {
  border-radius: 7px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-item__title {
  position: absolute;
  font-size: 16px;
  font-weight: bold;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
} /* SEARCH */
.search-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-resultsNunber {
  font-size: 13px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .search-result-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.search-result {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 2px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .search-result {
    row-gap: 10px;
  }
}
.search-result__item {
  flex: 0 0 calc((100% - 6px) / 4);
  text-decoration: none;
  color: #000;
  position: relative;
}

@media screen and (max-width: 768px) {
  .search-result__item {
    flex: 0 0 calc((100% - 10px) / 2);
  }
}
.search-result__item p {
  font-size: 13px;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .search-result__item p {
    margin-top: 5px;
  }
}
.search-result__item--close {
  width: 20px;
  height: 20px;
  background: #555;
  border-radius: 0 3px 0 0;
  color: white;
  font-size: 12px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  text-align: center;
}

.search-result__empty {
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #AAA;
  font-size: 16px;
  text-align: center;
}

.research-box .home-main__search {
  justify-content: center;
} /* FACILITY */
.facility-info {
  width: 1100px;
  margin: 48px auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.facility-info.--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: max-content max-content 1fr auto;
}

.facility-info.--grid .facility-info__body {
  grid-row: span 2/span 2;
}

@media screen and (max-width: 768px) {
  .facility-info.--grid {
    display: flex;
  }
  .facility-info.--grid .facility-info__detail {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .facility-info {
    width: 100%;
    margin-top: 18px;
  }
}
.facility-info__img {
  width: 550px;
}

@media screen and (max-width: 768px) {
  .facility-info__img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .facility-info__slider--item {
    margin: 0 5px;
  }
}
.facility-info__slider--item img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.facility-info__slider--prev, .facility-info__slider--next {
  position: absolute;
  bottom: -14px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .facility-info__slider--prev, .facility-info__slider--next {
    bottom: inherit;
    top: 50%;
    transform: translateY(-50%);
  }
}
.facility-info__slider--prev {
  left: 0;
}

@media screen and (max-width: 768px) {
  .facility-info__slider--prev {
    left: 5px;
  }
}
.facility-info__slider--next {
  right: 0;
}

@media screen and (max-width: 768px) {
  .facility-info__slider--next {
    right: 5px;
  }
}
.facility-info__slider--dots {
  display: flex;
  justify-content: center;
  margin-top: 46px;
  gap: 2px;
}

@media screen and (max-width: 768px) {
  .facility-info__slider--dots {
    margin-top: 23px;
  }
}
.facility-info__slider--dots li {
  width: 32px;
  height: 7px;
  border: 1px solid var(--theme-color, #009A44);
  background: white;
  box-sizing: border-box;
  display: block;
}

.facility-info__slider--dots li.slick-active {
  background: var(--theme-color, #009A44);
}

/* Slick スライダーの next/prev ボタンの色をテーマカラーに設定 */
.slick-prev:before,
.slick-next:before {
  color: var(--theme-color, #009A44) !important;
}

.slick-prev,
.slick-next {
  color: var(--theme-color, #009A44) !important;
}

/* Slick ドットインジケーターの色もテーマカラーに設定 */
.slick-dots li.slick-active button:before {
  color: var(--theme-color, #009A44) !important;
}

.facility-info__slider--dots li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.facility-info__body {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .facility-info__body {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.facility-info__sub {
  font-size: 11px;
}

.facility-info__title {
  font-size: 21px;
  font-weight: bold;
  color: #000;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .facility-info__title {
    font-size: 17px;
  }
}
.facility-info__copy {
  font-size: 15px;
  margin-bottom: 5px;
}

.facility-info__text {
  font-size: 14px;
  color: #000;
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  .facility-info__text {
    font-size: 13px;
  }
}
.facility-info__favorite {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .facility-info__favorite {
    text-align: center;
  }
}
.facility-info__detail {
  margin-bottom: 20px;
}

.facility-info__dl {
  font-size: 13px;
  padding: 10px;
}

.facility-info__dl dd {
  font-weight: bold;
  margin-top: 4px;
}

@media screen and (max-width: 768px) {
  .facility-info__overview {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.facility-info__overview .btn-section {
  margin-top: 20px;
}

/* branch list */
.branch-list {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .branch-list {
    margin-top: 0;
  }
}
.branch-list__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.branch-list__head--title {
  font-size: 16px;
  font-weight: bold;
  color: #111;
  padding-left: 10px;
}

.branch-list__head--nav {
  display: flex;
  gap: 10px;
}

.branch-list__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin-bottom: 30px;
}

.branch-list__item {
  flex: 0 0 calc((100% - 20px) / 3);
  background: white;
  box-sizing: border-box;
  padding: 16px 24px 16px 19px;
  position: relative;
  text-decoration: none;
  color: #111;
}

@media screen and (max-width: 768px) {
  .branch-list__item {
    flex: 0 0 calc((100% - 10px) / 2);
  }
}
.branch-list__item--title {
  font-size: 13px;
  font-weight: bold;
}

.branch-list__item--text {
  font-size: 13px;
}

.branch-list__item--arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .branch-list__item--arrow {
    right: 10px;
  }
}
/* benefits */
.benefit-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .benefit-info {
    gap: 15px;
  }
}
.benefit-info__head {
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .benefit-info__head {
    gap: 10px;
  }
}
.benefit-info__head--img {
  width: 260px;
}

.benefit-info__head--img img {
  border-radius: 7px;
}

@media screen and (max-width: 768px) {
  .benefit-info__head--img {
    width: 90px;
  }
}
.benefit-info__head--body {
  flex: 1;
}

.benefit-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-block__member {
  width: 500px;
  height: 310px;
  position: relative;
}
.benefit-block__member ul {
  position: absolute;
  right: 25px;
  bottom: 15px;
  display: flex;
  justify-content: flex-end;
  font-size: 1.4rem;
  color: #fff;
}
.benefit-block__member ul li {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .benefit-block {
    gap: 10px;
  }
  .benefit-block__member {
    width: 100%;
    height: auto;
    padding-top: 62%;
  }
  .benefit-block__member ul {
    position: absolute;
    right: 15px;
    bottom: 10px;
    font-size: 1rem;
  }
  .benefit-block__member ul li {
    margin-left: 15px;
  }
}
.benefit-block__title {
  font-size: 14px;
  font-weight: bold;
  padding-left: 5px;
}

.benefit-block__text {
  font-size: 12px;
  padding-left: 5px;
  padding-right: 5px;
} /* PURCHASE */
.purchase-history__tab {
  display: flex;
  width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .purchase-history__tab {
    width: 100%;
  }
}
.purchase-history__tab--item {
  flex: 0 0 50%;
  text-align: center;
  border: 1px solid #CCC;
  background: #EEE;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
  color: #969595;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px 0;
  position: relative;
}

.purchase-history__tab--item.is-active {
  background: #FFFCFC;
  border: 1px solid #CCC;
  color: #009A44;
}

.purchase-history__tab--item.is-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
  background: #009A44;
}

.purchase-history__tab--item:last-child {
  border-left: none;
}

.purchase-history__tab--item small {
  font-size: 11px;
  font-weight: normal;
}

.purchase-history__wrap {
  width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .purchase-history__wrap {
    width: 100%;
  }
}
.purchase-history__body {
  display: none;
}

.purchase-history__body.is-active {
  display: block;
}

.purchase-history__contents {
  width: 100%;
  padding: 20px 20px;
  box-sizing: border-box;
  background: white;
}

.purchase-history__contents:nth-child(even) {
  background: #F2F2F2;
}

.purchase-history__info {
  width: 100%;
  display: flex;
}

.purchase-history__info--body {
  flex: 1;
  padding-right: 10px;
  box-sizing: border-box;
}

.purchase-history__info--empty {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #AAA;
}

.purchase-history__info--title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .purchase-history__info--title {
    font-size: 16px;
  }
}
.purchase-history__info--overview li {
  font-size: 14px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .purchase-history__info--overview li {
    font-size: 13px;
    line-height: 1.4;
  }
}
.purchase-history__info--img {
  width: 160px;
}

@media screen and (max-width: 768px) {
  .purchase-history__info--img {
    width: 90px;
  }
}
.purchase-history__info--img img {
  border: 1px solid #F4F4F4;
  border-radius: 7px;
}

.purchase-history__info--date {
  margin-top: 13px;
  text-align: center;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .purchase-history__info--date {
    font-size: 11px;
  }
}
.purchase-history__info--date dt {
  color: #777;
}

.purchase-history__info--date dd {
  color: #aaa;
}

.purchase-history__ticket {
  margin-top: 20px;
}

.purchase-history__ticket--title {
  font-size: 13px;
}

.purchase-history__ticket--wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.purchase-history__ticket--item {
  display: flex;
  align-items: center;
}

.purchase-history__ticket--code {
  font-size: 15px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .purchase-history__ticket--code {
    font-size: 10px;
  }
}
.purchase-history__ticket--btn {
  margin-left: auto;
  display: flex;
  gap: 5px;
}

@media screen and (max-width: 768px) {
  .purchase-history__ticket--btn {
    min-width: 90px;
  }
  .purchase-history__ticket--btn .btn.btn-s {
    font-size: 12px;
    padding: 2px;
    line-height: 1;
  }
} /* TICKET */
.contents-ticket {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .contents-ticket {
    gap: 10px;
  }
}
.ticket-detail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .ticket-detail {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
}
.ticket-detail__body {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .ticket-detail__body {
    order: 2;
    text-align: center;
  }
}
.ticket-detail__body .contents-dl dd {
  margin-bottom: 6px;
}

.ticket-detail__qr {
  width: 150px;
}

@media screen and (max-width: 768px) {
  .ticket-detail__qr {
    order: 1;
  }
} /* MEMBER */
.membership {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 50px;
}

.membership-item {
  flex: 0 0 calc((100% - 48px) / 3);
}

.membership-item__text {
  font-size: 13px;
  margin-top: 10px;
}

.membership-item {
  position: relative;
}
.membership-item__img {
  position: relative;
  display: inline-block;
}
.membership-item .member-info {
  position: absolute;
  right: 8px;
  bottom: 5px;
  display: flex;
  justify-content: flex-end;
  font-size: 0.7rem;
  color: #fff;
  width: 100%;
}
.membership-item .member-info li {
  text-align: right;
  margin-left: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-nav {
  font-size: 13px;
}

.faq-nav ul li {
  display: inline;
  line-height: 2;
}

.faq-contents__section {
  padding-top: 30px;
}

.faq-contents__title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 8px;
}

.faq-contents__item {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  font-size: 13px;
  background: white;
}

.faq-contents__item:nth-child(odd) {
  background: #F2F2F2;
}

.faq-contents__item--q, .faq-contents__item--a {
  text-indent: -24px;
  margin-left: 24px;
  padding-right: 16px;
  box-sizing: border-box;
}

.faq-contents__item--q img, .faq-contents__item--a img {
  margin-right: 6px;
  vertical-align: sub;
}

.faq-contents__item--q {
  background-image: url("/assets/icon/icon_arrow_down_green-5b066a35.svg");
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: right 4px;
}

.faq-contents__item--a {
  margin-top: 12px;
  display: none;
}

.faq-contents__item.is-open .faq-contents__item--q {
  background-image: url("/assets/icon/icon_arrow_up_green-4e56c2d9.svg");
}

.faq-contents__item.is-open .faq-contents__item--a {
  display: block;
} /* NEWS */
.news-list {
  margin-bottom: 30px;
  width: 100%;
  flex-direction: column;
  gap: 0;
}

.news-list__item {
  border-bottom: 1px solid #ddd;
  width: 100%;
}

.news-list__link {
  display: block;
  width: 100%;
  padding: 20px 0;
  text-decoration: none;
  color: #000;
}

.news-list__link:hover {
  background-color: #f9f9f9;
}

.news-list__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.news-list__date {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

.news-list__category {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  line-height: 1;
}

.news-list__category--important {
  background-color: #C64F7B;
  color: white;
  border: 1px solid #C64F7B;
}

.news-list__category--new {
  background-color: #8CA308;
  color: white;
  border: 1px solid #8CA308;
}

.news-list__title {
  font-size: 14px;
  color: #111;
  line-height: 1.4;
  margin: 0;
  font-weight: normal;
}

/* ニュースタブ内の「もっと見る」ボタン - シンプルに中央配置 */
#news-more-button {
  display: flex;
  justify-content: center;
  text-align: center !important;
  padding-top: 20px !important;
  margin-top: 30px !important;
}

/* ホームページニュースタブ内のニュースリスト */
#news-content .news-list {
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100% !important;
  margin: 0 !important;
  gap: 0 !important;
  display: flex !important;
  flex: none !important;
  box-sizing: border-box !important;
  max-width: none !important;
  min-width: auto !important;
}

#news-content .news-list__item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0;
  width: 100%;
  max-width: none;
  min-width: auto;
}

#news-content .news-list__link {
  display: block;
  padding: 18px 0;
  text-decoration: none;
  color: #000;
  transition: background-color 0.2s ease;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

#news-content .news-list__link:hover {
  background-color: #f9f9f9;
}

#news-content .news-list__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

#news-content .news-list__date {
  font-size: 12px;
  color: #aaa;
  font-weight: normal;
}

/* ニュースタブ内のラベルスタイル */
#news-content .label {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
}

#news-content .news-list__title {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  font-weight: normal;
  margin: 0;
}

/* ニュースタブ全体の幅調整 */
#news-content {
  width: 1170px !important;
  max-width: 1170px !important;
  margin: 0 auto !important;
  flex: 1 !important;
  flex-direction: column !important;
  padding: 20px 0 !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  box-sizing: border-box !important;
}

@media screen and (max-width: 768px) {
  #news-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 15px !important;
    box-sizing: border-box !important;
  }
  #news-content .news-list {
    padding: 0;
    width: 100%;
  }
  #news-content .news-list__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  #news-content .news-list__date {
    font-size: 12px;
  }
  #news-content .news-list__title {
    font-size: 13px;
  }
  #news-content .news-list__link {
    padding: 16px 0;
  }
}
/* NEWS INDEX PAGE - デザインに合わせた新しいスタイル */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list__item {
  border-bottom: 1px solid #eee;
  /* リンクがない場合 */
}
.news-list__item:last-child {
  border-bottom: none;
}
.news-list__item a {
  display: block;
  padding: 20px 0;
  color: #111;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.news-list__item a:hover {
  background-color: #f9f9f9;
}
.news-list__item:not(:has(a)) {
  padding: 20px 0;
}
.news-list__upper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.news-list__date {
  font-size: 13px;
  color: #666;
  font-weight: normal;
}
.news-list__under {
  font-size: 14px;
  color: #111;
  line-height: 1.4;
  font-weight: normal;
}

/* ニュースページ用 contents-head のスタイル調整 */
.news-page .contents-head {
  margin-bottom: 30px;
}
.news-page .contents-head .contents-head__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #009A44;
  margin: 0;
}
.news-page .contents-head .contents-head__title svg {
  flex-shrink: 0;
}

/* contents セクションのスタイル */
.contents {
  /* 必要に応じてスタイルを追加 */
}

/* ニュース一覧ページ用のコンテンツなしメッセージ */
.contents .no-content {
  text-align: center;
  padding: 4rem 0;
  color: #666;
  font-size: 1.1rem;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .news-list__item a {
    padding: 16px 0;
  }
  .news-list__item:not(:has(a)) {
    padding: 16px 0;
  }
  .news-list__upper {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .news-list__date {
    font-size: 12px;
  }
  .news-list__under {
    font-size: 13px;
  }
  .news-page .contents-head__title {
    font-size: 14px;
  }
} /* POINT */
.point-exchange__list {
  border-top: 1px dotted #aaa;
}

.point-exchange__list--item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dotted #aaa;
}

.point-exchange__list--img {
  width: 90px;
  border-radius: 7px;
}

.point-exchange__list--img img {
  border-radius: 7px;
}

.point-exchange__list--text {
  font-size: 12px;
  color: #111;
  flex: 1;
  padding-left: 10px;
  padding-bottom: 10px;
} /* COUPON */
.coupon-contents {
  background-color: #AAA;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 0;
}

.coupon-contents__inner {
  width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .coupon-contents__inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}
.coupon-contents__head {
  width: 100%;
  height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, transparent 7px, #B1C63B 0) top left, linear-gradient(-135deg, transparent 7px, #B1C63B 0) top right, linear-gradient(-45deg, transparent 7px, #B1C63B 0) bottom right, linear-gradient(45deg, transparent 7px, #B1C63B 0) bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  margin-bottom: 2px;
  position: relative;
}

.coupon-contents__head::after {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: 2px;
  border-bottom: 2px dashed #222;
  position: absolute;
  left: 10px;
  bottom: -2px;
}

.coupon-contents__head--sub {
  font-size: 12px;
  font-weight: bold;
  color: white;
  margin-left: 15px;
}

.coupon-contents__head--title {
  font-size: 17px;
  font-weight: bold;
  margin-left: 15px;
}

.coupon-contents__body {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 15px;
  background: linear-gradient(135deg, transparent 7px, white 0) top left, linear-gradient(-135deg, transparent 7px, white 0) top right, linear-gradient(-45deg, transparent 7px, white 0) bottom right, linear-gradient(45deg, transparent 7px, white 0) bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}

.coupon-info {
  display: flex;
  padding: 30px 0;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .coupon-info {
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.coupon-info__use {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .coupon-info__use {
    width: 100%;
  }
}
.coupon-info__conditions {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .coupon-info__conditions {
    width: 100%;
  }
}
.coupon-info__title {
  font-size: 14px;
  font-weight: bold;
}

.coupon-info__text {
  font-size: 14px;
  margin-bottom: 20px;
}

.coupon-info__text:last-child {
  margin-bottom: 0;
} /* STATIC */
/*----- static contents -----*/
.static-contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.static-contents__block.--center {
  text-align: center;
}

.static-contents__title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
}

.static-contents__subtitle {
  font-size: 13px;
  font-weight: bold;
  color: #009A44;
}

.static-contents__text {
  font-size: 13px;
  line-height: 1.6;
}

.static-contents__dl {
  font-size: 14px;
}

.static-contents__dl dt {
  margin-top: 20px;
}

.static-contents__dl dt:first-child {
  margin-top: 0;
}

.static-contents__dl dd {
  font-weight: bold;
}

.static-contents__ul {
  font-size: 13px;
}

.static-contents__ul > li {
  text-indent: -1rem;
  margin-left: 1rem;
}

/*----- page mv -----*/
.page-mv {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 768px) {
  .page-mv {
    height: 280px;
  }
}
.page-mv__img {
  width: 100%;
  height: 380px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .page-mv__img {
    height: 280px;
  }
}
.page-mv__img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-mv__block {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
}

.page-mv__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.page-mv__sub {
  font-size: 12px;
  font-weight: normal;
}

/*----- page static -----*/
.page-contents {
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  .page-contents {
    padding: 40px 0 30px;
  }
}
.page-contents.--primary {
  background-color: #009A44;
}

.page-contents.--primary .page-contents__title,
.page-contents.--primary .contents-text {
  color: white;
}

.page-contents.--gray {
  background-color: #F2F2F2;
}

.page-contents .container-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .page-contents .container-inner {
    padding-bottom: 30px;
  }
}
.page-contents__title {
  font-size: 15px;
  font-weight: bold;
  color: #009A44;
  text-align: center;
}

/*----- info publication -----*/
.info-publication .page-contents .container-inner {
  position: relative;
}

.info-publication .page-contents .page-contents__number {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

.info-publication .page-contents:nth-child(1) .page-contents__number {
  z-index: -1;
}

.info-publication .page-contents:nth-child(2) .page-contents__number {
  top: -20px;
}

.info-publication .page-contents:nth-child(3) .page-contents__number {
  top: -42px;
  right: 41%;
}

@media screen and (max-width: 768px) {
  .info-publication .page-contents:nth-child(3) .page-contents__number {
    right: 0;
  }
}
.info-publication .page-contents:nth-child(4) .page-contents__number {
  top: -30px;
}

.info-publication .page-contents:nth-child(5) .page-contents__number {
  top: -30px;
}

.info-publication__block {
  display: flex;
  gap: 60px;
}

@media screen and (max-width: 768px) {
  .info-publication__block {
    box-sizing: border-box;
    gap: 14px;
    justify-content: center;
  }
}
.info-publication__item {
  flex: 0 0 calc((100% - 60px) / 2);
}

.info-publication__item--text {
  font-size: 13px;
  color: #111;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .info-publication__item--text {
    padding: 10px 0;
  }
}
.info-publication__box {
  border-radius: 7px;
  border: 1px solid #CCC;
  background: #FFF;
  width: 370px;
  height: 370px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .info-publication__box {
    width: 155px;
    height: 155px;
  }
  .info-publication__box img {
    width: 50px;
    height: auto;
  }
}
.info-publication__box--text {
  font-size: 13px;
  color: #111;
  margin-top: 7px;
}

.info-publication__step {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media screen and (max-width: 768px) {
  .info-publication__step {
    padding-left: 20px;
    padding-right: 20px;
    gap: 18px;
  }
}
.info-publication__step.--step5 {
  gap: 12px;
}

.info-publication__step.--step5 .info-publication__step--item {
  width: 150px;
  height: 150px;
  padding-top: 26px;
}

@media screen and (max-width: 768px) {
  .info-publication__step.--step5 .info-publication__step--item {
    width: 155px;
    height: 155px;
  }
}
.info-publication__step.--step5 .info-publication__step--img {
  height: 44px;
}

.info-publication__step--item {
  width: 190px;
  height: 190px;
  border-radius: 7px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding-top: 32px;
  gap: 4px;
}

@media screen and (max-width: 768px) {
  .info-publication__step--item {
    width: 155px;
    height: 155px;
    padding-top: 26px;
  }
}
.info-publication__step--step {
  font-size: 12px;
  color: #009A44;
  font-weight: bold;
}

.info-publication__step--step span {
  font-size: 20px;
  margin-left: 4px;
}

.info-publication__step--img {
  height: 61px;
}

.info-publication__step--text {
  font-size: 13px;
  text-align: center;
  line-height: 1.1;
}

.info-publication__flow {
  text-align: center;
  margin-top: 30px;
}

.info-publication__voice {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.info-publication__voice--item {
  width: 393px;
  border-radius: 7px;
  background: white;
}

.info-publication__voice--img {
  width: 100%;
  height: 160px;
  position: relative;
  z-index: 0;
}

.info-publication__voice--img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 7px 7px 0 0;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.info-publication__voice--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px 7px 0 0;
}

.info-publication__voice--title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: white;
  z-index: 1;
}

.info-publication__voice--body {
  padding: 10px 20px 20px;
}

.info-publication__voice--text {
  font-size: 13px;
}

/*----- info approach -----*/
.info-approach__mv .page-mv__img img {
  object-position: center 22%;
}

.info-approach .page-contents .container-inner {
  position: relative;
}

.info-approach .page-contents .page-contents__number {
  position: absolute;
  top: -30px;
  right: 0;
  z-index: 0;
}

.info-approach__box--head {
  border-radius: 3px 3px 0 0;
  background: #009A44;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 3px 0;
}

.info-approach__box--head img {
  margin-right: 20px;
}

.info-approach__box--body {
  border: 1px solid #009A44;
  border-radius: 0 0 3px 3px;
  box-sizing: border-box;
  padding: 20px;
}

.info-approach__box--text {
  font-size: 13px;
}

.info-approach__use {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

@media screen and (max-width: 768px) {
  .info-approach__use {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.info-approach__use--item {
  flex: 0 0 calc((100% - 39px) / 4);
}

.info-approach__use--box {
  width: 190px;
  height: 190px;
  background: white;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .info-approach__use--box {
    width: 155px;
    height: 155px;
  }
}
.info-approach__use--img {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .info-approach__use--img {
    margin-top: 40px;
  }
}
.info-approach__use--title {
  font-size: 13px;
  margin-top: 10px;
}

.info-approach__use--facility {
  margin-top: auto;
  font-size: 12px;
  font-weight: bold;
  color: #009A44;
  margin-bottom: 12px;
}

.info-approach__use--text {
  font-size: 12px;
  color: white;
  margin-top: 6px;
}

.info-approach__step {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .info-approach__step {
    padding-left: 20px;
    padding-right: 20px;
    gap: 18px;
  }
}
.info-approach__step--item {
  width: 190px;
  height: 190px;
  border-radius: 7px;
  border: 1px solid #CCCCCC;
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding-top: 32px;
  gap: 4px;
}

@media screen and (max-width: 768px) {
  .info-approach__step--item {
    width: 155px;
    height: 155px;
    padding-top: 26px;
  }
}
.info-approach__step--step {
  font-size: 12px;
  color: #009A44;
  font-weight: bold;
}

.info-approach__step--step span {
  font-size: 20px;
  margin-left: 4px;
}

.info-approach__step--img {
  height: 61px;
}

.info-approach__step--text {
  font-size: 13px;
  text-align: center;
  line-height: 1.1;
}

/* 支払い金額テーブルのスタイル */
.payment-amount-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.payment-amount-table th {
  padding: 8px 12px;
  text-align: left;
  background-color: #f8f9fa;
  border-bottom: 1px solid #ddd;
  font-weight: 600;
  width: 40%;
}

.payment-amount-table td {
  padding: 8px 12px;
  text-align: right;
  border-bottom: 1px solid #ddd;
  background-color: white;
}

.payment-amount-table .discount {
  color: #dc3545;
  font-weight: 600;
}

.payment-amount-table .total-row th {
  background-color: #e9ecef;
  font-weight: bold;
  border-bottom: 2px solid #333;
}

.payment-amount-table .total-row td {
  font-weight: bold;
  border-bottom: 2px solid #333;
}

.payment-amount-table .total-amount {
  font-size: 1.1em;
  color: #007bff;
  font-weight: bold;
}

.payment-amount-table .contact-later {
  color: #6c757d;
  font-style: italic;
}

/* 無効化ボタンのスタイル */
.btn:disabled,
.btn.--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-success {
  color: #1d643b;
  background-color: #d7f3e3;
  border-color: #c7eed8;
}

.alert-success hr {
  border-top-color: #b3e8ca;
}

.alert-success .alert-link {
  color: #123c24;
}

.alert-danger {
  color: #761b18;
  background-color: #f9d6d5;
  border-color: #f7c6c5;
}

.alert-danger hr {
  border-top-color: #f4b0af;
}

.alert-danger .alert-link {
  color: #4c110f;
}

/* Registration Controller（会員登録）のスタイル */
.p-registration {
  padding: 2rem 0;
}
.p-registration .p-registration__wrap {
  max-width: 800px;
  margin: 0 auto;
}
.p-registration .p-registration__message {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 4px;
}
.p-registration .p-registration__message.p-message--error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.p-registration .p-registration__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.p-registration .p-registration__table th, .p-registration .p-registration__table td {
  padding: 1rem;
  border: 1px solid #ddd;
  vertical-align: top;
}
.p-registration .p-registration__table th {
  background-color: #f8f9fa;
  font-weight: bold;
  width: 200px;
  text-align: left;
}
.p-registration .p-registration__table th .c-required {
  color: #dc3545;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
.p-registration .p-registration__table .c-input__text {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.p-registration .p-registration__table .c-input__text.c-input__text--short {
  width: 48%;
  margin-right: 2%;
}
.p-registration .p-registration__table .c-input__text.i-error {
  border-color: #dc3545;
}
.p-registration .p-registration__table .c-select select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.p-registration .p-registration__table .c-select.p-select--address select {
  width: 200px;
  margin-bottom: 1rem;
}
.p-registration .p-registration__table .c-select--birthday {
  width: auto;
  margin-right: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.p-registration .p-registration__table .c-radio-group label {
  margin-right: 1rem;
  cursor: pointer;
}
.p-registration .p-registration__table .c-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.p-registration .p-registration__table .c-button02 {
  padding: 0.5rem 1rem;
  background-color: #6c757d;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.p-registration .p-registration__table .c-button02:hover {
  background-color: #545b62;
}
.p-registration .p-registration__button {
  text-align: center;
}
.p-registration .p-registration__button .c-button01 {
  padding: 1rem 2rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
}
.p-registration .p-registration__button .c-button01:hover {
  background-color: #0056b3;
}
.p-registration .p-registration__text01 {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}
.p-registration .p-membeNumber {
  font-weight: bold;
  font-size: 1.1rem;
  color: #007bff;
}

/* Temporary Registration（仮登録完了）のスタイル */
.p-temporary-register {
  padding: 2rem 0;
}
.p-temporary-register .p-temporary-register__wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.p-temporary-register .p-temporary-register__message {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.p-temporary-register .p-temporary-register__message h2 {
  color: #28a745;
  margin-bottom: 1.5rem;
}
.p-temporary-register .p-temporary-register__message p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.p-temporary-register .p-temporary-register__message .p-temporary-register__list {
  text-align: left;
  margin: 1rem 0;
  padding-left: 2rem;
}
.p-temporary-register .p-temporary-register__message .p-temporary-register__list li {
  margin-bottom: 0.5rem;
}
.p-temporary-register .p-temporary-register__button .c-button01 {
  padding: 1rem 2rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
}
.p-temporary-register .p-temporary-register__button .c-button01:hover {
  background-color: #0056b3;
}

/* Thanks Message（完了画面）のスタイル */
.thanks-message {
  text-align: center;
  padding: 2rem;
}
.thanks-message .thanks-message__icon {
  margin-bottom: 1.5rem;
}
.thanks-message .thanks-message__title {
  color: #009A44;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.thanks-message .thanks-message__content {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.thanks-message .thanks-message__content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.thanks-message .thanks-message__content .alert {
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
}
.thanks-message .thanks-message__content .alert.alert-info {
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}
.thanks-message .thanks-message__content .thanks-message__list {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.thanks-message .thanks-message__content .thanks-message__list li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.thanks-message .thanks-message__button .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
}

/* FIXED PAGES COMPLETE REDESIGN */
/* 固定ページの包括的スタイル - 確実に適用されるアプローチ */
/* 静的ページ全体ラッパー */
.p-staticPage__wrap {
  background: #fff;
}

/* ページタイトル（会社概要など） */
.c-subTitle01 {
  padding: 40px 30px !important;
  text-align: center !important;
  margin: 0 !important;
  font-size: 22px !important;
  font-weight: bold !important;
  letter-spacing: 2px !important;
}

/* キャッチコピータイトル */
.p-staticPage__title01,
.p-staticPage__title02,
.p-staticPage__title03 {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  text-align: left;
  margin-top: 10px;
}

/* メインコンテンツセクション */
.p-staticPage__contents {
  margin-bottom: 20px;
}

.p-staticPage__contents p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  text-align: left;
}

/* 代表取締役署名 */
.p-staticPage__contents p[style*="text-align: right"] {
  text-align: right;
  margin-top: 40px;
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

/* FAQアコーディオン */
.p-staticPage__accordion {
  margin-bottom: 30px;
  font-size: 14px;
}

.p-accordion__wrap {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  font-size: 14px;
}

.p-accordion__wrap .p-accordion__question {
  background: #f8f9fa;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.p-accordion__wrap .p-accordion__question::before {
  content: "Q";
  background: #009A44;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.p-accordion__wrap .p-accordion__question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 18px;
  color: #009A44;
  font-weight: bold;
}

.p-accordion__wrap.is-open .p-accordion__question::after {
  content: "−";
}

.p-accordion__wrap .p-accordion__answer {
  background: white;
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  display: none;
  position: relative;
}

.p-accordion__wrap .p-accordion__answer::before {
  content: "A";
  background: #0066cc;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
  position: absolute;
  top: 20px;
  left: 20px;
}

.p-accordion__wrap .p-accordion__answer .p-accordion__answer-content {
  margin-left: 39px;
}

.p-accordion__wrap.is-open .p-accordion__answer {
  display: block;
}

/* 会社情報テーブル */
.p-staticPage__table {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  margin-top: 40px;
  width: 100%;
  border-collapse: collapse;
}

.p-staticPage__table th {
  font-weight: 600;
  color: #333;
  font-size: 14px;
  padding: 15px 20px;
  text-align: left;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  width: 150px;
  vertical-align: top;
}

.p-staticPage__table td {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  padding: 15px 20px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
}

.p-staticPage__table tr:last-child th,
.p-staticPage__table tr:last-child td {
  border-bottom: none;
}

/* より具体的なセレクターでの適用 */
.p-staticPage__wrap .l-container h1.c-subTitle01 {
  padding: 40px 30px;
  text-align: center;
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
}

.p-staticPage__wrap .l-container h2.p-staticPage__title01,
.p-staticPage__wrap .l-container h2.p-staticPage__title02,
.p-staticPage__wrap .l-container h2.p-staticPage__title03 {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  text-align: left;
  margin-top: 10px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .c-subTitle01 {
    padding: 30px 20px;
    font-size: 18px;
  }
  .p-staticPage__title01,
  .p-staticPage__title02,
  .p-staticPage__title03 {
    font-size: 14px;
  }
  .p-staticPage__contents p {
    font-size: 14px;
  }
  .p-staticPage__table {
    padding: 20px;
  }
  .p-accordion__wrap .p-accordion__question,
  .p-accordion__wrap .p-accordion__answer {
    padding: 15px;
    font-size: 14px;
  }
  .p-accordion__wrap .p-accordion__question::before,
  .p-accordion__wrap .p-accordion__answer::before {
    width: 20px;
    height: 20px;
    font-size: 11px;
    margin-right: 10px;
  }
  .p-accordion__wrap .p-accordion__answer .p-accordion__answer-content {
    margin-left: 30px;
  }
  .p-staticPage__table th {
    font-size: 14px;
    padding: 12px 15px;
  }
  .p-staticPage__table td {
    font-size: 14px;
    padding: 12px 15px;
  }
}
ol,
ul {
  list-style: none;
}

.p-registration__table {
  width: 100%;
  border-bottom: 1px solid #d9dbd1;
  font-size: 1.4rem;
  margin-bottom: 50px;
}

.p-registration__table th {
  padding: 0 30px;
  font-weight: bold;
  width: 200px;
  vertical-align: middle;
}

.p-registration__table th.p-registration__membercode {
  padding: 0 30px 0 10px;
}

.p-registration__table td {
  padding: 25px 30px 25px 0;
}

.p-registration__table tr {
  border-top: 1px solid #d9dbd1;
}

.p-registration__table tr.border-none {
  border: none;
}

.p-registration__table__amount td {
  padding: 7px 25px 7px 0;
}

.p-registration__table__amount tr {
  border-top: none;
}

.p-registration__mergedCell {
  padding: 25px 30px !important;
}

ol,
ul {
  list-style: none;
}

.p-registration__table {
  width: 100%;
  border-bottom: 1px solid #d9dbd1;
  font-size: 1.4rem;
  margin-bottom: 50px;
}

.p-registration__table th {
  padding: 0 30px;
  font-weight: bold;
  width: 200px;
  vertical-align: middle;
}

.p-registration__table th.p-registration__membercode {
  padding: 0 30px 0 10px;
}

.p-registration__table td {
  padding: 25px 30px 25px 0;
}

.p-registration__table tr {
  border-top: 1px solid #d9dbd1;
}

.p-registration__table tr.border-none {
  border: none;
}

.p-registration__table__amount td {
  padding: 7px 25px 7px 0;
}

.p-registration__table__amount tr {
  border-top: none;
}

.p-registration__mergedCell {
  padding: 25px 30px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.precautions-membership {
  display: flex;
  justify-content: center;
}

/* ===============================
   SOCIAL LOGIN BUTTON STYLES
   =============================== */
/* ソーシャルログインボタンのスタイル（画像ベース） */
.p-registration__sns {
  margin-top: 50px;
}

.p-registration__sns__title {
  position: relative;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.p-registration__sns__title::before {
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 1px solid #d9dbd1;
  content: "";
}
.p-registration__sns__title > span {
  position: relative;
  display: inline-block;
  padding: 0 1em;
  background-color: #fff;
}

.p-registration__sns__message {
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.7px;
}

.p-registration__sns__buttons {
  margin: 0 -20px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-registration__sns__buttons {
    margin: 0 -10px;
  }
}

.p-registration__sns__button {
  margin: 0 20px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .p-registration__sns__button {
    margin: 0 10px;
  }
}
.p-registration__sns__button:hover {
  opacity: 0.7;
}
.p-registration__sns__button img {
  height: 50px;
}

/* ===============================
   SITE THEME CUSTOMIZATION STYLES
   =============================== */
/* サイト固有のテーマカスタマイズ */
/* テーマカラーを使用する要素 */
.btn-primary, .btn-outline-primary:hover {
  background-color: var(--theme-color, #9a9a99) !important;
  border-color: var(--theme-color, #9a9a99) !important;
}

.btn-outline-primary {
  color: var(--theme-color, #9a9a99) !important;
  border-color: var(--theme-color, #9a9a99) !important;
}

/* リンクカラー */
a {
  color: var(--theme-color, #9a9a99);
}

a:hover {
  color: var(--theme-color, #9a9a99);
  opacity: 0.8;
}

/* ナビゲーション要素 */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--theme-color, #9a9a99) !important;
}

/* ベースカラー1を使用する要素 */
.card-header,
.table thead th {
  background-color: var(--base-color-1, #3a3d4e);
  color: white;
}

/* ベースカラー2を使用する要素 */
.sidebar,
.nav-tabs .nav-link.active {
  background-color: var(--base-color-2, #2a2a36);
  color: white;
}

/* ヘッダーカスタマイズ */
.header {
  background-color: var(--header-bg, #FFFFF0);
  color: var(--header-text, #000);
}

.header a,
.header-nav a {
  color: var(--header-text, #000);
}

.header a:hover,
.header-nav a:hover {
  color: var(--header-text, #000);
  opacity: 0.8;
}

/* アクセントカラーとして使用 */
.text-primary {
  color: var(--theme-color, #9a9a99) !important;
}

.bg-primary {
  background-color: var(--theme-color, #9a9a99) !important;
}

.border-primary {
  border-color: var(--theme-color, #9a9a99) !important;
}

/* フォーカス状態 */
.form-control:focus {
  border-color: var(--theme-color, #9a9a99);
  box-shadow: 0 0 0 0.2rem rgba(154, 154, 153, 0.25);
}

/* チェックボックス・ラジオボタン */
.form-check-input:checked {
  background-color: var(--theme-color, #9a9a99);
  border-color: var(--theme-color, #9a9a99);
}

/* ===============================
   SITE SPECIFIC ELEMENTS THEMING
   =============================== */
/* サイト固有の要素にテーマカラーを適用 */
/* ホームページ検索ボタン */
.home-main__search--button {
  background-color: var(--theme-color, #9a9a99) !important;
  border-color: var(--theme-color, #9a9a99) !important;
}

.home-main__search--button rect {
  fill: var(--theme-color, #009A44) !important;
}

.home-main__search--button:hover {
  background-color: var(--theme-color, #9a9a99) !important;
  opacity: 0.9;
}

/* カテゴリアイテム */
.home-main__category--item:hover {
  background-color: var(--theme-color, #9a9a99) !important;
  color: white !important;
}

/* タブボタンアクティブ状態 */
.home-contents__tab a.is-active {
  color: var(--theme-color, #9a9a99) !important;
  border-bottom-color: var(--theme-color, #9a9a99) !important;
}

.home-contents__tab a:hover {
  color: var(--theme-color, #9a9a99) !important;
}

/* ボタン全般 */
.btn.--primary,
.btn-primary {
  background-color: var(--theme-color, #9a9a99) !important;
  border-color: var(--theme-color, #9a9a99) !important;
}

/* アウトラインボタン */
.btn.--outline,
.btn-outline-primary {
  color: var(--theme-color, #9a9a99) !important;
  border-color: var(--theme-color, #9a9a99) !important;
}

.btn.--outline:hover,
.btn-outline-primary:hover {
  background-color: var(--theme-color, #9a9a99) !important;
  border-color: var(--theme-color, #9a9a99) !important;
  color: white !important;
}

/* ニュースラベル */
.label.--primary {
  background-color: var(--theme-color, #A7BC2E) !important;
  border-color: var(--theme-color, #A7BC2E) !important;
}

/* アクセントカラー */
.text-accent,
.color-accent {
  color: var(--theme-color, #9a9a99) !important;
}

.bg-accent {
  background-color: var(--theme-color, #9a9a99) !important;
}

/* リンクホバー効果 */
.home-contents__item:hover .home-contents__item--title {
  color: var(--theme-color, #9a9a99) !important;
}

/* ランキングマーク */
.home-ranking__item--mark {
  background-color: var(--theme-color, #9a9a99) !important;
}

/* 問い合わせページ等のボタンテーマカスタマイズ */
.btn.--primary {
  background-color: var(--theme-color, #009A44) !important;
  border-color: var(--theme-color, #009A44) !important;
}

.btn.--primary:hover {
  background-color: var(--theme-color, #009A44) !important;
  border-color: var(--theme-color, #009A44) !important;
  opacity: 0.9;
}

.btn.--secondary {
  border-color: var(--theme-color, #009A44) !important;
  color: var(--theme-color, #009A44) !important;
}

.btn.--secondary:hover {
  background-color: var(--theme-color, #009A44) !important;
  color: white !important;
}

.btn.--white {
  border-color: var(--theme-color, #009A44) !important;
  color: var(--theme-color, #009A44) !important;
}

.btn.--white:hover {
  background-color: var(--theme-color, #009A44) !important;
  color: white !important;
}

/* ブレッドクラムとページコンテンツテーマ色 */
.breadcrumb a {
  color: var(--theme-color, #009A44) !important;
}

.breadcrumb a:hover {
  color: var(--theme-color, #009A44) !important;
  opacity: 0.8;
}

/* コンテンツヘッドタイトルアイコンテーマ */
.contents-head__title svg path {
  fill: var(--theme-color, #009A44) !important;
}

/* フォームコントロールフォーカス色 */
.form-control:focus {
  border-color: var(--theme-color, #009A44) !important;
  box-shadow: 0 0 0 3px rgba(var(--theme-color-rgb, 0, 154, 68), 0.1) !important;
}

/* 問い合わせ電話番号テーマ */
.contact-phone {
  color: var(--theme-color, #009A44) !important;
}

/* ヘッダー.is-homeクラス使用時のテーマカスタマイズ */
.header.is-home .header-nav ul li a {
  color: white !important;
}

.header.is-home .header-nav ul li a:hover {
  color: white !important;
}

.header .header-nav ul li a {
  color: var(--header-text, white) !important;
}

.header .header-nav ul li a {
  color: var(--header-text, white) !important;
}

/* トップページカテゴリアイコンテーマカスタマイズ */
.home-main__category--item svg[data-theme-color=true] path {
  fill: var(--theme-color, #9a9a99) !important;
}

.home-main__category--item:hover svg[data-theme-color=true] path {
  fill: white !important;
}

/* 検索モーダル内のテーマカスタマイズ */
.home-main__search--modal svg[data-theme-color=true] path {
  fill: var(--theme-color, #009A44) !important;
}

.home-main__search--modal .btn-select {
  color: var(--theme-color, #009A44) !important;
  border-color: var(--theme-color, #009A44) !important;
}

.home-main__search--modal .btn-select:hover {
  background-color: var(--theme-color, #009A44) !important;
  color: white !important;
}

.home-main__search--modal .home-main__search--accordion dt {
  color: var(--theme-color, #009A44) !important;
}

.home-main__search--modal .btn-item__title {
  color: var(--theme-color, #009A44) !important;
}

/* モーダル閉じるボタンのテーマカラー */
.home-main__search--modal-close {
  color: var(--theme-color, #009A44) !important;
}

.home-main__search--modal-close:hover {
  background-color: var(--theme-color, #009A44) !important;
  color: white !important;
}

/* トップページセクションタイトルのテーマカスタマイズ */
.home-feature__head--title {
  color: var(--theme-color, #009A44) !important;
}

.home-ranking__head--title {
  color: var(--theme-color, #8CA308) !important;
}

.home-ranking__head--title svg[data-theme-color=true] path {
  fill: currentColor !important;
}

/* コンテンツタグのテーマカスタマイズ */
.home-contents__item--tag span {
  color: var(--theme-color, #009A44) !important;
  border-color: var(--theme-color, #009A44) !important;
}
