@charset 'UTF-8';

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

	各固定ページ

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

	body直下にid名「wrapper」のdivがあります。
	こちらには、固定ページごとに異なるclass名(post-〇)が付与されますので、
	ご活用ください。
	
	【例】
	<body>
	<div id="wrapper" class="post-2 page type-page status-publish has-post-thumbnail hentry">

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



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

	レイアウト

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#wrapper{
	}

	main.outer_wrap {
		position: relative;
		max-width: none;
		/* max-width: 1920px; 固定幅レイアウト時 */
		width: 100%;
		min-height: 50vh;
		display: block;
		padding: 80px 0;
		margin: 0 auto;
	}

	.inner_wrap {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#wrapper {
	}

	main.outer_wrap {
		position: relative;
		width: 100%;
		min-height: 50vh;
		padding: 12vw 0;
	}

	.inner_wrap {
		position: relative;
		width: 100%;
		padding: 0 4vw;
	}
}





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

	メイン画像

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.main_cate {
		position: relative;
		background: url(../img/main_cate.jpg) center top / cover no-repeat;
	}
	.main_cate_in {
		position: relative;
		display: table;
		width: 100%;
		height: 180px;
	}

	/* メイン画像のタイトル */
	.main_cate_in p {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		font-size: 42px;
		font-weight: 700;
	}
	.main_cate_in p span {
		display: block;
		font-size: 20px;
		font-weight: 500;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.main_cate {
		position: relative;
		background: url(../img/main_cate.jpg) center top / cover no-repeat;
	}
	.main_cate_in {
		position: relative;
		display: table;
		width: 100%;
		height: 32vw;
	}

	/* メイン画像のタイトル */
	.main_cate_in p {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		font-size: 7vw;
		font-weight: 700;
	}
	.main_cate_in p span {
		display: block;
		font-size: 3vw;
		font-weight: 500;
	}
}











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

	セクション

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 2カラム
	----------------------------------------------- */
	.col2_1,
	.col2_1_long,
	.col2_1_middle,
	.col2_1_short,
	.col2_1_vshort,
	.col2_1_mshort {
		margin-right: 20px;
	}
	.col2_2,
	.col2_2_long,
	.col2_2_middle,
	.col2_2_short,
	.col2_2_vshort,
	.col2_2_mshort {
		margin-left: 20px;
	}

	/* 3カラム
	----------------------------------------------- */
	.col3_1 {
		margin-right: 20px;
	}
	.col3_2 {
		margin-left: 10px;
		margin-right: 10px;
	}
	.col3_3 {
		margin-left: 20px;
	}

	/* 3カラム画像トリミング */
	.col3_1 img,
	.col3_2 img,
	.col3_3 img {
		width: 100%;
		height: 209px;
		object-fit: cover;
		font-family: 'object-fit: cover;'; /* IE対策 */
		object-position: center top;
	}

}




