* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Noto Sans JP", Arial, sans-serif;
  color: #222;
  background: #f7f8fa;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: #3fa3d1;
  color: #fff;
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(63, 163, 209, 0.2);
  transition: all 0.3s ease;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.site-header .header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header .header-left img {
  vertical-align: middle;
  filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff) drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff) drop-shadow(1px 1px 0 #fff) drop-shadow(-1px -1px 0 #fff) drop-shadow(-1px 1px 0 #fff) drop-shadow(1px -1px 0 #fff);
}
.site-header .site-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.site-header .menu-toggle {
  display: none;
}
.site-header .hamburger-button {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
}
.site-header .hamburger-button .hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.site-header .hamburger-button:hover .hamburger-line {
  background-color: #ffb400;
}
.site-header .menu-toggle:checked + .hamburger-button .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.site-header .menu-toggle:checked + .hamburger-button .hamburger-line:nth-child(2) {
  opacity: 0;
}
.site-header .menu-toggle:checked + .hamburger-button .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.site-header .main-navigation .nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.site-header .main-navigation .nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .main-navigation .nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.site-header .main-navigation .nav-menu li a:hover {
  color: #ffb400;
}

.site-main {
  margin-top: 100px;
  flex: 1;
}

.hero-section {
  background: linear-gradient(rgba(12, 133, 182, 0.7), rgba(12, 133, 182, 0.5)), url("../image/mainimage.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 6rem 0 3rem 0;
  text-align: left;
}
.hero-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero-section p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}
.hero-section .btn-primary {
  background: #3fa3d1;
  color: #fff;
  border-radius: 4px;
  padding: 1em 2em;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.hero-section .btn-primary:hover {
  background: #ffb400;
  color: #222;
}

.services-section {
  background: #f7f8fa;
  padding: 3rem 0;
}
.services-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #3fa3d1;
}
.services-section .services-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.services-section .services-grid .service-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(63, 163, 209, 0.07);
  padding: 2rem 1.5rem;
  text-align: left;
  width: 310px;
}
.services-section .services-grid .service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.services-section .services-grid .service-item h3 {
  font-size: 1.2rem;
  color: #3fa3d1;
  margin-bottom: 1rem;
}
.services-section .services-grid .service-item p {
  color: #222;
  font-size: 0.98rem;
}
.services-section .services-grid .service-item ul {
  margin-left: 1.5rem;
  margin-top: 1rem;
  padding-left: 0;
}
.services-section .services-grid .service-item ul li {
  margin-bottom: 0.5rem;
  color: #222;
  font-size: 0.95rem;
}

.about-section {
  background: #fff;
  padding: 4rem 0;
}
.about-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #3fa3d1;
}
.about-section .about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-section .about-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}
.about-section .company-info {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(63, 163, 209, 0.07);
  padding: 2rem 1.5rem;
  max-width: 600px;
  margin: 2rem auto 0;
}
.about-section .company-info .info-row {
  display: flex;
  margin-bottom: 1rem;
}
.about-section .company-info .info-row .label {
  font-weight: bold;
  width: 120px;
  color: #3fa3d1;
}
.about-section .company-info .info-row .value {
  flex: 1;
}

.access-section {
  background: #f7f8fa;
  padding: 4rem 0;
}
.access-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #3fa3d1;
}
.access-section .access-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.access-section .access-content .access-info {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(63, 163, 209, 0.07);
  padding: 2rem 1.5rem;
  text-align: center;
}
.access-section .access-content .access-info h3 {
  color: #3fa3d1;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.access-section .access-content .access-info p {
  line-height: 1.8;
}

.contact-section {
  background: #f7f8fa;
  padding: 4rem 0;
}
.contact-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-section .section-title .title-main {
  font-size: 2.5rem;
  color: #3fa3d1;
  margin-bottom: 1rem;
}
.contact-section .section-title p {
  font-size: 1.1rem;
  color: #222;
}
.contact-section .row {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.contact-section .contact-form-container {
  max-width: 900px;
  margin: 0 auto;
}
.contact-section .contact-form-area {
  background: #fff;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(63, 163, 209, 0.07);
}
.contact-section .form-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 2rem;
}
.contact-section .form-row label {
  min-width: 200px;
  font-weight: bold;
  color: #222;
  padding-top: 0.8rem;
  flex-shrink: 0;
}
.contact-section .form-row label span {
  color: #ff6b6b;
  margin-left: 0.5rem;
}
.contact-section .form-row .input-area {
  flex: 1;
}
.contact-section .form-row .input-area .form-controller {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.contact-section .form-row .input-area .form-controller:focus {
  outline: none;
  border-color: #3fa3d1;
  box-shadow: 0 0 0 2px rgba(63, 163, 209, 0.2);
}
.contact-section .form-row .input-area textarea.form-controller {
  resize: vertical;
  min-height: 120px;
}
.contact-section .form-row .input-area .error-message {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}
.contact-section .form-row.radio-row {
  align-items: flex-start;
}
.contact-section .form-row.radio-row .input-area .radio-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}
.contact-section .form-row.radio-row .input-area .radio-options .radio-item {
  display: flex;
  align-items: center;
}
.contact-section .form-row.radio-row .input-area .radio-options .radio-item input[type=radio] {
  margin-right: 0.5rem;
}
.contact-section .form-row.radio-row .input-area .radio-options .radio-item label {
  font-weight: normal;
  margin-bottom: 0;
  cursor: pointer;
  padding-top: 0;
  min-width: auto;
}
.contact-section .form-submit {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.contact-section .btn.btn-primary {
  background: #3fa3d1;
  color: #fff;
  border-radius: 4px;
  padding: 1em 2em;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.contact-section .btn.btn-primary:hover {
  background: #ffb400;
  color: #222;
}
.contact-section .btn.btn-primary {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
}
.contact-section .text-center {
  text-align: center;
}
.contact-section .col-12 {
  width: 100%;
}
.contact-section .contact-info-section {
  margin-top: 3rem;
  text-align: center;
}
.contact-section .contact-info-section .contact-info {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(63, 163, 209, 0.07);
  padding: 2rem 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}
.contact-section .contact-info-section .contact-info h3 {
  color: #3fa3d1;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.contact-section .contact-info-section .contact-info .phone-number {
  font-size: 2rem;
  font-weight: bold;
  color: #3fa3d1;
  margin: 1rem 0;
}
.contact-section .contact-info-section .contact-info .emergency-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

.site-footer {
  background: #3fa3d1;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: auto;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .site-header .header-left .site-title {
    font-size: 1.8rem;
  }
  .site-header .hamburger-button {
    display: flex !important;
  }
  .site-header .main-navigation .menu-toggle:checked ~ .main-navigation .nav-overlay,
  .site-header .main-navigation .nav-overlay {
    display: none;
  }
  .site-header .main-navigation .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #3fa3d1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 6rem 0 2rem 0;
    margin: 0;
    gap: 0;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .site-header .main-navigation .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-header .main-navigation .nav-menu li a {
    display: block;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
  }
  .site-header .main-navigation .nav-menu li a:hover {
    background-color: rgba(255, 180, 0, 0.1);
    border-left-color: #ffb400;
    color: #ffb400;
  }
  .site-header .menu-toggle:checked ~ .main-navigation .nav-menu {
    right: 0;
  }
  .site-header .menu-toggle:checked ~ .main-navigation .nav-overlay {
    display: block;
  }
  .hero-section {
    text-align: center;
  }
  .hero-section h2 {
    font-size: 2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
  .access-content {
    grid-template-columns: 1fr;
  }
  .contact-section .form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-section .form-row label {
    min-width: auto;
    padding-top: 0;
  }
  .contact-section .form-row.radio-row .input-area .radio-options {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .site-header .main-navigation .nav-menu {
    gap: 1.5rem;
  }
  .site-header .main-navigation .nav-menu li a {
    font-size: 0.95rem;
  }
}

/*# sourceMappingURL=style.css.map */
