@charset "utf-8";

@import "style.css";
@import "color.css";
@import "font.css?20250908_0.0.0";
@import "line-height.css";
@import "margin.css";
@import "padding.css";

:root {
  --bs-font-sans-serif: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --bs-font-serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --bs-emphasis-color: #000;
  --bs-body-bg: #fff;
  --bs-body-color: #333 !important;
  --bs-body-width: 1366px;
  --bs-color-blue: #0064ff;
  --bs-color-light-blue: #99bcf2;
  --bs-color-orange: #f98b24;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}

/*---------------------------------------------------
font-familyここから
----------------------------------------------------*/
body {
  font-family: var(--bs-font-sans-serif);
  font-weight: 500;
}

/*---------------------------------------------------
リセットCSSここから
----------------------------------------------------*/
header a,
main a,
footer a {
  color: #333 !important;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.ls-none {
  list-style-type: none !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background-color: #fff;
  border: 1px solid #333 !important;
  /* border-radius: 8px !important; */
  -webkit-appearance: none !important;
  appearance: none !important;
  /* height: 56px; */
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
  color: #777;
}

input[type="text"]:focus {
  outline: 0;
}

input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
}

button:focus {
  outline: 0;
}

*:focus {
  outline: none;
}

.width-fit-content {
  width: fit-content;
}

.grecaptcha-badge {
  visibility: hidden;
}

.wm-rl {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/*---------------------------------------------------
 header
----------------------------------------------------*/
.header {
  width: 100%;
  z-index: 99;
}

.header-wrapper {
  height: 70px;
  padding: 10px 24px 0;
}

.header-container {
  border-radius: 14px;
  border: 1px solid #68a3ff;
}

.is-fixed .header-container {
  border-color: var(--bs-color-blue);
}

.header-logo {
  max-width: 168px;
  width: 100%;
}

.header-link-arrow {
  position: relative;
  cursor: default;
}

.header-link-arrow::after {
  position: absolute;
  content: "";
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  width: 0.5em;
  height: 0.5em;
  top: 52%;
  right: -4px;
  transform: translateY(-52%) rotate(45deg);
}

.header-request-button {
  background-color: #f98b24;
  color: #fff !important;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
  padding: 12px 32px;
}

@media screen and (min-width: 992px) {
  .header-wrapper {
    height: 80px;
    padding: 10px 40px 0;
  }
  .header-logo {
    max-width: 190px;
  }
}

/* hamburger menu */
.ham-box {
  position: relative;
  width: 64px;
  height: 39px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 9999;
}

.ham-bar,
.ham-bar::before,
.ham-bar::after {
  position: absolute;
  width: 32px;
  height: 3px;
  opacity: 1;
}

.ham-bar {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ham-bar::before,
.ham-bar::after {
  position: absolute;
  content: "";
  background: var(--bs-color-blue);
  left: 0;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.ham-bar::before {
  top: calc(50% - 6px);
}

.ham-bar::after {
  top: calc(50% + 4px);
}

.is-active .ham-bar {
  background-color: transparent !important;
}

.is-active .ham-bar::before {
  top: calc(50% - 10px);
  left: 0;
  transform: translateY(9px) rotate(-30deg);
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.is-active .ham-bar::after {
  top: calc(50% + 10px);
  left: 0;
  transform: translateY(-11px) rotate(30deg);
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.ham-drawer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  opacity: 0;
  visibility: hidden;
  background-color: var(--bs-color-green);
  z-index: 88;
  transition: 0.5s;
}

.ham-drawer.is-active {
  opacity: 1;
  visibility: visible;
}

.ham-drawer-inner {
  padding-top: 60px;
  margin-bottom: 60px;
  height: calc(100svh - 104px);
  -ms-overflow-style: none;
  scrollbar-width: none;
  transform: translateZ(0);
}

.ham-drawer-inner::-webkit-scrollbar {
  display: none;
}

.mega-menu-body {
  position: absolute;
  background-color: var(--bs-color-blue);
  border: 1px solid #68a3ff;
  border-radius: 14px;
  top: 60px;
  left: 62%;
  width: 360px;
  padding-left: 30px;
  padding-right: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: translateX(-50%);
}

.mega-menu-body::before {
  position: absolute;
  content: "";
  top: -40px;
  left: 25%;
  max-width: 10rem;
  width: 100%;
  height: 55px;
}

.mega-menu-text {
  position: relative;
}

.mega-menu-link {
  position: relative;
}

.mega-menu-link::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 1rem;
  height: 2px;
  top: 50%;
  left: -0.25rem;
  transform: translateY(-50%);
}

.ham-border-link {
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

#ham-drawer .ham-link-arrow {
  position: relative;
}

#ham-drawer .ham-link-arrow::after {
  position: absolute;
  content: "";
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  width: 0.6rem;
  height: 0.6rem;
  top: 50%;
  right: 3px;
  transform: translateY(-50%) rotate(-45deg);
}

.accordion-button {
  background-color: transparent;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  border-color: none !important;
  box-shadow: none !important;
}

.accordion-item {
  border: none !important;
  background-color: transparent;
}

#ham-drawer .accordion-button::before {
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

#ham-drawer .accordion-button::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 14px;
  height: 3px;
  top: 50%;
  right: 0;
  transform: translateY(50%) rotate(-90deg);
}

#ham-drawer .accordion-button::after {
  background-image: none !important;
  background-color: #fff;
  width: 14px;
  height: 3px;
}

