@charset "utf-8";

.p-topics #ttl-sub {
    padding-bottom: 50px;
}

.p-topics section#topics {
    width: 98%;
    max-width: 1350px;
    /* margin: 50px auto 30px; */
    /* padding: 30px; */
	
}
/* ---------------------------------------------------------
  トピックス関連スタイル
--------------------------------------------------------- */
/* ページャー */
.p-topics .pager{
	margin: 40px auto 0;
  position: relative;
  height:60px;
}
.p-topics .pager li{
  display: inline-block;
  position: absolute;
}
.p-topics .pager li.btnBack,
.p-topics .pager li.btnBefore{
  left:0;
  top:0;
  text-align: left;
  width: 30%;
}
.p-topics .pager li.btnNext,
.p-topics .pager li.btnAfter{
  right:0;
  text-align: right;
  width: 30%;
}
.p-topics .pager li.btnList{
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 30%;
}

/*
.p-topics .pager li a{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
	display: inline-block;
	width:auto;
	padding:0 5em;
	color:#fff;
	background: #366cf7;
	border-radius: 3px;
	margin:auto;
}
.p-topics .pager li.btnBack a:before,
.p-topics .pager li.btnBefore a:before{
  font-family: 'Font Awesome\ 5 Free';
  content:"\f137";
  font-weight: bold;
  padding-right:0.5em;
}
.p-topics .pager li.btnNext a:after,
.p-topics .pager li.btnAfter a:after{
  font-family: 'Font Awesome\ 5 Free';
  content:"\f138";
  font-weight: bold;
  margin-left:0.5em;
}
.p-topics .pager li a:hover{
	background: #fff;
	text-decoration: none;
	color: #003bd2;
	border: 1px solid #003bd2;
}
*/

/* ----------------------------------------------------
  トピックス一覧
---------------------------------------------------- */
.p-topics #item-list:after{
	content:"";
	display: block;
	clear: both;
}

.p-topics #item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem 1%;
	justify-content: start;
}
.p-topics #item-list li {
	width: 24%;
}

.p-topics #item-list li a{
	/*width:23%;
    margin: 0px 2% 40px 0;
	float:left;
	*/
	display: block;
	border-radius: 3px;
	background:#f0f0ee;
	/* padding-bottom:15px; */
	border: 1px solid #f0f0ee;	
}
/*
.p-topics #item-list li:nth-child(4n) a{
  margin-right:0
}
.p-topics #item-list li:nth-child(4n+1) a{
	clear: both;
}
*/
.p-topics #item-list li a:hover{
	text-decoration: none;
	/*transform:rotateY(360deg);
	transition: 1s;*/
}
.p-topics #item-list li a span{
	display: block;
	margin:auto;
}
.p-topics #item-list li a span.item-img {
	display:block;
	position: relative;
	width: 100%;
	overflow: hidden;
}
.p-topics #item-list li a span.item-img:before {
	content:"";
	display: block;
	width: 100%;
	padding-top: 75%;
}
.p-topics #item-list li a span.item-img img{
	border-radius: 3px 3px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.p-topics #item-list li a span.item-date {
	color:#1c1c1d;
	width:90%;
	margin:10px auto 5px;
}
.p-topics #item-list li a span.item-ttl{
	color:#1c1c1d;
	width:90%;
	min-height:100px;
	margin:10px auto 5px;
}
.p-topics #item-list li a:after{
/*
	display: block;
	content:"詳細を見る";
	color:#fff;
	background:#003bd2;
	border-radius: 3px;
	width:90%;
	line-height: 30px;
	text-align: center;
	margin:auto;
*/
    display: block;
    content: "詳細を見る";
    color: #fff;
    background: #254DB3;
    border-radius: 0 0 3px 3px;
    /*width: 90%;*/
    line-height: 45px;
    text-align: center;
    margin: auto;
	
}
.p-topics #item-list li a:hover:after{
	text-decoration: none;
	/* background:#ffba00; */
	opacity : 0.8;
}
/* ----------------------------------------------------
  トピックス詳細
---------------------------------------------------- */
.p-topics .date {
	margin-top: 2em;
}
/* 記事名 */
.p-topics .product-name{
	position: relative;
	font-size:28px;
	font-size:1.647rem;
	margin:1.5em 0 0 0;
	text-align: left;
	background: url(./images/logo-e.svg)no-repeat;
	background-size: 145px;
	padding-left: 50px;
	background-position: left;
}

