@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #342525;
  background-color: #fbf8f6;
  scroll-behavior: smooth;
  scroll-padding-top: 115px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 70px;
  }
}
html.spt-10 {
  scroll-padding-top: 10px;
}
@media screen and (max-width: 767px) {
  html.spt-10 {
    scroll-padding-top: 0;
  }
}

main {
  position: relative;
  z-index: 1;
  background-color: #fbf8f6;
}

.image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--auto {
  height: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.image--top {
  -o-object-position: top;
     object-position: top;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 32px 23px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 5;
}
@media screen and (max-width: 1280px) {
  .header {
    padding: 24px 22px;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    min-height: 92px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 11px 16px;
    min-height: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .header.active {
    background-color: #fbf8f6;
  }
}
.header.is-scrolled {
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}
@media screen and (max-width: 767px) {
  .header.is-scrolled {
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
  }
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  display: block;
  width: 211px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1550px) {
  .header__logo {
    width: 171px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 105px;
  }
}
.header__logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  .header__nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
    background-color: #fbf8f6;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .header__nav {
    top: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 1200px) {
  .header__nav.active .header__nav-wrapper {
    opacity: 1;
  }
}
.header__nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1201px) and (max-width: 1550px) {
  .header__nav-wrapper {
    gap: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav-wrapper {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding: 50px 4%;
    opacity: 0;
    -webkit-transition: opacity 0.5s linear 0.1s;
    transition: opacity 0.5s linear 0.1s;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-wrapper {
    padding: 48px 6.67%;
  }
}
.header__nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1201px) and (max-width: 1550px) {
  .header__nav-links {
    gap: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-links {
    gap: 32px;
  }
}
.header__nav-link {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1201px) and (max-width: 1550px) {
  .header__nav-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1280px) {
  .header__nav-link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-link {
    font-size: 16px;
  }
}
.header__nav-link:hover {
  opacity: 0.7;
}
.header__nav-others {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1201px) and (max-width: 1550px) {
  .header__nav-others {
    gap: 8px;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav-others {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-others {
    gap: 16px;
  }
}
.header__nav-other {
  width: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  background-color: #5ea4d8;
  border-radius: 35px;
  padding: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 1201px) and (max-width: 1550px) {
  .header__nav-other {
    width: 175px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav-other {
    max-width: 300px;
    width: 100%;
    -webkit-filter: drop-shadow(0 4px 16px rgba(32, 136, 216, 0.3));
            filter: drop-shadow(0 4px 16px rgba(32, 136, 216, 0.3));
  }
}
@media screen and (max-width: 767px) {
  .header__nav-other {
    max-width: 275px;
  }
}
.header__nav-other.inquiry {
  background-color: #f2703f;
  gap: 18px;
}
@media screen and (max-width: 1200px) {
  .header__nav-other.inquiry {
    -webkit-filter: drop-shadow(0 4px 16px rgba(216, 82, 32, 0.3));
            filter: drop-shadow(0 4px 16px rgba(216, 82, 32, 0.3));
  }
}
.header__nav-other.inquiry:hover {
  background-color: #e36334;
}
.header__nav-other.chatwork {
  background-color: #927f7f;
}
@media screen and (max-width: 1200px) {
  .header__nav-other.chatwork {
    -webkit-filter: drop-shadow(0 4px 16px rgba(129, 92, 78, 0.3));
            filter: drop-shadow(0 4px 16px rgba(129, 92, 78, 0.3));
  }
}
.header__nav-other.chatwork:hover {
  background-color: #685252;
}
.header__nav-other-icon {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .header__nav-other-info {
    width: 100%;
    text-align: center;
  }
}
.header__nav-other-text {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}
@media screen and (min-width: 1201px) and (max-width: 1550px) {
  .header__nav-other-text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-other-text {
    font-size: 18px;
  }
}
.header__nav-other-text--fs16 {
  font-size: 1.6rem;
}
@media screen and (min-width: 1201px) and (max-width: 1550px) {
  .header__nav-other-text--fs16 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-other-text--fs16 {
    font-size: 20px;
  }
}
.header__nav-other-text--fs10 {
  font-size: 1rem;
}
@media screen and (min-width: 1201px) and (max-width: 1550px) {
  .header__nav-other-text--fs10 {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-other-text--fs10 {
    font-size: 10px;
  }
}
.header__menu {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header__menu {
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header__menu.active .header__menu-line:first-child {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.header__menu.active .header__menu-line:first-child::before, .header__menu.active .header__menu-line:first-child::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.header__menu.active .header__menu-line:last-child::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  opacity: 1;
}
.header__menu.active .header__menu-line:last-child::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 1;
}
.header__menu-line {
  position: relative;
  width: 100%;
  height: 2px;
  border-radius: 50px;
}
.header__menu-line:first-child {
  background-color: #342525;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.header__menu-line:first-child::before, .header__menu-line:first-child::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #342525;
  border-radius: 50px;
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__menu-line:first-child::before {
  margin-top: -9px;
}
.header__menu-line:first-child::after {
  margin-top: 9px;
}
.header__menu-line:last-child {
  position: absolute;
}
.header__menu-line:last-child::before, .header__menu-line:last-child::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #342525;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.header__menu-line:last-child::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
  opacity: 0;
}
.header__menu-line:last-child::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
  opacity: 0;
}

.footer {
  height: 100vh;
  height: 100svh;
}
.footer__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1008px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__wrapper {
    max-width: 100%;
    padding: 0 6.67%;
  }
}
.footer__ctr {
  width: 100%;
}
.footer__main {
  gap: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 32px;
  }
}
.footer__main-info {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .footer__main-info {
    width: 100%;
  }
}
.footer__main-block:not(:last-child) {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .footer__main-block:not(:last-child) {
    margin-bottom: 24px;
  }
}
.footer__main-block-title {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .footer__main-block-title {
    font-size: 18px;
  }
}
.footer__main-block-desc {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer__main-block-desc {
    font-size: 14px;
    line-height: 1.7142857143em;
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer__main-block-desc.lexend {
    line-height: 2em;
  }
}
.footer__main-weblink {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #5ea4d8;
  border-bottom: 1px solid #5ea4d8;
  padding-bottom: 11px;
  margin-top: 16px;
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__main-weblink {
    font-size: 14px;
    margin-top: 13px;
    padding-bottom: 5px;
    gap: 13px;
  }
}
.footer__main-weblink::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url("./public/images/icons/external-link.svg") center/contain no-repeat;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__main-weblink::after {
    width: 14px;
    height: 14px;
  }
}
.footer__main-weblink:hover::after {
  -webkit-transform: translate(3px, -3px);
          transform: translate(3px, -3px);
}
.footer__main-image {
  max-width: 43.65%;
  aspect-ratio: 440/300;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer__main-image {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 325/222;
  }
}
.footer__copyright {
  margin-top: 98px;
  gap: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    margin-top: 40px;
  }
}
.footer__copyright-text {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .footer__copyright-text {
    font-size: 12px;
    text-align: center;
  }
}
.footer__copyright-text--gray {
  color: #6b6a6a;
}

.p-title {
  text-align: center;
  letter-spacing: 0.03em;
}
.p-title__en {
  display: block;
  font-size: 1.8rem;
  font-family: "Lexend", sans-serif;
  color: #5ea4d8;
}
@media screen and (max-width: 767px) {
  .p-title__en {
    font-size: 14px;
  }
}
.p-title__jp {
  display: block;
  font-size: 4.4rem;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .p-title__jp {
    font-size: 32px;
    margin-top: 10px;
  }
}
.p-title--white .p-title__en,
.p-title--white .p-title__jp {
  color: #fff;
}

.s-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  font-size: 4rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .s-title {
    font-size: 28px;
  }
}
.s-title::after {
  content: "";
  width: 25px;
  height: 10px;
  background-color: #5ea4d8;
  border-radius: 3px;
  position: absolute;
  bottom: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .s-title::after {
    width: 20px;
    height: 8px;
    bottom: -20px;
  }
}

.button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 240px;
  margin: 0 auto;
  font-size: 1.8rem;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  padding: 18px 20px 18px 24px;
  background-color: #5ea4d8;
  border-radius: 35px;
  -webkit-filter: drop-shadow(0 4px 16px rgba(32, 136, 216, 0.3));
          filter: drop-shadow(0 4px 16px rgba(32, 136, 216, 0.3));
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .button {
    min-width: 275px;
    font-size: 18px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    padding: 16px 24px 18px;
  }
}
.button::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("./public/images/icons/button-arrow.svg") center/contain no-repeat;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover::after {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.button--secondary::after {
  width: 16px;
  height: 16px;
  background: url("./public/images/icons/external-link-white.svg") center/contain no-repeat;
}
.button--secondary:hover::after {
  -webkit-transform: translate(3px, -3px);
          transform: translate(3px, -3px);
}
.button--left {
  margin: 0;
}
.button--right {
  margin: 0 0 0 auto;
}

.f-group {
  position: fixed;
  right: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  padding: 16px;
  border-radius: 15px;
  -webkit-filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.1));
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .f-group {
    width: calc(100% - 26px);
    top: unset;
    bottom: 12px;
    left: 50%;
    -webkit-transform: translate(-50%, 130%);
            transform: translate(-50%, 130%);
    opacity: 0;
    visibility: hidden;
    padding: 12px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .f-group.show {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
  }
}
.f-group__title, .f-group__week-title, .f-group__week-date, .f-group__link-text, .f-group__pagetop {
  display: block;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}
.f-group__title {
  font-size: 1.6rem;
  color: #5ea4d8;
  line-height: 1.4375em;
}
.f-group__weeks {
  margin-top: 8px;
}
.f-group__week {
  background-color: #eff3f6;
  border-radius: 12px;
  padding: 15px 11px 20px;
}
.f-group__week:not(:last-child) {
  margin-bottom: 10px;
}
.f-group__week-title {
  font-size: 1.2rem;
}
.f-group__week-date {
  font-size: 1.6rem;
  margin-top: 2px;
}
.f-group__week-icon {
  width: 40px;
  margin: 12px auto 0;
}
.f-group__links {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .f-group__links {
    margin-top: 0;
    gap: 9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.f-group__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 12px;
  background-color: #5ea4d8;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .f-group__link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    gap: 8px;
  }
}
.f-group__link:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .f-group__link:not(:last-child) {
    margin-bottom: 0;
  }
}
.f-group__link.email {
  background-color: #f2703f;
}
.f-group__link.email:hover {
  background-color: #e36334;
}
.f-group__link.chatwork {
  background-color: #927f7f;
}
.f-group__link.chatwork:hover {
  background-color: #685252;
}
.f-group__link-icon {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #fff;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .f-group__link-icon {
    width: 20px;
    height: 20px;
  }
}
.f-group__link-text {
  font-size: 1.2rem;
  color: #fff;
}
.f-group__pagetop {
  font-size: 1.2rem;
  color: #fff;
  background-color: #b5b5b5;
  border-radius: 12px;
  padding: 17px 12px 16px 8px;
  margin-top: 16px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.f-group__pagetop::after {
  content: "";
  width: 14px;
  height: 8px;
  background: url("./public/images/icons/arrow-up.svg") center/contain no-repeat;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.f-group__pagetop:hover {
  opacity: 0.7;
}
.f-group__pagetop:hover::after {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.email-link,
.chatwork-link {
  max-width: 239px;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 35px;
  padding: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .email-link,
  .chatwork-link {
    max-width: 275px;
  }
}
.email-link__icon,
.chatwork-link__icon {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.email-link__text,
.chatwork-link__text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 980px) {
  .email-link__text,
  .chatwork-link__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .email-link__text,
  .chatwork-link__text {
    font-size: 18px;
    width: 100%;
    text-align: center;
  }
}

.email-link {
  background-color: #f2703f;
  gap: 27px;
  -webkit-box-shadow: 0 4px 16px rgba(216, 82, 32, 0.3);
          box-shadow: 0 4px 16px rgba(216, 82, 32, 0.3);
}
@media screen and (max-width: 767px) {
  .email-link {
    gap: 0;
  }
}
.email-link:hover {
  background-color: #e36334;
}
.email-link--small {
  max-width: 190px;
  gap: 20px;
}
.email-link--small .email-link__text {
  font-size: 1.4rem;
}
.email-link__icon {
  padding: 11px;
}

.chatwork-link {
  background-color: #927f7f;
  gap: 21px;
  -webkit-filter: drop-shadow(0 4px 16px rgba(129, 92, 78, 0.3));
          filter: drop-shadow(0 4px 16px rgba(129, 92, 78, 0.3));
  -webkit-box-shadow: 0 4px 16px rgba(129, 92, 78, 0.3);
          box-shadow: 0 4px 16px rgba(129, 92, 78, 0.3);
}
@media screen and (max-width: 767px) {
  .chatwork-link {
    gap: 0;
  }
}
.chatwork-link:hover {
  background-color: #685252;
}
.chatwork-link--small {
  max-width: 190px;
  gap: 13px;
}
.chatwork-link--small .chatwork-link__text {
  font-size: 1.4rem;
}
.chatwork-link__icon {
  padding: 8px;
}

.ct-banner {
  padding: 100px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .ct-banner {
    padding: 80px 0;
  }
}
.ct-banner__wrapper {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1008px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .ct-banner__wrapper {
    max-width: 100%;
    padding: 0 6.67%;
  }
}
.ct-banner__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .ct-banner__list {
    display: block;
    margin-top: 44px;
  }
}
.ct-banner__item {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 24px 10px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .ct-banner__item {
    padding: 24px 25px;
  }
}
@media screen and (max-width: 767px) {
  .ct-banner__item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.ct-banner__item-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .ct-banner__item-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .ct-banner__item-title {
    line-height: 2em;
  }
}
.ct-banner__tel {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .ct-banner__tel {
    margin-top: 16px;
  }
}
.ct-banner__tel-num {
  font-size: 2.6rem;
  font-family: "Lexend", sans-serif;
  letter-spacing: 0.03em;
  color: #5ea4d8;
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 980px) {
  .ct-banner__tel-num {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .ct-banner__tel-num {
    font-size: 26px;
  }
}
.ct-banner__tel-num::before {
  content: "";
  width: 18.35px;
  height: 18.35px;
  background: url("./public/images/icons/tel.svg") center/contain no-repeat;
}
.ct-banner__tel-sched {
  max-width: 206px;
  margin: 8px auto 0;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #fff;
  background-color: #5ea4d8;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ct-banner__tel-sched {
    font-size: 12px;
    padding: 4px 10px;
  }
}
.ct-banner__email, .ct-banner__chatwork {
  margin: 26px auto 0;
}
@media screen and (max-width: 767px) {
  .ct-banner__email, .ct-banner__chatwork {
    margin-top: 16px;
  }
}

.pbanner {
  padding: 207px 0 64px;
  background-color: #f0ebe8;
  border-radius: 0 0 100px 100px;
}
@media screen and (max-width: 767px) {
  .pbanner {
    padding: 90px 0 50px;
    border-radius: 0 0 40px 40px;
  }
}
.pbanner__wrapper {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1008px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .pbanner__wrapper {
    max-width: 100%;
    padding: 0 6.67%;
  }
}

.top__slider--white-bg .top__slider-card-cat {
  background-color: #fbf8f6;
}
.top__slider-card:hover .top__slider-card-img {
  border-radius: 5px;
}
.top__slider-card:hover .top__slider-card-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top__slider-card:hover .top__slider-card-title {
  color: #5ea4d8;
}
.top__slider-date {
  display: block;
  font-size: 1.6rem;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #5ea4d8;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .top__slider-date {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.top__slider-card-img {
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__slider-card-img img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__slider-card-title {
  display: inline-block;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  margin-top: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 981px) and (max-width: 1920px) {
  .top__slider-card-title {
    font-size: calc(18px + (24 - 18) * (100vw - 981px) / (1920 - 981));
  }
}
@media screen and (max-width: 767px) {
  .top__slider-card-title {
    font-size: 20px;
  }
}
.top__slider-card-title::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("./public/images/icons/button-arrow-blue.svg") center/contain no-repeat;
  margin-left: 20px;
}
@media screen and (min-width: 981px) and (max-width: 1920px) {
  .top__slider-card-title::after {
    width: calc(15px + (20 - 15) * (100vw - 981px) / (1920 - 981));
    height: calc(15px + (20 - 15) * (100vw - 981px) / (1920 - 981));
  }
}
@media screen and (max-width: 767px) {
  .top__slider-card-title::after {
    width: 18px;
    height: 18px;
    margin-left: 16px;
  }
}
.top__slider-card-cats {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .top__slider-card-cats {
    margin-top: 8px;
    gap: 8px;
  }
}
.top__slider-card-cat {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #927f7f;
  background-color: #fff;
  border-radius: 17px;
  padding: 8px;
}
@media screen and (min-width: 981px) and (max-width: 1920px) {
  .top__slider-card-cat {
    font-size: calc(10px + (14 - 10) * (100vw - 981px) / (1920 - 981));
  }
}
@media screen and (max-width: 767px) {
  .top__slider-card-cat {
    font-size: 12px;
  }
}
.top__mv {
  position: relative;
  height: calc(100vh - 70px);
  height: calc(100svh - 70px);
  border-radius: 0 0 100px 100px;
  overflow: hidden;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__mv {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100vh;
    height: 100svh;
    border-radius: 0 0 40px 40px;
  }
}
.top__mv-wrapper {
  position: relative;
  z-index: 2;
  max-width: calc(1520px + 8%);
  width: 100%;
  padding: 43px 4% 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top__mv-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    padding: 90px 6.67% 32px;
  }
}
.top__mv-title {
  font-size: 5.2rem;
  line-height: 1.5em;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 981px) and (max-width: 1920px) {
  .top__mv-title {
    font-size: calc(15px + (52 - 15) * (100vw - 980px) / (1920 - 980));
  }
}
@media screen and (max-width: 767px) {
  .top__mv-title {
    font-size: 26px;
    line-height: 1.5em;
    text-align: center;
  }
}
@media screen and (min-width: 320px) and (max-width: 374px) {
  .top__mv-title {
    font-size: calc(22px + (26 - 22) * (100vw - 320px) / (374 - 320));
  }
}
.top__mv-info {
  margin-top: 20px;
  padding-bottom: 15px;
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 981px) and (max-width: 1920px) {
  .top__mv-info {
    margin-top: calc(5px + (20 - 5) * (100vw - 981px) / (1920 - 981));
  }
}
@media screen and (max-width: 767px) {
  .top__mv-info {
    gap: 13px;
    padding-bottom: 12px;
  }
}
.top__mv-info-block {
  position: relative;
  min-width: 200px;
  max-width: 200px;
  background-color: #fff;
  border-radius: 15px;
  padding: 18px 10px 22px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__mv-info-block {
    min-width: calc(50% - 6.5px);
    max-width: calc(50% - 6.5px);
    padding: 14px 10px 18.4px;
  }
}
.top__mv-info-block::after {
  content: "";
  border-left: 13.5px solid transparent;
  border-right: 13.5px solid transparent;
  border-top: 23px solid #fff;
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top__mv-info-block::after {
    border-left: 10.5px solid transparent;
    border-right: 10.5px solid transparent;
    border-top: 18px solid #fff;
    bottom: -12px;
  }
}
.top__mv-info-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 981px) and (max-width: 1920px) {
  .top__mv-info-title {
    font-size: calc(8px + (16 - 8) * (100vw - 980px) / (1920 - 980));
  }
}
@media screen and (max-width: 767px) {
  .top__mv-info-title {
    font-size: 12px;
  }
}
.top__mv-info-title::before, .top__mv-info-title::after {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  border-radius: 2px;
  background-color: #927f7f;
}
.top__mv-info-title::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.top__mv-info-title::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.top__mv-info-text {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 6px;
}
@media screen and (min-width: 981px) and (max-width: 1920px) {
  .top__mv-info-text {
    font-size: calc(10px + (20 - 10) * (100vw - 980px) / (1920 - 980));
  }
}
@media screen and (max-width: 767px) {
  .top__mv-info-text {
    font-size: 16px;
    margin-top: 4px;
  }
}
.top__mv-info-text > .fs-small {
  font-size: 1.8rem;
}
@media screen and (min-width: 981px) and (max-width: 1920px) {
  .top__mv-info-text > .fs-small {
    font-size: calc(9px + (18 - 9) * (100vw - 980px) / (1920 - 980));
  }
}
@media screen and (max-width: 767px) {
  .top__mv-info-text > .fs-small {
    font-size: 16px;
  }
}
.top__mv-info-text > .fs-big {
  font-size: 2.8rem;
}
@media screen and (min-width: 981px) and (max-width: 1920px) {
  .top__mv-info-text > .fs-big {
    font-size: calc(14px + (28 - 14) * (100vw - 980px) / (1920 - 980));
  }
}
@media screen and (max-width: 767px) {
  .top__mv-info-text > .fs-big {
    font-size: 22px;
  }
}
.top__mv-desc {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.03em;
  margin-top: 20px;
}
@media screen and (min-width: 981px) and (max-width: 1920px) {
  .top__mv-desc {
    font-size: calc(10px + (20 - 10) * (100vw - 980px) / (1920 - 980));
    margin-top: calc(5px + (20 - 5) * (100vw - 980px) / (1920 - 980));
  }
}
@media screen and (max-width: 767px) {
  .top__mv-desc {
    font-size: 16px;
    line-height: 1.75em;
    margin-top: 16px;
    text-align: center;
  }
}
.top__mv-ct {
  max-width: 456px;
  padding: 28px 32px 32px;
  background-color: #fff;
  border-radius: 15px;
  margin-top: 24px;
}
@media screen and (min-width: 981px) and (max-width: 1920px) {
  .top__mv-ct {
    padding: calc(14px + (28 - 14) * (100vw - 980px) / (1920 - 980)) calc(20px + (32px - 20) * (100vw - 980px) / (1920 - 980)) calc(20px + (32px - 20) * (100vw - 980px) / (1920 - 980));
    margin-top: calc(10px + (24 - 10) * (100vw - 980px) / (1920 - 980));
  }
}
@media screen and (max-width: 767px) {
  .top__mv-ct {
    max-width: 100%;
    padding: 24px 12px 24px 15px;
    margin-top: auto;
  }
}
.top__mv-ct-title {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 981px) and (max-width: 1920px) {
  .top__mv-ct-title {
    font-size: calc(10px + (20 - 10) * (100vw - 980px) / (1920 - 980));
  }
}
@media screen and (max-width: 767px) {
  .top__mv-ct-title {
    font-size: 16px;
  }
}
.top__mv-ct-ctr {
  margin-top: 15px;
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__mv-ct-ctr .email-link,
  .top__mv-ct-ctr .chatwork-link {
    height: 50px;
    gap: 6px;
    padding: 8px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-ct-ctr .email-link .email-link__icon,
  .top__mv-ct-ctr .email-link .chatwork-link__icon,
  .top__mv-ct-ctr .chatwork-link .email-link__icon,
  .top__mv-ct-ctr .chatwork-link .chatwork-link__icon {
    min-width: 34px;
    width: 34px;
    height: 34px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-ct-ctr .email-link .email-link__text,
  .top__mv-ct-ctr .email-link .chatwork-link__text,
  .top__mv-ct-ctr .chatwork-link .email-link__text,
  .top__mv-ct-ctr .chatwork-link .chatwork-link__text {
    font-size: 12px;
  }
}
@media screen and (min-width: 361px) and (max-width: 375px) {
  .top__mv-ct-ctr .email-link .email-link__text,
  .top__mv-ct-ctr .email-link .chatwork-link__text,
  .top__mv-ct-ctr .chatwork-link .email-link__text,
  .top__mv-ct-ctr .chatwork-link .chatwork-link__text {
    font-size: calc(11px + (12 - 11) * (100vw - 361px) / (375 - 361));
  }
}
.top__mv-video {
  width: 100%;
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  position: absolute;
  top: 51%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top__mv-video {
    height: 105%;
    -o-object-position: bottom center;
       object-position: bottom center;
  }
}
@media screen and (max-width: 767px) {
  .top__status {
    margin-top: 77px;
  }
}
@media screen and (max-width: 767px) {
  .top__status-main {
    background-color: #fff;
    border-radius: 15px;
    padding: 16px 25px;
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 767px) {
  .top__status-title {
    font-size: 20px;
    letter-spacing: 0.03em;
    color: #5ea4d8;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .top__status-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .top__status-item {
    background-color: #eff3f6;
    border-radius: 12px;
    padding: 15px 10px 20px;
  }
}
@media screen and (max-width: 767px) {
  .top__status-item-title {
    font-size: 12px;
    letter-spacing: 0.03em;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .top__status-item-date {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    margin-top: 2px;
  }
}
@media screen and (max-width: 767px) {
  .top__status-item-icon {
    width: 40px;
    height: 40px;
    margin: 12px auto 0;
  }
}
.top__price {
  padding: 100px 0 168px;
}
@media screen and (max-width: 767px) {
  .top__price {
    padding: 80px 0 150px;
  }
}
.top__price-main {
  display: grid;
  grid-template-columns: auto 52.38%;
  gap: 9.5%;
  margin: 64px 0 80px;
}
@media screen and (max-width: 1100px) {
  .top__price-main {
    gap: 5%;
  }
}
@media screen and (max-width: 980px) {
  .top__price-main {
    grid-template-columns: auto 48%;
  }
}
@media screen and (max-width: 767px) {
  .top__price-main {
    display: block;
    margin: 40px 0 46px;
  }
}
.top__price-main-info {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media screen and (max-width: 767px) {
  .top__price-main-info {
    margin-top: 32px;
  }
}
.top__price-main-title {
  width: 100%;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  color: #fff;
  background-color: #5ea4d8;
  border-radius: 5px;
  padding: 2.5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__price-main-title {
    font-size: 14px;
    padding: 3px 0;
  }
}
.top__price-main-title::before {
  content: "最短";
  font-size: 1.4rem;
  color: #5ea4d8;
  background-color: #fff;
  width: 53px;
  height: 23px;
  border-radius: 12px;
  margin-right: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__price-main-title::before {
    width: 47px;
    height: 20px;
    font-size: 12px;
  }
}
.top__price-main-title > .fs-big {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top__price-main-title > .fs-big {
    font-size: 20px;
  }
}
.top__price-main-subtitle {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__price-main-subtitle {
    font-size: 20px;
  }
}
@media screen and (min-width: 361px) and (max-width: 375px) {
  .top__price-main-subtitle {
    font-size: calc(19px + (20 - 19) * (100vw - 361px) / (375 - 361));
  }
}
@media screen and (max-width: 360px) {
  .top__price-main-subtitle {
    font-size: 20px;
  }
}
.top__price-main-num {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .top__price-main-num {
    font-size: calc(32px + (40 - 32) * (100vw - 768px) / (980 - 768));
  }
}
@media screen and (max-width: 767px) {
  .top__price-main-num {
    font-size: 32px;
  }
}
@media screen and (min-width: 320px) and (max-width: 374px) {
  .top__price-main-num {
    font-size: calc(25px + (32 - 25) * (100vw - 320px) / (374 - 320));
  }
}
.top__price-main-num > .num {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  font-family: "Lexend", sans-serif;
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .top__price-main-num > .num {
    font-size: calc(60px + (68 - 60) * (100vw - 768px) / (980 - 768)) !important;
  }
}
@media screen and (max-width: 767px) {
  .top__price-main-num > .num {
    font-size: 58px !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 374px) {
  .top__price-main-num > .num {
    font-size: calc(52px + (58 - 52) * (100vw - 320px) / (374 - 320)) !important;
  }
}
.top__price-main-num > .yen {
  font-size: 4.8rem;
  font-family: "Lexend", sans-serif;
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .top__price-main-num > .yen {
    font-size: calc(40px + (48 - 40) * (100vw - 768px) / (980 - 768));
  }
}
@media screen and (max-width: 767px) {
  .top__price-main-num > .yen {
    font-size: 40px;
  }
}
@media screen and (min-width: 320px) and (max-width: 374px) {
  .top__price-main-num > .yen {
    font-size: calc(34px + (40 - 34) * (100vw - 320px) / (374 - 320));
  }
}
.top__price-main-detail {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .top__price-main-detail {
    margin-top: 16px;
  }
}
.top__price-main-desc {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.03em;
  background-color: #fff;
  border-radius: 5px;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .top__price-main-desc {
    font-size: 14px;
    line-height: 2em;
    padding: 12px;
  }
}
.top__price-main-desc:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .top__price-main-desc:not(:last-child) {
    margin-bottom: 12px;
  }
}
.top__price-main-visual {
  width: 100%;
  max-height: 400px;
  aspect-ratio: 528/400;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__price-main-visual {
    max-height: 100%;
    aspect-ratio: 325/200;
  }
}
.top__price-main-video {
  width: 100%;
  height: 105%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.top__price-free {
  margin: 80px 0;
}
@media screen and (max-width: 767px) {
  .top__price-free {
    margin: 46px 0 64px;
  }
}
.top__price-free-title {
  margin-bottom: 58px;
}
@media screen and (max-width: 767px) {
  .top__price-free-title {
    margin-bottom: 62px;
  }
}
.top__price-free-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media screen and (max-width: 980px) {
  .top__price-free-main {
    display: block;
  }
}
.top__price-free-blk {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .top__price-free-blk {
    padding: 25px;
  }
}
@media screen and (max-width: 980px) {
  .top__price-free-blk:not(:last-child) {
    margin-bottom: 8px;
  }
}
.top__price-free-blk-title {
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  padding-left: 26px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top__price-free-blk-title {
    font-size: 20px;
    padding-left: 18px;
    margin-bottom: 16px;
  }
}
.top__price-free-blk-title::before {
  content: "";
  width: 10px;
  height: 16px;
  border-radius: 3px;
  background-color: #5ea4d8;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top__price-free-blk-title::before {
    width: 8px;
  }
}
.top__price-free-js {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.top__price-free-js-item.highlight {
  width: 100%;
}
.top__price-free-js-item.highlight > span {
  background-color: #5ea4d8;
  color: #fff;
}
.top__price-free-js-item.etc > span {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}
.top__price-free-js-item > span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  padding: 4px 12px;
  border-radius: 17px;
  background-color: #daebf8;
}
@media screen and (max-width: 767px) {
  .top__price-free-js-item > span {
    font-size: 14px;
  }
}
.top__price-free-js-note {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 2em;
  margin-top: 12px;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .top__price-free-js-note {
    font-size: 12px;
    line-height: 2em;
    margin-top: 16px;
  }
}
.top__price-free-js-note::before {
  content: "※";
  margin-left: -15px;
}
.top__price-free-design-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .top__price-free-design-item {
    gap: 12px;
  }
}
.top__price-free-design-item:not(:last-child) {
  margin-bottom: 16px;
}
.top__price-free-design-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .top__price-free-design-text {
    font-size: 16px;
  }
}
.top__price-ct {
  margin: 80px 0;
}
.top__price-ct-title {
  margin-bottom: 58px;
}
.top__price-ct-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 330px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px 8px;
}
@media screen and (max-width: 767px) {
  .top__price-ct-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.top__price-ct-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 24px 32px 32px;
}
@media screen and (max-width: 767px) {
  .top__price-ct-item {
    padding: 20px 16px;
  }
}
.top__price-ct-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  background-color: #5ea4d8;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__price-ct-icon {
    width: 50px;
    height: 50px;
  }
}
.top__price-ct-heading {
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-top: 24px;
  padding-left: 22px;
}
@media screen and (max-width: 767px) {
  .top__price-ct-heading {
    font-size: 14px;
    margin-top: 8px;
    padding-left: 13px;
  }
}
.top__price-ct-heading::before {
  content: "";
  width: 10px;
  height: 16px;
  border-radius: 3px;
  background-color: #5ea4d8;
  position: absolute;
  left: 0;
  top: 5px;
}
@media screen and (max-width: 767px) {
  .top__price-ct-heading::before {
    width: 5px;
    height: 10px;
    top: 6px;
  }
}
.top__price-ct-desc {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 2em;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .top__price-ct-desc {
    font-size: 12px;
    line-height: 2em;
    margin-top: 8px;
  }
}
.top__price-others-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 8px;
}
@media screen and (max-width: 767px) {
  .top__price-others-list {
    display: block;
  }
}
.top__price-others-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .top__price-others-item {
    padding: 25px;
  }
}
@media screen and (max-width: 767px) {
  .top__price-others-item:not(:last-child) {
    margin-bottom: 12px;
  }
}
.top__price-others-heading {
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  padding-left: 26px;
}
@media screen and (max-width: 767px) {
  .top__price-others-heading {
    font-size: 20px;
    padding-left: 18px;
  }
}
.top__price-others-heading::before {
  content: "";
  width: 10px;
  height: 16px;
  border-radius: 3px;
  background-color: #5ea4d8;
  position: absolute;
  left: 0;
  top: 12px;
}
@media screen and (max-width: 767px) {
  .top__price-others-heading::before {
    width: 8px;
    top: 8px;
  }
}
.top__price-others-desc {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 2em;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .top__price-others-desc {
    font-size: 14px;
    line-height: 2em;
    margin-top: 16px;
  }
}
.top__ct {
  position: relative;
  padding: 107px 0 80px;
}
@media screen and (max-width: 767px) {
  .top__ct {
    padding: 74px 0 80px;
  }
}
.top__ct::before {
  content: "";
  width: 190.44px;
  height: 180px;
  background: url("./public/images/top/ct-icon.png") center/contain no-repeat;
  position: absolute;
  top: -97px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top__ct::before {
    width: 148.12px;
    height: 140px;
    top: -82px;
  }
}
.top__ct--white {
  background-color: #fff;
}
.top__ct-title {
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__ct-title {
    font-size: 16px;
    line-height: 2em;
  }
}
.top__ct-ctr {
  margin-top: 32px;
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__ct-ctr {
    margin-top: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.top__ach {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(ellipse at 4.3% 3.1%, #5ea4d8 0%, #94c1e2 100%);
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top__ach {
    padding: 80px 0;
  }
}
.top__ach::before {
  content: "";
  width: 1057.23px;
  height: 1020.86px;
  background: url("./public/images/top/ach-deco.svg") center/cover no-repeat;
  position: absolute;
  top: -332px;
  left: -308px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__ach::before {
    width: 571.22px;
    height: 551.57px;
    top: -70px;
    left: -256px;
  }
}
.top__ach-main-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 103px;
}
@media screen and (max-width: 980px) {
  .top__ach-main-list {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .top__ach-main-list {
    margin-top: 105px;
  }
}
.top__ach-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 980px) {
  .top__ach-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.top__ach-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px 10px;
  border: 1px solid #94cbf3;
}
@media screen and (max-width: 767px) {
  .top__ach-item {
    padding: 20px 10px;
  }
}
.top__ach-item--main {
  position: relative;
  padding: 160px 10px 24px;
}
@media screen and (max-width: 767px) {
  .top__ach-item--main {
    padding: 73px 4px 24px;
  }
}
@media screen and (max-width: 980px) {
  .top__ach-item--main:first-child {
    grid-column: 1/3;
    grid-row: 1/3;
    width: 50%;
    margin: 0 auto 100px;
  }
}
@media screen and (max-width: 767px) {
  .top__ach-item--main:first-child {
    margin-bottom: 60px;
  }
}
.top__ach-item--main .top__ach-item-title {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .top__ach-item--main .top__ach-item-title {
    font-size: 14px;
  }
}
.top__ach-item--main .top__ach-item-num {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .top__ach-item--main .top__ach-item-num {
    font-size: 16px;
  }
}
.top__ach-item--main .top__ach-item-num > .num {
  font-size: 8rem;
}
@media screen and (min-width: 981px) and (max-width: 1036px) {
  .top__ach-item--main .top__ach-item-num > .num {
    font-size: calc(74px + (80 - 74) * (100vw - 981px) / (1036 - 981));
  }
}
@media screen and (max-width: 767px) {
  .top__ach-item--main .top__ach-item-num > .num {
    font-size: 40px;
  }
}
.top__ach-item.trade::before {
  content: "";
  width: 236px;
  height: 236px;
  background: url("./public/images/top/ach-1.png") center/contain no-repeat;
  position: absolute;
  top: -118px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top__ach-item.trade::before {
    width: 120px;
    height: 120px;
    top: -65px;
  }
}
.top__ach-item.repeat::before {
  content: "";
  width: 244px;
  height: 244px;
  background: url("./public/images/top/ach-2.png") center/contain no-repeat;
  position: absolute;
  top: -108px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top__ach-item.repeat::before {
    width: 120px;
    height: 120px;
    top: -61px;
  }
}
.top__ach-item.laptop::before {
  content: "";
  width: 158px;
  height: 159px;
  background: url("./public/images/top/ach-3.png") center/contain no-repeat;
  position: absolute;
  top: -59px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top__ach-item.laptop::before {
    width: 85px;
    height: 85px;
    top: -42px;
  }
}
.top__ach-item-title {
  font-size: 2rem;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__ach-item-title {
    font-size: 12px;
  }
}
.top__ach-item-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: #5ea4d8;
  margin-top: 5px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__ach-item-num {
    font-size: 14px;
    margin-top: 8px;
  }
}
.top__ach-item-num > .num {
  font-size: 5.6rem;
  font-family: "Lexend", sans-serif;
}
@media screen and (max-width: 767px) {
  .top__ach-item-num > .num {
    font-size: 32px;
  }
}
.top__works {
  padding: 100px 0 104px;
}
@media screen and (max-width: 767px) {
  .top__works {
    padding: 76px 0 80px;
  }
}
.top__works-main {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .top__works-main {
    margin-top: 40px;
  }
}
.top__works-button {
  margin-top: 40px;
}
.top__flow {
  padding: 100px 0 168px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top__flow {
    padding: 80px 0 150px;
  }
}
.top__flow-subtitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 64px auto 32px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #5ea4d8;
  gap: 16.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__flow-subtitle {
    font-size: 2rem;
    margin: 40px auto 24px;
    gap: 29.5px;
  }
}
.top__flow-subtitle::before, .top__flow-subtitle::after {
  content: "";
  width: 2px;
  height: 18px;
  border-radius: 5px;
  background-color: #5ea4d8;
}
.top__flow-subtitle::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.top__flow-subtitle::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.top__flow-list {
  list-style-type: none;
  counter-reset: flow-item;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 980px) {
  .top__flow-list {
    max-width: 275px;
    margin: 0 auto;
    display: block;
  }
}
.top__flow-item {
  position: relative;
  min-height: 132px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5em;
  color: #5ea4d8;
  text-align: center;
  padding: 30px 0 0 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 981px) and (max-width: 1080px) {
  .top__flow-item {
    font-size: calc(14px + (16 - 14) * (100vw - 981px) / (1080 - 981));
  }
}
@media screen and (max-width: 980px) {
  .top__flow-item {
    min-height: 140px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 83px 0 0;
    font-size: 18px;
    line-height: 1.4444444444em;
  }
}
.top__flow-item::before {
  counter-increment: flow-item;
  content: counter(flow-item, decimal-leading-zero);
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Lexend", sans-serif;
  color: inherit;
  position: absolute;
  top: 17px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 18px));
          transform: translateX(calc(-50% + 18px));
}
@media screen and (max-width: 980px) {
  .top__flow-item::before {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 53px;
  }
}
.top__flow-item::after {
  content: "";
  border-top: 66px solid transparent;
  border-bottom: 66px solid transparent;
  position: absolute;
  right: -28px;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .top__flow-item::after {
    border-left: 137.5px solid transparent !important;
    border-right: 137.5px solid transparent;
    border-bottom: none;
    right: 0;
    top: unset;
    bottom: -23px;
  }
}
@media screen and (min-width: 200px) and (max-width: 335px) {
  .top__flow-item::after {
    border-left: calc(80.17px + (137.5 - 80.17) * (100vw - 200px) / (335 - 200)) solid transparent !important;
    border-right: calc(80.17px + (137.5 - 80.17) * (100vw - 200px) / (335 - 200)) solid transparent;
  }
}
.top__flow-item:nth-child(1) {
  background-color: #fff;
}
.top__flow-item:nth-child(1)::after {
  border-left: 29px solid #fff;
}
@media screen and (max-width: 980px) {
  .top__flow-item:nth-child(1)::after {
    border-top: 24px solid #fff;
  }
}
.top__flow-item:nth-child(2) {
  background-color: #dff1ff;
}
.top__flow-item:nth-child(2)::after {
  border-left: 29px solid #dff1ff;
}
@media screen and (max-width: 980px) {
  .top__flow-item:nth-child(2)::after {
    border-top: 24px solid #dff1ff;
  }
}
.top__flow-item:nth-child(3) {
  background-color: #b7ddf9;
}
.top__flow-item:nth-child(3)::after {
  border-left: 29px solid #b7ddf9;
}
@media screen and (max-width: 980px) {
  .top__flow-item:nth-child(3)::after {
    border-top: 24px solid #b7ddf9;
  }
}
.top__flow-item:nth-child(4) {
  background-color: #94cbf3;
}
.top__flow-item:nth-child(4)::after {
  border-left: 29px solid #94cbf3;
}
@media screen and (max-width: 980px) {
  .top__flow-item:nth-child(4)::after {
    border-top: 24px solid #94cbf3;
  }
}
.top__flow-item:nth-child(5) {
  background-color: #83c0ee;
}
.top__flow-item:nth-child(5)::after {
  border-left: 29px solid #83c0ee;
}
@media screen and (max-width: 980px) {
  .top__flow-item:nth-child(5)::after {
    border-top: 24px solid #83c0ee;
  }
}
.top__flow-item:nth-child(6) {
  background-color: #6fb3e5;
}
.top__flow-item:nth-child(6)::after {
  border-left: 29px solid #6fb3e5;
}
@media screen and (max-width: 980px) {
  .top__flow-item:nth-child(6)::after {
    border-top: 24px solid #6fb3e5;
  }
}
.top__flow-item:nth-child(7) {
  background-color: #5ea4d8;
}
.top__flow-item:nth-child(7)::after {
  border-left: 29px solid #5ea4d8;
}
@media screen and (max-width: 980px) {
  .top__flow-item:nth-child(7)::after {
    border-top: 24px solid #5ea4d8;
  }
}
.top__flow-item:nth-child(4), .top__flow-item:nth-child(5), .top__flow-item:nth-child(6), .top__flow-item:nth-child(7) {
  color: #fff;
}
.top__flow-item:first-child {
  padding-left: 25px;
}
@media screen and (max-width: 980px) {
  .top__flow-item:first-child {
    padding-left: 0;
    padding-top: 58px;
  }
}
.top__flow-item:first-child::before {
  -webkit-transform: translateX(calc(-50% + 15px));
          transform: translateX(calc(-50% + 15px));
}
@media screen and (max-width: 980px) {
  .top__flow-item:first-child::before {
    top: 28px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.top__flow-item:last-child {
  font-size: 2.1rem;
}
@media screen and (max-width: 980px) {
  .top__flow-item:last-child {
    font-size: 24px;
    padding-top: 75px;
  }
}
@media screen and (max-width: 980px) {
  .top__flow-item:last-child::before {
    top: 45px;
  }
}
.top__column {
  padding: 100px 0;
  background-color: #fff;
}
.top__column-main {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .top__column-main {
    margin-top: 40px;
  }
}
.top__column-button {
  margin-top: 40px;
}
.top__faq {
  position: relative;
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .top__faq {
    padding: 80px 0 0;
  }
}
.top__faq::before {
  content: "";
  width: 232px;
  height: 284px;
  background: url("./public/images/top/faq-deco.png") center/contain no-repeat;
  position: absolute;
  right: 16.04%;
  top: -100px;
}
@media screen and (max-width: 1280px) {
  .top__faq::before {
    right: 2%;
  }
}
@media screen and (max-width: 767px) {
  .top__faq::before {
    width: 93px;
    height: 114px;
    right: 0;
    top: -40px;
  }
}
.top__faq-list {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .top__faq-list {
    margin-top: 41px;
  }
}
.top__faq-item {
  padding: 16px 24px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .top__faq-item {
    padding: 12px;
  }
}
.top__faq-item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__faq-item:not(:last-child) {
    margin-bottom: 12px;
  }
}
.top__faq-item.active .top__faq-item-q::before {
  opacity: 0;
}
.top__faq-item.active .top__faq-item-q::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.top__faq-item-q {
  position: relative;
}
.top__faq-item-q::before, .top__faq-item-q::after {
  content: "";
  background-color: #5ea4d8;
  border-radius: 5px;
  position: absolute;
  -webkit-transition: 0.35s ease;
  transition: 0.35s ease;
}
.top__faq-item-q::before {
  width: 22px;
  height: 2px;
  top: 15px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .top__faq-item-q::before {
    width: 20px;
  }
}
.top__faq-item-q::after {
  width: 2px;
  height: 22px;
  top: 6px;
  right: 10px;
}
@media screen and (max-width: 767px) {
  .top__faq-item-q::after {
    height: 20px;
    right: 9px;
  }
}
.top__faq-item-q-ctr {
  position: relative;
  padding: 0 36px;
}
@media screen and (max-width: 767px) {
  .top__faq-item-q-ctr {
    padding: 0 32px;
  }
}
.top__faq-item-q-ctr::before {
  content: "Q";
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Lexend", sans-serif;
  letter-spacing: 0.03em;
  color: #5ea4d8;
  position: absolute;
  top: -2px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top__faq-item-q-ctr::before {
    font-size: 20px;
    top: 4px;
  }
}
.top__faq-item-q-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .top__faq-item-q-text {
    font-size: 16px;
    line-height: 2em;
  }
}
.top__faq-item-a {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s ease;
  transition: max-height 0.35s ease;
}
.top__faq-item-a-ctr {
  position: relative;
  padding: 12px 60px 0 36px;
}
@media screen and (max-width: 767px) {
  .top__faq-item-a-ctr {
    padding: 8px 25px 0 30px;
  }
}
.top__faq-item-a-ctr::before {
  content: "A";
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Lexend", sans-serif;
  letter-spacing: 0.03em;
  color: #927f7f;
  position: absolute;
  top: 13px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top__faq-item-a-ctr::before {
    font-size: 20px;
    top: 10px;
  }
}
.top__faq-item-a-text {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__faq-item-a-text {
    font-size: 14px;
    line-height: 2em;
  }
}
.top__faq-others {
  position: relative;
  margin-top: 100px;
  padding-top: 45px;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__faq-others {
    padding-top: 32px;
  }
}
.top__faq-others::before {
  content: "";
  width: 2820px;
  height: 845px;
  background: url("./public/images/top/faq-ben-bg.svg") center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__faq-others::before {
    width: 954px;
    height: 581.51px;
    background: url("./public/images/top/faq-ben-bg-sp.svg") center/cover no-repeat;
  }
}
.top__faq-others-ctr {
  max-width: calc(1244px + 8%);
  padding: 0 4% 100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 54.5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  background-color: #826767;
  border-radius: 50% 50% 0 0;
}
@media screen and (max-width: 980px) {
  .top__faq-others-ctr {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .top__faq-others-ctr {
    padding: 0 6.67% 80px;
  }
}
.top__faq-others-img {
  aspect-ratio: 542/618;
  max-width: 542px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top__faq-others-img {
    aspect-ratio: 260/296;
    max-width: 260px;
  }
}
.top__faq-others-list {
  counter-reset: faq-others;
  padding-right: 118px;
}
@media screen and (max-width: 1336px) {
  .top__faq-others-list {
    padding: 0;
  }
}
@media screen and (max-width: 980px) {
  .top__faq-others-list {
    margin-top: 51px;
  }
}
.top__faq-others-item {
  position: relative;
}
.top__faq-others-item::after {
  counter-increment: faq-others;
  content: counter(faq-others, decimal-leading-zero);
  font-size: 5rem;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #9a7d7d;
  position: absolute;
  top: -28px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__faq-others-item::after {
    font-size: 40px;
    top: -13px;
  }
}
.top__faq-others-item:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top__faq-others-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.top__faq-others-q {
  display: block;
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 24px;
  padding-left: 26px;
}
@media screen and (max-width: 767px) {
  .top__faq-others-q {
    font-size: 20px;
    line-height: 1.45em;
    margin-bottom: 20px;
  }
}
.top__faq-others-q::before {
  content: "";
  width: 10px;
  height: 16px;
  border-radius: 3px;
  background-color: #5ea4d8;
  position: absolute;
  left: 0;
  top: 11px;
}
@media screen and (max-width: 767px) {
  .top__faq-others-q::before {
    top: 6px;
  }
}
.top__faq-others-a {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 2em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__faq-others-a {
    font-size: 14px;
    line-height: 2em;
  }
}
.top__faq-benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .top__faq-benefit {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 24px;
    padding: 0 13px;
    max-width: 345px;
  }
}
.top__faq-benefit-ctr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .top__faq-benefit-ctr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.top__faq-benefit-icon {
  min-width: 100px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__faq-benefit-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5em;
  color: #fff;
}
@media screen and (min-width: 981px) and (max-width: 1100px) {
  .top__faq-benefit-text {
    font-size: calc(14px + (18 - 14) * (100vw - 981px) / (1100 - 981));
  }
}
@media screen and (max-width: 767px) {
  .top__faq-benefit-text {
    font-size: 16px;
    line-height: 1.6875em;
  }
}

