@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:600');



/* =======================================
	Page Top Panel Start
======================================= */

.pagetop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index: 10;
}

.pagetop a {
    display: block;
    text-decoration: none;
}
 
.pagetop a:hover {
    display: block;
	background-image:url(../images/fixed_photo/down_icon_hover.png);
	background-repeat: no-repeat;
	z-index: 100;
}

/* =======================================
	Page Top Panel Finish
======================================= */



/* =======================================
	Hover Effect Panel Start
======================================= */
/*体験授業申し込み*/

.botton {
    background-color: #c91228;
    color: #fff !important;
    background-size: 200% 100%;	
    background-image: -webkit-linear-gradient(left, transparent 50%, rgba(201, 18, 40, 1) 50%);	
    background-image: linear-gradient(to right, transparent 50%, rgba(201, 18, 40, 1) 50%);
    -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
    transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
}

.botton:hover {
    background-color: #c91228;
    background-position: -100% 100%;
}

/*体験授業申し込み終わり*/
/* =======================================
	Hover Effect Panel Finish
======================================= */



/* =======================================
	Contact Panel Start
======================================= */
/*コンタクトパネル*/	

#contact_first_panel {
	padding: 5% 0;
}

form#mail_form{
	width : 80%;
	margin : 0 auto;
	padding : 10px 0;
	background : #ffffff;
	border : 1px solid #cccccc;
	border-radius : 7px;
}

form#mail_form dl{
	width : 90%;
	margin : 0 auto;
	overflow : hidden;
}

form#mail_form dl dt{
	clear : both;
	width : 30%;
	float : left;
	border-top : 1px solid #cccccc;
	padding : 15px 0;
	text-align : right;
	overflow : hidden;
}

form#mail_form dl dd{
	width : 65%;
	float : right;
	border-top : 1px solid #cccccc;
	padding : 15px 0 15px 5%;
}

form#mail_form dl dt:first-child,
form#mail_form dl dt:first-child+dd{
	border : none;
}

form#mail_form dl dt span{
	display : block;
	font-size : 85%;
	color : #c91228;
}

form#mail_form dd p {
	color: #c91228;
	margin-top: 10px;
}

/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional{
	display : inline-block;
	float : left;
	color : #ffffff;
	line-height : 1;
	padding : 8px 9px;
	border-radius : 3px;
}

form#mail_form dl dt span.required{
	background : #c91228;
	border : 1px solid #c91228;
}

form#mail_form dl dt span.optional{
	background : #FFF;
	border : 1px solid #c91228;
	color: #c91228;
}

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match{
	display : block;
	color : #c91228;
	margin-top : 3px;
}


span.loading{
	width : 50px;
	height : 50px;
	border-radius : 50%;
	border-top : 5px solid rgba( 255, 255, 255, 0.2 );
	border-right : 5px solid rgba( 255, 255, 255, 0.2 );
	border-bottom : 5px solid rgba( 255, 255, 255, 0.2 );
	border-left : 5px solid #ffffff;
	-webkit-transform : translateZ( 0 );
	-ms-transform : translateZ( 0 );
	transform : translateZ( 0 );
	-webkit-animation : load-circle 1.0s linear infinite;
	animation : load-circle 1.0s linear infinite;
	position : absolute;
	top : 50%;
	left : 50%;
	margin-top : -25px;
	margin-left : -25px;
}

@-webkit-keyframes load-circle{
	0%{
		-webkit-transform : rotate( 0deg );
		transform : rotate( 0deg );
	}
	100%{
		-webkit-transform : rotate( 360deg );
		transform : rotate( 360deg );
	}
}

@keyframes load-circle{
	0%{
		-webkit-transform : rotate( 0deg );
		transform : rotate( 0deg );
	}
	100%{
		-webkit-transform : rotate( 360deg );
		transform : rotate( 360deg );
	}
}


/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */


form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"]{
	max-width : 90%;
	height : 2em;
	padding : 2px 2%;
	border : 1px solid #cccccc;
	border-radius : 3px;
	background : #fafafa;
	-webkit-appearance : none;
	font-size : 100%;
	font-family : inherit;
	margin-top : 5px;
}

form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form textarea:focus{
	box-shadow : 0px 0px 5px #55ccff;
	border : 1px solid #55ccff;
	background : #ffffff;
}

form#mail_form ul li input[type="radio"],
form#mail_form ul li input[type="checkbox"]{
	margin-right : 10px;
	margin-top : 7px;
}

form#mail_form ul li:first-child input[type="radio"],
form#mail_form ul li:first-child input[type="checkbox"]{
	margin-top : 0px;
}

