@charset "UTF-8";

/*=============================================
 * body
 *=============================================*/
body {
   background-color: #E4F4F6;
   color: #333;
   font-family: 'Noto Sans JP', sans-serif;
   font-weight: 400;
   font-size: 15px;
   line-height: 30px;
   letter-spacing: 0;
   min-width: inherit;
   min-height: inherit;
   max-height: 100%;
   position: relative;
}

@media screen and (max-width: 767px) {
   body {
      font-size: 13px;
      line-height: 26px;
   }
}

/*=============================================
 * fonts
 *=============================================*/
.fnt-mincho {
   font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.fnt-meiryo {
   font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fnt-gothic {
   font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.fnt-josefin-sans {
   font-family: 'Josefin Sans', sans-serif;
}

/*=============================================
 * <main>
 *=============================================*/
main {
   clear: both;
   width: 100%;
   box-sizing: border-box;
   position: relative;
}

/* -- -- */
code {
   border: 0 !important;
}

a {
   transition: all 0.3s;
}

a:hover {
   opacity: 0.6;
   text-decoration: none;
}

a[href^="tel:"] {
   pointer-events: none;
   cursor: text;
}

@media screen and (max-width: 767px) {
   a[href^="tel:"] {
      pointer-events: auto;
      cursor: pointer;
   }
}

.pc {
   display: block;
}

.ipd {
   display: none;
}

.sp {
   display: none;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
   .ipd {
      display: block;
   }
}

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

   .sp {
      display: block;
   }
}

/*=============================================
 * <header>
 *=============================================*/
/* -- -- */
header {
   display: flex;
   flex-wrap: no-wrap;
   align-items: center;
   width: 100%;
   box-sizing: border-box;
   background-color: #fff;
   color: #fff;
   padding-left: 50px;
   position: sticky;
   top: 0;
   left: 0;
   z-index: 100;
}

header .logo {
   flex: auto;
}

header .logo a {
   display: block;
   width: 290px;
}

.header__bnr {
   width: 150px;
}

.header__bnr a {
   display: block;
   background-color: #0B579A;
   color: #fff;
   font-weight: 600;
   text-align: center;
   padding: 28px 0 22px;
}

@media screen and (max-width: 767px) {
   header {
      gap: 20px;
      padding-left: 20px;
   }
   header .logo {
      width: calc(100% - 120px);
   }
   header .logo a {
      width: 100%;
      max-width: 225px;
   }

   .header__bnr {
      width: 100px;
   }

   .header__bnr a {
      padding: 22px 0 18px;
   }
}

/*=============================================
 * <section>
 *=============================================*/
/* --- --- */
section {
   width: auto;
   box-sizing: border-box;
   margin: 0;
}

/* --- --- */
/*=============================================
 * <footer>
 *=============================================*/
/* --- --- */
footer {
   background-color: #FFFFFF;
   font-size: 14px;
   line-height: 20px;
   text-align: center;
   padding: 60px 0 15px;
}

footer .logo {
   width: 230px;
   margin: 0 auto;
}

footer .txt p {
   padding-top: 20px;
}

footer address {
   font-weight: 500;
   font-size: 15px;
   padding-top: 110px;
}

#pagetop {
   width: 80px;
   position: fixed;
   bottom: 20px;
   right: 20px;
   opacity: 0;
   visibility: hidden;
}

#pagetop.visible {
   opacity: 1;
   visibility: visible;
}

@media screen and (max-width: 767px) {
   footer {
      font-size: 13px;
   }

   footer address {
      font-size: 14px;
   }

   #pagetop {
      width: 40px;
      right: 10px;
      bottom: 10px;
   }
}