@charset "UTF-8";

/*   トップページ（top.css）   */

/* -------------------------------------------------

Main（トピックス一覧）

------------------------------------------------- */
#Main01 {
	width: 100%;
	margin: 120px 0;
	position: relative;
}
@media screen and (max-width: 898px)  {
#Main01 {
	margin: 100px 0;
}
}


/* -------------------------------------------------

TopTopics（トピックス）

------------------------------------------------- */
.TopTopics__wrp	{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 2%;
	position: relative;
}

/* TopTopics__box（一覧）
================================================== */
.TopTopics__box	{
}
.TopTopics__box > article	{
	margin:15px 0px;
}
.TopTopics__box > article >	article:last-of-type {
	margin-bottom: 50px;
}
.TopTopics__box > article >	article .no_link,
.TopTopics__box > article >	article a {
 display: flex;
	align-items: flex-start;
 padding:20px 10px;
 border-bottom: 1px solid #cccccc;
}
.TopTopics__box a {
	text-decoration: none;
}
.TopTopics__box a:hover {
 /*opacity: 0.7;
 filter: alpha(opacity=70);
 -moz-opacity: 0.7;*/
}

@media screen and (max-width: 898px)  {
.TopTopics__box > article >	article .no_link,
.TopTopics__box > article >	article a {
	flex-flow: row wrap !important;
	padding:15px 10px;
}
}
@media screen and (max-width: 768px)  {
.TopTopics__box > article	{
	font-size: 1.4rem;
}
}
@media screen and (max-width: 480px)  {
.TopTopics__box > article >	article:last-of-type {
	margin-bottom: 30px;
}
}

/* 日付+カテゴリー+タイトル
================================================== */
.TopTopics__box .date {
 min-width: 110px;
}
.TopTopics__box .category {
 min-width: 160px;
}
.TopTopics__box .category .mark {
	/*width: 140px;*/
	width: 125px;
	height: 30px;
	line-height: 1;
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	display: flex;
 justify-content: center;
	align-items: center;
	background-color: #c50018;
	padding: 1px 5px;
	border-radius: 4px;
}
.TopTopics__box .title {
	width: auto;
	overflow: auto;
}
.TopTopics__box a:hover .title {
	text-decoration: underline;
}

@media screen and (max-width: 898px)  {
.TopTopics__box .title {
	width: 100% !important;
	margin-top: 10px;
}
}
@media screen and (max-width: 768px)  {
.TopTopics__box .date {
 min-width: 90px;
}
.TopTopics__box .category {
 /*min-width: 140px;*/
	min-width: 115px;
	/*margin-top: -5px;*/
}
.TopTopics__box .category .mark {
	width: 100%;
	height: 24px;
}
}


/* タブ切り替え
================================================== */
/*tabの形状*/
.TopTopics__tab	{
	width: 100%;
	display: flex;
	border-bottom: 1px solid #c50018;
	/*flex-wrap: wrap;*/
}
.TopTopics__tab li{
	width: 20%;
}
.TopTopics__tab li a {
	font-weight: 600;
	font-size: 1.6rem;
	color: #aaaaaa;
	line-height: 1;
	height: 50px;
	background-color:#ffffff;
	padding:10px 0;
	border-radius: 10px 10px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.TopTopics__tab li a br {
	display: none !important;
}
.sp .TopTopics__tab	{
	display: none !important;
}

@media screen and (max-width: 768px)  {
.TopTopics__tab li a {
	font-size: 1.4rem;
	line-height: 1.4;
	text-align: center;
}
.TopTopics__tab li a br {
	display: block!important;
}
}
@media screen and (max-width: 480px)  {
.TopTopics__tab	{
	display: none;
}
}

/*liにactiveクラスがついた時の形状*/
.TopTopics__tab li.active a{
	background-color: #c50018;
	color: #ffffff;
	position: relative;
}

/*エリアの表示非表示と形状*/
.TopTopics__area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
}

