@charset "UTF-8";
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
    all: unset;
    display: revert;
}
ul li,
ol li {
  list-style-type: none;
}
a {
  cursor: pointer;
  color: #002b5b;
  font-weight: bold;
}
a:hover {
  text-decoration: underline;
}
table {
  border-collapse: collapse;
}
html {
  line-height: 1;
  font-family: 'Noto Sans JP', sans-serif;
  color: #383b4e;
  font-feature-settings: "palt";
}
.inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
/*  */
/* Header */
#header {
  color: #fff;
  background: radial-gradient(circle at 50% 20%, #2b6cb0 0%, #002b5b 85%);
  text-align: center;
  padding: 60px 20px 70px;
  position: relative;
  overflow: hidden;
}

#header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.header-badge-top {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.header-catch {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #ffe500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
  line-height: 1.4;
}

.flyer-wrap {
  display: inline-block;
  position: relative;
  max-width: 580px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.flyer-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.45);
}

.flyer-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.flyer-zoom-hint {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 43, 91, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease;
}

.flyer-wrap:hover .flyer-zoom-hint {
  background: #e6005c;
}

/* Quick Overview Bar */
#quick-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 10;
}

.quick-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 16px;
  border-right: 1px solid #edf2f7;
}

.quick-item:last-child {
  border-right: none;
}

.quick-item i {
  font-size: 24px;
  color: #002b5b;
  flex-shrink: 0;
}

.quick-item .label {
  display: block;
  font-size: 11px;
  color: #718096;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.quick-item .val {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.3;
}

.quick-item .highlight-pink {
  color: #e6005c;
  font-size: 17px;
  font-weight: 900;
}

.quick-item .highlight-green {
  color: #10b981;
  font-size: 15px;
  font-weight: 900;
}

/* Section */
section {
  padding: 90px 0;
}

/* SNS */
#sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 45px 0;
  background: #fafbfc;
  border-bottom: 1px solid #f0f2f5;
}

.sns-lead {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.05em;
}

#sns ul {
  display: flex;
  gap: 20px;
}

#sns a {
  display: grid;
  width: 64px;
  height: 64px;
  border: 1px solid #e2e8f0;
  background: #fff;
  place-content: center;
  font-size: 28px;
  border-radius: 50%;
  color: #002b5b;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

#sns a:hover {
  transform: translateY(-3px);
  background: #002b5b;
  color: #fff;
  border-color: #002b5b;
  box-shadow: 0 8px 20px rgba(0, 43, 91, 0.2);
}

/* 3大見どころ (Features) */
#features {
  background: #f4f8fb;
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title .sub {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #0077cc;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.section-title h1 {
  font-size: 32px;
  font-weight: 900;
  color: #002b5b;
  margin-bottom: 12px;
  line-height: 1.4;
}

.section-title .desc {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 8px 24px rgba(0, 43, 91, 0.07);
  border: 1px solid #e8eff6;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 43, 91, 0.12);
}

.feature-badge {
  background: #ffe500;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(255, 229, 0, 0.4);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.feature-select .feature-icon {
  background: #eef6ff;
  color: #0066cc;
}

.feature-free .feature-icon {
  background: #fff7ed;
  color: #ea580c;
}

.feature-bulk .feature-icon {
  background: #fdf2f8;
  color: #db2777;
}

.feature-card h2 {
  font-size: 22px;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-lead {
  font-size: 15px;
  font-weight: 700;
  color: #002b5b;
  margin-bottom: 12px;
  line-height: 1.5;
}

.feature-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

.feature-price-badge {
  background: linear-gradient(135deg, #e6005c, #ff3366);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(230, 0, 92, 0.3);
}

.feature-price-badge span {
  font-size: 20px;
  font-weight: 900;
}

.feature-price-badge small {
  font-size: 11px;
}

/* Shop / Booth */
#shop {
  background: #f8fafc;
  padding: 90px 0;
}

.shop-badge-box {
  margin: 14px 0 16px;
}

.shop-badge {
  display: inline-block;
  background: #ffe500;
  color: #111;
  font-size: 16px;
  font-weight: 900;
  padding: 8px 24px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.shop-notice {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.shop-notice strong {
  color: #002b5b;
}

.shop-notice .sub-note {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}

.past-shops-wrapper {
  margin-top: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.past-shops-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #edf2f7;
}

.past-shops-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #334155;
}

.past-shops-header i {
  color: #0077cc;
  margin-right: 8px;
}

#shop ol {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
#shop li {
  border: 1px solid #ccc;
  counter-increment: no;
  padding: 20px 60px 20px 20px;
  color: inherit;
  line-height: 1.7;
  position: relative;
  background: #fff;
}
#shop a {
  display: block;
  color: inherit;
}
#shop a::after, #shop li:not(:has(a))::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0,-50%);
  color: #555;
}
#shop a::after {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
}
#shop h2::before {
  content: counter(no)'. ';
}
/* #shop {
  display: none;
}
#shop .inner {
  display: grid;
  grid-template-columns: 1fr 4fr;
}
#shop h1 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
}
#shop ul {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
} */
/*  */
#msg {
  background: #EFE7D7;
  position: relative;
}
#msg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(3deg) translate(-50%,-50%);
  width: 700px;
  height: calc(100% - 200px);
  transform-origin: left top;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.2);

}
#msg .inner {
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.2);

  width: 700px;
  margin: 0 auto;
  padding: 50px;
  box-sizing: border-box;
  line-height: 1.8;
  position: relative;
  z-index: 100;
}

