@charset "UTF-8";
.nav-menu {
  display: flex;
  align-items: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media screen and (max-width:599px) {
  .nav-menu {
    flex-flow: column;
    row-gap: 32px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-width: 212px;
  height: 48px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn p {
  margin: 0;
}
.btn--stroke {
  background-color: #e77465;
  color: #fff;
}
.btn--stroke:hover, .btn--stroke:focus-visible {
  background-color: #fff;
  border-color: #e77465;
  color: #e77465;
  transform: translateY(2px);
}
.btn--fill {
  background-color: #e86fb1;
  color: #1d1d1d;
}
.btn--fill:hover, .btn--fill:focus-visible {
  filter: brightness(0.95);
  transform: translateY(-2px);
}

.faq-item {
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}
.faq-item__question {
  padding: 1rem;
  font-weight: bold;
  position: relative;
}
.faq-item__question:after {
  content: "+";
  position: absolute;
  right: 1rem;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
}
.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding: 1rem;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #1d1d1d;
  background-color: #fff;
}

h3 {
  font-size: 32px;
}
@media screen and (max-width:599px) {
  h3 {
    font-size: 24px;
  }
}

p {
  font-size: 16px;
}

.logo-image {
  height: 50px;
}

header {
  background-color: #04054c;
  position: fixed;
  padding: 40px;
  width: 100%;
  top: 0;
  z-index: 3;
  height: 80px;
}
@media screen and (max-width:599px) {
  header {
    height: 60px;
    padding: 20px;
  }
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .nav {
  margin-left: auto;
}
header .nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}
@media screen and (max-width:599px) {
  header .nav ul {
    display: none;
  }
}
header .nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}
header .nav ul li a:hover {
  color: #666;
}
header .nav ul .contact-icon {
  font-size: 24px;
}

.ham {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width:599px) {
  .ham {
    display: block;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.modal-content {
  position: relative;
  background: #fff;
  top: 100px;
  padding: 1rem;
  border-radius: 2px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  margin: auto;
}

.modal-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal-content ul li {
  margin: 0.5rem 0;
}
.modal-content ul a {
  text-decoration: none;
  font-size: 16px;
  color: #1d1d1d;
}
.modal-content ul a:hover {
  color: #666;
}

.modal .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #1d1d1d;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  top: 0;
  margin-top: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
  transform: scale(1);
  transition: opacity 1s ease-in-out, transform 4s ease-out;
}
.hero .slide01 {
  background: url("../image/image14.png") no-repeat center center;
  background-size: cover;
}
.hero .slide02 {
  background: url("../image/image12.jpg") no-repeat center center;
  background-size: cover;
}
.hero .slide03 {
  background: url("../image/image13.jpg") no-repeat center center;
  background-size: cover;
}
.hero .slide.active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 0;
}
.hero .hero-content {
  position: relative;
  width: 100vw;
  height: 100%;
  z-index: 2;
  color: #fff;
  font-family: Noto Serif, serif;
  color: #fff;
}
.hero .hero-content .main-title {
  position: absolute;
  left: 56px;
  bottom: 180px;
  font-size: 80px;
  background-color: rgba(125, 125, 125, 0.6745098039);
}
@media screen and (max-width:599px) {
  .hero .hero-content .main-title {
    left: 24px;
    bottom: 120px;
    font-size: 40px;
  }
}
.hero .hero-content .sub-title {
  position: absolute;
  background-color: rgba(125, 125, 125, 0.6745098039);
  left: 56px;
  bottom: 64px;
  font-size: 64px;
  margin-top: 1rem;
}
@media screen and (max-width:599px) {
  .hero .hero-content .sub-title {
    font-size: 32px;
    left: 24px;
  }
}

.main-message {
  width: 100%;
  position: relative;
  font-family: Didot, "Noto Serif", serif;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
}
.main-message .marquee {
  display: inline-flex;
  align-items: center;
  will-change: transform;
}
.main-message p {
  font-size: 160px;
  white-space: nowrap;
  line-height: 1;
  margin-right: 4rem;
}
@media screen and (max-width:599px) {
  .main-message p {
    font-size: 72px;
    margin-right: 2rem;
  }
}

.news-section {
  padding: 60px 20px;
  position: relative;
  padding-top: 0;
}
@media (min-width: 768px) {
  .news-section {
    padding: 70px 80px;
  }
}
.news-section .section-content {
  display: flex;
}
@media screen and (max-width:599px) {
  .news-section .section-content {
    flex-direction: column;
  }
}
.news-section .section-content .section-text {
  position: relative;
  margin-bottom: 20px;
  width: 50%;
}
@media screen and (max-width:599px) {
  .news-section .section-content .section-text {
    width: 100%;
  }
}
.news-section .section-content .section-text h3 {
  margin-bottom: 30px;
}
.news-section .section-content .section-text .news-btn {
  margin-top: 20px;
  text-align: center;
}
.news-section .section-content .news-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 40px;
  gap: 12px;
}
@media screen and (max-width:599px) {
  .news-section .section-content .news-list {
    padding: 20px 0;
  }
}
.news-section .section-content .news-list .news-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}
.news-section .section-content .news-list .news-item .title {
  flex: 1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-section .section-content .news-list .news-item .title:hover {
  color: #e77465;
  text-decoration: underline;
  transform: translateX(2px);
}

.info-section {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .info-section {
    padding: 70px 80px;
  }
}
.info-section .info-grid {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width:599px) {
  .info-section .info-grid {
    gap: 1rem;
    flex-direction: column;
  }
}
.info-section .info-grid .info-desc {
  width: 40%;
}
@media screen and (max-width:599px) {
  .info-section .info-grid .info-desc {
    width: 100%;
  }
}
.info-section .info-grid .info-desc h3 {
  margin-bottom: 1.5rem;
  color: #1d1d1d;
}
.info-section .info-grid .info-desc .info-box p {
  color: #1d1d1d;
}
.info-section .info-grid .info-desc .reservation {
  text-align: center;
  margin: 3rem 0;
}
.info-section .info-grid .info-card {
  width: 80%;
}
@media screen and (max-width:599px) {
  .info-section .info-grid .info-card {
    width: 100%;
  }
}
.info-section .hours-table .hours-image {
  width: 100%;
}
.info-section .hours-table .hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid #ddd;
}
.info-section .hours-table .hours-row:last-child {
  border-bottom: none;
}
.info-section .hours-table .hours-row .day {
  font-weight: 600;
  color: #1d1d1d;
}
.info-section .hours-table .hours-row .time {
  color: #1d1d1d;
}
.info-section .hours-table .note {
  text-align: center;
  margin-top: 1rem;
  padding: 0.5rem;
  background-color: #f5f5f5;
  border-radius: 2px;
  color: #666;
}

