html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 0.6944444444vw;
}
@media (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: #222222;
  font-family: "Montserrat", "Zen Kaku Gothic Antique", sans-serif;
  background: #EEE8DD;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: min(81rem, 100vh);
  max-height: 81rem;
  z-index: -1;
  background-image: url("../../assets/img/common/bg-mask.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: 0.3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a[href^="tel:"],
a[href^="mailto:"] {
  text-decoration: none;
}
a[href^="tel:"]:hover, a[href^="tel:"]:active, a[href^="tel:"]:focus,
a[href^="mailto:"]:hover,
a[href^="mailto:"]:active,
a[href^="mailto:"]:focus {
  text-decoration: none;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
  .header__logo a:hover,
  .footer__logo a:hover {
    opacity: 1;
  }
}
.btn {
  display: inline-block;
}

.inner, .inner-s {
  width: 100%;
  height: 100%;
  max-width: 144rem;
  margin: auto;
}
@media screen and (min-width:769px) {
  .inner, .inner-s {
    width: 144rem;
  }
}

:root {
  --header-height: 7rem;
}
@media screen and (min-width:769px) {
  :root {
    --header-height: 10rem;
  }
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  opacity: 0;
  animation: headerFadeIn 0.6s ease 0.05s forwards;
}
@media screen and (max-width:768px) {
  .header__logo:hover, .header__contact:hover, .header__hamburger:hover {
    background-color: rgb(255, 255, 255) !important;
    border-color: #222 !important;
  }
  .header__contact:hover {
    color: #222222 !important;
  }
  .header__hamburger:hover .header__hamburger-line {
    background-color: #222222 !important;
  }
  .header__hamburger.is-open {
    background-color: rgb(34, 34, 34);
    border-color: rgb(34, 34, 34);
  }
  .header__hamburger.is-open .header__hamburger-line {
    background-color: #fff;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.8rem;
}
@media screen and (min-width:769px) {
  .header__inner {
    padding: 2rem 3rem 2rem 10rem;
  }
}
.header__logo {
  flex-shrink: 0;
  width: 9rem;
  height: 4.8rem;
  overflow: hidden;
  border: 0.1rem solid #222;
  border-radius: 1.5rem;
  background-color: rgb(255, 255, 255);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width:769px) {
  .header__logo {
    width: 14.4rem;
    height: 8rem;
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(34px) brightness(0.08);
    -webkit-backdrop-filter: blur(34px) brightness(0.08);
  }
}
.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.3rem 0;
}
@media screen and (min-width:769px) {
  .header__logo a {
    padding: 0.5rem 0;
  }
}
.header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (hover: hover) and (pointer: fine) {
  .header__logo:hover {
    background-color: rgb(34, 34, 34);
    border-color: rgb(34, 34, 34);
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media screen and (min-width:769px) {
  .header__right {
    margin-bottom: 1rem;
  }
}
.header__contact {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 1.2;
  color: #222222;
  text-decoration: none;
  border: 0.1rem solid #222;
  border-radius: 3.2rem;
  background-color: rgb(255, 255, 255);
  padding: 0.7rem 1.4rem;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width:769px) {
  .header__contact {
    font-size: 2rem;
    padding: 1rem 3.9rem;
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(34px) brightness(0.08);
    -webkit-backdrop-filter: blur(34px) brightness(0.08);
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__contact:hover {
    color: #fff;
    background-color: rgb(34, 34, 34);
    border-color: rgb(34, 34, 34);
    opacity: 1;
  }
}
.header__hamburger {
  position: relative;
  z-index: 103;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 0;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border: 0.1rem solid #222;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width:769px) {
  .header__hamburger {
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(34px) brightness(0.08);
    -webkit-backdrop-filter: blur(34px) brightness(0.08);
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__hamburger:hover {
    background-color: rgb(34, 34, 34);
    border-color: rgb(34, 34, 34);
  }
  .header__hamburger:hover .header__hamburger-line {
    background-color: #fff;
  }
}
.header__hamburger-line {
  position: absolute;
  left: 50%;
  width: 1.8rem;
  height: 0.1rem;
  background: #222222;
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-left: -0.9rem;
}
@media screen and (min-width:769px) {
  .header__hamburger-line {
    width: 2.1rem;
    margin-left: -1.05rem;
  }
}
.header__hamburger-line:nth-child(1) {
  top: calc(50% - 0.35rem);
}
.header__hamburger-line:nth-child(2) {
  top: calc(50% + 0.35rem);
}
.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(500px, 85vw);
  max-width: 100%;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  padding: 7rem 1.8rem 1.8rem;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s ease, visibility 0.35s;
  z-index: 102;
}
@media screen and (min-width:769px) {
  .header__drawer {
    width: min(500px, 85vw);
  }
}
.header__drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}
.header__nav-list {
  padding: 0;
  margin: 0;
}
.header__nav-item {
  border-bottom: 1px solid #222222;
}
.header__nav-link {
  display: block;
  padding: 1.25rem 0;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.025em;
  color: #222222;
}
.header__nav-link span {
  display: block;
  font-size: 0.8em;
  color: #222222;
  line-height: 1;
}
.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  z-index: 101;
}
.header__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.is-menu-open {
  overflow: hidden;
}

.footer {
  position: relative;
  z-index: 1;
}
@media screen and (min-width:769px) {
  .footer {
    padding: 4rem 0 7rem;
  }
}
.footer::before {
  content: "";
  position: absolute;
  top: 10rem;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top-right-radius: 1.5rem;
  border-top-left-radius: 1.5rem;
  z-index: -1;
}
@media screen and (min-width:769px) {
  .footer::before {
    top: 21rem;
    border-top-right-radius: 3rem;
    border-top-left-radius: 3rem;
  }
}
.footer__inner {
  max-width: 120rem;
  margin: auto;
}
.footer__bottom {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 2.4rem;
  padding: 2.4rem 1.8rem 4rem;
}
@media screen and (min-width:769px) {
  .footer__bottom {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 11.2rem 4rem;
    align-items: start;
    padding: 5.5rem 0 0;
  }
}
.footer__logo {
  padding-top: 1.2rem;
}
@media screen and (min-width:769px) {
  .footer__logo {
    grid-column: 1;
    grid-row: 1;
  }
}
.footer__logo a {
  display: inline-block;
}
.footer__logo img {
  display: block;
  width: 8rem;
  height: auto;
}
@media screen and (min-width:769px) {
  .footer__logo img {
    width: 10rem;
  }
}
@media screen and (min-width:769px) {
  .footer__nav {
    grid-column: 2;
    grid-row: 1/-1;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}
@media screen and (min-width:769px) {
  .footer__info {
    gap: 0.5rem;
    grid-column: 1;
    grid-row: 2;
    margin: auto 0 0 0;
  }
}
.footer__company {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.75;
  margin: 0;
  color: #222222;
}
.footer__company a {
  color: #222222;
  text-decoration: underline;
}
@media (hover: hover) {
  .footer__company a:hover {
    text-decoration: none;
  }
}
@media screen and (min-width:769px) {
  .footer__company {
    font-size: 1.6rem;
  }
}
.footer__copy {
  font-size: 1.15rem;
  line-height: 1.9;
  font-weight: 500;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  margin: 0;
  color: #222222;
}
@media screen and (min-width:769px) {
  .footer__copy {
    font-size: 1.4rem;
  }
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media screen and (min-width:769px) {
  .footer__nav {
    flex-direction: row;
    gap: 5rem;
  }
}
.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width:769px) {
  .footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 19.2rem;
  }
}
.footer__nav-list li {
  border-bottom: 1px solid #222222;
  margin: 0 0 0.4rem;
}
.footer__nav-link {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  padding: 0.6rem 0;
  text-decoration: none;
}
.footer__nav-link span {
  display: block;
  font-size: 1.1rem;
  line-height: 1.25;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width:769px) {
  .footer__nav-link {
    padding: 1rem 0;
    font-size: 1.6rem;
    line-height: 2.025;
  }
}
.footer .ls-0 {
  letter-spacing: 0 !important;
}

.contact {
  display: flex;
  flex-direction: column;
  padding: 2.4rem 1.8rem;
  margin: 0 1.8rem;
  background: #E94E4D;
  border-radius: 1.5rem;
}
@media screen and (min-width:769px) {
  .contact {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 7rem 8.8rem;
    margin: 0;
    border-radius: 3rem;
  }
}
.contact__left {
  flex-shrink: 0;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width:769px) {
  .contact__left {
    text-align: left;
    margin-bottom: 0;
  }
}
.contact__heading {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.21;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 0.6rem;
}
@media screen and (min-width:769px) {
  .contact__heading {
    font-size: 5.2rem;
    margin-bottom: 1.5rem;
  }
}
.contact__sub {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.44;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #fff;
}
@media screen and (min-width:769px) {
  .contact__sub {
    font-size: 1.8rem;
  }
}
.contact__right {
  display: flex;
  flex-direction: column;
}
.contact__tel {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.225;
  font-weight: 700;
  letter-spacing: 0.025em;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
@media screen and (min-width:769px) {
  .contact__tel {
    font-size: 4rem;
    text-align: left;
    margin-bottom: 0.6rem;
  }
}
.contact__tel a {
  color: #fff;
  text-decoration: none;
}
.contact__tel a:hover {
  opacity: 1;
}
.contact__tel-icon {
  width: 1.8rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width:769px) {
  .contact__tel-icon {
    width: 2.2rem;
  }
}
.contact__hours {
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #FCFBFA;
  text-align: center;
  margin: 0;
}
@media screen and (min-width:769px) {
  .contact__hours {
    text-align: left;
    font-size: 1.6rem;
  }
}
.contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #FCFBFA;
  border: 1px solid #FCFBFA;
  border-radius: 4.5rem;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  align-self: flex-start;
  text-decoration: none;
  margin: 3rem auto 0;
}
.contact__btn .contact__btn-text,
.contact__btn .contact__mail-note {
  transition: color 0.3s ease;
}
.contact__btn:hover {
  opacity: 1;
}
@media (hover: hover) {
  .contact__btn:hover {
    color: #E94E4D;
    background-color: #fff;
    border-color: #fff;
  }
  .contact__btn:hover .contact__btn-text, .contact__btn:hover .contact__mail-note {
    color: #E94E4D;
  }
  .contact__btn:hover .contact__btn-icon {
    transform: translateX(0.3rem);
    filter: brightness(0) saturate(100%) invert(32%) sepia(78%) saturate(1200%) hue-rotate(340deg);
  }
}
@media screen and (min-width:769px) {
  .contact__btn {
    font-size: 2.4rem;
    padding: 1.8rem 4rem 1.2rem 4rem;
    gap: 2.6rem;
    margin: 2rem 0 0;
  }
}
.contact__btn-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}
@media screen and (min-width:769px) {
  .contact__btn-icon {
    width: 3.1rem;
    height: 3.1rem;
  }
}
.contact__mail-note {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: inherit;
}
@media screen and (min-width:769px) {
  .contact__mail-note {
    font-size: 1.6rem;
  }
}

.page-top-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
}

.page-top {
  position: absolute;
  bottom: 5rem;
  right: -2rem;
  display: inline-flex;
  align-items: center;
  padding: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #222222;
  text-decoration: none;
  pointer-events: auto;
  transform: rotate(-90deg);
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width:769px) {
  .page-top {
    bottom: 3rem;
    right: 0;
  }
}

.page-top-wrap.is-visible .page-top {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width:769px) {
  .page-top {
    bottom: 5.7rem;
    right: -0.6rem;
    font-size: 1.2rem;
  }
}
.page-top__arrow {
  display: block;
  width: 0.8rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(90deg);
}
@media screen and (min-width:769px) {
  .page-top__arrow {
    width: 1rem;
  }
}
.page-top__text {
  display: block;
}

.sub-fv {
  position: relative;
  padding: 2rem 0;
  padding-top: calc(var(--header-height, 7rem) + 4rem);
}
@media screen and (min-width:769px) {
  .sub-fv {
    padding: 4rem 0;
    padding-top: calc(var(--header-height, 10rem) + 6.6rem);
  }
}
.sub-fv__inner {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  margin: auto;
}
@media screen and (min-width:769px) {
  .sub-fv__inner {
    padding: 0;
    width: 120rem;
  }
}
.sub-fv__heading {
  margin-bottom: 1.6rem;
}
@media screen and (min-width:769px) {
  .sub-fv__heading {
    margin-bottom: 4.7rem;
  }
}
.sub-fv__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.21;
  font-family: "Montserrat", sans-serif;
  color: #222222;
  margin: 0 0 0.4rem;
}
@media screen and (min-width:769px) {
  .sub-fv__title {
    font-size: 6rem;
    margin: 0 0 1.4rem;
  }
}
.sub-fv__sub {
  display: block;
  font-size: 1.4rem;
  line-height: 1.62;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  letter-spacing: 0.025em;
}
@media screen and (min-width:769px) {
  .sub-fv__sub {
    font-size: 2rem;
  }
}
.sub-fv__breadcrumb {
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  padding: 1rem 0;
}
@media screen and (min-width:769px) {
  .sub-fv__breadcrumb {
    padding: 1.8rem 0;
  }
}
.sub-fv__breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #A0A0A0;
}
@media screen and (min-width:769px) {
  .sub-fv__breadcrumb-list {
    font-size: 1.2rem;
  }
}
.sub-fv__breadcrumb-item {
  display: inline-flex;
  align-items: center;
}
.sub-fv__breadcrumb-item + .sub-fv__breadcrumb-item::before {
  content: "/";
  margin: 0 1.1rem;
  color: #222222;
}
.sub-fv__breadcrumb-link {
  color: #222222;
  text-decoration: none;
}
.sub-fv__breadcrumb-link:hover {
  opacity: 0.7;
}
.sub-fv__content {
  margin-top: 5rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid #222222;
}
@media screen and (min-width:769px) {
  .sub-fv__content {
    margin-top: 13rem;
    padding-bottom: 13rem;
  }
}
.sub-fv__content-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.42;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 2.5rem;
}
@media screen and (min-width:769px) {
  .sub-fv__content-title {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}
.sub-fv__content-lead {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  letter-spacing: 0.025em;
  margin: 0 0 1.6rem;
}
@media screen and (min-width:769px) {
  .sub-fv__content-lead {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
.sub-fv__content-text {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.025em;
  text-align: center;
  margin: 0;
}
@media screen and (min-width:769px) {
  .sub-fv__content-text {
    font-size: 1.6rem;
  }
}
.sub-fv__content-btn-wrap {
  text-align: center;
  margin-top: 2rem;
}
@media screen and (min-width:769px) {
  .sub-fv__content-btn-wrap {
    margin-top: 2.4rem;
  }
}
.sub-fv__content-btn {
  display: inline-block;
  padding: 0.5rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  border: 1px solid #222222;
  border-radius: 3.2rem;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
@media (hover: hover) {
  .sub-fv__content-btn:hover {
    color: #fff;
    background-color: #222222;
    border-color: #222222;
  }
}
@media screen and (min-width:769px) {
  .sub-fv__content-btn {
    font-size: 1.6rem;
    padding: 0.91rem 3.82rem;
  }
}
.sub-fv__about {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  margin: 2.5rem auto 0;
  border-radius: 1.5rem;
  background: #FCFBFA;
  overflow: hidden;
}
@media screen and (min-width:769px) {
  .sub-fv__about {
    margin-top: 4.5rem;
    flex-direction: row;
    align-items: stretch;
    width: 102.4rem;
  }
}
.sub-fv__about-img-wrap {
  flex-shrink: 0;
  aspect-ratio: 16/10;
}
@media screen and (min-width:769px) {
  .sub-fv__about-img-wrap {
    width: 50%;
    max-width: 51.2rem;
    min-height: 0;
    display: flex;
    flex-direction: column;
    aspect-ratio: 512/342;
  }
}
.sub-fv__about-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:769px) {
  .sub-fv__about-img {
    min-height: 0;
    flex: 1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.sub-fv__about-body {
  flex: 1;
  padding: 1.5rem;
}
@media screen and (min-width:769px) {
  .sub-fv__about-body {
    padding: 4rem;
  }
}
.sub-fv__about-title {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 1rem;
  line-height: 1.45;
}
@media screen and (min-width:769px) {
  .sub-fv__about-title {
    font-size: 2.4rem;
    margin-bottom: 2.3rem;
  }
}
.sub-fv__about-text {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.025em;
  margin: 0;
}
@media screen and (min-width:769px) {
  .sub-fv__about-text {
    font-size: 1.6rem;
  }
}

main:has(.sub-fv) {
  position: relative;
}

main > section:not(.fv) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
main > section:not(.fv).is-inview {
  opacity: 1;
  transform: translateY(0);
}

.role-cards {
  padding: 4rem 0 6rem;
}
@media screen and (min-width:769px) {
  .role-cards {
    padding: 9rem 0 13rem;
  }
}
.role-cards__inner {
  padding: 0 2rem;
  margin: auto;
}
@media screen and (min-width:769px) {
  .role-cards__inner {
    padding: 0;
    width: 120rem;
  }
}
.role-cards__heading {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.42;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 2.5rem;
  text-align: center;
}
@media screen and (min-width:769px) {
  .role-cards__heading {
    font-size: 2.8rem;
    margin-bottom: 3.7rem;
  }
}
.role-cards__text {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.025em;
  text-align: center;
  margin: 0 0 3rem;
}
@media screen and (min-width:769px) {
  .role-cards__text {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
}
.role-cards__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.5rem;
}
@media screen and (min-width:769px) {
  .role-cards__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 3rem;
    margin-top: 7.6rem;
  }
}
@media screen and (min-width:769px) {
  .role-cards__cards--two-cols {
    grid-template-columns: repeat(2, 38rem);
    justify-content: center;
  }
}
@media screen and (min-width:769px) {
  .role-cards__cards--centered-last-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5.8rem 3rem;
    margin-top: 6.7rem;
  }
}
@media screen and (min-width:769px) {
  .role-cards__cards--centered-last-row .role-cards__card {
    width: calc((100% - 6rem) / 3);
  }
}
.role-cards__card {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
}
.role-cards__card-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-top-right-radius: 1.5rem;
  border-top-left-radius: 1.5rem;
}
@media screen and (min-width:769px) {
  .role-cards__card-img-wrap {
    aspect-ratio: 380/254;
  }
}
.role-cards__card-body {
  padding: 1.5rem;
}
@media screen and (min-width:769px) {
  .role-cards__card-body {
    padding: 3rem;
  }
}
.role-cards__card-label {
  position: absolute;
  top: -2rem;
  left: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  writing-mode: vertical-rl;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #fff;
  letter-spacing: 0.022em;
  background: #E94E4D;
  padding: 0.8rem 0.5rem;
}
@media screen and (min-width:769px) {
  .role-cards__card-label {
    top: -2.5rem;
    left: 2.6rem;
    font-size: 1.6rem;
    padding: 1.08rem 0.66rem 0.5rem;
  }
}
.role-cards__card-label-v {
  writing-mode: vertical-rl;
}
.role-cards__card-label-num {
  writing-mode: horizontal-tb;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}
@media screen and (min-width:769px) {
  .role-cards__card-label-num {
    font-size: 1.7rem;
    margin-top: 0.6rem;
  }
}
.role-cards__card-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.role-cards__card-title {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 0.6rem;
  line-height: 1.45;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #222222;
}
@media screen and (min-width:769px) {
  .role-cards__card-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.4rem;
  }
}
.role-cards__card-text {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.5625;
  letter-spacing: 0.025em;
  margin: 0;
}
@media screen and (min-width:769px) {
  .role-cards__card-text {
    font-size: 1.6rem;
  }
}
.role-cards__consult {
  position: relative;
  margin-top: 4rem;
  background: #222222;
  padding: 5rem 2rem;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
@media screen and (min-width:769px) {
  .role-cards__consult {
    margin-top: 5rem;
    padding: 9rem 21rem 9rem;
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem;
  }
}
.role-cards__consult::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/img/common/radial-gradient-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  z-index: 1;
}
@media screen and (min-width:769px) {
  .role-cards__consult::before {
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem;
  }
}
.role-cards__consult::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 100%;
  background: linear-gradient(to bottom, #D87957 0%, #4D2110 100%);
  z-index: 1;
}
@media screen and (min-width:769px) {
  .role-cards__consult::after {
    width: 3rem;
  }
}
.role-cards__consult-title {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #FFFFFF;
  margin: 0 0 2rem;
  text-align: center;
  line-height: 1.42;
}
@media screen and (min-width:769px) {
  .role-cards__consult-title {
    font-size: 2.8rem;
    margin-bottom: 3.8rem;
  }
}
.role-cards__consult-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media screen and (min-width:769px) {
  .role-cards__consult-items {
    padding: 0 5rem;
  }
}
.role-cards__consult-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (min-width:769px) {
  .role-cards__consult-item {
    gap: 0.7rem;
    padding-bottom: 0.9rem;
    margin-bottom: 1.5rem;
  }
}
.role-cards__consult-item:last-child {
  margin-bottom: 3rem;
}
@media screen and (min-width:769px) {
  .role-cards__consult-item:last-child {
    margin-bottom: 4.2rem;
  }
}
.role-cards__consult-icon {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width:769px) {
  .role-cards__consult-icon {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.role-cards__consult-text {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #FFFFFF;
  line-height: 1.8;
  letter-spacing: 0.025em;
  margin: 0;
  flex: 1;
}
@media screen and (min-width:769px) {
  .role-cards__consult-text {
    font-size: 1.6rem;
  }
}
.role-cards__consult-lead {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #FFFFFF;
  line-height: 1.8;
  letter-spacing: 0.025em;
  text-align: center;
  margin: 1.5rem 0 2.5rem;
}
@media screen and (min-width:769px) {
  .role-cards__consult-lead {
    font-size: 1.6rem;
    margin: 1.5rem 0 3.5rem;
  }
}
.role-cards__consult-btn-wrap {
  text-align: center;
}
.role-cards__consult-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.44;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #FCFBFA;
  border: 1px solid #FCFBFA;
  text-decoration: none;
  border-radius: 4.5rem;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  z-index: 2;
}
@media screen and (min-width:769px) {
  .role-cards__consult-btn {
    font-size: 2rem;
    padding: 1.3rem 3.1rem;
  }
}
.role-cards__consult-btn .contact__btn-icon {
  transition: transform 0.3s ease, filter 0.3s ease;
}
@media (hover: hover) {
  .role-cards__consult-btn:hover {
    color: #222;
    background-color: #fff;
    border-color: #fff;
    opacity: 1;
  }
  .role-cards__consult-btn:hover .contact__btn-icon {
    transform: translateX(0.3rem);
    filter: brightness(0);
  }
}

.service-flow {
  padding: 4rem 0 5rem;
  background: #fff;
  border-radius: 1.5rem;
}
@media screen and (min-width:769px) {
  .service-flow {
    padding: 13rem 0;
    border-radius: 3rem;
  }
}
.service-flow__inner {
  padding: 0 2rem;
  margin: auto;
}
@media screen and (min-width:769px) {
  .service-flow__inner {
    padding: 0 8.8rem;
    width: 120rem;
  }
}
.service-flow__heading {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 2.5rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width:769px) {
  .service-flow__heading {
    font-size: 2.8rem;
    margin-bottom: 3.7rem;
  }
}
.service-flow__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #222222;
}
.service-flow__note {
  margin: 1.5rem 0 0;
  font-size: 1.3rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  text-align: right;
}
@media screen and (min-width:769px) {
  .service-flow__note {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}
.service-flow__item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #222222;
}
@media screen and (min-width:769px) {
  .service-flow__item {
    flex-direction: row;
    align-items: stretch;
  }
}
.service-flow__item-num {
  color: #E94E4D;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  margin-right: 0.5rem;
}
@media screen and (min-width:769px) {
  .service-flow__item-num {
    font-size: 2rem;
    margin-right: 1rem;
  }
}
.service-flow__item-head {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.44;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  padding: 1.5rem 0;
  border-bottom: 1px solid #222222;
  flex-shrink: 0;
}
@media screen and (min-width:769px) {
  .service-flow__item-head {
    font-size: 1.8rem;
    width: 25.5rem;
    max-width: 25.5rem;
    padding: 2.4rem 2rem 2rem 0;
    border-bottom: none;
    border-right: 1px solid #222222;
  }
}
.service-flow__item-body {
  flex: 1;
  padding: 1.5rem 0;
}
@media screen and (min-width:769px) {
  .service-flow__item-body {
    padding: 2.3rem 0 2.1rem 3.5rem;
  }
}
.service-flow__item-body p {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.025em;
  margin: 0;
}
@media screen and (min-width:769px) {
  .service-flow__item-body p {
    font-size: 1.6rem;
  }
}

.reason-cards {
  position: relative;
  padding: 4rem 0 9rem;
}
@media screen and (min-width:769px) {
  .reason-cards {
    padding: 13rem 0 9rem;
  }
}
.reason-cards::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 90%;
  height: 1px;
  background: #222222;
  margin: auto;
}
@media screen and (min-width:769px) {
  .reason-cards::before {
    width: 120rem;
  }
}
.reason-cards__inner {
  padding: 0 2rem;
  margin: auto;
}
@media screen and (min-width:769px) {
  .reason-cards__inner {
    padding: 0 8.8rem;
    width: 120rem;
  }
}
.reason-cards__heading {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 2.5rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width:769px) {
  .reason-cards__heading {
    font-size: 2.8rem;
    margin-bottom: 3.7rem;
  }
}
.reason-cards__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width:769px) {
  .reason-cards__list {
    gap: 3rem;
  }
}
.reason-cards__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (min-width:769px) {
  .reason-cards__card {
    flex-direction: row;
    align-items: stretch;
  }
}
.reason-cards__card-img-wrap {
  width: 100%;
  aspect-ratio: 512/342;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (min-width:769px) {
  .reason-cards__card-img-wrap {
    width: 50%;
    max-width: 51.2rem;
    min-height: 34.1rem;
  }
}
.reason-cards__card-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.reason-cards__card-body {
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width:769px) {
  .reason-cards__card-body {
    flex: 1;
    padding: 4rem 4rem;
  }
}
.reason-cards__card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.71;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #fff;
  letter-spacing: 0.025em;
  background: #E94E4D;
  border-radius: 1.5rem;
  padding: 0.2rem 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1rem;
}
@media screen and (min-width:769px) {
  .reason-cards__card-label {
    font-size: 1.4rem;
    padding: 0.05rem 1rem;
    margin-bottom: 2rem;
  }
}
.reason-cards__card-label-num {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3;
}
@media screen and (min-width:769px) {
  .reason-cards__card-label-num {
    font-size: 1.7rem;
  }
}
.reason-cards__card-title {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #E94E4D;
  margin: 0 0 0.8rem;
  line-height: 1.45;
}
@media screen and (min-width:769px) {
  .reason-cards__card-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.reason-cards__card-text {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.5625;
  letter-spacing: 0.025em;
  margin: 0;
}
@media screen and (min-width:769px) {
  .reason-cards__card-text {
    font-size: 1.6rem;
  }
}

.service-faq {
  padding: 6rem 0 9rem;
}
@media screen and (min-width:769px) {
  .service-faq {
    padding: 13rem 0 9rem;
  }
}
.service-faq__inner {
  padding: 0 2rem;
  margin: auto;
}
@media screen and (min-width:769px) {
  .service-faq__inner {
    padding: 0 8.8rem;
    width: 120rem;
  }
}
.service-faq__heading {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 2.5rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width:769px) {
  .service-faq__heading {
    font-size: 2.8rem;
    margin-bottom: 3.6rem;
  }
}
.service-faq__list {
  display: flex;
  flex-direction: column;
}
.service-faq__item {
  border-bottom: 1px solid #222222;
}
.service-faq__item:first-child {
  border-top: 1px solid #222222;
}
.service-faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.44;
  color: #222222;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.service-faq__question:focus {
  outline: none;
}
@media screen and (min-width:769px) {
  .service-faq__question {
    font-size: 1.8rem;
    padding: 2.9rem 0;
  }
}
.service-faq__q {
  color: #e94e4d;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  line-height: 1.27;
  flex-shrink: 0;
  margin-right: 0.5rem;
}
@media screen and (min-width:769px) {
  .service-faq__q {
    font-size: 2.2rem;
    margin-right: 0.8rem;
  }
}
.service-faq__question-text {
  flex: 1;
  padding-right: 3rem;
}
.service-faq__icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: #222222;
}
.service-faq__icon-plus {
  display: block;
}
.service-faq__icon-minus {
  display: none;
}
.service-faq__item.is-open .service-faq__icon-plus {
  display: none;
}
.service-faq__item.is-open .service-faq__icon-minus {
  display: block;
}
.service-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.service-faq__answer-inner {
  padding: 0 0 1rem 0;
}
@media screen and (min-width:769px) {
  .service-faq__answer-inner {
    padding: 0 0 2rem 0;
  }
}
.service-faq__answer p {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.025em;
  text-align: justify;
  margin: 0;
  padding-right: 1.8rem;
}
@media screen and (min-width:769px) {
  .service-faq__answer p {
    font-size: 1.6rem;
    padding-right: 3rem;
  }
}

