@charset "UTF-8";
/* 
Google Fonts(フォント読み込み)
=================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
.btn-download {
  font-size: 16px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #EF5350;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-download:hover {
  background-color: #C33C3C;
}

.btn-inquiry {
  font-size: 16px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0F75DB;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-inquiry:hover {
  background-color: #04305D;
}

.btn-registration {
  background: #FFFFFF;
  font-size: 16px;
  color: #0F75DB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-registration:hover {
  background-color: #F2F8FB;
  color: #04305D;
}

.btn-blue {
  background: #0F75DB;
  width: 100%;
  color: #FFFFFF;
  position: relative;
  display: block;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-blue::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn-blue:hover {
  background: #04305D;
}

.btn-white {
  background: #FFFFFF;
  width: 100%;
  color: #0F75DB;
  border: 1px solid #0F75DB;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-white img {
  margin-right: 4px;
}
.btn-white::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #0F75DB;
  border-right: 1px solid #0F75DB;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn-white:hover {
  background: #F2F8FB;
  color: #04305D;
}
.btn-white:hover::after {
  border-top: 1px solid #04305D;
  border-right: 1px solid #04305D;
}
.btn-white:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(26%) sepia(15%) saturate(3473%) hue-rotate(171deg) brightness(90%) contrast(85%);
          filter: brightness(0) saturate(100%) invert(26%) sepia(15%) saturate(3473%) hue-rotate(171deg) brightness(90%) contrast(85%);
}

html:has(.menu-open) {
  overflow: hidden;
}

body * {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
}
@media screen and (max-width: 1060px) {
  body * h1, body * h2, body * h3, body * h4, body * h5 {
    text-align: center;
  }
}

body.menu-open {
  overflow-y: hidden;
}

@media screen and (min-width: 1440px) {
  .tab {
    display: none !important;
  }
}
@media screen and (max-width: 1439px) {
  .tab {
    display: none !important;
  }
}
@media screen and (max-width: 1060px) {
  .pc {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
}
/* アニメーションの初期状態 */
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

/* アニメーション後の状態 */
.fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.scroll-indicator {
  position: fixed;
  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;
  bottom: 2rem;
  right: 2rem;
  background: rgba(31, 80, 120, 0.4);
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1060px) {
  .scroll-indicator {
    bottom: 2rem;
    right: 1rem;
  }
}

.scroll-indicator.is-visible {
  opacity: 1;
}

header {
  height: 120px;
  position: fixed;
  top: 0;
  z-index: 9999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #FFFFFF;
}
@media screen and (max-width: 1060px) {
  header {
    height: 60px;
    background: #FFFFFF;
  }
}
header.bg-child {
  background: #FFFFFF;
}
header.bg-white {
  background: #FFFFFF;
}
header.is-scroll {
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .content-container {
  position: relative;
  height: 124px;
  width: 100vw;
  padding: 24px;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* PC表示用 */
  /* メニュー本体デフォルトで表示 */
}
@media screen and (max-width: 1060px) {
  header .content-container {
    padding: 15px;
    height: 60px;
  }
}
header .content-container .logo-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 16px;
  margin-bottom: 22px;
}
@media screen and (max-width: 1060px) {
  header .content-container .logo-holder {
    margin: 0;
  }
}
header .content-container .logo-holder img {
  height: 42px;
  min-width: 180px;
}
@media screen and (max-width: 1060px) {
  header .content-container .logo-holder img {
    height: 30px;
    min-width: unset;
  }
}
header .content-container .link-section {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .content-container .link-section .header-content .jpx-container {
  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: end;
      -ms-flex-align: end;
          align-items: end;
  position: fixed;
  top: 24px;
  left: 40px;
  z-index: -1;
}
header .content-container .link-section .header-content .jpx-container .img {
  margin-bottom: 12px;
  margin-right: 40px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-content .jpx-container .img {
    margin-right: 8px;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-content .jpx-container .img {
    margin-right: 8px;
  }
}
header .content-container .link-section .header-content .jpx-container .img img {
  width: 33px;
  height: auto;
}
header .content-container .link-section .header-content .jpx-container .read {
  font-size: 14px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-content .jpx-container .read {
    font-size: 12px;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-content .jpx-container {
    position: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  header .content-container .link-section .header-content .jpx-container .img {
    margin-right: 20px;
    margin-bottom: 0;
    padding: 2px;
    background: #fff;
  }
  header .content-container .link-section .header-content .jpx-container .read {
    font-size: 14px;
    color: #FFFFFF;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-content {
    width: 100%;
    background-color: rgba(31, 80, 120, 0.8);
    padding: 16px 24px 100px;
    overflow: scroll;
  }
}
header .content-container .link-section .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 14px;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0;
    margin-top: 24px;
  }
}
header .content-container .link-section .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .content-container .link-section .header-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  color: #04305D;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-nav ul li a {
    color: #FFFFFF;
    font-size: 16px;
  }
}
header .content-container .link-section .header-nav ul li a img {
  margin-left: 14px;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-nav ul li a img {
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(7500%) hue-rotate(343deg) brightness(107%) contrast(105%);
            filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(7500%) hue-rotate(343deg) brightness(107%) contrast(105%);
  }
}
header .content-container .link-section .header-nav ul li a:hover {
  color: #0F75DB;
  text-decoration: underline;
  text-underline-offset: 4px;
}
header .content-container .link-section .header-nav ul li a:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(36%) sepia(77%) saturate(933%) hue-rotate(180deg) brightness(100%) contrast(96%);
          filter: brightness(0) saturate(100%) invert(36%) sepia(77%) saturate(933%) hue-rotate(180deg) brightness(100%) contrast(96%);
}
header .content-container .link-section .header-nav ul li + li {
  margin-left: 16px;
  border-left: 1px solid #04305D;
  padding-left: 14px;
}
header .content-container .link-section .header-txt-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
header .content-container .link-section .header-txt-link .txt-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .txt-link {
    margin-right: 12px;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link {
    margin-right: 0;
    width: 100%;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.menu-title {
  margin-bottom: 24px;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.menu-title {
    margin: 0 !important;
    padding: 16px 0;
    border-bottom: 1px solid #FFFFFF;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.menu-title a {
  color: #21524A;
  font-weight: bold;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.menu-title a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.menu-title a {
    font-size: 16px;
    display: block;
    position: relative;
    color: #FFFFFF;
    width: 100%;
  }
  header .content-container .link-section .header-txt-link .txt-link ul li.menu-title a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 4px;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.menu-title a:hover {
  text-decoration: underline;
  text-underline-offset: 8px;
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown {
  /* 通常時非表示 */
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown.active .dropdown-title {
  color: #0F75DB;
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown.active .dropdown-title::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #0F75DB;
  border-right: 1px solid #0F75DB;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .dropdown-title {
  color: #04305D;
  font-weight: bold;
  position: relative;
  padding-right: 24px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .dropdown-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .dropdown-title {
    padding: 16px 0;
    color: #FFFFFF;
    font-size: 16px;
    display: block;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .dropdown-title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #04305D;
  border-right: 1px solid #04305D;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .dropdown-title::after {
    display: none;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 124px;
  left: 0;
  background-color: rgba(31, 80, 120, 0.8);
  width: 100%;
  padding: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu {
    top: 60px;
    opacity: 1;
    visibility: visible;
    position: unset;
    background-color: unset;
    padding: 0;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box {
  width: 24%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #FFFFFF;
  padding: 4px;
  -webkit-box-shadow: 0px 0px 36px 0px rgba(32, 128, 224, 0.16);
          box-shadow: 0px 0px 36px 0px rgba(32, 128, 224, 0.16);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box {
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 40px 24px 24px 24px;
    pointer-events: all;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top {
  font-weight: bold;
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .label {
  padding: 10px 0;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .label {
    display: none;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px auto 66px;
  position: relative;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .title {
    margin: 0 auto 24px auto;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .title img {
  width: auto;
  height: 50%;
  max-height: 66px;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .title img {
    height: 26px;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .title::after {
  content: "";
  width: 40px;
  height: 2px;
  display: inline-block;
  position: absolute;
  bottom: -32px;
  left: calc(50% - 20px);
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .title::after {
    display: none;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .read {
  font-size: 16px;
  color: #04305D;
  text-align: center;
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .btn-container {
  margin: 16px;
  pointer-events: auto;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .btn-container {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box + .box {
    margin-top: 16px;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown:hover .mega_menu {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .content-container .link-section .header-txt-link .txt-link ul li + li {
  margin-left: 32px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .txt-link ul li + li {
    margin-left: 8px;
  }
}
header .content-container .link-section .header-txt-link .btn-link {
  margin-bottom: 24px;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link {
    margin-top: 16px;
    margin-bottom: 0;
  }
}
header .content-container .link-section .header-txt-link .btn-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul li {
    width: 100%;
  }
}
header .content-container .link-section .header-txt-link .btn-link ul li a {
  padding: 14px;
  height: 44px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a {
    height: 64px;
    font-size: 16px;
  }
}
header .content-container .link-section .header-txt-link .btn-link ul li a.btn-download {
  width: 180px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-download {
    width: auto;
    padding: 8px;
  }
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-download img {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-download {
    width: 100%;
  }
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-download img {
    height: 20px;
  }
}
header .content-container .link-section .header-txt-link .btn-link ul li a.btn-inquiry {
  width: 152px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-inquiry {
    width: auto;
    padding: 8px;
  }
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-inquiry img {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-inquiry {
    width: 100%;
  }
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-inquiry img {
    height: 20px;
  }
}
header .content-container .link-section .header-txt-link .btn-link ul li a.btn-white {
  width: 124px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-white {
    width: auto;
    padding: 8px;
  }
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-white img {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-white {
    width: 100%;
    position: relative;
  }
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-white img {
    position: absolute;
    left: 14px;
    top: calc(50% - 10px);
    height: 20px;
  }
}
header .content-container .link-section .header-txt-link .btn-link ul li + li {
  margin-left: 8px;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul li + li {
    margin-left: 0;
    margin-top: 8px;
  }
}
header .content-container .hamburger-menu-toggle {
  display: none;
}
header .content-container .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (max-width: 1060px) {
  header .content-container {
    /* ハンバーガーメニュー */
    /* メニュー本体初期状態で非表示 */
    /* .menu-open クラスが追従されたらメニューを表示 */
  }
  header .content-container .hamburger-menu-toggle {
    margin-top: 5px;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    cursor: pointer;
  }
  header .content-container .hamburger-menu-toggle span {
    height: 3px;
    width: 24px;
    background: #007457;
    margin: 4px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 2px;
    display: block;
  }
  header .content-container .hamburger-menu-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-4px, 6px);
            transform: rotate(-45deg) translate(-4px, 6px);
  }
  header .content-container .hamburger-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  header .content-container .hamburger-menu-toggle.active span:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-4px, -6px);
            transform: rotate(45deg) translate(-4px, -6px);
  }
  header .content-container .header-content {
    height: 0;
    max-height: 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 100%; /* Adjust based on header height */
    left: 0;
    /* Fix: スクロールを有効にするための設定 */
    height: calc(100vh - 60px);
    overflow: scroll; /* スクロールを有効にする */
    width: 100%;
    background: white; /* 背景色 */
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .content-container .header-content.menu-open {
    max-height: unset !important;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: scroll;
  }
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section .content-container {
  max-width: 1232px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (max-width: 1060px) {
  section .content-container {
    width: 100%;
  }
}
section .content-container .section-title {
  color: #FFFFFF;
  font-weight: bold;
  margin-bottom: 80px;
}
@media screen and (max-width: 1060px) {
  section .content-container .section-title {
    margin-bottom: 50px;
  }
}
section .content-container .section-title h2 {
  font-family: "Arial", sans-serif;
  font-size: 56px;
  text-align: center;
  position: relative;
  margin-bottom: 24px;
}
section .content-container .section-title h2::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: #FFFFFF;
  position: absolute;
  bottom: -4px;
  left: calc(50% - 60px);
}
@media screen and (max-width: 1060px) {
  section .content-container .section-title h2 {
    font-size: 40px;
  }
}
section .content-container .section-title h4 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
}
section .content-container .section-title .read {
  font-size: 24px;
}
@media screen and (max-width: 1060px) {
  section .content-container .section-title .read {
    text-align: center;
  }
}
section .content-container .section-title-b {
  color: #04305D;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 1060px) {
  section .content-container .section-title-b {
    margin-bottom: 50px;
  }
}
section .content-container .section-title-b h2 {
  font-family: "Arial", sans-serif;
  font-size: 56px;
  text-align: center;
  position: relative;
  margin-bottom: 24px;
}
section .content-container .section-title-b h2::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#0F75DB), to(#008F96));
  background: linear-gradient(90deg, #0F75DB, #008F96);
  position: absolute;
  bottom: -4px;
  left: calc(50% - 60px);
}
@media screen and (max-width: 1060px) {
  section .content-container .section-title-b h2 {
    font-size: 40px;
  }
  section .content-container .section-title-b h2::after {
    bottom: -4px;
  }
}
section .content-container .section-title-b h2.green {
  font-family: "Arial", sans-serif;
  font-size: 56px;
  text-align: center;
  position: relative;
  margin-bottom: 56px;
}
section .content-container .section-title-b h2.green::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#008F96), to(#20AAE0));
  background: linear-gradient(90deg, #008F96, #20AAE0);
  position: absolute;
  bottom: -20px;
  left: calc(50% - 60px);
}
section .content-container .section-title-b h4 {
  font-size: 20px;
  text-align: center;
}
section .content-container .section-title-b .read {
  font-size: 24px;
}
@media screen and (max-width: 1060px) {
  section .content-container .section-title-b .read {
    text-align: center;
  }
}

#page-main .main-heading {
  padding-top: 200px;
}
@media screen and (max-width: 1060px) {
  #page-main .main-heading {
    padding-top: 100px;
  }
}
#page-main .main-heading .section-title {
  color: #FFFFFF;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 1060px) {
  #page-main .main-heading .section-title {
    margin-bottom: 50px;
  }
}
#page-main .main-heading .section-title .logo {
  height: 40px;
  margin: 0 auto 24px;
}
#page-main .main-heading .section-title .logo img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 1060px) {
  #page-main .main-heading .section-title .logo {
    height: 30px;
    margin-bottom: 12px;
  }
}
#page-main .main-heading .section-title h2 {
  font-family: "Arial", sans-serif;
  font-size: 56px;
  text-align: center;
  position: relative;
  margin-bottom: 24px;
  color: #04305D;
}
@media screen and (max-width: 1060px) {
  #page-main .main-heading .section-title h2 {
    font-size: 40px;
  }
}
#page-main .main-heading .section-title h2::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: #04305D;
  position: absolute;
  bottom: 0px;
  left: calc(50% - 60px);
}
#page-main .main-heading .section-title h4 {
  font-size: 20px;
  text-align: center;
  color: #04305D;
}
@media screen and (max-width: 1060px) {
  #page-main .main-heading .section-title h4 {
    font-size: 18px;
  }
}
#page-main .main-heading .section-title .read {
  font-size: 24px;
}
@media screen and (max-width: 1060px) {
  #page-main .main-heading .section-title .read {
    text-align: center;
  }
}
#page-main .main-heading .section-title .section-title-b {
  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;
  margin-bottom: 32px;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .content-container {
  width: 100%;
  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;
}
footer .content-container .company-section {
  max-width: 1232px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  background: #FFFFFF;
  padding: 80px 16px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1060px) {
  footer .content-container .company-section {
    width: 100%;
    padding: 40px 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 1060px) {
  footer .content-container .company-section .about {
    margin-top: 60px;
  }
}
footer .content-container .company-section .about .read {
  margin: 24px 0 40px;
}
footer .content-container .company-section .about .read .copy {
  font-size: 14px;
  margin-top: 24px;
}
footer .content-container .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .content-container .links .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .content-container .links .menu .list {
  width: 368px;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .menu .list {
    width: 100%;
  }
}
footer .content-container .links .menu .menu-r {
  margin-left: 48px;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .menu .menu-r {
    margin-left: 0;
  }
}
footer .content-container .links .menu .menu-title {
  padding: 16px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .menu .menu-title {
    margin-bottom: 0;
  }
}
footer .content-container .links .menu p.menu-title {
  padding: 16px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #DDDDDD;
}
footer .content-container .links .menu .sub-list li {
  padding: 16px 0 16px 40px;
  border-bottom: 1px solid #DDDDDD;
}
footer .content-container .links .menu .sub-list li a {
  position: relative;
  width: 100%;
  display: block;
  font-size: 14px;
}
footer .content-container .links .menu .sub-list li a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #04305D;
  border-right: 1px solid #04305D;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
footer .content-container .links .menu .sub-list li a:hover {
  color: #0F75DB;
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer .content-container .links .menu a {
  position: relative;
  width: 100%;
  display: block;
}
footer .content-container .links .menu a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #04305D;
  border-right: 1px solid #04305D;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
footer .content-container .links .menu a:hover {
  color: #0F75DB;
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer .content-container .links .bottom-menu {
  margin-top: 40px;
}
footer .content-container .links .bottom-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .bottom-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .content-container .links .bottom-menu ul li {
  padding: 0 16px;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .bottom-menu ul li {
    padding: 0;
  }
}
footer .content-container .links .bottom-menu ul li a {
  font-size: 14px;
}
footer .content-container .links .bottom-menu ul li a:hover {
  color: #0F75DB;
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer .content-container .links .bottom-menu ul li + li {
  border-left: 1px solid #DDDDDD;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .bottom-menu ul li + li {
    border-left: none;
    margin-top: 16px;
  }
}
footer .group-section {
  width: 100%;
  background: #F4F4F4;
  padding: 40px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1060px) {
  footer .group-section {
    padding: 40px 24px;
  }
}
footer .group-section .group-section-container {
  max-width: 1232px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1060px) {
  footer .group-section .group-section-container {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
footer .group-section .group-section-container .title {
  font-weight: bold;
  padding-right: 80px;
}
@media screen and (max-width: 1060px) {
  footer .group-section .group-section-container .title {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #DDDDDD;
    width: 100%;
  }
}
footer .group-section .group-section-container ul {
  padding-left: 80px;
  font-size: 14px;
  border-left: 1px solid #DDDDDD;
}
@media screen and (max-width: 1060px) {
  footer .group-section .group-section-container ul {
    padding-left: 0;
    border-left: none;
  }
}
footer .group-section .group-section-container ul li a:hover {
  color: #0F75DB;
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer .group-section .group-section-container ul li + li {
  margin-top: 8px;
}
footer .group-section .group-section-container .menu-r {
  border-left: none;
}

.btn-download {
  font-size: 16px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #EF5350;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-download:hover {
  background-color: #C33C3C;
}

.btn-inquiry {
  font-size: 16px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0F75DB;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-inquiry:hover {
  background-color: #04305D;
}

.btn-registration {
  background: #FFFFFF;
  font-size: 16px;
  color: #0F75DB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-registration:hover {
  background-color: #F2F8FB;
  color: #04305D;
}

.btn-blue {
  background: #0F75DB;
  width: 100%;
  color: #FFFFFF;
  position: relative;
  display: block;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-blue::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn-blue:hover {
  background: #04305D;
}

.btn-white {
  background: #FFFFFF;
  width: 100%;
  color: #0F75DB;
  border: 1px solid #0F75DB;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-white img {
  margin-right: 4px;
}
.btn-white::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #0F75DB;
  border-right: 1px solid #0F75DB;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn-white:hover {
  background: #F2F8FB;
  color: #04305D;
}
.btn-white:hover::after {
  border-top: 1px solid #04305D;
  border-right: 1px solid #04305D;
}
.btn-white:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(26%) sepia(15%) saturate(3473%) hue-rotate(171deg) brightness(90%) contrast(85%);
          filter: brightness(0) saturate(100%) invert(26%) sepia(15%) saturate(3473%) hue-rotate(171deg) brightness(90%) contrast(85%);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}
@media screen and (max-width: 1060px) {
  html {
    scroll-padding-top: 60px;
  }
}

#main {
  background-image: url(../images/main-bg.png);
  background-size: cover;
  background-position: bottom;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 924px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 1060px) {
  #main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    height: 740px;
    padding-bottom: 50px;
  }
}

#request-document {
  background-image: url(../images/request-document.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 440px;
}
@media screen and (max-width: 1060px) {
  #request-document {
    background-size: cover;
    background-position: center;
    height: auto;
    background-image: url(../images/request-document_sp.png);
  }
}
#request-document .content-container {
  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;
}
@media screen and (max-width: 1060px) {
  #request-document .content-container {
    padding: 48px 16px;
  }
}
#request-document .content-container .read {
  font-size: 24px;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.8;
}
@media screen and (max-width: 1060px) {
  #request-document .content-container .read {
    font-size: 20px;
  }
}
#request-document .content-container .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1060px) {
  #request-document .content-container .btn-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
#request-document .content-container .btn-container .btn-download {
  width: 440px;
  height: 80px;
  padding: 20px;
  margin-right: 24px;
  border: 1px solid #007457;
  font-size: 22px;
  color: #007457;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1060px) {
  #request-document .content-container .btn-container .btn-download {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
#request-document .content-container .btn-container .btn-download img:first-child {
  height: 32px;
}
#request-document .content-container .btn-container .btn-download img {
  height: 24px;
}
#request-document .content-container .btn-container .btn-download:hover {
  background-color: #EBF6F7;
}

#cases {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#F2F8FB));
  background: linear-gradient(180deg, #FFFFFF 0%, #F2F8FB 100%);
  overflow: hidden;
}
#cases .content-container {
  padding: 80px 0;
}
@media screen and (max-width: 1060px) {
  #cases .content-container {
    padding: 48px 24px;
  }
}
#cases .content-container .section-title-b {
  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;
  margin-bottom: 32px;
}
#cases .content-container .swiper-section .swiper {
  overflow: visible;
}
@media screen and (max-width: 1060px) {
  #cases .content-container .swiper-section .swiper {
    overflow: hidden;
  }
}
#cases .content-container .swiper-section .swiper .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card {
  background: #FFFFFF;
  width: 384px;
  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-shadow: 0px 0px 36px 0px rgba(32, 128, 224, 0.16);
          box-shadow: 0px 0px 36px 0px rgba(32, 128, 224, 0.16);
}
@media screen and (max-width: 1060px) {
  #cases .content-container .swiper-section .swiper .swiper-wrapper .card {
    width: 100%;
  }
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area {
  padding: 24px;
}
@media screen and (max-width: 1060px) {
  #cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area {
    width: 100%;
  }
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .logo-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 25px;
  margin-bottom: 24px;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .logo-image img {
  height: 100%;
  width: auto;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .service {
  display: inline-block;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 8px;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .service.factoring {
  color: #05ABAB;
  border: solid 1px #05ABAB;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .service.postpaid {
  color: #0568B3;
  border: solid 1px #0568B3;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .service.transfer {
  color: #1735A3;
  border: solid 1px #1735A3;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .service.receipt {
  color: #0057BF;
  border: solid 1px #0057BF;
}
@media screen and (max-width: 1060px) {
  #cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .service {
    margin-bottom: 4px;
  }
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .title {
  color: #04305D;
  font-size: 20px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1060px) {
  #cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .title {
    margin-bottom: 4px;
  }
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .label {
  color: #04305D;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
}
@media screen and (max-width: 1060px) {
  #cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .label {
    margin-bottom: 4px;
  }
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .price {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
  color: #04305D;
}
@media screen and (max-width: 1060px) {
  #cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .price {
    margin-bottom: 4px;
  }
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .price span {
  font-weight: normal;
  font-size: 16px;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .btn-container a {
  width: 260px;
  height: 44px;
  margin-top: 8px;
  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;
}
@media screen and (max-width: 1060px) {
  #cases .content-container .swiper-section .swiper .swiper-wrapper .card .txt-area .btn-container a {
    width: 70%;
    margin: 8px auto;
  }
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .btn-container .btn {
  background: #FFFFFF;
  width: 100%;
  position: relative;
  display: block;
  text-align: center;
  padding: 14px 0;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card .btn-container .btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 8px;
  height: 8px;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .factoring .btn {
  color: #05ABAB;
  border: 1px solid #05ABAB;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .factoring .btn::after {
  border-top: 1px solid #05ABAB;
  border-right: 1px solid #05ABAB;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .factoring .btn:hover {
  background: #05ABAB;
  color: #FFFFFF;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .factoring .btn:hover::after {
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .postpaid .btn {
  color: #0568B3;
  border: 1px solid #0568B3;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .postpaid .btn::after {
  border-top: 1px solid #0568B3;
  border-right: 1px solid #0568B3;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .postpaid .btn:hover {
  background: #0568B3;
  color: #FFFFFF;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .postpaid .btn:hover::after {
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .transfer .btn {
  color: #1735A3;
  border: 1px solid #1735A3;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .transfer .btn::after {
  border-top: 1px solid #1735A3;
  border-right: 1px solid #1735A3;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .transfer .btn:hover {
  background: #1735A3;
  color: #FFFFFF;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .transfer .btn:hover::after {
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .receipt .btn {
  color: #0057BF;
  border: 1px solid #0057BF;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .receipt .btn::after {
  border-top: 1px solid #0057BF;
  border-right: 1px solid #0057BF;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .receipt .btn:hover {
  background: #0057BF;
  color: #FFFFFF;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .receipt .btn:hover::after {
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
#cases .content-container .swiper-section .swiper .swiper-wrapper .card + .card {
  margin-left: 24px;
}
@media screen and (max-width: 1060px) {
  #cases .content-container .swiper-section .swiper .swiper-wrapper .card + .card {
    margin-left: 0;
  }
}
#cases .content-container .swiper-section .swiper-controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 24px;
  margin: 40px 0;
  /* カスタムページネーションのスタイル */
  /* アクティブなページネーションのスタイル */
}
#cases .content-container .swiper-section .swiper-controller .swiper-pagination {
  position: unset;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#cases .content-container .swiper-section .swiper-controller .swiper-pagination-lock {
  display: none !important;
}
#cases .content-container .swiper-section .swiper-controller .swiper-pagination-bullet {
  width: 40px;
  height: 2px;
  background-color: #000;
  opacity: 0.12;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0; /* 角をなくして線にする */
}
#cases .content-container .swiper-section .swiper-controller .swiper-pagination-bullet-active {
  width: 120px; /* アクティブな線を長くする */
  opacity: 1;
  /* グラデーションを適用 */
  background-image: -webkit-gradient(linear, left top, right top, from(#0F75DB), to(#008F96));
  background-image: linear-gradient(90deg, #0F75DB, #008F96);
}
#cases .content-container .swiper-section .swiper-controller .swiper-button-prev,
#cases .content-container .swiper-section .swiper-controller .swiper-button-next {
  margin-top: 0;
  position: unset;
  height: auto;
}
#cases .content-container .swiper-section .swiper-controller .swiper-button-prev::after,
#cases .content-container .swiper-section .swiper-controller .swiper-button-next::after {
  font-size: 14px;
}
#cases .btn-container {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#cases .btn-container .btn-blue {
  text-align: center;
  width: 360px;
}

#information {
  background-color: #F2F8FB;
}
#information .content-container {
  padding: 80px 16px;
}
@media screen and (max-width: 1060px) {
  #information .content-container {
    padding: 48px 24px;
  }
}
#information .content-container .news {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1060px) {
  #information .content-container .news ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#information .content-container .news ul li {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #DDDDDD;
}
#information .content-container .news ul li .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#information .content-container .news ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1060px) {
  #information .content-container .news ul li a {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #information .content-container .news ul li a .read {
    margin-top: 16px;
  }
}
#information .content-container .news ul li a .label {
  width: 140px;
  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;
  margin: 0 20px;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  border-radius: 4px;
  background: #FFFFFF;
  color: #007457;
  border: 1px solid #007457;
}
@media screen and (max-width: 1060px) {
  #information .content-container .news ul li a .label {
    width: 110px;
    margin: 0 12px;
  }
}
#information .content-container .news ul li a .label.factoring {
  border: 1px solid #007457;
  color: #007457;
}
#information .content-container .news ul li a .label.bpsp {
  border: 1px solid #0568B3;
  color: #0568B3;
}
#information .content-container .news ul li a .label.pay {
  border: 1px solid #1735A3;
  color: #1735A3;
}
#information .content-container .news ul li a .label.bill {
  border: 1px solid #0057BF;
  color: #0057BF;
}
#information .content-container .news ul li a .label + .label {
  margin-left: 0;
}
#information .content-container .news ul li a:hover .read {
  color: #0F75DB;
  text-decoration: underline;
  text-underline-offset: 4px;
}
#information .content-container .btn-container {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#information .content-container .btn-container .btn-blue {
  text-align: center;
  width: 360px;
}