@charset "UTF-8";
body {
  font-family: "Noto Serif JP", serif;
  background-color: #FFFFFF;
  color: #333333;
  margin: 0;
  padding: 0;
}

.margin {
  padding-top: 80px;
}

iframe {
  width: 100vw;
  height: 100vh;
  border: none;
  display: block;
  background-color: #988787;
}

.wrapper {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 2%;
}

.sec-pd {
  padding-block: 100px;
  padding-inline: 5%;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .sec-pd {
    padding-block: 70px;
  }
}
.sec-pd .section-title {
  margin-block: 25px;
}
.sec-pd .section-title h2 {
  font-size: 4.8rem;
}
.sec-pd .section-title h3 {
  font-size: 1.6rem;
}
.sec-pd .section-text {
  margin-block: 25px;
}

.font-inter {
  font-family: "Inter", sans-serif;
}

.icon {
  width: 30px;
}

.page .main-title {
  padding-block: 21px;
}
.page .main-title p {
  margin-top: initial;
  font-family: "Noto Serif JP", serif;
}

.main-title {
  background: linear-gradient(90deg, #064180 50%, #FFFFFF);
  border-radius: 5px;
  width: 100%;
}
.main-title p {
  font-size: 4.8rem;
  color: #FFFFFF;
  padding-left: 10%;
  font-family: "Inter", sans-serif;
}
@media (max-width: 768px) {
  .main-title p {
    display: flex;
    flex-direction: column;
  }
}
.main-title p span {
  font-size: 2.4rem;
  padding-left: 10px;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 768px) {
  .main-title p span {
    line-height: 50px;
  }
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  background-color: #064180;
  color: #FFFFFF;
  text-decoration: none;
  padding: 3px;
  border-radius: 100vh;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
  position: relative;
  min-width: 300px;
  height: 56px;
  width: 40%;
  box-shadow: 0 5px 10px rgba(51, 51, 51, 0.5);
}
.btn-view-more .text {
  font-size: 1.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.btn-view-more .arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFFFFF;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}
.btn-view-more .arrow-circle::after {
  content: "";
  width: 15px;
  height: 1px;
  background-color: #333333;
  position: absolute;
  right: 15px;
}
.btn-view-more .arrow-circle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #333333;
  transform: rotate(45deg);
  position: absolute;
  right: 15px;
}

.btn-news-post {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  padding: 3px;
  border-radius: 100vh;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
  padding-right: 5%;
}
.btn-news-post .text {
  font-size: 1.8rem;
  flex: 1;
  text-align: center;
  padding-left: 25px;
}
.btn-news-post .arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFFFFF;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.btn-news-post .arrow-circle::after {
  content: "";
  width: 15px;
  height: 1px;
  background-color: #333333;
  position: absolute;
  right: 15px;
}
.btn-news-post .arrow-circle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #333333;
  transform: rotate(45deg);
  position: absolute;
  right: 15px;
}

.page-background-logo {
  display: flex;
  justify-content: end;
}
.page-background-logo img {
  width: 40%;
  opacity: 0.2;
}

/* 最初は透明にしておく（Triggerクラス） */
.fadeUpTrigger {
  opacity: 0;
}

/* JSでこのクラスが付与されたらアニメーション開始 */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62.5%;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

p {
  font-size: 1.6rem;
  line-height: 160%;
}

html {
  scroll-behavior: smooth;
}