#msg h1 {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 1em;
}
#msg p {
  margin: 1em 0 0;
}
#msg p:last-of-type {
  text-align: right;
  margin: 2em 0 0;
}
#msg span.small {
  font-size: 13px;
  margin: 0 10px 0 0;
}
#msg span.large {
  font-size: 24px;
  font-weight: 700;
}
/*  */
#access {
  background: #002b5b;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0,0,0,.2);
}
#access .inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}
#access .right {
  order: 2;
}
#access iframe {
  width: 100%;
  box-shadow: 1px 1px 5px rgba(0,0,0,.2);
}
#access .left {
  order: 1;
}
#access h1 {
  font-size: 32px;
  font-weight: 900;
}
#access h2 {
  font-size: 24px;
  margin: 1em 0 0;
  font-weight: 700;
  line-height: 1.3;
}
#access p {
  margin: 1em 0 0;
}
#access dl {
  margin: 50px 0 0;
}
#access dl div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1em 0 0;
  position: relative;
}
#access dl div::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 100%;
  border-top: 1px dotted #fff;
}
#access dl span {
  background: #002b5b;
  position: relative;
  z-index: 10;
}
#access dl dt span {
  padding: 0 10px 0 0;
}
#access dl dd span {
  padding: 0 0 0 10px;
}
/*  */
/* Info Section */
#info {
  background: #ffffff;
  padding: 90px 0;
}

#info .inner {
  display: grid;
  grid-template-columns: 1fr 3.5fr;
  gap: 50px;
  font-size: 15px;
  line-height: 1.8;
}

#info .left .sub {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0077cc;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

#info h1 {
  font-size: 32px;
  font-weight: 900;
  color: #002b5b;
  line-height: 1.3;
}

#info table {
  width: 100%;
  border-top: 2px solid #002b5b;
  border-bottom: 2px solid #002b5b;
}

#info tr {
  border-bottom: 1px solid #e2e8f0;
}

#info th {
  width: 24%;
  padding: 18px 16px;
  font-weight: 700;
  color: #002b5b;
  background: #f8fafc;
  vertical-align: middle;
}

#info td {
  padding: 18px 20px;
  color: #334155;
}

.table-subtext {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

.info-date-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-date-item strong {
  font-size: 17px;
  color: #002b5b;
}

.info-date-note {
  font-size: 13px;
  color: #64748b;
}

.badge-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.badge-pink {
  background: #fdf2f8;
  color: #e6005c;
  border: 1px solid #fbcfe8;
  font-size: 16px;
  font-weight: 900;
}

.badge-green {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  font-size: 15px;
  font-weight: 900;
}

.badge-yellow {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
  font-size: 14px;
  font-weight: 900;
}

.info-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #002b5b;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.info-link-btn:hover {
  background: #004494;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 43, 91, 0.25);
}

.info-email-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0077cc !important;
  font-weight: 700;
}

/* Access Extra */
.access-address {
  font-size: 16px;
  margin: 8px 0 12px;
}

.access-parking-box {
  margin: 12px 0 24px;
}

