@charset 'utf-8';
/*/////////////////////////////////////

  基本設定

////////////////////////////////////*/

/*================================
  スケーリング処理
================================*/
@media screen and (min-width:1022px) {/* 1022px以上(PC) */
  html {
    font-size: 10px;/* rem設定の便宜上この値 */
  }
}
@media screen and (max-width:1021px) {/* ～1021px */
  html {
    font-size: 18px;
  }
}
@media screen and (max-width:699px) {/* ～699px */
  html {
    font-size: 16px;
  }
}
@media screen and (max-width:599px) {/* ～599px */
  html {
    font-size: 14px;
  }
}
@media screen and (max-width:499px) {/* ～499px */
  html {
    font-size: 12px;
  }
}
@media screen and (max-width:399px) {/* ～399px */
  html {
    font-size: 10px;
  }
}
/*=========================================
  レスポンシブ表示切り替えクラス
=========================================*/
/* PC表示要素（1021px以下で非表示）
----------------------------------*/
@media screen and (max-width:1021px) {
  .dp_pc {display: none !important;}
}
/* スマホ表示要素（1022px以上で非表示）
------------------------ー--------*/
@media screen and (min-width:1022px) {
  .dp_sp {display: none !important;}
}
/*=========================================
  リキッドコンテナ要素クラス
  ※320～1020までリキッドにしたいレイアウト要素に。
=========================================*/
.dp_liq {
  width: 100%;
  max-width: 1022px;
  min-width: 320px;
  margin: auto;
}



@media screen and (min-width:1022px) {
/******************************************************************************
For PC
*******************************************************************************/
/*=========================================
  サイト大枠
=========================================*/
#wrapper {
  width: 100%;
  max-width: 1022px;/* グロナビ両端の立体ボーダー含む */
  min-width: 320px;
  margin: auto;
}
main {
  background-color: #f9fafc;
}
/*-----------------------------------
  ページタイトル
-----------------------------------*/
.title {
  margin-bottom: 22px;
  font-size: 28px;
  font-weight: bold;
}
/*=========================================
  パンくずリスト
=========================================*/
.box_breadcrumbs {
  margin-bottom: 30px;
  background-color: #eee;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  max-width: 1022px;
  margin: auto;
  padding: 5px 0;
  letter-spacing: -0.4em; /* inline-blockの隙間対策 */
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  padding-right: 10px;
  font-size: 12px;
  letter-spacing: normal; /* inline-blockの隙間対策 */
}
.breadcrumbs li::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  border: 5px solid transparent;
  border-left: 9px solid #448aca;
  border-right: none;
  vertical-align: unset;
}
.breadcrumbs li:last-of-type::after {
  display: none;
}
.breadcrumbs li a {
  color: #448aca;
  font-size: 12px;
}
/*=========================================
  ヘッダー
=========================================*/
.g-header {
  background-color: #fff;
}
/*-------------------------------
  ロゴエリア
-------------------------------*/
.g-header-cont {
  display: flex;
  align-items: center;
  min-height: 76px;
}
/* ロゴ
-------------------------------*/
.g-header-logo {
  float: left;
  display: flex;
  align-items: center;
  margin: 0 28px 0 0;
}
.g-header-logo a {
  color: #328fdc;
  font-size: 22px;
  font-weight: bold;
}
.g-header-logo_img img {
  width: 150px;
  height: auto;
}
.g-header-logo_txt {
  margin-left: 24px;
  color: #328fdc;
  font-size: 22px;
  font-weight: bold;
}
/* ステートメント
-------------------------------*/
.g-header_statement {
  font-size: 16px;
  vertical-align: middle;
}
/* 検索
--------------------------------*/
.g-header-search {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-right: 12px;
  border-radius: 4px;
  background-color: #edf2f5;
}
.g-header-search_input {
  -webkit-appearance: none;
  appearance: none;
  height: 36px;
  width: 268px;
  padding: 0 10px;
  border: none;
  background: transparent;
  font-size: 15px;
}
.g-header-search_btn {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: none;
  background: url("/public/forum//img/common/icon_search-mediumgray.svg") left top no-repeat;
  background-size: contain;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}
