@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;900&family=Montserrat:wght@400;600&family=Noto+Sans+JP:wght@400;500;700;900&family=Oswald:wght@400;600;700&display=swap");
/*共通部分*/
.sp_nav_btn {
  position: absolute;
  right: 0;
  top: 0;
}
.sp_nav_btn a {
  color: white;
}

/**********************************************************************
	ページヘッダ - className : Header
***********************************************************************/
#header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000;
  color: white;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}
#header a:hover {
  text-decoration: none;
}

/**********************************************************************
	ページタイトル - className : Page_title
***********************************************************************/
.Page_title {
  background: #666;
}

/**********************************************************************
	SPナビゲーション - className : Page_title
***********************************************************************/
.Sp-nav {
  opacity: 0;
  height: 0;
}

.breadcrumb {
  background: #fff;
  padding: 3px 20px 6px;
  margin-left: -20px;
  margin-right: -20px;
}
.breadcrumb li {
  display: inline-block;
  font-size: 1.2rem;
}
.breadcrumb li a {
  color: #010101;
}
.breadcrumb li:after {
  content: ">";
  color: #9D9D9D;
  font-size: 120%;
  padding: 0 0 0 0.3em;
}
.breadcrumb li:last-child:after {
  content: none;
}
@media only screen and (max-width: 767px) {
  .breadcrumb {
    padding: 10px;
  }
}

.wrapper-main + .breadcrumb {
  margin-top: 50px;
}

/**********************************************************************
	ページフッタ - className : Footer
***********************************************************************/
#footer {
  background: black;
  padding-top: 20px;
  padding-bottom: 20px;
}

/**********************************************************************
	ページトップ - className : Pagetop
***********************************************************************/
#pagetop {
  border: solid 1px #ccc;
  cursor: pointer;
  position: fixed;
  right: 20px;
  bottom: 60px;
  height: 52px;
  width: 52px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
  box-sizing: border-box;
  z-index: 99;
  transition: opacity 0.3s ease;
  will-change: opacity;
}
#pagetop:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  #pagetop {
    right: 5px;
    bottom: 50px;
  }
}

/** 追加 **/
@media print{
  * {
      -webkit-print-color-adjust: exact;
  }
}

@media print {
  .print_none {
    display:none !important;
  }
}

/** 印刷時のみ表示 **/
div.print {
  display: none;
}
@media print {
  div.print {
    display: block;
  }
}