

/* コンテンツエリア */
/******************************** 1カラム */
.ly_cont {
	max-width: 1230px;
  	padding: 60px 15px;
  	margin-right: auto;
 	margin-left: auto;
}
.hp_bgcBase {
	background-color: #efefef !important;
}

/******************************** 2カラム  */
.ly_cont.ly_cont__col {
	display: flex;
	justify-content: space-between;
}
.ly_cont_main {
	flex: 1;
	margin-right: 3.25203%;
}
.ly_cont_side {
	flex: 0 0 260px;
}

/* メディアクエリ適用時 */
@media screen and (max-width: 768px) {
	.ly_cont.ly_cont__col {
		flex-direction: column;
  }

.ly_cont_main {
	margin-right: 0;
    margin-bottom: 60px;
  }
}

/* ボタン */
/******************************** 標準ボタン */
.el_btn {
	display: inline-block;
  	width: 300px;
  	max-width: 100%;
  	padding: 20px 10px;
  	background-color: #e25c00;
  	border: 2px solid transparent;
  	box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  	color: #fff;
  	font-size: 1.125rem;
  	text-align: center;
  	text-decoration: none;
  	transition: .25s;
}
.el_btn:focus,
.el_btn:hover {
	background-color: #fff;
  	border-color: currentColor;
  	color: #e25c00;
}

/******************************** 拡張パターン：矢印付き */
.el_btn.el_btn__arrowRight {
	position: relative;
  	padding-right: 2em;
  	padding-left: 1.38em;
}
.el_btn.el_btn__arrowRight::after {
	content: '\f061';
  	position: absolute;
  	top: 50%;
  	right: .83em;
  	font-family: 'Font Awesome 5 Free';
  	font-weight: 900;
  	transform: translateY(-50%);
}

/******************************** 拡張パターン：大ボタン */
.el_btn.el_btn__large {
	width: 340px;
  	padding-top: 25px;
  	padding-bottom: 25px;
  	font-size: 1.375rem;
}

****************************** 拡張パターン：色違い */
.el_btn.el_btn__yellow {
	background-color: #f1de00;
  	color: #222;
}
.el_btn.el_btn__yellow:focus,
.el_btn.el_btn__yellow:hover {
	border-color: #f1de00;
  	background-color: #fff;
}

/******************************** バリエーション：角丸ボタン */
.el_roundedBtn {
	display:  inline-block;
  	width:  236px;
  	max-width: 100%;
  	padding:  15px 10px;
  	background-color:  #e25c00;
  	border:  2px solid transparent;
  	border-bottom-color:  #d40152;
  	border-radius:  10px;
  	color:  #fff;
  	font-size:  1.125rem;
  	text-align:  center;
  	text-decoration:  none;
  	transition:  .25s;
}
.el_roundedBtn:focus,
.el_roundedBtn:hover {
	background-color:  #fff;
  	border-color:  currentColor;
  	color:  #e25c00;
}

/* アイコン付き小ボタン：ダウンロード */
.el_beforeIconBtn {
	position: relative;
  	display: inline-block;
  	padding: .2em .3em;
  	border: 1px solid currentColor;
  	color: #e25c00;
  	text-decoration: none;
  	transition: .25s;
}
.el_beforeIconBtn:focus,
.el_beforeIconBtn:hover {
	background-color: #e25c00;
	color: #fff;
}
.el_beforeIconBtn::before {
	display: inline-block;
  	margin-right: .5em;
  	font-family: 'Font Awesome 5 Free';
  	font-weight: 900;
}
.el_beforeIconBtn.el_beforeIconBtn__download::before {
	content: '\f019';
}

 /********************************* 拡張パターン：アイコン違い */
.el_beforeIconBtn.el_beforeIconBtn__zoom::before {
	content: '\f00e';
  	transform: translateY(-6%);
}

/* アイコン（PDF） */
.el_beforeIcon::before {
	display: inline-block;
 	 margin-right: .3em;
  	color: #e25c00;
  	font-family: 'Font Awesome 5 Free';
  	font-weight: 400;
}
.el_beforeIcon.el_beforeIcon__pdf::before {
  content: '\f1c1';
}

 /******************************* 拡張パターン：＜戻る */
