@charset "UTF-8";
/*Variable
－－－－－－－*/
/*
ブレークポイント

基本  1920px
ipad 1050px
sp   767px;

コンテンツ幅1000px

*/
/* --------------------------
Header
--------------------------- */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 777;
}

.header-bar-inner {
  height: 100%;
  max-width: 1920px; /* 広すぎる画面での間延びを防ぐ */
  margin: 0 auto;    /* 中央寄せ */
}

.header .header-bar {
  height: 85px;
  padding: 0 15px;
}
@media screen and (max-width: 1500px) {
  .header .header-bar {
    padding: 0 20px 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .header .header-bar {
    height: 70px;
  }
}

.header-block01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 85px;
}
@media screen and (max-width: 767px) {
  .header-block01 {
    height: 70px;
  }
}

.header-block01__left {
  display: flex;
  align-items: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  gap: 0 20px;
  flex-shrink: 0; /* 縮小させない */
}
@media screen and (max-width: 1500px) {
  .header-block01__left {
    gap: 0;
  }
}
.header-block01__left .logo {
  width: 100%;
  max-width: 314px;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .header-block01__left .logo {
    width: 100%;
    max-width: 240px;
    margin-right: 10px;
    line-height: 1;
    height: auto;
  }
}
.header-block01__left .logo img {
  width: 100%;
}
@media screen and (max-width: 1500px) {
  .header-block01__left .logo img {
    max-height: 43px;
  }
}

.header-block01__memo {
  font-size: 14px;
  line-height: 1;
  color: #006ab6;
  padding-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .header-block01__memo {
    display: none;
  }
}
.header-block01__memo br {
  display: none;
}
@media screen and (max-width: 1500px) {
  .header-block01__memo br {
    display: block;
  }
}

.header-block01__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  flex-grow: 1;    /* 空きスペースを埋める */
  flex-shrink: 1;  /* 画面幅に合わせて縮小を許可 */
  min-width: 0;    /* はみ出し防止 */
  gap: 0 20px;
  padding-top: 0px;
  flex-wrap: nowrap; /* 折り返さない */
}
@media screen and (max-width: 1200px) {
  .header-block01__right {
    display: none;
  }
}

.header-block01 .logo {
  font-size: 26px;
}

.header-block01 .logo-image {
  position: relative !important;
  top: 0;
  height: auto;
}

.header-sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 15px; /* 少し間隔を詰める */
  flex-shrink: 0; /* アイコンは縮めない */
}

/* Navi Menu PC */
.c-nav {
  position: relative;
  z-index: 2;
  flex-shrink: 1; /* 縮小許可 */
  min-width: 0;
  width: 100%;
}

.c-nav .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* 右寄せ */
  gap: 0px 5px; /* メニュー間の隙間を少し詰める */
  width: 100%;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1200px) {
  .c-nav .menu {
    display: none;
  }
}
.c-nav .menu > li {
  position: relative;
  padding: 0;
  flex-shrink: 1;
}

.c-nav .menu > li > a {
  display: block;
  position: relative;
  /* 画面幅に応じて余白と文字サイズを自動で縮小させる */
  padding: 20px clamp(8px, 1vw, 15px);
  font-size: clamp(13px, 1.1vw, 16px);
  color: #3b5aa4;
  text-align: center;
  text-decoration: none;
  color: #333;
  white-space: nowrap; /* 文字の折り返しを防ぐ */
}

.c-nav .menu > li > a:hover {
  opacity: 1;
  color: #333;
}

.c-nav .menu > li > .sub-menu {
  display: none;
  list-style-type: none;
  padding: 0px 0 0px 0;
  position: absolute;
  top: 54px;
  left: 0px;
  width: 240px;
  margin: auto;
  background-color: #fff;
  z-index: 777;
}

.c-nav .menu > li > .sub-menu.is-open {
  display: block;
}

.c-nav .menu > li > .sub-menu > li:last-child {
  border-bottom: none;
}

