/* ------------------------------ */
/* loading */
/* ------------------------------ */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-gradient-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading__content {
  text-align: center;
  color: var(--color-accent);
}

.loading__spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid var(--color-white);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.loading__text {
  font-size: var(--fz-md);
  font-weight: 500;
  letter-spacing: 0.1em;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ------------------------------ */
/* fv */
/* ------------------------------ */
.fv {
  width: 100vw;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .fv {
    height: 600px;
    align-items: flex-end;
  }
}
.fv__bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.fv__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}
.fv__bg-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  background: #000;
  opacity: 0.3;
}

/* ------------------------------ */
.fv__content {
  position: absolute;
  padding-inline: 8px;
  padding-bottom: 20px;
  z-index: 50;
  right: 4%;
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  text-shadow: 0 4px 16px rgba(30, 30, 30, 0.7);
  font-weight: 700;
  max-height: 90%;
}
@media (max-width: 768px) {
  .fv__content {
    right: 50%;
    transform: translateX(50%);
    text-align: center;
    width: 100%;
  }
}
.fv__head {
}
.fv__title {
  font-family: var(--font-title);
  font-size: calc(var(--fz-xl) * 1.4);
  line-height: 116.667%;
}
@media (max-width: 768px) {
  .fv__title ._sp-small {
    font-size: calc(var(--fz-xl) * 1);
    margin-left: -10px;
  }
}
.fv__subtitle {
  font-size: var(--fz-md);
  line-height: 136.364%;
  letter-spacing: 0.2em;
}
.fv__body {
  line-height: 1.4;
  margin-top: 16px;
}
.fv__body-text {
}
.fv__body-highlight {
  margin-top: 4px;
  display: inline-block;
  background: var(--color-white);
  color: var(--color-accent);
  text-shadow: none;
  padding-inline: 4px;
}
.fv__foot {
  line-height: 1.4;
}
.fv__foot-text {
  font-weight: 400;
}
.fv__foot-doctor {
  font-size: var(--fz-md);
}
.fv__cta-button {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .fv__cta-button {
    display: none;
  }
}
.fv__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 32px;
  background: var(--color-gradient-accent);
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: var(--fz-md);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  transition: background 0.7s, transform 0.7s;
  border: none;
  outline: none;
}
.fv__cta-link:hover,
.fv__cta-link:focus {
  background: var(--color-white);
  transform: translateY(6px);
  text-decoration: none;
}
.fv__cta-link:hover .fv__cta-text,
.fv__cta-link:focus .fv__cta-text {
  color: var(--color-accent);
  text-shadow: none;
}
.fv__cta-link:hover .fv__cta-icon,
.fv__cta-link:focus .fv__cta-icon {
  color: var(--color-accent);
}
.fv__cta-text {
  font-size: var(--fz-md);
  font-family: var(--font-title);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: var(--color-white);
}
.fv__cta-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 1000px) {
  .fv__cta-link {
    padding: 14px 20px;
    border-radius: 24px;
    gap: 8px;
  }
}

