@charset "UTF-8";

:root {
  --red: #ce0c29;
  --red-dark: #b9001e;
  --pink: #fbc6b8;
  --yellow: #ffde00;
  --black: #111;
  --gray-bg: #f1f1f1;
  --page-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: #111;
  font-family:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.lp-width {
  width: min(var(--page-width), calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 90px 24px;
}

.section__inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 48px;
  text-align: center;
}

.section-heading__en {
  margin-bottom: 4px;
  color: var(--color-red);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading__title {
  margin-bottom: 0;
  font-size: clamp(2rem, 2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.section-heading--small {
  margin-bottom: 28px;
}

.section-heading--small .section-heading__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
/* =========================================================
   Header
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.46);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  width: min(100%, 1440px);
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__logo {
  flex: 0 0 auto;
  color: var(--color-red);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.3;
}
.site-header__logo-main{
    max-height:90px;
}
.site-header__logo-main img{
    height:70px;
    width:70px;
}

.site-nav {
  flex: 1 1 auto;
}

.site-nav__list {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav__list a {
  position: relative;
  display: inline-block;
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s ease;
}

.site-nav__list a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-header__cta {
  flex: 0 0 auto;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 5px 16px rgba(230, 0, 18, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.site-header__cta:hover {
  transform: translateY(-2px);
  background: var(--color-red-dark);
}


/* =========================================================
   FIRST VIEW
========================================================= */

.fv {
  background: #fff;
}

.fv__canvas {
  position: relative;
  width: min(1366px, 100%);
  margin-inline: auto;
}

.fv__art {
  width: 100%;
}

.gnav {
  position: absolute;
  z-index: 10;
  top: 2.1%;
  left: 0;
  width: 100%;
}

.gnav__inner {
  width: 91%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.gnav__logo {
  flex: 0 0 auto;
  width: 56px;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.12em;
}

.gnav__menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5px;
  white-space: nowrap;
  font-size: clamp(8px, 0.72vw, 11px);
  font-weight: 800;
}

.gnav__menu a:hover {
  color: var(--red);
}

.fv__description {
  position: absolute;
  z-index: 5;
  left: 14.3%;
  top: 63.7%;
  width: 43%;
}

.fv__description p {
  margin: 0;
  font-size: clamp(8px, 1.05vw, 15px);
  line-height: 1.4;
  font-weight: 700;
}

.fv__description small {
  display: block;
  margin-top: 5px;
  font-size: clamp(5px, 0.55vw, 8px);
}

.fv__request {
  position: absolute;
  z-index: 8;
  right: 10%;
  top: 64%;
  width: 9%;
  min-width: 72px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
  padding: 66px 0 92px;
  background: #fff;
}

.about__features {
  width: 88%;
  margin: 0 auto 48px;
}

.about-details {
  width: 86%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 70px;
}

.about-detail {
  position: relative;
  min-height: 330px;
  padding-top: 44px;
}

.about-detail__ghost {
  position: absolute;
  z-index: 0;
  top: 0;
  left: -38px;
  color: rgba(206, 12, 41, 0.055);
  font-size: 145px;
  line-height: 0.8;
  font-weight: 900;
}

.ribbon-title {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 0 24px;
  padding: 5px 18px 6px;
  background: var(--red);
  color: #fff;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 900;
  transform: rotate(-3deg);
}

.ribbon-title::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 0;
  border-left: 18px solid var(--red);
  border-top: 9px solid transparent;
}

.ribbon-title small {
  position: absolute;
  left: calc(100% + 22px);
  top: 3px;
  width: max-content;
  color: #222;
  font-size: 13px;
  font-weight: 700;
}

.about-detail__content {
  position: relative;
  z-index: 2;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.about-detail__content p {
  margin: 0;
}

.user-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 15px;
}

.user-copy dl {
  margin: 0;
}

.user-copy dl > div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 10px;
}

.user-copy dt {
  margin: 0;
  padding: 2px 5px;
  border: 1.5px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
}

.user-copy dd {
  margin: 0;
  font-size: 14px;
}

.user-copy small {
  display: block;
  margin-top: 10px;
  font-size: 9px;
  font-weight: 500;
}

.user-illust {
  position: relative;
  min-height: 175px;
}

.person {
  position: absolute;
  bottom: 0;
}

.person--adult {
  left: 18px;
  width: 58px;
  height: 132px;
  border-radius: 30px 30px 12px 12px;
  background:
    linear-gradient(to bottom, #d98055 0 22%, #c94d26 22% 64%, #305aa0 64% 100%);
  transform: rotate(5deg);
}

.person--adult::before {
  content: "";
  position: absolute;
  left: 13px;
  top: -31px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2a070;
}

.person--child {
  left: 92px;
  width: 40px;
  height: 88px;
  border-radius: 20px 20px 10px 10px;
  background:
    linear-gradient(to bottom, #e5a678 0 25%, #ffc42e 25% 62%, #3083b5 62% 100%);
}

.person--child::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -23px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e2a070;
}


/* AREA */

.area-map {
  position: relative;
  height: 175px;
  margin-top: 8px;
}

.area-map__base {
  position: absolute;
  left: 18%;
  top: 4%;
  width: 66%;
  height: 82%;
  background:
    linear-gradient(135deg, #efefef 0 25%, #fafafa 25% 50%, #ededed 50% 75%, #fafafa 75%);
  clip-path: polygon(12% 12%, 61% 0, 93% 22%, 86% 48%, 100% 73%, 59% 92%, 19% 83%, 0 47%);
  opacity: 0.85;
}

.area-label {
  position: absolute;
  padding: 3px 8px 4px;
  background: #f8d8cf;
  font-size: 11px;
  font-weight: 800;
}

.area-label strong {
  margin-left: 4px;
  color: var(--red);
  font-size: 22px;
}

.area-label--saitama {
  left: 21%;
  top: 35%;
}

.area-label--tokyo {
  left: 39%;
  top: 48%;
}

.area-label--chiba {
  right: 11%;
  top: 47%;
}

.area-label--kanagawa {
  left: 40%;
  top: 66%;
}


/* INDUSTRY */

.industry-cloud {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 1px 11px;
  text-align: center;
  line-height: 1.05;
}

.industry-cloud span {
  color: #3174a6;
  font-size: 18px;
  font-weight: 800;
}

.industry-cloud strong {
  color: #e26f38;
  font-size: 31px;
  font-weight: 900;
}

.industry-cloud__mini {
  font-size: 14px !important;
}

.industry-cloud__orange {
  color: #df6d32 !important;
}


/* POS */

.pos-note {
  margin-top: 4px !important;
  font-size: 11px;
}

.pos-report {
  width: 88%;
  height: 137px;
  margin: 19px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 7px;
}

.pos-report__sheet {
  border: 1px solid #c8c8c8;
  background:
    linear-gradient(to bottom, #fff 0 12%, #e9e9e9 12% 14%, #fff 14% 100%),
    repeating-linear-gradient(to right, transparent 0 12px, #d9d9d9 12px 13px),
    repeating-linear-gradient(to bottom, transparent 0 11px, #ddd 11px 12px);
}

.pos-report__sheet:first-child {
  grid-row: 1 / 3;
}


/* =========================================================
   FULL COMPOSITE SECTIONS
========================================================= */

.section-composite {
  width: min(var(--page-width), 100%);
  margin-inline: auto;
}

.reason {
  background: #fac7b9;
}

.section-composite--reason {
  width: min(1180px, 100%);
}

.overview {
  background: #fff;
}

.overview__canvas {
  position: relative;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-composite--overview {
  width: 100%;
}

.overview-values {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.overview-value {
  position: absolute;
  left: 33%;
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.overview-value strong {
  font-size: clamp(11px, 1.6vw, 22px);
  font-weight: 900;
}

.overview-value span {
  font-size: clamp(8px, 1.1vw, 15px);
  font-weight: 700;
}

.overview-value--price {
  top: 31.5%;
}

.overview-value--faces {
  top: 37.8%;
}

.overview-value--place {
  top: 44.4%;
}

.overview-value--length {
  top: 50.6%;
}

.overview-choice-copy {
  position: absolute;
  bottom: 9.7%;
  width: 23%;
  text-align: center;
  line-height: 1.25;
}

.overview-choice-copy strong,
.overview-choice-copy span {
  display: block;
}

.overview-choice-copy strong {
  font-size: clamp(10px, 1.4vw, 20px);
}

.overview-choice-copy span {
  margin-top: 6px;
  font-size: clamp(7px, 0.9vw, 12px);
}

.overview-choice-copy--store {
  left: 26%;
}

.overview-choice-copy--count {
  right: 20%;
}

.set-plan {
  background: #ffde00;
}

.section-composite--set-plan {
  width: min(1180px, 100%);
}

.schedule {
  padding: 45px 0 30px;
  background: #fff;
}

.section-composite--schedule {
  width: min(1180px, calc(100% - 60px));
}


/* =========================================================
   FAQ
========================================================= */
.section--faq {
  background: var(--color-white);
}
.faq__img {
  width: 88%;
  margin: 0 auto 48px;
}
.faq-title-image {
  margin-bottom: 24px;
  text-align: center;
}

.faq-title-image img {
  max-width: 420px;
}

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 3px solid var(--color-black);
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.faq-item[open] {
  border-color: var(--color-red);
}

.faq-item__question {
  position: relative;
  padding: 22px 58px 22px 24px;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  font-size: 1.7rem;
  font-weight: 900;
}

.faq-item[open] .faq-item__question::after {
  content: "−";
}

.faq-item__q {
  display: inline-block;
  margin-right: 8px;
  color: var(--color-red);
  font-size: 1.3rem;
}

.faq-item__answer {
  padding: 0 24px 24px;
  border-top: 1px solid var(--color-border);
}

.faq-item__answer img {
  display: block;
  margin: 20px auto 0;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
  padding: 48px 0 36px;
  background: #fff;
}

.contact__inner {
  width: min(930px, calc(100% - 40px));
  margin-inline: auto;
}

.contact__title {
  width: 490px;
  margin: 0 auto 30px;
}

.contact-form {
  width: 82%;
  margin-inline: auto;
}

.form-field {
  margin-bottom: 13px;
}

.form-field label,
.form-request legend {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
}

.form-field label span,
.form-request legend span {
  display: inline-block;
  margin-left: 3px;
  padding: 1px 4px;
  border-radius: 2px;
  background: var(--red);
  color: #fff;
  font-size: 7px;
  line-height: 1.4;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1.5px solid #222;
  border-radius: 6px;
  background: #fff;
}

.form-field input {
  height: 34px;
  padding: 4px 8px;
}

.form-field textarea {
  min-height: 155px;
  padding: 8px;
  resize: vertical;
}

.form-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-request {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

.form-request label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 22px;
  font-size: 11px;
  font-weight: 700;
}

.privacy {
  margin-top: 16px;
  text-align: center;
  font-size: 10px;
  line-height: 1.45;
}

.privacy p {
  margin: 2px 0;
}

.privacy a {
  color: var(--red);
  font-weight: 900;
}

.privacy label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  font-weight: 800;
}

.form-submit {
  margin-top: 11px;
  text-align: center;
}

.form-submit button {
  width: 175px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.form-submit img {
  width: 100%;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  position: relative;
  background: #fff;
}

.footer__art {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.footer__overlay {
  position: absolute;
  inset: 0;
  width: min(1180px, 100%);
  margin-inline: auto;
  pointer-events: none;
}

.footer__company {
  position: absolute;
  left: 29%;
  top: 43%;
  font-size: clamp(6px, 0.65vw, 9px);
  line-height: 1.45;
}

.footer__company strong,
.footer__company small {
  display: block;
}

.footer__mail {
  position: absolute;
  left: 52%;
  top: 55%;
  pointer-events: auto;
  font-size: clamp(8px, 1vw, 14px);
  font-weight: 900;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .gnav__menu {
    overflow-x: auto;
    max-width: calc(100vw - 100px);
  }

  .about-details {
    width: 94%;
    gap: 45px 30px;
  }

  .ribbon-title {
    font-size: 20px;
  }

  .about-detail__content {
    font-size: 13px;
  }

  .user-content {
    grid-template-columns: 1fr;
  }

  .user-illust {
    display: none;
  }

  .contact-form {
    width: 92%;
  }
}


@media (max-width: 640px) {

  .fv__description {
    position: static;
    width: calc(100% - 32px);
    margin: -1px auto 22px;
    text-align: center;
  }

  .fv__description p {
    font-size: 12px;
  }

  .fv__description small {
    font-size: 8px;
  }

  .fv__request {
    position: fixed;
    z-index: 100;
    right: 12px;
    bottom: 12px;
    top: auto;
    width: 76px;
  }

  .gnav {
    top: 1.2%;
  }

  .gnav__inner {
    width: 95%;
  }

  .gnav__menu {
    font-size: 7px;
  }

  .about {
    padding: 35px 0 50px;
  }

  .about__features {
    width: 97%;
    margin-bottom: 22px;
  }

  .about-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-detail {
    min-height: auto;
    padding-top: 34px;
  }

  .about-detail__ghost {
    left: -10px;
    font-size: 100px;
  }

  .area-map {
    max-width: 390px;
  }

  .section-composite--schedule {
    width: 100%;
  }

  .faq {
    padding-top: 30px;
  }

  .faq__rows {
    width: 100%;
  }

  .contact__title {
    width: min(430px, 90%);
  }

  .contact-form {
    width: 100%;
  }

  .form-name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__overlay {
    display: none;
  }
}