.el_beforeIcon.el_beforeIcon__chevLeft::before {
	content: '';
  	width: .375em;
  	height: .375em;
  	border-bottom: .125em solid #e25c00;
  	border-left: .125em solid #e25c00;
  	transform: rotate(45deg) translateY(-30%);
}

 /******************************* バリエーション：進む＞ */
.el_afterIcon::after {
	display: inline-block;
  	margin-left: .3em;
  	color: #e25c00;
  	font-family: 'Font Awesome 5 Free';
  	font-weight: 900;
}
.el_afterIcon.el_afterIcon__chevRight::after {
	content: '';
  	width: .375em;
  	height: .375em;
  	border-top: .125em solid #e25c00;
  	border-right: .125em solid #e25c00;
  	transform: rotate(45deg);
}


/* ラベル */
.el_label {
	display: inline-block;
  	padding: .2em .3em;
  	background-color: #e25c00;
  	color: #fff;
  	font-size: .75rem;
  	font-weight: bold;
}

/******************************* 拡張パターン：色違い */
.el_label.el_label__yellow {
	background-color: #f1de00;
  	color: #000;
}

/******************************** 拡張パターン；リンク */
.el_label {
	border: 2px solid transparent;
}
a.el_label {
	text-decoration: none;
  	transition: .25s;
}
a.el_label:focus,
a.el_label:hover {
	background-color: #fff;
  	border-color: currentColor;
  	color: #e25c00;
}
/******************************** バリエーション：角丸ラベル  */
.el_roundedLabel {
	display: inline-block;
 	padding: .3em .9em;
  	background-color: #e25c00;
  	border-radius: 1em;
  	color: #fff;
  	font-size: .75rem;
  	font-weight: bold;
}

.el_afterIcon.el_afterIcon__chevRight::after {
	content: '';
  	width: .375em;
  	height: .375em;
  	border-top: .125em solid #e25c00;
 	border-right: .125em solid #e25c00;
  	transform: rotate(45deg);
}

/* 見出し */
.el_lv1Heading {
	padding:  30px 10px;
  	background-color:  #e25c00;
  	color:  #fff;
  	font-size:  1.75rem;
  	text-align:  center;
}
.el_lv1Heading > span {
	position: relative;
  	display: inline-block;
  	transform: translateY(-20%);
}
.el_lv1Heading > span::after {
	content: '';
  	position: absolute;
  	bottom: -10px;
  	left: 50%;
 	width: 80px;
  	height: 1px;
  	background-color: currentColor;
  	transform: translateX(-50%);
}
.el_lv2Heading {
	padding-bottom: 10px;
  	border-bottom: 4px solid #e25c00;
  	font-size: 1.75rem;
  	font-weight: bold;
}
.el_lv3Heading {
	padding-bottom: 6px;
	border-bottom: 2px solid #e25c00;
	font-size: 1.5rem;
	font-weight: bold;
}
.el_lv4Heading {
	padding-left: 6px;
  	border-left: 2px solid #e25c00;
  	font-size: 1.25rem;
  	font-weight: bold;
}
.el_lv5Heading {
	color: #e25c00;
  	font-size: 1.125rem;
  	font-weight: bold;
}
.el_lv6Heading {
	font-size: 1.125rem;
}
/* 注釈 */
.el_caution {
	color: #d40152;
}
/************************* バリエーション；補足・付記 */
.el_note {
	font-size: .75rem;
}

/* メディア */
.bl_media {
	display: flex;
	align-items: center;
	font-size: 16p;
	line-height: 1.5;
}
.bl_media_imgWrapper {
	flex: 0 1 27.58333%;
	margin-right: 3.33333%;
}
.bl_media_imgWrapper > img {
	width: 100%;
	max-width: 100%;
	
}
.bl_media_body {
	flex: 1;
	text-align: left;
}
.bl_media_body > *:last-child {
	margin-bottom: 0;
}
.bl_media_ttl {
	margin-bottom: 10px;
	font-size: 1.125rem;
	font-weight: bold;
}
.bl_media_txt {
	/* css-wipeではスタイリングなし */
}

