@charset "utf-8";

/*-----------------------------------------------------------
一覧
-----------------------------------------------------------*/

.blog-flex-area {
    max-width: 1260px;
    width: 100%;
 	margin: auto;
}

.blog-side {
    margin: 60px 0 0;
}

.blog-list > section {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

/*-----------------------------------------------------------
詳細
-----------------------------------------------------------*/

.blog-detail {
    max-width: 100%;
    width: 100%;
    padding: 3px 3%;
    background: #fff;
    border-top: solid 5px #E6A4A9;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

.blog-info {
    display: flex;
    align-items: center;
}

.blog-info > .blog-cate {
    position: static;
    margin: 0;
}

.blog-info > .blog-date {
    margin: 0 0 0 15px;
}

.blog-detail-title {
    margin: 20px 0 0;
    padding: 0 0 10px;
    position: relative;
}

.blog-detail-title:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-size: 6px 10px;
    background-image: linear-gradient(to right, #3C3C3C 1px, transparent 1px);
    background-repeat: repeat-x;
    background-position: left bottom;
}

.blog-detail-img {
    margin: 20px 0 0;
}

.blog-info > .blog-date {
    max-width: 135px;
    width: 100%;
}

.blog-content {
    margin: 15px 0 0;
    font-weight: normal;
    line-height: 1.8em;
    word-break: break-all;
}

.blog-content a {
    color: var(--primary);
    text-decoration: underline;
}

.blog-content a:hover {
    text-decoration: none;
	opacity: 0.65;
}

.blog-back-btn {
    font-size: 16px;
    font-family: unset;
    margin: 25px auto 0;
}

.blog-back-btn:before {
    left: 16px;
    right: auto;
    transform: scale(-1,1);
}

.blog-back-btn:hover:before {
    transform: translate(-7px, 0) scale(-1,1);
}

.blog-pdf-btn {
    max-width: 208px;
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #3C3C3C;
    background: #fff;
    position: relative;
    border-radius: 24px;
    transition: all .5s;
    font-weight: 400;
    box-shadow: 0.1px 0.1px 10px 0 rgba(0, 0, 0, 0.16);
    margin: 30px auto 0;
}

.blog-pdf-btn:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    right: 16px;
    margin: auto;
    background: url(/system_panel/uploads/images/in_arrow_icon.svg)no-repeat;
    background-size: 100%;
    transition: all .5s;
}

.blog-pdf-btn:hover {
    color: #3C3C3C;
}

.blog-pdf-btn:hover:before {
    transform: translate(7px, 0px);
    transition: all .5s;
}

/*-----------------------------------------------------------
カテゴリ
-----------------------------------------------------------*/

.category-box {
    letter-spacing: 0.05em;
    line-height: 1.44em;
}

.category-box:not(:first-child) {
    margin: 30px 0 0;
}

.category-box > section {
    margin: 10px 0 0;
}

.category-title {
    font-weight: 600;
    letter-spacing: 0.05em;
    background: #E6A4A9;
    color: #fff;
    padding: 10px;
}

.category-list {
    margin: 10px 0 0;
}

.category-link {
    display: block;
    color: #3C3C3C;
    padding: 5px 10px;
    border-bottom: solid 1px var(--grey);
    font-size: 14px;
    transition: .3s;
}

.category-link:hover {
    color: #E6A4A9;
}

/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination {
	width: 100%;
	grid-column: 1 / 3;
}

.webgene-pagination > ul{
padding: 0;
display: flex;
justify-content: center;
}

.webgene-pagination > ul > li{
display: flex;
}

.webgene-pagination > ul > li{
margin: 40px 10px 0;
height: 48px;
width:100%;
max-width: 48px;
font-size: 16px;
font-weight: 500;
line-height: 1em;
list-style: none;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}

.webgene-pagination > ul > li.selected > a{
color: #fff;
background: #E6A4A9;
cursor: inherit;
}

.webgene-pagination > ul > li.selected > a:hover {
	color: #fff;
	background-color: #3C3C3C;
}

.webgene-pagination > ul > li > a{
  width: 100%;
  height: 40px;
  width: 40px;
  color: #3D3732;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.webgene-pagination > ul > li > a:hover{
  color: #fff;
  background-color: #3C3C3C;
  text-decoration: none;
}

.webgene-pagination>ul>.prev>a,
.webgene-pagination>ul>.next>a {
	position: relative;
	height: 40px;
	width: 40px;
}

.webgene-pagination>ul>.prev>a:hover,
.webgene-pagination>ul>.next>a:hover {
	opacity: .5;
	background-color: initial;
}


.webgene-pagination>ul>.prev>a::before,
.webgene-pagination>ul>.next>a::before {
	content: "";
	display: block;
	transition: all .3s;
}

.webgene-pagination>ul>.prev>a::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 16px 10px 0;
	border-color: transparent #E6A4A9 transparent transparent;
}

.webgene-pagination>ul>.next>a::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent #E6A4A9;
}

.dtlPager {
	display: flex;
	justify-content: space-between;
	margin: 80px 0 0;
}

.webgene-item-aroundPageLink {
	color: #333;
	font-size: 14px;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:768px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/*-----------------------------------------------------------
一覧
-----------------------------------------------------------*/

.blog-flex-area {
    display: flex;
    justify-content: space-between;
}
  
.blog-main {
    width: 75%;
}

.blog-side {
    width: 20%;
    margin: 0 0 0 5%;
}
  
.blog-list > section {
    grid-template-columns: repeat(3,1fr);
}
	
/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination {
    grid-column: 1/4;
}
    
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1024px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
/*-----------------------------------------------------------
一覧
-----------------------------------------------------------*/

.blog-list > section {
    gap: 30px;
}

/*-----------------------------------------------------------
カテゴリ
-----------------------------------------------------------*/

.category-link {
    font-size: 16px;
}
	
/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

.webgene-pagination {
	grid-column: 1/4;
}

/*-----------------------------------------------------------
詳細
-----------------------------------------------------------*/

.blog-detail {
    padding: 40px 4%;
    font-size: 16px;
}

.blog-detail-title {
    margin: 30px 0 0;
    padding: 0 0 15px;
}
    
.blog-pdf-btn {
    margin: 40px auto 0;
}
    
.blog-back-btn {
    margin: 50px auto 0;
}

.blog-detail-img {
    margin: 40px 0 0;
}
    
.blog-content {
    margin: 20px 0 0;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1400px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1400px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */