@charset "utf-8";
/* CSS Document */

/* ==========

foundation

========== */

/* extend（resource/css/contents/group-forum-library.cssから継承） */

/* 見出し～下線 */
.p_heading-underline {
  border-bottom: 1px solid #333;
  font-size: 23px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* ページリンク */
.p_pageList {
  justify-content: space-between;
  overflow: hidden;
}

.p_pageList_item {
  border: 1px solid #333;
  cursor: pointer;
  position: relative;
  transition: .3s;
  width: 30%; 
}

.p_pageList_item:hover {
  opacity: .6;
  text-decoration: none;
}

.p_pageList_item.prev {
  border-left: 20px solid #333;
  float: left;
}

.p_pageList_item.next {
  border-right: 20px solid #333;
  float: right;
}

/* リンク */
.p_pageList_link {
  align-items: center;
  color: currentColor;
  display: flex;
  font-size: 14px;
  height: 100%;
  padding: 10px 20px;
}

.p_pageList_link.prev::before {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: '';
  display: block;
  height: 0.8em;
  position: absolute;
  top: 50%;
  left: -.8em;
  transform: translateY(-50%) rotate(-45deg);
  width: .8em;
}

.p_pageList_link.next::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  display: block;
  height: 0.8em;
  position: absolute;
  top: 50%;
  right: -.8em;
  transform: translateY(-50%) rotate(45deg);
  width: .8em;
}

/* 一覧に戻る */
.p_returnBtn {
  position: absolute;
  text-align: center;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  line-height: 1;
}

.c_returnBtn {
  align-items: center;
  border: 1px solid #333;
  color: currentColor;
  display: flex;
  font-size: 14px;
  height: 100%;
  justify-content: center;
  margin: auto;
  padding: 10px;
  transition: .3s;
}

.c_returnBtn:hover {
  opacity: .6;
  text-decoration: none;
}