/* メディアクエリ適用時 */
@media screen and (max-width: 768px) {
	.bl_media {
		display: block;
  }
  .bl_media_imgWrapper {
	  margin-right: 0;
	  margin-bottom: 20px;
  }
}

/******************************** 拡張パターン：；逆位置 */
.bl_media.bl_media__rev {
	flex-direction: row-reverse;
}
.bl_media__rev .bl_media_imgWrapper {
	margin-right: 0;
}
.bl_media__rev .bl_media_body {
	margin-right: 3.33333%;
  	text-align: right;
}
/* メディアクエリ適用時 */
@media screen and (max-width: 768px) {
	.bl_media__rev .bl_media_body {
		margin-right: 0;
  }
}

/*********************** バリエーション：画像半分サイズ */
.bl_halfMedia {
	display: flex;
	align-items: center;	
}
.bl_halfMedia_imgWrapper {
	flex: 0 1 48.33333%;
	margin-right: 3.33333%;
}
.bl_halfMedia_imgWrapper > img {
	width: 100%;
}
.bl_halfMedia_body {
	flex: 1;
}
.bl_halfMedia_body > *:last-child {
	margin-bottom: 0;
}
.bl_halfMedia_ttl {
	margin-bottom: 10px;
	font-size: 1.125rem;
	font-weight: bold;
}
.bl_halfMedia_txt {
  /* css-wipeではスタイリングなし */
}

@media screen and (max-width: 768px) {
	.bl_halfMedia {
		display: block;
  }
  	.bl_halfMedia_imgWrapper {
		margin-right: 0;
		margin-bottom: 20px;
  }
}