#ham-drawer .accordion-button:not(.collapsed)::before {
  transform: rotate(0);
}

#ham-drawer .accordion-button:not(.collapsed)::after {
  opacity: 0;
  transform: rotate(0) !important;
}

#ham-drawer #accordionPanels .mega-menu-link::before {
  width: 14px;
  left: 0;
}

@media screen and (min-width: 992px) {
  .ham-box {
    position: fixed;
    top: 30px;
    right: calc(((100% - 1048px) / 2) - 60px - 20px);
    width: 60px;
    height: 60px;
    cursor: pointer;
  }

  .ham-bar,
  .ham-bar::before,
  .ham-bar::after {
    width: 26px;
    height: 2px;
  }

  .ham-drawer {
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background-color: #fff;
    z-index: 88;
    transition: 0.5s;
    transform: translateY(-100%);
  }

  .ham-drawer.is-active {
    pointer-events: auto;
    transform: translateY(0);
  }

  .ham-drawer_contents {
    margin-top: 24px;
  }

  .ham-drawer-inner {
    padding-top: 76px;
    margin-bottom: 76px;
    height: 100svh;
  }
}

@media screen and (min-width: 1400px) {
  .ham-drawer-inner {
    padding-top: 0;
    margin-bottom: 0;
  }

  .ham-drawer-box {
    max-width: 1312px;
  }
}

@media screen and (min-width: 1600px) {
  .ham-box {
    top: 30px;
    right: 10%;
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
}

@media (hover: hover) {
  .header-request-button:hover {
    background-color: #fff;
    color: #f98b24 !important;
  }

  .mega-menu-text:hover .mega-menu-body {
    opacity: 1;
    visibility: visible;
  }
}

/*---------------------------------------------------
 footer
----------------------------------------------------*/
.footer {
  background-color: #333333;
}

.footer-sns-container {
  width: 100%;
  padding-inline: 0;
}

.footer-sns-button {
  container-type: inline-size;
  background-color: transparent;
  border: 3px solid #fff;
  border-radius: 14px;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.footer-sns-button p {
  color: #fff;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.footer-sns-icon {
  position: relative;
}

.footer-sns-icon::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.--instagram.footer-sns-icon::before {
  background-image: url("../images/common/icon_instagram_white.svg");
  width: 33px;
  height: 33px;
}

.--threads.footer-sns-icon::before {
  background-image: url("../images/common/icon_threads_white.svg");
  width: 31px;
  height: 35px;
}

.--blog.footer-sns-icon::before {
  background-image: url("../images/common/icon_pencil_white.svg");
  width: 29px;
  height: 29px;
}

.footer-sns-button-text {
  font-size: 8.55cqi;
}

.footer-link-course {
  position: relative;
  color: #9a9a9a !important;
}

.footer-link-course::before {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  width: 1rem;
  height: 2px;
  top: 0.6rem;
  left: -24px;
}

.banner-course {
  position: fixed;
  width: 100%;
  height: 62px;
  bottom: 0;
  right: 0;
  z-index: 99;
  opacity: 0;
}

.banner-box {
  position: relative;
  width: 100%;
  border-top: 2px solid var(--bs-color-blue);
  padding: 24px 16px 13px;
}

.banner-box::before {
  position: absolute;
  content: "";
  border: 2px solid var(--bs-color-blue);
  background-color: var(--bs-color-blue);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.banner-box::after {
  position: absolute;
  content: "";
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  width: 7px;
  height: 7px;
  bottom: 39%;
  right: 36px;
  transform: translateY(-50%) rotate(-45deg);
  z-index: 2;
}

.banner-title-sub {
  position: absolute;
  content: "";
  top: -25%;
  left: 50%;
  border: 1px solid #68a3ff;
  padding-left: 32px;
  padding-right: 32px;
  transform: translateX(-50%);
}

.banner-course-text-sub {
  font-size: 13px !important;
  color: #333 !important;
}

.text-copy-light {
  color: #9a9a9a;
}

@media screen and (min-width: 576px) {
  .footer-sns-button-text {
    font-size: 7cqi;
  }
}

@media screen and (min-width: 992px) {
  .footer-sns-container {
    max-width: calc((100% - (33px * 2)) / 3);
  }

  .banner-course {
    width: auto;
    bottom: 16px;
    right: 40px;
    transform: translateX(0);
  }

  .banner-box {
    width: auto;
    border: 2px solid var(--bs-color-blue);
    border-radius: 14px;
    padding: 24px 60px 13px 25px;
  }

  .banner-title-sub {
    padding-left: 18px;
    padding-right: 18px;
  }

  .banner-course-text-sub {
    font-size: 14px !important;
  }

  .banner-box::before {
    right: 14px;
  }

  .banner-box::after {
    right: 26px;
  }

  .footer-sns-icon::before {
    left: 40px;
  }

  .--instagram.footer-sns-icon::before {
    width: 42px;
    height: 42px;
  }

  .--threads.footer-sns-icon::before {
    width: 40px;
    height: 45px;
  }

  .--blog.footer-sns-icon::before {
    width: 38px;
    height: 37px;
  }

  .footer-sns-button-text {
    font-size: 9.25cqi;
  }
}

@media (hover: hover) {
  .footer-sns-button:hover {
    background-color: #fff;
  }

  .footer-sns-button:hover p {
    color: #333 !important;
  }

  .footer-sns-icon:hover.--instagram.footer-sns-icon::before {
    background-image: url("../images/common/icon_instagram_dark.svg");
  }

  .footer-sns-icon:hover.--threads.footer-sns-icon::before {
    background-image: url("../images/common/icon_threads_dark.svg");
  }

  .footer-sns-icon:hover.--blog.footer-sns-icon::before {
    background-image: url("../images/common/icon_pencil_dark.svg");
  }
}

/*---------------------------------------------------
 404
----------------------------------------------------*/
.title-not-found {
  font-size: 108px;
}

@media screen and (min-width: 992px) {
  .title-not-found {
    font-size: 175px;
  }
}

/*---------------------------------------------------
pagination
----------------------------------------------------*/
.page-numbers {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 2px solid #333;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  font-family: "gotham", sans-serif;
  transition: all 0.15s linear;
  padding: 0 8px;
  color: #333 !important;
  margin: 0 4px;
}

.page-numbers.dots {
  border: none;
  width: 24px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0.5rem;
  pointer-events: none;
}

.page-numbers.current {
  background: var(--bs-body-color);
  color: #fff !important;
  border: 2px solid var(--bs-body-color);
  pointer-events: none;
}

.prev.page-numbers,
.next.page-numbers {
  position: relative;
  border: none;
  border-radius: 50%;
  transition: 0.3s;
}

.prev.page-numbers {
  width: 48px;
  height: 48px;
  margin-right: 26px;
}

.next.page-numbers {
  width: 48px;
  height: 48px;
  margin-left: 26px;
}

.disabled .prev.page-numbers,
.disabled .next.page-numbers {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.prev.page-numbers::before,
.next.page-numbers::before {
  position: absolute;
  content: "";
  border-right: 3px solid var(--bs-body-color);
  border-bottom: 3px solid var(--bs-body-color);
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
}

.prev.page-numbers::before {
  transform: translate(-50%, -50%) rotate(-225deg);
}

.next.page-numbers::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.prev.page-numbers::after,
.next.page-numbers::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  border: 2px solid var(--bs-body-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 992px) {
  .page-numbers,
  .page-numbers.dots {
    width: 42px;
    height: 42px;
  }

  .prev.page-numbers {
    margin-right: 32px;
  }

  .next.page-numbers {
    margin-left: 32px;
  }

  .prev.page-numbers::before,
  .next.page-numbers::before {
    position: absolute;
    content: "";
    border-right: 4px solid var(--bs-body-color);
    border-bottom: 4px solid var(--bs-body-color);
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
    z-index: 2;
  }

  .prev.page-numbers::before {
    transform: translate(-40%, -50%) rotate(-225deg);
  }

  .next.page-numbers::before {
    transform: translate(-60%, -50%) rotate(-45deg);
  }

  .prev.page-numbers::after,
  .next.page-numbers::after {
    position: absolute;
    content: "";
    border: 2px solid var(--bs-body-color);
    background-color: var(--bs-body-bg);
    width: 55px;
    height: 55px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
    transform: translate(-50%, -50%);
  }
}

@media (hover: hover) {
  .page-numbers:hover {
    background: var(--bs-body-color);
    border: 2px solid var(--bs-body-color);
    color: #fff !important;
  }

  .prev.page-numbers:hover::after,
  .next.page-numbers:hover::after {
    background-color: var(--bs-body-color);
  }

  .prev.page-numbers:hover::before,
  .next.page-numbers:hover::before {
    border-color: var(--bs-body-bg);
  }
}
