@charset "utf-8";

/* ==================================================
   Hero Section
================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  /* display: flex; */
  justify-content: center;
  /* align-items: center; */
  /* text-align: center; */
  color: #fff;
}

.hero-overlay {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: auto; */
  /* Fallback image if generative AI failed or placeholder */
  /* background: url('../images/hero-bg.jpg') no-repeat center center/cover; */
  /* z-index: 1; */
}

.hero-overlay video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-overlay::after {
  /*  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);*/
  /* Slight darken for text readability */
}

.hero-content {
  position: absolute;
  z-index: 2;
  animation: fadeIn 2s ease;
  left: 0;
  right: 0;
  top: 33vw;
  width: 27vw;
  bottom: 0;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-family: var(--font-en);
  font-size: 8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: var(--font-base);
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  margin-top: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  text-align: center;
}

.scroll-indicator span {
  display: block;
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}

.scroll-line {
  width: 1px;
  height: 80px;
  background-color: #fff;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Track */
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(200%);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==================================================
   Concept Section
================================================== */
.concept-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.concept-image {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.concept-image img {
  width: 100%;
  height: auto;
  transition: transform 0.8s;
}

.concept-content:hover .concept-image img {
  transform: scale(1.05);
}

.concept-text {
  flex: 1;
}

.concept-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  margin-bottom: 40px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--color-main);
}

.concept-desc {
  line-height: 2.2;
  color: #666;
  text-align: justify;
}


/* ==================================================
   Menu Section
================================================== */
.menu-section {
  background-color: var(--color-bg-secondary);
}

.menu-cards {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

.menu-card {
  flex: 1;
  background: #fff;
  padding: 40px 27px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s;
  position: relative;
  border: 1px solid transparent;
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-main);
}

.menu-card-featured {
  border: 1px solid var(--color-main);
  background: linear-gradient(to bottom, #fff, #fffaf0);
}

.menu-card-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-main);
  color: #fff;
  font-family: var(--font-en);
  font-size: 1.2rem;
  padding: 5px 15px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.menu-card-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.menu-card-price {
  font-family: var(--font-en);
  font-size: 3rem;
  color: var(--color-main);
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.menu-card-price .tax {
  font-size: 1.2rem;
  color: #999;
  font-family: var(--font-base);
  margin-left: 5px;
}

.menu-card-list {
  text-align: left;
  font-size: 1.4rem;
  color: #666;
}

.menu-card-list li {
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.menu-card-list li::before {
  content: '•';
  color: var(--color-main);
  position: absolute;
  left: 0;
  top: 0;
}

/* Option Menu */
.menu-option {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 8px;
}

.menu-option-title {
  text-align: center;
  font-size: 2rem;
  font-family: var(--font-serif);
  margin-bottom: 40px;
}

.menu-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px;
}

.menu-option-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 5px;
}

.menu-option-price {
  font-family: var(--font-en);
  font-size: 1.6rem;
}

.menu-note {
  text-align: right;
  font-size: 1.2rem;
  color: #999;
  margin-top: 30px;
}


/* ==================================================
   Staff Section
================================================== */
.staff-card {
  display: flex;
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.staff-image {
  flex: 0 0 40%;
}

.staff-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-info {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.staff-name-en {
  font-family: var(--font-en);
  font-size: 3rem;
  color: var(--color-main);
  margin-bottom: 5px;
}

.staff-name-jp {
  font-size: 1.4rem;
  margin-bottom: 30px;
  letter-spacing: 0.2em;
}

.staff-message {
  line-height: 2.4;
  font-family: var(--font-hand);
  font-size: 1.8rem;
  color: #555;
}


/* ==================================================
   Access Section
================================================== */
.access-section {
  background-color: var(--color-bg-secondary);
}

.access-content {
  display: flex;
  gap: 40px;
}

.access-info {
  flex: 1;
}

.access-table {
  width: 100%;
}

.access-table th {
  width: 30%;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
  font-weight: 500;
  color: #333;
}

.access-table td {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #666;
}

.access-map {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


/* ==================================================
   Contact Section
================================================== */
.contact-section {
  text-align: center;
}

.contact-lead {
  font-size: 1.6rem;
  margin-bottom: 50px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 100px;
  border: 1px solid #ccc;
  transition: all 0.3s;
  color: var(--color-text);
}

.btn-tel {
  background-color: #fff;
  border-color: var(--color-text);
}

.btn-web {
  background-color: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.btn-tel:hover {
  background-color: #f9f9f9;
}

.btn-web:hover {
  background-color: #444;
}

.btn-icon {
  font-size: 3rem;
  margin-right: 20px;
}

.btn-text {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.btn-label {
  font-size: 1.2rem;
  margin-bottom: 5px;
  opacity: 0.8;
}

.btn-number {
  font-size: 2.2rem;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}


/* ==================================================
   COTA Section
================================================== */
.cota-section {}

.cota-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 60px;
}

.cota-image {
  flex: 1;
}

.cota-image img {
  border-radius: 4px;
}

.cota-text {
  flex: 1;
}

.cota-title {
  font-size: 2.4rem;
  font-family: var(--font-en);
  margin-bottom: 20px;
}

.cota-desc {
  line-height: 2;
  color: #666;
}



/* contact */

/* ==================================================
   Page Title
================================================== */
.page-title-area {
  height: 40vh;
  min-height: 300px;
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 80px;
}

.page-title-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.page-title-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-title {
  font-family: var(--font-en);
  font-size: 5rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}

/* ==================================================
   Contact Form
================================================== */
#contact .contact-form-section {
  padding-bottom: 60px;
}

#contact .form-lead {
  text-align: center;
  margin-bottom: 60px;
}

#contact .contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

#contact .form-item {
  margin-bottom: 30px;
}

#contact .form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: var(--font-base);
}

#contact .required {
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  font-size: 1.1rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 10px;
  vertical-align: middle;
}

#contact .form-input input,
#contact .form-input textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  box-sizing: border-box;
  font-size: 1.6rem;
  transition: border-color 0.3s;
}

#contact .form-input input:focus,
#contact .form-input textarea:focus {
  border-color: var(--color-main);
  outline: none;
}

#contact .form-input textarea {
  height: 200px;
  resize: vertical;
}

#contact .form-submit {
  text-align: center;
  margin-top: 50px;
}

#contact .btn-submit {
  display: inline-block;
  background-color: var(--color-text);
  color: #fff;
  padding: 20px 80px;
  border: none;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}

#contact .btn-submit.back {
  background-color: #8f8686;
}

#contact .btn-submit:hover {
  background-color: var(--color-main);
  opacity: 1;
}


#contact .wpcf7-form {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

/* ==================================================
   Responsive
================================================== */
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 3.6rem;
  }

  #contact .contact-form {
    padding: 30px 20px;
    width: 100%;
    box-shadow: none;
    box-sizing: border-box;
  }

  #contact .form-input input,
  #contact .form-input textarea {
    font-size: 1.4rem;
  }

  #contact .btn-submit {
    width: 100%;
    padding: 15px;
  }
}