@charset "utf-8";

/* =============================================================================
style base
========================================================================== */

#wrap_announce {
  width: 100%;
  background-image: url(../../img/index/announce_bg.png);
  background-repeat: repeat-x;
}

.inner_announce {
  max-width: 980px;
  margin: 0 auto 5px;
}

.inner_announce img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .inner_announce img:hover {
    opacity: 1;
  }
}

.btn_announce:hover {
  cursor: pointer;
}

/* close button */
.action-close {
  position: relative;
}
.action-close .btn_announce {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .action-close .btn_announce {
    font-size: 20px;
    top: 5px;
  }
}

/* checkbox non-display */
.add-control .checkbox {
  display: none;
}

/* close button's control */
.add-control .action-close #close:checked ~ #wrap_announce {
  display: none;
}

/*  --- 固定サイドメニュー -- */
/* フローティングバナーのラップ要素 */
#fixed_right_banner {
  /* 右端の上から20pxの位置に固定表示 */
  position: fixed;
  top: 70px;
  right: 0;
  z-index: 100 !important;
  background-color: #fff;
}
#fixed_right_banner img {
  display: block;
  margin: 0 auto 7px;
}
/* 画像の共通設定 */
#fixed_right_banner > * {
  /* 横幅 */
  max-width: 100px;
  background: #d73e41;
  color: #fff;
  padding: 25px 15px;
  line-height: 1.5;
  font-size: 15px;
  text-align: center;
}
/* 2個目以降の画像の上部に余白を作る */
#fixed_right_banner > * ~ * {
  background: #152f50;
}
#fixed_right_banner .fr3 {
  background: #27a348;
}
/* リンク要素 */
#fixed_right_banner > a {
  /* ブロック要素に変更 */
  display: block;
  text-decoration: none;

  /* 透過変更をスムーズにする(任意) */
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
/* マウスオーバー時の表現 */
#fixed_right_banner > a:hover {
  /* 20%透過させる */
  opacity: 0.8;
}

/* コンテンツに被らないようにするメディアクエリ */
@media screen and (max-width: 1155px) {
  /* 768pxまでの幅の場合に適応される */
  #fixed_right_banner {
    position: fixed;
    top: auto;
    bottom: 0;
    z-index: 100 !important;
    display: flex;
    justify-content: center;
    align-items: center !important;
    width: 100%;
  }

  #fixed_right_banner > * {
    /* 横幅 */
    width: 100% !important;
    max-width: 100% !important;
    height: 65px !important;
  }

  #fixed_right_banner img {
    margin: 0 auto 4px;
    height: 21px;
    max-width: 100%;
    width: auto !important;
  }

  #fixed_right_banner a {
    padding: 20px 15px 0;
  }
  body .footer .copy {
    padding-bottom: 130px !important;
    background: #000;
  }
}

/* -----------------------------------------------
header
----------------------------------------------- */
header {
}

#wrap_header {
  border-top: 6px solid #ff7d00;
}

#wrap_header .wrap_header_inner {
}

/* -----------------------------------------------
logo_range
*/
#wrap_header .logo_range {
  width: 950px;
  margin: 0 auto;
}

#wrap_header .logo_range .inner_range {
  padding: 33px 0 37px 0;
}

#wrap_header .logo_range .inner_range:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  /* footer under gap resolution */
  overflow: hidden;
}

#wrap_header .logo_range .lt {
  float: left;
  display: inline-block;
  padding: 0 0 0 0;
}

#wrap_header .logo_range .rt {
  float: right;
  display: inline-block;
  padding: 7px 0 0 0;
}

#wrap_header .logo_range .rt p {
  font-size: 18px;
}

/* -----------------------------------------------
footer
----------------------------------------------- */
footer {
}

#wrap_footer {
}

/* -----------------------------------------------
link_range
*/
#wrap_footer .link_range {
  line-height: 1.15;
  margin: 0 0 0 0;
  padding: 70px 0 80px 0;
  background-color: #ffffff;
}

#wrap_footer .link_range ul {
  width: 950px;
  margin: 0 auto;
}

#wrap_footer .link_range li {
  margin: 0 0 15px 0;
  font-size: 12px;
}

#wrap_footer .link_range li:before {
  content: ">";
  margin: 0 1px 0 0;
  vertical-align: 1px;
}

#wrap_footer .link_range li a {
  text-decoration: underline;
}

#wrap_footer .link_range li a:hover {
  text-decoration: none;
}

/* -----------------------------------------------
copyright
*/
/* #wrap_footer .copyright {
  padding: 10px 0 10px 0;
  background-color: #878787;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  line-height: 1.3;
} */

/* バナー追加 */
/* .copyright_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 950px;
  margin: 0 auto;
}
.copyright_inner img {
  max-width: 100%;
  width: 300px;
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (max-width: 768px) {
  .copyright_inner {
    display: block;
    width: 93.75%;
  }
  .copyright_inner img {
    padding: 20px 0 20px;
    image-rendering: initial;
  }
} */
/* バナー追加 */

/* -----------------------------------------------
page Top
----------------------------------------------- */
#page_top {
  display: none;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#page_top p {
  position: fixed;
  width: 80px;
  height: 80px;
  display: inline-block;
  bottom: 80px;
  right: 10px;
}

#page_top p:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

@media screen and (max-width: 1155px) {
  /* 768pxまでの幅の場合に適応される */
  #page_top p {
    bottom: 170px;
  }
}

@media screen and (max-width: 768px) {
  /* 768pxまでの幅の場合に適応される */
  #page_top p {
    bottom: 170px !important;
  }
}

/* -----------------------------------------------
chatbot
----------------------------------------------- */

@media screen and (max-width: 1155px) {
  /* 768pxまでの幅の場合に適応される */
  #sci-chatwindow {
    bottom: 100px !important;
  }
}

/* -----------------------------------------------
wrap_cont
----------------------------------------------- */
#wrap_cont {
}

/* =============================================================================
float right fixed
========================================================================== */
#sec_rt_fixd_flt {
  position: fixed;
  right: 0;
  display: inline-block;
  padding: 28px 21px 23px 21px;
  border-top: 1px solid #b8b9ba;
  border-left: 1px solid #b8b9ba;
  border-bottom: 1px solid #b8b9ba;
  border-radius: 5px 0 0 5px;
  background-color: #ffffff;
  z-index: 10000;
}

#sec_rt_fixd_flt .ttl_mass {
  margin: 0 0 20px 0;
  color: #ff7e00;
  font-size: 22px;
  text-align: center;
}

#sec_rt_fixd_flt .bt_01,
#sec_rt_fixd_flt .bt_ent,
#sec_rt_fixd_flt .bt_sim {
  margin: 0 0 18px 0;
}
.pcv {
  display: block !important;
}
.spv {
  display: none !important;
}

/* =============================================================================
contents base
========================================================================== */
/* -----------------------------------------------
layout_mesh
----------------------------------------------- */
.layout_mesh {
  width: 100%;
  height: 13px;
  background: url("../../img/page/layout_mesh_bg_01.png") repeat scroll 0 0;
}

/* 220405追加 */

header .campaign {
  background-color: #e61414;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6px;
}

header .campaign_inner {
  margin: 0 auto;
  max-width: 1024px;
  background-color: #e61414;
}

header .campaign_inner a {
  color: #ffffff;
  text-decoration: underline;
}

header .campaign_inner img {
  max-width: 100% !important;
  text-align: center;
  margin: 0 auto;
}
