/* ==========================================================================
   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;
}

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);
}
@media (max-width: 768px) {
  .header {
    height: 64px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 30px;
}
@media (max-width: 1340px) {
  .header__inner {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .header__inner {
    padding-left: 12px;
  }
}

.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: 100%;
  background: #4a90e2;
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  transition: background 0.2s ease;
}
.header__contact:hover {
  background: #2f6fc9;
}
@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: 90vh;
  min-height: 640px;
  margin-top: 92px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fv {
    margin-top: 64px;
    height: 100svh;
    min-height: 560px;
  }
}

.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__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(120, 170, 220, 0.55) 0%, rgba(160, 195, 225, 0.35) 35%, rgba(210, 225, 235, 0.15) 65%, rgba(255, 255, 255, 0) 100%);
}

.fv__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 40px 0;
  color: #fff;
}
@media (max-width: 768px) {
  .fv__inner {
    padding: 40px 24px 0;
  }
}

.fv__lead {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .fv__lead {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
}

.fv__title {
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .fv__title {
    font-size: 3.2rem;
    margin-bottom: 24px;
  }
}

.fv__catch {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .fv__catch {
    font-size: 1.9rem;
    margin-bottom: 28px;
  }
}

.fv__text {
  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_title {
  padding-top: 100px;
  padding-bottom: 32px;
}
@media (max-width: 768px) {
  .sec_header .sec_title {
    height: auto;
    padding-top: 64px;
    padding-bottom: 32px;
  }
}
.sec_header .sec_title img {
  height: 50px;
  width: auto;
}
.sec_header .sec_subtitle {
  font-size: 1.6rem;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .sec_header .sec_subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
}

.sec_advantage {
  background: black;
  color: #fff;
  padding-bottom: 200px;
}
@media (max-width: 768px) {
  .sec_advantage {
    padding: 80px 0;
  }
}
.sec_advantage .sec_header {
  text-align: left;
}
.sec_advantage .sec_row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 1em;
  padding-right: 1em;
  gap: 40px;
}
@media (max-width: 768px) {
  .sec_advantage .sec_row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0 24px;
  }
}
.sec_advantage .sec_row .sec_col {
  width: 50%;
}
@media (max-width: 768px) {
  .sec_advantage .sec_row .sec_col {
    width: 100%;
  }
}
.sec_advantage .sec_row .sec_col h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .sec_advantage .sec_row .sec_col h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
}
.sec_advantage .sec_row .sec_col p {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .sec_advantage .sec_row .sec_col p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.sec_advantage .sec_row .sec_col p:first-of-type {
  margin-bottom: 40px;
}

.sec_about {
  padding: 100px 1em;
}
.sec_about h3 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .sec_about h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
}
.sec_about p {
  font-size: 1.6rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.sec_problem {
  background: #f5f5f5;
  padding: 100px 1em;
}
.sec_problem h3 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
  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: 1200px;
  margin: 0 auto;
  padding-top: 40px;
}
.sec_problem .sec_row .sec_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 40px;
}
@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;
}

.sec_service {
  padding-bottom: 100px;
}
.sec_service .sec_row {
  max-width: 1154px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 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: 340px;
  border: 1px solid #707070;
  padding: 20px 40px 60px 40px;
}
.sec_service .sec_row .service_box .service_icon {
  text-align: center;
  width: 100%;
  height: 180px;
}
.sec_service .sec_row .service_box h3 {
  text-align: center;
  font-size: 1.8rem;
  padding-bottom: 16px;
}
.sec_service .sec_row .service_box p {
  font-size: 1.6rem;
  color: #707070;
}

.sec_approach {
  background: #f5f5f5;
  padding-bottom: 100px;
}
.sec_approach .sec_row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.sec_approach .sec_row .approach_box {
  position: relative;
  width: 100%;
  max-width: 580px;
  padding: 40px;
  border-radius: 10px;
  background: #fff;
}
@media (max-width: 768px) {
  .sec_approach .sec_row .approach_box {
    max-width: 320px;
  }
}
.sec_approach .sec_row .approach_box .side_number {
  position: absolute;
  top: -14px;
  left: 78%;
}
@media (max-width: 768px) {
  .sec_approach .sec_row .approach_box .side_number {
    width: 50px;
  }
}
.sec_approach .sec_row .approach_box h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.sec_approach .sec_row .approach_box p {
  font-size: 1.6rem;
  color: #707070;
}

.sec_seo {
  color: #fff;
  background-image: url(../image/seo-aio-img.jpg);
  background-size: cover;
  background-position: center;
}
.sec_seo .sec_row {
  padding: 100px 1em;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec_seo .sec_row .sec_col_lt h3 {
  font-size: 4rem;
}
.sec_seo .sec_row .sec_col_lt p {
  font-size: 1.6rem;
}
.sec_seo .sec_row .sec_col_rt .sec_text {
  max-width: 1100px;
  font-size: 1.6rem;
}

.sec_works {
  margin-bottom: 40px;
}
.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_flow {
  background: #f5f5f5;
  padding-bottom: 100px;
}
.sec_flow .sec_row {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  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: #4a90e2;
  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: 100px;
  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;
  justify-content: space-between;
  height: 60px;
  padding: 0 24px;
  background-color: #4a8cf7;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: bold;
  border: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
  transition: border-radius 0.2s ease;
}
.sec_qa .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  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: #4a90e2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sec_qa .faq-icon::before {
  width: 12px;
  height: 2px;
}
.sec_qa .faq-icon::after {
  width: 2px;
  height: 12px;
}
.sec_qa .faq-item.active .faq-icon {
  transform: rotate(135deg);
}
.sec_qa .faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #f5f8ff;
  border: 1px solid #4a8cf7;
  border-top: 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_contact {
  background-image: url(../image/contact-img.jpg);
  background-size: cover;
  background-position: center;
  padding-bottom: 100px;
}
.sec_contact .sec_header {
  color: #fff;
}
.sec_contact .box {
  padding-left: 4%;
  padding-right: 4%;
}
.sec_contact .sec_row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 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: 320px;
  height: 80px;
  background: #4a90e2;
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  transition: background 0.2s ease;
}
.sec_contact .sec_row .box .btn:hover {
  background: #2f6fc9;
}
@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 */