/* カード */
.bl_description {
	font-weight: 600;
	margin-bottom: 5px;
	margin-top: 10px;
}
.bl_card {
	width: 100%;
	background-color: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.bl_card_imgWrapper {
	position: relative;
	padding-top: 56.25%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
	margin: 0;
}
.bl_card_imgWrapper > img {
	position: absolute;
	top: 50%;
	width: 100%;
	height: auto
	object-fit: cover;
	transform: translateY(-50%);
}
.bl_card_body {
	padding: 15px;
}
.bl_card_body > *:last-child {
	margin-bottom: 0;
}
.bl_card_ttl {
	margin-bottom: 5px;
	font-size: 1.125rem;
    font-weight: bold;
}
.bl_card_txt {
	color: #777;
	margin-top: 0;
}

.bl_cardUnit {
  display: flex;
  flex-wrap: wrap;
}
 
// 拡張パターン：3カラム
.bl_cardUnit.bl_cardUnit__col3 {
  margin-bottom: -30px;
}
.bl_cardUnit__col3 > .bl_card {
	width: 31.707%;
	margin-right: 2.43902%;
	margin-bottom: 30px;
}
.bl_cardUnit__col3 > .bl_card:nth-child(3n) {
	margin-right: 0;
}

// 拡張パターン：4カラム
.bl_cardUnit.bl_cardUnit__col4 {
	margin-bottom: -20px;
}
.bl_cardUnit__col4 > .bl_card {
	width:  23.78%;
	margin-right: 1.62602%;
	margin-bottom: 20px;
}
.bl_cardUnit__col4 > .bl_card:nth-child(4n) {
	margin-right: 0;
}

/* メディアクエリ適用時 */
@media screen and (max-width: 768px) {
  .bl_cardUnit.bl_cardUnit__col3 {
    margin-bottom: -20px;
  }
  .bl_cardUnit.bl_cardUnit__col4 {
    margin-bottom: -15px;
  }	
  .bl_cardUnit > .bl_card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}


/************************ 拡張パターン：バッチ付き */
.bl_card_badge {
	position: relative;
}
.bl_card_badge::after {
	content: '';
 	position: absolute;
	z-index: 1;
  	top: 0;
  	left: 0;
  	width: 0;
  	height: 0;
  	border-width: 3.75rem 3.75rem 0 0;
  	border-style: solid;
  	border-color: #e25c00 transparent transparent transparent;
}
.bl_card_badge_txt {
	position: absolute;
  	z-index: 2;
  	top: .5rem;
  	left: .3125rem;
  	color: #fff;
  	font-size: .875rem;
  	font-weight: bold;
  	transform: rotate(-45deg);
}

/************************** 拡張パターン：リンク */
a.bl_card {
	display: block;
  	color: currentColor;
  	text-decoration: none;
  	transition: .25s;
}
a.bl_card .bl_card_ttl,
a.bl_card .bl_card_txt {
	transition: .25s;
}
a.bl_card:focus,
a.bl_card:hover {
	opacity: .75;
}
a.bl_card:focus .bl_card_ttl,
a.bl_card:focus .bl_card_txt,
a.bl_card:hover .bl_card_ttl,
a.bl_card:hover .bl_card_txt {
	color: #e25c00;
  	text-decoration: underline;
}



/* テーブル水平 */
.bl_horizTable {
  border: 1px solid #ddd;
}
.bl_horizTable table {
	width: 100%;
}
.bl_horizTable th {
	width: 20%;
  	padding: 15px;
 	background-color: #efefef;
  	border-bottom: 1px solid #ddd;
 	font-weight: bold;
 	vertical-align: middle;
}
.bl_horizTable td {
	padding: 15px;
  	border-bottom: 1px solid #ddd;
}
.bl_horizTable tr:last-child th,
.bl_horizTable tr:last-child td {
	border-bottom-width: 0;
}

/******************** 拡張パターン：メディアクエリ時のスクロール */
@media screen and (max-width: 768px) {
  .bl_horizTable.bl_horizTable__mdScroll {
    border-right-width: 0;
    overflow-x: auto;
  }

.bl_horizTable.bl_horizTable__mdScroll th,
.bl_horizTable.bl_horizTable__mdScroll td {
	white-space: nowrap;
  }

  .bl_horizTable.bl_horizTable__mdScroll td {
    border-right: 1px solid #ddd;
  }
}

/* テーブル（垂直） */
.bl_vertTable {
	border: 1px solid #ddd;
}

.bl_vertTable table {
	width: 100%;
  	text-align: center;
  	table-layout: fixed;
}

.bl_vertTable thead tr {
	background-color: #efefef;
}

.bl_vertTable th {
	padding: 15px;
  	border-right: 1px solid #ddd;
  	border-bottom: 1px solid #ddd;
  	font-weight: bold;
  	vertical-align: middle;
}

.bl_vertTable td {
	padding: 15px;
  	border-right: 1px solid #ddd;
  	border-bottom: 1px solid #ddd;
  	vertical-align: middle;
}

.bl_vertTable th:last-child,
.bl_vertTable td:last-child {
	border-right-width: 0;
}

.bl_vertTable tbody tr:last-child td {
	border-bottom-width: 0;
}

@media screen and (max-width: 768px) {
  .bl_vertTable {
    border-right-width: 0;
    overflow-x: auto;
  }

  .bl_vertTable table {
	  width: auto;
	  min-width: 100%;
  }

.bl_vertTable th,
.bl_vertTable td {
	white-space: nowrap;
  }

.bl_vertTable th:last-child,
.bl_vertTable td:last-child {
	border-right-width: 1px;
  }
}

/* テーブル（交差） */
.bl_crossTable {
	border: 1px solid #ddd;
}

.bl_crossTable table {
	width: 100%;
	text-align: center;
	table-layout: fixed;
}

.bl_crossTable th {
	padding: 15px;
  	background-color: #efefef;
  	border-right: 1px solid #ddd;
  	border-bottom: 1px solid #ddd;
  	font-weight: bold;
  	vertical-align: middle;
}

.bl_crossTable td {
	padding: 15px;
  	border-right: 1px solid #ddd;
  	border-bottom: 1px solid #ddd;
  	vertical-align: middle;
}

.bl_crossTable th:last-child,
.bl_crossTable td:last-child {
	border-right-width: 0;
}

.bl_crossTable tbody tr:last-child th,
.bl_crossTable tbody tr:last-child td {
	border-bottom-width: 0;
}

@media screen and (max-width: 768px) {
  .bl_crossTable {
    border-right-width: 0;
    overflow-x: auto;
}
.bl_crossTable table {
	width: auto;
    min-width: 100%;
}
.bl_crossTable th,
.bl_crossTable td {
    white-space: nowrap;
  }
.bl_crossTable th:last-child,
.bl_crossTable td:last-child {
    border-right-width: 1px;
  }
.bl_crossTable_mdSticky {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
  }
}

/* ページャー */
.bl_pager {
	display: flex;
	overflow-x: auto;
}
.bl_pager_inner {
	display: flex;
  	margin-right: auto;
 	 margin-left: auto;
}
.bl_pager_inner > *:last-child {
	margin-right: 0;
}
.bl_pager_inner > li {
	margin-right: 15px;
}
.bl_pager_link {
	display: flex;
  	align-items: center;
  	justify-content: center;
  	width: 40px;
  	height: 40px;
  	border: 1px solid currentColor;
  	color: #e25c00;
  	text-decoration: none;
  	transition: .25s;
}
.bl_pager_link:focus,
.bl_pager_link:hover {
	background-color: #e25c00;
  	color: #fff;
  	opacity: .75;
}
.bl_pager_link.is_active {
	background-color: #e25c00;
	color: #fff;
	pointer-events: none;
}

/* タブナビゲーション */
.bl_tabNav_inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -10px;
}
.bl_tabNav_link {
	display: inline-block;
	padding-right: 30px;
  	padding-bottom: 10px;
  	padding-left: 30px;
 	margin-bottom: 10px;
  	border-bottom: 4px solid #efefef;
  	color: #777;
  	text-decoration: none;
  	transition: .25s;
}
.bl_tabNav_link:focus,
.bl_tabNav_link:hover {
  	border-bottom-color: currentColor;
  	color: #e25c00;
  	opacity: .75;
}