.services-section {
  padding: 40px 80px;
  margin-bottom: 30px;
  position: relative;
  background: url("../image/image03.jpeg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width:599px) {
  .services-section {
    padding: 20px;
  }
}
.services-section h3 {
  margin-top: 30px;
}
.services-section .services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2rem;
}
@media screen and (max-width:599px) {
  .services-section .services-grid {
    grid-template-columns: 1fr;
  }
}
.services-section .services-grid .service-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 2px;
  padding: 2rem 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.031);
  transition: transform 0.2s, box-shadow 0.3s;
  display: block;
  text-decoration: none;
}
.services-section .services-grid .service-item .service-content {
  display: flex;
  gap: 20px;
}
.services-section .services-grid .service-item .service-content .service-icon img {
  width: 8rem;
}
.services-section .services-grid .service-item .service-content h4 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 16px;
}
@media screen and (max-width:599px) {
  .services-section .services-grid .service-item .service-content h4 {
    font-size: 20px;
  }
}

.director-section {
  padding: 60px 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .director-section {
    padding: 70px 80px;
  }
}
@media screen and (max-width:599px) {
  .director-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.director-section .section-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 32px;
}
@media screen and (max-width:599px) {
  .director-section .section-content {
    grid-template-columns: 1fr;
  }
}
.director-section .director-image {
  width: 600px;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:599px) {
  .director-section .director-image {
    width: 100%;
  }
}
.director-section .director-image img {
  width: 100%;
  height: auto;
}
.director-section .director-text h3 {
  margin-bottom: 1.5rem;
  color: #1d1d1d;
}
.director-section .director-text p {
  color: #666;
  margin-bottom: 1.5rem;
  text-align: left;
}
.director-section .director-text .btn-content {
  font-size: 16px;
}

