.l-section h1 {
  text-align: center;
  display: flex;
  margin: 0 auto;
  width: 100%;
  gap: 50px;
  align-items: center;
  max-width: 700px;
  margin-bottom: 100px;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .l-section h1 {
    margin-bottom: 0px;
  }

}
.l-section h1::before {
  content: "";
  width: 91px;
  height: 114px;
  background: url(../img/base/hedding_left.png) no-repeat;
}

.l-section h1::after {
  content: "";
  width: 150px;
  height: 114px;
  background: url(../img/base/hedding_right.png) no-repeat;
}

.l-section h1 span.h1_en {
  display: block;
  color: #EC7944;
  margin-bottom: 15px;
  font-weight: bold;
}

.l-section h1 span.h1_ja {
  display: block;
  color: #4B7746;
  font-size: 2em;
  font-weight: bold;
}

@media screen and (max-width: 640px),
print {
  .l-section h1 {
    width: 100%;
    gap: 10px;
  }

  .l-section h1::before {
    content: "";
    width: 10%;
    height: 50px;
    background-size: 100%;
  }

  .l-section h1 div {
    width: 80%;
  }

  .l-section h1::after {
    content: "";
    width: 15%;
    height: 50px;
    background-size: 100%;
  }

  .l-section h1 span.h1_en {
    margin-bottom: 10px;
  }

  .l-section h1 span.h1_ja {
    font-size: 1.5em;
  }
}

.flex {
  display: flex;
  gap: 20px;
}

.flex img {
  width: auto;
  height: auto;
}

.texts p {
  margin-bottom: 1em;
}

.bg-w {
  background: #fff;
}

.box {
  margin: 0 1em;
}

.box p,
.box li {
  font-size: 18px;
  line-height: 1.8;
}

.green-list {
  padding: 15px;
}

.bg-green {
  background: #DFE5BE;
  border-radius: 15px;
}

.green-list li {
  margin: 10px;
  padding-left: 2em;
}

.green-list li::before {
  content: "●";
  color: #527F32;
  margin-right: 15px;
  margin-left: -2em;
}

.common-box {
  padding: 15px;
}

.green-link {
  color: #4B7746 !important;
  text-decoration: underline;
}

.nuts-box {
  margin-top: 3em;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-container table {
  width: 100%;
  max-width: 1400px;
  margin: 1.5em auto;
  border-collapse: collapse;
}

.table-container table th,
.table-container table td {
  border: 1px solid #c9c89a;
  padding: 15px;
  text-align: center;
  font-size: 18px;
  vertical-align: middle;
}

.table-container th {
  background-color: #DFE5BE;
  font-weight: bold;
  font-size: 20px;
}

.table-container td {
  background-color: #F5EEE1;
  line-height: 1.6;
}

.day-cell {
  background-color: #c9c89a;
  font-weight: bold;
  font-size: 20px;
}

.time-cell {
  background-color: #ebe9d9;
}

.note {
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .table-container {
    margin-bottom: 2em;
  }

  .table-container table {
    min-width: 1000px;
  }
}


.highlight-row {
  background-color: #DFE5BE !important;
}

.small-text {
  font-size: 14px;
  line-height: 1;
}

.note {
  font-size: 12px;
  margin-top: 5px;
}

h4 {
  font-weight: bold;
  font-size: 1.2em;
}

.radius15 {
  border-radius: 15px;
}

.about table {
  border-collapse: collapse;
}

.about td {
  background: #fff;
  text-align: left !important;
  padding: 25px !important;
}

.about th {
  text-align: left !important;
  padding: 25px !important;
  border: 10px solid #F5EEE1 !important;
  min-width: 15em;
}

.about tr {
  border: 10px solid #F5EEE1;
}

.about td iframe {
  width: 100%;
}

.about td dt {
  color: #4B7746;
  font-weight: bold;
}

.about td dd {
  margin-bottom: 1em;
}

.about td dd:last-child {
  margin: 0;
}

@media (max-width: 768px) {

  .about table,
  .about table tr,
  .about table th,
  .about table td {
    display: block;
    border: 0px none !important;
    min-width: 100%;
  }
}



/* タブボタン */
.tab-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  padding: 0 10%;
}

.tab-button {
  flex: 1;
  padding: 18px;
  background-color: #d0d0d0;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
  border-radius: 12px 12px 0 0;
  position: relative;
  text-align: center;
}

.tab-button.active {
  background-color: #5a7c4d;
  color: white;
}

.tab-button:hover:not(.active) {
  background-color: #bbb;
}

/* タブコンテンツ */
.tab-content {
  display: none;
  background-color: white;
  border: 3px solid #5a7c4d;
  border-radius: 15px;
  padding: 32px;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* スケジュールテーブル */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table tr {
  border-bottom: 1px dashed #ccc;
}

.schedule-table tr:last-child {
  border-bottom: none;
}

.schedule-table td {
  padding: 20px 16px;
  vertical-align: top;
}

.schedule-table td:first-child {
  width: 120px;
  font-size: 20px;
  font-weight: 700;
  color: #5a7c4d;
  white-space: nowrap;
}

.schedule-table td:last-child {
  color: #333;
  line-height: 1.8;
  font-size: 18px;
}

.schedule-table td:last-child div {
  margin-bottom: 8px;
}

.schedule-table td:last-child div:last-child {
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .tab-button {
    font-size: 14px;
    padding: 14px 16px;
  }

  .tab-content {
    padding: 20px;
  }

  .schedule-table td:first-child {
    font-size: 20px;
    width: 100px;
  }

  .schedule-table td {
    padding: 16px 12px;
  }
}

.text-green{
  color: #4B7746;
}

.icon_bnr img{
  width: auto;
  height: 40px;
}
@media (max-width: 768px) {
  .icon_bnr img{
  width: 50%;
  height: auto;
  margin-bottom: 1em;
}
}
