@charset "UTF-8";
/*******************************
// reCAPTCHA badge
********************************/
.is-recaptcha-hidden .grecaptcha-badge {
  visibility: hidden !important;
}

/*******************************
// Reset (style.css 上書き用)
********************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li,
pre,
fieldset,
legend,
button,
input,
select,
textarea {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
}

.post,
.page {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

ul,
ol {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:visited,
a:active,
a:focus {
  color: inherit;
}

button {
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.pc,
.pc-only {
  display: block;
}

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

@media screen and (max-width: 767px) {
  .sp,
  .sp-only {
    display: block;
  }
}
a {
  transition: 0.6s;
  opacity: 1;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}

/*******************************
// 共通インナー（ヘッダー・フッターと同じ幅）
********************************/
.c-inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-inner {
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/*******************************
// 共通セクションラベル（ドット付き）
// 使い方:
//   <p class="c-section-label"><span class="c-section-label__dot" aria-hidden="true"></span>Entry</p>
//   背景が濃い色の場合は .c-section-label--white で白文字に
********************************/
.c-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #0065b8;
}
@media screen and (min-width: 768px) {
  .c-section-label {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-section-label {
    font-size: 14px;
  }
}
.c-section-label--white {
  color: #ffffff;
}
.c-section-label__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("../img/home/section-label_img.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/*******************************
// 共通セクション見出し
// 使い方:
//   <h2 class="c-section-heading">見出しテキスト</h2>
********************************/
.c-section-heading {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .c-section-heading {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-section-heading {
    margin-bottom: 15px;
    font-size: 28px;
    letter-spacing: 0.03em;
  }
}

/*******************************
// 共通 CTA ボタン
// 使い方:
//   <a class="c-cta-btn" href="...">
//     <span>テキスト</span>
//     <i class="c-cta-btn__arrow" aria-hidden="true"></i>
//   </a>
********************************/
.c-cta-btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: max-content;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  gap: 30px;
  background-color: #0065b8;
  border-top: 1px solid #0065b8;
  border-right: 1px solid #0065b8;
  border-bottom: 1px solid #0065b8;
  border-left: 1px solid #0065b8;
  border-radius: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-cta-btn {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    letter-spacing: 0;
    white-space: normal;
    line-height: 1.4;
  }
  .c-cta-btn > span {
    text-align: left;
  }
}
.c-cta-btn, .c-cta-btn:visited, .c-cta-btn:active, .c-cta-btn:focus {
  color: #ffffff;
}
.c-cta-btn:hover {
  background-color: #ffffff;
  color: #0065b8;
  opacity: 1;
}
.c-cta-btn:hover .c-cta-btn__arrow {
  background-color: #0065b8;
}
.c-cta-btn:hover .c-cta-btn__arrow::before {
  background-image: url("../img/base/common_cta_arrw_hover.svg");
}
.c-cta-btn__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  border-radius: 5px;
  font-style: normal;
  transition: background-color 0.3s ease, background-image 0.3s ease;
}
.c-cta-btn__arrow::before {
  content: "";
  width: 13px;
  height: 6px;
  background-image: url("../img/base/common_cta_arrw.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image 0.3s ease;
}

/*******************************
// header
********************************/
.l-header {
  width: 100%;
  background-color: #ffffff;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.l-header.is-fixed {
  position: fixed;
  animation: lHeaderSlideDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@media screen and (max-width: 1023px) {
  .l-header.is-drawer-open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
  }
}
.l-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .l-header__inner {
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 30px;
    padding-left: 30px;
    gap: clamp(10px, 1.5vw, 30px);
  }
}
@media screen and (max-width: 1023px) {
  .l-header__inner {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.l-header__brand {
  display: flex;
  align-items: center;
  gap: 15px;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  .l-header__brand {
    position: relative;
    z-index: 1001;
    gap: 8px;
  }
}
.l-header__logo-img {
  line-height: 0;
}
@media screen and (min-width: 1024px) {
  .l-header__logo-img {
    width: clamp(140px, 13vw, 200px);
    height: auto;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__logo-img {
    width: 140px;
    height: auto;
  }
}
.l-header__sublabel {
  color: #333333;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .l-header__sublabel {
    font-size: clamp(13px, 1.1vw, 16px);
  }
}
@media screen and (max-width: 1023px) {
  .l-header__sublabel {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__drawer {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 30px);
  }
}
@media screen and (max-width: 1023px) {
  .l-header__drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    padding-top: 70px;
    padding-right: 20px;
    padding-bottom: 40px;
    padding-left: 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    z-index: 900;
  }
  .l-header__drawer.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media screen and (min-width: 1024px) {
  .l-header__nav {
    margin-left: auto;
  }
}
.l-header__nav-list {
  list-style: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .l-header__nav-list {
    display: flex;
    gap: clamp(10px, 1.5vw, 30px);
  }
}
@media screen and (min-width: 1024px) {
  .l-header__nav-item {
    position: relative;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav-item {
    border-bottom: 1px solid #e5e5e5;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.l-header__nav-link {
  display: inline-block;
  color: #333333;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .l-header__nav-link {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 16px;
  }
  .l-header__nav-link:hover {
    color: #0065b8;
    opacity: 1;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav-link {
    flex-grow: 1;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
  }
}
.l-header__nav-toggle {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-toggle {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #0065b8;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 5px;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    cursor: pointer;
    position: relative;
  }
  .l-header__nav-toggle::before, .l-header__nav-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #ffffff;
    transition: transform 0.3s ease;
  }
  .l-header__nav-toggle::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
  }
  .l-header__nav-toggle::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
  }
  .l-header__nav-toggle[aria-expanded=true]::after {
    transform: translate(-50%, -50%) scaleY(0);
  }
}
@media screen and (min-width: 1024px) {
  .l-header__nav-item--has-child:hover .l-header__nav-link {
    color: #0065b8;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__mega {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 100;
    min-width: 320px;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(20, 30, 80, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__mega {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__nav-item--has-child:hover .l-header__mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }
}
@media screen and (min-width: 1024px) {
  .is-nav-leaving .l-header .l-header__mega {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav-item.is-open .l-header__mega {
    max-height: 1000px;
  }
}
.l-header__mega-list {
  list-style: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.l-header__mega-list li {
  border-bottom: 1px solid #e5e5e5;
}
.l-header__mega-list li:last-child {
  border-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .l-header__mega-list li {
    border-bottom: 0;
  }
}
.l-header__mega-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #333333;
  text-decoration: none;
  line-height: 21px;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.l-header__mega-list a::after {
  content: "";
  box-sizing: border-box;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: #0065b8;
  border-top: 1px solid #0065b8;
  border-right: 1px solid #0065b8;
  border-bottom: 1px solid #0065b8;
  border-left: 1px solid #0065b8;
  border-radius: 5px;
  background-image: url("../img/base/navi_arrw.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 6px;
  transition: background-color 0.3s ease, background-image 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .l-header__mega-list a::after {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__mega-list a {
    padding-top: 12px;
    padding-right: 5px;
    padding-bottom: 12px;
    padding-left: 15px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
  }
  .l-header__mega-list a:hover {
    color: #0065b8;
    opacity: 1;
  }
  .l-header__mega-list a:hover::after {
    background-color: #ffffff;
    background-image: url("../img/base/navi_arrw_hover.png");
  }
}
@media screen and (max-width: 1023px) {
  .l-header__mega-list a {
    padding-top: 12px;
    padding-right: 10px;
    padding-bottom: 12px;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 700;
  }
}
.l-header__actions {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 1023px) {
  .l-header__actions {
    flex-direction: row;
    gap: 10px;
    margin-top: 30px;
  }
}
.l-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
}
@media screen and (min-width: 768px) {
  .l-header__btn {
    width: clamp(100px, 10.76vw, 155px);
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .l-header__btn {
    width: 100%;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__btn {
    padding-left: 15px;
    padding-right: 15px;
    white-space: nowrap;
    width: auto;
  }
}
.l-header__btn {
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.l-header__btn:hover {
  opacity: 1;
}
.l-header__btn--casual {
  background-color: #0091a8;
  border-color: #0091a8;
}
.l-header__btn--casual, .l-header__btn--casual:visited, .l-header__btn--casual:active, .l-header__btn--casual:focus {
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .l-header__btn--casual:hover {
    background-color: #ffffff;
    color: #0091a8;
  }
}
.l-header__btn--entry {
  background-color: #0065b8;
  border-color: #0065b8;
}
.l-header__btn--entry, .l-header__btn--entry:visited, .l-header__btn--entry:active, .l-header__btn--entry:focus {
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .l-header__btn--entry:hover {
    background-color: #ffffff;
    color: #0065b8;
  }
}
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__hamburger {
    display: block;
    position: relative;
    width: 44px;
    height: 40px;
    margin-left: auto;
    background-color: #0065b8;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 5px;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    cursor: pointer;
    z-index: 1001;
  }
  .l-header__hamburger span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 28px;
    height: 2px;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
    transition: top 0.3s ease, bottom 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  }
  .l-header__hamburger span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 8px));
  }
  .l-header__hamburger span:nth-child(2) {
    transform: translate(-50%, -50%);
  }
  .l-header__hamburger span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 8px));
  }
  .l-header__hamburger.is-active span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(30deg);
  }
  .l-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .l-header__hamburger.is-active span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-30deg);
  }
}
.l-header__overlay {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 800;
  }
  .l-header__overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes lHeaderSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/*******************************
// footer
********************************/
.l-footer {
  width: 100%;
  background-color: #ffffff;
  color: #333333;
}
.l-footer a {
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .l-footer a:hover {
    color: #0065b8;
    opacity: 1;
  }
}
.l-footer__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    max-width: 1500px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__inner {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__inner {
    padding-top: 40px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .l-footer__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.l-footer__nav {
  display: flex;
}
@media screen and (min-width: 1024px) {
  .l-footer__nav {
    gap: 0;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__nav-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-main {
    width: 100%;
  }
}
.l-footer__cols {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .l-footer__cols {
    gap: clamp(20px, 4vw, 60px);
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__cols {
    flex-direction: column;
    font-size: 16px;
  }
}
.l-footer__col {
  min-width: 0;
  width: max-content;
  margin-top: 25px;
}
@media screen and (max-width: 1023px) {
  .l-footer__col {
    width: 100%;
    position: relative;
    margin-top: 0;
    border-bottom: 1px solid #e0e0e0;
  }
}
.l-footer__col--brand {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__col--brand {
    flex: 0 0 auto;
    width: clamp(200px, 19vw, 270px);
    margin-right: clamp(30px, 1.1vw, 80px);
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__col--brand {
    padding-top: 0;
    padding-bottom: 0;
    border-top: 0;
    border-bottom: 0;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__cols .l-footer__col:first-of-type {
    border-top: 1px solid #e0e0e0;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__col-toggle {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__col-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 30px;
    height: 30px;
    background-color: #0065b8;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 5px;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    cursor: pointer;
  }
  .l-footer__col-toggle::before, .l-footer__col-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #ffffff;
    transition: transform 0.3s ease;
  }
  .l-footer__col-toggle::before {
    width: 12px;
    height: 1px;
    transform: translate(-50%, -50%);
  }
  .l-footer__col-toggle::after {
    width: 1px;
    height: 12px;
    transform: translate(-50%, -50%);
  }
  .l-footer__col-toggle[aria-expanded=true]::after {
    transform: translate(-50%, -50%) scaleY(0);
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__col.is-open .l-footer__sublist {
    max-height: 600px;
    margin-top: 15px;
  }
}
.l-footer__heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #333333;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .l-footer__heading {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-right: 45px;
  }
}
.l-footer__heading a {
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  .l-footer__heading a {
    display: block;
    flex-grow: 1;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.l-footer__list {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
@media screen and (max-width: 1023px) {
  .l-footer__list {
    margin-bottom: 20px;
  }
}
.l-footer__list li {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.l-footer__list a {
  color: inherit;
  text-decoration: none;
}
.l-footer__nav-list {
  list-style: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__nav-list {
    display: flex;
    justify-content: space-between;
    gap: clamp(20px, 4vw, 60px);
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__nav-item {
    min-width: 0;
    width: max-content;
    margin-top: 25px;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-item {
    position: relative;
    border-bottom: 1px solid #e0e0e0;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.l-footer__nav-link {
  display: inline-block;
  color: #333333;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__nav-link {
    margin-bottom: 20px;
    font-size: 16px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    flex-grow: 1;
  }
}
.l-footer__nav-toggle {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-toggle {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #0065b8;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 5px;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    cursor: pointer;
    position: relative;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__nav-toggle {
    width: 44px;
    height: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-toggle::before, .l-footer__nav-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #ffffff;
    transition: transform 0.3s ease;
  }
  .l-footer__nav-toggle::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__nav-toggle::before {
    width: 28px;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-toggle::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__nav-toggle::after {
    height: 28px;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-toggle[aria-expanded=true]::after {
    transform: translate(-50%, -50%) scaleY(0);
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__mega {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.3s ease;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__nav-item.is-open .l-footer__mega {
    max-height: 600px;
    margin-top: 15px;
  }
}
.l-footer__mega-list {
  list-style: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.l-footer__mega-list li {
  position: relative;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .l-footer__mega-list li {
    font-size: clamp(12px, 1.1vw, 16px);
  }
}
.l-footer__mega-list a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.l-footer__external {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .l-footer__external {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__external {
    gap: 15px;
  }
}
.l-footer__external li {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: #333333;
}
.l-footer__external a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}
.l-footer__external a::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background-image: url("../img/base/footerlinkarrw.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.l-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 1023px) {
  .l-footer__bottom {
    border-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 0;
  }
}
.l-footer__logo {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 0;
}
.l-footer__logo a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-footer__logo img {
    width: clamp(180px, 18vw, 270px);
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo-img--pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__logo-img--sp {
    display: none;
  }
}
.l-footer__company-info {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .l-footer__company-info {
    font-size: clamp(12px, 1vw, 14px);
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__company-info {
    font-size: 14px;
  }
}
.l-footer__company-name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .l-footer__company-name {
    font-size: clamp(12px, 1vw, 14px);
  }
}
.l-footer__address {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .l-footer__address {
    font-size: clamp(12px, 1vw, 14px);
  }
}
.l-footer__copyright {
  flex-shrink: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 11px;
  color: #333333;
}
.l-footer__copyright small {
  font-size: inherit;
}
.l-footer__to-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 800;
}
@media screen and (min-width: 768px) {
  .l-footer__to-top {
    right: 30px;
    bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__to-top {
    right: 15px;
    bottom: 85px;
  }
}
.l-footer__to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l-footer__to-top::before {
  content: "";
  width: 16px;
  height: 13px;
  background-image: url("../img/base/backarrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.l-footer__to-top:hover {
  opacity: 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.l-footer__sp-cta {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-footer__sp-cta {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    gap: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    background-color: #ffffff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    z-index: 900;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  .l-footer__sp-cta.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    pointer-events: none;
  }
}
.l-footer__sp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.l-footer__sp-cta-btn,
.l-footer__sp-cta-btn:visited,
.l-footer__sp-cta-btn:hover,
.l-footer__sp-cta-btn:active,
.l-footer__sp-cta-btn:focus,
.l-footer__sp-cta-btn:focus-visible {
  color: #ffffff;
  opacity: 1;
}
.l-footer__sp-cta-btn--casual,
.l-footer__sp-cta-btn--casual:visited,
.l-footer__sp-cta-btn--casual:hover,
.l-footer__sp-cta-btn--casual:active,
.l-footer__sp-cta-btn--casual:focus,
.l-footer__sp-cta-btn--casual:focus-visible {
  background-color: #0091a8;
  border-color: #0091a8;
}
.l-footer__sp-cta-btn--entry {
  font-size: 16px;
}
.l-footer__sp-cta-btn--entry,
.l-footer__sp-cta-btn--entry:visited,
.l-footer__sp-cta-btn--entry:hover,
.l-footer__sp-cta-btn--entry:active,
.l-footer__sp-cta-btn--entry:focus,
.l-footer__sp-cta-btn--entry:focus-visible {
  background-color: #0065b8;
  border-color: #0065b8;
}

/*******************************
// Entry CTA (global, placed above footer)
********************************/
.c-entry-cta {
  width: 100%;
  background-color: #eef7ff;
  padding-top: 30px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .c-entry-cta {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
.c-entry-cta__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__inner {
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.c-entry-cta__card {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 20px;
  background-color: #0065b8;
  background-repeat: no-repeat;
  color: #ffffff;
  padding-top: 40px;
  padding-right: 25px;
  padding-bottom: 40px;
  padding-left: 35%;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__card {
    background-image: url("../img/base/c-entry-cta-bg-pc.png");
    background-position: left center;
    background-size: contain;
    padding-top: clamp(40px, 5vw, 50px);
    padding-right: clamp(40px, 5vw, 70px);
    padding-bottom: clamp(40px, 5vw, 50px);
    padding-left: clamp(20%, 26vw, 30%);
    border-radius: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__card {
    background-image: url("../img/base/c-entry-cta-bg_sp.png");
    background-size: contain;
    background-position: left bottom;
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 150px;
    padding-left: 20px;
  }
}
.c-entry-cta__content {
  position: relative;
  display: flex;
  flex-direction: column;
}
.c-entry-cta__top {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 20px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 768px) {
  .c-entry-cta__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__top {
    gap: 20px;
    padding-bottom: 25px;
  }
}
.c-entry-cta__copy {
  flex-grow: 1;
}
.c-entry-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__label {
    margin-bottom: 20px;
  }
}
.c-entry-cta__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #46c0fb;
}
.c-entry-cta__headline {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__headline {
    font-size: clamp(18px, 1.9vw, 26px);
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__headline {
    font-size: 24px;
  }
}
.c-entry-cta__sub {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__sub {
    margin-top: 20px;
    font-size: 19px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__sub {
    font-size: 15px;
    margin-top: 10px;
  }
}
.c-entry-cta__buttons {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__buttons {
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__buttons {
    gap: 15px;
  }
}
.c-entry-cta__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  height: 55px;
  padding-top: 0;
  padding-right: 10px;
  padding-bottom: 0;
  padding-left: 25px;
  background-color: #ffffff;
  color: #0065b8;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-decoration: none;
  opacity: 1;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__btn {
    height: 60px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__btn {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    border-radius: 8px;
  }
}
.c-entry-cta__btn, .c-entry-cta__btn:visited, .c-entry-cta__btn:active, .c-entry-cta__btn:focus {
  color: #0065b8;
}
.c-entry-cta__btn:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  opacity: 1;
}
.c-entry-cta__arrow {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background-color: #0065b8;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  border-radius: 5px;
  background-image: url("../img/base/common_cta_arrw_hover.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 6px;
  transition: background-color 0.3s ease, background-image 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-entry-cta__arrow {
    width: 24px;
    height: 24px;
  }
}
.c-entry-cta__btn:hover .c-entry-cta__arrow {
  background-color: #ffffff;
  background-image: url("../img/base/common_cta_arrw.svg");
}
.c-entry-cta__bottom {
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 1200px) {
  .c-entry-cta__bottom {
    align-items: center;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__bottom {
    flex-direction: column;
  }
}
.c-entry-cta__note {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__note {
    font-size: clamp(12px, 1vw, 14px);
  }
}
@media screen and (min-width: 1200px) {
  .c-entry-cta__note {
    flex-shrink: 0;
  }
}
.c-entry-cta__links {
  list-style: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (min-width: 1200px) {
  .c-entry-cta__links {
    align-items: center;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-cta__links {
    flex-direction: column;
    margin-left: 0;
  }
}
.c-entry-cta__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-entry-cta__links a {
    font-size: clamp(12px, 1vw, 14px);
  }
}
.c-entry-cta__links a, .c-entry-cta__links a:visited, .c-entry-cta__links a:active, .c-entry-cta__links a:focus {
  color: #ffffff;
}
.c-entry-cta__links a:hover {
  opacity: 0.8;
}
.c-entry-cta__link-arrow {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  background-image: url("../img/base/common_cta_arrw.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 6px;
}

/*******************************
// c-entry-cta__arrow を含む <a> ホバー時に色反転
// 通常: 青背景 + 白矢印 / ホバー: 白背景 + 青矢印（c-cta-btn__arrow と同色）
********************************/
a:hover .c-entry-cta__arrow {
  background-color: #ffffff;
  background-image: url("../img/base/common_cta_arrw.svg");
  border-top-color: #0065b8;
  border-right-color: #0065b8;
  border-bottom-color: #0065b8;
  border-left-color: #0065b8;
}