/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* 2カラム
	----------------------------------------------- */
	.col2_1 {
	}
	.col2_1_long {
		margin-top: 16vw;
	}
	.col2_1_middle {
		margin-top: 12vw;
	}
	.col2_1_short {
		margin-top: 8vw;
	}
	.col2_1_vshort {
		margin-top: 4vw;
	}
	.col2_1_mshort {
		margin-top: 3vw;
	}

	.col2_2 {
	}
	.col2_2_long {
		margin-top: 16vw;
	}
	.col2_2_middle {
		margin-top: 12vw;
	}
	.col2_2_short {
		margin-top: 8vw;
	}
	.col2_2_vshort {
		margin-top: 4vw;
	}
	.col2_2_mshort {
		margin-top: 3vw;
	}

	/* 3カラム
	----------------------------------------------- */
	.col3_1 {
		margin-top: 0;
	}
	.col3_2,
	.col3_3 {
		margin-top: 12vw;
	}

	/* 3カラム画像トリミング */
	.col3_1 img,
	.col3_2 img,
	.col3_3 img {
		width: 100%;
		height: 61vw;
		object-fit: cover;
		font-family: 'object-fit: cover;'; /* IE対策 */
		object-position: center top;
	}

}





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

	マージンボックス

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 上にマージンを空ける
	----------------------------------------------- */
	.top_long {
		margin-top: 120px;
	}
	.top_middle {
		margin-top: 80px;
	}
	.top_short {
		margin-top: 40px;
	}
	.top_vshort {
		margin-top: 20px;
	}
	.top_mshort {
		margin-top: 10px;
	}

	/* 下にマージンを空ける
	----------------------------------------------- */
	.bottom_long {
		margin-bottom: 120px;
	}
	.bottom_middle {
		margin-bottom: 80px;
	}
	.bottom_short {
		margin-bottom: 40px;
	}
	.bottom_vshort {
		margin-bottom: 20px;
	}
	.bottom_mshort {
		margin-bottom: 10px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* 上にマージンを空ける
	----------------------------------------------- */
	.top_long {
		margin-top: 16vw;
	}
	.top_middle {
		margin-top: 12vw;
	}
	.top_short {
		margin-top: 8vw;
	}
	.top_vshort {
		margin-top: 4vw;
	}
	.top_mshort {
		margin-top: 3vw;
	}

	/* 下にマージンを空ける
	----------------------------------------------- */
	.bottom_long {
		margin-bottom: 16vw;
	}
	.bottom_middle {
		margin-bottom: 12vw;
	}
	.bottom_short {
		margin-bottom: 8vw;
	}
	.bottom_vshort {
		margin-bottom: 4vw;
	}
	.bottom_mshort {
		margin-bottom: 3vw;
	}

}




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

	パディングボックス

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 上にパディングを空ける
	----------------------------------------------- */
	.p_top_long {
		padding-top: 120px;
	}
	.p_top_middle {
		padding-top: 80px;
	}
	.p_top_short {
		padding-top: 40px;
	}
	.p_top_vshort {
		padding-top: 20px;
	}
	.p_top_mshort {
		padding-top: 10px;
	}

	/* 下にパディングを空ける
	----------------------------------------------- */
	.p_bottom_long {
		padding-bottom: 120px;
	}
	.p_bottom_middle {
		padding-bottom: 80px;
	}
	.p_bottom_short {
		padding-bottom: 40px;
	}
	.p_bottom_vshort {
		padding-bottom: 20px;
	}
	.p_bottom_mshort {
		padding-bottom: 10px;
	}

	/* 両方にパディングを空ける
	----------------------------------------------- */
	.row_long {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.row_middle {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.row_short {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.row_vshort {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.row_mshort {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* 上にパディングを空ける
	----------------------------------------------- */
	.p_top_long {
		padding-top: 16vw;
	}
	.p_top_middle {
		padding-top: 12vw;
	}
	.p_top_short {
		padding-top: 8vw;
	}
	.p_top_vshort {
		padding-top: 4vw;
	}
	.p_top_mshort {
		padding-top: 3vw;
	}

	/* 下にパディングを空ける
	----------------------------------------------- */
	.p_bottom_long {
		padding-bottom: 16vw;
	}
	.p_bottom_middle {
		padding-bottom: 12vw;
	}
	.p_bottom_short {
		padding-bottom: 8vw;
	}
	.p_bottom_vshort {
		padding-bottom: 4vw;
	}
	.p_bottom_mshort {
		padding-bottom: 3vw;
	}

	/* 両方にパディングを空ける
	----------------------------------------------- */
	.row_long {
		padding-top: 16vw;
		padding-bottom: 16vw;
	}
	.row_middle {
		padding-top: 12vw;
		padding-bottom: 12vw;
	}
	.row_short {
		padding-top: 8vw;
		padding-bottom: 8vw;
	}
	.row_vshort {
		padding-top: 4vw;
		padding-bottom: 4vw;
	}
	.row_mshort {
		padding-top: 3vw;
		padding-bottom: 3vw;
	}


	/* 背景色を伸ばす
	----------------------------------------------- */
	.row_sp {
		padding-left: 4vw !important;
		padding-right: 4vw !important;
	}
}




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

	カラーボックス

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

/* カラー01 */
.row_c01 {
	background: linear-gradient(190deg, rgb(187, 204, 231) 0%, rgb(246, 250, 255) 100%);
	color: inherit;
}

/* カラー02 */
.row_c02 {
	background: url(../img/spacer.gif) center top / auto auto repeat ,#144780;
	color: #ffffff;
}
.row_c02 a{
	color: #ffffff;
}

/* ボーダー囲い色 */
.box_border {
	background-color: #fefd2b;
	font-weight: 900;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* カラー01 */
	.row_c01 {
	}

	/* カラー02 */
	.row_c02 {
	}

	/* ボーダー囲い */
	.box_border {
		/* padding: 40px; */
		padding:40px;
		font-size: 23px;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* カラー01 */
	.row_c01 {
		padding-left: 4vw;
		padding-right: 4vw;
	}

	/* カラー02 */
	.row_c02 {
		padding-left: 4vw;
		padding-right: 4vw;
	}

	/* ボーダー囲い */
	.box_border {
		padding: 4vw;
		font-size: 5vw;
	}
}




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

	見出し

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		border-bottom: 7px solid #fefd59;
		padding: 12px 10px 12px !important;
		background: #144780;
		color: #fff;
	}
	.h2_cate h2 {
		font-size: 32px;
		font-weight: 500;
		line-height: 1.4;
		text-align: center;
		color: inherit;
	}


	.row_c01 .h2_cate {
		border-bottom: 7px solid #fefd59;
	}
	.row_c01 .h2_cate h2 {
		color: inherit;
	}


	.row_c02 .h2_cate {
		padding: 12px 10px 12px !important;
		border-bottom: 7px solid #122e4e;
		background: #fefd59;
	}
	.row_c02 .h2_cate h2 {
		color: #144780;
	}

	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 3px solid;
		padding: 0 0 8px 0 !important;
		margin-bottom: 10px !important;
		position: relative;
	}
	.h3_cate::before {
		position: absolute;
		content: "Fantree Marketing";
		font-size: 16px;
		font-weight: bold;
		bottom: -33px;
		left: 50%;
		margin-left: -69px;
		color: #88abd2;
	}
	.h3_cate h3 {
		font-size: 26px;
		font-weight: 500;
		line-height: 1.4;
		text-align: center;
		color: inherit;
	}
	.row_c01 .h3_cate h3 {
		color: inherit;
	}
	.row_c02 .h3_cate h3 {
		color: #ffffff;
	}

	/* 3カラムh3見出し
	----------------------------------------------- */
	.h3_col3 {
		border-bottom: 1px dotted;
		padding: 0 0 8px 0 !important;
	}
	.h3_col3 h3 {
		font-size: 20px;
		font-weight: 500;
		line-height: 1.4;
		color: inherit;
	}
	.row_c01 .h3_col3 h3 {
		color: inherit;
	}
	.row_c02 .h3_col3 h3 {
		color: #ffffff;
	}

}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* h2見出し
	----------------------------------------------- */
	.h2_cate {
		padding: 2vw 1vw  !important;
		border-bottom: 5px solid #fefd59;
		padding: 12px 10px 12px !important;
		background: #144780;
		color: #ffffff;
	}
	.h2_cate h2 {
		font-size: 5.5vw;
		font-weight: 500;
		line-height: 1.4;
		text-align: center;
		color: inherit;
	}


	.row_c01 .h2_cate {
		border-bottom: 5px solid #fefd59;
	}
	.row_c01 .h2_cate h2 {
		color: inherit;
	}
	

	.row_c02 .h2_cate {
		border-bottom: 5px solid #122e4e;
		background: #fefd59;
	}
	.row_c02 .h2_cate h2 {
		color: #144780;
	}


	/* h3見出し
	----------------------------------------------- */
	.h3_cate {
		border-bottom: 1px solid;
		padding: 0 0 1.5vw 0 !important;
	}
	.h3_cate h3 {
		font-size: 4.5vw;
		font-weight: 500;
		line-height: 1.4;
		text-align: center;
		color: inherit;
	}
	.row_c01 .h3_cate h3 {
		color: inherit;
	}
	.row_c02 .h3_cate h3 {
		color: #ffffff;
	}

	/* 3カラムh3見出し
	----------------------------------------------- */
	.h3_col3 {
		border-bottom: 1px dotted;
		padding: 0 0 1vw 0 !important;
	}
	.h3_col3 h3 {
		font-size: 4vw;
		font-weight: 500;
		line-height: 1.4;
		color: inherit;
	}
	.row_c01 .h3_col3 h3 {
		color: inherit;
	}
	.row_c02 .h3_col3 h3 {
		color: #ffffff;
	}

}




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

	共通ボタン

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* リンク
	----------------------------------------------- */
	.link_common {
	}
	.link_common ul {
		font-size: 0;
		letter-spacing: -0.4em;
		text-align: center;
	}
	.link_common ul li {
		display: inline-block;
		font-size: 22px;
		letter-spacing: 0;
	}
	.link_common ul li:not(:first-child) {
		margin-left: 20px;
	}
	.link_common ul li a {
		position: relative;
		display: block;
		background-color: #0044a1;
		color: #ffffff;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.8em 4em 0.9em;
		box-shadow: 1px 1px 30px rgba(142,142,142,.16);
		border-radius: 8px;
	}
	.row_c01 .link_common ul li a {
	}
	.row_c02 .link_common ul li a {
		background-color: #ffffff;
		color: #0044a1;
	}

	.link_common ul li a::after {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/arrow.png) center top / contain no-repeat;
		width: 10px;
		height: 15px;
		top: 50%;
		margin-top: -7px;
		right: 16px;
	}
	.row_c01 .link_common ul li a::after {
	}
	.row_c02 .link_common ul li a::after {
		background: url(../img/arrow2.png) center top / contain no-repeat;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* リンク
	----------------------------------------------- */
	.link_common {
	}
	.link_common ul {
		text-align: center;
	}
	.link_common ul li {
		display: block;
		font-size: 4vw;
		font-weight: 700;
	}
	.link_common ul li:not(:first-child) {
		margin-top: 2vw;
	}
	.link_common ul li a {
		position: relative;
		display: block;
		width: 80vw;
		background-color: #0044a1;
		color: #ffffff;
		letter-spacing: 0.05em;
		text-indent: 0.05em;
		line-height: 1.3;
		padding: 0.8em 0 0.9em;
		margin-left: auto;
		margin-right: auto;
		box-shadow: 1px 1px 6vw rgba(142,142,142,.16);
		border-radius: 2vw;
	}
	.row_c01 .link_common ul li a {
	}
	.row_c02 .link_common ul li a {
		background-color: #ffffff;
		color: #0044a1;
	}

	.link_common ul li a::after {
		position: absolute;
		content: "";
		display: block;
		background: url(../img/arrow.png) center top / contain no-repeat;
		width: 2vw;
		height: 3vw;
		top: 50%;
		margin-top: -1.5vw;
		right: 3vw;
	}
	.row_c01 .link_common ul li a::after {
	}
	.row_c02 .link_common ul li a::after {
		background: url(../img/arrow2.png) center top / contain no-repeat;
	}
}





/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

	ここから各固定ページ

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* 文字色・黄色 */
.yellow_text{
	color: #fefd2b;
}

/* リンクの色を赤 */
.link_a a{
	color: #b70505;
}
/* リンクに下線 */
.link_a_line a{
	border-bottom: 1px solid;
}
/* 蛍光ペン・黄色 */
.yellow_line {
    background:linear-gradient(transparent 60%, #fefd2b 60%);
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	/* テキスト内の強調される大きなフォント */
	.font_text_big{
		font-size: 25px;
		line-height: 1.3;
	}
	/* pcのみテキスト中央 */
	.pc_font-center{
		text-align: center;
	}
}

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	/* テキスト内の強調される大きなフォント */
	.font_text_big{
		font-size: 5vw;
		line-height: 1.5;
	}
	.sp_text_height p{
		line-height:1.3;
	}

}



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

	実績紹介部分

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


/* カテゴリアイコン色 */
.works_icon span {
	background-color: #222222;
	color: #ffffff;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	.works_wrap {
		position: relative;
		width: 1000px;
		margin:0 auto;
	}
	.works_wrap ul {
		font-size: 0;
		letter-spacing: -0.4em;
		text-align: center;
	}
	.works_wrap > ul > li {
		position: relative;
		display: inline-block;
		vertical-align: top;
		text-align: left;
		width: 320px;
		margin-left: 20px;
		font-size: 16px;
		letter-spacing: 0;
	}
	.works_wrap > ul > li:nth-of-type(3n+1) {
		margin-left: 0;
	}


	/* カテゴリアイコン */
	.works_icon {
		position: absolute;
		top: 16px;
		left: 0px;
		z-index: 1;
	}
	.works_icon span,
	.works_icon a {
		position: relative;
		display: inline-block;
		padding: 0 0.5em 0.1em;
	}


	/* サムネイル画像 */
	.works_thumb img {
		width: 100%;
		height: 213px;
		object-fit: cover;
		font-family: 'object-fit: cover;'; /* IE対策 */
		object-position: center top;
	}


	/* 投稿記事見出し */
	.works_title a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		padding: 0.3em 0.5em;
		font-size: 18px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	.works_wrap {
		position: relative;
		margin: 0 auto;
	}
	.works_wrap > ul {
	}
	.works_wrap > ul > li {
		position: relative;
		padding: 0;
	}
	.works_wrap > ul > li:not(:first-child) {
		margin-top: 6vw;
	}

	.works_wrap > ul > li > a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		
		border: 1px solid #cccccc;
	}


	/* カテゴリアイコン */
	.works_icon {
		position: absolute;
		top: 4vw;
		left: 0px;
		z-index: 1;
	}
	.works_icon span,
	.works_icon a {
		display: inline-block;
		padding: 0 0.5em 0.1em;
	}


	/* サムネイル画像 */
	.works_thumb img {
		max-width: 100%;
		width: 100%;
		height: 62vw;
		object-fit: cover;
		font-family: 'object-fit: cover;';
		object-position: center top;
	}


	/* 投稿記事見出し */
	.works_title a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		-webkit-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		padding: 0.3em 0.5em;
		font-size: 4vw;
	}

}



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

	会員制度・料金ページ

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

/* 見出し */
.h3_01{
	background: #7f1313;
	color: #fff;
}
.h3_02{
	background: #2c3f68;
	color: #fff;
}
.h3_03{
	background: #3f4c37;
	color: #fff;
}

/* テーブル */
.price_table table , .price_table td, .price_table th {
	border: 1px solid #326cab;
	border-collapse: collapse;
	width: 100%;
}
.price_table td, .price_table th {
	padding: 0.5em;
	vertical-align: middle;
}
.price_table th {
	background: #326cab;
	color:#ffffff;
	width: 35%;
}
.price_table tr:not(:last-of-type) th {
	border-bottom: 1px solid #ffffff;
}
.price_table td {
	background: #ffffff;
	width: 65%;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	/* 見出し */
	.h3_01,.h3_02,.h3_03{
		font-size: 30px;
		padding: 15px;
		border: #bc8833 solid 5px;
	}
	
	.price_row01 .text_01{
		font-size: 25px;
	}

	.price_text ul li{
		padding-bottom:0.5em
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {	
	/* 見出し */
	.h3_01,.h3_02,.h3_03{
		font-size: 5vw;
		padding: 1em;
		border: #bc8833 solid 5px;
	}


}

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

	プライバシーポリシーページ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {	
	.privacy_text strong{
		font-size: 20px;
		text-indent: -0.6em !important;
		display: inline-block;
		padding: 16px 0 5px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	
}





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

	ファンツリー実践会とはページ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* 紹介が紹介を生み続ける「ファンツリー®マーケティング」とは？ */
	.row_abut01 h3{
		font-size: 30px;
		line-height: 1.3;
		letter-spacing: -0.05em;
	}
	.white_box{
		background-color: #ffffff;
		box-shadow: 1px 1px 30px rgba(142,142,142,0.22);
		padding: 60px;
	}

	/* 「ファンツリー®実践会」をおすすめする3つの理由 */
	.row_abut02 h3{
		position: relative;
		font-size: 22px;
		line-height: 1.3;
		letter-spacing: -0.05em;
		font-weight: 900;
	}
	.row_abut02_01 h3::before{
		position: absolute;
		content: "01";
		font-size: 80px;
		top: -31px;
		left: -93px;
		font-style: italic;
	}
	.row_abut02_02 h3::before{
		position: absolute;
		content: "02";
		font-size: 80px;
		top: -31px;
		left: -93px;
		font-style: italic;
	}
	.row_abut02_03 h3::before{
		position: absolute;
		content: "03";
		font-size: 80px;
		top: -31px;
		left: -93px;
		font-style: italic;
	}

	/* バナー */
	.bn_top {

	}
	.bn_top ul {
		font-size: 0;
		letter-spacing: -.4em;
		text-align: center;
	}
	.bn_top ul li {
		display: inline-block;
		vertical-align: top;
		font-size: 16px;
		letter-spacing: 0;
		width: 47.1%;
	}
	.bn_top ul li p{
		padding-bottom: 10px;
	  }
	.bn_top ul li:nth-of-type(2n) {
		margin-left: 5.8%;
	}
	.bn_top ul li:nth-of-type(n+3) {
		margin-top: 6%;
	}
	.bn_top ul li a img {
		max-width: 100%;
		width: 100%;
		height: auto;
		box-shadow: 1px 1px 30px rgba(142,142,142,0.22);
		border-radius: 10px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
		/* 紹介が紹介を生み続ける「ファンツリー®マーケティング」とは？ */

		.row_abut01 .h2_cate h2{
			font-size: 5vw !important;
			letter-spacing: -0.04em;
		}

		.row_abut01 h3{
			font-size: 5vw;
			line-height: 1.3;
			letter-spacing: -0.05em;
		}
		.white_box{
			background-color: #ffffff;
			box-shadow: 1px 1px 30px rgba(142,142,142,0.22);
			padding: 2em;
		}

	/* 「ファンツリー®実践会」をおすすめする3つの理由 */
	.row_abut02 h3{
		font-size: 4.5vw;
		position: relative;
		font-weight: 900;
	}
	.row_abut02_01 h3::before{
		position: absolute;
		content: "01";
		font-size: 18vw;
		top: -6vw;
		left: -21vw;
		font-style: italic;
	}
	.row_abut02_02 h3::before{
		position: absolute;
		content: "02";
		font-size: 18vw;
		top: -6vw;
		left: -21vw;
		font-style: italic;
	}
	.row_abut02_03 h3::before{
		position: absolute;
		content: "03";
		font-size: 18vw;
		top: -6vw;
		left: -21vw;
		font-style: italic;
	}

	/* バナー */

	.bn_top {

	}
	.bn_top ul {
	}
	.bn_top ul li {
	}
	.bn_top ul li p{
		padding-bottom: 1em;
		text-align: center;
	  }
	.bn_top ul li:not(:first-of-type) {
		margin-top: 6vw;
	}
	.bn_top ul li a img {
		width: 100%;
		height: auto;
		box-shadow: 1px 1px 30px rgba(142,142,142,0.22);
		border-radius: 2vw;
	}

}





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

	講師紹介ページ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	/* コンサル名 */
	.consultant_name{
		font-size: 33px;
		color: #88abd2;
		font-weight: bold;
	}

	/* 講師紹介のタイトル */
	.teacher_h3 h3{
		font-size: 30px;
		border-bottom: 3px double;
		padding-bottom: 16px;
	}
	.teacher_h3 span{
		font-size: 25px;
	}

	/* 応援メッセージ */
	.support_h3 h3 {
		position: relative;
		font-size: 30px;
		 margin: 30px;
		 text-align: center;
	   }
	   
	   .support_h3 h3:before,
	   .support_h3 h3:after {
		 position: absolute;
		 z-index: 0;
		 bottom: -10px;
		 display: block;
		 content: '';
		 border: 1em solid #d90606;
	   }
	   
	   .support_h3 h3:before {
		 left: -30px;
		 border-left-width: 15px;
		 border-left-color: transparent;
	   }
	   
	   .support_h3 h3:after {
		 right: -30px;
		 border-right-width: 15px;
		 border-right-color: transparent;
	   }
	   
	   .support_h3 h3 span {
		 position: relative;
		 z-index: 1;
		 display: block;
		 padding: 1rem 2rem;
		 color: #fff;
		 background: #fa4141;
	   }
	   
	   .support_h3 h3 span:before {
		 left: 0;
		 border-width: 10px 0 0 10px;
	   }
	   
	   .support_h3 h3 span:after {
		 right: 0;
		 border-width: 10px 10px 0 0;
	   }
	   
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	/* コンサル名 */
	.consultant_name{
		font-size: 7vw;
		color: #88abd2;
		letter-spacing: -0.05em;
		line-height: 1.3;
		font-weight: bold;
	}


		/* 講師紹介のタイトル */
		.teacher_h3 h3{
			font-size: 6vw;
			border-bottom: 3px double;
			padding-bottom: 2.8vw;
		}
		.teacher_h3 span{
			font-size: 4vw;
		}

	/* 応援メッセージ */
	

	.support_h3 h3 {
		position: relative;
		font-size: 5vw;
		margin: 5vw;
		text-align: center;
	   }
	   
	   .support_h3 h3:before,
	   .support_h3 h3:after {
		 position: absolute;
		 z-index: 0;
		 bottom: -2vw;
		 display: block;
		 content: '';
		 border: 1em solid #d90606;
	   }
	   
	   .support_h3 h3:before {
		 left: -6vw;
		 border-left-width: 4vw;
		 border-left-color: transparent;
	   }
	   
	   .support_h3 h3:after {
		 right: -6vw;
		 border-right-width: 4vw;
		 border-right-color: transparent;
	   }
	   
	   .support_h3 h3 span {
		 position: relative;
		 z-index: 1;
		 display: block;
		 padding: 1rem 2rem;
		 color: #fff;
		 background: #fa4141;
	   }
	   
	   .support_h3 h3 span:before {
		 left: 0;
		 border-width: -6vw 0 0 -6vw;
	   }
	   
	   .support_h3 h3 span:after {
		 right: 0;
		 border-width: -6vw -6vw 0 0;
	   }
}



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

	出版情報

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.publishing_box{
		font-weight: bold;
		font-size: 20px;
	}
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {


}




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

	アクセスページ

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

.map_box a {
	width: 100%;
	height: 450px;
	display: block;
	z-index: 1;
	position: absolute;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	
}

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

	セミナー案内/講演依頼ページ

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.seminar_row01 h3{
		font-size: 20px;
		line-height: 1.3;
	}
	.seminar_row01_1,.seminar_row01_2,.seminar_row01_3{
		position: relative;
	}

	.seminar_row01_1::before{
		position: absolute;
		content: "01";
		font-size: 76px;
		bottom: -45px;
		left: -22px;
		font-style: italic;
		color: #f9d23c;
		z-index: 1;
		font-weight: 500;
	}
	.seminar_row01_2::before{
		position: absolute;
		content: "02";
		font-size: 76px;
		bottom: -45px;
		left: -22px;
		font-style: italic;
		color: #f9d23c;
		z-index: 1;
		font-weight: 500;
	}
	.seminar_row01_3::before{
		position: absolute;
		content: "03";
		font-size: 76px;
		bottom: -45px;
		left: -22px;
		font-style: italic;
		color: #f9d23c;
		z-index: 1;
		font-weight: 500;
	}
	.seminar_row01_1::after{
		position: absolute;
		content: "01";
		font-size: 76px;
		bottom: -45px;
		left: -15px;
		font-style: italic;
		color: #152d48;
		z-index: 0;
		font-weight: 500;
	}
	.seminar_row01_2::after{
		position: absolute;
		content: "02";
		font-size: 76px;
		bottom: -45px;
		left: -15px;
		font-style: italic;
		color: #152d48;
		z-index: 0;
		font-weight: 500;
	}
	.seminar_row01_3::after{
		position: absolute;
		content: "03";
		font-size: 76px;
		bottom: -45px;
		left: -15px;
		font-style: italic;
		color: #152d48;
		z-index: 0;
		font-weight: 500;
	}
}

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	.seminar_row01 h3{
		font-size: 5vw;
		line-height: 1.3;
	}
	.seminar_row01_1,.seminar_row01_2,.seminar_row01_3{
		position: relative;
	}

	.seminar_row01_1::before{
		position: absolute;
		content: "01";
		font-size: 14vw;
		bottom: -1vw;
		left: 3vw;
		font-style: italic;
		color: #f9d23c;
		z-index: 1;
		font-weight: 500;
	}
	.seminar_row01_2::before{
		position: absolute;
		content: "02";
		font-size: 14vw;
		bottom: -1vw;
		left: 3vw;
		font-style: italic;
		color: #f9d23c;
		z-index: 1;
		font-weight: 500;
	}
	.seminar_row01_3::before{
		position: absolute;
		content: "03";
		font-size: 14vw;
		bottom: -1vw;
		left: 3vw;
		font-style: italic;
		color: #f9d23c;
		z-index: 1;
		font-weight: 500;
	}
	.seminar_row01_1::after{
		position: absolute;
		content: "01";
		font-size: 14vw;
		bottom: -1vw;
		left: 4vw;
		font-style: italic;
		color: #152d48;
		z-index: 0;
		font-weight: 500;
	}
	.seminar_row01_2::after{
		position: absolute;
		content: "02";
		font-size: 14vw;
		bottom: -1vw;
		left: 4vw;
		font-style: italic;
		color: #152d48;
		z-index: 0;
		font-weight: 500;
	}
	.seminar_row01_3::after{
		position: absolute;
		content: "03";
		font-size: 14vw;
		bottom: -1vw;
		left: 4vw;
		font-style: italic;
		color: #152d48;
		z-index: 0;
		font-weight: 500;
	}

	
}

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

	Fantree Contributionページ

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	/* Fantree Contribution参画のメリットは主に以下の通りです。 */
	.mantree_melit_list_box{
		text-align: center;
		border: solid 1px;
		padding: 30px 0 20px;
	}
	.mantree_melit_list_box_in{
		display: inline-block;
		vertical-align: top;
	}
	.mantree_melit_list_box_in p{
		margin-top: 1em;
		text-align: right;
	}
	.mantree_melit_list{
		line-height: 2.3;
		text-align: left;
		font-weight: bold;
		font-size: 20px;
	}

	/* 2．広告費、登録料ゼロ */
	.fantree_c_row03 h3{
		font-size: 26px;
		font-weight: bold;
	}
	.fantree_c_row03 h3 span{
		font-size: 21px;
		font-weight: 500;
	}
	.g-slide iframe {
		width: 1280px;
		height: 600px;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
		/* Fantree Contribution参画のメリットは主に以下の通りです。 */
		.mantree_melit_list_box{
			border: solid 1px;
			padding: 2em 1em 1em 1em;
		}
		.mantree_melit_list_box_in{

		}
		.mantree_melit_list_box_in p{
			margin-top: 1em;
			text-align: right;
		}
		.mantree_melit_list{
			font-weight: bold;
			font-size: 4vw;
		}
		.mantree_melit_list li{
			margin-bottom: 1em;
			text-indent: -1.5em;
			margin-left: 1.5em;
	}

		/* 2．広告費、登録料ゼロ */
		.fantree_c_row03 h3{
			font-size: 5vw;
			font-weight: bold;
		}
		.fantree_c_row03 h3 span{
			font-size: 4vw;
			font-weight: 500;
		  }
		.g-slide iframe {
			width: 96vw;
			height: 62vw;
		}
}

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

	企業研修

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

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	.img_border{
		border: #0044a1 1px solid;
		margin-left: -1px;
	}

	.voice_h3_title{
		border-bottom: #0044a1 double 3px;
		padding: 11px;
		font-size: 24px;
	}

	/* コースの内容の男性 */
	.course_box{
		position: relative;
	}
	.course_box::after{
		position: absolute;
		content: "";
		background: url(../img/course_img.png) no-repeat center top / auto 100%;
		width: 348px;
		height: 365px;
		bottom: -45px;
		right: -60px;
	}


	/* 特別プログラムの女性 */
	.tokubetu_box{
		position: relative;
	}
	.tokubetu_box::after{
		position: absolute;
		content: "";
		background: url(../img/tokubetu_img.png) no-repeat center top / auto 100%;
		width: 315px;
		height: 295px;
		bottom: -146px;
		left: -90px;
	}

}
/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	.img_border{
		border: #0044a1 1px solid;
		margin-top: -1px;
	}
	.voice_h3_title{
		border-bottom: #0044a1 double 3px;
		padding: 11px;
		font-size: 5vw;
	}

	/* 提供する価値 */
	.program7{
		margin-bottom: 1em;
	}

	/* コースの内容の男性 */
	.course_box{
		position: relative;
	}
	.course_box::after{
		position: absolute;
		content: "";
		background: url(../img/course_img.png) no-repeat center top / auto 100%;
		width: 35vw;
		height: 37vw;
		bottom: -25vw;
		right: -3vw;
	}


	/* 特別プログラムの女性 */
	.tokubetu_box{
		position: relative;
	}
	.tokubetu_box::after{
		position: absolute;
		content: "";
		background: url(../img/tokubetu_img.png) no-repeat center top / auto 100%;
		width: 33.5vw;
		height: 33vw;
		top: -26vw;
		left: -2vw;
	}
}