/* ------------------------------ */
/* message */
/* ------------------------------ */
.message {
  padding-top: 60px;
  background: linear-gradient(to left, #f5f7fa, #e3eeff);
}
@media (max-width: 1000px) {
  .message {
    padding-top: 40px;
  }
}
.message__en-title {
  position: relative;
  top: 40px;
  z-index: 100;
  background: linear-gradient(to right, #1d8fe1, #326ace);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.message__main {
  position: relative;
  padding-block: 40px;
  z-index: 50;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1000px) {
  .message__main {
    flex-direction: column;
    gap: 8px;
    padding-block: 20px;
  }
}
.message__main::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(-1 * (100vw - 970px) / 2);
  width: calc(50vw + 30%);
  height: 100%;
  border-radius: 40px 0px 0px 40px;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .message__main::after {
    width: 100%;
    height: 70%;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    border-radius: 40px;
  }
}
@media (max-width: 600px) {
  .message__main::after {
    height: 85%;
  }
}
@media (max-width: 1000px) {
  .message__main-image {
    max-width: 80%;
  }
}
.message__main-image img {
  border-radius: 0 40px 40px 0;
}
@media (max-width: 1000px) {
  .message__main-image img {
    border-radius: 0 0 40px 40px;
  }
}
.message__main-content {
  padding: 16px;
  max-width: 550px;
}
.message__main-title {
}
.message__main-copy {
  margin-top: 16px;
}
.message__main-subtitle {
  margin-top: 32px;
}
.message__main-doctor {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.2em;
  margin-top: 16px;
}
.message__main-doctor ._sp-small {
  font-size: var(--fz-base);
}
.message__main-recommend {
  margin-top: 16px;
}

/* ------------------------------ */
/* about */
/* ------------------------------ */
.about {
  padding-bottom: 0;
}
.about__container {
}
.about__title {
  text-align: center;
}
.about__en-title {
}
.about__ja-title {
}

/* ------------------------------ */
.about__content-outer {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .about__content-outer {
    gap: 32px;
  }
}
.about__content {
  margin-inline: auto;
  background: #fff;
  border-radius: 40px;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 50px 20px 30px 40px;
  gap: 8px;
}
@media (max-width: 1000px) {
  .about__content {
    max-width: 700px;
    border-radius: 40px 40px 0 0;
    flex-direction: column;
    align-items: center;
    padding: 30px 6% 20px;
  }
}
.about__content-text {
  max-width: 550px;
  display: flex;
  flex-direction: column;
}
.about__message-title {
}
.about__message-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__message-body > p:last-child {
  margin-top: 16px;
  font-weight: 700;
}
.about__image {
  max-width: 550px;
  height: 480px;
  border-radius: 0 0 40px 0;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .about__image {
    height: 300px;
    border-radius: 0 0 40px 40px;
  }
}
.about__image > img {
  height: 100%;
  border-radius: 0 0 40px 0;
  object-fit: cover;
  object-position: bottom left;
  display: block;
}
@media (max-width: 1000px) {
  .about__image > img {
    border-radius: 0 0 40px 40px;
    object-position: bottom center;
  }
}

/* ------------------------------ */
.about__clinic-picture {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  position: relative;
}
.about__clinic-picture::after {
  content: "";
  position: absolute;
  top: 10%;
  left: calc(50% - 50vw);
  width: 82vw;
  height: 100%;
  background: linear-gradient(to left, #f5f7fa 0%, #e3eeff 100%);
  z-index: -10;
}
@media (max-width: 1000px) {
  .about__clinic-picture::after {
    top: 20%;
    left: 0;
    width: 90vw;
  }
}
.about__clinic-img-outer {
  width: 82vw;
  height: auto;
  margin-left: auto;
}
@media (max-width: 1000px) {
  .about__clinic-img-outer {
    width: 90vw;
    height: 200px;
  }
}
.about__clinic-img-outer img {
  object-fit: cover;
  height: 100%;
  object-position: 80% top;
}

/* ------------------------------ */
.about__history-area {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .about__history-area {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.about__history {
  max-width: 420px;
  text-align: right;
}
@media (max-width: 768px) {
  .about__history {
    width: 100%;
  }
}
.about__history-title {
  margin-left: auto;
}
.about__history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 24px;
  position: relative;
}
.about__history-list::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #ebf2f8, #bfe0ed);
}
.about__history-item {
  line-height: 1.4;
}
.about__history-image {
  max-width: 500px;
  height: auto;
}
.about__history-image img {
}

/* ------------------------------ */
.about__qualification-area {
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .about__qualification-area {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.about__qualification {
  max-width: 420px;
}
@media (max-width: 768px) {
  .about__qualification {
    width: 100%;
  }
}
.about__qualification-title {
}
.about__qualification-list {
  padding-left: 24px;
  position: relative;
}
.about__qualification-list::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #ebf2f8, #bfe0ed);
}
.about__qualification-item {
}
.about__qualification-image {
  max-width: 500px;
  height: auto;
}
.about__qualification-image img {
}
/* ------------------------------ */
.about__npo-area {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  padding-block: 60px;
}
@media (max-width: 768px) {
  .about__npo-area {
    padding-block: 40px;
  }
}
.about__npo-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/clinic-bg.jpg") center/cover no-repeat;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken;
  z-index: 0;
}
.about__npo-content {
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 10;
  padding: 40px;
  background: var(--color-white);
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1000px) {
  .about__npo-content {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .about__npo-content {
    padding: 20px 16px;
  }
}
.about__npo-message {
  max-width: 600px;
}
.about__npo-title {
}
.about__npo-body {
}
.about__npo-body > p._emphasize {
  font-size: var(--fz-md);
  font-weight: 700;
  margin-top: 16px;
}
.about__npo-image {
  max-width: 400px;
  height: auto;
  border-radius: 40px;
}
.about__npo-image img {
  border-radius: 40px;
}
/* ------------------------------ */
/* voice */
/* ------------------------------ */
.voice {
  padding-bottom: 0;
}
.voice__container {
}
.voice__head {
  text-align: center;
}
.voice__en-title {
}
.voice__ja-title {
}
.voice__named-list {
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 1000px) {
  .voice__named-list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
.voice__named-item {
  background: #fff;
  border-radius: 40px 40px 0 0;
  box-shadow: var(--box-shadow);
  max-width: 33%;
  padding: 40px 20px;
}
@media (max-width: 1000px) {
  .voice__named-item {
    max-width: 600px;
  }
}
.voice__named-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-inline: auto;
}
.voice__named-image img {
  border-radius: 50%;
}
.voice__named-title {
  font-size: var(--fz-h4);
  letter-spacing: var(--ls-h4);
  margin-top: 24px;
}
.voice__named-body {
}

/* ------------------------------ */
.voice__anonymous-area {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  padding-block: 60px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .voice__anonymous-area {
    padding-block: 40px;
  }
}
.voice__anonymous-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/voice-bg.jpg") center/cover no-repeat;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  z-index: 0;
}
.voice__anonymous-content {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
@media (max-width: 1000px) {
  .voice__anonymous-content {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.voice__anonymous-title {
  text-align: right;
  color: var(--color-accent);
}
@media (max-width: 1000px) {
  .voice__anonymous-title {
    text-align: left;
  }
}
.voice__anonymous-title::after {
  content: "";
  display: block;
  height: 24px;
  width: 100%;
  margin-top: -20px;
  background: #fff;
  border-radius: 2px;
}
.voice__anonymous-list {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 10;
}
@media (max-width: 1000px) {
  .voice__anonymous-list {
    margin-left: auto;
  }
}
.voice__anonymous-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  padding: 16px 24px 16px 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
@media (max-width: 768px) {
  .voice__anonymous-item {
    padding: 8px 16px 8px 56px;
  }
}
.voice__anonymous-item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  width: 24px;
  height: 24px;
  background: var(--color-gradient-accent);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .voice__anonymous-item::before {
    left: 20px;
  }
}
.voice__anonymous-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.voice__anonymous-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
  letter-spacing: 0.1em;
}

/* ------------------------------ */
/* insights */
/* ------------------------------ */
.insights {
}
.insights__container {
}
.insights__head {
}
.insights__en-title {
}
.insights__ja-title {
}
.insights__message {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1000px) {
  .insights__message {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.insights__message-image {
  width: min(100%, 600px);
  aspect-ratio: 16 / 9;
}
.insights__message-text {
  width: min(100%, 500px);
}
.insights__message-copy {
  font-family: var(--font-title);
  font-size: var(--fz-h3);
  line-height: var(--lh-h3);
  letter-spacing: var(--ls-h3);
  font-weight: 700;
  background: linear-gradient(to right, #1d8fe1, #326ace);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.insights__message-doctor {
  font-family: var(--font-title);
  font-size: var(--fz-h4);
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-h4);
  font-weight: 700;
  margin-top: 16px;
}
@media (max-width: 1000px) {
  .insights__message-doctor {
    margin-top: 8px;
  }
}

/* ------------------------------ */
.insights__fucoidan-area {
}
.insights__fucoidan-title {
}
.insights__fucoidan-list {
  width: 100%;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .insights__fucoidan-list {
    flex-direction: column;
    align-items: center;
  }
}
.insights__fucoidan-item {
  width: calc((100% - 40px) / 2);
}
@media (max-width: 768px) {
  .insights__fucoidan-item {
    width: 100%;
  }
}
.insights__fucoidan-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
.insights__fucoidan-image img {
  height: 100%;
  object-fit: cover;
}
.insights__fucoidan-item-title {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .insights__fucoidan-item-title {
    margin-top: 8px;
  }
}
.insights__fucoidan-body {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .insights__fucoidan-body {
    margin-top: 8px;
  }
}
.insights__fucoidan-body > p:not(:first-child) {
  margin-top: 8px;
}

/* ------------------------------ */
.insights__reason-area {
}

.insights__reason-bg {
  position: relative;
  padding-block: 40px;
}
@media (max-width: 1000px) {
  .insights__reason-bg {
    padding-block: 24px;
  }
}
.insights__reason-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background: var(--color-gradient-bg);
  z-index: -1;
}
.insights__reason-title {
  margin-inline: auto;
}
.insights__reason-main {
  max-width: var(--inner-width);
  position: relative;
  padding-block: 40px;
  z-index: 50;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1000px) {
  .insights__reason-main {
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    padding-bottom: 0;
  }
}
.insights__reason-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-1 * (100vw - 970px) / 2);
  width: calc(50vw + 30%);
  height: 100%;
  border-radius: 0 40px 40px 0;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .insights__reason-main::before {
    width: 100%;
    height: 70%;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    border-radius: 40px;
  }
}
@media (max-width: 600px) {
  .insights__reason-main::before {
    height: 85%;
  }
}
.insights__reason-content {
  max-width: 550px;
  padding-inline: 16px;
}
.insights__reason-list-head {
  font-size: var(--fz-h4);
  font-weight: 700;
  letter-spacing: var(--ls-h4);
  line-height: var(--lh-h4);
}
.insights__reason-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.insights__reason-item {
  position: relative;
  padding-left: 40px;
}
@media (max-width: 768px) {
  .insights__reason-item {
    padding-left: 36px;
  }
}
.insights__reason-item::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 24px;
  height: 24px;
  background: url("../img/check.svg") no-repeat center center / 100% 100%;
}
@media (max-width: 768px) {
  .insights__reason-item::before {
    width: 20px;
    height: 20px;
  }
}
.insights__reason-image {
}
@media (max-width: 1000px) {
  .insights__reason-image {
    max-width: 80%;
  }
}
.insights__reason-image img {
  border-radius: 40px 0 0 40px;
}
@media (max-width: 1000px) {
  .insights__reason-image img {
    border-radius: 40px 40px 0 0;
  }
}
/* ------------------------------ */
.insights__case-list {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .insights__case-list {
    flex-direction: column;
    align-items: center;
  }
}
.insights__case-item {
  width: min(100%, 500px);
  display: flex;
  flex-direction: column;
}
.insights__case-item-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.insights__case-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insights__case-item-title {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .insights__case-item-title {
    margin-top: 12px;
  }
}
.insights__case-item-body {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .insights__case-item-body {
    margin-top: 8px;
  }
}
.insights__case-item-label {
  font-weight: 700;
}
.insights__case-item-label.-highlight {
  width: fit-content;
  padding-left: 1.5em;
  position: relative;
}
.insights__case-item-label.-highlight::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1em;
  height: 60%;
  background: #bfe0ed;
  z-index: -1;
}
.insights__case-item-label.-underline {
  width: fit-content;
  padding-inline: 0.2em;
  position: relative;
}
.insights__case-item-label.-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #b2b2b2;
  z-index: -1;
}
.insights__case-item-label:not(:first-child) {
  margin-top: 10px;
}

