@charset "utf-8";

/* footer
--------------------------------------------------- */
.site-footer {
  background: #000;
  color: #fff;
  min-height: 416px;
  position: relative;
  z-index: 1
}

.site-footer__inner {
  position: relative;
  margin: 0 auto;
  padding: 58px 60px;
  box-sizing: border-box;
  max-width: 1366px;
}

/* logo
--------------------------------------------------- */
.site-footer__logo {
  width: 376px;
}

.site-footer__logo a {
  display: block;
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* nav
--------------------------------------------------- */
.site-footer__nav {
  width: min(100%,620px);
  margin-top: 55px;
  margin-left: 5px;
}

.site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 45px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav-list li {
  margin: 0;
  padding: 0;
}

.site-footer__nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.site-footer__nav-list a::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 7px;
  height: 11px;
  background: url("../images/arrow-ic001.svg") center / contain no-repeat;
}

/* sns
--------------------------------------------------- */
.site-footer__sns {
  position: absolute;
  right: 58px;
  top: 83px;
}

.site-footer__sns a {
  position: relative;
  display: block;
  width: 47px;
  height: 47px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
}

.site-footer__sns a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    #feda75 0%,
    #fa7e1e 25%,
    #d62976 50%,
    #962fbf 75%,
    #4f5bd5 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-footer__sns-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.site-footer__sns-icon--normal {
  opacity: 1;
}

.site-footer__sns-icon--hover {
  opacity: 0;
}

/* bottom
--------------------------------------------------- */
.site-footer__bottom {
  margin-top: 80px;
  text-align: left;
}

.site-footer__privacy {
  display: inline-block;
  margin-bottom: 48px;
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.site-footer__copy {
  margin: 0;
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

/* hover
--------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .site-footer__nav-list:has(a:hover) a {
    opacity: 0.35;
  }

  .site-footer__nav-list:has(a:hover) a:hover {
    opacity: 1;
  }

  .site-footer__privacy:hover {
    opacity: 0.7;
  }

  .site-footer__sns a:hover::before {
    opacity: 1;
  }

  .site-footer__sns a:hover .site-footer__sns-icon--normal {
    opacity: 0;
  }

  .site-footer__sns a:hover .site-footer__sns-icon--hover {
    opacity: 1;
  }
}



/* fixed entry
--------------------------------------------------- */
.fixed-entry {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 900;
  display: block;
  width: 154px;
  height: 154px;
  color: #000;
  text-decoration: none;
}

.fixed-entry__circle {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff000;
  border-radius: 50%;
  overflow: hidden;
}

.fixed-entry__ring-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: fixedEntryRotate 16s linear infinite;
  pointer-events: none;
}

.fixed-entry__text {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 2;
  display: grid;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
  text-align: center;
  letter-spacing: 0.02em;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.fixed-entry__text span {
  display: block;
}

@keyframes fixedEntryRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* hover
--------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .fixed-entry {
    transition: transform 0.3s ease;
  }

  .fixed-entry:hover {
    transform: scale(1.06);
  }
}



/* motion
--------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .fixed-entry__ring-img {
    animation: none;
  }
}


/* =========================================================
  footer contact
========================================================= */
.footer-contact {
  position: relative;
  padding: 80px 0 120px;
  background: #F3F3F3;
  z-index: 1
}

.footer-contact__inner {
  width: min(100% - 40px, 1140px);
  margin: 0 auto;
}

.footer-contact__head {
  text-align: center;
}

.footer-contact__head--other {
  margin-top: 100px;
}

.footer-contact__title-en {
  margin: 0;
  font-family: "Prompt", sans-serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}

.footer-contact__title-ja {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 800;
}

/* entry
--------------------------------------------------- */
.footer-contact__entry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.footer-contact-entry {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 30px;
  padding: 46px 30px;
  border-radius: 18px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease;
}

.footer-contact-entry__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #FDFBDC;
}

.footer-contact-entry--one-time .footer-contact-entry__icon {
  background: #ECF8FD;
}

.footer-contact-entry__icon img {
  width: 100px;
  height: auto;
}

.footer-contact-entry__body {
  display: block;
  min-width: 0;
}

.footer-contact-entry__title {
  display: block;
  font-family: "Prompt", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.footer-contact-entry__lead {
  display: block;
  margin-top: 11px;
  font-size: 18px;
  font-weight: 700;
}

.footer-contact-entry__text {
  display: block;
  margin-top: 25px;
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 400;
}

.footer-contact-entry__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-height: 54px;
  margin-top: 35px;
  padding: 0 24px;
  border-radius: 999px;
  color: #000;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-contact-entry__button--yellow {
  background: #FDF301;
}

.footer-contact-entry__button--blue {
  background: #4AD3FF;
}

.footer-contact-entry__button-icon img {
  width: 30px;
  height: auto;
  transition: filter 0.3s ease;
}

.footer-contact-entry__button-arrow,
.footer-contact-line__button-arrow {
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 10px;
  background: url("../images/arrow-ic003.svg") center / contain no-repeat;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* line
--------------------------------------------------- */
.footer-contact-line {
  display: grid;
  grid-template-columns: 110px 1fr 135px 265px;
  align-items: center;
  gap: 30px;
  width: min(100%, 1050px);
  margin: 60px auto 0;
  padding: 36px 30px;
  border: 5px solid #06C755;
  border-radius: 18px;
  background: #F7FDF8;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.footer-contact-line__icon {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #06C755;
}

.footer-contact-line__icon img {
  width: 110px;
  height: auto;
}

.footer-contact-line__title {
  margin: 0;
  color: #00b947;
  font-family: "Prompt", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.footer-contact-line__title span {
  font-size: 23px;
  font-weight: 900;
}

.footer-contact-line__lead {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.footer-contact-line__text {
  margin: 18px 0 0;
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.footer-contact-line__qr {
  text-align: center;
}

.footer-contact-line__qr img {
  width: 126px;
  height: auto;
}

.footer-contact-line__action {
  text-align: center;
}

.footer-contact-line__note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #00b947;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.footer-contact-line__note-text {
  display: inline-block;
}

.footer-contact-line__note-deco {
  display: block;
  width: 10px;
  height: auto;
  flex: 0 0 auto;
}

.footer-contact-line__note-deco--left {
  transform: scaleX(-1);
}

.footer-contact-line__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 265px;
  min-height: 54px;
  border-radius: 999px;
  background: #06C755;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.footer-contact-line__button-icon {
  width: 30px;
  height: 30px;
  background: url("../images/contact-ic-phone.svg") center / contain no-repeat;
}

.footer-contact-line__button-arrow {
  filter: brightness(0) invert(1);
}

/* other
--------------------------------------------------- */
.footer-contact__other-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  width: min(100%, 1050px);
  margin: 60px auto 0;
}

.footer-contact-other {
  display: grid;
  grid-template-columns: 76px 1fr 56px;
  align-items: center;
  gap: 30px;
  padding: 40px 30px;
  border-radius: 18px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease;
}

.footer-contact-other__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #F2F2F2;
}

.footer-contact-other__icon img {
  width: 58px;
  height: auto;
}

.footer-contact-other__body {
  display: block;
  min-width: 0;
}

.footer-contact-other__title {
  display: block;
  font-family: "Prompt", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
}

