/* ===== 共通：オレンジラベル（LATEST ARTICLES / COLUMN / CATEGORIES 等） ===== */

.section_label{
	display: flex;
	align-items: center;
	gap: 16px;
	margin:0 0 10px 0;
	color:#e8853a;
	font-size:1.4rem;
	font-weight: bold;
	letter-spacing: 0.16em;
}

.section_label::after{
	content: '';
	display: inline-block;
	width: 60px;
	height: 1px;
	background-color: #e8853a;
}

/* ===== 共通：powered by SHINYEX バッジ ===== */

a.shinyex_badge{
	display: inline-block;
	padding: 8px 22px;
	border: 1px solid #c6c5c4;
	border-radius: 999px;
	color:#262323;
	font-size:1.2rem;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

a.shinyex_badge:hover{
	opacity: 0.6;
}

/* ===== 共通：オレンジ枠丸ボタン（講座を読む / SHINYEXで読む 等） ===== */

a.column_btn{
	position: relative;
	display: inline-block;
	min-width: 240px;
	padding: 16px 56px 16px 24px;
	border: 2px solid #e8853a;
	border-radius: 999px;
	color:#1a1a1a;
	font-size:1.5rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	background-color: #ffffff;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

a.column_btn:hover{
	background-color: #e8853a;
	color:#ffffff;
}

a.column_btn::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 14px;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	background-color: #e8853a;
	border-radius: 50%;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 6 15 12 9 18'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
}

a.column_btn:hover::after{
	background-color: #ffffff;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8853a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 6 15 12 9 18'/></svg>");
}

/* ===== イントロブロック ===== */

.intro_section{
	width:100%;
	max-width: 1200px;
	margin:60px auto 40px auto;
}

/* 上段：キャッチ＋リード */
h2.intro_catch{
	margin:0 0 12px 0;
	color:#1a1a1a;
	font-size:2.4rem;
	line-height: 1.5;
	font-weight: bold;
	letter-spacing: 0.02em;
}

@media only screen and (min-width: 860px) {
h2.intro_catch{
	font-size:3.6rem;
	line-height: 1.4;
}
}

p.intro_lead{
	margin:0 0 40px 0;
	color:#262323;
	font-size:1.4rem;
	line-height: 1.8;
}

@media only screen and (min-width: 860px) {
p.intro_lead{
	font-size:1.6rem;
	margin:0 0 40px 0;
}
}

/* 下段：左タイトル ⇔ 右SHINYEXバッジ */
.intro_titlebar{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
}

.intro_titlebar_L{
	flex: 1 1 auto;
}

h3.intro_title{
	margin:0;
	color:#1a1a1a;
	font-size:2.2rem;
	line-height: 1.4;
	font-weight: bold;
}

@media only screen and (min-width: 860px) {
h3.intro_title{
	font-size:3.0rem;
}
}

.intro_title_sub{
	display: inline-block;
	margin-left: 12px;
	color:#1a1a1a;
	font-size:1.4rem;
	font-weight: normal;
	vertical-align: middle;
}

@media only screen and (min-width: 860px) {
.intro_title_sub{
	font-size:1.6rem;
	margin-left: 16px;
}
}

.intro_titlebar_R{
	flex: 0 0 auto;
}

a.shinyex_badge{
	display: inline-block;
	padding: 8px 22px;
	border: 1px solid #c6c5c4;
	border-radius: 999px;
	color:#262323;
	font-size:1.2rem;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

a.shinyex_badge:hover{
	opacity: 0.6;
}


/* ===== 営業コラム ブロック ===== */

.column_section{
	width:100%;
	max-width: 1200px;
	margin:60px auto 40px auto;
	border-top: 1px solid #e0dfde;
	padding-top: 40px;
}

h2.column_title{
	margin:0 0 30px 0;
	color:#1a1a1a;
	font-size:2.4rem;
	line-height: 1.4;
	font-weight: bold;
}

@media only screen and (min-width: 860px) {
h2.column_title{
	font-size:3.6rem;
	margin:0 0 40px 0;
}
}

/* 本体：左画像／右テキスト */
.column_body{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media only screen and (min-width: 860px) {
.column_body{
	flex-direction: row;
	align-items: stretch;
	gap: 40px;
}
}

.column_body_L{
	flex: 0 0 auto;
	width: 100%;
}

@media only screen and (min-width: 860px) {
.column_body_L{
	width: 26%;
	max-width: 400px;
}
}

.column_body_L img{
	display: block;
	width: 100%;
	max-width: 300px;
	height: auto;
}

.column_body_R{
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

@media only screen and (min-width: 860px) {
.column_body_R{
	padding: 10px 0;
}
}

h3.column_article_title{
	margin:0 0 18px 0;
	color:#1a1a1a;
	font-size:1.6rem;
	line-height: 1.6;
	font-weight: bold;
}

@media only screen and (min-width: 860px) {
h3.column_article_title{
	font-size:1.8rem;
	margin:0 0 22px 0;
}
}

p.column_article_text{
	margin:0 0 24px 0;
	color:#262323;
	font-size:1.4rem;
	line-height: 1.9;
}

@media only screen and (min-width: 860px) {
p.column_article_text{
	font-size:1.5rem;
	line-height: 2.0;
	margin:0 0 30px 0;
}
}

/* オレンジ枠の丸ボタン */
.column_btn_area{
	margin-top: auto;
	text-align: center;
}

@media only screen and (min-width: 860px) {
.column_btn_area{
	text-align: right;
}
}

a.column_btn{
	position: relative;
	display: inline-block;
	min-width: 240px;
	padding: 16px 56px 16px 24px;
	border: 2px solid #e8853a;
	border-radius: 999px;
	color:#1a1a1a;
	font-size:1.5rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	background-color: #ffffff;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

a.column_btn:hover{
	background-color: #e8853a;
	color:#ffffff;
}

/* ボタン右側の丸＋矢印アイコン */
a.column_btn::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 14px;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	background-color: #e8853a;
	border-radius: 50%;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 6 15 12 9 18'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
}

a.column_btn:hover::after{
	background-color: #ffffff;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8853a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 6 15 12 9 18'/></svg>");
}


/* ===== カテゴリーブロック（テーマから読む） ===== */

.category_section{
	width:100%;
	max-width: 1200px;
	margin:60px 0 40px 0;
	border-top: 1px solid #e0dfde;
	padding-top: 40px;
}

/* 上段：ラベル＋タイトル ⇔ SHINYEXバッジ */
.category_titlebar{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	margin:0 0 30px 0;
}

@media only screen and (min-width: 860px) {
.category_titlebar{
	margin:0 0 40px 0;
}
}

.category_titlebar_L{
	flex: 1 1 auto;
}

h2.category_title{
	margin:0;
	color:#1a1a1a;
	font-size:2.4rem;
	line-height: 1.4;
	font-weight: bold;
}

@media only screen and (min-width: 860px) {
h2.category_title{
	font-size:3.6rem;
}
}

.category_titlebar_R{
	flex: 0 0 auto;
}

/* カードグリッド */
.category_grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

@media only screen and (min-width: 600px) {
.category_grid{
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
}

@media only screen and (min-width: 860px) {
.category_grid{
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
}

/* 各カード */
a.category_card{
	display: flex;
	flex-direction: column;
	border: 1px solid #f4d4b0;
	border-radius: 12px;
	background-color: #ffffff;
	overflow: hidden;
	text-decoration: none;
	color:#1a1a1a;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.category_card:hover{
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(232, 133, 58, 0.18);
}

/* カード上半分：アイコンエリア（白背景） */
.category_card_icon{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	padding: 24px 16px;
	min-height: 90px;
}

.category_card_icon img{
	display: block;
	width: 56px;
	height: 56px;
}

@media only screen and (min-width: 860px) {
.category_card_icon{
	padding: 14px 16px;
	min-height: 50px;
}
.category_card_icon img{
	width: 42px;
	height: 42px;
}
}

/* カード下半分：ラベルエリア（薄オレンジ背景） */
.category_card_label{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fbe9d4;
	padding: 16px 32px 16px 12px;
	min-height: 70px;
	font-size:1.3rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
}

@media only screen and (min-width: 860px) {
.category_card_label{
	font-size:1.5rem;
	padding: 14px 36px 14px 12px;
	min-height: 42px;
}
}

/* 右下のオレンジ丸＋矢印 */
.category_card_label::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 22px;
	height: 22px;
	margin-top: -11px;
	background-color: #e8853a;
	border-radius: 50%;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 6 15 12 9 18'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 10px 10px;
}

@media only screen and (min-width: 860px) {
.category_card_label::after{
	width: 24px;
	height: 24px;
	margin-top: -12px;
	right: 12px;
	background-size: 12px 12px;
}
}


/* ===== SHINYEX 紹介ブロック ===== */

.shinyex_section{
	width:100%;
	max-width: 1200px;
	margin:40px 0 60px 0;
	padding:40px 0 0 0;
	border-top:1px solid #e0dfde;
}

.shinyex_body{
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin:0 0 30px 0;
}

@media only screen and (min-width: 860px) {
.shinyex_body{
	flex-direction: row;
	align-items: flex-start;
	gap: 40px;
	margin:0 0 30px 0;
}
}

.shinyex_body_L{
	flex: 0 0 auto;
	width: 200px;
	max-width: 100%;
}

@media only screen and (min-width: 860px) {
.shinyex_body_L{
	width: 260px;
	padding-top: 4px;
}
}

.shinyex_body_L img{
	display: block;
	width: 100%;
	height: auto;
}

.shinyex_body_R{
	flex: 1 1 auto;
}

p.shinyex_text{
	margin:0;
	color:#262323;
	font-size:1.4rem;
	line-height: 2.0;
}

@media only screen and (min-width: 860px) {
p.shinyex_text{
	font-size:1.5rem;
	line-height: 2.2;
}
}

.shinyex_btn_area{
	text-align: center;
}

@media only screen and (min-width: 860px) {
.shinyex_btn_area{
	text-align: right;
}
}

/* 記事一覧 */

.new_article{
	width:100%;
	max-width: 1200px;
	margin:0 auto;
}

.new_article ul{
	margin:0 0 20px 0;
}

.new_article ul li{
	list-style: none;
}

.new_article li{
	width:100%;
	float: left;
	margin:0 0 25px 0;
}

@media only screen and (min-width: 480px) {
.new_article li{
	width:46%;
	float: left;
	margin:0 0 25px 0;
}
}

@media only screen and (min-width: 860px) {
.new_article li{
	width:31%;
	margin:0;
}
}

.article-container {
   display: flex;
   flex-flow: row wrap;
  justify-content: flex-start;
  gap: 25px 3.5%;
}

.new_article li:last-child{
	margin:0;
}

.new_article_thum{
	border:1px solid #e0e0e0;
	margin:0 0 10px 0;
}

.new_article_thum img{
	width:100%;
	max-width:none; 
}



.new_article_day{
	color:#7f7f7e;
	font-size:1.4rem;
	margin:0 0 5px 0;
	width:100%;
}

.new_article_lead{
	color:#262323;
	font-size:1.6rem;
	margin:0 0 15px 0;
	width:100%;
	line-height: 180%;
    height: calc(1.8em * 2);
	 overflow: hidden;
}


/* hover画像　拡大 */

.new_article_thum{
	overflow:hidden;
}

.new_article_thum img{
	overflow:hidden;
	transition:1s all;
	 object-fit: cover;
	aspect-ratio: 16 / 9;
}

.new_article_thum img:hover{
	transform:scale(1.08,1.08);
	transition:1s all;
}

.new_article_lead:hover{
	opacity: 0.6;
}


/* もっと見る　ボタン */

.article_more_btn a{
	position: relative;
  display: block;
  max-width: 858px;
	height: 58px;
  font-size: 1.4rem;
	font-weight: bold;
  color: #302a28;
  text-decoration: none;
  text-align: center;
  border:1px solid #262323;
	vertical-align: middle;
	line-height: 5.3rem;
	margin:0 auto;
}


.article_more_btn a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #686868;
  border-right: 2px solid #686868;
  transform: rotate(45deg);
  box-sizing: border-box;
}



.article_detail_btn {
  position: relative;
  padding: 0 10px; /* 見た目調整用の余白 */
  color: #262323;
  font-size: 60px;
  background-color: #fff;
}

.article_detail_btn::before {
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  background-color: #fff;
  mix-blend-mode: difference; /* difference（差分） */
  transition: 0.3s;
}

.article_detail_btn:hover::before {
  width: 100%;
}

/* ===== スマホ／タブレットでの左右余白 ===== */
/* .main-Area_type10 配下のコンテンツが画面端に張り付かないようにする */
/* （FAQブロックは .main-Area_type10 の外側にあり、.faq_inner で別途余白を取っている） */

.main-Area_type10{
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

/* 1060px以上（= 1020px本体 + 左右余白40px）では余白を解除して従来通り */
@media only screen and (min-width: 1060px){
	.main-Area_type10{
		padding-left: 0;
		padding-right: 0;
	}
}

/* 記事ページ */

#article_area{
	margin:30px 0 0 0;
}

.article_date{
	coloro:#9b9b9b;
	font-size: 14px;
}

h2.article_tag_area{
	margin:8px 0;
	width:100%;
}

h2.article_tag_area ul li{
	list-style: none;
}

h2.article_tag_area li{
	float: left;
    font-size: 1.2rem;
    border: 1px solid #7f7f7f;
    border-radius: 20px;
    padding: 3px 10px;
    margin: 0 5px 8px 0;
    background-color: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #000;
}

h2.article_tag_area li:hover{
	background-color:#f4f4f4;
	border:1px solid #a3a2a2;
}

h3.article_main_title{
	margin:20px 0 26px 0;
	font-size:2.0rem;
	line-height: 3.2rem;
	font-weight: bold;
	color:#000;
}

@media only screen and (min-width: 860px) {
h3.article_main_title{
	font-size:2.4rem;
	line-height: 3.8rem;
}
}

.article_main_thum{
	margin:0 0 30px 0;
	float: left;
	width:100%;
	clear: both;
}

.article_main_thum img{
	border: 1px solid #e0e0e0;
	max-width: 800px;
	width:100%;
}


/* カード枠 */
.article_other{
  border: 1px solid #e0e0e0;
  margin: 0 0 30px 0;
  width: 100%;
  box-sizing: border-box;
}

/* a をカード本体（flex）にする */
.article_other > a{
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 0 0 18px;
  box-sizing: border-box;

  color: #222;              /* リンク色を消す */
  text-decoration: none;    /* 下線を消す */
  transition: opacity .2s ease;
}

/* ホバーで全体を少し透過 */
.article_other > a:hover{
  opacity: 0.7;
}

/* 左カラム */
.article_other_L{
  flex: 1 1 auto;
  min-width: 0;
}

/* 左の文字（img_titleがaタグじゃないので、aに対して指定するのが安全） */
.article_other_L,
.article_other_L p,
.article_other_L div,
.article_other_L span{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

/* 右カラム */
.article_other_R{
  flex: 0 0 300px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* 画像 */
.article_other_R img.preview{
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

/* ===== スマホ：縦並び ===== */
@media (max-width: 860px){
  .article_other > a{
    flex-direction: column;
    align-items: flex-start;
  }

  .article_other_R{
    width: 100%;
    flex: none;
    margin-top: 12px;
    justify-content: flex-start;
  }

  .article_other_R img.preview{
    max-width: 100%;
  }
}



.text_frame_01{
	background-color:#f7f6f5;
	padding:30px;
	margin:0 0 30px 0;
	width:100%;
	clear: both;
}

h4.article_summary{
	width:100%;
	font-size:1.6rem;
	font-weight: bold;
	border-bottom:1px solid #d1d1d1;
	padding:0 0 18px 0;
	margin:0 0 26px 0;
	clear: both;
}

p.text_type_01{
	font-size: 1.6rem;
	line-height: 3.2rem;
	color:#000000;
}

ul.article_summary_list{
	list-style-type: disc;
	padding-left: 30px;
}

ul.article_summary_list li{
	color:#000;
	font-size:1.7rem;
	line-height: 3.6rem;
	padding-left:
}

/* プロフィール */
.profile_area{
	margin:0 0 30px 0;
	padding:28px 0;
	border-top:1px solid #898886;
	border-bottom:1px solid #898886;
	clear: both;
	width: 100%;
}

.profile_inner{
	margin:0;
}

@media only screen and (min-width: 860px) {
.profile_inner{
	margin:0 32px;
}

}

.profile_title{
	font-size:16px;
	font-weight: bold;
	margin:0 0 22px 0;
}

.profile_inner_frame{
	width:100%;
	margin:0 0 30px 0;
}

.profile_inner_L{
	float: left;
	width:75%;
	padding:0 20px 0 0;
	border-right:1px dotted #999999;
}

.profile_inner_R{
	float: left;
	padding:0 0 0 30px;
	width:22%;
	text-align: center;
}

.profile_inner_R img{
	width:100%;
	max-width: 140px;
}

p.profile_sentence{
	font-size:1.3rem;
	line-height: 2.6rem;
}

.profile_inquiry_area{
	width:100%;
}


.profile_inquiry_btn a{
	position: relative;
  display: block;
  max-width: 232px;
	height: 50px;
  font-size: 1.4rem;
	font-weight: bold;
  color: #302a28;
  text-decoration: none;
  text-align: center;
  border:1px solid #262323;
	vertical-align: middle;
	line-height: 4.8rem;
	margin:0 auto;
}


.profile_inquiry_btn a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #686868;
  border-right: 2px solid #686868;
  transform: rotate(45deg);
  box-sizing: border-box;
}

.consult_btn {
  position: relative;
  padding: 0 10px; /* 見た目調整用の余白 */
  color: #262323;
  font-size: 60px;
  background-color: #fff;
}

.consult_btn::before {
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  background-color: #fff;
  mix-blend-mode: difference; /* difference（差分） */
  transition: 0.3s;
}

.consult_btn:hover::before {
  width: 100%;
}

h4.article_sub_title{
	margin:0 0 20px 0;
	border-left:4px solid #000000;
	padding:4px 0 4px 30px;
	font-size:2.0rem;
	line-height: 3.2rem;
	font-weight: bold;
	width: 100%;
	clear: both;
}

@media only screen and (min-width: 860px) {
h4.article_sub_title{
	margin:0 0 30px 0;
	font-size:2.4rem;
	line-height: 4.0rem;
}
}

p.article_text{
	color:#000000;
	font-size:1.6rem;
	line-height: 3.2rem;
	width:100%;
	clear: both;
	padding:0 3px;
	margin: 0 0 30px 0;
}

p.article_text a{
	color:#000000;
	text-decoration: underline;
}

p.article_text a:hover{
	opacity: 0.6;
}


@media only screen and (min-width: 860px) {
p.article_text{
	line-height: 3.8rem;
	margin: 0 0 30px 0;
}
}

.spacer_01{
	margin:0 0 30px 0;
	clear:both;
}

@media only screen and (min-width: 860px) {
.spacer_01{
	margin:0 0 60px 0;
}
}


h5.article_ss_title{
	margin:0 0 20px 0;
	background-color:#f4f4f4;
	padding:14px 20px;
	font-size:1.8rem;
	line-height: 3.0rem;
	font-weight: bold;
	width: 100%;
	clear: both;
}

@media only screen and (min-width: 860px) {
h5.article_ss_title{
	margin:0 0 30px 0;
}
}

/* 関連記事 */
.related_articles{
}

.related_title{
	padding:20px 0 0 0;
	margin:20px 0 30px 0;
	color:#000;
	font-weight: bold;
	font-size: 2.0rem;
}

/* 破線 */
.dashed_2 {
  background-image : linear-gradient(to right, #969696, #969696 2px, transparent 2px, transparent 5px);  /* 幅2の線を作る */
  background-size: 5px 1px;          /* グラデーションの幅・高さを指定 */
  background-position: left top;  /* 背景の開始位置を指定 */
  background-repeat: repeat-x;       /* 横向きにのみ繰り返す */
}


/* ウェビナー */


h3.webinar_s_title{
	font-size:1.6rem;
	font-weight: bold;
	line-height: 2.8rem;
}

h3.webinar_ss_title{
	font-size:1.6rem;
	line-height: 2.8rem;
}

h3.webinar_main_title{
	margin:10px 0 20px 0;
	font-size: 2.0rem;
	line-height: 3.0rem;
	font-weight: bold;
	color:#000;
}

@media only screen and (min-width: 860px) {
h3.webinar_s_title{
	font-size:1.8rem;
	font-weight: bold;
	line-height: 3.2rem;
}

h3.webinar_ss_title{
	font-size:1.8rem;
	line-height: 3.2rem;
}
h3.webinar_main_title{
	margin:10px 0 26px 0;
	font-size: 2.4rem;
	line-height: 3.8rem;
}
}

.webinar_data{
	font-size:2.0rem;
	line-height: 3.0rem;
	paddng:0 3px;
	margin:0 0 30px 0;
}

hr.hr_1 {
    height: 1px;
    border: none;
    border-top: 1px #d1d1d1 solid;
}


/* 検索結果 */

h3.keyword_title{
	margin:10px auto 50px auto;
	font-size:2.0rem;
	line-height: 4.2rem;
	font-weight: bold;
	text-align: left;
	width: 100%;
	max-width: 1200px;
	clear: both;
}


/* ページネーション */

.pagination-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    list-style-type: none;
    padding: 0;
	margin:0 0 60px 0;
}

.pagination-1 a {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5em;
    height: 2.5em;
    border: 1px solid #a5a5a5;
    border-radius: 25px;
    color: #262323;
	font-size:1.6rem;
	background-color:#FFFFFF;
}

.pagination-1 a:not(:hover) {
    text-decoration: none;
	background-color:#f4f4f4;
}

.pagination-1 .current a {
    background-color: #262323;
    color: #fff;
    pointer-events: none;
}

.pagination-1 .prev a,
.pagination-1 .next a {
    gap: 0 4px;
    width: auto;
    padding: .5em .8em;
    line-height: 1;
}

.pagination-1 .prev a::before,
.pagination-1 .next a::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    content: '';
}

.pagination-1 .prev a::before {
    border-bottom: 1px solid #000000;
    border-left: 1px solid #000000;
	background-color:#FFFFFF;
}

.pagination-1 .next a::after {
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
	background-color:#f4f4f4;
}