/*areaにis-activeというクラスがついた時の形状*/
.TopTopics__area.is-active {
 display: block;/*表示*/
 animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
 animation-duration: 1s;
 animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@media screen and (max-width: 480px)  {
.sp .TopTopics__tab	{
	width: 100%;
	display: flex !important;
	flex-flow: row wrap !important;
	border-bottom: none;
	margin-bottom: 15px;
}
.sp .TopTopics__tab li{
	width: 33.333%;
}
.sp .TopTopics__tab li:nth-of-type(4){
	width: 50%;
}
.sp .TopTopics__tab li:nth-of-type(5){
	width: 50%;
}
.sp .TopTopics__tab li a {
	font-weight: 600 !important;
	font-size: 1.4rem !important;
	line-height: 1;
	height: 50px;
	background-color:#ffffff;
	padding:10px;
	margin: 0 0 7px 7px;
	border: 1px solid #cccccc;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sp .TopTopics__tab li:nth-of-type(1) a,
.sp .TopTopics__tab li:nth-of-type(4) a{
	margin: 0 0 7px;
}
.sp .TopTopics__tab li.active a{
	background-color: #c50018 !important;
	border: 1px solid #c50018 !important;
	color: #ffffff !important;
}
.sp .TopTopics__tab li.active a::before {
	display: none !important;
}
}


/* -------------------------------------------------

Main02（行事カレンダー）

------------------------------------------------- */
#Main02 {
	width: 100%;
	margin: 0 0 120px;
}
@media screen and (max-width: 898px)  {
 #Main02 {
	margin: 0 0 100px;
 }
}


/* -------------------------------------------------

TopEvent（行事カレンダー）

------------------------------------------------- */
.TopEvent__wrp	{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 2%;
	position: relative;
}
.TopEvent_Calendar {
 width: 100%;
	margin: auto;
 border-collapse: collapse;
 border-spacing: 0;
}
.TopEvent_Calendar th {
 padding: 3px 0;
 background-color: #ffffff;
 border: 1px solid #cccccc;
	text-align: center;
}
.TopEvent_Calendar th.Sunday {
 background-color: #eed2e2;
	color:#c4004a; 
}
.TopEvent_Calendar th.Saturday {
 background-color: #d4e9fa;
	color:#4e80c2; 
}
.TopEvent_Calendar td {
 padding: 10px;
 border: solid 1px #cccccc;
	text-align: center;
}
.TopEvent_Calendar th,.TopEvent_Calendar td {
	font-size: 1.8rem;
	font-weight: 500;
}
@media screen and (max-width: 768px)  {
.TopEvent_Calendar th,.TopEvent_Calendar td {
	font-size: 1.6rem;
}
}
@media screen and (max-width: 568px)  {
.TopEvent_Calendar th,.TopEvent_Calendar td {
	font-size: 1.4rem;
}
}


/* -------------------------------------------------

Main03（協会概要）

------------------------------------------------- */
#Main03 {
	width: 100%;
	margin: 0 0 120px;
}
@media screen and (max-width: 898px)  {
 #Main03 {
	margin: 0 0 80px;
 }
}


/* -------------------------------------------------

TopProfile（協会概要）

------------------------------------------------- */
.TopProfile__wrp	{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 2%;
	position: relative;
}