form#mail_form select{
	font-size : 100%;
	margin-top : 5px;
}

form#mail_form textarea{
	display : block;
	width : 90%;
	max-width : 90%;
	height : 200px;
	padding : 2px 2%;
	resize : vertical;
	border : 1px solid #cccccc;
	border-radius : 3px;
	background : #fafafa;
	-webkit-appearance : none;
	font-size : 100%;
	font-family : inherit;
}

form#mail_form ul{
	list-style-type : none;
}

form#mail_form ul li label:hover{
	cursor : pointer;
}

form#mail_form input#name_1,
form#mail_form input#name_2,
form#mail_form input#read_1,
form#mail_form input#read_2,
form#mail_form input#phone_1{
	width : 30%;
}

form#mail_form input#postal{
	width: 20%;
}

form#mail_form input#mail_address_1,
form#mail_form input#mail_address_confirm_1{
	width : 80%;
}

form#mail_form input#postal+a{
	display : inline-block;
	padding : 9px 15px;
	vertical-align : middle;
	line-height : 1;
	background : #c91228;
	border : 1px solid #c91228;
	border-radius : 3px;
	color : #ffffff;
	font-weight: bold;
	font-family : inherit;
	text-decoration : none;
	position : relative;
	top : -1px;
}

form#mail_form input#postal+a:hover{
	cursor : pointer;
	background : #FFF;
	border : 1px solid #c91228;
	color: #c91228;
}

form#mail_form input#address_1,
form#mail_form input#address_2{
	display : block;
	width : 90%;
	margin-top : 0px;
}

form#mail_form input#address_2{
	margin-top : 7px;
}

form#mail_form p#form_submit{
	width : 90%;
	margin : 0 auto;
	padding : 15px 0;
	text-align: right;
	border-top : 1px solid #cccccc;
}

form#mail_form input[type="button"]{
	padding : 12px 20px;
	width: 200px;
	vertical-align : middle;
	line-height : 1;
	background : #c91228;
	border : 1px solid #c91228;
	border-radius : 3px;
	color : #ffffff;
	font-family : inherit;
	-webkit-appearance : none;
	font-size : 100%;
	box-sizing: border-box;
}

form#mail_form input[type="button"]:hover{
	cursor : pointer;
	background : #FFF;
	border : 1px solid #c91228;
	color: #c91228;
}

form#mail_form input#form_submit_button{
	margin-left : 35%;
}

/*コンタクトパネル終わり*/	
/* =======================================
	Contact Panel Finish
======================================= */




/* =======================================
781px以上（PCとタブレット横型）
======================================= */

@media print, screen and (min-width:781px) {

	
.display_tablet {
	display: none;	
}	
	
.display_sp {
	display: none;	
}	
	
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
	

	
/* =======================================
	Header Panel Start
======================================= */
/*ヘッダーパネル*/	
	
header {
	background-color: rgba(67,65,65,0.8);
	position: absolute;
	top:0;
	z-index: 100;
	width: 100%;
}	

header h1 {
	width: 36%;
}
		
header h1 img {
	width: 44px;
	height: auto;
	vertical-align: middle;
}

header h1 a {
	text-decoration: none;
	color: #FFF;
	font-size: 22px;
	font-weight: bold;
}	
	
#header_category01 {
	width: 80%;
	justify-content: space-between;
	margin: 0 10%;
	align-items: flex-end;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
	display: flex;
	align-items: center;
}

/*ヘッダーパネル終わり*/	
/* =======================================
	Header Panel Finish
======================================= */	
	

	
/* =======================================
	Global Navigation Panel Start
======================================= */
/*グローバルナビゲーションパネル*/	
	
#global_navigation {
	width: 64%;
	margin-top: 4px;
}

#global_navigation ul {
	width: 100%;
	font-size: 16px;
	color: #FFF;
	font-weight: 600;
	list-style: none;
	padding: 30px 0 40px;
	align-items: center;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
	display: flex;
}

#global_navigation ul li {
	width: 100%;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	color: #FFF;
	vertical-align: middle;
	line-height: 1.4;
}	
	
#global_navigation ul li a {
	display: block;
    width: 100%;
	text-align: center;
	color: #FFF;
	text-decoration: none;
	border-right: 2px solid #FFF;
	padding: 4px 0;
}	

#global_navigation ul li:first-child {
	border-left: 2px solid #FFF;
}
	
#global_navigation ul li a:hover {
	color: #FFF;
}

.navigation_menu_support01 {
	font-size: 12px;	
}	
	
/*グローバルナビゲーションパネル終わり*/		
/* =======================================
	Global Navigation Panel Finish
======================================= */		
	

	
/* =======================================
	Contents summary Panel Start
======================================= */
/*ファーストビューパネル*/	

#first_view_panel {
	position: relative;
	overflow: hidden;
    width: 100%;
    height: 100vh;
}	
	
video {
 	position: absolute;
	top: 0;
 	min-width: 100%;
    min-height: 100vh;
}

#first_view_panel figure {
	display: none;	
}
	
#first_view_panel_category01 {
	position: absolute;
	top: 32%;
	width: 100%;
	height: auto;
	z-index: 50;
}	
		
#first_view_panel_category01 h2 {
	font-family: 'Noto Serif JP', serif;
	font-weight: bold;
	font-size: 32px;
	color: #FFF;
	line-height: 1.8;
	text-align: center;
}		
	
#first_view_panel_category01 p {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #FFF;
	line-height: 1.8;
	text-align: center;
	margin-top:40px;
}	

#first_view_panel_category02 {
	position: absolute;
	bottom: 40px;
	width: 100%;
	height: auto;
	z-index: 50;
	text-align: center;
}	

/*スクロールボタン*/		
	
#first_view_panel_category02 p a {
    padding-top: 60px;
	color: #FFF;
	text-decoration: none;
}
	
#first_view_panel_category02 p a span {
    position: absolute;
	bottom: 48px;
	left: 50%;
	width: 30px;
	height: 50px;
	margin-left: -15px;
	border: 2px solid #FFF;
	border-radius: 50px;
	box-sizing: border-box;
}
	
#first_view_panel_category02 p a span::before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #FFF;
    border-radius: 100%;
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    box-sizing: border-box;
}
	
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}	
		
/*スクロールボタン終わり*/	
/*ファーストビューパネル終わり*/	
	
	
/*ファーストパネル*/

#contents_summary_first_panel {
	padding: 4% 0 5%;
	background-color: #FFF;	
}	

#contents_summary_first_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#contents_summary_first_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#contents_summary_first_panel_category01 ul {
	width: 80%;
	margin: 40px 10% 0;
}

#contents_summary_first_panel_category01 ul li {
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	text-decoration: none;
	color: #000;
	padding: 20px;
	border-top: 1px dotted #262626;
	border-bottom: 1px dotted #262626;
}

#contents_summary_first_panel_category01 ul li br {
	display: none;
}	
	
#contents_summary_first_panel_category01 ul li:nth-child(2n) {
	border-top: none;
	border-bottom: none;
}

#contents_summary_first_panel_category01 ul li .news-desc .news_text a {
	color: #c91228;
	font-weight: bold;
}	

#contents_summary_first_panel_category01 ul li .news-desc .news_text a:hover {
	color: #1228c9;
	font-weight: bold;
}	
	
.news-desc {
	margin-left: 10px;
}

#contents_summary_first_panel_category01 .botton {
	font-size: 16px;
	font-weight: bold;
	color: #c91228 !important;
	padding: 16px 20px;
	text-align: center;
	text-decoration: none;
	width: 200px;
	display: block;
	background-color: #FFF;
	border: 3px solid #c91228;
	margin: 40px auto 0;
}

#contents_summary_first_panel_category01 p .botton:hover {
	color: #FFF !important;
}

/*ファーストパネル終わり*/	

	
/*セカンドパネル*/

#contents_summary_second_panel {
	padding: 4% 0 5%;
	background-color: #fafafa;	
}	

#contents_summary_second_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
	margin-bottom: 40px;
}			

#contents_summary_second_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
.contents_summary_second_panel_category01 {
	width: 80%;
	margin: 0 10%;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}		

.contents_summary_second_panel_category02 {
	width: 50%;
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
}		

.contents_summary_second_panel_category02 figure:nth-child(2n) {
	display: none;
}	
	
.contents_summary_second_panel_category03 {
	width: 50%;
	background: #FFF;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	align-items: center;
	padding: 0 20px;
	box-sizing: border-box;
}	

.contents_summary_second_panel_category03 h3 {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}		

.contents_summary_second_panel_category03 p {
	padding-top: 20px;
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}	

.contents_summary_second_panel_category03_support a {
	font-size: 16px;
	font-weight: bold;
	color: #c91228 !important;
	padding: 16px 20px;
	text-align: center;
	text-decoration: none;
	width: 200px;
	box-sizing: border-box;
	display: block;
	background-color: #FFF;
	border: 3px solid #c91228;
	margin: 0 auto;
}

.contents_summary_second_panel_category03_support a:hover {
	color: #FFF !important;
}	

.contents_summary_second_panel_category04 br {
	display: none;
}	
	
.contents_summary_second_panel_category05 {
	width: 80%;
	margin: 0 10%;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	flex-direction: row-reverse;
}	
	
/*セカンドパネル終わり*/

	
/*サードパネル*/

#contents_summary_third_panel {
	padding: 4% 0 5%;
	background-color: #FFF;
}	

#contents_summary_third_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#contents_summary_third_panel h2 span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#contents_summary_third_panel_category01 {
	width: 100%;
	margin: 40px 0 0;
	padding: 20px 0;
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}	

#contents_summary_third_panel_category01 h3 {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}	

#contents_summary_third_panel_category01 h3 br {
	display: none;
}	
	
#contents_summary_third_panel_category02 {
	width: 86%;
	margin: 20px 7% 0;
	justify-content: space-around;
	align-items: flex-end;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}	
	
#contents_summary_third_panel_category03 h4 a {
	font-size: 16px;
	font-weight: bold;
	color: #c91228 !important;
	padding: 16px 20px;
	text-align: center;
	text-decoration: none;
	width: 300px;
	display: block;
	background-color: #FFF;
	border: 3px solid #c91228;
	margin: 40px auto 0;
}

#contents_summary_third_panel_category03 h4 a:hover {
	color: #FFF !important;
}

#contents_summary_third_panel_category03_support {
	font-size: 14px;
}		

#contents_summary_third_panel_category03 {
	width: 33%;
}	
	
#contents_summary_third_panel_category04 {
	width: 33%;
}	
	
#contents_summary_third_panel_category04 ul {
	text-align: center;
	line-height: 1.8;
}

#contents_summary_third_panel_category04 ul li img {
	vertical-align: middle;
}	

#contents_summary_third_panel_category04 h5 {
	font-size: 18px;
	font-weight: bold;
	margin-left: 10px;
}	
	
#contents_summary_third_panel_category04_support {
	font-size: 30px;
	font-weight: bold;
	margin-left: 10px;
	vertical-align: middle;
}

#contents_summary_third_panel_category04_support a {
	text-decoration: none;
	color: #c91228;
}
	
/*サードパネル終わり*/	
/* =======================================
	Contents summary Panel Finish
======================================= */	
	

	
/* =======================================
	About Panel Start
======================================= */
/*ファーストパネル*/

#about_first_panel {
	padding: 160px 0 5%;
	background-color: #FFF;
}

#about_first_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#about_first_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#about_first_panel_category01 {
	width: 80%;
	margin: 40px 10% 0;
}

#about_first_panel_category01 table {
	width: 100%;
}

#about_first_panel_category01 table th {
	width: 20%;
	text-align: left;
	padding: 20px 40px;
	color: #FFF;
	font-weight: bold;
	background-color: #247d37;
	box-sizing: border-box;
}

#about_first_panel_category01 table td {
	width: 80%;
	padding: 20px 40px;
	box-sizing: border-box;
}

#about_first_panel_category01 table tr {
	border-bottom: solid 1px #434141;
	border-right: solid 1px #434141;
}

#about_first_panel_category01 table tr:first-child {
	border-top: solid 1px #434141;
}
	
/*ファーストパネル終わり*/
/* =======================================
	About Panel Finish
======================================= */	


	
/* =======================================
	Business Panel Start
======================================= */
/*ファーストパネル*/

#business_first_panel {
	padding: 160px 0 5%;
	background-color: #FFF;
}

#business_first_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#business_first_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#business_first_panel_category01 {
	width: 80%;
	margin: 40px 10% 0;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
}

.business_first_panel_category02 {
	width: 45%;
	padding-right: 5%;
	font-size: 14px;
	line-height: 1.7;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #000;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
}	
	
.business_first_panel_category02 h3 {
	font-size: 18px;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 10px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	

.business_first_panel_category02 h3 a {
	color: #c91228;
	text-decoration: underline;
}
	
.business_first_panel_category02 h3 a:hover	{
	color: #1228c9;
}	

.business_first_panel_category02 h4 {
	color: #c91228;
	font-weight: bolder;
}	

.business_first_panel_category02 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}	
	
.business_first_panel_category03 {
	width: 45%;
	padding-left: 25px;
	font-size: 14px;
	line-height: 1.7;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
}	

.business_first_panel_category03 h3 {
	font-size: 18px;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 10px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	

.business_first_panel_category03 h3 a {
	color: #c91228;
	text-decoration: underline;
}
	
.business_first_panel_category03 h3 a:hover	{
	color: #1228c9;
}	

.business_first_panel_category03 h4 {
	color: #c91228;
	font-weight: bolder;
}	
	
.business_first_panel_category03 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}
	
/*ファーストパネル終わり*/
/* =======================================
	Business Panel Finish
======================================= */		
	

	
/* =======================================
	Endbaded system to Excel vba Panel Start
======================================= */
/*ファーストパネル*/

#endbaded_system_to_excel_vba_first_panel {
	padding: 160px 0 5%;
	background-color: #FFF;
}

#endbaded_system_to_excel_vba_first_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#endbaded_system_to_excel_vba_first_panel h2 br {
	display: none;
}	
	
#endbaded_system_to_excel_vba_first_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#endbaded_system_to_excel_vba_first_panel_category01 {
	width: 80%;
	margin: 40px 10% 0;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.endbaded_system_to_excel_vba_first_panel_category02 {
	width: 33.3%;
	font-size: 13px;
	line-height: 1.7;
	margin: 0px;
	padding: 10px;
	border: 1px solid #434141;
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}				
	
.endbaded_system_to_excel_vba_first_panel_category02 h3 {
	font-size: 16px;
	color: #c91228;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	

.endbaded_system_to_excel_vba_first_panel_category02 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}	
	
.endbaded_system_to_excel_vba_first_panel_category03 {
	width: 33.4%;
	font-size: 13px;
	line-height: 1.7;
	margin: 0px;
	padding: 10px;
	border: 1px solid #434141;
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}			
	
.endbaded_system_to_excel_vba_first_panel_category03 h3 {
	font-size: 16px;
	color: #c91228;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	
	
.endbaded_system_to_excel_vba_first_panel_category03 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}
	
/*ファーストパネル終わり*/
	
	
/*セカンドパネル*/

#endbaded_system_to_excel_vba_second_panel {
	padding: 4% 0 5%;
	background-color: #fafafa;
}

#endbaded_system_to_excel_vba_second_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#endbaded_system_to_excel_vba_second_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#endbaded_system_to_excel_vba_second_panel_category01 {
	width: 80%;
	margin: 40px 10% 0;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	flex-wrap: wrap;
}

.endbaded_system_to_excel_vba_second_panel_category02 {
	width: 33.3%;
	font-size: 13px;
	line-height: 1.7;
	margin: 0px;
	padding: 10px;
	border: 1px solid #434141;
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}				
	
.endbaded_system_to_excel_vba_second_panel_category02 h3 {
	font-size: 16px;
	color: #c91228;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	

.endbaded_system_to_excel_vba_second_panel_category02 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}	
	
.endbaded_system_to_excel_vba_second_panel_category03 {
	width: 33.4%;
	font-size: 13px;
	line-height: 1.7;
	margin: 0px;
	padding: 10px;
	border: 1px solid #434141;
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}			
	
.endbaded_system_to_excel_vba_second_panel_category03 h3 {
	font-size: 16px;
	color: #c91228;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	
	
.endbaded_system_to_excel_vba_second_panel_category03 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}

.endbaded_system_to_excel_vba_second_panel_category04 {
	width: 33.3%;
	font-size: 13px;
	line-height: 1.7;
	margin: 0px;
	padding: 10px;
	border: 1px solid #434141;
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;			
}				
	
.endbaded_system_to_excel_vba_second_panel_category04 h3 {
	font-size: 16px;
	color: #c91228;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	

.endbaded_system_to_excel_vba_second_panel_category04 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}	
	
.endbaded_system_to_excel_vba_second_panel_category05 {
	width: 33.4%;
	font-size: 13px;
	line-height: 1.7;
	margin: 0px;
	padding: 10px;
	border: 1px solid #434141;
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;			
}			
	
.endbaded_system_to_excel_vba_second_panel_category05 h3 {
	font-size: 16px;
	color: #c91228;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	
	
.endbaded_system_to_excel_vba_second_panel_category05 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}	
	
/*セカンドパネル終わり*/
/* =======================================
	Endbaded system to Excel vba Panel Finish
======================================= */	
	

	
/* =======================================
	Web design to flyers design Panel Start
======================================= */	
/*ファーストパネル*/

#web_design_to_flyers_design_first_panel {
	padding: 160px 0 5%;
	background-color: #FFF;
}

#web_design_to_flyers_design_first_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#web_design_to_flyers_design_first_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#web_design_to_flyers_design_first_panel_category01 {
	width: 80%;
	margin: 40px 10% 0;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	flex-wrap: wrap;
}

.web_design_to_flyers_design_first_panel_category02 {
	width: 33.3%;
	font-size: 13px;
	line-height: 1.7;
	margin: 0px;
	padding: 10px;
	border: 1px solid #434141;
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}				
	
.web_design_to_flyers_design_first_panel_category02 h3 {
	font-size: 16px;
	color: #c91228;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	

.web_design_to_flyers_design_first_panel_category02 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}	
	
.web_design_to_flyers_design_first_panel_category03 {
	width: 33.4%;
	font-size: 13px;
	line-height: 1.7;
	margin: 0px;
	padding: 10px;
	border: 1px solid #434141;
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}			
	
.web_design_to_flyers_design_first_panel_category03 h3 {
	font-size: 16px;
	color: #c91228;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	
	
.web_design_to_flyers_design_first_panel_category03 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}

.web_design_to_flyers_design_first_panel_category04 {
	width: 33.3%;
	font-size: 13px;
	line-height: 1.7;
	margin: 0px;
	padding: 10px;
	border: 1px solid #434141;
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}				
	
.web_design_to_flyers_design_first_panel_category04 h3 {
	font-size: 16px;
	color: #c91228;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	

.web_design_to_flyers_design_first_panel_category04 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}	
	
.web_design_to_flyers_design_first_panel_category05 {
	width: 33.4%;
	font-size: 13px;
	line-height: 1.7;
	margin: 0px;
	padding: 10px;
	border: 1px solid #434141;
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}			
	
.web_design_to_flyers_design_first_panel_category05 h3 {
	font-size: 16px;
	color: #c91228;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	
	
.web_design_to_flyers_design_first_panel_category05 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}	
		
/*ファーストパネル終わり*/

	
/*セカンドパネル*/

#web_design_to_flyers_design_second_panel {
	padding: 4% 0 5%;
	background-color: #fafafa;
}

#web_design_to_flyers_design_second_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#web_design_to_flyers_design_second_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#web_design_to_flyers_design_second_panel_category01 {
	width: 80%;
	margin: 40px 10% 0;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.web_design_to_flyers_design_second_panel_category02 {
	width: 33.3%;
	font-size: 13px;
	line-height: 1.7;
	margin: 0px;
	padding: 10px;
	border: 1px solid #434141;
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}				
	
.web_design_to_flyers_design_second_panel_category02 h3 {
	font-size: 16px;
	color: #c91228;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	

.web_design_to_flyers_design_second_panel_category02 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}	
	
.web_design_to_flyers_design_second_panel_category03 {
	width: 33.4%;
	font-size: 13px;
	line-height: 1.7;
	margin: 0px;
	padding: 10px;
	border: 1px solid #434141;
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}			
	
.web_design_to_flyers_design_second_panel_category03 h3 {
	font-size: 16px;
	color: #c91228;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-weight: bolder;
	padding: 0px 0px 5px;
	margin-right: 25px;
	border-bottom: 1.5px dotted #434141;
}	
	
.web_design_to_flyers_design_second_panel_category03 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}
	
/*セカンドパネル終わり*/
/* =======================================
	Web design to flyers design Panel Finish
======================================= */	
	
	
/* =======================================
	Works Panel Start
======================================= */
/*ファーストパネル*/

#works_first_panel {
	padding: 160px 0 5%;
	background-color: #FFF;
}	

#works_first_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#works_first_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#works_first_panel_category01 {
	width: 80%;
	margin: 6% 10% 0;
	padding: 20px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	flex: 1;
}

#works_first_panel_category01 ul {
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}	
	
#works_first_panel_category01 ul li {
	width: calc(23% - 0px);
	box-sizing: border-box;
	padding-bottom: 20px;
}

.works_first_panel_category02 {
	width: 100%;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
}	
	
.works_first_panel_category03 {
	width: 100%;
}

.works_first_panel_category02 a {
	font-size: 18px;
	width: 100%;
	text-align: center;
	margin-top: 10px;
	font-weight: bolder;
	color: #c91228;
	text-decoration: underline;
}	

.works_first_panel_category02 a:hover	{
	color: #1228c9;
}		
	
/*ファーストパネル終わり*/
/* =======================================
	Works Panel Finish
======================================= */	
	

	
/* =======================================
	Access Panel Start
======================================= */
/*ファーストパネル*/

#access_first_panel {
	padding: 160px 0 5%;
	background-color: #FFF;
}

#access_first_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#access_first_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}		
	
#access_first_panel_category01 {
	width: 80%;
	margin: 40px 10% 0;
}

#access_first_panel_category02 {
	display: flex;
	justify-content: space-between;
	background-color: rgba(255,255,255,0.6);
	width: 80%;
	margin: 0 10%;
}

#access_first_panel_category02 ul {
	list-style: none;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	padding-left: 10px;
	padding-right: 10px;
	border-left: 5px solid #F00;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -webkit-transition: transform 0.8s;
  -o-transition: transform 0.8s;
}

.access_support01 {
	font-size: 15px;
	font-weight: bold;
}

.access_support02 {
	font-size: 13px;
}

.access_support02 a {
	color: #000000;
}
	
/*ファーストパネル終わり*/
/* =======================================
	Access Panel Finish
======================================= */		


	
/* =======================================
	Privacy Protection Panel Start
======================================= */
/*ファーストパネル*/

#privacy_protection_first_panel {
	padding: 160px 0 5%;
	background-color: #FFF;
}	

#privacy_protection_first_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#privacy_protection_first_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#privacy_protection_first_panel_category01 {
	width: 80%;
	margin: 40px 10% 0;
}

#privacy_protection_first_panel_category01 p {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}

#privacy_protection_first_panel_category01 ul {
	margin: 40px 2%;
}

#privacy_protection_first_panel_category01 ul li {
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}

#privacy_protection_first_panel_category01_support01 {
	margin-top: 40px;
}

#privacy_protection_first_panel_category01_support02 {
	font-weight: bold;
}

#privacy_protection_first_panel_category02 {
	width: 90%;
	margin-top: 20px;
}

#privacy_protection_first_panel_category02_support01 {
	text-align: right;
}

/*ファーストパネル終わり*/
/* =======================================
	Privacy Protection Panel Finish
======================================= */		
	

/* =======================================
	Site Map Panel Start
======================================= */
/*ファーストパネル*/

#site_map_first_panel {
	padding: 160px 0 5%;
	background-color: #FFF;
}	

#site_map_first_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#site_map_first_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#site_map_first_panel_category01 {
	width: 80%;
	margin: 5% 10% 0;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
	padding-right: 0px;
	padding-left: 0px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	flex: 1;
}

.list-box {
	width: calc(26% - 0px);
	box-sizing: border-box;
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: 50px;
	padding-left: 0px;
}

.list-box ul li {
	font-size: 16px;
	line-height: 4;
	color: #000;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #000;
}	
	
.list-box ul li img {
	margin-right: 10px;
	vertical-align:middle;
}

.list-box ul li:last-child {
	border-bottom: none;
}

.list-box ul li:nth-child(5) {
	border-bottom: none;
}	
	
.list-box ul li a {
	text-decoration: none;
	color: #000;
}

.list-box ul li a:hover {
	color: #cd000f;
}	

/*ファーストパネル終わり*/
/* =======================================
	Site Map Panel Finish
======================================= */
	

	
/* =======================================
	Work out details Panel Start
======================================= */
/*ファーストパネル*/

#work_out_details_first_panel {
	padding: 160px 0 5%;
	background-color: #FFF;
}	

#work_out_details_first_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#work_out_details_first_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#work_out_details_first_panel_category01 {
	width: 80%;
	margin: 40px 10% 0;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
}	
	
#work_out_details_first_panel_category02 {
	width: 33%;	
}

#work_out_details_first_panel_category02 h3 {
	font-size: 24px;
	font-family: 'Noto Serif JP', serif;
	font-weight: bold;
}	

#work_out_details_first_panel_category02 h4 {
	margin: 24px 0;
	font-size: 16px;
	font-weight: 600;
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}
	
#work_out_details_first_panel_category02 p {
	margin: 0 10px;
	font-size: 16px;
	font-weight: bold;
}
	
#work_out_details_first_panel_category03 {
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	padding: 10px 10px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

#work_out_details_first_panel_category03 ul:last-child {
	margin-left: 10px;
}	
	
#work_out_details_first_panel_category03 ul li {
	margin-bottom: 10px;
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}	
	
#work_out_details_first_panel_category04 {
	width: 60%;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
}	

#work_out_details_first_panel_category04 p {
	margin-top: 10px;
	font-size: 18px;
	font-weight: bold;
}

#work_out_details_first_panel_category04 p a {
	color: #c91228;
	text-decoration: underline;
}
	
#work_out_details_first_panel_category04 p a:hover	{
	color: #1228c9;
}	
	
#work_out_details_first_panel_support a{
	font-size: 16px;
	font-weight: bold;
	color: #c91228 !important;
	padding: 16px 20px;
	text-align: center;
	text-decoration: none;
	width: 300px;
	box-sizing: border-box;
	display: block;
	background-color: #FFF;
	border: 3px solid #c91228;
	margin: 36px auto 0;
}

#work_out_details_first_panel_support a:hover {
	color: #FFF !important;
}		
	
/*ファーストパネル終わり*/

	
/*セカンドパネル*/

#work_out_details_second_panel {
	padding: 160px 0 5%;
	background-color: #fafafa;
}

#work_out_details_second_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}	

#work_out_details_second_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#work_out_details_second_panel_category01 ul {
	width: 80%;
	margin: 40px 10% 0;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}	

#work_out_details_second_panel_category01 ul li a {
	margin-bottom: 20px;
	text-decoration: none;
	color: #000;
}	

.work_out_details_second_panel_category02 p {
	margin: 10px 0 20px;
	font-size: 16px;
	font-weight: 600;
}	

.work_out_details_second_panel_category03 {
    overflow: hidden;
}

#work_out_details_second_panel_category01 ul li {
	width: calc(23% - 0px);
	box-sizing: border-box;
	padding-bottom: 20px;
	transition: opacity 0.8s;
  -moz-transition: opacity 0.8s;
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
}	
	
.work_out_details_second_panel_category03 img {
   -moz-transition: -moz-transform 0.5s linear;
   -webkit-transition: -webkit-transform 0.5s linear;
   -o-transition: -o-transform 0.5s linear;
   -ms-transition: -ms-transform 0.5s linear;
   transition: transform 0.5s linear;
}

.work_out_details_second_panel_category03 img:hover {
   -webkit-transform: scale(1.2);
   -moz-transform: scale(1.2);
   -o-transform: scale(1.2);
   -ms-transform: scale(1.2);
   transform: scale(1.2);
   opacity: 0.6;	/* 小さくするほど暗くなります */
}
	
/*セカンドパネル終わり*/	
/* =======================================
	Work out details Panel Finish
======================================= */
	

/* =======================================
	Contact Panel Start
======================================= */
/*ファーストパネル*/

#contact_first_panel {
	background-color: #FFF;
	padding-top: 160px;
}	

#contact_first_panel h2 {
	width: 80%;
	margin: 0 10%;
	font-family: 'Lobster',cursive;
	font-size: 40px;
	border-bottom: 2px solid #F00;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 0;
}		

#contact_first_panel span {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 3px;
}	
	
#contact_first_panel_category01 {
	margin: 40px 0 0;
}	
	
/*ファーストパネル*/
/* =======================================
	Contact Panel Finish
======================================= */	
	

	
/* =======================================
	Thanks Start
======================================= */
/*ファーストパネル*/
	
#thanks_first_panel {
	width : 80%;
	margin : 5% 10%;
	padding : 30px 0;
	background : #ffffff;
	border : 1px solid #f5f5f5;
	border-radius : 7px;
	box-shadow : 0 0 7px rgba( 0, 0, 0, 0.2 );
}

#thanks_first_panel_category01 h1,
#thanks_first_panel_category01 h2{
	width : 90%;
	margin : 0 auto;
	font-size : 135%;
	font-weight : bold;
	border-bottom : 1px solid #666666;
}

#thanks_first_panel_category01 h2{
	margin-top : 3em;
}

#thanks_first_panel_category01 p{
	width : 90%;
	margin : 0 auto;
	margin-top : 2em;
	text-align: justify;/*両端ぞろえ*/
	text-justify: inter-ideograph;/*両端ぞろえの種類*/
}
	
#thanks_first_panel_category02 p a{
	font-size: 16px;
	font-weight: bold;
	color: #c91228 !important;
	padding: 16px 20px;
	text-align: center;
	text-decoration: none;
	width: 200px;
	display: block;
	background-color: #FFF;
	border: 3px solid #c91228;
	margin: 40px auto 0;
}

#thanks_first_panel_category02 p a:hover {
	color: #FFF !important;
}

/*ファーストパネル終わり*/
/* =======================================
	Thanks Panel Finish
======================================= */	
	

	
/* =======================================
	Footer Panel Start
======================================= */
/*ファーストパネル*/

footer {
	padding: 30px 0 0;
	background-color: #434141;
	bottom: 0;
}

.footer_list-box {
	margin-right: 10%;
}
		
.footer_list-box ul {
	width: 100%;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
	display: flex;
	justify-content:flex-end;
	text-align: right;
}

.footer_list-box ul li {
	font-size: 16px;
	color: #000;
	margin-left: 20px;
}		
	
.footer_list-box ul li a {
	text-decoration: none;
	color: #FFF;
	font-weight: bold;
	display: block;
	padding: 10px 0 30px;
}

.footer_list-box ul li a:hover {
	color: #FFF;
}

footer p {
	padding: 10px 0;
	text-align: center;	
	color: #aaaaaa;
	background: #000;
	width: 100%;
}
	
/*ファーストパネル終わり*/
/* =======================================
	Footer Panel Finish
======================================= */
	
}