.faq {
  padding: 4rem 0 9rem;
}
@media screen and (min-width:769px) {
  .faq {
    padding: 9.5rem 0 8rem;
  }
}
.faq__inner {
  position: relative;
  padding: 0 2rem;
  margin: auto;
  z-index: 1;
}
@media screen and (min-width:769px) {
  .faq__inner {
    padding: 0 8.8rem;
    width: 120rem;
  }
}
.faq__category {
  margin-bottom: 5rem;
}
@media screen and (min-width:769px) {
  .faq__category {
    margin-bottom: 13rem;
  }
}
.faq__category-title {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #222222;
  line-height: 1.42;
}
@media screen and (min-width:769px) {
  .faq__category-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    padding-bottom: 3.7rem;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid #222222;
}
.faq__item:first-child {
  border-top: none;
}
.faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.44;
  color: #222222;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.faq__question:focus {
  outline: none;
}
@media screen and (min-width:769px) {
  .faq__question {
    font-size: 1.8rem;
    padding: 2rem 0;
  }
}
.faq__q {
  color: #e94e4d;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  line-height: 1.27;
  flex-shrink: 0;
  margin-right: 0.5rem;
}
@media screen and (min-width:769px) {
  .faq__q {
    font-size: 2.2rem;
    margin-right: 1.1rem;
  }
}
.faq__question-text {
  flex: 1;
  padding-right: 3rem;
}
.faq__icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: #222222;
}
.faq__icon-plus {
  display: block;
}
.faq__icon-minus {
  display: none;
}
.faq__item.is-open .faq__icon-plus {
  display: none;
}
.faq__item.is-open .faq__icon-minus {
  display: block;
}
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.faq__answer-inner {
  padding: 0 0 1.5rem 0;
}
@media screen and (min-width:769px) {
  .faq__answer-inner {
    padding: 0 0 2rem 0;
  }
}
.faq__answer p {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.025em;
  text-align: justify;
  margin: 0;
  padding-right: 1.8rem;
}
@media screen and (min-width:769px) {
  .faq__answer p {
    font-size: 1.6rem;
    padding-right: 3rem;
  }
}

