@charset "UTF-8";
/*-----------------------------------
  下層ページ
-----------------------------------*/
.submain_img_area {
 text-align: center;
 min-width: 1000px;
 margin-left: auto;
 margin-right: auto;
}
.submain_img_area img {
  width: 100%;    /* 画像の元の横幅に合わせる */
  max-width: none;  /* 共通の max-width:100% を打ち消す */
  display: block;
  margin: 0 auto;   /* 中央寄せ（任意） */
 }
@media (max-width:767px) {
 .submain_img_area {
  width: 100%;
  min-width: auto;
  min-height: auto;
 }
}
@media (max-width:767px) {
 .submain_img_area img {
  object-fit: cover;
  height: auto;
  width: 100%;
  display: block;
  margin: 0 auto;
 }
}

/*-----------------------------------
  TOPへ戻る
-----------------------------------*/
#page_top {
 width: 40px;
 height: 40px;
 position: fixed;
 right: 0;
 margin-right: 5px;
 bottom: 5px;
 z-index: 11;
 background-color: rgba(68, 68, 68, 0.5);
 border-radius: 2px;
}
@media (max-width:767px) {
 #page_top {
  display: none !important;
 }
}
#page_top a {
 position: relative;
 display: block;
 width: 40px;
 height: 40px;
 text-decoration: none;
}
#page_top a::before {
 font-family: "Font Awesome 5 Free";
 font-weight: bold;
 content: '\f077';
 font-size: 24px;
 color: #fff;
 display: flex;
 justify-content: center;
 align-items: center;
}