/* ==========================================================================
   Variables
   ========================================================================== */
/* ==========================================================================
   Reset / Base
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    font-size: 56%;
  }
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  color: #333;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
  transition: 0.4s;
}

ul {
  list-style: none;
}

.is-fixed {
  overflow: hidden;
}

.gray {
  color: #707070;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-family: "Roboto", sans-serif;
}
@media (max-width: 768px) {
  .header {
    height: 64px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1340px) {
  .header__inner {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .header__inner {
    padding-left: 12px;
  }
}
.header__inner {
  padding-right: 0;
}

.header__logo {
  flex: 0 0 auto;
  font-size: 0;
}
@media (max-width: 768px) {
  .header__logo {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }
}
.header__logo img {
  height: 34px;
  width: auto;
}
@media (max-width: 1340px) {
  .header__logo img {
    height: 26px;
  }
}
@media (max-width: 768px) {
  .header__logo img {
    height: 20px;
    max-width: 100%;
  }
}

.header__contact {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 46px;
  background: #f9e050;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}
@media (max-width: 1340px) {
  .header__contact {
    width: 150px;
    font-size: 1.3rem;
  }
}
@media (max-width: 1080px) {
  .header__contact {
    display: none;
  }
}
@media (max-width: 768px) {
  .header__contact {
    display: flex;
    flex: 0 0 auto;
    width: 70px;
    font-size: 1rem;
    order: 3;
  }
}

/* ---- Global Nav (PC) ---- */
.gnav {
  margin: 0 0 0 auto;
}
@media (max-width: 768px) {
  .gnav {
    margin-left: 0;
  }
}

.gnav__list {
  display: flex;
  align-items: center;
}

.gnav__item {
  margin-right: 36px;
}
@media (max-width: 1340px) {
  .gnav__item {
    margin-right: 20px;
  }
}
@media (max-width: 1080px) {
  .gnav__item {
    margin-right: 14px;
  }
}
.gnav__item a {
  position: relative;
  display: inline-block;
  padding-right: 18px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #555;
}
@media (max-width: 1340px) {
  .gnav__item a {
    padding-right: 14px;
    font-size: 1.2rem;
  }
}
@media (max-width: 1080px) {
  .gnav__item a {
    padding-right: 12px;
    font-size: 1.1rem;
  }
}
.gnav__item a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: translateY(-70%) rotate(45deg);
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  position: relative;
  flex: 0 0 auto;
  width: 50px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  order: 4;
  z-index: 1100;
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

.hamburger__line {
  position: absolute;
  left: 13px;
  width: 24px;
  height: 2px;
  background: #333;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.hamburger__line:nth-child(1) {
  top: 24px;
}
.hamburger__line:nth-child(2) {
  top: 32px;
}
.hamburger__line:nth-child(3) {
  top: 40px;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  top: 32px;
  transform: rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  top: 32px;
  transform: rotate(-45deg);
}

/* ---- Global Nav (SP: drawer) ---- */
@media (max-width: 768px) {
  .gnav {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #f2f2f2;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .gnav.is-active {
    transform: translateX(0);
  }
  .gnav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }
  .gnav__item {
    width: 100%;
    margin-right: 0;
    border-bottom: 1px solid #ddd;
  }
  .gnav__item a {
    display: block;
    width: 100%;
    padding: 18px 18px 18px 4px;
    font-size: 1.5rem;
  }
}
/* ==========================================================================
   FV (First View)
   ========================================================================== */
.fv {
  position: relative;
  width: 100%;
  height: 700px;
  min-height: 640px;
  margin-top: 92px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fv {
    margin-top: 64px;
    height: 90svh;
    min-height: 560px;
  }
}
.fv .btn {
  color: #000;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 60px;
  background: #f9e050;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}
@media (max-width: 768px) {
  .fv .btn {
    flex: 0 0 auto;
    width: 240px;
    font-size: 1.4rem;
    order: 3;
  }
}

.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.fv__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 0;
  color: #fff;
}
@media (max-width: 768px) {
  .fv__inner {
    padding: 80px 24px 0;
  }
}

.fv__lead {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .fv__lead {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
}

.fv__catch {
  letter-spacing: 3px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .fv__catch {
    font-size: 4rem;
    margin-bottom: 28px;
  }
}

.fv__text {
  padding-top: 40px;
  font-size: 1.5rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .fv__text {
    font-size: 1.2rem;
    line-height: 1.9;
  }
}

.sec_header {
  width: 100%;
  max-width: 1600px;
  padding-left: 1em;
  padding-right: 1em;
  margin: 0 auto;
  text-align: center;
}
.sec_header .sec_subtitle {
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  padding-top: 60px;
  padding-bottom: 8px;
  letter-spacing: 1.6px;
  font-family: "Roboto", sans-serif;
}
.sec_header .sec_subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: #000;
}
@media (max-width: 768px) {
  .sec_header .sec_subtitle {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
}
.sec_header .sec_title {
  font-size: 2.4rem;
  padding-top: 16px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .sec_header .sec_title {
    height: auto;
    padding-top: 0;
    padding-bottom: 32px;
  }
}

.sec_eizou {
  padding-top: 100px;
}
@media (max-width: 768px) {
  .sec_eizou {
    padding-top: 60px;
    padding-left: 1em;
    padding-right: 1em;
  }
}
.sec_eizou .sec_row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .sec_eizou .sec_row {
    display: block;
  }
}
.sec_eizou .sec_row .sec_col_rt {
  max-width: 850px;
  width: 100%;
}
.sec_eizou .sec_row .sec_col_rt h3 {
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 24px;
}
.sec_eizou .sec_row .sec_col_rt .sec_text {
  font-size: 1.5rem;
  line-height: 2;
  padding-bottom: 56px;
}
.sec_eizou .sec_row .sec_col_rt .sec_img {
  padding-left: 40px;
}
.sec_eizou .sec_row .sec_col_lt {
  padding-top: 32px;
}
.sec_eizou .sec_row .sec_col_lt img {
  max-width: 240px;
  width: 100%;
}

.sec_futures {
  padding-bottom: 60px;
}
.sec_futures .sec_row {
  max-width: 1154px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 768px) {
  .sec_futures .sec_row {
    padding-left: 4%;
    padding-right: 4%;
  }
}
.sec_futures .sec_row h3 {
  text-align: center;
  font-size: 1.8rem;
  padding-top: 16px;
}
.sec_futures .sec_row .futures_box {
  width: 100%;
  max-width: 320px;
  padding: 20px 30px;
  border-radius: 10px;
}
.sec_futures .sec_row .futures_box .futures_icon {
  margin: 0 auto;
  padding-top: 25px;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 300px;
  width: 180px;
  height: 180px;
}
.sec_futures .sec_row .futures_box p {
  padding-top: 16px;
  font-size: 1.4rem;
  color: #707070;
}

.sec_problem {
  background: #f5f5f5;
  padding: 0 1em 100px 1em;
}
.sec_problem h3 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .sec_problem h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
}
.sec_problem .sec_row {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.sec_problem .sec_row .sec_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 56px;
}
@media (max-width: 768px) {
  .sec_problem .sec_row .sec_list {
    gap: 10px;
  }
}
.sec_problem .sec_row .sec_list li {
  position: relative;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 20px 40px;
  width: 49%;
  background-color: #fff;
}
@media (max-width: 768px) {
  .sec_problem .sec_row .sec_list li {
    width: 100%;
  }
}
.sec_problem .sec_row .sec_list li:before {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 24px;
  top: 16%;
  background-color: #000;
  margin-top: 20px;
}
.sec_problem .sec_row .sec_text {
  text-align: center;
  font-size: 1.6rem;
  padding-bottom: 16px;
}
.sec_problem .sec_row .btn {
  margin: 0 auto;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 50px;
  background: #f9e050;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
}
@media (max-width: 768px) {
  .sec_problem .sec_row .btn {
    flex: 0 0 auto;
    width: 240px;
    font-size: 1.4rem;
    order: 3;
  }
}

