@charset "UTF-8";
.pcView {
  display: block !important;
}
@media (max-width: 568px) {
  .pcView {
    display: none !important;
  }
}

.spView {
  display: none !important;
}
@media (max-width: 568px) {
  .spView {
    display: block !important;
  }
}

body,
h1,
h2,
p,
ul,
li,
a,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  color: inherit;
}

html {
  font-size: 16px;
}

div,
ul {
  display: block;
}

img {
  display: block;
  width: 100%;
  margin: auto;
}

body {
  font-family: "Zen Kaku Gothic New", serif;
  line-height: 1.8;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
}

body.no-scroll {
  overflow: hidden;
  /* スクロールを防止 */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 568px) {
  header {
    padding: 10px 0;
  }
}

.logo {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 568px) {
  .logo {
    max-width: 120px;
    margin: 0;
  }
}

/* ハンバーガーの基本スタイル */
.hamburger {
  display: none;
}
@media (max-width: 568px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    z-index: 1000;
    right: 10px;
    top: 14px;
    transition: transform 0.5s ease-in-out;
  }
}
.hamburger.active {
  transform: rotate(360deg);
}

.hamburger span {
  display: block;
  width: 80%;
  height: 2px;
  background: gray;
  border-radius: 2px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* ハンバーガーがアクティブな状態 (×印) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ナビゲーションリンクのスタイル */
.nav-links {
  display: flex;
  gap: 30px;
}
@media (max-width: 568px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 45px;
    right: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    padding-top: 50px;
  }
}

.nav-links.active {
  display: flex;
}

.nav-links ul {
  display: flex;
  gap: 30px;
  margin: 20px auto 0;
  align-items: center;
  list-style: none;
}
@media (max-width: 568px) {
  .nav-links ul {
    flex-direction: column;
  }
}

.nav-links li {
  margin-bottom: 10px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
}

.nav-links a {
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #003f8c;
}

/* Main Visual */
section {
  padding: 60px 0;
  background-color: #ffffff;
}

.secyellow {
  background: linear-gradient(135deg, #FEF060, #E9F87F);
}

#main-visual {
  position: relative;
  width: 100vw;
  height: 70vh;
  overflow: hidden;
  background-color: #000;
  padding: 0;
}

#main-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#main-visual .main-copy {
  position: absolute;
  top: 40%;
  left: 16%;
  transform: translate(-50%, -50%);
  color: #00338b;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 2px 2px 4px #ffffff, -2px -2px 4px #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  background-color: rgba(255, 255, 255, 0.7607843137);
  padding: 10px 30px;
}
@media (max-width: 568px) {
  #main-visual .main-copy {
    font-size: 2rem;
    left: 0;
    right: 0;
  }
}

#main-visual .main-copy.visible {
  opacity: 1;
  transform: translateY(0);
}

#inter {
  padding: 0;
}

/* Sections */
h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #222;
  font-weight: 600;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
@media (max-width: 568px) {
  h2 {
    font-size: 2rem;
  }
}

h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 4px;
  background-color: #0056b3;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-radius: 2px;
}

section p {
  text-align: center;
  margin-bottom: 20px;
  color: #555;
  font-size: 1.1rem;
}

/* Company Info */
.company-info {
  margin: 0 auto;
  max-width: 700px;
  padding: 40px 30px;
}

.company-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.company-info dt {
  font-weight: bold;
  color: #003f8c;
  padding: 10px 0;
  padding-left: 50px;
  border-bottom: 1px solid #b4b4b4;
  font-size: 1rem;
  width: 25%;
  align-items: center;
}
@media (max-width: 568px) {
  .company-info dt {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}

.company-info dd {
  margin-left: 0;
  padding: 10px 0;
  font-size: 1rem;
  border-bottom: 1px solid #b4b4b4;
  color: #444;
  width: 63%;
}
@media (max-width: 568px) {
  .company-info dd {
    width: 100%;
    text-align: center;
  }
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}

.contact-form label {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1rem;
  color: #555;
}

.contact-form button {
  padding: 12px 20px;
  background-color: #0056b3;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #003f8c;
}

/* Footer */
footer {
  background-color: #003f8c;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  color: #ffffff;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}
@media (max-width: 568px) {
  footer .container {
    flex-direction: column;
    flex-flow: column-reverse;
    gap: 20px;
  }
}
footer .container picture {
  width: 80px;
}
@media (max-width: 568px) {
  footer .container picture {
    width: 60px;
  }
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.flex {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
}
@media (max-width: 568px) {
  .flex {
    flex-direction: column;
  }
}
.flex picture {
  width: 40%;
  display: block;
}
@media (max-width: 568px) {
  .flex picture {
    width: 90%;
  }
}
.flex dl {
  width: 45%;
  display: block;
}
@media (max-width: 568px) {
  .flex dl {
    width: 90%;
  }
}
.flex dl dt {
  font-size: 1.7rem;
  margin-bottom: 30px;
  font-weight: bold;
}
@media (max-width: 568px) {
  .flex dl dt {
    text-align: center;
  }
}
.flex dl dd {
  font-size: 1.2rem;
}

#policy div,
#policy ul {
  margin-bottom: 40px;
}
#policy li {
  margin-bottom: 25px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

th,
td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

.second-policy {
  margin-top: 50px;
}
.second-policy a {
  color: #003f8c;
  text-decoration: underline;
}
.second-policy dt {
  font-weight: bold;
  font-size: 120%;
  margin-bottom: 30px;
}
.second-policy dd {
  margin-bottom: 50px;
}/*# sourceMappingURL=styles.css.map */