@charset "UTF-8";
@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .md-only {
    display: none !important;
  }
}
@media screen and (min-width: 1420px) {
  .md-only {
    display: none !important;
  }
}

/* 共通ボタン */
.c-button {
  display: flex;
  align-items: center;
  gap: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 78px;
  border-radius: 40px;
  color: #01419B;
  background: #fff;
  border: 2px solid #01419B;
  transition: all 0.3s ease-in;
}
.c-button svg path {
  transition: fill 0.3s ease-in;
}
.c-button p {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
@media (any-hover: hover) {
  .c-button:hover {
    color: #fff;
    background: #01449B;
  }
  .c-button:hover svg path {
    fill: currentColor;
  }
}
.c-button-black {
  color: #fff;
  background: #1B2430;
  border: 2px solid #1B2430;
}
@media (any-hover: hover) {
  .c-button-black:hover {
    color: #00419B;
    background: #fff;
    border: 2px solid #01419B;
  }
  .c-button-black:hover svg path {
    fill: #00419B;
  }
}
.c-button-pdf {
  padding: 14px 56px;
}
@media screen and (max-width: 768px) {
  .c-button-outside {
    padding: 14px 38px;
    color: #fff;
    background-color: #00419B;
  }
  .c-button-outside svg path {
    fill: #fff;
  }
}
.c-button-arrow {
  padding: 14px 54px;
}
@media screen and (max-width: 768px) {
  .c-button-arrow {
    padding: 14px 38px;
    color: #fff;
    background-color: #00419B;
  }
  .c-button-arrow svg path {
    fill: currentColor;
  }
}
.c-button-arrow-sm {
  gap: 16px;
  padding: 6px 24px;
}

.txt-link {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease-in;
}
.txt-link p {
  font-size: 14px;
}
.txt-link svg path {
  transition: fill 0.3s ease-in;
}
@media (any-hover: hover) {
  .txt-link:hover {
    color: #01449B;
  }
  .txt-link:hover svg path {
    fill: currentColor;
  }
}

.txt-link-line {
  display: flex;
  gap: 8px;
  color: #01449B;
  text-underline-offset: 2px;
  -webkit-text-decoration: 1px underline currentColor;
          text-decoration: 1px underline currentColor;
  transition: color 0.3s ease-in;
}
.txt-link-line p {
  font-size: 16px;
  text-underline-offset: 3px;
}
.txt-link-line svg path {
  transition: fill 0.3s ease-in;
}
@media (any-hover: hover) {
  .txt-link-line:hover {
    color: #666;
  }
  .txt-link-line:hover svg path {
    fill: currentColor;
  }
}

.menu-link {
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-in;
}
.menu-link svg path {
  transition: fill 0.3s ease-in;
}
@media (any-hover: hover) {
  .menu-link:hover {
    position: relative;
    color: #01449B;
    border-bottom: 2px solid;
    -o-border-image: linear-gradient(90deg, #00419B 0%, #007BC7 100%);
       border-image: linear-gradient(90deg, #00419B 0%, #007BC7 100%);
    border-image-slice: 1;
  }
  .menu-link:hover svg path {
    fill: #00419B;
  }
}

.p-title {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: transparent;
  background: linear-gradient(180deg, #00419B 28.57%, #007BC7 89.29%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .p-title {
    font-size: 28px;
    line-height: 1.4;
  }
}

.inner {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 32px;
  }
}

/* sp_ハンバーガーメニュー　ボタン */
.hamburger-button {
  display: none;
}
@media screen and (max-width: 1240px) {
  .hamburger-button {
    display: block;
    position: fixed;
    top: 28px;
    right: 32px;
    z-index: 1000;
  }
}

/* sp_ハンバーガーメニュー　メニュー */
.hamburger {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(27, 36, 48, 0.95);
  width: 100%;
  height: 100vh;
  padding: 36px 32px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.hamburger.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.hamburger .img-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hamburger .img-wrap .hamburger-logo {
  display: flex;
  align-items: center;
  color: #fff;
}
.hamburger .img-wrap .hamburger-logo img {
  width: 172px;
}
.hamburger .img-wrap .hamburger-logo p {
  font-size: 10px;
  font-weight: 700;
}
.hamburger .menu-list {
  margin-block: 52px 40px;
  border-bottom: 1px solid #0184C9;
}
.hamburger .menu-list .menu-item .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-block: 24px;
  border-top: 1px solid #0184C9;
}
.hamburger .menu-list .menu-item .content p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #fff;
}
.hamburger .c-button {
  margin-inline: auto;
}
.hamburger .menu-link {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
@media (any-hover: hover) {
  .hamburger .menu-link:hover {
    color: #01449B;
  }
}
.hamburger .menu-link p {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

/* ヘッダー */
.l-header {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 108px;
  background: linear-gradient(180deg, #00419B 0%, #007BC7 50%, transparent 50%);
  transition: all 0.5s;
}
@media screen and (max-width: 1240px) {
  .l-header {
    height: 72px;
  }
}
.l-header .l-header__inner {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 24px 40px;
  max-width: 1416px;
  width: calc(100% - 96px);
  height: 84px;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0px 8px 16px 0px rgba(44, 124, 210, 0.24);
}
@media screen and (max-width: 1240px) {
  .l-header .l-header__inner {
    top: 16px;
    padding: 12px 16px;
    width: calc(100% - 32px);
    height: 56px;
  }
}
.l-header .l-header__inner .header-logo a {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1241px) and (max-width: 1420px) {
  .l-header .l-header__inner .header-logo a img {
    width: 17.72vw;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-header .l-header__inner .header-logo a img {
    width: 175px;
    height: auto;
  }
}
.l-header .l-header__inner .header-logo a span {
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 768px) {
  .l-header .l-header__inner .header-logo a span {
    font-size: 10px;
  }
}
.l-header .l-header__inner .nav-menu .menu-list {
  display: flex;
  align-items: center;
}
.l-header .l-header__inner .nav-menu .menu-list .menu-item {
  padding-bottom: 2px;
}
.l-header .l-header__inner .nav-menu .menu-list .menu-item .menu-link {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-header .l-header__inner .nav-menu .menu-list .menu-item.menu-main {
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(90deg, #00419B 0%, #007BC7 100%);
     border-image: linear-gradient(90deg, #00419B 0%, #007BC7 100%);
  border-image-slice: 1;
}
.l-header .l-header__inner .nav-menu .menu-list .menu-item01:nth-child(n+2) {
  margin-left: 39px;
}
.l-header .l-header__inner .nav-menu .menu-list .menu-item02 {
  margin-left: 16px;
  padding-block: 12.5px 12px;
  padding-left: 16px;
  border-left: 1px solid #CCC;
}
.l-header .l-header__inner .nav-menu .menu-list .menu-item02 P {
  margin-right: 8px;
}
@media screen and (max-width: 1240px) {
  .l-header .l-header__inner .nav-menu {
    display: none;
  }
}

.l-header.scrolled {
  background: linear-gradient(180deg, rgba(0, 65, 155, 0.8) 0%, rgba(0, 123, 199, 0.8) 50%, transparent 50%);
}

/* フッター */
.l-footer {
  padding-top: 32px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-top: 40px;
  }
}
.l-footer .l-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 184px;
  padding-bottom: 24px;
}
@media screen and (max-width: 1340px) {
  .l-footer .l-footer__inner {
    padding-inline: 80px;
  }
}
@media screen and (max-width: 980px) {
  .l-footer .l-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding-inline: 32px 29px;
    padding-bottom: 44px;
  }
}
.l-footer .l-footer__inner .logo-link {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer__inner .logo-link img {
    width: 55.73vw;
    height: auto;
  }
}
.l-footer .l-footer__inner .logo-link span {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer__inner .logo-link span {
    font-size: 12px;
  }
}
.l-footer .l-footer__inner .list {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer__inner .list {
    gap: 24px;
  }
}
.l-footer .l-footer__inner .list .menu-item .menu-link {
  display: flex;
  align-items: center;
  color: #222;
}
@media (any-hover: hover) {
  .l-footer .l-footer__inner .list .menu-item .menu-link:hover {
    color: #01449B;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .l-footer__inner .list .menu-item .menu-link {
    font-size: 14px;
  }
}
.l-footer .l-footer__inner .list .menu-item .menu-link svg {
  margin-left: 8px;
}
.l-footer .copy {
  padding: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  background: linear-gradient(90deg, #00419B 0%, #007BC7 100%);
  text-align: center;
}

/* パンくずリスト */
.bread-nav {
  position: absolute;
  top: 138px;
  left: 88px;
  z-index: 10;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .bread-nav {
    top: 88px;
    left: 0;
    right: 0;
    padding-inline: 32px;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    /* スクロールバーを非表示にする（見た目だけ） */
    scrollbar-width: none; /* Firefox用 */
    -ms-overflow-style: none; /* IE/Edge旧バージョン用 */
  }
  .bread-nav::-webkit-scrollbar { /* Chrome, Safari用 */
    display: none;
  }
}
.bread-nav li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .bread-nav li {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 11px;
  }
}
.bread-nav li:not(:last-child) {
  position: relative;
  padding-right: 39px;
}
.bread-nav li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  right: 16px;
  width: 14px;
  height: 14px;
  background-image: url(../images/icon_arrow.png);
}
@media screen and (max-width: 768px) {
  .bread-nav li:last-child {
    font-size: 10px;
  }
}

/* 資料請求・お問い合わせ */
.contact {
  padding: 72px;
  width: 100%;
  height: auto;
  background: center/cover url(../images/contact_bg.png);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 80px 32px;
    background: center/cover url(../images/contact_bg-sp.png);
  }
}
.contact h4.title {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
.contact .text {
  margin-bottom: 62px;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact .text {
    margin-bottom: 46px;
  }
}
.contact .c-button {
  margin-inline: auto;
}
/*# sourceMappingURL=main.css.map */