@charset "utf-8";


:root {
  --color-cyan: #00aecb;
  --color-lblue: #dce6e7;
  --color-dblue: #171c61;
  --color-yellow: #ffd100;
}

/* REHANOWA 2026 改修用 追加CSS */
.prototype-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.section-title-box {
  background: #fff;
  display: inline-block;
  padding: 10px 40px;
  margin-bottom: 50px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-cyan);
}

.section-title-box h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.section-title-box .sub {
  font-size: 18px;
  font-weight: normal;
  margin-left: 10px;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
}

.location-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}

.location-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.location-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.logo-circle {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle img,
.logo-circle svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.title-group {
  flex-grow: 1;
}

.title-group .subtitle {
  font-size: 12px;
  margin: 0;
  line-height: 1.2;
}

.title-group .main-title {
  font-size: 28px;
  margin: 0;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 5px;
}

.main-title .suffix {
  font-size: 14px;
  font-weight: normal;
  margin-left: 5px;
}

.color-cyan {
  color: #00aecb;
}

.color-navy {
  color: #1A1A4B;
}

.location-card .card-body p {
  font-size: 14px;
  margin-bottom: 10px;
}

.tags-container {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: auto;
}

.tag {
  display: inline-block;
  padding: 5px 15px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  border-radius: 0;
}

.bg-cyan {
  background: #00aecb;
}

.bg-pink {
  background: #e60064;
}

.bg-navy {
  background: #1A1A4B;
}

.location-card .card-body hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 15px 0;
}

.map-container {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
}

.map-toggle-btn {
  width: 100%;
  background: #FFD200;
  color: #333;
  border: none;
  padding: 15px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.map-toggle-btn:hover {
  background: #e6bd00;
}

/* Contact Section Styles - Namespaced */
.contact-section {
  background: #fff;
  padding: 80px 0;
}

.contact-section .contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-section .contact-icon {
  width: 40px;
  height: 40px;
  background: #00aecb;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section .contact-title {
  color: #00aecb;
  font-size: 32px;
  letter-spacing: 2px;
  margin: 0;
  font-weight: bold;
}

.contact-section .contact-subtitle {
  font-size: 14px;
  margin: 0;
  font-weight: bold;
  letter-spacing: 1px;
  color: #333;
}

.contact-section .contact-form .form-item {
  margin-bottom: 25px;
}

.contact-section .contact-form input[type="text"],
.contact-section .contact-form input[type="email"],
.contact-section .contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #00aecb;
  box-sizing: border-box;
  font-size: 16px;
  border-radius: 5px;
  background: #fff;
}

.contact-section .contact-form input::placeholder,
.contact-section .contact-form textarea::placeholder {
  color: #999;
}

.contact-section .form-item.required-field {
  position: relative;
}

.contact-section .required-mark {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff3333;
  font-size: 80%;
  pointer-events: none;
  transition: opacity 0.2s;
}

.contact-section .form-item.required-field input {
  padding-left: 45px;
}

.contact-section .form-item.required-field input:not(:placeholder-shown) {
  padding-left: 20px;
}

.contact-section .form-item.required-field input:not(:placeholder-shown)~.required-mark {
  opacity: 0;
}

.contact-section .privacy-box {
  background: #f5f5f5;
  padding: 30px;
  margin-bottom: 30px;
  font-size: 14px;
  height: 150px;
  overflow-y: scroll;
  border: 1px solid #ddd;
}

.contact-section .note-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-section .checkbox-area {
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.contact-section .checkbox-area input[type="checkbox"] {
  transform: scale(1.5);
  margin-right: 10px;
  accent-color: #00aecb;
}

.contact-section .submit-btn {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  background: #00aecb;
  color: #fff;
  border: none;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(0, 174, 203, 0.3);
  transition: all 0.3s ease;
}

.contact-section .submit-btn:hover {
  background: #008ba3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 174, 203, 0.4);
}

/* Hide redundant page title on Contact page */
.page-contact .page-title {
  display: none !important;
}