@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
/* ============================================
   VARIABLES
============================================ */
:root {
  --design-width: 1440;
  /* Color */
  --txt_color: #0E1E30;
  --main_color: #1560A0;
  --point_color: #BA0003;
  --base_color: #F5FAFF;
  --base_color2: #E8F1FA;
  --line_color: #E3E7EA;
  --cta_color_gr: linear-gradient(90deg, #E67829 0%, #BA0003 100%);
  --cta_hover_gr: linear-gradient(270deg, #E67829 0%, #BA0003 100%);
  --start_color_gr: linear-gradient(90deg, #2A9AFA 0%, #1560A0 100%);
  --rainbow: linear-gradient(90deg, #2D61E4 0%, #4FB771 33%, #EABE5F 66%, #FA3069 100%);
  /* Font */
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Bebas Neue', sans-serif;
  --font-en2: 'Roboto Condensed', sans-serif;
  /* Layout */
  --floating-footer-height: 8.5rem;
}

/* ============================================
   RESET
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li,
figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* ============================================
   BASE
============================================ */
html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--txt_color);
  background-color: var(--base_color);
}

img {
  height: auto;
}

/* ============================================
   LAYOUT
============================================ */
main {
  margin-top: 9rem;
}

.section {
  padding: clamp(5rem, 80 / var(--design-width) * 100vw, 8rem) 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(2rem, 40 / var(--design-width) * 100vw, 4rem);
}

/* ============================================
   BUTTON
============================================ */
.btn {
  width: 100%;
  max-width: 26rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem 1.5rem 3rem;
  gap: 1rem;
  background: linear-gradient(var(--main_color), var(--main_color));
  color: #fff;
  border-radius: 5rem;
  font-size: clamp(1.4rem, 16 / var(--design-width) * 100vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, opacity 0.3s ease;
}
.btn span {
  margin-left: auto;
}
.btn:hover {
  opacity: 0.8;
}

.btn-arrow {
  width: clamp(2.8rem, 32 / var(--design-width) * 100vw, 3.2rem);
  height: clamp(2.8rem, 32 / var(--design-width) * 100vw, 3.2rem);
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-arrow i {
  font-size: 1.6rem;
}

.btn.mini {
  max-width: 20rem;
}
.btn.mini span {
  font-weight: 500;
  font-size: 1.4rem;
}
.btn.mini .btn-arrow {
  width: 1.8rem;
  height: 1.8rem;
}
.btn.mini:hover {
  background: linear-gradient(var(--txt_color), var(--txt_color));
  opacity: 1;
}

/* ============================================
   UTILITY
============================================ */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/* ============================================
   HEADER
============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}
.header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.header__rainbow {
  height: 0.5rem;
  background: var(--rainbow);
}
.header__inner {
  height: 8.5rem;
  display: flex;
  align-items: center;
  padding: 0 0 0 3.2rem;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 0 0 0 2rem;
  }
}
.header__logo--pc img {
  height: 5.4rem;
}
@media (max-width: 768px) {
  .header__logo--sp img {
    width: 5rem;
    height: auto;
  }
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 4rem;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0 3rem;
}
.header__nav-item a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--txt_color);
}
.header__nav-item a:hover {
  color: var(--main_color);
}
.header__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: min(30%, 24.5rem);
  height: 8.5rem;
  background: var(--cta_color_gr);
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .header__cta {
    display: none;
  }
}
.header__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cta_hover_gr);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header__cta:hover::after {
  opacity: 1;
}
.header__cta > * {
  position: relative;
  z-index: 1;
}
.header__cta-badge {
  display: inline-block;
  background: #fff;
  color: var(--point_color);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  letter-spacing: 0.05em;
}
.header__cta-label {
  font-size: clamp(1.5rem, 20 / var(--design-width) * 100vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.header__hamburger {
  display: none;
}
@media (max-width: 768px) {
  .header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    width: 9rem;
    height: 8.5rem;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .header__hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }
}
@media (max-width: 768px) {
  .header__hamburger-icon span {
    display: block;
    width: 3.2rem;
    height: 3px;
    background-color: var(--txt_color);
    border-radius: 2px;
  }
}
@media (max-width: 768px) {
  .header__hamburger-txt {
    font-family: var(--font-en2);
    font-size: 2rem;
    font-weight: 700;
    color: var(--txt_color);
    line-height: 1;
  }
}
.header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  max-width: 35.5rem;
  background-color: var(--txt_color);
  z-index: 200;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
  padding-top: 9rem;
}
.header__drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}
.header__drawer-close {
  position: absolute;
  top: 0.5rem;
  right: 0;
  width: 9rem;
  height: 8.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
.header__drawer-close span {
  position: absolute;
  width: 2.33rem;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}
.header__drawer-close span:first-child {
  transform: rotate(45deg);
}
.header__drawer-close span:last-child {
  transform: rotate(-45deg);
}
.header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 3.2rem 0;
}
.header__drawer-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.4rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}
.header__drawer-arrow {
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.header__drawer-arrow i {
  font-size: 1.8rem;
}

/* ============================================
   FOOTER
============================================ */
.footer__contact {
  background-color: var(--base_color2);
}
.footer__contact-inner {
  text-align: center;
}
.footer__contact-body {
  margin-top: clamp(2.4rem, 40 / var(--design-width) * 100vw, 4rem);
  font-size: 1.6rem;
  color: var(--txt_color);
}
.footer__contact-wrap {
  max-width: 50rem;
  margin: 0 auto;
  border: 1px solid var(--main_color);
  border-radius: 1rem;
  padding: clamp(1.5rem, 30 / var(--design-width) * 100vw, 3rem) clamp(1.5rem, 40 / var(--design-width) * 100vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.footer__contact-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--txt_color);
}
.footer__contact-tel {
  font-family: var(--font-en2);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--main_color);
}
.footer__contact-tel i {
  margin-right: 0.4rem;
}
.footer__contact-tel a {
  color: inherit;
  text-decoration: none;
}
.footer__contact-note {
  font-size: 1.3rem;
  color: var(--txt_color);
}
.footer__body {
  background-color: #fff;
  padding: clamp(4rem, 60 / var(--design-width) * 100vw, 6rem) 0 clamp(5rem, 70 / var(--design-width) * 100vw, 7rem);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(2rem, 40 / var(--design-width) * 100vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.2rem, 16 / var(--design-width) * 100vw, 1.6rem);
}
.footer__logo img {
  height: 10rem;
  width: auto;
}
.footer__org {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--txt_color);
  margin-bottom: clamp(1.6rem, 24 / var(--design-width) * 100vw, 2.4rem);
}
.footer__nav {
  max-width: 84rem;
}
.footer__nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 24 / var(--design-width) * 100vw, 2.4rem);
  width: 100%;
}
@media (max-width: 768px) {
  .footer__nav-list {
    grid-template-columns: 1fr;
  }
}
.footer .btn:hover {
  background: linear-gradient(var(--txt_color), var(--txt_color));
  opacity: 1;
}
.footer__copyright {
  background-color: var(--main_color);
  text-align: center;
}
@media (max-width: 768px) {
  .footer__copyright {
    padding-bottom: var(--floating-footer-height);
  }
}
.footer__copyright small {
  font-family: var(--font-en2);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

/* ============================================
   FLOATING CTA
============================================ */
.floating {
  position: fixed;
  right: 0;
  bottom: 3rem;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.floating.is-show {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .floating {
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
  }
}
.floating__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
  height: 8.5rem;
  padding-right: 1rem;
  padding-left: 0.6rem;
  background: var(--cta_color_gr);
  border-top-left-radius: 7rem;
  border-bottom-left-radius: 7rem;
  position: relative;
  overflow: visible;
}
@media (max-width: 768px) {
  .floating__link {
    max-width: 100%;
    border-radius: 0;
  }
}
.floating__badge {
  flex-shrink: 0;
  width: 7.3rem;
  height: 7.3rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.floating__badge-label {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--txt_color);
  line-height: 1.2;
}
.floating__badge-num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--main_color);
  line-height: 1.2;
}
.floating__badge-num-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
}
.floating__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating__sub {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 5px;
  padding: 0.3rem 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #E67829;
  white-space: nowrap;
  line-height: 1.4;
}
.floating__main {
  font-size: clamp(2.3rem, 24 / var(--design-width) * 100vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.floating__arrow {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
}

/* ============================================
   SEC-TITLE（共通セクションタイトル）
============================================ */
.sec-title {
  text-align: center;
}
.sec-title--left {
  text-align: left;
}
.sec-title__en {
  font-family: var(--font-en);
  font-size: clamp(4rem, 80 / var(--design-width) * 100vw, 8rem);
  font-weight: 400;
  line-height: 1;
  color: var(--main_color);
  letter-spacing: 0.05em;
}
.sec-title__ja {
  font-size: clamp(1.2rem, 20 / var(--design-width) * 100vw, 2rem);
  font-weight: 700;
  color: var(--txt_color);
  letter-spacing: 0.1em;
  margin-top: 0.8rem;
}
.sec-title.small .sec-title__en {
  font-size: clamp(3rem, 40 / var(--design-width) * 100vw, 4rem);
}

/*# sourceMappingURL=common.css.map */