.c-nav .menu > li > .sub-menu > li > a {
  display: block;
  position: relative;
  padding: 15px 10px 15px 10px;
  text-decoration: none;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.c-nav .menu > li > .sub-menu > li:last-of-type {
  border-bottom: none;
}

.c-nav .menu > li > .sub-menu > li > a:hover {
  opacity: 1;
  color: #333;
}

/* Navigation Menu SP */
/* sp ボタン  */
.c-nav-button__wrap {
  display: none;
}

.c-nav-sp {
  display: none;
}

@media screen and (max-width: 1200px) {
  .c-nav-button__wrap {
    display: block;
    position: fixed;
    top: 0;
    right: 10px;
    width: 70px;
    height: 70px;
    z-index: 776;
  }
  .c-nav-button {
    position: absolute;
    top: 21px;
    left: 0;
    right: 1px;
    margin: auto;
    width: 36px;
    height: 19px;
    border: none;
    background: none;
  }
  .c-nav-button span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #111;
    transition: 0.3s ease-in;
  }
  .c-nav-button span:nth-child(2) {
    top: 50%;
    width: 100%;
  }
  .c-nav-button span:nth-child(3) {
    top: 100%;
  }
  .c-nav-button.is-close span {
    top: 50%;
    transform: rotate(45deg);
  }
  .c-nav-button.is-close span:nth-child(2) {
    width: 0;
  }
  .c-nav-button.is-close span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }
  .c-nav-button__text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    margin: auto;
    text-align: center;
    font-size: 14px;
  }
  /* sp ナビ */
  .c-nav-sp {
    display: block;
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    height: calc(100% - 70px);
    z-index: 775;
    padding: 20px 0px 20px 0;
    background-color: #fff;
    transform: translateX(110%);
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
    text-align: center;
  }
  .c-nav-sp.is-open {
    transform: translateX(0%);
  }
  .c-nav-sp .menu {
    display: block;
    margin: auto;
    padding: 0;
  }
  .c-nav-sp .menu > li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #ddd;
  }
  .c-nav-sp .menu > li > a {
    display: block;
    padding: 20px 0px 20px 0px;
    color: #111;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
  }
  .c-nav-sp .menu .menu-item-has-children {
    position: relative;
  }
  .c-nav-sp .menu .menu-item-has-children .sub-menu {
    display: none;
    list-style: none;
  }
  .c-nav-sp .menu .menu-item-has-children .sub-menu li {
    border-top: 1px solid #ddd;
  }
  .c-nav-sp .menu .menu-item-has-children .sub-menu li a {
    display: block;
    padding: 15px 0px 15px 0px;
    color: #111;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background: #eee;
  }
  .c-nav-sp .menu .sub-menu-sp-btn {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 666;
  }
  .c-nav-sp .menu .sub-menu-sp-btn::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 21px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #111;
    border-right: 2px solid #111;
    transform: rotate(135deg);
    transition: 0.3s ease;
  }
  .c-nav-sp .menu .sub-menu-sp-btn.is-open::after {
    transform: rotate(315deg);
  }
}
@media screen and (max-width: 767px) {
  .c-nav-button__wrap {
    width: 70px;
    height: 70px;
    right: 0px;
  }
  .c-nav-button {
    top: 16px;
    left: 0;
    right: 0;
  }
  .c-nav-button__text {
    bottom: 10px;
  }
}
/* --------------------------
fix banner
--------------------------- */
.fix-banner {
  position: fixed;
  bottom: 35px;
  right: 10px;
  z-index: 999;
}
@media screen and (max-width: 1500px) {
  .fix-banner {
    bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .fix-banner {
    display: none;
  }
}
.fix-banner__item {
  width: 110px;
  margin-bottom: 10px;
}

/* --------------------------
Footer
--------------------------- */
.footer {
  margin-top: 80px;
  color: #fff;
}

.footer-bg01 {
  background: url("../img//footer-bg01.webp") no-repeat 50% 0%;
  background-size: cover;
  padding: 60px 20px 60px;
}
@media screen and (max-width: 767px) {
  .footer-bg01 {
    padding-top: 20px;
    background-size: contain;
    background-position: 50% 100px;
    padding: 30px 20px 0px;
  }
}

.footer-navi {
  margin-bottom: 650px;
}
@media screen and (max-width: 767px) {
  .footer-navi {
    margin-bottom: 180px;
  }
}
.footer-navi .menu {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px 50px;
}
@media screen and (max-width: 1050px) {
  .footer-navi .menu {
    gap: 20px;
  }
}
.footer-navi .menu li a {
  color: #000;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .footer-navi .menu li a {
    font-size: 14px;
  }
}

.footer-banners01 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 46px 115px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1050px) {
  .footer-banners01 {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer-banners01 {
    gap: 10px;
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px 40px;
    background-color: #3e6eb4;
  }
}
@media screen and (max-width: 767px) {
  .footer-banners01__item {
    width: 260px;
    margin: auto;
  }
}

.footer-link01 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 45px;
  margin: auto;
  padding: 40px 20px 40px 20px;
  background-color: #0360ad;
}
@media screen and (max-width: 767px) {
  .footer-link01__item {
    width: 260px;
    margin: auto;
  }
}

.footer-copyright {
  padding: 15px;
  font-size: 14px;
  text-align: center;
  background-color: #024073;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    padding-bottom: 100px;
  }
}