* {
  margin: 0;
  padding: 0;
}

:root {
  --c-bg1: #f9fcff;
  --c-bg2: #e8f8ff;
  --c-txt: #020b17;
  --c-ac1: #cbf4ff;
  --c-ac2: #f2915c;
  --c-ac3: #2f6fd7;
  --c-ac4: #3bc0d1;
  --c-note: #8f969e;
  --fz-xlg: clamp(2rem, 6vw, 4.5rem);
  --fz-lg: clamp(1.375rem, 2.5vw, 2rem);
  --fz-md: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --fz-sm: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  --fz-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --fz-note: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --img-feat: clamp(96px, 18vw, 160px);
  --img-svc: clamp(120px, 16vw, 200px);
  --img-rep: clamp(280px, 36vw, 500px);
  --gutter: 16px;
  --hd-top: 24px;
  --hd-h: 68px;
  --hd-gap: 24px;
  --fv-offset: calc(var(--hd-top) + var(--hd-h) + var(--hd-gap));
}

@media screen and (min-width: 768px) {
  :root {
    --gutter: 40px;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --gutter: clamp(100px, 8vw, 160px);
  }
}
@media screen and (min-width: 1600px) {
  :root {
    --gutter: 200px;
  }
}
.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-old-mincho-semibold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.crimson-text-regular {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
}

.crimson-text-bold {
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--fv-offset);
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--c-txt);
  background-color: var(--c-bg1);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
p {
  line-height: 2;
  text-align: justify;
}

.l-inner {
  max-width: 100%;
  padding-inline: var(--gutter);
}

.l-full {
  inline-size: 100%;
  max-width: 100%;
  padding-inline: var(--gutter);
  background-color: var(--c-bg2);
}