/* 左写真+右文章
================================================== */
.TopProfile__box	{
	width: 100%;
	display: flex;
	justify-content:space-between;
	align-items: center;
}
.TopProfile__box .photo_box	{
	max-width: 540px;
	width: 45%;
	border-radius: 30px;
	position: relative;
}
.TopProfile__box .photo_box::after	{
	content: "";
	position: absolute;
	top:50%;
	left:0;
	transform: translateY(-50%);
	width: 10px;
	height: 200px;
	background-color: #c50018;
}
.TopProfile__box .text_box	{
	max-width: 540px;
	width: 45%;
	font-size: 2rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.2rem
}
@media screen and (min-width: 899px) and (max-width: 1080px) {
.TopProfile__box .text_box br	{
	display: none;
}	
}
@media screen and (max-width: 898px)  {
.TopProfile__box .text_box	{
	font-size: 1.8rem;
}
.TopProfile__box .text_box br	{
	display: none;
}
}
@media screen and (max-width: 768px)  {
.TopProfile__box	{
	flex-direction: column;
}
.TopProfile__box .photo_box	{
	max-width: 90%;
	width: 100%;
	border-radius: 20px;
	margin-bottom: 50px;
}
.TopProfile__box .photo_box::after	{
	width: 8px;
	height: 160px;
}
.TopProfile__box .text_box	{
	max-width: 400px;
	width: 100%;
	padding: 0 3%;
}
.TopProfile__box .text_box br	{
	display: block;
}
}
@media screen and (max-width: 640px)  {
.TopProfile__box .photo_box	{
	max-width: 100%;
	width: 100%;
	margin-bottom: 30px;
}
}
@media screen and (max-width: 480px)  {
.TopProfile__box .photo_box::after	{
	height: 100px;
}
.TopProfile__box .text_box	{
	font-size: 1.6rem;
	line-height: 1.8;
}
}
@media screen and (max-width: 414px)  {
.TopProfile__box .text_box br	{
	display: none;
}
}


/* -------------------------------------------------

Main04（写真）

------------------------------------------------- */
#Main04 {
	width: 100%;
	margin: 0 0 150px;
}
@media screen and (max-width: 898px)  {
 #Main04 {
	margin: 0 0 80px;
 }
}


/* -------------------------------------------------

TopPhoto（写真バナー）

------------------------------------------------- */
.TopPhoto__wrp	{
	max-width: 1860px;
	width: 100%;
	margin: 0 auto;
	padding: 0 2%;
}
.TopPhoto__box	{
	position: relative;
}
.TopPhoto__box::after	{
	content: "";
	position: absolute;
	top:50%;
	left:0;
	transform: translateY(-50%);
	width: 10px;
	height: 200px;
	background-color: #c50018;
}
.TopPhoto__box img	{
	width: 100%;
	height: 500px;
	object-fit: cover;
	image-rendering: -webkit-optimize-contrast;
	border-radius: 30px;
}
@media all and (max-width: 768px) {
.TopPhoto__box img	{
	height: 300px;
}
.TopPhoto__box::after	{
	width: 8px;
	height: 160px;
	background-color: #c50018;
}
}
@media all and (max-width: 480px) {
.TopPhoto__box img	{
	height: 200px;
	border-radius: 20px;
}
.TopPhoto__box::after	{
	width: 8px;
	height: 100px;
	background-color: #c50018;
}
}


/* -------------------------------------------------

TopNinaite（各バナー）

------------------------------------------------- */
.TopNinaite__wrp	{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 2%;
}

/* Catchphrase
================================================== */
.TopNinaite__wrp .Catchphrase	{
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.2rem;
	margin-bottom: 50px;
	text-align: center;
}
.TopNinaite__wrp .Catchphrase br	{
	display: none;
}
.both_border {
 display: flex;
 align-items: center;
}
.both_border:before,
.both_border:after {
 content: "";
 height: 1px;
 flex-grow: 1;
 background-color: #cccccc;
}
.both_border:before {
 margin-right: 5rem;
}
.both_border:after {
 margin-left: 5rem;
}
@media all and (max-width: 898px) {
.TopNinaite__wrp .Catchphrase	{
	font-size: 2.4rem;
}
.both_border:before {
 margin-right: 3rem;
}
.both_border:after {
 margin-left: 3rem;
}
}

@media all and (max-width: 768px) {
.TopNinaite__wrp .Catchphrase	{
	font-size: 2.2rem;
}
}

@media all and (max-width: 640px) {
.TopNinaite__wrp .Catchphrase br	{
	display: block;
}
}
@media all and (max-width: 480px) {
.TopNinaite__wrp .Catchphrase	{
	font-size: 2rem;
	text-align: left;
	margin-left: 12px;
	margin-bottom: 30px;
}
.both_border:before,
.both_border:after {
 display: none;
}
}


