@charset "UTF-8";
/* --
common.css

 ------------------------------------
-- */
/*-----------------------------------

	$font

-----------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@200;400;500;700;800&family=Noto+Sans+JP:wght@400;500;700&display=swap");
/*-----------------------------------

	$color

-----------------------------------*/
/*-----------------------------------

	$mixin

-----------------------------------*/
/*-----------------------------------

	$reset / $base

-----------------------------------*/
/* --
common.css

 ------------------------------------
-- */
/**======================================
	setting
======================================**/
/*-----------------------------------

	$icon
	矢印アイコン（CSS mask + data-URI SVG）

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  color: #090909;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.8;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

.sp {
  display: none;
}

@media (max-width: 480px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/*-----------------------------------

	$reset / $base

-----------------------------------*/
/*-----------------------------------

	$header

-----------------------------------*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5rem 3rem 1.5rem 6rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.header.is-scrolled {
  -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}
@media (max-width: 1200px) {
  .header {
    padding: 0 0 0 1rem;
    min-height: 4.8rem;
  }
}
.header__logo {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20.8333333333vw;
  max-width: 35.7rem;
}
@media (max-width: 1200px) {
  .header__logo {
    width: 28rem;
  }
}
@media (max-width: 768px) {
  .header__logo {
    width: 18rem;
  }
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 1200px) {
  .header__buttons {
    display: none;
  }
}
.header__btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__btn-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__btn {
  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;
  gap: 6px;
  padding: 1rem 3rem;
  border-radius: 100px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.header__btn:hover {
  opacity: 0.8;
}
.header__btn--login {
  background-color: #006699;
  color: #fff;
}
.header__btn--loggedin {
  min-width: 16rem;
  padding: 1rem 3rem;
  gap: 0.3rem;
  background: linear-gradient(-64deg, #2cc9da 0%, #23a6d9 100%);
  color: #fff;
  font-weight: 700;
}
.header__btn--loggedin img {
  width: 2.1rem;
  height: 2.1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__btn--contact {
  background-color: #ff9900;
  color: #fff;
}
.header__sp-actions {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media (max-width: 1200px) {
  .header__sp-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 1200px) {
  .header__sp-actions:has(.header__sp-login--member) {
    gap: 0;
  }
}
.header__sp-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.4rem 0.6rem;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.header__sp-login:hover {
  opacity: 0.8;
}
.header__sp-login > img {
  width: 2rem;
  height: auto;
  display: block;
}
.header__sp-login > span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #006699;
  white-space: nowrap;
}
.header__sp-login-default {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__sp-login-default img {
  width: 2rem;
  height: auto;
  display: block;
}
.header__sp-login-default span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #006699;
  white-space: nowrap;
}
.header__sp-login-compact {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  background: linear-gradient(-64deg, #2cc9da 0%, #23a6d9 100%);
}
.header__sp-login-compact img {
  width: 2.1rem;
  height: 2.1rem;
  display: block;
}
.header__sp-login--member {
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header__sp-login--member > img,
.header__sp-login--member > span,
.header__sp-login--member .header__sp-login-default {
  display: none;
}
.header__sp-login--member .header__sp-login-compact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*-----------------------------------

	$reset / $base

-----------------------------------*/
/*-----------------------------------

	$nav
	PCグローバルナビゲーション・モバイルナビゲーション・パンくずリスト

-----------------------------------*/
@media (max-width: 1200px) {
  .gnav {
    display: none;
  }
}
.gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.gnav__item {
  font-size: 1.4rem;
  font-weight: 400;
  white-space: nowrap;
  color: #000;
}
.gnav__item a {
  color: #000;
}
.gnav__item a:hover {
  color: #006699;
  opacity: 1;
}
.gnav__item--has-sub {
  position: relative;
}
.gnav__item--has-sub:hover .gnav__sub {
  opacity: 1;
  visibility: visible;
}
.gnav__item--has-sub:hover .gnav__label {
  color: #006699;
}
.gnav__label {
  display: block;
  cursor: default;
  color: #000;
}
.gnav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 20rem;
  margin: 0;
  padding: 1.2rem 0 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.gnav__sub::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.8rem 0.8rem 0.8rem;
  border-color: transparent transparent #006699 transparent;
  pointer-events: none;
}
.gnav__sub > li {
  background: #006699;
}
.gnav__sub > li > a {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #fff;
}
.gnav__sub > li > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

.nav__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #006699;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background-color: #fff;
  border-radius: 2px;
  -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;
}
.nav__toggle.is-active .top {
  -webkit-transform: translateY(0.7rem) rotate(45deg);
          transform: translateY(0.7rem) rotate(45deg);
}
.nav__toggle.is-active .middle {
  opacity: 0;
}
.nav__toggle.is-active .bottom {
  -webkit-transform: translateY(-0.7rem) rotate(-45deg);
          transform: translateY(-0.7rem) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 4.8rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fcfefe), to(#baeafb));
  background: linear-gradient(180deg, #fcfefe 0%, #baeafb 100%);
  overflow-y: auto;
  z-index: 99;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open {
  display: block;
}
.mobile-nav__inner {
  padding: 3.3rem 2rem 18.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media (max-width: 1200px) {
  .mobile-nav__inner {
    max-width: 37.5rem;
    margin: auto;
  }
}
.mobile-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.mobile-nav__item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #090909;
  line-height: 1.6;
}
.mobile-nav__item a {
  display: block;
  color: #090909;
}
.mobile-nav__item a:hover {
  color: #006699;
  opacity: 1;
}
.mobile-nav__item-label {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #090909;
  margin: 0 0 0.6rem;
}
.mobile-nav__item-label--current {
  color: #006699;
}
.mobile-nav__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.mobile-nav__sub-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #444444;
  line-height: 1.8;
}
.mobile-nav__sub-item a {
  color: #444444;
}
.mobile-nav__sub-item a::before {
  content: "ー ";
}
.mobile-nav__sub-item a:hover {
  color: #006699;
  opacity: 1;
}
.mobile-nav__cta {
  margin-top: 0;
}
.mobile-nav__membership {
  position: relative;
  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;
  padding: 1rem 2rem;
  border-radius: 6px;
  background: linear-gradient(130deg, #ffd900 0%, #ff9900 100%);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  min-height: 6.2rem;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.mobile-nav__membership:hover {
  opacity: 0.8;
}
.mobile-nav__membership-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.mobile-nav__membership-label {
  font-family: "Heebo", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  line-height: normal;
  margin: 0 0 -0.4rem;
}
.mobile-nav__membership-caption {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
  line-height: normal;
  margin: 0;
}
.mobile-nav__membership-arrow {
  width: 2rem;
  height: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
}
.mobile-nav__membership-arrow svg {
  width: 100%;
  height: 100%;
}

.breadcrumb {
  max-width: 114rem;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.breadcrumb {
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumb__list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding: 0 1rem;
}
.breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  color: #fff;
  white-space: nowrap;
}
.breadcrumb__item a {
  color: #fff;
}
.breadcrumb__item a:hover {
  text-decoration: underline;
  opacity: 1;
}
.breadcrumb__item--sep {
  padding: 0 0.8rem;
  font-size: 1.1rem;
  opacity: 0.8;
}

/*-----------------------------------

	$reset / $base

-----------------------------------*/
/*-----------------------------------

	$footer

-----------------------------------*/
.footer {
  background-color: #fff;
  padding: 8rem 0 6rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }
}
.footer__inner {
  max-width: 114rem;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 768px) {
  .footer__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .footer__top {
    padding-bottom: 3rem;
  }
}
.footer__logo {
  display: block;
  width: 100%;
  max-width: 35.4rem;
}
@media (max-width: 768px) {
  .footer__logo {
    max-width: 33.5rem;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 36.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .footer__company {
    width: 100%;
  }
}
.footer__company-name {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer__info {
    gap: 10px;
  }
}
.footer__address, .footer__tel {
  font-size: clamp(1.4rem, 1.0444444444rem + 0.462962963vw, 1.6rem);
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .footer__nav {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.footer__nav-list > li {
  font-weight: 700;
  white-space: nowrap;
}
.footer__nav-list ul {
  margin-top: 1rem;
}
.footer__nav-list ul li {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
.footer__nav-list ul li::before {
  content: "ー";
  margin-right: 0.25em;
}
.footer .copyright {
  border-top: 1px solid #dddddd;
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .footer .copyright {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.footer .copyright small {
  font-size: 1.2rem;
  color: #666666;
}

/*-----------------------------------

	$reset / $base

-----------------------------------*/
/*-----------------------------------

	$cta
	Contact CTAセクション

-----------------------------------*/
.cta {
  position: relative;
  overflow: hidden;
}
.cta__link {
  display: block;
  text-decoration: none;
  background: url("../images/common/contact-bg.jpg") no-repeat 50% 50%/cover;
}
.cta__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff9900;
  opacity: 0.86;
}
.cta__link:hover::before {
  opacity: 0.92;
}
.cta__inner {
  position: relative;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  min-height: 42.6rem;
  max-width: 114rem;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 768px) {
  .cta__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 768px) {
  .cta__inner {
    min-height: 20rem;
  }
}
.cta__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .cta__body {
    gap: 10px;
  }
}
.cta__body::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10rem;
  height: 10rem;
  background-color: #090909;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Ccircle cx='50' cy='50' r='48' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M42.63 35.27L57.37 50L42.63 64.73' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Ccircle cx='50' cy='50' r='48' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M42.63 35.27L57.37 50L42.63 64.73' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
@media (max-width: 768px) {
  .cta__body::after {
    width: 6rem;
    height: 6rem;
  }
}
.cta__body p {
  font-size: clamp(1.4rem, 1.0444444444rem + 0.462962963vw, 1.6rem);
  font-weight: 700;
}
.cta .common__title-01 span:first-child {
  color: #fff;
}

/*-----------------------------------

	$reset / $base

-----------------------------------*/
/*-----------------------------------

	$btn
	共通ボタン

-----------------------------------*/
.btn-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  min-height: 5.6rem;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  max-width: 52rem;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.btn-01:hover {
  opacity: 1;
}

.btn-pdf {
  position: relative;
  background: #f0f8fa;
  padding: 1.5rem 4.5rem 1.5rem 4.8rem;
  font-size: clamp(1.4rem, 1.0444444444rem + 0.462962963vw, 1.6rem);
  font-weight: 700;
  line-height: 1.6;
  color: #006699;
}
.btn-pdf::before {
  content: "\f1c1";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  position: absolute;
  left: 2rem;
  top: 50%;
  width: 2rem;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  color: #ff383c;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn-pdf::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 2rem;
  height: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #adadad;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-pdf:hover {
  background: #006699;
  color: #fff;
}
.btn-pdf:hover::before {
  color: #fff;
}
.btn-pdf:hover::after {
  background-color: #fff;
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
}

.btn-movie {
  position: relative;
  border: 1px solid #006699;
  background: #fff;
  padding: 1.5rem 4.5rem 1.5rem 4.8rem;
  font-size: clamp(1.4rem, 1.0444444444rem + 0.462962963vw, 1.6rem);
  font-weight: 700;
  line-height: 1.6;
  color: #006699;
}
.btn-movie::before {
  content: "\f03d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 2rem;
  top: 50%;
  width: 2rem;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  color: #ff9900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn-movie::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 2rem;
  height: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #006699;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-movie:hover {
  background: #006699;
  color: #fff;
}
.btn-movie:hover::before {
  color: #fff;
}
.btn-movie:hover::after {
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}

.btn-link {
  position: relative;
  border: 1px solid #006699;
  background: #fff;
  padding: 1.5rem 4.5rem 1.5rem 2rem;
  font-size: clamp(1.4rem, 1.0444444444rem + 0.462962963vw, 1.6rem);
  font-weight: 700;
  line-height: 1.6;
  color: #006699;
}
.btn-link::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 2rem;
  height: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #006699;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-link[target=_blank]::after {
  right: 1.5rem;
  background-color: #006699;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-link:hover {
  background: #006699;
  color: #fff;
}
.btn-link:hover::after {
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-link:hover[target=_blank]::after {
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-link.orange {
  border: 1px solid #ff9900;
  color: #ff9900;
}
.btn-link.orange::after {
  background-color: #ff9900;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-link.orange[target=_blank]::after {
  background-color: #ff9900;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-link.orange:hover {
  background: #ff9900;
  color: #fff;
}
.btn-link.orange:hover::after {
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-link.orange:hover[target=_blank]::after {
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
}

.btn-link-02 {
  position: relative;
  border: 1px solid #006699;
  background: #006699;
  padding: 1.5rem 4.5rem 1.5rem 2rem;
  font-size: clamp(1.4rem, 1.0444444444rem + 0.462962963vw, 1.6rem);
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
.btn-link-02::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 2rem;
  height: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-link-02[target=_blank]::after {
  right: 1.5rem;
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-link-02:hover {
  background: #fff;
  color: #006699;
}
.btn-link-02:hover::after {
  background-color: #006699;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-link-02:hover[target=_blank]::after {
  background-color: #006699;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-link-02.orange {
  border: 1px solid #ff9900;
  background: #ff9900;
}
.btn-link-02.orange:hover {
  background: #fff;
  color: #ff9900;
}
.btn-link-02.orange:hover::after {
  background-color: #ff9900;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M10.33 8.65L13.67 12L10.33 15.35' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
.btn-link-02.orange:hover[target=_blank]::after {
  background-color: #ff9900;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.036 13.95' fill='none'%3E%3Cpath d='M10.658 2H7.036V0H14.036V7H12.036V3.45L7.122 8.364L5.708 6.95L10.658 2Z' fill='%23000'/%3E%3Cpath d='M6 1.95H0V13.95H12V7.95H10V11.95H2V3.95H6V1.95Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center/contain;
}

/*-----------------------------------

	$reset / $base

-----------------------------------*/
/*-----------------------------------

	$floating-btn

-----------------------------------*/
.floating-btn {
  position: fixed;
  z-index: 98;
  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;
  background: #ff9900;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.floating-btn:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .floating-btn {
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 5.6rem;
    padding: 2rem 1rem;
    border-radius: 6px 0 0 6px;
  }
}
@media (max-width: 768px) {
  .floating-btn {
    left: 0;
    right: 0;
    bottom: 0;
    gap: 1rem;
    padding: 1.5rem 2rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }
}
.floating-btn__label {
  font-weight: 700;
  color: #fff;
  margin: 0;
}
@media (min-width: 768px) {
  .floating-btn__label {
    font-size: 1.8rem;
    line-height: 2rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 768px) {
  .floating-btn__label {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.floating-btn__icon {
  -ms-flex-negative: 0;
      flex-shrink: 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;
  width: 1.8rem;
  height: 1.8rem;
  margin: 1rem 0 0 0;
}
@media (max-width: 768px) {
  .floating-btn__icon {
    width: 1.8rem;
    margin: 0 0 0 0.25rem;
  }
}
.floating-btn__icon svg {
  width: 100%;
  height: 100%;
}

/*-----------------------------------

	$reset / $base

-----------------------------------*/
/*-----------------------------------

	$table
	共通テーブル

-----------------------------------*/
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tbl-01 {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(1.4rem, 1.0444444444rem + 0.462962963vw, 1.6rem);
  line-height: 1.6;
}
.tbl-01 th {
  width: 24%;
  max-width: 26rem;
  padding: 2.4rem 1rem;
  font-weight: 700;
  color: #006699;
  text-align: left;
  vertical-align: top;
  border-bottom: 2px solid #006699;
}
.tbl-01 td {
  padding: 2.4rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 2px solid #cccccc;
}

.tbl-02 {
  width: 100%;
  min-width: 60rem;
  border-collapse: collapse;
  font-size: clamp(1.4rem, 1.0444444444rem + 0.462962963vw, 1.6rem);
  line-height: 1.6;
}
.tbl-02 th,
.tbl-02 td {
  border: 1px solid #cccccc;
  padding: 2.4rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .tbl-02 th,
  .tbl-02 td {
    padding: 1.8rem;
  }
}
.tbl-02 thead th {
  background: #006699;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.tbl-02 tbody th {
  width: 27%;
  max-width: 30rem;
  background: #f5f5f5;
  color: #006699;
  font-weight: 700;
  text-align: left;
}
.tbl-02 tbody td {
  background: #fff;
  text-align: left;
}

/*-----------------------------------

	$reset / $base

-----------------------------------*/
/*-----------------------------------

	$common
	共通見出しパーツ

-----------------------------------*/
.common__title-01 {
  margin: 0;
}
.common__title-01 span {
  font-family: "Heebo", sans-serif;
  font-weight: 200;
  font-size: clamp(4rem, -3.1111111111rem + 9.2592592593vw, 8rem);
  line-height: 1;
  letter-spacing: -2px;
  margin: 0 0 -1.1rem;
}
.common__title-01 span:first-child {
  color: #006699;
}
.common__title-01 b {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.0444444444rem + 0.462962963vw, 1.6rem);
  font-weight: 700;
  color: #090909;
  margin-top: 0.4rem;
}
.common__title-02 {
  font-size: clamp(2.4rem, -1.8666666667rem + 5.5555555556vw, 4.8rem);
  font-weight: 700;
  color: #006699;
  line-height: 1.6;
  margin: 0;
}