.sec_service .sec_row {
  max-width: 1154px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 20px;
}
@media (max-width: 768px) {
  .sec_service .sec_row {
    padding-left: 4%;
    padding-right: 4%;
  }
}
.sec_service .sec_row .service_box {
  width: 100%;
  max-width: 320px;
  background-color: #f5f5f5;
  padding: 30px 40px 40px 40px;
  border-radius: 10px;
}
.sec_service .sec_row .service_box .service_icon {
  margin: 0 auto;
  padding-top: 10px;
  text-align: center;
  background-color: #fff;
  border-radius: 300px;
  width: 180px;
  height: 180px;
}
@media (max-width: 768px) {
  .sec_service .sec_row .service_box .service_icon {
    width: 160px;
    height: 160px;
  }
  .sec_service .sec_row .service_box .service_icon img {
    width: 136px;
  }
}
.sec_service .sec_row .service_box h3 {
  text-align: center;
  font-size: 1.8rem;
  padding-bottom: 24px;
}
.sec_service .sec_row .service_box p {
  padding-top: 32px;
  font-size: 1.5rem;
  color: #707070;
}

.sec_works {
  margin-bottom: 100px;
}
.sec_works .web-gallery-slider {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.sec_works .web-gallery-slider .swiper-slide {
  aspect-ratio: 10/9;
}
.sec_works .web-gallery-slider .swiper-slide img {
  display: block;
  width: 100%;
  /* height: 100%; */
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_works .swiper-wrapper {
  transition-timing-function: linear !important;
}
.sec_works .web-gallery-slider .swiper-button-prev,
.sec_works .web-gallery-slider .swiper-button-next,
.sec_works .web-gallery-slider .swiper-pagination {
  display: none;
}
.sec_works .works_btn a {
  margin: 0 auto;
  position: relative;
  font-size: 1.6rem;
  display: block;
  width: 230px;
  padding-bottom: 4px;
  border-bottom: 1px solid #000;
}
.sec_works .works_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  background-image: url("../image/arrow_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.sec_flow {
  background: #f5f5f5;
  padding-bottom: 100px;
}
.sec_flow .sec_row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
}
@media (max-width: 768px) {
  .sec_flow .sec_row {
    justify-content: center;
  }
}
.sec_flow .sec_row .flow_box {
  position: relative;
  padding: 32px;
  width: 100%;
  max-width: 360px;
  background: #fff;
}
.sec_flow .sec_row .flow_box .side_number {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9e050;
  color: #fff;
  font-weight: bold;
  position: absolute;
  width: 40px;
  height: 40px;
  top: -14px;
  left: 0;
}
.sec_flow .sec_row .flow_box .side_number span {
  font-size: 2.2rem;
}
.sec_flow .sec_row .flow_box h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.sec_flow .sec_row .flow_box p {
  font-size: 1.6rem;
  color: #707070;
}

.sec_qa {
  padding-bottom: 60px;
  padding-left: 4%;
  padding-right: 4%;
}
.sec_qa p {
  width: 100%;
  font-size: 1.8rem;
}
.sec_qa .sec_text {
  text-align: center;
  padding-bottom: 40px;
}
.sec_qa .faq-accordion {
  max-width: 1000px;
  margin: 0 auto;
}
.sec_qa .faq-item {
  margin-bottom: 16px;
}
.sec_qa .faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 80px;
  padding: 16px 24px;
  background-color: #fff;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  border: none;
  border-bottom: 1px solid #000;
  width: 100%;
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
}
.sec_qa .faq-q {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f9e050;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
}
.sec_qa .faq-text {
  flex: 1;
}
.sec_qa .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 16px;
  transition: transform 0.3s ease;
}
.sec_qa .faq-icon::before,
.sec_qa .faq-icon::after {
  content: "";
  position: absolute;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sec_qa .faq-icon::before {
  width: 18px;
  height: 1px;
}
.sec_qa .faq-icon::after {
  width: 1px;
  height: 18px;
}
.sec_qa .faq-item.active .faq-icon {
  transform: rotate(135deg);
}
.sec_qa .faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  border: none;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.sec_qa .faq-item.active .faq-answer {
  max-height: 500px;
  padding: 16px 24px;
}
.sec_qa .faq-answer p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333333;
}
.sec_qa .c_btn {
  margin: 0 auto;
  text-align: center;
}