.br {
  display: block;
}
@media screen and (max-width: 768px) {
  .br {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 900px) {
  .br {
    display: none;
  }
}

.header-button-line,
.cta-button button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 0;
  border-radius: 9999px;
  color: var(--c-bg1);
  background: linear-gradient(135deg, #2e93d8 0%, #43c7d6 48%, #2f6fd7 100%);
  background-size: 200% 200%;
  box-shadow: 0 12px 28px rgba(47, 111, 215, 0.3);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-position 0.5s ease, filter 0.28s ease;
}
.header-button-line:hover,
.cta-button button:hover {
  background-position: 100% 50%;
  box-shadow: 0 18px 38px rgba(47, 111, 215, 0.38);
  filter: saturate(1.12) brightness(1.03);
  transform: translateY(-3px);
}
.header-button-line:active,
.cta-button button:active {
  box-shadow: 0 10px 22px rgba(47, 111, 215, 0.3);
  transform: translateY(-1px);
}

.cta-button button:focus-visible {
  outline: 2px solid var(--c-ac2);
  outline-offset: 3px;
}

.header-button-line a,
.cta-button button a {
  display: block;
}

.header {
  --header-glass-bg: rgba(249, 252, 255, 0.75);
  --header-glass-shadow: 0 16px 40px rgba(2, 11, 23, 0.08);
  --header-glass-filter: blur(12px) saturate(160%);
  position: fixed;
  top: var(--hd-top);
  left: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  width: 92%;
  max-width: 1600px;
  min-height: var(--hd-h);
  margin: 0 auto;
  padding: 12px 40px;
  transform: translateX(-50%);
  border-radius: 9999px;
  background-color: var(--header-glass-bg);
  box-shadow: var(--header-glass-shadow);
  backdrop-filter: var(--header-glass-filter);
  -webkit-backdrop-filter: var(--header-glass-filter);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .header {
    width: calc(100% - 32px);
    padding: 10px 16px;
    border-radius: 32px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .header {
    width: calc(100% - 32px);
    padding: 10px 20px;
  }
}
.header-logo {
  transition: opacity 0.25s ease;
  opacity: 1;
}
.header-logo h1 {
  font-size: var(--fz-md);
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: normal;
  color: var(--c-txt);
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .header-logo h1 {
    font-size: var(--fz-sm);
  }
}
.header-logo:hover {
  opacity: 0.4;
  transition: opacity 0.25s ease;
}
.header-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 9999px;
  color: var(--c-txt);
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}
.header-toggle:focus-visible {
  outline: 2px solid var(--c-ac2);
  outline-offset: 3px;
}
@media screen and (max-width: 768px) {
  .header-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.header-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 9999px;
  background-color: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header-toggle span:nth-child(1) {
  transform: translateY(-6px);
}
.header-toggle span:nth-child(3) {
  transform: translateY(6px);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .header-nav {
    gap: 12px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .header-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 28px;
    background-color: var(--c-bg1);
    box-shadow: var(--header-glass-shadow);
    backdrop-filter: var(--header-glass-filter);
    -webkit-backdrop-filter: var(--header-glass-filter);
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }
}
.header-nav li {
  display: flex;
  align-items: center;
  opacity: 1;
}
.header-nav li a {
  transition: opacity 0.25s ease;
}
@media screen and (max-width: 768px) {
  .header-nav li {
    justify-content: center;
  }
  .header-nav li:not(.header-button-line) {
    padding: 14px 16px;
  }
}
.header-nav li:not(.header-button-line) a:hover {
  opacity: 0.4;
}
.header-nav__divider {
  display: block;
  width: 1px;
  height: 1em;
  background-color: currentColor;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .header-nav__divider {
    display: none;
  }
}
.header.is-open .header-toggle span:nth-child(1) {
  transform: rotate(45deg);
}
.header.is-open .header-toggle span:nth-child(2) {
  opacity: 0;
}
.header.is-open .header-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .header.is-open .header-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.header-button-line {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--c-bg1);
}
@media screen and (max-width: 768px) {
  .header-button-line {
    margin-top: 8px;
  }
}

.fv {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  height: 92vh;
  height: 92svh;
  background-color: #5aaee4;
  background-image: radial-gradient(circle at 16% 12%, rgba(48, 158, 221, 0.92), transparent 34%), radial-gradient(circle at 88% 8%, rgba(84, 217, 205, 0.84), transparent 32%), radial-gradient(circle at 22% 78%, rgba(126, 226, 218, 0.82), transparent 34%), radial-gradient(circle at 58% 50%, rgba(117, 158, 234, 0.86), transparent 38%), radial-gradient(circle at 90% 86%, rgba(36, 90, 184, 0.94), transparent 42%), linear-gradient(135deg, #3fa8dc 0%, #83c6ea 42%, #6f98e8 72%, #2f6fd7 100%);
  background-position: center;
  background-size: cover;
  isolation: isolate;
  gap: 24px;
  color: var(--c-bg1);
}
@media screen and (min-width: 1600px) {
  .fv {
    padding-inline: max(var(--gutter), 12vw);
  }
}
@media screen and (max-width: 768px) {
  .fv {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: max(200vw, 1043.5vh);
  width: max(200vw, 1043.5svh);
  background-image: url("../images/fv_gradation.jpg");
  background-repeat: repeat-x;
  background-position: 0 50%;
  background-size: calc(50% + 1px) 100%;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
  animation: fv-mesh 56s linear infinite;
}
.fv > * {
  position: relative;
  z-index: 1;
}
.fv-left {
  opacity: 0;
  transform: translateY(28px);
  animation: fv-copy-rise 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .fv-left {
    text-align: center;
  }
}
.fv-left h2 {
  margin-bottom: 16px;
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--fz-xlg);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .fv-left h2 {
    font-size: 48px;
  }
}
.fv-left span {
  display: block;
  width: 40px;
  height: 2px;
  margin: 16px 0;
  background-color: var(--c-bg1);
  text-align: left;
}
@media screen and (max-width: 768px) {
  .fv-left span {
    margin: 16px auto;
    text-align: center;
  }
}
.fv-left p {
  white-space: nowrap;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .fv-left p {
    width: min(100%, 320px);
    margin-inline: auto;
    font-size: clamp(0.75rem, 3.8vw, 0.8125rem);
    white-space: nowrap;
    text-align: center;
  }
}
.fv-right {
  opacity: 0;
  transform: translateY(28px);
  animation: fv-copy-rise 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .fv-right {
    animation-delay: 0.64s;
    width: min(100%, 320px);
    margin-inline: auto;
    text-align: center;
    white-space: normal;
  }
}
@media screen and (min-width: 769px) and (max-width: 900px) {
  .fv-right {
    white-space: normal;
  }
}

@keyframes fv-copy-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fv-scroll {
  position: relative;
  z-index: 2;
  display: block;
  width: 48px;
  height: 172px;
  margin: -96px var(--gutter) -76px auto;
  color: var(--c-ac4);
  animation: scroll-cue 3s ease-in-out infinite;
}
.fv-scroll::before, .fv-scroll::after {
  content: "";
  position: absolute;
  display: block;
}
.fv-scroll::before {
  top: 0;
  left: 50%;
  width: 3px;
  height: 144px;
  border-radius: 9999px;
  background-color: currentColor;
  transform: translateX(-50%);
}
.fv-scroll::after {
  top: 143px;
  left: 50%;
  width: 30px;
  height: 3px;
  border-radius: 9999px;
  background-color: currentColor;
  transform: translateY(-50%) rotate(-60deg);
  transform-origin: 0 50%;
}
@media screen and (max-width: 768px) {
  .fv-scroll {
    width: 40px;
    height: 140px;
    margin: -78px var(--gutter) -62px auto;
  }
  .fv-scroll::before {
    height: 116px;
  }
  .fv-scroll::after {
    top: 115px;
    width: 26px;
    height: 3px;
  }
}

@keyframes scroll-cue {
  0%, 100% {
    transform: translateY(-16px);
  }
  50% {
    transform: translateY(16px);
  }
}
@keyframes fv-mesh {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 1px), 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fv::before,
  .fv-left,
  .fv-right,
  .fv-scroll {
    animation: none;
  }
  .fv-left,
  .fv-right {
    opacity: 1;
    transform: none;
  }
}
section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.midashi-section {
  margin-bottom: 40px;
  text-align: center;
}
.midashi-section p {
  margin-bottom: 12px;
  padding: 0;
  font-size: var(--fz-base);
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 1;
  letter-spacing: 20%;
  color: var(--c-ac4);
}
.midashi-section h3 {
  font-size: var(--fz-lg);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  line-height: 1;
}
.midashi-section span {
  display: block;
  width: 40px;
  height: 2px;
  margin: 24px auto;
  background-color: var(--c-ac4);
}

.policy h2 {
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 80px;
  max-width: 920px;
  font-size: var(--fz-lg);
  line-height: 1.5;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
.policy__body {
  max-width: 920px;
  margin-inline: auto;
}
.policy__body > div {
  padding: 32px 0;
  border-top: 1px solid rgba(2, 11, 23, 0.12);
}
.policy__body > div:last-child {
  border-bottom: 1px solid rgba(2, 11, 23, 0.12);
}
.policy__body h3 {
  margin-bottom: 16px;
  font-size: var(--fz-sm);
  line-height: 1.6;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
.policy__body h4 {
  margin-bottom: 10px;
  font-size: var(--fz-base);
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.policy__body p {
  margin-top: 12px;
  color: var(--c-txt);
  font-size: var(--fz-base);
  line-height: 2;
  overflow-wrap: anywhere;
}
.policy__group-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}
.policy__group .policy__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 10px;
}
.policy__list {
  display: grid;
  gap: 8px 24px;
  margin-top: 12px;
  font-size: var(--fz-base);
  line-height: 1.8;
}
.policy__list li {
  position: relative;
  padding-left: 1em;
}
.policy__list li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--c-ac4);
}
.policy__list--cols {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 20px;
}
.policy__contact {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .policy h2 {
    margin-bottom: 40px;
    text-align: left;
  }
  .policy__body > div {
    padding: 24px 0;
  }
  .policy__group-list {
    gap: 20px;
  }
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.cta p {
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta p {
    width: min(100%, 320px);
  }
}
.cta--last {
  margin-bottom: 0;
}
.cta-button button {
  padding: 16px 40px;
  font-size: var(--fz-md);
  text-align: center;
  box-shadow: 0 8px 20px rgba(47, 111, 215, 0.24);
}
.cta-button button:hover {
  box-shadow: 0 12px 26px rgba(47, 111, 215, 0.3);
}
.cta-button button:active {
  box-shadow: 0 6px 16px rgba(47, 111, 215, 0.24);
}
.cta-button a {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--c-bg1);
  text-align: center;
}
.cta-button p {
  margin-top: 6px;
  color: var(--c-note);
  font-size: var(--fz-note);
  text-align: center;
}

.features img,
.services img {
  width: 110px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .features img,
  .services img {
    width: 80px;
  }
}

.features-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .features-wrap {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
}
.features-wrap__item {
  width: 200px;
}
.features-wrap__item p {
  text-align: center;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .features-wrap__item p {
    margin-top: 6px;
  }
}
.features-wrap__item p span {
  position: relative;
  display: inline-block;
  font-size: var(--fz-sm);
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  z-index: 0;
}
.features-wrap__item p span::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0em;
  height: 10px;
  background: var(--c-ac1);
  z-index: -1;
}

.services-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 200px));
  justify-content: center;
  justify-items: center;
  gap: 60px;
}
@media screen and (max-width: 1199px) {
  .services-wrap {
    grid-template-columns: repeat(2, minmax(0, 200px));
  }
}
@media screen and (max-width: 768px) {
  .services-wrap {
    grid-template-columns: minmax(0, 200px);
    gap: 48px;
  }
}
.services-wrap__item {
  width: min(100%, 200px);
}
.services-wrap__item h4 {
  text-align: center;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .services-wrap__item h4 {
    margin-top: 6px;
  }
}
.services-wrap__item h4 span {
  position: relative;
  display: inline-block;
  font-size: var(--fz-sm);
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  z-index: 0;
}
.services-wrap__item h4 span::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0em;
  height: 10px;
  background: var(--c-ac1);
  z-index: -1;
}
.services-wrap__item p {
  margin-top: 8px;
  text-align: justify;
  line-height: 1.5;
}
.services-note {
  margin: 0 auto;
  margin-top: 48px;
  text-align: center;
  color: var(--c-note);
  font-size: var(--fz-note);
}
@media screen and (max-width: 768px) {
  .services-note {
    width: min(100%, 320px);
  }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__item {
  border-bottom: 1px solid rgba(2, 11, 23, 0.16);
  margin: 0 auto;
  overflow: hidden;
  transition: height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  width: min(56vw, 100%);
}
@media screen and (max-width: 768px) {
  .faq__item {
    width: min(100%, 360px);
  }
}
.faq__item.is-animating {
  will-change: height;
}
.faq__question {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 20px 0;
  font-size: var(--fz-sm);
  cursor: pointer;
  list-style: none;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question:focus-visible {
  outline: 2px solid var(--c-ac1);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq__icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--c-ac4);
  transform-origin: 50% 50%;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--c-bg1);
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}
.faq__item.is-closing .faq__icon {
  transform: rotate(0deg);
}
.faq__answer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 0;
  padding-bottom: 20px;
  line-height: 1.9;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__item[open] .faq__answer {
  opacity: 1;
  transform: translateY(0);
}
.faq__item.is-opening .faq__answer, .faq__item.is-closing .faq__answer {
  opacity: 0;
  transform: translateY(-6px);
}
.faq__label {
  color: var(--c-ac4);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .faq {
    gap: 12px;
  }
  .faq__question {
    gap: 10px;
    padding: 18px 0;
  }
  .faq__question .faq__icon {
    width: 28px;
    height: 28px;
  }
  .faq__answer {
    gap: 10px;
    padding-bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq__item,
  .faq__icon,
  .faq__answer {
    transition: none;
  }
}
.representative {
  display: flex;
  flex-direction: column;
}
.representative__body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .representative__body {
    width: min(56vw, 100%);
    gap: clamp(32px, 3vw, 48px);
  }
}
@media screen and (max-width: 768px) {
  .representative__body {
    width: min(100%, 320px);
  }
}
.representative__body img {
  width: min(100%, var(--img-rep));
  height: auto;
  box-shadow: 0 18px 36px rgba(71, 90, 116, 0.28);
}
@media screen and (min-width: 1024px) {
  .representative__body img {
    flex: 0 0 min(45%, var(--img-rep));
    width: min(45%, var(--img-rep));
  }
}
@media screen and (min-width: 1024px) {
  .representative__body .representative-text {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media screen and (max-width: 768px) {
  .representative__body {
    flex-direction: column;
  }
  .representative__body img,
  .representative__body .representative-text {
    width: min(100%, 420px);
  }
}
.representative-text h4 {
  position: relative;
  display: inline-block;
  font-size: var(--fz-lg);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 12px;
}
.representative-text h4 span {
  margin-left: 16px;
  font-size: var(--fz-base);
  color: var(--c-note);
}
.representative-text h4::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.1em;
  height: 10px;
  background: var(--c-ac1);
  z-index: -1;
}
.representative-text p {
  line-height: 2;
  text-align: justify;
}

.footer {
  width: 100%;
  padding-top: 60px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  --line-logo-size: 40px;
  --line-logo-clear: 24px;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .footer {
    --line-logo-size: 28px;
    --line-logo-clear: 16px;
    gap: 24px;
  }
}
.footer p {
  font-size: var(--fz-lg);
}
@media screen and (max-width: 768px) {
  .footer p {
    font-size: var(--fz-xlg);
  }
}
.footer p {
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  color: var(--c-txt);
}
.footer-line {
  display: block;
  padding: var(--line-logo-clear);
  opacity: 1;
  transition: opacity 0.28s ease;
}
.footer-line .line-icon {
  display: block;
  width: var(--line-logo-size);
  min-width: var(--line-logo-size);
}
.footer-line:hover {
  opacity: 0.4;
}
.footer-policy {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  opacity: 1;
  transition: opacity 0.28s ease;
}
.footer-policy:hover {
  opacity: 0.4;
  transition: opacity 0.28s ease;
}
.footer-small {
  width: calc(100% + var(--gutter) + var(--gutter));
  max-width: 100vw;
  margin-inline: calc(0px - var(--gutter));
  margin-top: 60px;
  padding-top: 24px;
  padding-bottom: 24px;
  text-align: center;
  background-color: var(--c-txt);
}
.footer-small small {
  line-height: 1;
  color: var(--c-bg1);
}/*# sourceMappingURL=style.css.map */