.faq-section {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .faq-section {
    padding: 70px 80px;
  }
}
.faq-section .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .faq-list .faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
.faq-section .faq-list .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
}
.faq-section .faq-list .faq-item .faq-icon {
  transition: transform 0.2s ease;
}
.faq-section .faq-list .faq-item .faq-answer {
  overflow: hidden;
  padding-top: 0.5rem;
  font-size: 16px;
}

.banner-section .banner {
  width: 50%;
  margin: 0 auto;
  transition: 0.2s all ease;
}
@media screen and (max-width:599px) {
  .banner-section .banner {
    width: 100%;
  }
}
.banner-section .banner:hover {
  transform: translateY(2px);
  opacity: 0.8;
}

.access-section {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .access-section {
    padding: 70px 80px;
  }
}
.access-section h3 {
  margin-bottom: 1.5rem;
  color: #1d1d1d;
}
.access-section p {
  font-size: 16px;
  margin-bottom: 2rem;
}
.access-section .map-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 2px;
}
@media screen and (max-width:599px) {
  .access-section .map-placeholder {
    padding-bottom: 75%;
  }
}
.access-section .map-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  background-color: #04054c;
  border-top: 1px solid #ddd;
  padding: 20px 40px;
  color: #fff;
  /* コピーライト（全幅） */
}
.footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  align-items: start;
}
@media screen and (max-width:599px) {
  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer .footer-info {
  grid-column: 1;
}
.footer .footer-info .footer-logo p {
  font-size: 14px;
}
.footer .footer-nav {
  grid-column: 3;
  justify-self: end;
}
@media screen and (max-width:599px) {
  .footer .footer-nav {
    grid-column: 1;
    justify-self: center;
    text-align: center;
    margin-top: 1.5rem;
  }
}
.footer .footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width:599px) {
  .footer .footer-nav ul {
    display: block;
  }
}
.footer .footer-nav ul li {
  margin-bottom: 0.5rem;
}
.footer .footer-nav ul li .contact-icon {
  font-size: 24px;
}
.footer .footer-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer .footer-nav ul li a:hover {
  color: #666;
}
.footer .footer-copyright {
  grid-column: span 3;
  text-align: center;
  margin-top: 1.5rem;
}
.footer .footer-copyright p {
  font-size: 0.8rem;
  opacity: 0.8;
}
@media screen and (max-width:599px) {
  .footer .footer-copyright {
    grid-column: 1;
  }
}

.page-first,
.page-news,
.page-services,
.page-director {
  margin-top: 80px;
}
@media screen and (max-width:599px) {
  .page-first,
.page-news,
.page-services,
.page-director {
    margin-top: 60px;
  }
}
.page-first h2, .page-first h3,
.page-news h2,
.page-news h3,
.page-services h2,
.page-services h3,
.page-director h2,
.page-director h3 {
  margin-bottom: 1.5rem;
  color: #1d1d1d;
}

.page-first .intro-box {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
}

.page-news {
  padding: 3rem 0;
}
.page-news h2 {
  padding: 40px 70px 0;
  margin: 0;
}
@media screen and (max-width:599px) {
  .page-news h2 {
    padding: 20px;
  }
}
.page-news .news-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 40px 160px;
  gap: 12px;
}
@media screen and (max-width:599px) {
  .page-news .news-list {
    padding: 20px;
  }
}
.page-news .news-list .news-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}
.page-news .news-list .news-item .title {
  flex: 1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-news .news-list .news-item .title:hover {
  color: #e77465;
  text-decoration: underline;
  transform: translateX(2px);
}

.page-services {
  padding: 40px 70px;
}
@media screen and (max-width:599px) {
  .page-services {
    padding: 20px;
  }
}

.service-items {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 50px;
}
@media screen and (max-width:599px) {
  .service-items {
    gap: 10px;
  }
}
.service-items .service-image {
  flex: 1;
  width: 100%;
  text-align: center;
}
.service-items .service-image img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
}
.service-items .service-text {
  flex: 1;
}
.service-items .service-text h3 {
  font-size: 24px;
  margin-bottom: 1rem;
}
.service-items .service-text p {
  font-size: 16px;
  line-height: 1.8;
}
.service-items.reverse {
  flex-direction: row-reverse;
  margin-bottom: 50px;
}
@media screen and (max-width:599px) {
  .service-items {
    flex-direction: column;
  }
  .service-items.reverse {
    flex-direction: column;
  }
  .service-items .service-image,
.service-items .service-text {
    width: 100%;
  }
}