/*=========================================
  グロナビ
=========================================*/
.g-nav {
  background-color: #7ecef4;
}
.g-nav-list {
  max-width: 1022px;
  min-width: 320px;
  margin: auto;
  box-shadow: 1px 0 0 #b1e1f8;
  border-right: 1px solid #63a0be;
}
.g-nav-list::after {
  content: '';
  display: block;
  clear: both;
}
.g-nav-item {
  float: left;
  display: block;
  width: 170px;
}
li.g-nav-item:last-of-type {
  box-shadow: 1px 0 0 #b1e1f8;
  border-right: 1px solid #63a0be;
}
.g-nav-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  box-shadow: -1px 0 0 #63a0be;
  border-left: 1px solid #b1e1f8;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
  cursor: pointer;
}
/*=========================================
  メインカラム
=========================================*/
.main-contents {
  float: left;
  width: 690px;
}
/*===================================
  プレースホルダー
===================================*/
/* Google Chrome, Safari, Opera 15+, Android, iOS*/
::-webkit-input-placeholder {
  color: #808080;
  line-height: 1;
  vertical-align: middle;
}
/* Firefox 19+*/
::-moz-placeholder {
  color: #808080;
  line-height: 1;
  vertical-align: middle;
}
/* IE 10+*/
:-ms-input-placeholder {
  color: #808080;
  line-height: 1;
  vertical-align: middle;
}
/*=========================================
  サイドカラム
=========================================*/
aside {
  float: right;
  display: block;
  width: 300px;
}
.aside-box {
  margin-bottom: 18px;
}
.aside-box_hd {
  font-weight: bold;
}
.aside-list {
  padding: 14px 16px 0;
  border: 1px solid #ccc;
  background-color: #fff;
}
.aside-list li {
  margin-bottom: 13px;
}
.aside-list a {
  color: #0068b7;
  font-size: 14px;
  text-decoration: underline;
}
.aside-list a:hover {
  text-decoration: none;
}
.aside-tags {
  display: flex;
  flex-wrap: wrap;
}
.aside-tags li {
  margin: 0 10px 10px 0;
}
.aside-tags a {
  display: inline-block;
  height: 30px;
  padding: 0 10px;
  border-radius: 5px;
  background-color: #7ecef3;
  color: #fff;
  line-height: 30px;
}
/* ====================================================
  イエソトコンテンツのリスト表示
====================================================*/
/*--------------------------------
  バナー
--------------------------------*/
.g-aside_bnr {
  margin-bottom: 30px;
}
.g-aside_bnr img {
  width: 300px;
  height: auto;
}
/*--------------------------------
  まとめ
--------------------------------*/
.g-aside-ovw {
  margin-bottom: 30px;
}
.g-aside-ovw_hd {
  height: 40px;
  margin: 30px 0 20px;
  padding: 0 13px;
  background-color: #8fc31f;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
}
.g-aside-ovw_list li {
  margin-bottom: 19px;
}
.g-aside-ovw_link {
  display: block;
  color: #555;
}
.g-aside-ovw_img {
  float: left;
}
.g-aside-ovw_img img {
  width: 120px;
  height: 90px;
}
.g-aside-ovw_txt {
  float: right;
  width: 156px;
  font-size: 14px;
}
.g-aside-ovw_list--img-l .g-aside-ovw_txt {
  width: 156px;
}
.g-aside-ovw_txt--indent {
  padding-left: 1em;
  text-indent: -1em;
}
.g-aside-ovw_show {
  margin: 20px 0;
  text-align: right;
}
.g-aside-ovw_show a {
  color: #004986;
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}
/*=========================================
  フッター
=========================================*/
.g-footer {
  clear: both;
  background-color: #fff;
}
/*-----------------------------------
  copyright
-----------------------------------*/
.g-footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 85px;
  border-top: 1px solid #ccc;
  font-size: 11px;
}
/*--------------------------------
  ページネーション
--------------------------------*/
.thread-ctrl-head {
  display: flex;
  margin-bottom: 20px;
}
.thread-ctrl-foot {
  display: flex;
  margin-bottom: 100px;
}
.pagination-wrap {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.pagination-wrap .h-ttl {
  margin-bottom: 10px;
  font-size: 20px;
}
.pagination {
  letter-spacing: -0.4em; /* inline-blockの隙間対策 */
}
.pagination-page-nav {
  display: inline-block;
  margin: 0 5px 5px 0;
  vertical-align: top;
  letter-spacing: normal; /* inline-blockの隙間対策 */
}
.pagination .page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #9a9899;
  font-size: 14px;
}
.pagination .active .page-link {
  border: 2px solid #328fdc;
  color: #3490dd;
  font-weight: bold;
}
.pagination_trunc {
  width: 20px;
  color: #9a9899;
}
.pagination .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.pagination-prev-nav,
.pagination-next-nav {
  display: none;
}


}



@media screen and (max-width:1021px) {
/******************************************************************************
For SP
*******************************************************************************/
main {
  background-color: #f9fafc;
}
/*-----------------------------------
  ページタイトル
-----------------------------------*/
.title {
  margin: 0 1rem 1.3rem;
  font-size: 1.4rem;
  font-weight: bold;
}
/*=========================================
  パンくずリスト
=========================================*/
.box_breadcrumbs {
  margin-bottom: 1.5rem;
  background-color: #eee;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  margin: auto;
  padding-left: 1rem;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  vertical-align: middle;
}
.breadcrumbs li {
  display: table-cell;
  padding-right: 0.5rem;
  font-size: 1rem;
  white-space: nowrap;
}
.breadcrumbs li::after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  border: 0.5rem solid transparent;
  border-left: 0.45rem solid #448aca;
  border-right: none;
  vertical-align: unset;
}
.breadcrumbs li:last-of-type::after {
  display: none;
}
.breadcrumbs li a {
  color: #448aca;
  font-size: 1rem;
}
.breadcrumbs span {
  font-size: 1rem;
}
/*=========================================
  ヘッダー
=========================================*/
/*-------------------------------
  ロゴエリア
-------------------------------*/
.g-header-cont {
  position: relative;
  padding: 1rem 1rem 1.2rem 1rem;
}
/* ロゴ
-------------------------------*/
.g-header-logo,
.g-header-logo img {
  height: auto;
}
.g-header-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}
.g-header-logo a {
  color: #328fdc;
  font-size: 1.5rem;
  font-weight: 600;
}
.g-header-logo_img img {
  width: 10rem;
  height: auto;
}
.g-header-logo_txt {
  margin-left: 1rem;
  color: #328fdc;
  font-size: 1.5rem;
  font-weight: 600;
}
/* 検索
--------------------------------*/
.g-header-search {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-right: 0.6rem;
  border-radius: 4px;
  background-color: #edf2f5;
}
.g-header-search_input {
  -webkit-appearance: none;
  appearance: none;
  height: 2.65rem;
  width: 100%;
  padding: 0 0.9rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
}
.g-header-search_btn {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  border: none;
  background: url("/public/forum//img/common/icon_search-mediumgray.svg") left top no-repeat;
  background-size: contain;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}
