.md-plus {
  display: inherit;
}
@media screen and (max-width: 575px) {
  .md-plus {
    display: none;
  }
}

.md-minus {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-minus {
    display: inherit;
  }
}

.md-minus-inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-minus-inline {
    display: inline;
  }
}

.lg-plus {
  display: inherit;
}
@media screen and (max-width: 767px) {
  .lg-plus {
    display: none;
  }
}

.lg-minus {
  display: none;
}
@media screen and (max-width: 991px) {
  .lg-minus {
    display: inherit;
  }
}

.xl-plus {
  display: inherit;
}
@media screen and (max-width: 991px) {
  .xl-plus {
    display: none;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-body {
  flex: 1;
}

.page-header {
  width: 100%;
  z-index: 20;
  background-color: #fff;
  color: #fff;
}
.page-header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .page-header__body {
    display: block;
  }
}
/*
.page-header__logo {
  padding: 20px 0;
}
.page-header__logo img {
  width: 320px;
}
*/
.page-header__logo {
    display: flex; /* キャッチコピーとタイトルを縦に並べるためにFlexboxを使用 */
    flex-direction: column;
    justify-content: center;/* 垂直方向の中央揃え */
    align-items: center; /* 左寄せ (必要に応じて center や flex-end に変更) */
    height: 60px; /* ヘッダーの高さに合わせて調整 */
    padding: 10px 0; /* 上下のパディングで微調整 */
    /* background-color: #f0f8ff; */ /* 淡い背景色 */
    /* border-left: 5px solid #007bff; */ /* 左にアクセントライン */
    padding-left: 15px; /* ボーダー分のスペース */
    box-sizing: border-box; /* パディングやボーダーを幅に含める */
}

.page-header__logo a {
    text-decoration: none; /* リンクの下線を削除 */
    color: inherit; /* 親要素の色を継承 */
    display: flex; /* aタグ内でもFlexboxを適用 */
    flex-direction: column;
}

.logo-catchcopy {
    font-size: 0.7em; /* キャッチコピーは小さめに */
    color: #666; /* やや控えめな色 */
    margin-bottom: 2px; /* タイトルとの間隔 */
    font-family: 'M PLUS 1p', sans-serif; /* 既存フォントの利用 */
}

.logo-title {
    font-size: 1.8em; /* タイトルは大きめに */
    font-weight: bold;
    color: #333; /* 目立つ色 */
    font-family: 'M PLUS Rounded 1c', sans-serif; /* 既存フォントの利用 */
    line-height: 1; /* 行の高さを調整 */
}

/* レスポンシブ対応 (必要であれば) */
@media (max-width: 768px) {
    .logo-title {
        font-size: 1.5em; /* スマホでは少し小さく */
    }
}

.page-header__logo {
    /* 背景色やボーダーなど、より装飾的に */
    /* background-color: #f0f8ff; */ /* 淡い背景色 */
    /* border-left: 5px solid #007bff; */ /* 左にアクセントライン */
    padding-left: 15px; /* ボーダー分のスペース */
    box-sizing: border-box; /* パディングやボーダーを幅に含める */
}

.logo-catchcopy {
    color: #007bff; /* ブランドカラーを意識した色に */
    letter-spacing: 0.05em; /* 文字間隔を少し開ける */
    text-transform: uppercase; /* 大文字にする場合 (英字の場合) */
}

.logo-title {
    color: #0056b3; /* キャッチコピーと合わせてブランドカラーの濃淡をつける */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* 影をつけて立体感を出す */
    position: relative;
    padding-bottom: 5px; /* 下線のために少しスペースを空ける */
}

/* タイトルに下線を引く例 (擬似要素を使用) */
/*
.logo-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #007bff;
    transform: scaleX(0.8);
    transform-origin: left;
}
*/

.page-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-header__hamburger {
    display: block;
  }
}

.primary-nav {
  height: 100%;
}
.primary-nav ul {
  display: flex;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .primary-nav ul {
    position: fixed;
    flex-direction: column;
    width: 100vh;
    top: 0;
    left: 100vh;
    height: 100vh;
    padding-top: 80px;
    background-color: #333;
    transition: 0.5s;
  }
  .primary-nav ul.active {
    left: 25%;
  }
}
.primary-nav li {
  box-sizing: border-box;
  flex: 1;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .primary-nav li {
    width: 100vh;
    border-bottom: 1px solid #666;
  }
  .primary-nav li:nth-of-type(1) {
    border-top: 1px solid #666;
  }
}
.primary-nav a {
  display: block;
  width: 100%;
  padding: 30px 40px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  color: #003366;
}
@media screen and (max-width: 767px) {
  .primary-nav a {
    border-bottom: 1px solid #666;
  }
  .primary-nav a:hover {
    background-color: #444;
  }
}

.g-nav {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .g-nav {
    border-top: none;
  }
}
.g-nav ul {
  display: flex;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .g-nav ul {
    display: block;
    position: fixed;
    flex-direction: column;
    width: 100vh;
    top: 0;
    left: 100vh;
    height: 100vh;
    padding-top: 80px;
    background-color: #fff;
    transition: 0.5s;
  }
  .g-nav ul.active {
    left: 25%;
  }
}
.g-nav li {
  box-sizing: border-box;
  flex: 1;
  border-right: 1px solid #ddd;
  list-style: none;
}
.g-nav li:first-child {
  border-left: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .g-nav li {
    border-right: none;
    margin-top: 0;
    padding: 0;
    width: 100vh;
    border-bottom: 1px solid #ccc;
  }
  .g-nav li:nth-of-type(1) {
    border-top: 1px solid #ccc;
  }
  .g-nav li:first-child {
    border-left: none;
  }
}
.g-nav a {
  display: block;
  width: 100%;
  padding: 1em 0.5em;
  color: #003366;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
}
.g-nav a:hover {
  background-color: #f0f4ff;
}
@media screen and (max-width: 767px) {
  .g-nav a:hover {
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .g-nav a {
    padding: 1em;
    text-align: left;
  }
}

.page-footer {
  position: sticky;
  top: 100vh;
  padding: 20px 0;
  background: #003366;
  color: #fff;
  text-align: center;
}

.page-title {
  margin: 40px 0 20px;
  padding: 10px;
  background-color: #003366;
  color: #fff;
  font-size: 1.75rem;
  font-family: "M PLUS 1p";
}

.block--type1 .img img {
  width: 100%;
}

.block--type2 {
  height: 100%;
  padding: 15px;
  background-color: #f8f8f0;
}

.block--type3 {
  height: 100%;
  padding: 15px;
  background-color: rgba(248, 248, 240, 0.6);
}

.block--type4 {
  height: 100%;
  border: 1px solid #cba;
  padding: 15px;
  background-color: rgba(248, 248, 240, 0.6);
}

.block--type5 {
  height: 100%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.8);
}

.badge-cust-recommend {
  padding-right: 1rem;
  padding-left: 1rem;
  color: #fff;
  background: #e87050;
  border-radius: 1rem;
  font-size: 0.75em;
  font-weight: normal;
  font-family: "M PLUS 1p";
  font-weight: 400;
}

.nav-cust-tabs {
  align-items: flex-end;
}
.nav-cust-tabs .nav-item a {
  border: 1px solid #ccc;
  padding: 14px 2rem;
  border-radius: 5px 5px 0 0;
  background: #fff;
  font-weight: bold;
}
.nav-cust-tabs .nav-item a.active {
  border: 1px solid #ccc;
  border-bottom-color: #fff;
  z-index: 2;
  padding: 24px 2rem 14px;
}
.nav-cust-tabs .nav-item a:first-child {
  margin-right: 5px;
}

#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  opacity: 1;
  transform: translateY(100px);
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 26, 51, 0.9);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
#page-top a:hover {
  background: rgba(0, 34, 68, 0.9);
}

#page-top.page-top-up {
  animation: page-top-up 0.5s forwards;
}

@keyframes page-top-up {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page-top.page-top-down {
  animation: page-top-down 0.5s forwards;
}

@keyframes page-top-down {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.btn-cust {
  text-decoration: none;
}

.btn-cust-primary {
  padding: 1rem 2rem;
  background: #e02020;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 1.125rem;
  font-family: "M PLUS 1p";
  font-weight: 400;
  transition: 0.5s;
}
.btn-cust-primary:hover {
  color: #fff;
  background: #f34;
}

.hamburger-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger-btn {
    position: fixed;
    display: block;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #002244;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: 0.5s;
  }
  .hamburger-btn__icon {
    font-size: 0.6rem;
    line-height: 0;
    padding-top: 20px;
    transition: 0.5s;
  }
  .hamburger-btn__icon:after {
    font-size: 2rem;
    font-family: bootstrap-icons;
    content: '\f479';
    font-weight: bold;
    color: #fff;
  }
  .hamburger-btn__text {
    font-size: 0.8rem;
    line-height: 0;
    transform: translateY(5px);
  }
  .hamburger-btn__text:after {
    content: 'Menu';
    color: #fff;
  }
  .hamburger-btn:hover {
    color: #fff;
    background: rgba(0, 34, 68, 0.9);
  }
  .hamburger-btn__body--list {
    display: none;
  }
  .hamburger-btn.active .hamburger-btn__icon {
    transform: rotate(-360deg);
  }
  .hamburger-btn.active .hamburger-btn__icon:after {
    content: '\f62A';
  }
  .hamburger-btn.active .hamburger-btn__text {
    font-size: 0.8rem;
    line-height: 0;
    transform: translateY(5px);
  }
  .hamburger-btn.active .hamburger-btn__text:after {
    content: 'Close';
  }
}

.stepbar {
  list-style-type: none;
  display: flex;
  padding: 0;
  margin: 20px 0 0;
  overflow: hidden;
  background-color: #f0f0f0;
}

.stepbar li {
  display: table-cell;
  position: relative;
  background: #504944;
  padding: 1em 0.5em 1em 2em;
  color: #fff;
}

.stepbar li:first-child {
  padding-left: 1em;
}

.stepbar li:last-child {
  padding-right: 1em;
}

.stepbar li:last-child:before {
  display: none;
}

.stepbar li:before,
.stepbar li:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}