.footer-contact-other__lead {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.footer-contact-other__text {
  display: block;
  margin-top: 16px;
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.footer-contact-other__arrow {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  transition: background-color 0.3s ease;
}

.footer-contact-other__arrow::before {
  content: "";
  width: 16px;
  height: 10px;
  background: url("../images/arrow-ic003.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer-contact-entry--trial:hover {
    background: #fffef7;
  }

  .footer-contact-entry--one-time:hover {
    background: #fcfeff;
  }

  .footer-contact-entry:hover .footer-contact-entry__button,
  .footer-contact-line__button:hover {
    background: #000;
    color: #fff;
  }

  .footer-contact-entry:hover .footer-contact-entry__button-icon img,
  .footer-contact-entry:hover .footer-contact-entry__button-arrow {
    filter: brightness(0) invert(1);
  }

  .footer-contact-other:hover {
    background: #f3faff;
  }

  .footer-contact-other:hover .footer-contact-other__arrow {
    background: #1f9bef;
  }

  .footer-contact-entry:hover .footer-contact-entry__button-arrow,
  .footer-contact-line__button:hover .footer-contact-line__button-arrow,
  .footer-contact-other:hover .footer-contact-other__arrow::before {
    transform: translateX(5px);
  }
}


/* tablet：1024px以下
--------------------------------------------------- */
@media screen and (max-width: 1024px) {
  /* footer */
  .site-footer__inner {
    padding: 52px 40px 40px;
  }

  .site-footer__logo {
    width: 300px;
  }

  .site-footer__nav {
    width: min(100%, 600px);
    margin-top: 46px;
  }

  .site-footer__nav-list {
    gap: 22px 34px;
  }

  .site-footer__sns {
    right: 40px;
    top: 64px;
  }

  /* fixed entry */
  .fixed-entry {
    right: 24px;
    bottom: 24px;
    width: 128px;
    height: 128px;
  }

  .fixed-entry__text {
    font-size: 12px;
  }

  /* footer contact */
  .footer-contact {
    padding: 72px 0 96px;
  }

  .footer-contact__inner {
    width: min(100% - 40px, 960px);
  }

  .footer-contact__head--other {
    margin-top: 86px;
  }

  .footer-contact__title-en {
    font-size: 54px;
  }

  .footer-contact__title-ja {
    font-size: 17px;
  }

  .footer-contact__entry-list {
    gap: 24px;
    margin-top: 50px;
  }

  .footer-contact-entry {
    grid-template-columns: 128px 1fr;
    gap: 22px;
    padding: 34px 24px;
  }

  .footer-contact-entry__icon {
    width: 128px;
    height: 128px;
  }

  .footer-contact-entry__icon img {
    width: 86px;
  }

  .footer-contact-entry__title {
    font-size: 24px;
  }

  .footer-contact-entry__lead {
    margin-top: 10px;
    font-size: 16px;
  }

  .footer-contact-entry__text {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-contact-entry__button {
    gap: 12px;
    min-height: 48px;
    margin-top: 26px;
    padding: 0 18px;
    font-size: 13px;
  }

  .footer-contact-entry__button-icon img {
    width: 24px;
  }

  .footer-contact-line {
    grid-template-columns: 88px 1fr 112px 220px;
    gap: 20px;
    width: 100%;
    padding: 30px 22px;
    border-width: 4px;
  }

  .footer-contact-line__icon {
    width: 88px;
    height: 88px;
  }

  .footer-contact-line__icon img {
    width: 88px;
  }

  .footer-contact-line__title {
    font-size: 22px;
  }

  .footer-contact-line__title span {
    font-size: 20px;
  }

  .footer-contact-line__lead {
    font-size: 15px;
  }

  .footer-contact-line__text {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.8;
  }

  .footer-contact-line__qr img {
    width: 108px;
  }

  .footer-contact-line__note {
    gap: 8px;
    margin-bottom: 14px;
    font-size: 12px;
  }

  .footer-contact-line__note-deco {
    width: 9px;
  }

  .footer-contact-line__button {
    width: 220px;
    min-height: 46px;
    font-size: 13px;
  }

  .footer-contact-line__button-icon {
    width: 24px;
    height: 24px;
  }

  .footer-contact__other-list {
    gap: 24px;
    width: 100%;
    margin-top: 50px;
  }

  .footer-contact-other {
    grid-template-columns: 64px 1fr 50px;
    gap: 20px;
    padding: 32px 24px;
  }

  .footer-contact-other__icon {
    width: 64px;
    height: 64px;
  }

  .footer-contact-other__icon img {
    width: 48px;
  }

  .footer-contact-other__title {
    font-size: 21px;
  }

  .footer-contact-other__lead {
    margin-top: 10px;
    font-size: 15px;
  }

  .footer-contact-other__text {
    margin-top: 12px;
    font-size: 13px;
  }

  .footer-contact-other__arrow {
    width: 50px;
    height: 50px;
  }
}


/* small tablet：900px以下
--------------------------------------------------- */
@media screen and (max-width: 900px) {
  .footer-contact__entry-list {
    grid-template-columns: 1fr;
  }
}


/* smartphone：767px以下
--------------------------------------------------- */
@media screen and (max-width: 767px) {
  /* footer */
  .site-footer {
    min-height: 0;
  }

  .site-footer__inner {
    padding: 36px 30px;
  }

  .site-footer__logo {
    width: 195px;
  }

  .site-footer__nav {
    width: 100%;
    margin-top: 34px;
    margin-left: 0;
  }

  .site-footer__nav-list {
    display: block;
  }

  .site-footer__nav-list li + li {
    margin-top: 29px;
  }

  .site-footer__nav-list a {
    font-size: 13px;
  }

  .site-footer__sns {
    right: 28px;
    top: 40px;
  }

  .site-footer__sns a {
    width: 43px;
    height: 43px;
  }

  .site-footer__privacy {
    margin-bottom: 29px;
    font-size: 13px;
  }

  .site-footer__copy {
    font-size: 11px;
  }

  /* fixed entry */
  .fixed-entry {
    right: 16px;
    bottom: 16px;
    width: 96px;
    height: 96px;
  }

  .fixed-entry__text {
    font-size: 10px;
  }

  /* footer contact */
  .footer-contact {
    padding: 48px 0 56px;
  }

  .footer-contact__inner {
    width: calc(100% - 30px);
  }

  .footer-contact__head--other {
    margin-top: 52px;
  }

  .footer-contact__title-en {
    font-size: 30px;
  }

  .footer-contact__title-ja {
    margin-top: 5px;
    font-size: 12px;
  }

  .footer-contact__entry-list,
  .footer-contact__other-list {
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
    margin-top: 30px;
  }

  .footer-contact-entry {
    --footer-contact-entry-icon-size: 62px;
    --footer-contact-entry-gap: 20px;

    grid-template-columns: var(--footer-contact-entry-icon-size) 1fr;
    gap: var(--footer-contact-entry-gap);
    min-height: 0;
    padding: 25px 20px;
    border-radius: 10px;
    align-items: flex-start;
  }

  .footer-contact-entry__icon {
    width: 62px;
    height: 62px;
    margin-top: 7px;
  }

  .footer-contact-entry__icon img {
    width: 44px;
  }

  .footer-contact-entry__title {
    font-size: 20px;
  }

  .footer-contact-entry__lead {
    margin-top: 8px;
    font-size: 14px;
  }

  .footer-contact-entry__text {
    margin-top: 15px;
    font-size: 12px;
  }

  .footer-contact-entry__button {
    width: calc(100% + var(--footer-contact-entry-icon-size) + var(--footer-contact-entry-gap));
    margin-top: 22px;
    margin-left: calc((var(--footer-contact-entry-icon-size) + var(--footer-contact-entry-gap)) * -1);
    padding: 0 16px;
    min-height: 56px;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.04em;
  }

  .footer-contact-line {
    display: block;
    width: 100%;
    margin-top: 30px;
    padding: 24px 20px;
    border-width: 3px;
    text-align: center;
  }

  .footer-contact-line__icon {
    width: 62px;
    height: 62px;
    margin: 0 auto;
  }

  .footer-contact-line__icon img {
    width: 62px;
  }

  .footer-contact-line__body {
    margin-top: 16px;
  }

  .footer-contact-line__title {
    font-size: 20px;
  }

  .footer-contact-line__title span {
    font-size: 18px;
  }

  .footer-contact-line__lead {
    margin-top: 25px;
    font-size: 15px;
    line-height: 1.75;
  }

  .footer-contact-line__text {
    margin-top: 10px;
    font-size: 13px;
  }

  .footer-contact-line__qr {
    display: none;
  }

  .footer-contact-line__action {
    margin-top: 30px;
  }

  .footer-contact-line__note {
    gap: 8px;
    margin-bottom: 15px;
    font-size: 13px;
  }

  .footer-contact-line__note-deco {
    width: 10px;
  }

  .footer-contact-line__button {
    width: 100%;
    min-height: 56px;
    font-size: 14px;
  }

  .footer-contact-other {
    grid-template-columns: 54px 1fr 38px;
    gap: 15px;
    min-height: 0;
    padding: 25px 20px;
    border-radius: 10px;
  }

  .footer-contact-other__icon {
    width: 54px;
    height: 54px;
  }

  .footer-contact-other__icon img {
    width: 36px;
  }

  .footer-contact-other__title {
    font-size: 20px;
  }

  .footer-contact-other__lead {
    margin-top: 8px;
    font-size: 14px;
  }

  .footer-contact-other__text {
    margin-top: 15px;
    font-size: 12px;
  }

  .footer-contact-other__arrow {
    width: 38px;
    height: 38px;
  }

  .footer-contact-other__arrow::before {
    width: 13px;
    height: 8px;
  }
}