/* 記事メイン写真 */
.p-topics .img-box{
	width:48.5%;
	float:left;
	max-width: 580px;
}
.p-topics .img-box img{
	border-radius: 10px;
}
/* 記事説明ボックス */
.p-topics .detail-box{
	width:48.5%;
	float:right;
	max-width:580px;
}
.p-topics .detail-box .price{
	font-size: 20px;
	border-bottom:2px dotted #534a3c;
	padding-bottom:15px;
	margin-bottom:15px;
}
.p-topics .detail-box .price .value{
	font-size:24px;
	font-weight: bold;
}
.p-topics .detail-box .yen{
	font-size:16px;
}
/* 記事詳細テーブル */
.p-topics .detail-table{
	width:48.5%;
	float:left;
	max-width: 580px;
	margin-top:50px;
}
.p-topics .detail-table th,
.p-topics .detail-table td{
  border-top: 1px solid #9b968b;
  border-bottom: 1px solid #9b968b;
	padding: 0.75em 1em;
}
.p-topics .detail-table th {
  background: #efeeed;
  width:30%;
  text-align: left;
}

.p-topics .msg table {
	margin-top: 1rem;
}

.p-topics .msg a {
	text-decoration: underline;
}

.p-topics .msg table th,
.p-topics .msg table td {
  /* border-top: 1px solid #9b968b;
  border-bottom: 1px solid #9b968b; */
  border: 1px solid #9b968b;
	padding: 0.75em 1em;
}


/* 記事写真一覧 */
.p-topics .img-list{
  margin:0px auto;
  text-align: center;
}
.p-topics .img-list li{
  width:30%;
  max-width: 376px;
  margin-bottom:35px;
}
/* changed from sales */
.p-topics .img-list li{
  display: inline-block;
}
/*.p-topics .img-list li:nth-child(3n+1){
  clear:both;
}*/
.p-topics .img-list li img{
  border-radius: 3px;
  /* width: 100%; */
  vertical-align: top;
  border: solid 1px #f0f0ee;
}
.p-topics a.btn001{
	color: /*#1a78be*/#ff8400;
	border: 1px solid /*#1a78be*/#ff8400;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	text-align: center;
	width: 50%;
	padding: 10px 10px 10px 50px;
    padding-right: 5px;
	display: block;
	margin: 10px auto;
	transition: 0.25s ease-in-out;
	font-weight: bold;
	letter-spacing: 2px;
	font-size: 16px;
	position: relative;
}
.p-topics a.btn001::before {
    content: url(../img/common/Adobe_PDF_file_icon.png);
    position: absolute;
    left: 10px;
    top: 8px;
}
.p-topics .pdf-list .pdf {
	margin-top: 20px;
}
.p-topics .pdf-list .pdf:first-child {
	margin-top: 2em;
}
.p-topics .link {
	margin-top: 2em;
	margin-bottom: 3em;
}

div.youtube {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.video-list {
	margin-top: 30px;
}

/* ---------------------------------------------------------
  管理画面スタイル
--------------------------------------------------------- */

.p-topics select, .p-topics input {
	font-size: 90%;
	padding: 4px;
	border: 1px solid #9d968b;
	vertical-align: middle;
}
.p-topics.admin form {
	text-align: center;
	margin: 50px auto;
	
}

.p-topics.admin .more01 {
	margin-top: 30px;
}

/* ---------------------------------------------------------
  フォーム関連スタイル　1025px以上
--------------------------------------------------------- */
input[type="submit"] {
   -webkit-appearance: none;
}

.p-topics #topics {
	width: 100%;
    margin: 0 auto;
}

.f14{
	font-size: 14px;
	font-style:normal;
}

em.f14{
	display: block;
	font-weight: 400;
}

.db{
	display: block;
	margin: 2em auto;
}

.inline-b{
	display: inline-block;
}



/* ---------------------------------------------------------
  フォーム確認画面　1025px以上
--------------------------------------------------------- */


/* ---------------------------------------------------------
 他　1025px以上
--------------------------------------------------------- */

/* 文字色 */
.gre01{color:#09a100;}/* グリーン */
.ore01{color:#f99300;}/* オレンジ */
.red01{color:#e61f19;}/*　赤 */
.red02{color:#ff0000;}/*　赤 */


/* =========================================================

 PC（1530px以下）

========================================================= */
/* ---------------------------------------------------------
 HOME　1530px以下
--------------------------------------------------------- */

@media screen and (max-width: 1530px) {
	
}

/* =========================================================

 PC（1199px以下）

========================================================= */
@media screen and (max-width: 1199px) {

}


/* =========================================================

 タブレット（1024px以下）

========================================================= */

@media screen and (max-width: 1024px) {

.p-topics #item-list li {
	width: 32%;
}

.p-topics #item-list li a{
	/*width:31%;
    margin:10px 2.5% 0 0;
	*/
	/*padding-bottom:15px;*/
}
/*
.p-topics #item-list li:nth-child(3n) a{
  margin-right:0
}
.p-topics #item-list li:nth-child(3n+1) a{
	clear: both;
}
*/

div.youtube {
    position: relative;
    padding-bottom: 30%;
    padding-top: 30%;
    margin: 20px 0px;
    /* height: 0; */
    overflow: hidden;
}

div.youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

}

/* =========================================================


 スマホ　767px以下


========================================================= */

@media only screen and (max-width: 767px) {

/* ---------------------------------------------------------
  フォーム　767px以下
--------------------------------------------------------- */

/* ---------------------------------------------------------
  無料体験申し込みフォーム確認画面　767px以下
--------------------------------------------------------- */




/* ---------------------------------------------------------
  他　767px以下
--------------------------------------------------------- */
.mt{margin-top:0!important}
.mt30-15{margin-top:15px}
.mt15-0{margin-top:0!important}
.mb40-40{margin-bottom:40px}

.pt60{padding-top:60px;}

.f60-50{font-size:50px;}
.f70-60{font-size:60px;}
.f40-34{font-size:34px;}
.f36-28{font-size:28px;}
.f34-26{font-size:26px;}
.f30-24{font-size:24px;}
.f28-22{font-size:22px;}
.f24-20{font-size:20px;}
.f22-18{font-size:18px;}
.f20-16{font-size:16px;}

.side15-10{margin-left:10px;margin-right:10px;}


.ttl36-28{font-size:28px;}

.float-l-c,
.float-r-c{
  float:none;
}
.float-c-l{
  float:left;
}
.float-c-r{
  float:right;
}


.ls5-3{letter-spacing:3px;}

.w34-100,
.w48-100,
.w28-100,
.w38-100,
.w58-100,
.w64-100,
.w68-100{
  width:100%;
 }
.w100-48{
  width:48%;
}
.pctab-only{
  display:none;
}
.sp-only,
.sp-block{
  display:block;
}

/* ページャー */
.p-topics .pager {
	height: auto;
}
.p-topics .pager li{
  display: inline-block;
  position: relative;
}
.p-topics .pager li a{
  /* padding:0 1em; */
}
.p-topics .pager li.btnList{
  margin-top:3.5em;
}

.p-topics .pager li.btnNext,
.p-topics .pager li.btnBack,
.p-topics .pager li.btnBefore,
.p-topics .pager li.btnAfter,
.p-topics .pager li.btnList {
  width: 100%;
  text-align: center;
  clear: both;
  margin-bottom: 10px;
}


/* 記事一覧 */
.p-topics #item-list li {
	width: 49%;
}

/* 記事メイン写真 */
.p-topics .img-box{
	width:100%;
	float:none;
	margin:auto;
	text-align: center;
}
	
/* 記事説明ボックス */
.p-topics .detail-box{
	width:100%;
	float:none;
	margin:30px auto;
}

/* 記事一覧 */
.p-topics .img-list li:nth-child(odd),
.p-topics .img-list li:nth-child(even){
  width:100%;
  margin:auto auto 25px;
  clear:none;
  float:none;
}

.p-topics a.btn001{
	width: 90%;
}

.p-topics section#topics {
    width: 95%;	
}

}

@media only screen and (max-width: 450px) {


/* 記事一覧 */
.p-topics #item-list li {
	width: 100%;
}
/*
.p-topics #item-list li a{
	width:96%;
	float:none;
	max-width:380px;
	margin:30px auto;
}
.p-topics #item-list li:nth-child(2n) a,
.p-topics #item-list li:nth-child(3n) a{
  margin-right:auto;
}
*/
}
@media only screen and (max-width: 416px) {
/*	
	.p-sub #submain_Area.submain_Area_sp h2 {
    	line-height: 1.5;
    	padding: 5px 0 0 20px;
	}
*/
}