.stepbar li:before {
  top: -15px;
  right: -1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}

.stepbar li:after {
  top: -15px;
  right: -.8em;
  border-style: solid;
  border-color: transparent transparent transparent #504944;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}

.stepbar li.active {
  background: #9bbb30;
  font-weight: bold;
}

.stepbar li.active:after {
  border-color: transparent transparent transparent #9bbb30;
}

.bg-graph-paper {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}

.bg-graph-paper2 {
  background-color: #fffffc;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0ece8 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0ece8 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}

.bg-plain {
  background-color: #f8f8f0;
}

.anchor::before {
  content: " ";
  margin-top: -40px;
  height: 40px;
  display: block;
  visibility: hidden;
}

.heading1 {
  margin-bottom: 10px;
  border-bottom: 1px dashed #ccc;
  padding: 10px 0;
  color: #002244;
  font-size: 1.5rem;
  font-family: "M PLUS 1p";
}

.heading2 {
  margin: 20px 0;
  border-left: 2px solid #002244;
  padding: 5px 0 5px 10px;
  font-size: 1.5rem;
  color: #002244;
  font-family: "M PLUS 1p";
  font-weight: 400;
}

.heading3 {
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  font-size: 1.2rem;
  font-family: "M PLUS 1p";
}

.heading4 {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 1rem;
  font-family: "M PLUS 1p";
  font-weight: bold;
}

.lead-sentence {
  font-size: 1.25rem;
}

.list1__title {
  font-size: 1.2rem;
  color: #630;
  font-family: "Noto Sans JP" sans-serif;
  font-weight: bold;
}
.list1 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list1__description {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list1__description li {
  width: 100%;
  margin-bottom: 5px;
  padding: 10px;
  background: #f8f4e0;
  border-radius: 5px;
  color: #630;
}
.list1__description li:empty {
  background: none;
}
.list1__notice {
  color: #630;
}

.list1.list1--bg {
  padding: 15px;
  background: #fffcf0;
  border-radius: 5px;
}

.list1.list1--bordered {
  border: 1px solid #eed;
  padding: 14px;
  border-radius: 5px;
}

.list1.list1--2cols .list1__description li {
  width: calc((100% - 5px) / 2);
}

.list1.list1--3cols .list1__description li {
  width: calc((100% - 10px) / 3);
}

.list1.list1--4cols .list1__description li {
  width: calc((100% - 15px) / 4);
}

.list1.list1--6cols .list1__description li {
  width: calc((100% - 15px) / 6);
}

.list2__title {
  font-size: 1.2rem;
  color: #ec6c08;
  font-family: "M PLUS Rounded 1c" sans-serif;
  font-weight: bold;
}
.list2 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list2__description {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list2__description li {
  width: 100%;
  margin-bottom: 5px;
}
.list2__description li:empty {
  background: none;
}

.list2.list2--bg {
  padding: 15px;
  background: #fff0f4;
  border-radius: 5px;
}

.list2.list2--bordered {
  border: 2px solid #ec6c08;
  padding: 13px;
  border-radius: 5px;
}

.block1 {
  display: flex;
  column-gap: 30px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .block1 {
    display: block;
    column-gap: 0;
  }
}
.block1__figure {
  width: 33.3%;
}
@media screen and (max-width: 767px) {
  .block1__figure {
    width: auto;
    margin-bottom: 10px;
  }
}
.block1__figure img {
  width: 100%;
}
.block1__desc {
  width: 66.7%;
}
@media screen and (max-width: 767px) {
  .block1__desc {
    width: auto;
    margin-bottom: 10px;
  }
}

.nav-back {
  text-align: center;
}

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