/* ------------------------------ */
/* qa */
/* ------------------------------ */
.qa {
  padding-top: 0;
}
.qa__container {
  background: var(--color-gradient-bg-vertical);
  padding-block: 60px;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .qa__container {
    padding-block: 40px;
  }
}
.qa__head {
  text-align: center;
}
.qa__en-title {
}
.qa__ja-title {
}
.qa__list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .qa__list {
    margin-top: 40px;
  }
}
.qa__item {
  width: min(100%, 800px);
  background: var(--color-white);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 768px) {
  .qa__item {
    padding: 12px;
  }
}
.qa__question-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.qa__q-icon {
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 1.2;
  background: linear-gradient(to right, #1d8fe1, #326ace);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.qa__question {
  font-weight: 700;
}
.qa__answer-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.qa__a-icon {
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 1.2;
  padding-left: 2px;
  color: var(--color-danger);
}
.qa__answer {
}

/* ------------------------------ */
/* slider */
/* ------------------------------ */
.slider {
  background: var(--color-white);
  padding-block: 20px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
@media (max-width: 768px) {
  .slider {
    padding: 40px 0;
  }
}
.slider__container {
  display: flex;
  gap: 20px;
  animation: slide 30s linear infinite;
  width: max-content;
}
@media (max-width: 768px) {
  .slider__container {
    gap: 16px;
  }
}
.slider__item {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .slider__item {
    width: 250px;
    height: 160px;
  }
}
.slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ------------------------------ */
/* information */
/* ------------------------------ */
.information {
}
.information__container {
}
.information__head {
  text-align: center;
}

.information__en-title {
}
.information__ja-title {
}
.information__bar {
  display: block;
  width: 100px;
  height: 4px;
  background: var(--color-gradient-accent);
  border-radius: 4px;
  margin-inline: auto;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .information__bar {
    margin-top: 16px;
  }
}
.information__copy {
  width: min(100%, 700px);
  margin-inline: auto;
}
.information__copy > p:not(:first-child) {
  margin-top: 16px;
}
.information__body {
  width: 100%;
  margin-top: 40px;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1000px) {
  .information__body {
    flex-direction: column;
    margin-top: 30px;
    gap: 20px;
  }
}
.information__map {
  max-width: 500px;
  height: auto;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .information__map {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
  }
}
.information__table {
  max-width: 500px;
  /* table-layout: fixed; */
  border-collapse: collapse;
}
@media (max-width: 1000px) {
  .information__table {
    width: 100%;
  }
}
.information__table-row {
}
.information__table-label {
  color: var(--color-accent-light);
  width: 140px;
}
.information__table-row:not(:first-child) .information__table-label {
  padding-top: 24px;
}
@media (max-width: 768px) {
  .information__table-label {
    display: block;
    width: 100%;
  }
  .information__table-row:not(:first-child) .information__table-label {
    padding-top: 20px;
  }
}
.information__table-value {
}
.information__table-row:not(:first-child) .information__table-value {
  padding-top: 24px;
}
@media (max-width: 768px) {
  .information__table-value {
    display: block;
  }
  .information__table-row:not(:first-child) .information__table-value {
    padding-top: 0;
  }
}

/* ------------------------------ */
/* cta zone */
/* ------------------------------ */
.cta-zone {
  background: var(--color-gradient-bg);
  margin-right: calc(50vw - 50%);
  margin-left: calc(50vw - 50%);
  padding-block: 40px;
}
.cta-zone__container {
  padding-inline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .cta-zone__container {
    flex-direction: column;
    gap: 16px;
  }
}

/* ------------------------------ */
/* contact */
/* ------------------------------ */
.contact {
}
.contact__container {
}
.contact__title {
}
.contact__head {
  width: min(90%, 900px);
  margin-inline: auto;
  padding-bottom: 40px;
}
@media (max-width: 500px) {
  .contact__head {
    width: 100%;
  }
}
.documents {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 40px;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
}
@media (max-width: 768px) {
  .documents {
    flex-direction: column;
    padding: 24px 16px;
  }
}
.documents__text {
}
.documents__title {
}
.documents__list {
}
.documents__item {
  position: relative;
  padding-left: 1.6em;
  line-height: 1.4;
}
.documents__item:not(:last-child) {
  padding-bottom: 1em;
}
.documents__item::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../img/check.svg) no-repeat center center / contain;
}
.documents__image {
  width: min(90%, 280px);
  position: relative;
}
.documents__image-inner {
}
.documents__bullet {
  position: absolute;
  bottom: 0;
  right: -20px;
  color: var(--color-white);
  background-color: var(--color-danger);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz-h4);
  font-weight: 700;
  line-height: 1.2;
}
.contact__form {
}

/* ------------------------------ */
/* thanks */
/* ------------------------------ */
.thanks {
}
.thanks__container {
}
.thanks__title {
}
.thanks__head {
  font-size: var(--fz-h4);
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-h4);
  font-weight: 700;
  color: var(--color-accent-light);
}
.thanks__body {
  margin-top: 20px;
}
.thanks-button {
  margin-top: 60px;
  padding-inline: 2%;
  width: fit-content;
}

/* ------------------------------ */
/* fixed cta button */
/* ------------------------------ */
.fixed-cta-container {
  position: fixed;
  bottom: 20px;
  right: 8px;
  z-index: 1000;
  display: none;
  gap: 12px;
  transition: all 0.3s ease;
}
.fixed-cta-container.is-visible {
  display: flex;
}
.fixed-tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 10px;
}
.fixed-tel-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
