@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　電子書籍出版代行会社比較サイト　テンプレート設定(template-style.css)ver.1 2025.4.23
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*イエロー*/
/*ブルー*/
/*レッド*/
/*薄いブルー*/
/*■■■■■■ HEADER ■■■■■■■*/
header {
  margin: 0;
  padding: 16px 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
}

.header-inblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /*上下のセンター*/
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-logo-box {
  margin: auto auto auto 0;
  display: block;
  width: auto;
}
.header-logo-box a {
  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; /*左右のセンター*/
  gap: 15px;
  z-index: 399;
}
.header-logo-box a img.logo-mark {
  margin: 0;
  width: 40px;
  height: auto;
}
.header-logo-box a span {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
}
.header-logo-box a span small {
  dfont-size: 1.2rem;
  font-weight: 500;
  color: #1A4D8F;
  display: block;
}

/*ナビゲーション レイアウト*/
.nav.nav_list {
  overflow-y: scroll;
}

.nav_list {
  margin: 32px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /*上下のセンター*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /**/
}
.nav_list li {
  margin: x 0;
  position: relative;
  border-bottom: 1px solid #CCC;
}
.nav_list li a {
  font-size: 1.7rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 16px;
}
.nav_list li a:link, .nav_list li a:visited {
  color: #222;
}
.nav_list li a:hover, .nav_list li a:active {
  color: #F94C43;
}

.nav_list li a:before {
  margin-right: 4px;
  content: "● ";
  color: #1A4D8F;
}

.nav_list li.has-child > a {
  display: block;
  position: relative;
}

.nav_list li.has-child > a:after {
  content: "";
  position: absolute;
  top: 25px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-color: #DDD;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 29;
}

/* デフォルトの矢印スタイル */
.nav_list li.has-child > a:before {
  margin-top: 5px;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-width: 1px 1px 0 0;
  border-color: #000;
  border-style: solid;
  position: absolute;
  right: 20px;
  top: 18px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* 初期状態で45度 */
  z-index: 30;
  -webkit-transition: margin-top 0.2s, right 0.2s, -webkit-transform 0.2s;
  transition: margin-top 0.2s, right 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, margin-top 0.2s, right 0.2s;
  transition: transform 0.2s, margin-top 0.2s, right 0.2s, -webkit-transform 0.2s; /* 回転のみをアニメーション対象に */
}

/* activeクラスが付与されたときのスタイル */
.nav_list li.has-child.active > a:before {
  margin-top: 3px; /* 矢印の位置を微調整 */
  right: 19px; /* 矢印の位置を微調整 */
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg); /* active時に135度に回転 */
}

/*第二階層（XS）*/
.nav_list li.has-child {
  display: block;
}

.nav_list li.has-child ul {
  margin: 0;
  padding: 5px 0;
  position: relative;
  background: #FFF;
  border-radius: 3px;
  top: 0;
  left: 0;
  z-index: 31;
}
.nav_list li.has-child ul li {
  padding: 0;
}
.nav_list li.has-child ul li a {
  font-size: 1.6rem;
  cursor: pointer;
  font-weight: 700;
}

/*ハンバーガーメニュー*/
.nav {
  position: fixed;
  right: -100vw; /* 右から出てくる */
  top: 10px;
  width: 320px; /* スマホに収まるサイズ */
  height: auto;
  padding: 50px 0 50px;
  background-color: #fff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 400;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  -webkit-filter: drop-shadow(#999 0 0 0.3rem);
          filter: drop-shadow(#999 0 0 0.3rem);
}

.hamburger {
  padding-top: 0;
  margin-right: 0;
  position: fixed;
  right: 15px;
  top: 15px;
  width: 48px; /* クリックしやすい幅 */
  height: 48px; /* クリックしやすい高さ */
  border-radius: 24px;
  cursor: pointer;
  z-index: 401;
  background-color: #1A4D8F;
  font-size: 0.9rem;
  text-align: center;
}

.nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: block;
}
.nav_item {
  text-align: center;
  padding: 0 14px;
}

.nav_item a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
}

.nav_item a:hover {
  background-color: #eee;
}

.hamburger_border {
  position: absolute;
  right: 14px;
  width: 20px;
  height: 2px;
  background-color: #FFF;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.hamburger_border_top {
  top: 17px;
}

.hamburger_border_center {
  top: 23px;
}

.hamburger_border_bottom {
  top: 29px;
}

/* 表示された時用のCSS */
.nav-open .nav {
  top: 10px;
  right: 10px;
  border-radius: 10px;
}

.nav-open .black_bg {
  opacity: 0.8;
  visibility: visible;
}

.nav-open .hamburger {
  background-color: #F94C43;
}

.nav-open .hamburger_border_top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 22px;
}

.nav-open .hamburger_border_center {
  width: 0;
  left: 50%;
}

.nav-open .hamburger_border_bottom {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 22px;
}

.nav-open .hamburger_border {
  position: absolute;
  background-color: #FFF;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-open .hamburger_border_center {
  display: none;
}

/*■■■■■■ FOOTER ■■■■■■■*/
footer {
  margin: 0;
  padding: 40px 0;
  background-color: #1A4D8F;
  color: #FFF;
}

.footer-flex-box {
  padding: 0;
  width: 100%;
  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;
}

/*ロゴ*/
.logo-block {
  margin: auto;
  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;
}
.logo-block img {
  width: 80px;
  height: auto;
}

.corpo-name {
  margin: 20px auto 10px;
  display: block;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}