.parking-badge {
  display: inline-block;
  background: #10b981;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
/*  */
#vintage {
  background: #93AA75;
  padding: 100px 0;
}
#vintage p {
  color: #fff;
  font-size: 50px;
  text-align: center;
  font-weight: 900;
  text-shadow: 0 2px 2px rgba(0,0,0,.3);
  line-height: 1.3;

}
/*  */
#flow {
  background: #93AA75;
  line-height: 1.8;
  padding: 0 0 100px;
}
#flow h1 {
  color: #fff;
  font-size: 40px;
  text-align: center;
  font-weight: 900;
  text-shadow: 0 2px 2px rgba(0,0,0,.3);
  margin: 0 0 1em;
}
#flow ol {
  display: grid;
  gap: 50px;
}
#flow li {
  background: #fff;
  display: grid;
  grid-template-columns: 2fr 3fr;
  counter-increment: i;
  position: relative;
  box-shadow: 1px 1px 5px rgba(0,0,0,.2);
}
#flow li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin: 0 0 0 -25px;
  width: 50px;
  height: 50px;
  background: #fff;
  opacity: .5;
}
#flow li:last-of-type::after {
  display: none;
}
#flow .left {
  border-right: 1px solid #ddd;
  display: grid;
  place-content: center;
}
#flow li h2 {
  font-weight: 700;
  font-size: 24px;
}
#flow li h2::before {
  content: counter(i)'. ';
}
#flow li div {
  padding: 50px;
}
/*  */
#notice {
  background: #93AA75;
  line-height: 1.8;
  padding: 0 0 100px;
}
#notice h1 {
  color: #fff;
  font-size: 40px;
  text-align: center;
  font-weight: 900;
  text-shadow: 0 2px 2px rgba(0,0,0,.3);
  margin: 0 0 1em;
}
#notice .wrap {
  background: #fff;
  box-shadow: 1px 1px 5px rgba(0,0,0,.2);
  padding: 50px;
}
#notice table {
  width: 100%;
  font-size: 14px;
}
#notice th,
#notice td {
  padding: 10px 20px;
  border: 1px solid #ddd;
}
#notice th {
  width: 25%;
}
/*  */
#comit h1 {
  font-weight: 900;
  font-size: 24px;
  margin: 0 0 2em;
}
#comit table {
  width: 100%;
  line-height: 1.7;
}
#comit th,
#comit td {
  border: 1px solid #ddd;
  padding: 10px 20px;
}
#comit th {
  width: 30%;
  font-weight: bold;
}
/*  */
@media screen and (max-width:768px) {
  section {
    padding: 50px 0;
  }
  
  /* Quick Bar Mobile */
  .quick-items {
    grid-template-columns: 1fr 1fr;
  }
  .quick-item {
    padding: 14px 12px;
    border-right: none;
    gap: 10px;
  }
  .quick-item:nth-child(odd) {
    border-right: 1px solid #edf2f7;
  }
  .quick-item:nth-child(1),
  .quick-item:nth-child(2) {
    border-bottom: 1px solid #edf2f7;
  }
  .quick-item i {
    font-size: 20px;
  }
  .quick-item .val {
    font-size: 12px;
  }
  .quick-item .highlight-pink {
    font-size: 14px;
  }
  .quick-item .highlight-green {
    font-size: 13px;
  }

  /* Header Mobile */
  #header {
    padding: 40px 15px 50px;
  }
  .header-catch {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  /* Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 28px 20px;
  }
  
  /* Shop Mobile */
  #shop ol {
    grid-template-columns: 1fr;
  }
  .past-shops-wrapper {
    padding: 24px 16px;
  }
  
  /* Msg Mobile */
  #msg {
    padding: 0;
  }
  #msg::before {
    display: none;
  }
  #msg .inner {
    width: 100%;
    padding: 50px 20px;
  }
  
  /* Access Mobile */
  #access .inner {
    grid-template-columns: 1fr;
  }
  
  /* Info Mobile */
  #info .inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #info th {
    width: 32%;
    padding: 12px 10px;
    font-size: 13px;
  }
  #info td {
    padding: 12px 10px;
    font-size: 13px;
  }
  /*  */
  #vintage {
    padding: 50px 0;
  }
  #vintage p {
    font-size: 40px;
  }
  /*  */
  #flow li {
    grid-template-columns: 1fr;
  }
  #flow .left {
    padding-bottom: 0;
  }
  #flow li div {
    padding: 30px;
  }
  /*  */
  #notice h1 {
    font-size: 36px;
  }
  #notice .wrap {
    padding: 0;
  }
  #notice th,
  #notice td {
    display: block;
    box-sizing: border-box;
    border: none;
  }
  #notice th {
    width: 100%;
    border-top: 1px solid #ddd;
    font-weight: bold;
    padding-bottom: 0;

  }
}
/* footer */
#footer {
  padding: 40px 0;
  text-align: center;
  color: #777;
  font-size: 14px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}