.sec_system {
  background-color: #f5f5f5;
}
.sec_system .sec_row {
  padding: 60px 1em;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sec_system .sec_row {
    padding: 60px 2em;
  }
}
.sec_system .sec_row .sec_col_lt h3 {
  padding-bottom: 24px;
  font-size: 2.2rem;
}
.sec_system .sec_row .sec_col_rt .sec_text {
  max-width: 1100px;
  font-size: 1.6rem;
}

.sec_contact {
  background-image: url(../image/contact-img.jpg);
  background-size: cover;
  background-position: center;
  padding-bottom: 180px;
}
@media (max-width: 768px) {
  .sec_contact {
    padding-bottom: 100px;
  }
}
.sec_contact .sec_header {
  width: 100%;
  max-width: 1600px;
  padding-left: 1em;
  padding-right: 1em;
  margin: 0 auto;
  text-align: center;
}
.sec_contact .sec_header .sec_subtitle {
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  padding-top: 100px;
  padding-bottom: 8px;
  letter-spacing: 1.2px;
}
.sec_contact .sec_header .sec_subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: #000;
}
@media (max-width: 768px) {
  .sec_contact .sec_header .sec_subtitle {
    font-size: 1.4rem;
    padding-top: 60px;
    margin-bottom: 24px;
  }
}
.sec_contact .sec_header .sec_title {
  font-size: 2.4rem;
  padding-top: 16px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .sec_contact .sec_header .sec_title {
    height: auto;
    padding-top: 0;
    padding-bottom: 32px;
  }
}
.sec_contact .sec_header {
  color: #fff;
}
.sec_contact .sec_header .sec_subtitle::after {
  content: "";
  background-color: #fff;
}
.sec_contact .box {
  padding-left: 4%;
  padding-right: 4%;
}
.sec_contact .sec_row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.sec_contact .sec_row .sec_col {
  width: 48%;
}
@media (max-width: 768px) {
  .sec_contact .sec_row .sec_col {
    width: 100%;
  }
}
.sec_contact .sec_row .sec_col .inner {
  max-width: 520px;
  width: 100%;
  padding-left: 80px;
}
.sec_contact .sec_row .sec_col .inner h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.sec_contact .sec_row .sec_col .inner p {
  color: #707070;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .sec_contact .sec_row .sec_col .inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.sec_contact .sec_row .box {
  text-align: center;
}
.sec_contact .sec_row .box p {
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 1.6rem;
}
.sec_contact .sec_row .box .btn {
  margin: 0 auto;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  background: #f9e050;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  transition: background 0.2s ease;
}
@media (max-width: 768px) {
  .sec_contact .sec_row .box .btn {
    flex: 0 0 auto;
    width: 240px;
    font-size: 1.4rem;
    order: 3;
  }
}

footer {
  background: #f5f5f5;
}

.footer_container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 1em;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .footer_container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer_container .footer_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  gap: 40px;
}
.footer_container .footer_flex a {
  font-size: 1.4rem;
}
.footer_container .footer_flex a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer_container .footer_flex {
    flex-direction: column;
    gap: 20px;
  }
}
.footer_container p {
  display: block;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .footer_container p {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */