@charset "UTF-8";
* {
  font-family: "Noto Sans JP", sans-serif;
  padding: 0;
  margin: 0;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.pc_br {
  display: block;
}

.pc_none {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp_br {
    display: block;
  }
  .sp_none {
    display: none;
  }
}
.header_a, .footer .footer-inner .footer-right .footer-nav li, header .header_inner .header_list .header_button, header .header_inner .header_list nav ul li {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.header_a a, .footer .footer-inner .footer-right .footer-nav li a, header .header_inner .header_list .header_button a, header .header_inner .header_list nav ul li a {
  color: #000;
}
.header_a a span, .footer .footer-inner .footer-right .footer-nav li a span, header .header_inner .header_list .header_button a span, header .header_inner .header_list nav ul li a span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
}

.cta-button, #contact_cta .cta-buttons .cta-button, #about .about_inner .about_left .cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  background: #fff;
  min-width: 260px;
  z-index: 1;
  transition: transform 0.2s ease;
}
@media (max-width: 991px) {
  .cta-button, #contact_cta .cta-buttons .cta-button, #about .about_inner .about_left .cta-button {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
  }
}
.cta-button .arrow, #contact_cta .cta-buttons .cta-button .arrow, #about .about_inner .about_left .cta-button .arrow {
  margin-left: 16px;
}
.cta-button:hover, #contact_cta .cta-buttons .cta-button:hover, #about .about_inner .about_left .cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.5;
}

.photo_00 {
  opacity: 0;
  transform: translateX(80px) scale(0.9);
}

.photo_01 {
  opacity: 0;
  transform: translateX(-80px) scale(0.9);
}

.photo_03 {
  opacity: 0;
  transform: scale(0.9); /* 少し小さく始める */
}

h1 {
  position: relative;
}
h1 span {
  position: absolute;
  bottom: 26%;
  left: 2.5%;
  font-size: clamp(1.25rem, 0.909rem + 1.7vw, 2.188rem);
  background-color: rgba(255, 255, 255, 0.8666666667);
  padding: 0 10px;
  font-weight: normal;
  letter-spacing: 5px;
}
@media (max-width: 991px) {
  h1 span {
    bottom: 33%;
  }
}
h1 span strong {
  font-size: clamp(2rem, 1.773rem + 1.14vw, 2.625rem);
}
@media (max-width: 991px) {
  h1 span strong {
    font-size: 28px;
  }
}

header .header_inner {
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 1111;
  width: 100%;
  height: 60px;
}
@media (max-width: 991px) {
  header .header_inner {
    background-color: #fff;
    align-items: center;
  }
}
header .header_inner .header_logo {
  margin-left: 10px;
}
header .header_inner .header_list {
  width: 70%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  header .header_inner .header_list {
    height: 100vh;
    width: 100%;
    padding: 0;
    justify-content: flex-start;
  }
}
header .header_inner .header_list nav {
  width: 50%;
  margin-right: 50px;
  max-width: 500px;
}
@media (max-width: 991px) {
  header .header_inner .header_list nav {
    width: 100%;
    padding: 50px 0 30px 0;
  }
}
header .header_inner .header_list nav ul {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}
@media (max-width: 991px) {
  header .header_inner .header_list nav ul {
    flex-wrap: wrap;
    flex-direction: row;
    width: 50%;
    margin: 0 auto;
  }
}
header .header_inner .header_list nav ul li a:hover {
  opacity: 0.5;
}
header .header_inner .header_list .header_button {
  background-color: #000;
  height: 100%;
  width: 20%;
  max-width: 300px;
}
@media (max-width: 991px) {
  header .header_inner .header_list .header_button {
    width: 90%;
    margin: 0 auto;
    max-width: 90%;
    height: 60px;
  }
}
header .header_inner .header_list .header_button a {
  color: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
header .header_inner .header_list .header_button a span {
  display: block;
}
header .header_inner .header_list .header_button:hover {
  background-color: rgb(66, 66, 66);
}

/* ハンバーガー初期 */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #333;
  transition: 0.3s ease;
}

/* 変形：✕アイコンに */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

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

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

/* メニュー */
.header_list {
  transition: all 0.3s ease;
}