.column {
  background-color: #fff;
}
.column__main {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .column__main {
    padding: 80px 0;
  }
}
.column__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 150px;
}
@media screen and (max-width: 767px) {
  .column__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.column__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .column__categories {
    gap: 8px;
  }
}
.column__category {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: #927f7f;
  background-color: #fbf8f6;
  border-radius: 28px;
  padding: 8px 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .column__category {
    font-size: 14px;
  }
}
.column__category:hover:not(.active) {
  opacity: 0.7;
}
.column__category.active {
  font-weight: 700;
  background-color: #927f7f;
  color: #fff;
}
.column__filter-select {
  width: 180px;
  height: 40px;
  border-radius: 5px;
  border-color: #c7c7c7;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  padding: 0 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("./public/images/icons/select-arrow.svg") right/contain no-repeat;
  background-size: 14px;
  background-position: right 12px top 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .column__filter-select {
    width: 100%;
    font-size: 14px;
  }
}
.column__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 48px;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .column__list {
    display: block;
    margin-top: 40px;
  }
}
.column__item {
  display: block;
}
@media screen and (max-width: 767px) {
  .column__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.column__item:hover .column__item-title {
  color: #5ea4d8;
}
.column__item:hover .column__item-image {
  border-radius: 5px;
}
.column__item:hover .column__item-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.column__item-date {
  font-size: 1.6rem;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  color: #5ea4d8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .column__item-date {
    font-size: 14px;
  }
}
.column__item-image {
  aspect-ratio: 16/9;
  border-radius: 20px;
  margin-top: 16px;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .column__item-image {
    margin-top: 10px;
  }
}
.column__item-image img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.column__item-title {
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  margin-top: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 980px) {
  .column__item-title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .column__item-title {
    font-size: 20px;
  }
}
.column__item-title::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("./public/images/icons/button-arrow-blue.svg") center/contain no-repeat;
  margin-left: 20px;
  -webkit-transform: translateY(2.5px);
          transform: translateY(2.5px);
}
.column__item-detail {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid #c7c7c7;
}
.column__item-cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.column__item-cat {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #927f7f;
  background-color: #fbf8f6;
  padding: 8px;
  border-radius: 18px;
}
@media screen and (max-width: 767px) {
  .column__item-cat {
    font-size: 12px;
  }
}
.column__item-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 12px;
}
.column__item-tag {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #b2a4a4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.column__item-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url("./public/images/icons/tag.svg") center/contain no-repeat;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.column-dtl {
  background-color: #fff;
}
.column-dtl__wrapper {
  display: grid;
  grid-template-columns: 63.49% 26.59%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 100px !important;
}
@media screen and (max-width: 980px) {
  .column-dtl__wrapper {
    display: block;
  }
}
.column-dtl__date {
  font-size: 1.6rem;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #5ea4d8;
}
.column-dtl__title {
  font-size: 3.2rem;
  letter-spacing: 0.03em;
  line-height: 1.5em;
  margin-top: 16px;
}
.column-dtl__keys {
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid #c7c7c7;
}
.column-dtl__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.column-dtl__cat {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #927f7f;
  background-color: #fbf8f6;
  border-radius: 17px;
  padding: 8px;
}
.column-dtl__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 16px;
}
.column-dtl__tag {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #b2a4a4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.column-dtl__tag::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url("./public/images/icons/tag.svg") center/contain no-repeat;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.column-dtl__ftr-image {
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .column-dtl__ftr-image {
    margin: 30px 0;
  }
}
.column-dtl__excerpt {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 2em;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .column-dtl__excerpt {
    font-size: 14px;
    line-height: 2em;
    margin: 30px 0;
  }
}
.column-dtl__toc {
  background-color: #f8f8f8;
  padding: 32px;
  border-radius: 20px;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .column-dtl__toc {
    padding: 20px;
    margin: 30px 0;
  }
}
.column-dtl__toc-content {
  counter-reset: parent-counter;
}
.column-dtl__toc-title {
  font-size: 2rem;
  letter-spacing: 0.03em;
  padding-bottom: 12px;
  border-bottom: 1px solid #c7c7c7;
}
.column-dtl__toc-list {
  list-style-type: none;
  counter-increment: parent-counter;
  padding: 24px 0;
  border-bottom: 1px solid #c7c7c7;
}
.column-dtl__toc-item::before {
  content: counter(parent-counter) ". ";
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.column-dtl__toc-link {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.75em;
}
.column-dtl__toc-sublist {
  list-style-type: none;
  counter-reset: child-counter;
  margin-top: 16px;
}
.column-dtl__toc-subitem {
  color: #7b7979;
}
.column-dtl__toc-subitem::before {
  counter-increment: child-counter;
  content: counter(parent-counter) "-" counter(child-counter) ". ";
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.column-dtl__toc-subitem:not(:last-child) {
  margin-bottom: 16px;
}
.column-dtl__toc-sublink {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1.7142857143em;
}
.column-dtl__content {
  counter-reset: art-ct;
  margin: 40px 0;
  word-break: break-all;
}
.column-dtl__content p {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .column-dtl__content p {
    font-size: 14px;
    line-height: 2em;
  }
}
.column-dtl__content ul {
  list-style-type: disc;
  padding: 20px;
  border: 1px solid #c7c7c7;
  border-radius: 10px;
  margin: 16px 0;
}
.column-dtl__content ul li {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1.75em;
  margin-left: 23px;
}
.column-dtl__content ul li:not(:last-child) {
  margin-bottom: 12px;
}
.column-dtl__content ul li::marker {
  color: #5ea4d8;
}
.column-dtl__footer-item {
  padding: 24px 0;
  border-bottom: 1px solid #c7c7c7;
}
.column-dtl__footer-item:first-child {
  border-top: 1px solid #c7c7c7;
}
.column-dtl__footer-title {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .column-dtl__footer-title {
    font-size: 14px;
  }
}
.column-dtl__footer-cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.column-dtl__footer-cat {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: #927f7f;
  padding: 8px;
  border-radius: 20px;
  background-color: #fbf8f6;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .column-dtl__footer-cat {
    font-size: 14px;
  }
}
.column-dtl__footer-cat:hover {
  opacity: 0.7;
}
.column-dtl__social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .column-dtl__social-links {
    gap: 10px;
  }
}
.column-dtl__social-link {
  width: 51px;
  height: 51px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .column-dtl__social-link {
    width: 40px;
    height: 40px;
  }
}
.column-dtl__social-link:hover {
  opacity: 0.7;
}
.column-dtl__pagination {
  display: grid;
  grid-template-columns: repeat(3, auto);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
}
.column-dtl__pagination-link, .column-dtl__pagination-list {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .column-dtl__pagination-link, .column-dtl__pagination-list {
    font-size: 14px;
  }
}
.column-dtl__pagination-list {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.column-dtl__pagination-list:hover {
  opacity: 0.7;
}
.column-dtl__pagination-link {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 24px 0 0;
}
.column-dtl__pagination-link::before {
  content: "";
  width: 8px;
  height: 14px;
  background: url("./public/images/icons/arrow-right.svg") center/contain no-repeat;
  position: absolute;
  top: 5px;
  right: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.column-dtl__pagination-link.disabled {
  pointer-events: none;
  opacity: 0.7;
}
.column-dtl__pagination-link:not(.disabled):hover {
  opacity: 0.7;
}
.column-dtl__pagination-link:not(.disabled):hover::before {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.column-dtl__pagination-link--reverse {
  padding: 0 0 0 24px;
}
.column-dtl__pagination-link--reverse::before {
  background: url("./public/images/icons/arrow-left.svg") center/contain no-repeat;
  right: unset;
  left: 0;
}
.column-dtl__pagination-link--reverse:not(.disabled):hover::before {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
@media screen and (max-width: 980px) {
  .column-dtl__aside {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .column-dtl__aside {
    margin-top: 80px;
  }
}
.column-dtl__aside-item:not(:last-child) {
  margin-bottom: 48px;
}
.column-dtl__aside-title {
  position: relative;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  line-height: 1.4583333333em;
  padding-left: 30px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .column-dtl__aside-title {
    font-size: 20px;
    padding-left: 26px;
  }
}
.column-dtl__aside-title::before {
  content: "";
  width: 10px;
  height: 16px;
  background-color: #5ea4d8;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 11px;
}
@media screen and (max-width: 767px) {
  .column-dtl__aside-title::before {
    top: 7px;
  }
}
@media screen and (max-width: 980px) {
  .column-dtl__aside-related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .column-dtl__aside-related {
    display: block;
  }
}
.column-dtl__aside-related-link {
  display: block;
}
.column-dtl__aside-related-link:not(:last-child) {
  margin-bottom: 24px;
}
.column-dtl__aside-related-link:hover .column-dtl__aside-related-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.column-dtl__aside-related-link:hover .column-dtl__aside-related-title {
  color: #5ea4d8;
}
.column-dtl__aside-related-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;
}
.column-dtl__aside-related-image img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.column-dtl__aside-related-title {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1.75em;
  margin-top: 12px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.column-dtl__aside-related-cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}
.column-dtl__aside-related-cat {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: #927f7f;
  padding: 6px;
  background-color: #fbf8f6;
  border-radius: 17px;
}
.column-dtl__aside-category {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  padding: 20px 0;
  border-bottom: 1px solid #c7c7c7;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .column-dtl__aside-category {
    font-size: 14px;
    padding: 10px 0;
  }
}
.column-dtl__aside-category:first-child {
  border-top: 1px solid #c7c7c7;
}
.column-dtl__aside-category:hover {
  opacity: 0.7;
}
.column-dtl__aside-related-empty {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .column-dtl__aside-related-empty {
    font-size: 14px;
  }
}

.contact {
  background-color: #fff;
}
.contact__wrapper {
  padding: 100px 4% !important;
}
@media screen and (max-width: 767px) {
  .contact__wrapper {
    padding: 40px 6.67% 80px !important;
  }
}
.contact__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media screen and (max-width: 900px) {
  .contact__links {
    display: block;
  }
}
.contact__link {
  display: block;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 10px;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 900px) {
  .contact__link:not(:last-child) {
    margin-bottom: 12px;
  }
}
.contact__link-title {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__link-title {
    font-size: 14px;
  }
}
.contact__form-wrapper.confirm {
  display: none;
}
.contact__form-main {
  margin-bottom: 40px;
}
.contact__number-ctr {
  margin-top: 12px;
  gap: 11.6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact__number-tel {
  font-size: 2.6rem;
  font-family: "Lexend", sans-serif;
  letter-spacing: 0.03em;
  color: #5ea4d8;
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__number-tel {
    font-size: 18px;
  }
}
.contact__number-tel::before {
  content: "";
  width: 18.35px;
  height: 18.35px;
  background: url("./public/images/icons/tel.svg") center/contain no-repeat;
}
.contact__number-sched {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #fff;
  background-color: #5ea4d8;
  border-radius: 5px;
  padding: 5px 8px;
}
@media screen and (max-width: 767px) {
  .contact__number-sched {
    font-size: 12px;
  }
}
.contact__chatwork {
  position: relative;
}
.contact__chatwork::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("./public/images/icons/button-arrow-brown.svg") center/contain no-repeat;
  position: absolute;
  right: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact__chatwork::after {
    width: 15px;
    height: 15px;
    right: 12px;
  }
}
.contact__chatwork:hover .contact__chatwork-text {
  color: #342525;
}
.contact__chatwork-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #927f7f;
  margin-top: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__chatwork-text {
    font-size: 16px;
    margin-top: 10px;
  }
}
.contact__chatwork-text::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("./public/images/icons/chatwork.svg") center/contain no-repeat;
}
.contact__intro {
  margin: 40px 0;
}
.contact__intro-text {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .contact__intro-text {
    font-size: 14px;
    line-height: 2em;
  }
}
.contact__intro-text.confirm {
  display: none;
}
.contact__form-item:not(:last-child) {
  margin-bottom: 24px;
}
.contact__form-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .contact__form-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}
.contact__form-note {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .contact__form-note {
    font-size: 14px;
  }
}
.contact__form-label {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5em;
}
.contact__form-label::before {
  content: "任意";
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 11px 1px;
  background-color: #c7c7c7;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: 16px;
}
.contact__form-label.required::before {
  content: "必須";
  background-color: #f2703f;
  color: #fff;
}
.contact__form-text, .contact__form-textarea {
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  padding: 10px 20px;
  border: 1px solid #c7c7c7;
  border-radius: 5px;
}
.contact__form-text::-webkit-input-placeholder, .contact__form-textarea::-webkit-input-placeholder {
  color: #c7c7c7;
}
.contact__form-text::-moz-placeholder, .contact__form-textarea::-moz-placeholder {
  color: #c7c7c7;
}
.contact__form-text:-ms-input-placeholder, .contact__form-textarea:-ms-input-placeholder {
  color: #c7c7c7;
}
.contact__form-text::-ms-input-placeholder, .contact__form-textarea::-ms-input-placeholder {
  color: #c7c7c7;
}
.contact__form-text::placeholder, .contact__form-textarea::placeholder {
  color: #c7c7c7;
}
.contact__form-text {
  height: 45px;
}
.contact__form-text[type=number]::-webkit-inner-spin-button, .contact__form-text[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
.contact__form-textarea {
  font-family: "Noto Sans JP", sans-serif;
  min-height: 160px;
}
.contact__form-radio {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}
.contact__form-radio > *:not(:last-child) {
  min-height: 35px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 32px;
}
.contact__form-radio > .wpcf7-list-item label input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact__form-radio > .wpcf7-list-item label input:checked + span::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
.contact__form-radio > .wpcf7-list-item label span {
  position: relative;
  padding-left: 47px;
  cursor: pointer;
}
.contact__form-radio > .wpcf7-list-item label span::before {
  content: "";
  width: 35px;
  height: 35px;
  border: 1px solid #c7c7c7;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact__form-radio > .wpcf7-list-item label span::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #342525;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 11px;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact__form-agree .wpcf7-list-item-label {
  position: relative;
  padding-left: 51px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__form-agree .wpcf7-list-item-label {
    padding-left: 40px;
  }
}
.contact__form-agree .wpcf7-list-item-label::before {
  content: "";
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #c7c7c7;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact__form-agree .wpcf7-list-item-label::before {
    width: 25px;
    height: 25px;
    border-radius: 5px;
  }
}
.contact__form-agree .wpcf7-list-item-label::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: #342525;
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact__form-agree .wpcf7-list-item-label::after {
    width: 10px;
    height: 10px;
    border-radius: 3px;
  }
}
@media screen and (max-width: 767px) {
  .contact__form-agree .contact__form-label {
    font-size: 10px;
  }
}
.contact__form-agree-input {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact__form-agree-input:checked + span::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
.contact__form-attach {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact__form-attach > span {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.contact__form-attach-input {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact__form-attach-custom {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__form-attach-custom {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 12px;
  }
}
.contact__form-attach-custom > .text {
  min-width: 368px;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  padding: 11px 20px 10px;
  background-color: #fff;
  border: 1px solid #c7c7c7;
  border-radius: 5px;
  color: #c7c7c7;
}
@media screen and (max-width: 767px) {
  .contact__form-attach-custom > .text {
    min-width: 0;
    width: 100%;
  }
}
.contact__form-attach-custom > .btn {
  display: block;
  min-width: 240px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #fff;
  background-color: #b5b5b5;
  border-radius: 5px;
  padding: 10.5px 20px;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact__form-attach-custom > .btn {
    min-width: 100%;
  }
}
.contact__form-attach-custom > .btn:hover {
  opacity: 0.7;
}
.contact__form-privacy {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: #5ea4d8;
  margin-right: 10px;
  border-bottom: 1px solid #5ea4d8;
}
.contact__form-privacy::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("./public/images/icons/external-link.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .contact__form-privacy::after {
    width: 10px;
    height: 10px;
  }
}
.contact__button {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: block;
  cursor: pointer;
}
.contact__button::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("./public/images/icons/button-arrow.svg") center/contain no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contact__button:hover::after {
  -webkit-transform: translate(3px, -50%);
          transform: translate(3px, -50%);
}
.contact__button:not(:last-child) {
  margin-bottom: 10px;
}
.contact__button input {
  min-width: 240px;
  font-size: 1.8rem;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  padding: 18px 20px 18px 24px;
  background-color: #5ea4d8;
  border-radius: 35px;
  border: none;
  -webkit-filter: drop-shadow(0 4px 16px rgba(32, 136, 216, 0.3));
          filter: drop-shadow(0 4px 16px rgba(32, 136, 216, 0.3));
  text-align: left;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__button input {
    min-width: 275px;
    font-size: 18px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    padding: 16px 24px 18px;
  }
}
.contact__button--back::after {
  right: unset;
  left: 20px;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}
.contact__button--back:hover::after {
  -webkit-transform: translate(-3px, -50%) scaleX(-1);
          transform: translate(-3px, -50%) scaleX(-1);
}
.contact__button--back input {
  background-color: #b5b5b5 !important;
  -webkit-filter: drop-shadow(0 4px 16px rgba(181, 181, 181, 0.3));
          filter: drop-shadow(0 4px 16px rgba(181, 181, 181, 0.3));
  text-align: right;
}
.contact__form-confirm-text {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}
.contact__complete {
  padding: 100px 4% !important;
}
@media screen and (max-width: 767px) {
  .contact__complete {
    padding: 80px 6.67% !important;
  }
}
.contact__complete-text {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1.5em;
}
.contact__complete-button {
  margin-top: 60px;
}

@-webkit-keyframes scale-loading {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  10% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(20);
            transform: translate(-50%, -50%) scale(20);
  }
}

@keyframes scale-loading {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  10% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(20);
            transform: translate(-50%, -50%) scale(20);
  }
}
.loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fbf8f6;
  opacity: 1;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
  z-index: 999;
}
.loader.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader__wrapper {
  width: 600px;
  height: 285px;
  background-color: #f3eeeb;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: scale-loading 3s forwards 1s;
          animation: scale-loading 3s forwards 1s;
}
@media screen and (max-width: 767px) {
  .loader__wrapper {
    width: 80%;
    height: 150px;
    border-radius: 40px;
  }
}
.loader__logo {
  width: 400px;
  height: 94.05px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .loader__logo {
    width: 180px;
    height: auto;
  }
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  color: #f33535 !important;
  margin-top: 5px;
}

.wpcf7-spinner {
  display: none !important;
}

.custom-heading {
  position: relative;
  font-size: 2rem;
  letter-spacing: 0.03em;
  line-height: 1.4em;
  background-color: #5ea4d8;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  margin: 80px 0 24px;
}
@media screen and (max-width: 767px) {
  .custom-heading {
    margin-top: 60px;
  }
}

.custom-subheading {
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  line-height: 1.7777777778em;
  padding-left: 30px;
  margin: 40px 0 24px;
}
.custom-subheading::after {
  content: "";
  width: 10px;
  height: 100%;
  background-color: #5ea4d8;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 0;
}

.custom-title {
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1.96875em;
  padding-bottom: 12px;
  margin: 32px 0 24px;
}
.custom-title::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #5ea4d8;
  position: absolute;
  left: 0;
  bottom: 0;
}

.wp-pagenavi {
  margin-top: 52px;
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 30px;
    gap: 8px;
  }
}
.wp-pagenavi .page,
.wp-pagenavi .current {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
.wp-pagenavi .page {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.wp-pagenavi .page:hover {
  opacity: 0.7;
}
.wp-pagenavi .current {
  background-color: #dceffe;
  font-weight: 700;
  color: #5ea4d8;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 45px;
  height: 45px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 35px;
    height: 35px;
  }
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  width: 8px;
  height: 14px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink::before,
  .wp-pagenavi .nextpostslink::before {
    width: 6px;
    height: 12px;
  }
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  opacity: 0.7;
}
.wp-pagenavi .previouspostslink::before {
  background: url("./public/images/icons/arrow-left.svg") center/contain no-repeat;
}
.wp-pagenavi .nextpostslink::before {
  background: url("./public/images/icons/arrow-right.svg") center/contain no-repeat;
}

.top__slider .splide__slide {
  min-width: 26.04%;
  opacity: 0.3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .top__slider .splide__slide {
    min-width: 73.33%;
    opacity: 1;
  }
}
.top__slider .splide__slide.is-active, .top__slider .splide__slide.is-next, .top__slider .splide__slide.is-prev {
  opacity: 1;
}

.overflow {
  overflow: hidden;
}

.block {
  display: block;
}

.lexend {
  font-family: "Lexend", sans-serif;
}

.fw-regular {
  font-weight: 400;
}

.text-left {
  text-align: left;
}

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

.text-primary {
  color: #5ea4d8;
}

.container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1008px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 6.67%;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sp-360 {
  display: none;
}
@media screen and (max-width: 360px) {
  .sp-360 {
    display: block;
  }
}

.tablet-pc {
  display: block;
}
@media screen and (max-width: 980px) {
  .tablet-pc {
    display: none;
  }
}

.tablet-sp {
  display: none;
}
@media screen and (max-width: 980px) {
  .tablet-sp {
    display: block;
  }
}

.empty-post {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .empty-post {
    font-size: 14px;
  }
}