/* ==========================================================================
   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: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.4;
  -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 {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1em;
}
@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: 186px;
  height: 46px;
  border-radius: 50px;
  background: #ff8d8d;
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  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: 100px;
    height: 30px;
    font-size: 1.2rem;
    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;
  margin-top: 92px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fv {
    margin-top: 64px;
    margin-top: 40px;
    height: 320px;
  }
}

.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 {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 1em 0;
  color: #fff;
}
@media (max-width: 768px) {
  .fv__inner {
    padding: 40px 24px 0;
  }
}

.fv__title {
  font-size: 7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .fv__title {
    font-size: 3.6rem;
    margin-bottom: 8px;
  }
}

.fv__catch {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .fv__catch {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}

.fv_merit {
  background-color: #ff8d8d;
  font-size: 2.2rem;
  width: 400px;
  height: 54px;
  border-radius: 8px;
  border: solid 2px #fff;
  font-weight: bold;
  margin-bottom: 16px;
  padding: 8px 16px;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .fv_merit {
    width: 180px;
    height: 30px;
    font-size: 1.4rem;
    padding: 4px 14px;
    margin-bottom: 10px;
  }
}

.sec_header {
  width: 100%;
  max-width: 1600px;
  padding: 100px 1em;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .sec_header {
    padding: 60px 1em;
  }
}
.sec_header h3 {
  color: #707070;
  font-size: 3.2rem;
}
.sec_header h3 .highlight {
  font-size: 4.3rem;
  color: #c8161e;
}
@media (max-width: 768px) {
  .sec_header h3 .highlight {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .sec_header h3 {
    font-size: 2.6rem;
  }
}

.sec_about {
  padding: 100px 1em;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sec_about {
    padding: 60px 1em;
  }
}
.sec_about h3 {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 8px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .sec_about h3 {
    font-size: 1.8rem;
  }
}
.sec_about p {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sec_about p {
    font-size: 1.8rem;
  }
}

.sec_problem {
  background: #f5f5f5;
}
.sec_problem .sec_row {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}
.sec_problem .sec_row .sec_list {
  padding-bottom: 40px;
}
.sec_problem .sec_row .sec_list li {
  position: relative;
  font-size: 2rem;
  padding: 12px 40px;
}
@media (max-width: 768px) {
  .sec_problem .sec_row .sec_list li {
    font-size: 1.6rem;
    width: 100%;
  }
}
.sec_problem .sec_row .sec_list li.is-check-icon:before {
  content: "";
  position: absolute;
  display: block;
  left: 14px;
  width: 20px;
  height: 20px;
  border-radius: 0;
  background-color: transparent;
  background-image: url(../image/check-mark.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .sec_problem .sec_row .sec_list li.is-check-icon:before {
    left: 18px;
    width: 16px;
    height: 16px;
    margin-top: 4px;
  }
}
.sec_problem .sec_row .sec_text {
  color: #333;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .sec_problem .sec_row .sec_text {
    padding-bottom: 60px;
  }
}

.sec_choose .sec_row {
  max-width: 1400px;
  padding-left: 1em;
  padding-right: 1em;
  margin: 0 auto;
}
.sec_choose .sec_row .choose_box {
  background-color: #f5f5f5;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 80px 40px;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .sec_choose .sec_row .choose_box {
    padding: 40px 20px;
  }
}
.sec_choose .sec_row .choose_box:not(:last-child) {
  margin-bottom: 32px;
}
.sec_choose .sec_row .choose_box .number {
  font-family: "Jost", sans-serif;
  color: #fff;
  -webkit-text-stroke: 1px #707070;
  font-size: 8rem;
  paint-order: stroke fill;
}
.sec_choose .sec_row .choose_box .choose_text {
  max-width: 900px;
}
.sec_choose .sec_row .choose_box .choose_text h4 {
  font-size: 2.6rem;
  padding-bottom: 24px;
}
.sec_choose .sec_row .choose_box .choose_text p {
  font-size: 1.6rem;
  color: #707070;
}
.sec_choose .sec_row .choose_box .choose_img {
  width: 100%;
  max-width: 200px;
}

.sec_service .sec_row {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 1em;
  padding-right: 1em;
}
.sec_service .sec_row .service_box {
  width: 100%;
  max-width: 440px;
  border: 1px solid #707070;
}
.sec_service .sec_row .service_box .service_icon {
  text-align: center;
  padding-top: 3em;
  padding-bottom: 2em;
  width: 100%;
}
.sec_service .sec_row .service_box h4 {
  text-align: center;
  font-size: 2rem;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #d9d9d9;
}
.sec_service .sec_row .service_box p {
  font-size: 1.4rem;
  color: #707070;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
}

.sec_seo {
  color: #fff;
  background-image: url(../image/web-ura-img.jpg);
  background-size: cover;
  background-position: center;
}
.sec_seo .sec_row {
  padding: 100px 1em;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.sec_seo .sec_row .sec_col_lt h3 {
  font-size: 3rem;
}
.sec_seo .sec_row .sec_col_rt .sec_text {
  max-width: 1100px;
  font-size: 1.6rem;
}

.sec_price {
  padding: 0 1em;
}
.sec_price > p {
  text-align: center;
  font-size: 1.6rem;
  max-width: 1000px;
  margin: 0 auto;
}
.sec_price > p:first-of-type {
  margin-bottom: 40px;
}
.sec_price > p:last-of-type {
  margin-top: 40px;
}
.sec_price .price_table {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #c8161e #f5f5f5;
}
.sec_price .price_table::-webkit-scrollbar {
  height: 6px;
}
.sec_price .price_table::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.sec_price .price_table::-webkit-scrollbar-thumb {
  background: #c8161e;
  border-radius: 3px;
}
.sec_price .price_table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  table-layout: fixed;
}
.sec_price .price_table th,
.sec_price .price_table td {
  padding: 18px 16px;
  font-size: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
  white-space: normal;
  word-break: break-word;
}
.sec_price .price_table th:first-child,
.sec_price .price_table td:first-child {
  width: 14%;
}
.sec_price .price_table th:not(:first-child),
.sec_price .price_table td:not(:first-child) {
  width: 17.2%;
}
.sec_price .price_table thead th {
  background: #c8161e;
  color: #fff;
  font-weight: 700;
}
.sec_price .price_table tbody th {
  background: #f5f5f5;
  color: #333;
  font-weight: 700;
  text-align: left;
}
.sec_price .price_table tbody td {
  background: #fff;
}
@media (max-width: 768px) {
  .sec_price .price_table th,
  .sec_price .price_table td {
    padding: 14px 10px;
    font-size: 1.2rem;
  }
}

.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: #ff8d8d;
  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: #ff8d8d;
  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: #fff5f5;
  border: 1px solid #ff8d8d;
  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_web-system {
  background-color: #f5f5f5;
}
.sec_web-system .sec_row {
  padding: 100px 1em;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .sec_web-system .sec_row {
    justify-content: center;
  }
}
.sec_web-system .sec_row .sec_col_lt h3 {
  font-size: 3rem;
}
.sec_web-system .sec_row .sec_col_rt h4 {
  font-size: 2.2rem;
  padding-bottom: 32px;
}
@media (max-width: 768px) {
  .sec_web-system .sec_row .sec_col_rt h4 {
    text-align: center;
  }
}
.sec_web-system .sec_row .sec_col_rt .sec_text {
  max-width: 760px;
  font-size: 1.6rem;
  color: #707070;
}

.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 h3 {
  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: 300px;
  height: 60px;
  background: #ff8d8d;
  border-radius: 50px;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  transition: background 0.2s ease;
}
.sec_contact .sec_row .box .btn:hover {
  background: #c8161e;
}
@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: 1400px;
  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 */