@charset "UTF-8";
body {
  font-family: "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1,
h2,
h3 {
  color: #0077cc;
}

ul {
  list-style: none;
  padding: 0;
}

.header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  z-index: 100;
  position: fixed;
  width: 98%;
  top: 5px;
  left: 1%;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}
.header .header-inner .logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: "A1 Gothic M", sans-serif;
  gap: 0.5rem;
  color: #0077cc;
}
.header .header-inner .logo img {
  height: 40px;
  width: auto;
}
.header .header-inner .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}
.header .header-inner .menu-toggle .material-icons {
  font-size: 32px;
  color: #333;
}
.header .header-inner .nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header .header-inner .nav ul li {
  padding: 0 10px;
}
.header .header-inner .nav ul a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
}
.header .header-inner .nav ul a:hover {
  color: #007bff;
}

@media (max-width: 768px) {
  .header-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 1rem;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 1;
  }
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .menu-toggle .material-icons {
    font-size: 30px;
  }
  .nav {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.6431372549);
    border-top: 1px solid #ddd;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 99;
  }
  .nav.active {
    max-height: -moz-fit-content;
    max-height: fit-content;
    opacity: 1;
  }
  .nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
    gap: 2px !important;
    margin: 0;
  }
  .nav li {
    width: 100%;
    margin: 0;
    text-align: right;
  }
  .nav a {
    font-size: 16px;
    padding: 0.4rem 0;
    color: #333;
    text-decoration: none;
    display: block;
    width: 100%;
  }
  .nav a:hover {
    color: #007bff;
  }
}
.scroll-offset {
  scroll-margin-top: 100px;
}

.top,
.overview,
.recommendation,
.workplace,
.message,
.about,
.policy {
  padding: 2rem 0;
  background-color: #fff;
  margin-bottom: 1rem;
}
.top .container .title,
.overview .container .title,
.recommendation .container .title,
.workplace .container .title,
.message .container .title,
.about .container .title,
.policy .container .title {
  width: 60%;
}
.top .container .title img,
.overview .container .title img,
.recommendation .container .title img,
.workplace .container .title img,
.message .container .title img,
.about .container .title img,
.policy .container .title img {
  width: 80%;
}
.top .container .title p,
.overview .container .title p,
.recommendation .container .title p,
.workplace .container .title p,
.message .container .title p,
.about .container .title p,
.policy .container .title p {
  color: #0077cc;
}
@media (max-width: 768px) {
  .top .container .title,
  .overview .container .title,
  .recommendation .container .title,
  .workplace .container .title,
  .message .container .title,
  .about .container .title,
  .policy .container .title {
    width: 100%;
  }
  .top .container .title img,
  .overview .container .title img,
  .recommendation .container .title img,
  .workplace .container .title img,
  .message .container .title img,
  .about .container .title img,
  .policy .container .title img {
    width: 100%;
  }
  .top .container .title p,
  .overview .container .title p,
  .recommendation .container .title p,
  .workplace .container .title p,
  .message .container .title p,
  .about .container .title p,
  .policy .container .title p {
    color: #0077cc;
  }
}