/* スマホ用 */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    margin-right: 30px;
  }
  .header_list {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  .header_list.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .header_list ul {
    flex-direction: column;
    gap: 16px;
  }
}
#about {
  padding: 100px 0;
  align-items: center;
}
@media (max-width: 991px) {
  #about {
    padding: 50px 0;
  }
}
#about .about_inner {
  display: flex;
  overflow: hidden;
  align-items: center;
}
@media (max-width: 991px) {
  #about .about_inner {
    flex-direction: column-reverse;
  }
}
#about .about_inner .photo_00 {
  width: 50%;
  margin-left: auto;
  opacity: 0;
  opacity: 0;
  transform: translateX(80px) scale(0.9);
}
@media (max-width: 991px) {
  #about .about_inner .photo_00 {
    width: 90% !important;
  }
}
#about .about_inner .about_left {
  width: 33%;
  margin-left: 100px;
}
@media (max-width: 991px) {
  #about .about_inner .about_left {
    width: 90%;
    margin: 0 auto;
  }
}
#about .about_inner .about_left .section-label {
  background: linear-gradient(180deg, rgba(0, 125, 102, 0.25), rgba(165, 165, 165, 0.493));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  font-size: clamp(3rem, 2.455rem + 2.73vw, 4.5rem);
}
@media (max-width: 991px) {
  #about .about_inner .about_left .section-label {
    text-align: center;
  }
}
#about .about_inner .about_left h2 {
  color: #11C4A3;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: clamp(1.125rem, 0.953rem + 0.73vw, 1.5rem);
}
#about .about_inner .about_left p {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 2;
}
#about .about_inner .about_left .cta-button {
  background-color: #000 !important;
  color: #fff !important;
  margin-top: 30px;
}

#service {
  background-color: #D7EDED;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  #service {
    padding-bottom: 50px;
  }
}
#service .service_top {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 100px 0 100px 0;
  justify-content: space-between;
}
@media (max-width: 991px) {
  #service .service_top {
    flex-direction: column-reverse;
    transform: none !important;
    padding: 50px 0;
  }
}
#service .service_top .service_photo {
  width: 50%;
}
@media (max-width: 991px) {
  #service .service_top .service_photo {
    width: 100%;
  }
}
#service .service_top .service_right .section-label {
  background: linear-gradient(180deg, rgba(0, 125, 102, 0.25), rgba(165, 165, 165, 0.493));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  font-size: clamp(3rem, 2.455rem + 2.73vw, 4.5rem);
  font-weight: normal;
  text-align: center;
}
#service .service_top .service_right .service_right_inner {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  #service .service_top .service_right .service_right_inner {
    margin-bottom: 50px;
  }
}
#service .service_top .service_right .service_right_inner .service-box {
  display: inline-block;
  position: relative;
  background: white;
  padding: 20px 40px;
  margin: 20px 0;
  font-weight: bold;
  transform: skewX(-20deg);
  box-shadow: 10px 10px 0 #aaa;
}
@media (max-width: 991px) {
  #service .service_top .service_right .service_right_inner .service-box {
    width: 92%;
    padding: 15px;
  }
}
#service .service_top .service_right .service_right_inner .service-box p {
  margin: 0;
  transform: skewX(20deg);
  text-align: center;
  font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
}
#service #case {
  width: 80%;
  margin: 0 auto;
}

.slick-slide img {
  transition: all 0.3s ease;
  opacity: 0.5;
  transform: scale(0.85);
  border-radius: 8px;
}

.slick-center img {
  opacity: 1;
  transform: scale(1.2);
}

#company {
  display: flex;
  padding: 100px 0;
  align-items: center;
}
@media (max-width: 991px) {
  #company {
    flex-direction: column;
    padding: 50px 0;
  }
}
#company .company_left {
  width: 50%;
  margin-right: auto;
}
@media (max-width: 991px) {
  #company .company_left {
    width: 90%;
  }
}
#company .company_right {
  width: 40%;
  margin-right: 50px;
}
@media (max-width: 991px) {
  #company .company_right {
    width: 90%;
    margin: 50px auto 0 auto;
  }
}
#company .company_right .section-label {
  background: linear-gradient(180deg, rgba(0, 125, 102, 0.25), rgba(165, 165, 165, 0.493));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  font-size: clamp(3rem, 2.455rem + 2.73vw, 4.5rem);
  font-weight: normal;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  #company .company_right .section-label {
    text-align: center;
  }
}
#company .company_right .company-table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
}
#company .company_right .company-table th, #company .company_right .company-table td {
  border-bottom: 1px solid #ccc;
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
}
#company .company_right .company-table th {
  font-weight: bold;
  white-space: nowrap;
  width: 50%;
  vertical-align: middle;
}
#company .company_right .company-table td {
  color: #333;
  vertical-align: middle;
}

.rizin img {
  max-width: 200px;
}

#member {
  padding: 100px 0;
  width: 80%;
  margin: 0 auto;
  max-width: 1440px;
}
@media (max-width: 991px) {
  #member {
    padding: 50px 0;
    width: 90%;
    margin: 50px auto 0 auto;
  }
}
#member .section-label {
  background: linear-gradient(180deg, rgba(0, 125, 102, 0.25), rgba(165, 165, 165, 0.493));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  font-size: clamp(3rem, 2.455rem + 2.73vw, 4.5rem);
  font-weight: normal;
  text-align: center;
}
@media (max-width: 991px) {
  #member .section-label {
    margin-bottom: 30px;
  }
}
#member .member_list {
  margin-top: 50px;
  display: flex;
  justify-content: space-evenly;
}
#member .member_list .member_list_inner {
  width: 45%;
  max-width: 350px;
}

#news {
  background-color: #D7EDED;
  padding: 100px 0;
}
@media (max-width: 991px) {
  #news {
    padding: 50px 0;
  }
}
#news .section-label {
  margin-bottom: 50px;
  background: linear-gradient(180deg, rgba(0, 125, 102, 0.25), rgba(165, 165, 165, 0.493));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  font-size: clamp(3rem, 2.455rem + 2.73vw, 4.5rem);
  font-weight: normal;
  text-align: center;
}
@media (max-width: 991px) {
  #news .section-label {
    margin-bottom: 30px;
  }
}
#news .news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  font-family: sans-serif;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  #news .news-cards {
    width: 90%;
    padding: 0px;
  }
}
#news .news-cards .news-card {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
}
#news .news-cards .news-card .news-date {
  display: inline-block;
  background-color: #11C4A3;
  color: white;
  font-size: 14px;
  padding: 2px 5px;
  margin-bottom: 5px;
}
#news .news-cards .news-card .news-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
#news .news-cards .news-card .news-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

#contact_cta {
  background-color: #151515;
}
#contact_cta .contact_cta_midashi {
  color: #fff;
  padding-top: 100px;
  padding-bottom: 30px;
  text-align: center;
}
@media (max-width: 991px) {
  #contact_cta .contact_cta_midashi {
    padding-top: 50px;
  }
}
#contact_cta .contact_cta_midashi h2 {
  padding-bottom: 20px;
  font-size: clamp(1.375rem, 1.193rem + 0.91vw, 1.875rem);
}
#contact_cta .cta-buttons {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  padding-bottom: 100px;
  justify-content: center;
}
@media (max-width: 991px) {
  #contact_cta .cta-buttons {
    gap: 35px;
    padding-bottom: 50px;
    width: 90%;
    margin: 0 auto;
  }
}
.footer {
  background-color: #2b2b2b;
  color: #fff;
  padding: 40px 20px;
  font-family: sans-serif;
}
@media (max-width: 991px) {
  .footer {
    padding: 20px;
  }
}
.footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .footer .footer-inner {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.footer .footer-inner .footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .footer .footer-inner .footer-left {
    flex-direction: column;
    align-items: center;
  }
}
.footer .footer-inner .footer-left .footer-logo {
  width: 80px;
  margin-bottom: 12px;
}
.footer .footer-inner .footer-left .copyright {
  font-size: 14px;
  color: #fff;
}
.footer .footer-inner .footer-right {
  text-align: right;
}
@media (max-width: 991px) {
  .footer .footer-inner .footer-right {
    margin-bottom: 20px;
  }
}
.footer .footer-inner .footer-right .footer-nav {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .footer .footer-inner .footer-right .footer-nav {
    margin-bottom: 20px;
  }
}
.footer .footer-inner .footer-right .footer-nav li a {
  color: #fff;
  text-decoration: none;
}
.footer .footer-inner .footer-right .footer-nav li a span {
  display: block;
}
.footer .footer-inner .footer-right .footer-nav li a:hover {
  opacity: 0.5;
}
.footer .footer-inner .footer-right .privacy-link {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .footer .footer-inner .footer-right .privacy-link {
    display: block;
    text-align: center;
  }
}
.footer .footer-inner .footer-right .privacy-link:hover {
  opacity: 0.5;
}/*# sourceMappingURL=top.css.map *//