.bl_tabNav_link.is_active {
	border-bottom-color: currentColor;
  	color: #e25c00;
  	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.bl_tabNav {
		overflow-x: auto;
  }

  .bl_tabNav_inner {
	  flex-wrap: nowrap;
	  justify-content: flex-start;
	  margin-bottom: 0;
	  white-space: nowrap;
  }
}

/* CTAエリア */
.bl_cta {
	padding: 30px;
  	background-color: rgba(221, 116, 44, .05);
  	border: 1px solid #e25c00;
  	text-align: center;
}
.bl_cta > *:last-child {
	margin-bottom: 0;
}
.bl_cta_ttl {
	padding-bottom: 10px;
  	margin-top: -6px;
  	margin-bottom: 40px;
  	border-bottom: 1px solid currentColor;
  	color: #e25c00;
  	font-size: 1.5rem;
  	font-weight: bold;
}

/* 料金表 */
.bl_priceUnit {
	display: flex;
  	align-items: flex-start;
  	justify-content: center;
}
.bl_priceUnit .bl_price {
  	flex: 1;
  	margin-right: 2.43902%;
}
.bl_priceUnit .bl_price:last-child {
	margin-right: 0;
}

@media screen and (max-width: 768px) {
  .bl_priceUnit {
	  display: block;
  }

  .bl_priceUnit .bl_price {
	  margin-right: 0;
	  margin-bottom: 30px;
  }

  .bl_priceUnit .bl_price:last-child {
	  margin-bottom: 0;
  }
}

.bl_price {
	border: 1px solid #ddd;
}

.bl_price_header {
	padding: 10px;
  	background-color: #e25c00;
  	color: #fff;
  	text-align: center;
}

.bl_price_ttl {
	font-size: 1.125rem;
}

.bl_price_price {
	font-size: 1.875rem;
}

.bl_price_price span {
	font-size: 1rem;
}

.bl_price_body {
	padding: 15px;
}

.bl_price_body > *:last-child {
	margin-bottom: 0;
}

.bl_price_lead {
	margin-bottom: 20px;
}

.bl_price_features {
	text-align: center;
}

.bl_price_features > *:last-child {
	margin-bottom: 0;
}

.bl_price_features dt {
	padding: 5px;
	margin-bottom: 10px;
  	background-color: #efefef;
}

.bl_price_features dd {
	margin-bottom: 20px;
}

/* FQA */
.bl_faq {
  /* css-wipeではスタイリングなし */
}
.bl_faq > *:last-child {
	margin-bottom: 0;
}
.bl_faq_q,
.bl_faq_a {
	position: relative;
  	display: flex;
  	align-items: flex-start;
  	box-sizing: content-box;
  	min-height: 45px;
 	padding-left: 60px;
}
.bl_faq_q {
	margin-bottom: 15px;
	font-size: 1.125rem;
	font-weight: bold;
}
.bl_faq_q_txt {
	padding-top: 12px;
}
.bl_faq_a {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
}
.bl_faq_icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	font-weight: normal;
	line-height: 45px;
	text-align: center;
}
.bl_faq_q .bl_faq_icon {
	background-color: #e25c00;
	color: #fff;
}
.bl_faq_a .bl_faq_icon {
	background: #efefef;
	color: #e25c00;
}
.bl_faq_a_body {
	padding-top: 12px;
}
.bl_faq_a_body > *:last-child {
	margin-bottom: 0;
}
.bl_faq_a_txt {
	margin-bottom: 20px;
}

/* ジャンボトロン */
@media screen and (max-width: 768px) {
	.lg_only {
		display: none !important;
  }
}

.bl_jumbotron {
	height: calc(69.44444vw + -233.33333px);
	background-position: center center;
	background-size: cover;
}
.bl_jumbotron_inner {
	position: relative;
 	max-width: 1230px;
  	height: 100%;
  	margin-right: auto;
  	margin-left: auto;
}
.bl_jumbotron_ttl {
	position: absolute;
  	top: 50%;
  	left: 0;
  	padding: 40px;
  	background-color: rgba(0, 0, 0, .75);
  	color: #fff;
  	font-size: calc(1.81818vw + 14.18182px);
  	line-height: 1.5;
  	transform: translateY(-50%);
}

@media screen and (min-width: 1200px) {
	.bl_jumbotron {
		height: 600px;
  }

  .bl_jumbotron_ttl {
	  font-size: 2.25rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_jumbotron {
	  height: 300px;
  }

  .bl_jumbotron_ttl {
	  left: 50%;
	  width: 90%;
	  padding: 15px;
	  font-size: 1.25rem;
	  text-align: center;
	  transform: translate(-50%, -50%);
  }
}

/* 順番なしリスト */
.bl_bulletList {
  /* css-wipeではスタイリングなし */
}
.bl_bulletList > *:last-child {
	margin-bottom: 0;
}
.bl_bulletList > li {
	position: relative;
	padding-left: 1em;
	margin-bottom: 10px;
}
.bl_bulletList > li::before {
	content: '';
  	position: absolute;
  	top: .5em;
  	left: 0;
 	 display: block;
  	width: .4em;
  	height: .4em;
  	background-color: #e25c00;
  	border-radius: 50%;
}

/* モジュールの再利用 */
/******************************** 水平ボタンリスト */
.bl_horizBtnList {
	display: flex;
  	justify-content: center;
}
.bl_horizBtnList > *:last-child {
	margin-right: 0;
}
.bl_horizBtnList > li {
	flex: 1 1 0;
 	max-width: 300px;
  	margin-right: 20px;
}
.bl_horizBtnList .el_btn {
  	display: inline-flex;
	align-items: center;
  	justify-content: center;
  	width: 100%;
  	height: 100%;
}

/************************* ボタン＋画像半分サイズメディア */
.bl_halfMedia_txt {
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .bl_halfMedia .el_btn {
	  display: block;
	  margin-right: auto;
	  margin-left: auto;
  }
}

/******************************** ボタン＋CTAエリア */
.bl_cta_txt {
	margin-bottom: 40px;
}