.top {
  text-align: center;
  color: #fff;
  height: 80%;
}
.top .background_img {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.top .container {
  position: relative;
  z-index: 10;
  margin-top: 300px;
  max-height: 400px;
}
.top .container h1 {
  font-size: 2rem;
  font-family: "A1 Gothic M", sans-serif;
}
.top .container ul {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .top .background_img {
    width: 100%;
    aspect-ratio: 4/6;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .top .container {
    position: relative;
    z-index: 10;
    margin-top: 240px;
  }
  .top .container h1 {
    font-size: 1.2rem;
    font-family: "A1 Gothic M", sans-serif;
    background-color: rgba(255, 255, 255, 0.767);
    margin-bottom: 20px;
  }
  .top .container ul {
    margin-top: 0px;
  }
  .top .container .catch {
    margin-top: 10px;
  }
}

.overview .container {
  display: flex;
  align-items: flex-start;
}
.overview .container .title {
  width: 40%;
}
.overview .container .title img {
  width: 80%;
}
.overview .container .title p {
  color: #0077cc;
}
.overview .container .caption {
  width: 60%;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .overview .container {
    display: block;
  }
  .overview .container .title {
    width: 100%;
  }
  .overview .container .title img {
    width: 80%;
  }
  .overview .container .title p {
    color: #0077cc;
  }
  .overview .container .caption {
    width: 90%;
    margin: 10px auto;
    padding-top: 20px;
  }
}

.recommendation {
  background: #4587BE;
  padding: 2rem 1rem;
  overflow: hidden;
}
.recommendation h2 {
  font-size: 1.5rem;
  font-family: "A1 Gothic M", sans-serif;
  text-align: center;
  margin-bottom: 1rem;
  color: white;
}
.recommendation .recommend-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.recommendation .recommend-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scrollLeft 30s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
.recommendation .recommend-list li {
  flex: 0 0 auto;
  background: #fff;
  padding: 1rem 4rem;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  font-size: 1rem;
  font-family: "A1 Gothic M", sans-serif;
}
.recommendation .recommend-desc {
  text-align: center;
  margin-top: 1.5rem;
  color: white;
  font-size: 0.9rem;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.points {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.points li {
  width: 30%;
  background-color: #fff;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  font-family: "A1 Gothic M", sans-serif;
  line-height: 1.6;
  color: #0077cc;
}
@media (max-width: 768px) {
  .points {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .points li {
    width: 80%;
    background-color: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-family: "A1 Gothic M", sans-serif;
    line-height: 1.6;
    color: #0077cc;
  }
}

.workplace .container .title {
  width: 60%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .workplace .container .title {
    width: 100%;
    margin-bottom: 20px;
  }
  .workplace .container .title img {
    width: 100%;
  }
}

.workplace-block,
.policy-block {
  background-color: #f1f7fd;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.workplace-block {
  margin: 50px 20px;
}
.workplace-block h3 {
  margin: 20px auto;
  font-size: 1.5rem;
  text-align: center;
  font-family: "A1 Gothic M", sans-serif;
  padding-bottom: 5px;
  border-bottom: #DBEFFF 5px solid;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .workplace-block {
    margin: 20px 0;
  }
}

.block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.block-grid .block-item {
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.block-grid .block-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
}
.block-grid .block-item .text-block h4 {
  margin: 0 0 0.5rem;
  color: #0077cc;
  font-size: 1.1rem;
  font-family: "A1 Gothic M", sans-serif;
}
.block-grid .block-item .text-block p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.description {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #666;
}

.message {
  background-color: #4587BE;
}
.message .container {
  display: flex;
}
.message .container .title {
  width: 35%;
  padding-left: 20px;
}
.message .container .title .title_img {
  width: 130%;
}
.message .container .title p {
  color: white;
}
.message .container .title .rep-position {
  margin-top: 2rem;
}
.message .container .title .rep-name {
  font-family: "A1 Gothic M", sans-serif;
  font-size: 1.4rem;
}
.message .container .message-right {
  width: 65%;
}
.message .container .message-right .message-block {
  max-height: 8em;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.message .container .message-right .message-block.expanded {
  max-height: 1000px;
}
.message .container .message-right .message-block p {
  color: white;
  line-height: 1.6;
}
.message .container .message-right .message-toggle {
  margin-top: 1rem;
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}
.message .container .message-right .message-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .message .container {
    display: block;
  }
  .message .container .title {
    width: 100%;
    padding-left: 20px;
  }
  .message .container .title .title_img {
    width: 100%;
  }
  .message .container .title p {
    color: white;
  }
  .message .container .title .rep-position {
    margin-top: 2rem;
  }
  .message .container .title .rep-name {
    font-family: "A1 Gothic M", sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .message .container .message-right {
    width: 90%;
    margin: 0 auto;
  }
}

.about .about-text {
  width: 80%;
  margin: 20px auto;
}

.policy .container .policy-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 20px;
}
.policy .container .policy-block .policy-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}
.policy .container .policy-block .policy-item .policy-title {
  flex: 0 0 30%;
}
.policy .container .policy-block .policy-item .policy-title h3 {
  font-size: 1.2rem;
  font-family: "A1 Gothic M", sans-serif;
  margin: 0;
  color: #0077cc;
}
.policy .container .policy-block .policy-item .policy-text {
  flex: 1;
}
.policy .container .policy-block .policy-item .policy-text p {
  margin: 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .policy .container .policy-block .policy-item {
    flex-direction: column;
  }
  .policy .container .policy-block .policy-item .policy-title,
  .policy .container .policy-block .policy-item .policy-text {
    flex: none;
    width: 100%;
  }
}

.voices {
  background-color: #fff;
  padding: 2rem 0;
}
.voices .container .title {
  width: 60%;
}
.voices .container .title img {
  width: 80%;
}
.voices .container .title p {
  color: #0077cc;
}
@media (max-width: 768px) {
  .voices .container .title {
    width: 100%;
  }
  .voices .container .title img {
    width: 100%;
  }
  .voices .container .title p {
    color: #0077cc;
  }
}
.voices .description {
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #333;
  text-align: center;
}
.voices .interview-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 1rem;
}
.voices .interview-blocks .interview-item {
  display: flex;
  gap: 2rem;
  border-radius: 12px;
  margin: 20px;
  margin-bottom: 0;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  background-color: #eff7fe;
}
.voices .interview-blocks .interview-item .interview-profile {
  flex: 0 0 30%;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
}
.voices .interview-blocks .interview-item .interview-profile img {
  width: 70%;
}
.voices .interview-blocks .interview-item .interview-profile strong {
  font-size: 1.5rem;
  color: #0077cc;
}
.voices .interview-blocks .interview-item .interview-content {
  flex: 1;
  padding: 20px 0;
}
.voices .interview-blocks .interview-item .interview-content h5 {
  font-size: 1.4rem;
  font-family: "A1 Gothic M", sans-serif;
  margin-bottom: 0.5rem;
  color: #0077cc;
}
.voices .interview-blocks .interview-item .interview-content p {
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .voices .interview-blocks .interview-item {
    flex-direction: column;
  }
  .voices .interview-blocks .interview-item .interview-profile,
  .voices .interview-blocks .interview-item .interview-content {
    flex: none;
    width: 100%;
  }
}
.voices .note {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}

.about_job {
  padding: 2rem 0;
}
.about_job .container .title {
  width: 60%;
  margin-bottom: 20px;
}
.about_job .container .title img {
  width: 80%;
}
.about_job .container .title p {
  color: #0077cc;
  padding-left: 10px;
}
.about_job .container h3 {
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  font-size: 1.5rem;
  font-family: "A1 Gothic M", sans-serif;
  background-color: #4587BE;
  color: white;
  border-radius: 5px;
}
.about_job .container .text_area {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 60px;
}
.about_job .container .text_area p {
  width: 70%;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(128, 128, 128, 0.1843137255);
}
.about_job .container .text_area img {
  width: 30%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .about_job .container .title {
    width: 100%;
  }
  .about_job .container .title img {
    width: 100%;
  }
  .about_job .container .title p {
    color: #0077cc;
  }
  .about_job .container h3 {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    font-size: 1.5rem;
    font-family: "A1 Gothic M", sans-serif;
    background-color: #4587BE;
    color: white;
    border-radius: 5px;
  }
  .about_job .container .text_area {
    display: block;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 60px;
  }
  .about_job .container .text_area p {
    width: 90%;
    margin: auto;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(128, 128, 128, 0.1843137255);
  }
  .about_job .container .text_area img {
    display: block;
    text-align: center;
    width: 90%;
    margin: 10px auto 10px auto;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.recruit {
  background-color: #f1f7fd;
  padding: 2rem 0;
}
.recruit .container .title {
  width: 60%;
}
.recruit .container .title img {
  width: 80%;
}
.recruit .container .title p {
  color: #0077cc;
  padding-left: 10px;
}
.recruit .container .industry-block {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.recruit .container .industry-block .industry-title {
  font-size: 1.6rem;
  color: #0077cc;
  margin: 2rem 0 0.5rem 1rem;
  font-family: "A1 Gothic M", sans-serif;
}
.recruit .container .industry-block .industry-comment {
  margin-top: 1rem;
  margin-left: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}
.recruit .container .industry-block .job-vertical-table {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.recruit .container .industry-block .job-vertical-table dl {
  margin: 0;
  padding: 0;
}
.recruit .container .industry-block .job-vertical-table dl .row {
  display: flex;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
.recruit .container .industry-block .job-vertical-table dl .row:last-child {
  border-bottom: none;
}
.recruit .container .industry-block .job-vertical-table dl .row dt {
  width: 30%;
  font-family: "A1 Gothic M", sans-serif;
  color: #0077cc;
}
.recruit .container .industry-block .job-vertical-table dl .row dd {
  width: 70%;
  margin: 0;
  color: #333;
}
.recruit .container .industry-block .job-vertical-table .detail-link-btn {
  display: block;
  margin-top: 1rem;
  background-color: #0077cc;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}
.recruit .container .industry-block .job-vertical-table .detail-link-btn:hover {
  background-color: #005999;
}
@media (max-width: 768px) {
  .recruit .container .title {
    width: 100%;
  }
  .recruit .container .title img {
    width: 100%;
  }
  .recruit .container .title p {
    color: #0077cc;
  }
}
@media (max-width: 768px) {
  .recruit .container .industry-block {
    width: 95%;
  }
  .recruit .industry-block .job-vertical-table dl .row {
    flex-direction: column;
  }
  .recruit .industry-block .job-vertical-table dl .row dt,
  .recruit .industry-block .job-vertical-table dl .row dd {
    width: 100%;
  }
  .recruit .industry-block .job-vertical-table dl .row dt {
    margin-bottom: 0.2rem;
  }
}

.flow {
  background-color: #fff;
  padding: 2rem 0;
}
.flow .container .title {
  width: 60%;
}
.flow .container .title img {
  width: 80%;
}
.flow .container .title p {
  color: #0077cc;
  padding-left: 10px;
}
.flow .container .steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.flow .container .steps .step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #f1f7fd;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.flow .container .steps .step-item .step-number {
  font-size: 1.8rem;
  font-family: "A1 Gothic M", sans-serif;
  color: #0077cc;
  flex-shrink: 0;
  width: 3rem;
}
.flow .container .steps .step-item .step-content h4 {
  font-size: 1.1rem;
  font-family: "A1 Gothic M", sans-serif;
  color: #0077cc;
  margin-bottom: 0.5rem;
}
.flow .container .steps .step-item .step-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: #333;
}
@media (max-width: 768px) {
  .flow .steps .step-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .flow .steps .step-item .step-number {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 768px) {
  .flow .container .title {
    width: 100%;
  }
  .flow .container .title img {
    width: 100%;
  }
  .flow .container .title p {
    color: #0077cc;
  }
}

.qa {
  background-color: #f9f9f9;
  padding: 2rem 0;
}
.qa .container .title {
  width: 60%;
}
.qa .container .title img {
  width: 80%;
}
.qa .container .title p {
  color: #0077cc;
  padding-left: 10px;
  margin-top: -10px;
  margin-bottom: 20px;
}
.qa .container .qa-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.qa .container .qa-blocks .qa-item {
  background-color: #fff;
  border-left: 5px solid #0077cc;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.qa .container .qa-blocks .qa-item .qa-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  font-family: "A1 Gothic M", sans-serif;
  color: #0077cc;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.qa .container .qa-blocks .qa-item .qa-question:hover {
  background-color: #99d5ff;
}
.qa .container .qa-blocks .qa-item .qa-question::after {
  content: "＋";
  float: right;
  font-weight: normal;
  transition: transform 0.3s;
}
.qa .container .qa-blocks .qa-item .qa-question.active::after {
  content: "−";
}
.qa .container .qa-blocks .qa-item .qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
}
.qa .container .qa-blocks .qa-item .qa-answer p {
  font-size: 0.95rem;
  color: #333;
  margin: 0.75rem 0;
}
.qa .container .qa-blocks .qa-item .qa-answer.open {
  max-height: 300px;
}
@media (max-width: 768px) {
  .qa .container .title {
    width: 100%;
  }
  .qa .container .title img {
    width: 100%;
  }
  .qa .container .title p {
    color: #0077cc;
  }
}

.contact {
  background-color: #fff;
  padding: 0;
}
.contact .container .title {
  width: 100%;
  text-align: left;
}
.contact .container .title img {
  width: 30%;
}
.contact .container .title p {
  margin-top: -10px;
  margin-left: 20px;
  color: #0077cc;
}
.contact .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact .contact-info .contact-desc {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.contact .contact-info .contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 400px;
}
.contact .contact-info .contact-buttons .contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #0077cc;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: "A1 Gothic M", sans-serif;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}
.contact .contact-info .contact-buttons .contact-button .material-icons {
  font-size: 1.3rem;
}
.contact .contact-info .contact-buttons .contact-button:hover {
  background-color: #005999;
}
.contact .contact-info .form-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.contact .contact-info .form-wrapper iframe {
  width: 100%;
  max-width: 640px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .contact .contact-buttons {
    width: 100%;
    padding: 0 1rem;
  }
  .contact .form-wrapper iframe {
    height: 1000px;
  }
}
@media (max-width: 768px) {
  .contact .container .title {
    width: 100%;
  }
  .contact .container .title img {
    width: 60%;
  }
  .contact .container .title p {
    color: #0077cc;
  }
}

.footer {
  width: 98%;
  margin: 10px auto;
  border-radius: 5px;
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #0077cc;
  color: #fff;
}
.footer a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.footer a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }
  .site-title {
    font-size: 1.2rem;
  }
  .hero {
    padding: 3rem 1rem;
  }
}
.pos_top {
  position: relative;
  height: 60vw;
  min-height: 610px;
  padding: 0;
}
.pos_top .pos_img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
}
.pos_top .text_zone {
  position: relative;
  width: 100%;
  height: 100%;
}
.pos_top .text_zone h1 {
  position: absolute;
  font-size: 5rem;
  font-family: "A1 Gothic M", sans-serif;
  line-height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 11;
  padding: 10px 80px 10px 40px;
  top: 100px;
  right: 0;
}
.pos_top .text_zone h3 {
  position: absolute;
  font-size: 2rem;
  font-family: "A1 Gothic M", sans-serif;
  background-color: rgba(255, 255, 255, 0.8);
  line-height: 40px;
  z-index: 11;
  padding: 0 80px 0 40px;
  top: 220px;
  right: 0;
}
.pos_top .text_zone p {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 20px;
  z-index: 11;
  background-color: rgba(255, 255, 255, 0.6);
  width: 60%;
}

@media (max-width: 768px) {
  .pos_top {
    position: relative;
    height: 60vw;
    min-height: 610px;
    padding: 0;
  }
  .pos_top .pos_img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 10;
  }
  .pos_top .text_zone {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .pos_top .text_zone h1 {
    position: absolute;
    font-size: 2.4rem;
    font-family: "A1 Gothic M", sans-serif;
    line-height: 40px;
    background-color: rgb(255, 255, 255);
    z-index: 11;
    padding: 10px 20px 10px 20px;
    top: 100px;
    right: 0;
  }
  .pos_top .text_zone h3 {
    position: absolute;
    font-size: 1rem;
    font-family: "A1 Gothic M", sans-serif;
    background-color: rgb(255, 255, 255);
    line-height: 20px;
    z-index: 11;
    padding: 0 10px 0 20px;
    top: 170px;
    right: 0;
  }
  .pos_top .text_zone p {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 20px;
    z-index: 11;
    background-color: rgba(255, 255, 255, 0.6);
    width: 80%;
    font-size: 14px;
  }
}/*# sourceMappingURL=top.css.map */