.customer-end {
  /* Color */
  --c-color: #57c3ea;
  --blue-01: #38baf0;
  --blue-02: #0071e3;
  --white: #fff;
  --green-01: #04cb8c;
  --text-color01: #333;
  --text-color02: #666;
  --background-color01: #eff8ff;
  --border-color01: #c0d0dc;

  /* Layout */
  --content-width: 960px;
  --content-width-narrow: 672px;
  --content-gutter: clamp(16px, 3vw, 32px);

  /* Spacing */
  --space-1: 4px; /*4px*/
  --space-2: 8px; /*8px*/
  --space-3: 12px; /*12px*/
  --space-4: 16px; /*16px*/
  --space-5: clamp(20px, 16px + 1vw, 24px); /* 20px-24px */
  --space-6: clamp(24px, 17.6px + 2vw, 32px); /* 24px-32px */
  --space-7: clamp(32px, 20px + 3vw, 48px); /* 32px-48px */
  --space-8: clamp(48px, 24px + 5vw, 80px); /* 48px-80px */

  /* Typography */
  --font-family-base:
    "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Hiragino Sans",
    Meiryo, sans-serif;

  --font-size-xs: 12px; /* 12px */
  --font-size-sm: 14px; /* 14px */
  --font-size-base: 16px; /* 16px */
  --font-size-md: 18px; /* 18px */

  --font-size-heading-3: clamp(18px, 16px + 0.5vw, 20px); /*about-h3,18px-20px*/

  --font-size-heading-2: clamp(20px, 16px + 1.2vw, 26px); /*about-h2,20px-26px*/

  --font-size-heading-1: clamp(28px, 20px + 2.5vw, 40px); /*about-h1,26px-40px*/

  --line-height-body: 1.75;
  --line-height-heading: 1.35;
  --line-height-compact: 1.5;
  --line-height-tight: 1.25;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Shape */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgb(0 0 0 / 6%);

  --shadow-md: 0 2px 6px rgb(0 0 0 / 5%), 0 12px 28px rgb(0 0 0 / 7%);

  /* Motion */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --easing-standard: ease;
}

.customer-end,
.customer-end *::before,
.customer-end *::after {
  box-sizing: border-box;
}
.customer-end h1,
.customer-end h2,
.customer-end h3,
.customer-end h4,
.customer-end h5,
.customer-end p,
.customer-end ul,
.customer-end ol,
.customer-end figure {
  margin: 0;
  padding: 0;
  font-feature-settings: "palt";
}
.customer-end ul,
.customer-end ol {
  list-style: none;
}
.customer-end img {
  max-width: 100%;
  height: auto;
  display: block;
}
.customer-end a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.customer-end {
  margin: 0;
  color: var(--text-color01);
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-body);
}

.customer-end header {
  background-color: var(--white);
  width: 100%;
  height: auto;
  padding: var(--space-3) 0;
  border-bottom: solid 2px var(--c-color);
}
.customer-end header #logo {
  margin: auto;
  width: 46.5%;
  height: auto;
}
.customer-end header #logo img {
  width: 100%;
  height: auto;
}

.customer-end h1 {
  font-size: var(--font-size-heading-1);
  font-weight: var(--font-weight-bold);
  text-align: center;
  padding: calc(var(--space-8) + 0.5vw) 0 var(--space-2);
  color: var(--green-01);
}
.customer-end h1 i {
  font-size: 18.5vw;
  display: block;
  font-style: normal;
  margin: 0 auto var(--space-4);
}
.customer-end h1 i svg {
  width: 1em;
  height: 1em;
  margin: auto;
}
.customer-end h1 + p {
  text-align: center;
  font-size: var(--font-size-base);
  line-height: var(--line-height-tight);
}
.customer-end h1 + p strong {
  display: block;
  font-size: var(--font-size-heading-2);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
}

.customer-end .reservation {
  margin-top: calc(var(--space-8) + 1vw);
  background-color: var(--blue-02);
  text-align: center;
  padding: calc(var(--space-4) + 1vw) 0;
  width: 100%;
  height: auto;
}
.customer-end .reservation h2 {
  color: var(--white);
  font-size: calc(var(--font-size-heading-2) + 0.5vw);
  margin-bottom: var(--space-5);
}
.customer-end .reservation ul {
  background: var(--white);
  width: 90%;
  height: auto;
  border-radius: 5px;
  margin: auto;
  padding: var(--space-7) var(--space-6);
}

.customer-end .reservation-date {
  margin-bottom: var(--space-6);
}
.customer-end .reservation ul .reservation-place {
  margin-bottom: 0;
}

