/* Basic Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

html {
  color: #333333;
  font-size: 16px;
}

body {
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding: 50px 0 0 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul,
　　 ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.font-cormorant {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.font-shippori {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
}

/* Custom Styles */
h1 {
  max-width: 450px;
  margin: 0 auto 50px auto;
  width: 100%;
}
.renewal-txt {
  margin-bottom: 50px;
  text-align: center;
}

.section-divider {
  margin-bottom: 30px;
  width: 100%;
  border: 0;
  border-top: 1px solid #e2e2e2;
}

nav ul {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

nav li {
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
}
nav span {
  font-size: 18px;
  font-family: "Shippori Mincho B1", serif;
}

/* schedule */
.schedule {
  padding: 50px 0;
  background: #f8f8f8;
}

.schedule-inner {
  margin: 0 auto;
}

.schedule-title {
  margin-bottom: 16px;
  font-size: 18px;
  text-align: center;
}

.schedule-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid #e2e2e2;
  table-layout: fixed;
}

.schedule-table-wrap + .schedule-table-wrap {
  margin-top: 24px;
}

.schedule-table th,
.schedule-table td {
  border: 1px solid #e2e2e2;
  text-align: center;
  padding: 10px 5px;
  font-size: 14px;
  line-height: 1.5;
}

.schedule-table th {
  font-weight: 400;
}

.schedule-table .col-day {
  width: 20%;
}

.schedule-table .col-place {
  width: 14%;
}

.schedule-table .col-time {
  width: 26%;
}

.schedule-table .col-date {
  width: calc(40% / 7);
}

.schedule-table td:nth-child(1),
.schedule-table td:nth-child(2),
.schedule-table td:nth-child(3) {
  white-space: nowrap;
}

/* footer */
footer {
  padding: 20px;
  text-align: center;
}

.copyright {
  font-size: 12px;
  color: #999;
}

@media (max-width: 768px) {
  body {
    padding: 50px 0 0 0;
  }
  h1 {
    width: 80%;
  }
  .renewal-txt {
    width: 80%;
    font-size: 13px;
    margin: 0 auto 30px auto;
  }
  .schedule {
    padding: 36px 0;
  }
  .schedule-inner {
    width: 90%;
  }
  .schedule-title {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .schedule-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .schedule-table-wrap + .schedule-table-wrap {
    margin-top: 16px;
  }

  .schedule-table th,
  .schedule-table td {
    font-size: 12px;
    padding: 6px 4px;
  }
}