.plan-cards {
  position: relative;
  padding: 4rem 0 6rem;
}
@media screen and (min-width:769px) {
  .plan-cards {
    padding: 9rem 0 13rem;
  }
}
.plan-cards__inner {
  padding: 0 2rem;
  margin: auto;
}
@media screen and (min-width:769px) {
  .plan-cards__inner {
    padding: 0 8.8rem;
    width: 120rem;
  }
}
.plan-cards__heading {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 2.5rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width:769px) {
  .plan-cards__heading {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}
.plan-cards__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width:769px) {
  .plan-cards__list {
    gap: 3rem;
  }
}
.plan-cards__card {
  display: flex;
  flex-direction: column-reverse;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (min-width:769px) {
  .plan-cards__card {
    flex-direction: row;
    align-items: stretch;
  }
}
.plan-cards__card-body {
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width:769px) {
  .plan-cards__card-body {
    flex: 1;
    padding: 4rem 4rem;
  }
}
.plan-cards__card-img-wrap {
  width: 100%;
  aspect-ratio: 512/342;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (min-width:769px) {
  .plan-cards__card-img-wrap {
    width: 50%;
    max-width: 51.2rem;
    min-height: 34.1rem;
  }
}
.plan-cards__card-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.plan-cards__card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #fff;
  letter-spacing: 0.025em;
  background: #E94E4D;
  border-radius: 1.5rem;
  padding: 0.2rem 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1rem;
}
@media screen and (min-width:769px) {
  .plan-cards__card-label {
    font-size: 1.4rem;
    padding: 0.3rem 1rem;
    margin-bottom: 2rem;
  }
}
.plan-cards__card-label-num {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3;
}
@media screen and (min-width:769px) {
  .plan-cards__card-label-num {
    font-size: 1.7rem;
  }
}
.plan-cards__card-title {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 0.8rem;
  line-height: 1.45;
}
@media screen and (min-width:769px) {
  .plan-cards__card-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.plan-cards__card-text, .plan-cards__card-desc {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.5625;
  letter-spacing: 0.025em;
  margin: 0;
}
@media screen and (min-width:769px) {
  .plan-cards__card-text, .plan-cards__card-desc {
    font-size: 1.6rem;
  }
}
.plan-cards__card-price-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}
@media screen and (min-width:769px) {
  .plan-cards__card-price-list {
    margin: 3rem 0 0;
  }
}
.plan-cards__card-price-list {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.6;
}
@media screen and (min-width:769px) {
  .plan-cards__card-price-list {
    font-size: 1.6rem;
  }
}
.plan-cards__card-price-term, .plan-cards__card-price-amount {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  margin-right: 0.2em;
}
@media screen and (min-width:769px) {
  .plan-cards__card-price-term, .plan-cards__card-price-amount {
    font-size: 1.8rem;
  }
}
.plan-cards__card-price-amount::before {
  content: " | ";
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  margin: 0 0.4em;
}

.plan-estimate {
  position: relative;
  padding: 6rem 0 9rem;
}
@media screen and (min-width:769px) {
  .plan-estimate {
    padding: 13rem 0 9rem;
  }
}
.plan-estimate::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 90%;
  height: 1px;
  background: #222222;
  margin: auto;
}
@media screen and (min-width:769px) {
  .plan-estimate::before {
    width: 120rem;
  }
}
.plan-estimate__inner {
  padding: 0 2rem;
  margin: auto;
}
@media screen and (min-width:769px) {
  .plan-estimate__inner {
    padding: 0 8.8rem;
    width: 120rem;
  }
}
.plan-estimate__heading {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 2.5rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width:769px) {
  .plan-estimate__heading {
    font-size: 2.8rem;
    margin-bottom: 3.7rem;
  }
}
.plan-estimate__intro {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.025em;
  margin: 0 auto 3rem;
  text-align: center;
}
@media screen and (min-width:769px) {
  .plan-estimate__intro {
    font-size: 1.6rem;
    margin-bottom: 4.6rem;
  }
}
.plan-estimate__table-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width:769px) {
  .plan-estimate__table-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}