/* コラムリンク */
.columnTile {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

.columnTile_inner {
  flex: 0 1 auto;
  height: 175px;
  margin-bottom: 10px;
  width: 175px;
}

.columnTile::after {
  content: "";
  display: block;
  height: 0;
  width: 175px;
}

.columnTile_link {
  display: block;
  transition: .3s;
}
.columnTile_link:hover { opacity: .6; }

.columnTile_inner img {
  height: auto;
  width: 100%;
}

/* base */
.p_article{
  font: 500 15px / 1.6  "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: .1em;
}

/* ==========

component

========== */
/* アイコン */
.c_hasIco{
  position: relative;
  display: block;
}
.c_hasIco::before{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.c_hasIco--center::before{
  top: 50%;
  transform: translateY(-50%);
}
.c_hasIco--dot{
  padding-left: 1em;
}
.c_hasIco--dot::before{
  content: "・";
}
.c_hasIco--num{
  padding-left: 1.5em;
  counter-increment: section;
}
.c_hasIco--num::before{
  content: counter(section)"．";
}
/* リスト */
.c_list{}
.c_list__item + .c_list__item{
  margin-top: 4px;
}

/* 見出し */
.c_heading{}
.c_heading__ttl{
  font-weight: bold;
}
.c_heading--primary{
  margin-bottom: 56px;
}
.c_heading--primary > .c_heading__ttl{
  font-size: 26px;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 599px){
  .c_heading--primary > .c_heading__ttl{
    font-size: 18px;
    line-height: 1.6;
  }
}

/* リンク */
.c_link{
  color:#052674;
  text-decoration: none;
}
.c_link:hover{
  text-decoration: underline;
}


/* ==========

project

========== */
/* キービジュアル */
.p_keyvisual{}
.p_keyvisual__img{
  line-height: 0;
}
.p_keyvisual__img > img{
  vertical-align: top;
}

/* 目次 */
.p_pageIndex{
  position: relative;
  padding: 40px 0 24px;
  border-top: 3px solid;
  border-bottom: 3px solid;
}
.p_pageIndex__header{
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  transform: translateY(-50%);
}
.p_pageIndex__ttl{
  padding: 0 12px;
  font-size: 26px;
  line-height: 1;
}
.p_pageIndex__list{
  font-size: 16px;
}
@media screen and (max-width: 599px){
  .p_pageIndex__ttl{
    font-size: 18px;
    line-height: 1.3;
  }
}

/* 作成テンプレート内部（初心者用） */
.p_template{}
.p_template section + section{
  margin-top: 32px;
}
.p_template h2,
.p_template h3,
.p_template h4,
.p_template h5,
.p_template h6,
.p_template p,
.p_template ul,
.p_template ol,
.p_template dl,
.p_template table,
.p_template div{
  margin-bottom: 16px;
}
.p_template li + li{
  margin-top: 8px;
}
.p_template h2{
  position: relative;
  padding-left: 1.5em;
  padding-bottom: 20px;
  line-height: 1.3;
  font-size: 22px;
  font-weight: bold;
  counter-increment: section;
}
.p_template h2::before{
  content: counter(section)"．";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

}
.p_template h3,
.p_template h4{
  font-size: 18px;
  font-weight: bold;
}
.p_template h5,
.p_template h6{
  font-size: 15px;
  font-weight: bold;
}

@media screen and (max-width: 599px){
  .p_template h2{
    line-height: 1.6;
    font-size: 18px;
  }
}

.p_template table{
  table-layout: auto;
  border-collapse: collapse;
  width: 100%;
}
.p_template th,
.p_template td{
  padding: 4px 8px;
  border: 1px solid #333;
}
.p_template th{
  color: #fff;
}
.p_template img{
  max-width: 100%;
  height: auto;
}

.p_template a{
  color:#052674;
  text-decoration: none;
}
.p_template a:hover{
  text-decoration: underline;
}

.p_template .training{}
.p_template .training > p{
  margin: 0;
  padding: 4px 8px;
  border: 1px solid #333;
  line-height: 1;
  text-align: center;
}
.p_template .training > ul,
.p_template .training > ol{
  margin: -1px 0 0;
  padding: 16px;
  border: 1px solid #333;
}
.p_template .training > ul p,
.p_template .training > ol p{
  margin-bottom: 4px;
}
.p_template .training > ul > li,
.p_template .training > ol > li{
  font-weight: bold;
}
.p_template .training > ul > li > *,
.p_template .training > ol > li > *{
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
}
.p_template .grid2,
.p_template .grid3{
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 -8px;
}
.p_template .grid2 > *,
.p_template .grid3 > *{
  display: flex;
  margin: 0;
  padding: 0 8px;
}
.p_template .grid2 > * > *,
.p_template .grid3 > * > *{
  display: block;
  width: 100%;
}
.p_template .grid2 > *{
  width: 50%;
}
.p_template .grid3 > *{
  width: 33.333%;
}
@media screen and (max-width: 599px){
  .p_template .grid2 > *{
    width: 100%;
  }
  .p_template .grid3 > *{
    width: 100%;
  }
}
.p_template .arrow{}
.p_template .arrow::before{
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 20px solid;
  border-left: 40px solid #fff;
  border-right: 40px solid #fff;
}
.p_template .al{
  text-align: left;
}
.p_template .ar{
  text-align: right;
}
.p_template .ac{
  text-align: center;
}

.p_template .border{
  padding: 8px;
  border: 2px solid;
}
.p_template .bg{
  padding: 8px;
  color: #fff;
}
.p_template .insColor{
  color: #e5002d;
}
/* ==========

utility

========== */
/* 間隙 */
.u_mb48{
  margin-bottom: 48px;
}
.u_mb50{
  margin-bottom: 50px;  
}
.u_mb72{
  margin-bottom: 72px;
}

/* ポジション */
.u_pos-r { position: relative; }
.u_pos-a { position: absolute; }


/* ==========

other

========== */
body{
  counter-reset: section;
}
.p_template{
  counter-reset: section;
}


/*===============================

    トップページ

================================*/
.p_gridContainer {

}
.p_gridItem {
  height: 175px;
  margin-bottom: 10px;
  position: relative;
  width: 175px;
}

.p_gridItem::before {
  content: "";
  display: block;
  padding-top: 100%;
}


.p_gridItem-lg {
  height: 360px;
  width: 360px;
}

@media screen and (max-width:600px) {
  .p_gridItem-lg  {
    height: auto;
    width: 100%;
  }
}

.p_gridItem_link {
  border: 2px solid #576382;
  color: currentColor;
  display: block;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.p_gridItem_ttl {
  background-color: #fff;
  color: currentColor;
  font-weight: bold;
  line-height: 1.5;
  padding: 5px;
  position: absolute;
  top: 10px;
  left: 0;
  width: auto;
  max-width: 95%;
  z-index: 5;
}

.p_gridItem_link::after {
  background-color: #576382;
  box-sizing: border-box;
  color: #fff;
  content: "READ MORE";
  display: block;
  font-style: oblique;
  padding: 5px 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 109px;
  z-index: 6;
}

.p_gridItem_link:hover {
  border: 2px solid #ff5c85;
}

  .p_gridItem_link:hover::after {
  background-color: #ff5c85;
}

.p_gridItem_thumbnail {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  -webkit-transition: .5s transform;
  -o-transition: .5s transform;
  transition: .5s transform;
  width: 100%;
}

.p_gridItem_link:hover  > .p_gridItem_thumbnail {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

