<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* カラー指定　*/
/* フォント設定 */
@font-face {
  font-family: "Noto Sans Japanese Regular";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Noto Sans CJK JP Regular"), url("../fonts/NotoSansCJKjp-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans Japanese Bold";
  font-style: bold;
  font-weight: 700;
  font-display: swap;
  src: local("Noto Sans CJK JP Bold"), url("../fonts/NotoSansCJKjp-Bold.ttf") format("truetype");
}
body {
  font-family: "Noto Sans Japanese Regular", sans-serif;
  font-feature-settings: "palt";
  font-size: 4.5vw;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #707070;
}

p {
  margin-bottom: 3vw;
}

a {
  color: #048ec3;
}

main {
  padding-bottom: 10vw;
}

/* =====================
  よく使うスタイル付与用
===================== */
/* 縦横中央配置 */
.centering {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* スマホ改行解除用*/
@media screen and (max-width: 900px) {
  .u-sp-none {
    display: none;
  }
}
/* ボタン系 */
.btn-nomal {
  font-family: "Noto Sans Japanese Bold", sans-serif;
  font-weight: 700;
  display: inline-block;
  background: #048ec3;
  color: #fff;
  text-align: center;
  padding: 0.5em 1.5em;
}

/* 英語 */
.eng {
  font-family: "Century Gothic", serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* 強調 */
.emphasis {
  font-family: "Noto Sans Japanese Bold", sans-serif;
  font-weight: 700;
}

/* =====================
  ローディング画面
===================== */
#loading {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
}

#loading_logo {
  background: url("../images/common/loading.gif") no-repeat center center;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* =====================
  ヘッダー
===================== */
.header {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  /* メールアイコン */
}
.header h1 a {
  width: 80vw;
  height: calc(60px - 1vw);
  display: block;
  margin: 0.5vw 3vw;
  background: url("../images/common/logo.png") left center no-repeat;
  background-size: contain, cover;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header .mail {
  display: none;
}

/* グロナビタブレット調整*/
@media screen and (min-width: 767px) {
  .header {
    height: 100px;
  }
  .header h1 a {
    height: calc(100px - 1vw);
  }
}
/* =====================
  ハンバーガーメニュー
===================== */
/* メニュー開いた中 */
.header #navi {
  transition: all 0.6s;
  overflow-y: auto;
  padding: 70px 5vw;
  width: 80vw;
  height: 100vh;
  z-index: 99;
  top: 0;
  right: -80vw;
  background-color: #fff;
  position: fixed;
}
.header #navi a {
  font-family: "Noto Sans Japanese Bold", sans-serif;
  font-weight: 700;
  display: block;
  padding-bottom: 5vw;
  margin-bottom: 5vw;
  font-size: 6vw;
  border-bottom: 1px solid #e6e6e6;
}
.header #navi a:nth-last-of-type(3) {
  border-bottom: none;
}
.header #navi .btn-nomal {
  font-size: 4.5vw;
  padding: 0.5em 1em;
}
.header #navi .bnr-wrap {
  display: block;
  margin-top: 10vw;
}
.header #navi .btn-bnr {
  width: 100%;
  margin-bottom: 5vw;
  padding-bottom: 0;
  border: 1px solid #ccc;
  background: #fff;
}
.header #navi .btn-bnr img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}

/* ボタン */
.header #nav_btn {
  width: 60px;
  height: 60px;
  z-index: 100;
  top: 0;
  right: 0;
  cursor: pointer;
  position: absolute;
}

.hamburger_line {
  height: 2px;
  background-color: #707070;
  position: absolute;
  right: 3vw;
}
.hamburger_line:nth-child(1) {
  width: 36px;
  top: 20px;
}
.hamburger_line:nth-child(2) {
  width: 26px;
  top: 30px;
}
.hamburger_line:nth-child(3) {
  width: 16px;
  top: 40px;
}

#nav_bg {
  opacity: 0;
  transition: all 0.6s;
  width: 100vw;
  height: 100vh;
  z-index: 98;
  top: 0;
  left: 0;
  visibility: hidden;
  background-color: #000;
  cursor: pointer;
  position: fixed;
}

/* 表示された時用のCSS */
.nav_open header #navi {
  right: 0;
}

.nav_open #nav_bg {
  opacity: 0.8;
  visibility: visible;
}

.nav_open .hamburger_line:nth-child(1) {
  transform: rotate(45deg);
  top: 30px;
}

.nav_open .hamburger_line:nth-child(2) {
  display: none;
}

.nav_open .hamburger_line:nth-child(3) {
  transform: rotate(-45deg);
  top: 30px;
  width: 36px;
}

/* =====================
  ページの先頭へ戻るボタン
===================== */
#page-top {
  width: 15vw;
  height: 15vw;
  background: rgb(4, 142, 192);
  color: #fff;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 998;
  opacity: 0;
}
#page-top:after {
  content: "";
  width: 5vw;
  height: 5vw;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(135deg);
}

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

@keyframes showAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　ボタン消える　*/
#page-top.hide {
  animation: hideAnime 0.5s forwards;
}

@keyframes hideAnime {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* =====================
  フッター
===================== */
.footer {
  padding: 10vw 5vw;
  border-top: 4px solid #048ec3;
}
.footer-company {
  margin-bottom: 7vw;
}
.footer-logo {
  width: 90vw;
  height: 15vw;
  display: block;
  background: url("../images/common/logo.png") no-repeat;
  background-size: 100% auto, cover;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.footer address {
  line-height: 1.5;
}
.footer small {
  font-size: 4vw;
  display: block;
}

.footer-navi-content {
  display: flex;
  margin-bottom: 7vw;
}
.footer-navi-content a {
  font-family: "Noto Sans Japanese Bold", sans-serif;
  font-weight: 700;
  width: 40%;
  font-size: 5vw;
  display: inline-block;
  color: #048ec3;
}
.footer-navi-form a {
  font-size: 6vw;
  width: 50vw;
  margin-bottom: 3vw;
}
.footer-navi .btn-nomal {
  font-size: 4vw;
}

@media (min-width: 500px) {
  /* スマホ端末以外電話番号リンク非対応 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}/*# sourceMappingURL=common-base.css.map */</pre></body></html>