/* 上写真+下文章
================================================== */
.TopNinaite__box	{
	display: flex;
}
.TopNinaite__box > section	{
	width: calc(25% - 20px);
 margin:0 30px 0 0;
	box-sizing: border-box;
	position: relative;
	background-color: #ffffff;
}
.TopNinaite__box > section:nth-child(4) {
 margin:0;
}
.TopNinaite__box > section a	{
	margin:0;
	width:100%;
	text-decoration:none;
	position: relative;
	-webkit-transition: all .3s;
 							 transition: all .3s;
	display: flex;
	flex-flow: column wrap;
}
.TopNinaite__box > section .image_box {
	width: 100%;
	height: 100%;
	position: relative;
}
.TopNinaite__box > section .image_box::after	{
	content: "";
	position: absolute;
	top:50%;
	left:0;
	transform: translateY(-50%);
	width: 8px;
	height: 70%;
	background-color: #c50018;
}
.TopNinaite__box > section .image_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	image-rendering: -webkit-optimize-contrast;
	border-radius: 10px;
}
.TopNinaite__box > section a:hover .image_box img {
	text-decoration: none;
 opacity: 0.7;
 filter: alpha(opacity=70);
 -moz-opacity: 0.7;
	transition: .3s;
}
.TopNinaite__box > section .text_box	{
	width: 100%;
	min-height: 230px;
	padding: 20px 0px;
	display: flex;
	flex-direction: column;
}
.TopNinaite__box > section h3	{
	font-weight: 500;
	font-size: 1.7rem;
	color:#333333;
	flex-grow: 1;
	position: relative;
	display: inline-block;
}
.TopNinaite__box > section h3 .hosoku	{
	font-weight: 400 !important;
	font-size: 1.3rem !important;
	margin-top: 10px;
}
.TopNinaite__box > section a .details__button	{
	max-width: 180px;
 width: 100%;
	height: 60px;
	border: 2px solid #c50018;
 background-color:#c50018;
 border-radius: 50px;
 position: relative;
 display: flex;
 justify-content: space-around;
	align-items: center;
 padding: 10px 25px;
 color: #ffffff;
 transition: 0.3s ease-in-out;
 font-weight: 700;
	font-size: 1.4rem;
	margin: auto;
}
.TopNinaite__box > section a:hover .details__button{
 color: #ffffff !important;
	text-decoration: none;
	border: 2px solid #df001b;
 background-color:#df001b;
}
.TopNinaite__box > section a:hover .arrow.-right{
	right: -15px;
	transition: 0.3s ease-in-out;
}
.margin-left__5px	{		/* .hosoku用余白 */
	margin-left: 10px !important;
}

@media all and (max-width: 898px) {
.TopNinaite__box	{
	flex-flow: row wrap;
}
.TopNinaite__box > section	{
	width: calc(33.3333% - 20px);
	margin: 0 30px 30px 0;
}
.TopNinaite__box > section:nth-child(3) {
 margin:0;
}
}

@media all and (max-width: 768px) {
.TopNinaite__box > section	{
	width: calc(50% - 15px);
	margin: 0 30px 30px 0;
}
.TopNinaite__box > section:nth-child(2) {
 margin:0 0 30px;
}
.TopNinaite__box > section:nth-child(3) {
 margin: 0 30px 0 0;
}
}

@media all and (max-width: 480px) {
.TopNinaite__box	{
	flex-flow: column wrap;
}
.TopNinaite__box > section	{
	width: 100%;
	margin: 0 0 20px;
}
.TopNinaite__box > section:nth-child(2) {
 margin:0 0 20px;
}
.TopNinaite__box > section:nth-child(3) {
 margin:0 0 20px;
}
.TopNinaite__box > section .image_box::after	{
	width: 5px;
	height: 60%;
}
.TopNinaite__box > section .text_box	{
	min-height: 100%;
	padding: 15px 5px;
}
.TopNinaite__box > section h3	{
	font-size: 1.5rem;
	margin-bottom: 20px;
}
}


/* -------------------------------------------------

Main05（会員紹介）

------------------------------------------------- */
#Main05 {
	width: 100%;
	margin: 0 0 80px;
	position: relative;
	overflow: hidden;	
}

@media screen and (max-width: 768px)  {
 #Main05 {
	/*margin: 0px;*/
	margin: 0 0 60px;
 }
}

/* -------------------------------------------------

TopMember（会員紹介）

------------------------------------------------- */
.TopMember__wrp	{
	max-width: 1200px;
	width: 100%;
	/*margin: 0 auto 140px;*/
	margin: 0 auto;
	padding: 100px 0;
	position: relative;
}
@media screen and (max-width: 1250px)  {
.TopMember__wrp	{
	padding: 100px 2%;
}
}
@media screen and (max-width: 898px)  {
.TopMember__wrp	{
	/*margin: 0 auto;*/
	padding: 80px 2%;
}	
}
@media screen and (max-width: 480px)  {
.TopMember__wrp	{
	/*margin: 0 auto;*/
	padding: 50px 2%;
}	
}

.waku	{
	background-color: #f4f4f4;
	border-radius: 30px;
	position: absolute;
	left: 140px;
	right: 0;
	width: 100%;
	/*height: 100vh;*/
	height: 100%;
}
.waku::after	{
	content: "";
	position: absolute;
	top:50%;
	left:0;
	transform: translateY(-50%);
	width: 10px;
	height: 200px;
	background-color: #c50018;
}
@media screen and (min-width: 1301px) and (max-width: 1600px) {
.waku	{
	left: 2%;
}
}
@media screen and (min-width: 899px) and (max-width: 1300px) {
.waku	{
	border-radius: 0px;
	left: 0;
}
.waku::after	{
	display: none;
}
}
@media screen and (max-width: 898px)  {
.waku	{
	border-radius: 0px;
	left: 0;
}
.waku::after	{
	display: none;
}	
}
@media screen and (max-width: 768px)  {
.waku	{
	/*height: 50vh;*/
}
}

/* 左写真+右文章
================================================== */
.TopMember__box	{
	width: 100%;
	display: flex;
	justify-content:space-between;
	align-items: center;
}
.TopMember__box .photo_box	{
	max-width: 540px;
	width: 45%;
	border-radius: 30px;
	position: relative;
}
.TopMember__box .photo_box img	{
	width: 100%;
	height: 450px;
	object-fit: cover;
	image-rendering: -webkit-optimize-contrast;
	border-radius: 30px;
}
.TopMember__box .photo_box img.pb_position {
 object-position: right 0px center;
}

.TopMember__box .text_box	{
	max-width: 540px;
	width: 45%;
	font-size: 2rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.2rem;
}
.TopMember__box .text_box .Catchphrase	{
	font-size: 4rem;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.2rem;
	margin-bottom: 20px;
}

@media screen and (min-width: 899px) and (max-width: 1080px) {
.TopMember__box .photo_box img.pb_position {
 object-position: center center;
}
.TopMember__box .text_box p br	{
	display: none;
}	
.TopMember__box .text_box .Catchphrase	{
	font-size: 3.4rem;
}
.TopMember__box .text_box .Catchphrase	{
	display:block;
}
}
@media screen and (max-width: 898px)  {
.TopMember__box .photo_box img	{
	height: 380px;
}
.TopMember__box .photo_box img.pb_position {
 /*object-position: right -100px center;*/
	object-position: center center;
}
.TopMember__box .text_box	{
	font-size: 1.8rem;
}
.TopMember__box .text_box p br	{
	display: none;
}
.TopMember__box .text_box .Catchphrase	{
	font-size: 3rem;
}
.TopMember__box .text_box .Catchphrase	{
	display:block;
}
}
@media screen and (max-width: 768px)  {
.TopMember__box	{
	flex-direction: column;
}
.TopMember__box .photo_box	{
	max-width: 90%;
	width: 100%;
	border-radius: 20px;
	margin-bottom: 50px;
}
.TopMember__box .text_box	{
	max-width: 400px;
	width: 100%;
}
.TopMember__box .text_box p br	{
	display: block;
}
}
@media screen and (max-width: 640px)  {
.TopMember__box .photo_box	{
	max-width: 100%;
	width: 100%;
	margin-bottom: 30px;
}
.TopMember__box .photo_box img	{
	height: 320px;
}
}
@media screen and (max-width: 480px)  {
.TopMember__box .photo_box img	{
	height: 280px;
}
.TopMember__box .text_box	{
	font-size: 1.6rem;
	line-height: 1.8;
	padding: 0 3%;
}
.TopMember__box .text_box .Catchphrase	{
	font-size: 2.4rem;
}
}
@media screen and (max-width: 414px)  {
.TopMember__box .text_box p br	{
	display: none;
}
}


/* -------------------------------------------------

Main06（青年部会）

------------------------------------------------- */
#Main06 {
	width: 100%;
	margin: 0 0 120px;
	padding-top: 120px;
	position: relative;
	overflow: hidden;	
}
@media screen and (max-width: 898px)  {
 #Main06 {
	margin: 0 0 80px;
	padding-top: 80px;
 }
}
@media screen and (max-width: 480px)  {
 #Main06 {
	padding-top: 50px;
 }
}


/* -------------------------------------------------

TopSeinen（青年部会）

------------------------------------------------- */
.TopSeinen__wrp	{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 2%;
	position: relative;
}
.TopSeinen__box	{
	position: relative;
}
.TopSeinen__box::after	{
	content: "";
	position: absolute;
	top:50%;
	left:0;
	transform: translateY(-50%);
	width: 10px;
	height: 200px;
	background-color: #c50018;
}
.TopSeinen__box img	{
	width: 100%;
	height: 500px;
	object-fit: cover;
	image-rendering: -webkit-optimize-contrast;
	border-radius: 30px;
	position: relative;
}
.TopSeinen__box a	{
	display: block;
}
.TopSeinen__box a .rd_button	{
	position: absolute;
	right: 40px;
	bottom: 40px;
	max-width: 230px;
 width: 100%;
}
.TopSeinen__box a .rd_button .button	{
	height: 80px;
}
.TopSeinen__box a:hover	{
	text-decoration: none;
}
.TopSeinen__box a:hover .rd_button .arrow.-right	{
	right: -15px;
	transition: 0.3s ease-in-out;
}

@media all and (max-width: 768px) {
.TopSeinen__box img	{
	height: 300px;
}
.TopSeinen__box::after	{
	width: 8px;
	height: 160px;
}
.TopSeinen__box a .rd_button	{
	right: 20px;
	bottom: 20px;
}
.TopSeinen__box a .rd_button .button	{
	height: 60px;
}
}
@media all and (max-width: 480px) {
.TopSeinen__box img	{
	height: 240px;
	border-radius: 20px;
}
.TopSeinen__box::after	{
	width: 8px;
	height: 100px;
}
.TopSeinen__box a .rd_button	{
	right: 10px;
	bottom: 10px;
}
}


/* -------------------------------------------------

Main07（会館予約）

------------------------------------------------- */
#Main07 {
	width: 100%;
	margin: 0 0 120px;
}
@media screen and (max-width: 898px)  {
 #Main07 {
	margin: 0 0 80px;
 }
}

/* -------------------------------------------------

TopKaikanYoyaku（会館予約）

------------------------------------------------- */
.TopKaikanYoyaku__wrp	{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 2%;
	position: relative;
}

/* 左写真+右文章
================================================== */
.TopKaikanYoyaku__box	{
	width: 100%;
	display: flex;
	justify-content:space-between;
	align-items: center;
}
.TopKaikanYoyaku__box .photo_box	{
	max-width: 540px;
	width: 45%;
	border-radius: 30px;
	position: relative;
}
.TopKaikanYoyaku__box .photo_box::after	{
	content: "";
	position: absolute;
	top:50%;
	left:0;
	transform: translateY(-50%);
	width: 10px;
	height: 200px;
	background-color: #c50018;
}
.TopKaikanYoyaku__box .text_box	{
	max-width: 540px;
	width: 45%;
	font-size: 2rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.2rem
}
@media screen and (min-width: 899px) and (max-width: 1080px) {
.TopKaikanYoyaku__box .text_box br	{
	display: none;
}	
}
@media screen and (max-width: 898px)  {
.TopKaikanYoyaku__box .text_box	{
	font-size: 1.8rem;
}
.TopKaikanYoyaku__box .text_box br	{
	display: none;
}
}
@media screen and (max-width: 768px)  {
.TopKaikanYoyaku__box	{
	flex-direction: column;
}
.TopKaikanYoyaku__box .photo_box	{
	max-width: 90%;
	width: 100%;
	border-radius: 20px;
	margin-bottom: 50px;
}
.TopKaikanYoyaku__box .photo_box::after	{
	width: 8px;
	height: 180px;
}
.TopKaikanYoyaku__box .text_box	{
	max-width: 400px;
	width: 100%;
	padding: 0 3%;
}
.TopKaikanYoyaku__box .text_box br	{
	display: block;
}
}
@media screen and (max-width: 640px)  {
.TopKaikanYoyaku__box .photo_box	{
	max-width: 100%;
	width: 100%;
	margin-bottom: 30px;
}
}
@media screen and (max-width: 480px)  {
.TopKaikanYoyaku__box .photo_box::after	{
	height: 100px;
}
.TopKaikanYoyaku__box .text_box	{
	font-size: 1.6rem;
	line-height: 1.8;
}
}
@media screen and (max-width: 414px)  {
.TopKaikanYoyaku__box .text_box br	{
	display: none;
}
}


/* -------------------------------------------------

Main08（ギョーカイ用語集バナー）

------------------------------------------------- */
#Main08 {
	width: 100%;
	margin: 0 0 120px;
}
@media screen and (max-width: 898px)  {
 #Main08 {
	margin: 0 0 80px;
 }
}


/* -------------------------------------------------

TopBanner（ギョーカイ用語集バナー）

------------------------------------------------- */
.TopBanner__wrp	{
	max-width: 1620px;
	width: 100%;
	margin: 0 auto;
	padding: 0 2%;
}
.TopBanner__box img	{
	width: 100%;
	object-fit: cover;
	image-rendering: -webkit-optimize-contrast;
}
.TopBanner__box:hover img	{
	opacity: 0.7;
 filter: alpha(opacity=70);
 -moz-opacity: 0.7;
	transition: .3s;
}
@media all and (max-width: 768px) {
.TopBanner__box img	{
}
}


/* -------------------------------------------------

other（その他）

------------------------------------------------- */
/* 背景のアニメーション
================================================== */
.move_bg {
	width: 100%;
	height: 45px;
	background-image: url("../images/move_bg.svg");
	background-repeat: repeat-x;
	background-position: center;
	animation: main_bg 30s infinite linear;
	background-size: 1264px;
}
@keyframes main_bg {
	0% {
		background-position: left 1264px bottom 0;
	}
	100% {
		background-position: left -1264px bottom 0;
	}
}

/* ページ内の飾り
================================================== */
.deco01,.deco02,.deco03,.deco04	{
	position: absolute;
}
.deco01	{
	bottom:200px;
	left:-50px;
	z-index: 1;
}
.deco02	{
	top:160px;
	right:-30px;
	z-index: 1;
}
.deco03	{
	top:280px;
	left:-350px;
}
.deco04	{
	top:160px;
	right:-210px;
}
@media screen and (max-width: 1400px)  {
.deco01,.deco02,.deco03,.deco04	{
	display: none;
}
}
@media print {
.deco01,.deco02,.deco03,.deco04	{
	display: none;
}
}