.corpo-name span {
  color: #FAD643;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
}

.corop-adress {
  font-size: 1.6rem;
}
.corop-adress br {
  display: none;
}

.btn-contact > a {
  margin: 25px auto 20px;
  padding: 0 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
  background-color: #F94C43;
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-heiht: 1;
  height: 40px;
  width: auto;
  font-weight: 700;
  color: #FFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 2px;
}

.btn-contact > a:link,
.btn-contact > a:visited {
  color: #EAF3FB;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn-contact > a:hover,
.btn-contact > a:active {
  color: #FFF;
  background-color: #F94C43;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FAD643;
}

.footer-menu {
  margin: 20px 0;
}
.footer-menu li {
  margin: 15px 0;
  padding: 0 0 0 10px;
  border-left: 4px solid #FAD643;
  font-size: 1.4rem;
}
.footer-menu li a {
  color: #FFF;
}
.footer-menu li a strong {
  font-size: 2rem;
  display: block;
}
.footer-menu li a:link, .footer-menu li a:visited {
  color: #FFF;
}
.footer-menu li a:hover strong, .footer-menu li a:active strong {
  color: #FAD643;
}

.sns-icon-box {
  margin: 0 auto 20px;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sns-icon-box li {
  margin: 0 4px;
}
.sns-icon-box li a {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 21px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sns-icon-box li a img {
  width: 24px;
  height: auto;
}

.sns-icon-box a:hover, .sns-icon-box a:active {
  background-color: #F94C43;
}

.copyright-block {
  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;
  width: 100%;
  height: 80px;
}

.text-copyright {
  margin: auto;
  width: auto;
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
}

/*■■■■■■■ Map 埋め込み ■■■■■■*/
.gglmap-box {
  display: block;
  width: 100%;
  height: 0;
  padding: 75% 0 0 0;
  margin: 0;
  position: relative;
}
.gglmap-box iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

/*■■■■■■■■■■■■■*/
/*■■■■■■■ トップに戻るボタン ■■■■■■*/
.pagetop {
  cursor: pointer;
  position: fixed;
  right: 16px;
  bottom: 16px;
  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;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #1A4D8F;
  /*   デフォルトは非表示 */
  opacity: 0;
}

.pagetop:hover {
  background: #F94C43;
}

.pagetop:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-width: 2px 0 0 2px;
  border-color: #FFF;
  border-style: solid;
  position: absolute;
  bottom: 13px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  /*■■■■■■ HEADER(XS) ■■■■■■■*/
  .header-logo-box a img.logo-mark {
    margin: 0;
    width: 40px;
    height: auto;
  }
  .header-logo-box a span {
    font-size: 1.5rem;
  }
  .header-logo-box a span small {
    font-size: 1.1rem;
  }
  .header-lang-box {
    margin: 20px auto 0;
  }
  /*ハンバーガーメニュー*/
  .nav {
    position: fixed;
    right: -100vw; /* 右から出てくる */
    top: 10px;
    width: 300px; /* スマホに収まるサイズ */
    height: auto;
    padding: 50px 0 50px;
    background-color: #fff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    z-index: 400;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
    -webkit-filter: drop-shadow(#999 0 0 0.3rem);
            filter: drop-shadow(#999 0 0 0.3rem);
  }
  /*■■■■■■ FOOTER ■■■■■■■*/
  .footer-flex-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  /*ロゴ*/
  .logo-block img {
    width: 70px;
    height: auto;
  }
  .corpo-name {
    font-size: 2.2rem;
  }
  .corop-adress {
    font-size: 1.4rem;
  }
  .corop-adress br {
    display: none;
  }
  .footer-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #FAD643;
  }
  .footer-menu li {
    font-size: 1.3rem;
  }
  .footer-menu li a strong {
    font-size: 1.8rem;
  }
  .copyright-block {
    height: 100px;
  }
  .text-copyright {
    margin: auto;
    padding: 0 70px 0 0;
    width: auto;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
  }
  /*■■■■■■■ トップに戻るボタン ■■■■■■*/
  .pagetop {
    bottom: 16px;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*■■■■■■ HEADER(SM) ■■■■■■■*/
  .header-logo-box a img.logo-mark {
    margin: 0;
    width: 40px;
    height: auto;
  }
  .header-logo-box a span {
    font-size: 1.5rem;
  }
  .header-logo-box a span small {
    font-size: 1.1rem;
  }
  .header-lang-box {
    margin: 10px auto 0;
  }
  /*ハンバーガーメニュー*/
  .nav {
    position: fixed;
    right: -100vw; /* 右から出てくる */
    top: 10px;
    width: 300px; /* スマホに収まるサイズ */
    height: auto;
    padding: 50px 0 50px;
    background-color: #fff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    z-index: 400;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
    -webkit-filter: drop-shadow(#999 0 0 0.3rem);
            filter: drop-shadow(#999 0 0 0.3rem);
  }
  /*■■■■■■ FOOTER ■■■■■■■*/
  .footer-flex-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .corop-adress {
    font-size: 1.2rem;
  }
  .text-copyright {
    margin: auto;
    padding: 0 80px 0 0;
    width: auto;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*ヘッダー（MD）*/
} /*//MD*/
/*------------(LG)------------*/
/*//LG*/
/*------------(XL)------------*/
/*//XL*/
/*----------特殊　320px~1024 ハンバーガーメニュー共有----------*/
/*------------(XS)------------*/
/*//(XXS)*/