.page-director section {
  padding: 50px;
}
@media screen and (max-width:599px) {
  .page-director section {
    padding: 20px;
  }
}
.page-director .profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}
@media screen and (max-width:599px) {
  .page-director .profile-grid {
    grid-template-columns: 1fr;
  }
}
.page-director .profile-grid .director-image {
  width: 600px;
  margin: 0 auto;
}
@media screen and (max-width:599px) {
  .page-director .profile-grid .director-image {
    width: 100%;
  }
}
.page-director .profile-grid .director-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.page-director .career-section .career-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width:599px) {
  .page-director .career-section .career-wrapper {
    flex-direction: column;
  }
}
.page-director .career-section .career-column {
  flex: 1;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 1rem;
}
.page-director .career-section .career-column h3 {
  background-color: #1976d2;
  color: #fff;
  padding: 0.8rem 1rem;
  font-size: 20px;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.page-director .career-section .career-column .career-table {
  width: 100%;
  border-collapse: collapse;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}
.page-director .career-section .career-column .career-table td {
  padding: 0.8rem 0;
  border-bottom: 1px solid #ddd;
}
.page-director .career-section .career-column .career-table tr:last-child td {
  border-bottom: none;
}
.page-director .hours-section {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width:599px) {
  .page-director .hours-section {
    width: 100%;
  }
}
.page-director .hours-section .hours-table .hours-image {
  width: 100%;
}

.news-single {
  margin: 0 auto;
  margin-top: 80px;
  padding: 40px 70px;
}
@media screen and (max-width:599px) {
  .news-single {
    padding: 20px;
  }
}

.recruit-page {
  width: 100%;
  margin: 0 auto;
  padding: 96px 160px;
}
@media screen and (max-width:599px) {
  .recruit-page {
    padding: 20px;
  }
}
.recruit-page section {
  margin-bottom: 30px;
}
.recruit-page h2, .recruit-page h3 {
  font-weight: 500;
}
.recruit-page .recruit-form {
  margin-top: 40px;
}
.recruit-page .recruit-form .wpcf7-form-control {
  width: 100%;
  max-width: 700px;
  margin-bottom: 1rem;
  box-sizing: border-box;
}
.recruit-page .recruit-form input[type=text],
.recruit-page .recruit-form input[type=email],
.recruit-page .recruit-form input[type=tel],
.recruit-page .recruit-form input[type=number],
.recruit-page .recruit-form textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.recruit-page .recruit-form input[type=text]:focus,
.recruit-page .recruit-form input[type=email]:focus,
.recruit-page .recruit-form input[type=tel]:focus,
.recruit-page .recruit-form input[type=number]:focus,
.recruit-page .recruit-form textarea:focus {
  outline: none;
  border-color: #2a6f97;
}
.recruit-page .recruit-form textarea {
  min-height: 120px;
  resize: vertical;
}
.recruit-page .recruit-form .wpcf7-list-item {
  margin-right: 0.75rem;
}
.recruit-page .recruit-form input.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-width: 212px;
  height: 48px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #e77465;
  color: #fff;
}
.recruit-page .recruit-form input.wpcf7-submit:hover {
  background-color: #fff;
  border-color: #e77465;
  color: #e77465;
  transform: translateY(2px);
}
.recruit-page .recruit-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.recruit-page .recruit-table th, .recruit-page .recruit-table td {
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: top;
  font-size: 16px;
}
.recruit-page .recruit-table th {
  width: 30%;
  background-color: #e6e6e6;
  text-align: left;
}
/*# sourceMappingURL=styles.css.map */