@charset "utf-8";

  body {
       font-family: 'notosansjp';
  font-weight: 400;
    }
    @media (min-width: 768px) {
  body {
    background-color: #f0f2f5; 
  }

  main, header, footer {
    max-width: 1000px; 
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
  }
}

    .top-header_wrap {
      max-width: inherit;
      padding: 0;
    }
    .top-header_wrap a {
      display: block;
    }

.nav-open .sp-global-nav {
  right: 0;
  padding-top: 80px;
  width: 100%;
  max-width: 300px;
  z-index: 10000;
}


.mv-catch {
  display: flex;
padding: 20px;
}

.mv-foot_catch {
  font-size: 1.6rem;
  font-family: 'notosansjp';
  font-weight: 400;
  text-align: center;

    line-height: 1.6;
}
.mv-foot_catch p {
 background: rgba(255,255,255,.8);
  padding: 30px 40px;
  border-radius: 50%;
}
.mv-nav_col2 {
  display: flex;
    justify-content: center;

}
.mv-nav_col2 li {
  display: flex;
  flex-direction: column;
    margin: 10px;


}
.mv-nav_col2 li a {
position: absolute;
  top: 20px;
  left: 20px;
  width: 120px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  line-height: 1.4;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: #240101;
}

.hero__visual {
  position: relative;
  width: 100%;
   height: 700px;
  min-height: 400px;
background: url(../images/mv02.webp)center / cover no-repeat;
  padding: 8% 0 0;
}


.hero__badge {
 position: absolute;
    top: 15%;
    left: 20px;
  width: 140px;
  height: 140px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
.hero__badge {
  top: 20%;
  left: 20%;

}
}

.hero__container {
    position: absolute;
    bottom: 2%;
    padding: 20px 15px;
    width: 90%;
    left: calc(50% - 45%);

}

@media (min-width: 768px) {
.hero__container {
  padding: 20px 15px;
    bottom: 0;
    left: calc(50% - 30%);
    width: 60%;
}
}

.dept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}


.dept-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.dept-card a {
  display: block;
  text-decoration: none;
}

.dept-card__title {
  font-size: 18px;
  color: #240101;
  margin-bottom: 10px;
}


.dept-card__select {
  background-color: #eee;
  padding: 8px;
  border-radius: 5px;
  font-size: 16px;
  position: relative;
    color: #240101;
}

.dept-card__select::after {
  content: '▼';
  font-size: 10px;
  margin-left: 5px;
}


.dept-card--center {
  width: 60%;
  margin: 0 auto;
}


.action-section {
  padding: 20px 15px;
  background-color: #fff;
}


.action-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}


.btn {
  flex: 1; 
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 12px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15); 
  transition: transform 0.1s;
}

.btn:active {
  transform: translateY(2px);
  box-shadow: none;
}


.btn--access {
  background: linear-gradient(to bottom, #1e3c72, #2a5298);
}


.btn--reserve {
  background: linear-gradient(to bottom, #43a047, #2e7d32);
}


.hours-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 15px 5px;
  justify-content: center;
}

.hours-title {
  font-size: 16px;
  color: #333;
  white-space: nowrap; 
  padding-top: 2px;
}

.hours-details {
  font-size: 12px;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
}
  .dept-details-container {
display: flex;
flex-direction: column;

  }
  .dept-detail {
  padding: 40px 15px;
  text-align: center;
}

@media (min-width: 768px) {
  .dept-details-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
    flex-direction: initial;
  }

  .dept-detail {
    flex: 0 0 calc(50% - 15px); 
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
  }
}



.dept-detail__name {
  font-size: 20px;
  margin-bottom: 15px;
  color: #240101;
}


.dept-table-wrapper {
  margin-bottom: 20px;
}

.dept-table {
  width: 100%;
  border-collapse: collapse; 
  font-size: 11px;
}

.dept-table th, 
.dept-table td {
  border: 1px solid #ccc;
  padding: 8px 2px;
  vertical-align: middle;
  height: 50px;
}


.dept-table thead th,
.dept-table tbody th {
  background-color: #f2f2f2;
  font-weight: normal;
}


.symbol {
  display: inline-block;
  font-size: 16px;
  margin-bottom: 2px;
}




.dept-detail__link {
  display: inline-block;
  width: 80%;
  background-color: #cccccc;
  color: #240101;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 8px;
  font-size: 16px;
  transition: opacity 0.2s;
}

.dept-detail__link:hover {
  opacity: 0.8;
}

.others {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.others__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #240101;
}

.others__subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 25px;
}


.others__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 320px; 
  column-count: 3;  
  column-gap: 10px;
  text-align: left; 
}
@media (min-width: 768px) {
.others__list {
  max-width: 60%; 
}
}
  


.others__list li {
  font-size: 14px;
  line-height: 2;
  position: relative;
  padding-left: 12px;
  break-inside: avoid; 
}


.others__list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #333;
}


.others__contact {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  display: inline-block;
}

.contact-label {
  font-size: 14px;
  display: inline-block;
  margin-right: 10px;
}

.contact-number {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.contact-time {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}
.footer {
  background-color: #fff;
  padding-bottom: 20px;
}


.footer__map {
max-width: 600px;
    margin: 0 auto 30px;
}


.footer__info {
  text-align: center;
  padding: 0 20px;
}

.footer__logo {
  max-width: 200px;
  margin: 0 auto 15px;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__address {
  font-style: normal;
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer__copyright {
  font-size: 10px;
  color: #999;
  border-top: 1px solid #eee;
  padding-top: 15px;
}
.font-b {
  font-weight: bold;
}
@media (min-width: 768px) {
#category01 {
    padding-top: 100px;
  margin-top: -100px;
}
}
#category01,
#category02,
#category03,
#category04,
#category05 {
    padding-top: 120px;
  margin-top: -120px;
}