*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; color: #333; background: #fff; line-height: 1.8; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
:root {
  --orange: #F7931E; --orange-dark: #E07B00; --orange-light: #FFF8ED;
  --dark: #333; --gray: #666; --font-en: 'Montserrat', sans-serif; --font-jp: 'Noto Sans JP', sans-serif;
  --max-width: 1100px;
}
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 10px rgba(0,0,0,0.05); padding: 12px 40px; display: flex; align-items: center; justify-content: space-between; }
.header-logo img { height: 32px; width: auto; display: block; }
.header-nav { display: flex; gap: 30px; align-items: center; }
.header-nav a { font-size: 14px; font-weight: 500; color: var(--dark); transition: color 0.3s; }
.header-nav a:hover { color: var(--orange); }
.header-entry-btn { background: var(--orange); color: #fff !important; padding: 8px 24px; border-radius: 30px; font-weight: 700; font-size: 14px; transition: background 0.3s; }
.header-entry-btn:hover { background: var(--orange-dark); }

.page-content { margin-top: 80px; padding: 60px 40px 80px; max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray); margin-bottom: 32px; transition: color 0.3s; }
.back-link:hover { color: var(--orange); }
.back-link::before { content: '\2190'; font-size: 18px; }
.page-heading { display: flex; align-items: center; gap: 20px; margin-bottom: 12px; }
.page-heading h1 { font-size: 32px; font-weight: 900; color: var(--orange); white-space: nowrap; }
.page-heading .line { flex: 1; height: 2px; background: var(--orange); }
.page-sub { font-size: 15px; color: var(--gray); margin-bottom: 40px; }

.info-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.info-table tr { border-bottom: 1px solid #f0f0f0; }
.info-table tr:last-child { border-bottom: none; }
.info-table th { background: var(--orange); color: #fff; font-weight: 700; font-size: 15px; padding: 18px 24px; text-align: left; width: 180px; vertical-align: top; }
.info-table td { padding: 18px 24px; font-size: 15px; line-height: 1.8; vertical-align: top; }

.entry-cta { text-align: center; margin-top: 60px; }
.entry-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--orange); color: #fff; font-size: 17px; font-weight: 700; padding: 18px 56px; border-radius: 50px; box-shadow: 0 4px 24px rgba(247,147,30,0.35); transition: all 0.3s; letter-spacing: 2px; }
.entry-btn::after { content: '\2192'; font-size: 20px; transition: transform 0.3s; }
.entry-btn:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(247,147,30,0.5); }
.entry-btn:hover::after { transform: translateX(4px); }

.footer { background: #fdf2e0; color: #fff; padding: 40px 0 24px; text-align: center; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 32px; width: auto; margin: 0 auto; display: block; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a { color: rgb(247, 147, 30); font-size: 13px; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: rgb(247, 147, 30); margin-top: 16px; }

@media (max-width: 768px) {
  .header { padding: 10px 16px; }
  .header-logo img { height: 26px; }
  .header-nav a:not(.header-entry-btn) { display: none; }
  .header-entry-btn { font-size: 12px; padding: 6px 18px; }
  .page-content { padding: 40px 16px 60px; margin-top: 60px; }
  .page-heading h1 { font-size: 24px; }
  .info-table th { width: 110px; padding: 14px 12px; font-size: 13px; }
  .info-table td { padding: 14px 12px; font-size: 13px; }
  .entry-btn { font-size: 15px; padding: 16px 40px; }
}
.note { font-size: 13px; color: #888; }

/* エントリーフォームモーダル */
.entry-modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 3000; align-items: center; justify-content: center; padding: 40px; }
.entry-modal-overlay.active { display: flex; }
.entry-modal { background: #fff; border-radius: 16px; max-width: 600px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; animation: modalIn 0.3s ease; padding: 40px 36px; }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.entry-modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; border: none; background: rgba(0,0,0,0.08); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #333; z-index: 10; transition: background 0.3s; }
.entry-modal-close:hover { background: rgba(0,0,0,0.15); }
.entry-modal-title { font-size: 20px; font-weight: 900; color: var(--orange); margin-bottom: 24px; text-align: center; }
#entryFormArea .wpcf7-form { display: flex; flex-direction: column; gap: 20px; }
#entryFormArea .form-group { display: flex; flex-direction: column; gap: 6px; }
#entryFormArea .form-group label { font-size: 14px; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 8px; }
#entryFormArea .form-group .required { background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 3px; line-height: 1.4; }
#entryFormArea .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) { width: 100%; padding: 12px 16px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 15px; font-family: var(--font-jp); color: var(--dark); background: #fafafa; transition: border-color 0.3s, box-shadow 0.3s; outline: none; -webkit-appearance: none; appearance: none; }
#entryFormArea .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(247,147,30,0.15); background: #fff; }
#entryFormArea .wpcf7-form-control::placeholder { color: #bbb; font-size: 14px; }
#entryFormArea select.wpcf7-form-control { background: #fafafa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat right 16px center; padding-right: 40px; cursor: pointer; }
#entryFormArea textarea.wpcf7-form-control { min-height: 120px; resize: vertical; }
#entryFormArea .wpcf7-list-item { margin: 0; }
#entryFormArea .wpcf7-acceptance .wpcf7-list-item-label { font-size: 13px; color: var(--gray); cursor: pointer; }
#entryFormArea .wpcf7-acceptance input[type="checkbox"] { width: 18px; height: 18px; margin-right: 8px; accent-color: var(--orange); cursor: pointer; vertical-align: middle; }
#entryFormArea .wpcf7-submit { width: 100%; padding: 16px; background: var(--orange); color: #fff; font-size: 16px; font-weight: 700; font-family: var(--font-jp); border: none; border-radius: 50px; cursor: pointer; letter-spacing: 2px; transition: all 0.3s; box-shadow: 0 4px 16px rgba(247,147,30,0.3); }
#entryFormArea .wpcf7-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(247,147,30,0.45); }
@media (max-width: 768px) {
  .entry-modal-overlay { padding: 16px; }
  .entry-modal { padding: 32px 20px; max-height: 90vh; }
  #entryFormArea .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) { font-size: 16px; padding: 10px 14px; }
  #entryFormArea .wpcf7-submit { font-size: 15px; padding: 14px; }
}
