@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　テンプレート設定(template-style.css)ver.1 2024.10.12
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*紺*/
/*ゴールド*/
/*グレーブルー*/
/*レッド*/
/*薄いブルー*/
/*■■■■■■ HEADER ■■■■■■■*/
header {
  width: 100vw;
  height: 100px;
  background-color: #FFF;
}

.head-flex-box {
  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;
  height: 100px;
}

.header-logo-box {
  padding: 0 20px;
  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; /*左右のセンター*/
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.header-logo-box img {
  width: 540px;
}

/*■■■■■■ CONTENTS MAIN ■■■■■■■*/
/*■■■■■■ FOOTER ■■■■■■■*/
footer {
  margin: 0;
  padding: 40px 20px 60px;
  background-color: #FFF;
  text-align: center;
}

.footer-logo-block {
  margin: 0 0 40px;
}
.footer-logo-block img {
  width: 420px;
}

.text-copyright {
  margin: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #222;
  font-weight: 400;
}
.text-copyright a:link, .text-copyright a:visited {
  color: #222;
}
.text-copyright a:hover, .text-copyright a:active {
  color: #5A6A7B;
}

/*■■■■■■■■■■■■■*/
/*■■■■■■■ トップに戻るボタン ■■■■■■*/
.pagetop {
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 25px;
  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: 30px;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #162A40;
  /*   デフォルトは非表示 */
  opacity: 0;
}

.pagetop:hover {
  background: #C9A646;
}

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

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 320px) and (max-width: 566px) {
  /*header*/
  header {
    width: 100vw;
    height: 80px;
    background-color: #FFF;
  }
  .head-flex-box {
    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;
    height: 80px;
  }
  .header-logo-box {
    margin: auto;
    padding: 0;
    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; /*左右のセンター*/
  }
  .header-logo-box img {
    margin: auto;
    width: 320px;
  }
  /*■■■■■■ FOOTER (XS) ■■■■■■■*/
  footer {
    margin: 0;
    padding: 40px 20px 80px;
    background-color: #FFF;
    text-align: center;
  }
  .footer-logo-block {
    margin: 0 0 20px;
  }
  .text-copyright {
    font-size: 2.6vw;
  }
  /*■■■■■■■ トップに戻るボタン ■■■■■■*/
  .pagetop {
    bottom: 10px;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*ヘッダー（SM）*/
  header {
    width: 100vw;
    height: 80px;
    background-color: #FFF;
  }
  .head-flex-box {
    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;
    height: 80px;
  }
  /*■■■■■■■ トップに戻るボタン ■■■■■■*/
  .pagetop {
    bottom: 20px;
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*ヘッダー（MD）*/
  header {
    width: 100vw;
    height: 80px;
    background-color: #FFF;
  }
  .head-flex-box {
    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;
    height: 80px;
  }
} /*//MD*/
/*------------(LG)------------*/
/*//LG*/
/*------------(XL)------------*/
/*//XL*/