.customer-end .reservation-date-title,
.customer-end .reservation-place-title {
  display: block;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2);
}
.customer-end .reservation-date-title i,
.customer-end .reservation-place-title i {
  color: var(--blue-02);
  margin-right: var(--space-1);
}
.customer-end .reservation-date-title i,
.customer-end .reservation-place-title i,
.customer-end .copy-btn i {
  display: inline-flex;
  width: 1em;
  height: 1em;
  vertical-align: -0.12em;
}
.customer-end .reservation-date-title i svg,
.customer-end .reservation-place-title i svg,
.customer-end .copy-btn i svg {
  width: 100%;
  height: 100%;
}
.customer-end .reservation-date-detail,
.customer-end .reservation-place-detail {
  font-size: calc(var(--font-size-heading-2) + 0.5vw);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}

.customer-end .reservation-date-detail span {
  color: var(--blue-02);
}
.customer-end .google-btn {
  display: flex;
  width: 100%;
  height: auto;
  padding: calc(var(--space-2) + 0.5vw);
  background-color: var(--white);
  margin: var(--space-2) auto 0;
  border: solid 1px var(--border-color01);
  border-radius: 100vmax;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.customer-end .google-btn svg {
  width: 20px;
  aspect-ratio: 1 / 1;
  margin-right: var(--space-2);
  transition: 0.3s;
}
.customer-end input {
  display: block;
  width: 100%;
  padding: var(--space-3);
  border: solid 1px var(--border-color01);
  color: var(--text-color02);
  margin: var(--space-2) auto 0;
  font-size: var(--font-size-base);
}
.customer-end button {
  display: flex;
  width: 90%;
  height: auto;
  padding: calc(var(--space-3) + 0.5vw);
  margin: var(--space-3) auto 0;
  border-radius: 100vmax;
  background-color: var(--blue-02);
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: var(--font-size-base);
  transition: background-color 0.3s;
}
.customer-end button i {
  font-size: 20px;
  color: var(--white);
  margin-right: var(--space-2);
}

.customer-end .copy-msg {
  font-size: var(--font-size-base);
  color: var(--blue-02);
  margin-top: var(--space-4);
  font-weight: var(--font-weight-bold);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.customer-end .access-group {
  display: flex;
  width: 100%;
  height: auto;
  padding: calc(var(--space-2) + 0.5vw);
  margin: var(--space-3) auto 0;
  border-radius: 100vmax;
  background-color: var(--blue-02);
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: var(--font-size-base);
  transition: background-color 0.3s;
}
.customer-end .access-group img {
  display: block;
  width: 20px;
  height: auto;
  margin-right: var(--space-2);
}
.customer-end .csl-sheet {
  padding: calc(var(--space-7) + 1vw) 0 calc(var(--space-7) + 5vw);
  text-align: center;
}
.customer-end .csl-sheet img {
  width: 20vw;
  aspect-ratio: 1 / 1;
  margin: 0 auto var(--space-5);
}
.customer-end .csl-sheet h2 {
  font-size: clamp(18px, 4vw, 26px);
  color: var(--blue-02);
}
.customer-end .csl-sheet p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-compact);
}
.customer-end .csl-btn {
  display: flex;
  width: 70%;
  height: auto;
  padding: calc(var(--space-3) + 0.5vw);
  margin: var(--space-2) auto 0;
  border-radius: 100vmax;
  background-color: var(--blue-02);
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: none;
  cursor: pointer;
  line-height: 1;
  font-size: var(--font-size-base);
  transition: background-color 0.3s;
}
.customer-end .csl-btn i {
  font-size: 20px;
  color: var(--white);
  margin-right: var(--space-1);
  transform: translate(-2px, 1px);
}

.customer-end .select-menu {
  padding: calc(var(--space-7) + 1vw) 0 calc(var(--space-7) + 1.5vw);
  background-color: var(--background-color01);
}
.customer-end .select-menu h2 {
  text-align: center;
  font-size: calc(var(--font-size-heading-2) + 0.5vw);
  margin-bottom: var(--space-4);
}
.customer-end .select-menu h2 + p {
  width: 90%;
  margin: 0 auto var(--space-5);
  text-align: justify;
  font-size: var(--font-size-base);
  line-height: var(--line-height-compact);
}
.customer-end .select-menu section {
  width: 90%;
  height: auto;
  margin: 0 auto var(--space-2);
  padding: var(--space-5);
  background-color: var(--white);
  border-radius: 5px;
}
.customer-end .select-menu section h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-01);
  font-weight: var(--font-weight-bold);
  margin: 0 auto var(--space-2);
}
.customer-end .select-menu section h3 img {
  width: 40px;
  height: auto;
  margin-right: var(--space-2);
}
.customer-end .select-menu .select-web h3 img {
  width: 32px;
}
.customer-end .select-menu section p {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-compact);
  text-align: justify;
}
.customer-end .select-menu > img {
  width: 60%;
  height: auto;
  margin: var(--space-6) auto 0;
}

.customer-end footer {
  width: 100%;
  height: auto;
  padding: var(--space-5) 0;
  background: var(--white);
  border-top: 1px solid var(--border-color01);
}
.customer-end footer p {
  font-size: 10px;
  text-align: center;
}

.customer-end a:focus-visible,
.customer-end button:focus-visible,
.customer-end input:focus-visible {
  outline: 3px solid var(--c-color);
  outline-offset: 3px;
}

.customer-end .customer-success-flow-detail {
  width: min(960px, 90%);
  margin: 0 auto var(--space-7);
}

@media (prefers-reduced-motion: reduce) {
  .customer-end *,
  .customer-end *::before,
  .customer-end *::after {
    transition-duration: 0.01ms !important;
  }
}

/* for pc only ------------------------------------------------------*/

@media screen and (min-width: 768px) {
  .customer-end .sp {
    display: none;
  }

  .customer-end header {
    padding: var(--space-4) 0;
  }
  .customer-end header #logo {
    width: 15%;
  }
  .customer-end h1 {
    padding: calc(var(--space-8) + 1vw) 0 var(--space-5);
  }
  .customer-end h1 i {
    font-size: 7vw;
  }
  .customer-end h1 + p {
    font-size: var(--font-size-md);
    line-height: var(--line-height-tight);
  }
  .customer-end h1 + p strong {
    display: block;
    font-size: 1.8vw;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
  }

  .customer-end .reservation {
    text-align: center;
    padding: calc(var(--space-5) + 0.5vw) 0;
    width: 60vw;
    margin: var(--space-8) auto var(--space-6);
    border-radius: 5px;
  }
  .customer-end .reservation-date {
    margin-bottom: calc(var(--space-6) + 2vw);
  }
  .customer-end .reservation-date-title,
  .customer-end .reservation-place-title {
    font-size: var(--font-size-heading-3);
  }
  .customer-end .reservation-date-detail {
    font-size: calc(var(--font-size-heading-2) + 0.5vw);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-2);
  }
  .customer-end .google-btn {
    width: 45%;
    margin: calc(var(--space-2) + 1vw) auto 0;
    font-size: var(--font-size-md);
  }
  .customer-end .google-btn:hover {
    background-color: #ebebec;
    color: rgba(51, 51, 51, 0.6);
  }
  .customer-end .google-btn:hover svg {
    opacity: 0.5;
  }

  .customer-end input {
    display: block;
    width: 70%;
    margin: var(--space-2) auto 0;
  }
  .customer-end button {
    width: 45%;
    margin: calc(var(--space-2) + 1vw) auto 0;
    font-size: var(--font-size-md);
  }
  .customer-end button:hover {
    background-color: var(--blue-01);
  }
  .customer-end .access-group {
    width: 45%;
    margin-top: calc(var(--space-2) + 1vw);
  }
  .customer-end .access-group:hover {
    background-color: var(--blue-01);
  }

  .customer-end .csl-sheet {
    padding: 0;
    margin-bottom: calc(var(--space-7) + 2vw);
  }
  .customer-end .csl-sheet img {
    width: clamp(65px, 8.5vw, 120px);
    aspect-ratio: 1 / 1;
    margin: 0 auto var(--space-5);
  }
  .customer-end .csl-sheet h2 {
    font-size: clamp(18px, 4vw, 26px);
    color: var(--blue-02);
  }
  .customer-end .csl-sheet p {
    font-size: var(--font-size-md);
  }
  .customer-end .csl-btn {
    width: 24%;
    height: auto;
    padding: calc(var(--space-3) + 0.5vw);
    margin: calc(var(--space-2) + 1vw) auto 0;
    border-radius: 100vmax;
    background-color: var(--blue-02);
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: none;
    cursor: pointer;
    line-height: 1;
    font-size: var(--font-size-md);
  }
  .customer-end .csl-btn:hover {
    background-color: var(--blue-01);
  }
  .customer-end .csl-btn i {
    font-size: 20px;
    color: var(--white);
    margin-right: var(--space-1);
    transform: translate(-2px, 1px);
  }
  .customer-end .select-menu h2 + p {
    width: 50vw;
    font-size: var(--font-size-md);
  }

  .customer-end .select-menu div {
    width: 60vw;
    height: auto;
    display: flex;
    gap: 10px;
    margin: auto;
  }

  .customer-end .select-menu section {
    width: calc((100% - 20px) / 3);
    margin-bottom: 0;
  }
  .customer-end .select-menu section h3 {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    font-size: var(--font-size-heading-3);
  }
  .customer-end .select-menu section h3 img {
    width: 50px;
    height: auto;
    margin-right: var(--space-2);
  }
  .customer-end .select-menu .select-web h3 img {
    width: 42px;
  }
  .customer-end .select-menu section p {
    font-size: var(--font-size-base);
  }
  .customer-end .select-menu > img {
    width: 30%;
  }
}