.plan-estimate__tax-note {
  font-size: 1.2rem;
  line-height: 1.64;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 1rem 0 0;
  text-align: right;
}
@media screen and (min-width:769px) {
  .plan-estimate__tax-note {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
}
.plan-estimate__table-wrap {
  border: 1px solid #222222;
  overflow: hidden;
}
@media screen and (min-width:769px) {
  .plan-estimate__table-wrap {
    border-right: none;
  }
  .plan-estimate__table-wrap:first-child {
    border-left: none;
  }
}
.plan-estimate__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.plan-estimate__col--work {
  width: 15%;
}
.plan-estimate__col--price {
  width: 85%;
}
.plan-estimate__row {
  border-bottom: 1px solid #222222;
}
.plan-estimate__row:last-child {
  border-bottom: none;
}
.plan-estimate__cell {
  padding: 1.2rem 1.5rem;
  font-size: 1.2rem;
  line-height: 1.64;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  border-right: 1px solid #222222;
  vertical-align: middle;
}
.plan-estimate__cell:last-child {
  border-right: none;
}
@media screen and (min-width:769px) {
  .plan-estimate__cell {
    font-size: 1.4rem;
    padding: 1.5rem 1rem;
  }
}
.plan-estimate__cell--full {
  text-align: left;
}
.plan-estimate__cell--head {
  font-weight: 500;
}
.plan-estimate__row--head .plan-estimate__cell {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.45;
  text-align: center;
}
@media screen and (min-width:769px) {
  .plan-estimate__row--head .plan-estimate__cell {
    font-size: 2rem;
    padding: 1.5rem 4rem;
  }
}
.plan-estimate__cell--work {
  width: 5%;
  text-align: center;
}
.plan-estimate__cell--price {
  width: 95%;
  text-align: left;
}
@media screen and (min-width:769px) {
  .plan-estimate__cell--price {
    padding: 1.5rem 4rem;
  }
}
.plan-estimate__row--note .plan-estimate__cell {
  font-size: 1.2rem;
  line-height: 1.64;
  letter-spacing: 0.025em;
}
@media screen and (min-width:769px) {
  .plan-estimate__row--note .plan-estimate__cell {
    font-size: 1.4rem;
  }
}

.fv {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  padding-top: calc(var(--header-height, 7rem) + 5rem);
}
@media screen and (min-width:769px) {
  .fv {
    padding: 4rem 0 11rem;
    padding-top: calc(var(--header-height, 10rem) + 4rem);
  }
}
.fv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 2.4rem;
  padding: 0 1rem;
}
@media screen and (min-width:769px) {
  .fv__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 4rem;
    padding: 0 4.2rem;
  }
}
.fv__nav {
  flex-shrink: 0;
}
@media screen and (max-width:768px) {
  .fv__nav {
    display: none;
  }
}
.fv__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media screen and (min-width:769px) {
  .fv__nav-list {
    gap: 0.5rem;
    padding: 16.3rem 2.3rem 2.3rem;
  }
}
.fv__nav-item {
  border-bottom: 1px solid #222222;
}
.fv__nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #222222;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  text-decoration: none;
}
.fv__nav-link span {
  display: block;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width:769px) {
  .fv__nav-link {
    font-size: 1.6rem;
    letter-spacing: 0.025rem;
    line-height: 2;
    padding: 1rem 0;
  }
}
.fv__bg {
  position: relative;
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 7.5rem 3.5rem 0 2rem;
  z-index: 1;
}
@media screen and (min-width:769px) {
  .fv__bg {
    width: 95.3rem;
    min-height: 98.5rem;
    padding: 19.7rem 14.5rem 18rem 9.4rem;
  }
}
.fv__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 125%;
  background-image: url("../../assets/img/index/dictionary.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width:769px) {
  .fv__bg::before {
    width: 95.3rem;
    height: 98.5rem;
  }
}
.fv__bg .fv__title, .fv__bg .fv__text {
  position: relative;
  z-index: 1;
}
.fv__title {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.45;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #FFFFFF;
  margin: 0 0 1.4rem;
}
@media screen and (min-width:769px) {
  .fv__title {
    font-size: 4.2rem;
    margin-bottom: 7rem;
  }
}
.fv__text {
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  padding: 1.4rem 0;
  margin: 0;
}
@media screen and (min-width:769px) {
  .fv__text {
    padding: 3.7rem 0;
  }
}
.fv__desc {
  font-size: 1.25rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #FFFFFF;
  line-height: 1.69;
  letter-spacing: 0.025em;
  margin: 0;
}
@media screen and (min-width:769px) {
  .fv__desc {
    font-size: 1.6rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.is-front-page .fv__nav {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.is-front-page .fv__bg {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.concerns {
  position: relative;
  padding: 11rem 0 3.6rem;
  z-index: 1;
}
@media screen and (min-width:769px) {
  .concerns {
    padding: 6rem 0 7rem;
  }
}
.concerns::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 15rem;
  background-image: url(../../assets/img/common/line-bg-01.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (min-width:769px) {
  .concerns::before {
    top: -34.3rem;
    left: 6.5rem;
    width: 87rem;
    height: 70.5rem;
  }
}
.concerns__bg {
  position: relative;
  background: #222222;
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem;
  margin: 0 2rem 0 0;
}
@media screen and (min-width:769px) {
  .concerns__bg {
    margin: 0 6.5rem 0 0;
  }
}
.concerns__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/img/common/radial-gradient-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem;
  z-index: 1;
}
.concerns__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 100%;
  background: linear-gradient(to bottom, #D87957 0%, #4D2110 100%);
  z-index: 1;
}
@media screen and (min-width:769px) {
  .concerns__bg::after {
    width: 3rem;
  }
}
.concerns__inner {
  position: relative;
  padding: 5rem 1.8rem 6rem;
  margin: auto;
  z-index: 2;
}
@media screen and (min-width:769px) {
  .concerns__inner {
    padding: 13rem 5.5rem 13rem 12rem;
    width: 120rem;
  }
}
.concerns__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../../assets/img/common/sticky-note-icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (min-width:769px) {
  .concerns__inner::before {
    top: -5rem;
    right: -1.4rem;
    width: 7rem;
    height: 13.9rem;
  }
}
.concerns__heading {
  margin-bottom: 2.4rem;
}
@media screen and (min-width:769px) {
  .concerns__heading {
    margin-bottom: 5.5rem;
  }
}
.concerns__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.21;
  font-family: "Montserrat", sans-serif;
  color: #FFFFFF;
  margin: 0 0 0.6rem;
}
@media screen and (min-width:769px) {
  .concerns__title {
    font-size: 5.2rem;
    margin-bottom: 1.5rem;
  }
}
.concerns__sub {
  font-size: 1.4rem;
  line-height: 1.44;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #FFFFFF;
  margin: 0;
}
@media screen and (min-width:769px) {
  .concerns__sub {
    font-size: 1.8rem;
  }
}
.concerns__body {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (min-width:769px) {
  .concerns__body {
    flex-direction: row;
    align-items: stretch;
    gap: 4rem;
  }
}
.concerns__img {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (min-width:769px) {
  .concerns__img {
    position: relative;
    width: 100%;
    max-width: 49.2rem;
    aspect-ratio: auto;
    min-height: 0;
    align-self: stretch;
  }
}
.concerns__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media screen and (min-width:769px) {
  .concerns__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}
.concerns__cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width:769px) {
  .concerns__cards {
    gap: 2.5rem;
  }
}
.concerns__card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.8rem;
}
@media screen and (min-width:769px) {
  .concerns__card {
    padding: 3rem 3rem;
  }
}
.concerns__card-label {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.71;
  font-weight: 500;
  letter-spacing: 0.025rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #FFFFFF;
  background: #484640;
  border-radius: 1.6rem;
  padding: 0 1.1rem 0 0.9rem;
}
@media screen and (min-width:769px) {
  .concerns__card-label {
    font-size: 1.4rem;
  }
}
.concerns__card-label-number {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  margin-left: 0.3rem;
}
@media screen and (min-width:769px) {
  .concerns__card-label-number {
    font-size: 1.7rem;
  }
}
.concerns__card-title {
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.45;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0.8rem 0 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #222222;
}
@media screen and (min-width:769px) {
  .concerns__card-title {
    font-size: 2rem;
    margin: 1.5rem 0 1.4rem;
    padding-bottom: 1.5rem;
  }
}
.concerns__card-text {
  font-size: 1.3rem;
  line-height: 1.5625;
  font-weight: 500;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0;
}
@media screen and (min-width:769px) {
  .concerns__card-text {
    font-size: 1.6rem;
  }
}

.one-year-history {
  position: relative;
  z-index: 1;
  padding: 3.6rem 0 0;
}
@media screen and (min-width:769px) {
  .one-year-history {
    padding: 6rem 0 0;
  }
}
.one-year-history__inner {
  position: relative;
  padding: 0 1.8rem;
  margin: auto;
  z-index: 2;
}
@media screen and (min-width:769px) {
  .one-year-history__inner {
    padding: 0 8.8rem;
    width: 120rem;
  }
}
.one-year-history__heading {
  margin-bottom: 2.4rem;
  text-align: center;
}
@media screen and (min-width:769px) {
  .one-year-history__heading {
    margin-bottom: 5.3rem;
  }
}
.one-year-history__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.21;
  font-family: "Montserrat", sans-serif;
  color: #222222;
  margin: 0 0 0.6rem;
  text-align: center;
}
@media screen and (min-width:769px) {
  .one-year-history__title {
    font-size: 5.2rem;
    margin-bottom: 1.5rem;
  }
}
.one-year-history__sub {
  font-size: 1.4rem;
  line-height: 1.44;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0;
  text-align: center;
}
@media screen and (min-width:769px) {
  .one-year-history__sub {
    font-size: 1.8rem;
  }
}
.one-year-history__lead {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 1rem;
  text-align: center;
}
@media screen and (min-width:769px) {
  .one-year-history__lead {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
}
.one-year-history__text {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 2.4rem;
  text-align: left;
}
@media screen and (min-width:769px) {
  .one-year-history__text {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
}
.one-year-history__images {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width:769px) {
  .one-year-history__images {
    margin-top: 12.8rem;
  }
}
.one-year-history__img {
  width: 50%;
  flex-shrink: 0;
  aspect-ratio: 4/3;
  max-height: 48rem;
}
.one-year-history__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  vertical-align: top;
}

.company-role {
  position: relative;
  padding: 3.6rem 2rem 6rem;
  overflow: hidden;
}
@media screen and (min-width:769px) {
  .company-role {
    overflow: visible;
    padding: 13rem 0 5.3rem;
  }
}
.company-role::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3.7rem;
  width: 100%;
  height: 140%;
  background-image: url(../../assets/img/common/line-bg-02.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (min-width:769px) {
  .company-role::before {
    top: -4rem;
    right: 0;
    width: 89rem;
    height: 93rem;
    background-size: contain;
  }
}
.company-role__inner {
  padding: 0;
  margin: auto;
}
@media screen and (min-width:769px) {
  .company-role__inner {
    padding: 0;
    width: 120rem;
  }
}
.company-role__content {
  flex: 1;
  min-width: 0;
  max-width: 83rem;
  text-align: center;
}
@media screen and (min-width:769px) {
  .company-role__content {
    text-align: right;
  }
}
.company-role__heading {
  margin-bottom: 1.2rem;
  text-align: left;
}
@media screen and (min-width:769px) {
  .company-role__heading {
    margin-bottom: 2rem;
  }
}
.company-role__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.21;
  font-family: "Montserrat", sans-serif;
  color: #222222;
  margin: 0 0 0.6rem;
  text-align: left;
}
@media screen and (min-width:769px) {
  .company-role__title {
    font-size: 5.2rem;
    margin-bottom: 1.5rem;
  }
}
.company-role__sub {
  font-size: 1.4rem;
  line-height: 1.44;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0;
  text-align: left;
}
@media screen and (min-width:769px) {
  .company-role__sub {
    font-size: 1.8rem;
  }
}
.company-role__text {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 3rem 0 2.4rem;
  text-align: left;
}
@media screen and (min-width:769px) {
  .company-role__text {
    font-size: 1.6rem;
    margin: 5rem 0 3rem;
  }
}
.company-role__btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.26;
  font-family: "Montserrat", sans-serif;
  color: #222222;
  border: 1px solid #222222;
  border-radius: 3.2rem;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
@media (hover: hover) {
  .company-role__btn:hover {
    color: #fff;
    background-color: #222222;
    border-color: #222222;
  }
}
@media screen and (min-width:769px) {
  .company-role__btn {
    font-size: 1.5rem;
    padding: 0.91rem 3.82rem;
  }
}

.works {
  padding: 0 0 3.6rem;
  z-index: 0;
}
@media screen and (min-width:769px) {
  .works {
    padding: 6rem 0 7rem;
  }
}
.works__bg {
  position: relative;
  background: #222222;
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem;
  margin: 0 0 0 2rem;
}
@media screen and (min-width:769px) {
  .works__bg {
    margin: 0 0 0 6.5rem;
  }
}
.works__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../assets/img/common/radial-gradient-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem;
  z-index: 1;
}
.works__bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1rem;
  height: 100%;
  background: linear-gradient(to bottom, #D87957 0%, #4D2110 100%);
  z-index: 1;
}
@media screen and (min-width:769px) {
  .works__bg::after {
    width: 3rem;
  }
}
.works__inner {
  position: relative;
  padding: 5rem 1.8rem 6rem;
  margin: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (min-width:769px) {
  .works__inner {
    padding: 13rem 12rem 14.3rem 5.5rem;
    width: 120rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}
.works__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../../assets/img/common/sticky-note-icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (min-width:769px) {
  .works__inner::before {
    top: -5rem;
    left: -1.4rem;
    width: 7rem;
    height: 13.9rem;
  }
}
.works__heading {
  flex-shrink: 0;
}
@media screen and (min-width:769px) {
  .works__heading {
    width: 100%;
    max-width: 22rem;
  }
}
.works__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.21;
  font-family: "Montserrat", sans-serif;
  color: #FFFFFF;
  margin: 0 0 0.6rem;
}
@media screen and (min-width:769px) {
  .works__title {
    font-size: 5.2rem;
    margin-bottom: 1.5rem;
  }
}
.works__sub {
  font-size: 1.4rem;
  line-height: 1.44;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #FFFFFF;
  margin: 0;
}
@media screen and (min-width:769px) {
  .works__sub {
    font-size: 1.8rem;
  }
}
.works__cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media screen and (min-width:769px) {
  .works__cards {
    gap: 2.1rem 2.5rem;
  }
}
.works__empty-wrap {
  grid-column: 1/-1;
}
.works__empty {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #FCFBFA;
  margin: 0;
  text-align: center;
  padding: 2rem 0;
}
@media screen and (min-width:769px) {
  .works__empty {
    font-size: 1.6rem;
    padding: 3rem 0;
  }
}
.works__card {
  display: block;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.works__card:hover {
  opacity: 0.9;
}
.works__card:hover .works__card-img img {
  transform: scale(1.08);
}
.works__card-img {
  width: 100%;
  aspect-ratio: 370/246.67;
  overflow: hidden;
  background: #e8e8e8;
  border-radius: 1.2rem;
  margin-bottom: 0.6rem;
}
.works__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.works__card-title {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #FCFBFA;
  margin: 0;
}
@media screen and (min-width:769px) {
  .works__card-title {
    font-size: 1.6rem;
  }
}

.plan {
  padding: 3.6rem 2rem 9rem;
}
@media screen and (min-width:769px) {
  .plan {
    padding: 6rem 0 9rem;
  }
}
.plan__inner {
  padding: 0;
  margin: auto;
}
@media screen and (min-width:769px) {
  .plan__inner {
    padding: 0;
    width: 120rem;
  }
}
.plan__heading {
  text-align: center;
  margin-bottom: 2.4rem;
}
@media screen and (min-width:769px) {
  .plan__heading {
    margin-bottom: 5.5rem;
  }
}
.plan__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.21;
  font-family: "Montserrat", sans-serif;
  color: #222222;
  margin: 0 0 0.6rem;
  text-align: center;
}
@media screen and (min-width:769px) {
  .plan__title {
    font-size: 5.2rem;
    margin-bottom: 1.5rem;
  }
}
.plan__sub {
  font-size: 1.4rem;
  line-height: 1.44;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0;
  text-align: center;
}
@media screen and (min-width:769px) {
  .plan__sub {
    font-size: 1.8rem;
  }
}
.plan__lead {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.025em;
  text-align: center;
  margin: 0 0 2.4rem;
}
@media screen and (min-width:769px) {
  .plan__lead {
    font-size: 1.6rem;
    margin-bottom: 3.2rem;
  }
}
.plan__table-wrap {
  position: relative;
  overflow-x: auto;
  margin-bottom: 2.4rem;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.4rem;
}
@media screen and (min-width:769px) {
  .plan__table-wrap {
    padding-bottom: 0;
  }
}
.plan__scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #222222;
  opacity: 0.85;
  pointer-events: none;
}
@media screen and (min-width:769px) {
  .plan__scroll-hint {
    display: none;
  }
}
.plan__scroll-hint-text {
  animation: plan-scroll-hint-pulse 2s ease-in-out infinite;
}
@keyframes plan-scroll-hint-pulse {
  0%, 100% {
    opacity: 0.85;
  }
  50% {
    opacity: 0.5;
  }
}
.plan__table {
  width: 100%;
  min-width: 52rem;
  border-collapse: collapse;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: #222222;
}
@media screen and (min-width:769px) {
  .plan__table {
    min-width: 0;
    font-size: 1.6rem;
  }
}
.plan__row {
  border-bottom: 1px solid #222222;
}
.plan__row:last-child {
  border-bottom: none;
}
.plan__row--head .plan__cell {
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 500;
  padding: 1rem 1.2rem;
}
@media screen and (min-width:769px) {
  .plan__row--head .plan__cell {
    font-size: 1.8rem;
    padding: 2.2rem 2rem 1.9rem;
  }
}
.plan__cell {
  padding: 1rem 1.2rem;
  border: 1px solid #222222;
  vertical-align: middle;
  text-align: center;
}
.plan__row .plan__cell:first-child {
  border-left: none;
}
.plan__row .plan__cell:last-child {
  border-right: none;
}
@media screen and (min-width:769px) {
  .plan__cell {
    padding: 2.5rem 2rem;
  }
}
.plan__cell--period {
  width: 28%;
  min-width: 10rem;
}
.plan__cell--content {
  width: 43%;
}
@media screen and (min-width:769px) {
  .plan__cell--content {
    padding: 2.5rem 2rem 2.5rem 5rem;
  }
}
tbody .plan__cell--content {
  text-align: left;
}
.plan__cell--price {
  width: 14.5%;
  min-width: 10rem;
  white-space: nowrap;
}
.plan__num {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  margin-right: 0.2em;
}
@media screen and (min-width:769px) {
  .plan__num {
    font-size: 1.9rem;
  }
}
.plan__num-unit {
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width:769px) {
  .plan__num-unit {
    font-size: 1.5rem;
  }
}
.plan__note {
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
  color: #222222;
  margin: 0 0 0 auto;
  max-width: -moz-max-content;
  max-width: max-content;
  text-align: left;
}
@media screen and (min-width:769px) {
  .plan__note {
    font-size: 1.4rem;
  }
}
.plan__btn-wrap {
  text-align: center;
  margin-top: 2rem;
}
@media screen and (min-width:769px) {
  .plan__btn-wrap {
    margin-top: 2.5rem;
  }
}
.plan__btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.26;
  font-family: "Montserrat", sans-serif;
  color: #222222;
  border: 1px solid #222222;
  border-radius: 3.2rem;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
@media (hover: hover) {
  .plan__btn:hover {
    color: #fff;
    background-color: #222222;
    border-color: #222222;
  }
}
@media screen and (min-width:769px) {
  .plan__btn {
    font-size: 1.5rem;
    padding: 0.91rem 3.82rem;
  }
}

.works-list {
  position: relative;
  z-index: 1;
  padding: 4rem 0 9rem;
}
@media screen and (min-width:769px) {
  .works-list {
    padding: 9rem 0 8rem;
  }
}
.works-list__inner {
  padding: 0 2rem;
  margin: 0 auto;
}
@media screen and (min-width:769px) {
  .works-list__inner {
    padding: 0 0;
    width: 120rem;
  }
}
.works-list__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width:769px) {
  .works-list__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.4rem 3rem;
  }
}
.works-list__item {
  margin: 0;
}
.works-list__item:not(.works-list__item--empty) {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .works-list__item:not(.works-list__item--empty) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.works-list__item:not(.works-list__item--empty).is-inview {
  opacity: 1;
  transform: translateY(0);
}
.works-list__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: opacity 0.25s ease;
}
.works-list__card:hover {
  opacity: 0.95;
}
.works-list__card:hover .works-list__card-img-wrap img {
  transform: scale(1.08);
}
.works-list__card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (min-width:769px) {
  .works-list__card-img-wrap {
    aspect-ratio: 380/254;
  }
}
.works-list__card-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.works-list__card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  text-align: right;
  padding: 1.5rem 1.5rem;
}
@media screen and (min-width:769px) {
  .works-list__card-content {
    padding: 3rem 3rem;
  }
}
.works-list__card-title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #222222;
  flex-shrink: 0;
}
@media screen and (min-width:769px) {
  .works-list__card-title {
    font-size: 2rem;
    margin: 0 0 1.5rem;
    padding-bottom: 1.4rem;
  }
}
.works-list__card-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5625;
  letter-spacing: 0.025em;
  text-align: left;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0;
  flex: 1;
  min-height: 0;
}
@media screen and (min-width:769px) {
  .works-list__card-text {
    font-size: 1.6rem;
  }
}
.works-list__card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid #222222;
  border-radius: 1.5rem;
  width: 4.7rem;
  height: 2.5rem;
  margin: 2rem 0 0 auto;
}
@media screen and (min-width:769px) {
  .works-list__card-arrow {
    width: 4.7rem;
    height: 2.5rem;
    margin: 2.5rem 0 0 auto;
  }
}
.works-list__card-arrow img {
  width: 2rem;
  height: auto;
  display: block;
}
@media screen and (min-width:769px) {
  .works-list__card-arrow img {
    width: 2.4rem;
  }
}
.works-list__pagination {
  margin-top: 4rem;
}
@media screen and (min-width:769px) {
  .works-list__pagination {
    margin-top: 5rem;
  }
}
.works-list__pagination-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
@media screen and (min-width:769px) {
  .works-list__pagination-list {
    gap: 1.5rem;
  }
}
.works-list__pagination-item {
  margin: 0;
}
.works-list__pagination-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  font-size: 1.4rem;
  color: #222222;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (min-width:769px) {
  .works-list__pagination-ellipsis {
    font-size: 2rem;
  }
}
.works-list__pagination-prev, .works-list__pagination-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  text-decoration: none;
  color: #222222;
  transition: opacity 0.25s ease;
}
.works-list__pagination-prev:hover, .works-list__pagination-next:hover {
  opacity: 0.7;
}
.works-list__pagination-prev img, .works-list__pagination-next img {
  width: 2.4rem;
  height: auto;
  display: block;
}
.works-list__pagination-prev img {
  transform: rotate(180deg);
}
.works-list__pagination-num {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.8rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  color: #222222;
  text-decoration: none;
  transition: color 0.25s ease;
}
@media screen and (min-width:769px) {
  .works-list__pagination-num {
    font-size: 2rem;
  }
}
.works-list__pagination-num:hover {
  color: #E94E4D;
}
.works-list__pagination-num.is-current {
  color: #E94E4D;
  pointer-events: none;
}