header {
  height: 70px;
  display: flex;
  justify-content: space-between;
  gap: 0px;
  align-items: center;
  padding-inline: 5%;
  position: fixed;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: transform 0.3s; /* 滑らかに動かす */
}
@media (max-width: 768px) {
  header {
    padding-inline: 2%;
  }
}
header .left-header {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  width: 40%;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  header .left-header {
    width: auto;
  }
}
header .left-header .logo {
  display: block;
}
header .left-header .logo img {
  height: 50px;
  width: auto;
  display: block;
}
@media (max-width: 425px) {
  header .left-header .logo img {
    height: 40px;
  }
}
header .left-header h1 {
  margin-top: 25px;
  font-size: 2.2rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  header .left-header h1 {
    display: none;
  }
}
header .left-header h1 span {
  font-size: 1.2rem;
}
header .right-header {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
  width: 60%;
}
header .right-header .btn {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border: 1px #F97316 solid;
  border-radius: 50px;
  background-color: #FFFFFF;
  padding: 0 0 0 20px;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 100;
}
header .right-header .btn:hover {
  background-color: #F97316;
  color: #FFFFFF;
}
header .right-header .btn .btn-icon-wrapper {
  background-color: #F97316;
  padding: 10px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  header .right-header .btn {
    padding: 0;
  }
  header .right-header .btn .btn-text {
    display: none;
  }
  header .right-header .btn .btn-icon-wrapper {
    margin: 0;
  }
}
header .right-header .icon-wrapper {
  background-color: #F97316;
  padding: 10px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  z-index: 100;
  position: relative;
}
header .right-header .icon-wrapper:hover {
  background-color: #064180;
}
header .right-header .toggle-btn {
  width: 50px;
  height: 50px;
  background-color: #064180;
  padding: 10px;
  border-radius: 50px;
  z-index: 100;
  position: relative;
  cursor: pointer;
}
header .right-header .toggle-btn span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 50%;
  border-radius: 10px;
  background-color: #FFFFFF;
  transition: 0.5s ease;
}
header .right-header .toggle-btn span:nth-child(1) {
  top: 30%;
}
header .right-header .toggle-btn span:nth-child(2) {
  top: 48%;
}
header .right-header .toggle-btn span:nth-child(3) {
  top: 65%;
}
header .right-header nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-direction: column;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 90vh;
  border-top-left-radius: 100px;
  background-color: rgba(162, 206, 233, 0.5);
  border: 1px solid #2795D9;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  padding-inline: 5%;
  z-index: 0;
}
@media (max-width: 768px) {
  header .right-header nav {
    width: 100%;
    height: 100vh;
    gap: 20px;
  }
}
header .right-header nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/logo.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 454px;
  height: 173px;
  opacity: 0.2;
  z-index: -1;
}
header .right-header nav .index {
  font-size: 4.8rem;
  letter-spacing: 4px;
}
@media (max-width: 768px) {
  header .right-header nav .index {
    text-align: center;
  }
}
header .right-header nav .flex {
  display: flex;
  justify-content: center;
  gap: 2%;
}
@media (max-width: 768px) {
  header .right-header nav .flex {
    flex-direction: column;
    gap: 20px;
  }
}
header .right-header nav .flex .nav-list {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  height: 100%;
  border-top-left-radius: 100px;
}
@media (max-width: 768px) {
  header .right-header nav .flex .nav-list {
    width: 100%;
    gap: 30px;
    text-align: center;
  }
}
header .right-header nav .flex .nav-list .page-jump {
  position: relative;
  display: inline-block;
  font-size: clamp(2.3rem, 1.4vw, 2.6rem);
}
header .right-header nav .flex .nav-list .page-jump::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #F97316;
  opacity: 0;
  transition: all 0.3s ease;
}
header .right-header nav .flex .nav-list .page-jump:hover::after {
  opacity: 1;
  width: 100%;
}
header .right-header nav .flex .banner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 40%;
  gap: 20px;
}
@media (max-width: 768px) {
  header .right-header nav .flex .banner {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
header .right-header nav .flex .banner img {
  width: 200px;
  transition: all 0.3s ease;
}
@media (max-width: 425px) {
  header .right-header nav .flex .banner img {
    width: 150px;
  }
}
header .right-header nav .flex .banner img:hover {
  opacity: 0.7;
}
header.open .toggle-btn span:nth-child(1), header.open .toggle-btn span:nth-child(3) {
  opacity: 0;
}
header.open nav {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
header.hide {
  transform: translateY(-100%);
}

footer {
  background-color: #2795D9;
  background-image: url("/img/backgroundimg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}
footer .wrapper .inner {
  display: flex;
  justify-content: space-between;
  padding-block: 3%;
}
@media (max-width: 425px) {
  footer .wrapper .inner {
    flex-direction: column;
  }
}
footer .wrapper .inner .left .left-footer {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: flex-end;
}
footer .wrapper .inner .left .left-footer .logo {
  line-height: 1;
}
footer .wrapper .inner .left .left-footer .logo img {
  height: 50px;
  width: auto;
  display: block;
}
footer .wrapper .inner .left .left-footer p {
  font-size: 2.2rem;
  font-weight: normal;
  line-height: 1.1;
  margin: 0;
}
footer .wrapper .inner .left .left-footer p span {
  font-size: 1.2rem;
}
footer .wrapper .inner .left .address,
footer .wrapper .inner .left .tel {
  margin-block: 5%;
}
footer .wrapper .inner .left .address p,
footer .wrapper .inner .left .tel p {
  font-size: 1.4rem;
}
footer .wrapper .inner .right ul li {
  margin-block: 20px;
}
@media (max-width: 425px) {
  footer .wrapper .inner .right ul li {
    flex-direction: column-reverse;
  }
}
footer .wrapper .inner .right ul li a {
  font-size: 2.2rem;
  font-weight: normal;
  line-height: 1.1;
  margin: 0;
  font-size: 1.6rem;
}
footer .wrapper .link ul {
  display: flex;
  justify-content: center;
}
footer .wrapper .link ul li {
  width: 15%;
  margin: 10px;
}
footer .copy {
  background-color: #064180;
  color: #FFFFFF;
  margin: 0 auto;
}
footer .copy p {
  padding-top: 5px;
  text-align: center;
  font-size: 1.4rem;
}

.mainvisual {
  position: relative;
  height: 100vh;
  overflow-x: hidden;
}

#three-container {
  height: 100vh;
}

.about-us {
  background-color: #2795D9;
  background-image: url("/img/backgroundimg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 100px;
}
.about-us::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  margin-bottom: -1px;
  height: 100px;
  width: 100%;
  background-color: #FFFFFF;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: -1;
  pointer-events: none;
}
.about-us .main-text {
  padding: 5%;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 10%;
}
.about-us .container ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-inline: 10%;
}
@media (max-width: 768px) {
  .about-us .container ul {
    grid-template-columns: 1fr;
  }
}
.about-us .container ul li {
  border-radius: 5px;
}
.about-us .container ul li:nth-child(3) {
  order: 2;
}
@media (max-width: 768px) {
  .about-us .container ul li:nth-child(3) {
    order: 1;
  }
}
.about-us .container ul li:nth-child(4) {
  order: 1;
}
@media (max-width: 768px) {
  .about-us .container ul li:nth-child(4) {
    order: 2;
  }
}
.about-us .container ul li img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about-us .container ul li .inner {
  border: 1px solid #FFFFFF;
  padding-inline: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}
.about-us .container ul li .inner p {
  margin-block: 50px;
}
.about-us .container ul li .inner .btn-view-more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  min-width: 240px;
  margin-bottom: 25px;
}

.job-category {
  position: relative;
  overflow: hidden;
}
.job-category::before {
  content: "";
  position: absolute;
  right: -10%;
  width: 900px;
  height: 900px;
  z-index: -1;
  background-image: url(/img/job_category.webp);
  background-size: cover;
  background-position: right center;
  border-radius: 50%;
  box-shadow: 0 0 1px 1px rgba(249, 115, 22, 0.5), 0 0 30px 30px rgba(249, 115, 22, 0.2), 0 0 60px 60px rgba(249, 115, 22, 0.1);
}
.job-category .section-title {
  text-align: center;
}
.job-category .section-title h2,
.job-category .section-title h3 {
  color: #064180;
}
.job-category .job-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .job-category .job-list ul {
    grid-template-columns: 1fr;
  }
}
.job-category .job-list ul li {
  background-color: rgba(6, 65, 128, 0.7);
  padding-inline: 5%;
  border-radius: 5px;
}
.job-category .job-list ul li .section-title h2,
.job-category .job-list ul li .section-title h3 {
  color: #FFFFFF;
}
.job-category .job-list ul li p {
  margin-bottom: 25px;
}
.job-category .job-list ul li .btn-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.job-category .job-list ul li .btn-list .btn-view-more {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}
.job-category .job-list ul li .btn-list .btn-view-more:last-of-type {
  margin-bottom: 35px;
}
.job-category .recruitment {
  padding-inline: 10%;
  border: 1px solid #064180;
  border-radius: 5px;
  margin-block: 50px;
  background-color: rgba(255, 255, 255, 0.7);
}
.job-category .recruitment .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-bottom: 25px;
  align-items: center;
}
@media (max-width: 768px) {
  .job-category .recruitment .inner {
    grid-template-columns: 1fr;
  }
  .job-category .recruitment .inner .btn-view-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}
.job-category .recruitment .inner p {
  color: #064180;
}

.news {
  position: relative;
  z-index: 1;
  background-color: #2795D9;
}
.news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/img/back_logo.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: -1;
}
.news .wrapper ul li {
  border: 1px solid #FFFFFF;
  border-radius: 10px;
  padding: 2%;
  margin-block: 3%;
}
.news .wrapper ul li a {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .news .wrapper ul li a {
    flex-direction: column;
    align-items: stretch;
  }
}
.news .wrapper ul li a .category-item {
  display: flex;
  gap: 10px;
  margin-right: 5%;
}
.news .wrapper ul li a .category-item .category {
  background-color: #FFFFFF;
  color: #333333;
  border-radius: 20px;
  padding: 5px 20px;
  font-size: 1.3rem;
}
.news .wrapper ul li a .text {
  font-size: 2rem;
  letter-spacing: 5px;
}
.news .wrapper .btn-view-more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.contact {
  position: relative;
  z-index: 1;
  background-color: #064180;
}
.contact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -1px;
  height: 50px;
  width: 100%;
  background-color: #2795D9;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 10;
  pointer-events: none;
}
.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/img/contact.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: -1;
}
.contact .wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.contact .wrapper .section-title,
.contact .wrapper .section-text {
  width: 100%;
  text-align: left;
}
.contact .wrapper .btn-view-more {
  background-color: #F97316;
}

.page-contact .contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
.page-contact .contact-form dl {
  margin-bottom: 24px;
}
.page-contact .contact-form dl dt {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #333333;
}
.page-contact .contact-form dl dt .required {
  display: block;
  color: #F97316;
  font-size: 1.2rem;
  margin-top: 4px;
}
.page-contact .contact-form dl dd {
  margin-left: 0;
}
.page-contact .contact-form dl dd input[type=text],
.page-contact .contact-form dl dd input[type=email],
.page-contact .contact-form dl dd input[type=tel],
.page-contact .contact-form dl dd textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #064180;
  background-color: rgba(162, 206, 233, 0.3);
  border-radius: 4px;
  font-size: 1.6rem;
  box-sizing: border-box;
  outline: none;
}
.page-contact .contact-form dl dd input[type=text]:focus,
.page-contact .contact-form dl dd input[type=email]:focus,
.page-contact .contact-form dl dd input[type=tel]:focus,
.page-contact .contact-form dl dd textarea:focus {
  background-color: rgba(162, 206, 233, 0.3);
  border-color: rgb(3.7164179104, 40.2611940299, 79.2835820896);
}
.page-contact .contact-form dl dd textarea {
  height: 200px;
  resize: vertical;
}
.page-contact .policy-text {
  text-align: center;
  font-size: 2rem;
  color: #333333;
  margin-top: 40px;
}
.page-contact .btn-view-more {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 10%;
}

.page .section-title {
  position: relative;
  border-bottom: 2px solid #F97316;
  padding-block: 75px;
}
.page .section-title h2 {
  color: #064180;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page .section-title h2::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #2795D9;
  flex-shrink: 0;
}
.page .section-text h3 {
  position: relative;
  font-size: 2.4rem;
  padding-block: 60px;
  padding-left: 20px;
}
.page .section-text h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0px 5px 10px;
  border-color: transparent transparent transparent #2795D9;
}
.page .text-title {
  width: 50%;
}
@media (max-width: 425px) {
  .page .text-title {
    width: 100%;
  }
}
.page .text-title h4 {
  background-color: #2795D9;
  border-radius: 15px;
  color: #FFFFFF;
  padding: 20.5px 25px;
  font-size: 2.4rem;
}
.page .text-title p {
  margin-top: 50px;
  line-height: 40px;
}

.about-container {
  width: 80%;
  margin: 0 auto;
}

.page-about .section-title {
  position: relative;
  padding-block: 75px;
  margin-block: 30px;
  background-color: #A2CEE9;
  text-align: center;
  border-radius: 0 30px 0 30px;
}
.page-about .section-title .inner {
  width: 80%;
  margin: 0 auto;
}
.page-about .section-title .inner h2 {
  color: #333333;
  font-size: 2.4rem;
}
.page-about .section-title .inner p {
  text-align: left;
}
.page-about .section-text h3 {
  font-size: 2.4rem;
  margin: 50px 0 30px;
  text-align: center;
}
.page-about .section-text dl {
  width: 40%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .page-about .section-text dl {
    width: 70%;
  }
}
.page-about .section-text dl dt {
  width: 35%;
  padding-block: 14px;
  font-size: 1.5rem;
  border-top: 1px solid #A2CEE9;
}
.page-about .section-text dl dd {
  width: 65%;
  padding-block: 14px;
  font-size: 1.5rem;
  border-top: 1px solid #A2CEE9;
}
.page-about .section-text dl dd ul li {
  font-size: 1.5rem;
}
.page-about .section-text dl dd ul li span {
  font-size: 1.1rem;
}
.page-about .sales-office {
  margin-block: 5%;
}
.page-about .sales-office ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .page-about .sales-office ul {
    grid-template-columns: 1fr;
  }
}
.page-about .sales-office ul li {
  background-color: #A2CEE9;
  padding: 30px;
  border-radius: 5px;
}
.page-about .sales-office ul li h3 {
  font-size: 2.4rem;
}
.page-about .sales-office ul li .map {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}
.page-about .sales-office ul li .map iframe {
  width: 100%;
  height: 100%;
}
.page-about .sales-office ul li .address {
  margin-top: 5%;
}
.page-about .sales-office ul li .address p {
  font-size: 1.6rem;
}
.page-about .sales-office ul li .tel {
  margin-top: 5%;
}
.page-about .company .company-infomation {
  padding-left: 10%;
  margin-block: 3%;
}
.page-about .company .company-infomation .company-name {
  position: relative;
  font-size: 2.4rem;
  padding-left: 20px;
}
.page-about .company .company-infomation .company-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0px 5px 10px;
  border-color: transparent transparent transparent #2795D9;
}
.page-about .company .company-infomation .company-address {
  font-size: 1.6rem;
}

.our-services ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-block: 5%;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .our-services ul {
    grid-template-columns: 1fr;
  }
}
.our-services ul li {
  border: 1px solid #2795D9;
  background-image: linear-gradient(#A2CEE9, #FFFFFF);
  border-radius: 0 30px 0 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding-block: 20px;
}
.our-services ul li h2 {
  font-size: 2.4rem;
  margin-block: 5%;
  margin-inline: 8%;
}
.our-services ul li p {
  font-size: 1.4rem;
  margin-inline: 8%;
  flex-grow: 1;
  padding-bottom: 50px;
}
.our-services ul li .btn-view-more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  min-width: 240px;
}

.page-news .inner {
  margin-top: 10%;
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .page-news .inner {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.page-news .inner .left {
  width: 50%;
}
@media (max-width: 768px) {
  .page-news .inner .left {
    width: 80%;
  }
}
.page-news .inner .left h2 {
  background-color: #2795D9;
  border-radius: 15px;
  color: #FFFFFF;
  padding: 20.5px 25px;
  font-size: 2.4rem;
}
.page-news .inner .left p {
  margin-top: 50px;
  line-height: 40px;
}
.page-news .inner .right {
  width: 50%;
  margin-top: 15%;
}
@media (max-width: 768px) {
  .page-news .inner .right {
    width: 80%;
    margin-top: 0%;
  }
}
.page-news .inner .right img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-news .back-link-container {
  padding-left: 70px;
  padding-top: 10px;
}
.page-news .back-link-container .link-back {
  position: relative;
  font-size: 2rem;
  color: #333333;
  text-decoration: none;
  padding-bottom: 5px;
  display: inline-block;
  font-family: serif;
}
.page-news .back-link-container .link-back::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -50px;
  width: 100px;
  height: 1px;
  background-color: #333333;
}
.page-news .back-link-container .link-back::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -50px;
  width: 15px;
  height: 1px;
  background-color: #333333;
  transform-origin: left center;
  transform: rotate(-45deg);
}

.page-news-list ul {
  padding-block: 5%;
  width: 80%;
  margin: 0 auto;
}
.page-news-list ul li {
  border: 1px solid #2795D9;
  border-radius: 0 30px 0 30px;
  background-color: rgba(39, 149, 217, 0.3);
  display: flex;
  margin-bottom: 5%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.page-news-list ul li h2 {
  font-size: 2.4rem;
  margin-block: 4%;
  margin-inline: 8%;
}
.page-news-list ul li p {
  font-size: 1.4rem;
  margin-inline: 8%;
  flex-grow: 1;
}/*# sourceMappingURL=style.css.map */