/*=========================================
  グロナビ
=========================================*/
.g-nav {
  background-color: #7ecef4;
}
.g-nav-list {
  width: 100%;
  min-width: 320px;
  margin: auto;
  box-shadow: none;
}
.g-nav-list::after {
  content: '';
  display: block;
  clear: both;
}
.g-nav-item {
  float: left;
  width: 33.333%;
}
.g-nav-anchor {
  display: block;
  padding: 1rem 0;
  box-shadow: -1px 0 0 #63a0be;
  border-left: 1px solid #b1e1f8;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
/*===================================
  プレースホルダー
===================================*/
/* Google Chrome, Safari, Opera 15+, Android, iOS*/
::-webkit-input-placeholder {
  font-size: 1rem;
  color: #808080;
  line-height: 1;
  vertical-align: middle;
}
/*=========================================
  メインカラム
=========================================*/
.main-contents {
  float: none;
  width: 100%;
}
/*=========================================
  サイドカラム
=========================================*/
/*----------------------------------
  スマホ
----------------------------------*/
aside {
  background-color: #f9fafc;
}
.aside-box_hd {
  display: flex;
  align-items: center;
  min-height: 3rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
  background-color: #7ecef3;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}
.aside-list {
  margin: 0 1rem;
}
.aside-list li {
  margin-bottom: 1.1rem;
  font-size: 1.2rem;
}
.aside-list a {
  color: #0068b7;
  font-size: 1.2rem;
  text-decoration: underline;
}
.aside-tags {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1rem;
}
.aside-tags li {
  margin: 0 1rem 1rem 0;
}
.aside-tags a {
  display: inline-block;
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 5px;
  background-color: #7ecef3;
  color: #fff;
  line-height: 2.5rem;
}
/* ====================================================
  イエソトコンテンツのリスト表示
====================================================*/
.g-aside {
  float: none;
  width: 100%;
}
.g-aside_bnr-container {
  margin-bottom: 4.5rem;
}
.g-aside_bnr {
  margin: 0 1rem 1rem;
}
.g-aside_bnr img {
  width: 100%;
}
.g-aside-ovw_hd {
  height: 3rem;
  margin: 0;
  padding: 0 1rem;
  background-color: #8fc31f;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 3rem;
}
.g-aside-ovw_list li {
  margin-bottom: 0;
  border-bottom: 1px solid #ccc;
}
.g-aside-ovw_list li:last-of-type {
  border-bottom: none;
}
.g-aside-ovw_link {
  display: flex;
  align-items: center;
  padding: 1.5rem 1rem;
}
.g-aside-ovw_img {
  margin-right: 1rem;
}
.g-aside-ovw_img img {
  float: none;
  width: 8rem;
}
.g-aside-ovw_txt {
  float: none;
  width: auto;
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
}
.g-aside-ovw_list--img-l .g-aside-ovw_txt {
  width: auto;
}
.g-aside-ovw_show {
  margin: 1rem 0;
  padding-right: 1rem;
  text-align: right;
}
.g-aside-ovw_show a {
  color: #004986;
  font-size: 0.7rem;
  font-weight: bold;
  text-decoration: underline;
}
/*=========================================
  フッター
=========================================*/
/*-----------------------------------
  copyright
-----------------------------------*/
.g-footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4rem;
  padding: 1rem 0 9rem;
  border-top: 1px solid #ccc;
  font-size: 0.7rem;
}
/*--------------------------------
  ページネーション
--------------------------------*/
.thread-ctrl-head {
  display: flex;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}
.thread-ctrl-foot {
  display: flex;
  margin-bottom: 1.5rem;
}
.thread-ctrl-foot .pagination {
  margin: 0 auto;
}
.pagination-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pagination-wrap .h-ttl {
  margin: 0 1rem 1rem;
  font-size: 1.6rem;
}
.pagination {
  letter-spacing: -0.4em; /* inline-blockの隙間対策 */
}
.pagination-page-nav {
  display: inline-block;
  margin: 0 0.5rem 0.5rem 0;
  letter-spacing: normal; /* inline-blockの隙間対策 */
}
.pagination li:last-of-type {
  margin-right: 0;
}
.pagination .page-link {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #9a9899;
  font-size: 1.2rem;
  text-align: center;
  line-height: 2.5rem;
}
.pagination .active .page-link {
  border: 2px solid #328fdc;
  color: #3490dd;
  font-weight: bold;
}
.pagination .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.pagination-prev-nav,
.pagination-next-nav {
  display: none;
}
/* ====================================================
  ドロワーメニュー
====================================================*/
.is-open {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.is-open body {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.bbs-drawer {
  position: relative;
  z-index: 2;
}
.bbs-drawer_checkbox {
  display: none;
}
.bbs-drawer_hamburger {
  position: fixed;
  top: 0;
  right: 0rem;
  align-content: center;
  justify-content: center;
  display: flex;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
}
.bbs-drawer_hamburger--sticky {
  top: 0.75rem;
  border: 0.1rem solid #ccc;
  border-radius: 0.25rem;
  background-color: #fff;
  box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.3);
}
.bbs-drawer_hamburger img {
  width: 2rem;
}
.bbs-drawer-overlay {
  background: #000;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
}
.bbs-drawer-close {
  position: fixed;
  top: 0.75rem;
  right: -75vw;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
}
.bbs-drawer-close img {
  width: 3.9vw;
}
.bbs-drawer-close-btn-wrap {
  padding: 0.9rem 1rem;
  text-align: right;
}
.bbs-drawer-close-btn {
  display: inline-block;
  height: 1.85rem;
  padding: 0 0.6rem 0 2rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: url("/public/forum//img/common/icon_cross-mediumgray.svg") 0.6rem center no-repeat #eee;
  background-size: 0.75rem;
  color: #808080;
  font-size: 1rem;
  line-height: 1.85rem;
}
.bbs-drawer-menu {
  position: fixed;
  top: 0;
  right: -75vw;
  max-width: 100%;
  width: 75vw;
  height: 100vh;
  overflow-y: scroll;
  pointer-events: all;
  background-color: #fff;
}
.bbs-aside {
  overflow-y: auto;
  pointer-events: all;
  height: 100vh;
  padding-bottom: 8rem;
}
.bbs-drawer_checkbox:checked ~ .bbs-drawer-overlay {
  opacity: 0.7;
  pointer-events: auto;
}
.bbs-drawer_checkbox:checked ~ .bbs-drawer-menu {
  right: 0;
}
.bbs-drawer_checkbox:checked ~ .bbs-drawer-close {
  right: 75vw;
  right: calc(75vw + 0.65rem);
}
.bbs-drawer-overlay,
.bbs-drawer-menu,
.bbs-drawer-close {
  transition: all 0.25s;
}
.opacity {
  color:transparent;
}

}