.works-single {
  position: relative;
  z-index: 1;
  padding: 3rem 0 9rem;
}
@media screen and (min-width:769px) {
  .works-single {
    padding: 9rem 0 9rem;
  }
}
.works-single__inner {
  padding: 0 2rem;
  margin: 0 auto;
}
@media screen and (min-width:769px) {
  .works-single__inner {
    padding: 0 8.8rem;
    width: 120rem;
  }
}
.works-single__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.46;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 2rem;
}
@media screen and (min-width:769px) {
  .works-single__title {
    font-size: 3rem;
    margin-bottom: 4.8rem;
  }
}
.works-single__main-img-wrap {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (min-width:769px) {
  .works-single__main-img-wrap {
    margin-bottom: 3rem;
  }
}
.works-single__main-img {
  width: 100%;
  aspect-ratio: 16/10;
  height: auto;
  display: block;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:769px) {
  .works-single__main-img {
    aspect-ratio: 1024/683;
  }
}
.works-single__sub-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media screen and (min-width:769px) {
  .works-single__sub-images {
    gap: 3rem;
    margin-bottom: 5rem;
  }
}
.works-single__sub-img-wrap {
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
}
.works-single__sub-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  border-radius: 1.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:769px) {
  .works-single__sub-img {
    aspect-ratio: 497/331;
  }
}
.works-single__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  letter-spacing: 0.025em;
  line-height: 1.8;
}
@media screen and (min-width:769px) {
  .works-single__table {
    font-size: 1.6rem;
  }
}
.works-single__row {
  border-bottom: 1px solid #222222;
}
.works-single__row:first-child th, .works-single__row:first-child td {
  border-top: 1px solid #222222;
}
.works-single__label {
  font-size: 1.4rem;
  line-height: 1.44;
  color: #E94E4D;
  width: 8rem;
  vertical-align: top;
  text-align: left;
  font-weight: 500;
  border-right: 1px solid #222222;
  padding: 1.2rem 0;
}
@media screen and (min-width:769px) {
  .works-single__label {
    font-size: 1.8rem;
    width: 18rem;
    padding: 2.6rem 0;
  }
}
.works-single__value {
  padding: 1.2rem 0 1.2rem 1rem;
  vertical-align: top;
  color: #222222;
}
@media screen and (min-width:769px) {
  .works-single__value {
    padding: 2.3rem 0 2rem 3.6rem;
  }
}
.works-single__others {
  padding-top: 6rem;
}
@media screen and (min-width:769px) {
  .works-single__others {
    padding-top: 13rem;
  }
}
.works-single__others-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.42;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  text-align: center;
  margin: 0 0 2.5rem;
}
@media screen and (min-width:769px) {
  .works-single__others-title {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}
.works-single__back-wrap {
  margin: 4rem 0 0;
  text-align: center;
}
@media screen and (min-width:769px) {
  .works-single__back-wrap {
    margin-top: 3.8rem;
  }
}
.works-single__back-btn {
  display: inline-block;
  padding: 0.8rem 3rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  text-decoration: none;
  border: 1px solid #222222;
  border-radius: 3.2rem;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
@media (hover: hover) {
  .works-single__back-btn:hover {
    color: #fff;
    background-color: #222222;
    border-color: #222222;
  }
}
@media screen and (min-width:769px) {
  .works-single__back-btn {
    font-size: 1.6rem;
    padding: 0.9rem 3.9rem;
  }
}

.privacy-policy {
  padding: 2rem 0 9rem;
}
@media screen and (min-width:769px) {
  .privacy-policy {
    padding: 5.5rem 0 8rem;
  }
}
.privacy-policy__inner {
  position: relative;
  padding: 0 2rem;
  margin: auto;
  z-index: 1;
}
@media screen and (min-width:769px) {
  .privacy-policy__inner {
    padding: 0 8.8rem;
    width: 120rem;
  }
}
.privacy-policy__list {
  display: flex;
  flex-direction: column;
}
.privacy-policy__item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #222222;
}
@media screen and (min-width:769px) {
  .privacy-policy__item {
    padding: 3.6rem 0;
    margin-bottom: 0.5rem;
  }
}
.privacy-policy__title {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.44;
  margin: 0 0 1rem;
}
@media screen and (min-width:769px) {
  .privacy-policy__title {
    font-size: 1.8rem;
    margin-bottom: 1.3rem;
  }
}
.privacy-policy__number {
  color: #e94e4d;
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  margin-right: 0.8rem;
}
@media screen and (min-width:769px) {
  .privacy-policy__number {
    font-size: 2rem;
    margin-right: 1.1rem;
  }
}
.privacy-policy__text {
  padding-left: 0;
}
.privacy-policy__text p {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.025em;
  margin: 0 0 0.8em;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width:769px) {
  .privacy-policy__text p {
    font-size: 1.5rem;
  }
}
.privacy-policy__text p:last-child {
  margin-bottom: 0;
}
.privacy-policy__text ol, .privacy-policy__text ul {
  display: block;
  margin: 0.5em 0 1em;
  padding: 0 0 0 1.5em;
  list-style-position: outside;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
@media screen and (min-width:769px) {
  .privacy-policy__text ol, .privacy-policy__text ul {
    font-size: 1.5rem;
    padding-left: 2em;
  }
}
.privacy-policy__text ol {
  list-style-type: decimal;
  list-style: decimal outside;
}
.privacy-policy__text ul {
  list-style-type: disc;
  list-style: disc outside;
}
.privacy-policy__text ol ul, .privacy-policy__text ul ul {
  margin: 0.3em 0;
  padding-left: 1.5em;
  list-style-position: outside;
}
.privacy-policy__text ol ul {
  list-style-type: disc;
  list-style: disc outside;
}
.privacy-policy__text li {
  display: list-item;
  margin: 0 0 0.5em;
  padding: 0;
}
.privacy-policy__text li p {
  margin: 0 0 0.5em;
}
.privacy-policy__text li p:last-child {
  margin-bottom: 0;
}

.form {
  padding: 4rem 0 9rem;
}
@media screen and (min-width:769px) {
  .form {
    padding: 9rem 0 9rem;
  }
}
.form__inner {
  position: relative;
  padding: 0 2rem;
  margin: auto;
  z-index: 1;
}
@media screen and (min-width:769px) {
  .form__inner {
    padding: 0 8.8rem;
    width: 120rem;
  }
}
.form__intro {
  text-align: justify;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
  max-width: 64em;
}
@media screen and (min-width:769px) {
  .form__intro {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
.form__lead {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.025em;
  margin: 0 0 2.5rem;
  padding: 0 0.8rem;
}
@media screen and (min-width:769px) {
  .form__lead {
    font-size: 1.6rem;
    margin-bottom: 4.5rem;
    padding: 0 0.8rem;
  }
}
.form__body {
  max-width: 100%;
}
.form__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #222222;
  position: relative;
}
@media screen and (min-width:769px) {
  .form__list::before {
    content: "";
    position: absolute;
    left: 26.7rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #222222;
    pointer-events: none;
  }
}
.form__row {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-bottom: 1px solid #222222;
  gap: 0;
}
@media screen and (min-width:769px) {
  .form__row {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}
@media screen and (min-width:769px) {
  .form__row--inquiry {
    align-items: stretch;
  }
}
@media screen and (min-width:769px) {
  .form__row--inquiry .form__label {
    align-items: flex-start;
  }
}
.form__label {
  flex-shrink: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0 0;
}
@media screen and (min-width:769px) {
  .form__label {
    width: 26.7rem;
    min-width: 26.7rem;
    padding: 2.4rem 0;
  }
}
.form__label-text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
}
@media screen and (min-width:769px) {
  .form__label-text {
    font-size: 1.6rem;
  }
}
.form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  height: 2rem;
  padding: 0 0.6rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #fff;
  background: #e94e4d;
  border-radius: 1.6rem;
}
@media screen and (min-width:769px) {
  .form__required {
    font-size: 1.2rem;
  }
}
.form__optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  height: 2rem;
  padding: 0 0.6rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #fff;
  background: #222222;
  border-radius: 1.6rem;
}
@media screen and (min-width:769px) {
  .form__optional {
    font-size: 1.1rem;
  }
}
.form__input-wrap {
  margin: 0;
  flex: 1;
  min-width: 0;
  padding: 0 0 1.2rem;
}
@media screen and (min-width:769px) {
  .form__input-wrap {
    padding: 1.35rem 0 1.35rem 2rem;
  }
}
.form__input, .form__textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  background: transparent;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width:769px) {
  .form__input, .form__textarea {
    font-size: 1.6rem;
    padding: 1.2rem 1.4rem;
  }
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #B7B7B7;
}
.form__input::placeholder, .form__textarea::placeholder {
  color: #B7B7B7;
}
.form__input:-webkit-autofill, .form__input:-webkit-autofill:hover, .form__input:-webkit-autofill:focus, .form__input:-webkit-autofill:active, .form__textarea:-webkit-autofill, .form__textarea:-webkit-autofill:hover, .form__textarea:-webkit-autofill:focus, .form__textarea:-webkit-autofill:active {
  box-shadow: 0 0 0 30px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: #222222;
}
.form__textarea {
  resize: vertical;
  min-height: 12rem;
}
@media screen and (min-width:769px) {
  .form__textarea {
    min-height: 16rem;
  }
}
.form__inquiry-legend {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  margin: 0 0 1rem;
}
@media screen and (min-width:769px) {
  .form__inquiry-legend {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
}
.form__radio-list {
  list-style: none;
  margin: 1.5rem 0 1.5rem 1rem;
  padding: 0;
}
@media screen and (min-width:769px) {
  .form__radio-list {
    margin: 0.7rem 0 2.4rem 1.4rem;
  }
}
.form__radio-list li + li {
  margin-top: 0.5rem;
}
.form__radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  cursor: pointer;
}
@media screen and (min-width:769px) {
  .form__radio-label {
    font-size: 1.6rem;
  }
}
.form__radio {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0;
  accent-color: #222222;
  cursor: pointer;
}
.form__radio-text {
  display: inline-block;
}
.form__radio-list .wpcf7-list-item {
  display: block;
  margin-top: 0.5rem;
}
.form__radio-list .wpcf7-list-item.first {
  margin-top: 0;
}
.form__radio-list .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.025em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
@media screen and (min-width:769px) {
  .form__radio-list .wpcf7-list-item label {
    font-size: 1.6rem;
  }
}
.form__radio-list .wpcf7-list-item input[type=radio] {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0;
  accent-color: #222222;
  cursor: pointer;
  flex-shrink: 0;
}
.form__radio-list .wpcf7-list-item-label {
  display: inline;
  white-space: normal;
  word-break: normal;
}
.form__row--inquiry .form__input-wrap {
  display: block;
}
.form__row--inquiry .form__input-wrap > .form__radio-list {
  display: block;
}
.form__row--inquiry .form__input-wrap > .form__textarea-wrap {
  display: block;
}
.form__row--inquiry .form__input-wrap > .form__textarea-wrap .wpcf7-form-control-wrap {
  display: block;
}
.form__textarea-wrap {
  margin-top: 0;
  border-top: 1px solid #222222;
  position: relative;
}
@media screen and (min-width:769px) {
  .form__textarea-wrap {
    border-top: none;
  }
  .form__textarea-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 102.4rem;
    height: 1px;
    background: #222222;
  }
}
.form__agree {
  text-align: center;
  padding: 4rem 0 3rem;
}
@media screen and (min-width:769px) {
  .form__agree {
    padding: 5rem 0 4rem;
  }
}
.form__checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  cursor: pointer;
}
@media screen and (min-width:769px) {
  .form__checkbox-label {
    gap: 1.5rem;
    font-size: 1.6rem;
  }
}
.form__checkbox {
  width: 2rem;
  height: 2rem;
  margin: 0;
  accent-color: #222222;
  cursor: pointer;
}
.form__privacy-link {
  color: #E94E4D;
  text-decoration: underline;
  margin-right: 1rem;
}
.form__privacy-link:hover {
  text-decoration: none;
}
.form__submit-wrap {
  text-align: center;
}
.form__submit {
  display: inline-block;
  padding: 0.6rem 4rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.45;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  border: 1px solid #222222;
  border-radius: 3.2rem;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width:769px) {
  .form__submit {
    padding: 0.9rem 3.9rem;
    font-size: 2rem;
  }
}
@media (hover: hover) {
  .form__submit:hover {
    color: #fff;
    background-color: #222222;
    border-color: #222222;
  }
}
.form__submit:focus {
  outline: none;
}

.wpcf7-spinner {
  margin: 0 -2rem 0 0;
}

.error-page {
  padding: 2rem 0 8rem;
}
@media screen and (min-width:769px) {
  .error-page {
    padding: 0 0 13rem;
  }
}
.error-page__inner {
  position: relative;
  padding: 0 2rem;
  margin: auto;
}
@media screen and (min-width:769px) {
  .error-page__inner {
    padding: 0 8.8rem;
    width: 120rem;
  }
}
.error-page__lead {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.6;
  letter-spacing: 0.025em;
  text-align: center;
  margin: 0 0 1.5rem;
}
@media screen and (min-width:769px) {
  .error-page__lead {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.error-page__br-pc {
  display: none;
}
@media screen and (min-width:769px) {
  .error-page__br-pc {
    display: block;
  }
}
.error-page__text {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.025em;
  text-align: center;
  margin: 0 0 1.5rem;
}
@media screen and (min-width:769px) {
  .error-page__text {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
.error-page__note {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  line-height: 1.8;
  letter-spacing: 0.025em;
  text-align: center;
  margin: 0 0 3rem;
}
@media screen and (min-width:769px) {
  .error-page__note {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
}
.error-page__btn-wrap {
  text-align: center;
}
.error-page__btn {
  display: inline-block;
  padding: 0.5rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222222;
  border: 1px solid #222222;
  border-radius: 3.2rem;
  text-decoration: none;
  transition: opacity 0.3s;
  cursor: pointer;
}
.error-page__btn:hover {
  opacity: 0.9;
}
@media screen and (min-width:769px) {
  .error-page__btn {
    font-size: 1.6rem;
    padding: 0.91rem 3.82rem;
  }
}

@media screen and (min-width:769px) {
  .sp-inlineblock {
    display: inline-block !important;
  }
}
@media screen and (max-width:768px) {
  .sp-inlineblock {
    display: none !important;
  }
}

@media screen and (max-width:768px) {
  .pc-only {
    display: none !important;
  }
}
@media screen and (min-width:769px) {
  .pc-only {
    display: block !important;
  }
}

@media screen and (max-width:768px) {
  .sp-inlineblocknone {
    display: inline-block !important;
  }
}
@media screen and (min-width:769px) {
  .sp-inlineblocknone {
    display: none !important;
  }
}

@media screen and (max-width:768px) {
  .sp-only {
    display: block !important;
  }
}
@media screen and (min-width:769px) {
  .sp-only {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */