@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif&display=swap");
:root {
  --text-color: #222;
  --wh: #fff;
  --bk: #222;
  --gray: #dddcda;
}

/* @font-face でローカルフォントを優先 */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
/* ====================================================
Follow Up Banner
==================================================== */
.follow-up-banner {
  position: fixed;
  top: clamp(30rem, 50vh, 43rem);
  right: 0;
  z-index: 88;
}
@media screen and (max-width: 834px) {
  .follow-up-banner {
    top: auto;
    bottom: 0;
    left: 0;
  }
}
.follow-up-banner__title {
  font-size: 1.5rem;
  color: var(--wh);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  /* 縦書き（Safari 向けプレフィックスと text-orientation を付与） */
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .follow-up-banner__title {
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    text-orientation: mixed;
    -webkit-text-orientation: mixed;
  }
}
.follow-up-banner__title::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 100vmax;
  margin-top: 0.5rem;
}
.follow-up-banner__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 834px) {
  .follow-up-banner__content {
    flex-direction: row;
    gap: 0;
  }
}
.follow-up-banner__link {
  display: flex;
  width: 5rem;
  height: 16.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 5px 0 0 5px;
}
@media screen and (max-width: 834px) {
  .follow-up-banner__link {
    width: 50%;
    height: 4.5rem;
    border-radius: 0;
  }
}
.follow-up-banner__link.--purple {
  background-color: #cb8bc4;
}
.follow-up-banner__link.--purple h2::after {
  background: url(../img/common/diagonal-arrow-purple.svg) no-repeat center/50%;
  background-color: var(--wh);
}
.follow-up-banner__link.--green {
  background-color: #78b8c3;
}
.follow-up-banner__link.--green h2::after {
  background: url(../img/common/diagonal-arrow-green.svg) no-repeat center/50%;
  background-color: var(--wh);
}
.follow-up-banner__link:hover h2::after {
  transform: rotate(360deg);
  transition: transform 0.3s ease-in-out;
}/*# sourceMappingURL=follow-up-banner.css.map */