@charset "utf-8";
/* CSS Document */

/* ----------------------------------------------------
   common setting:
------------------------------------------------------- */

/* reset:
--------------------------------------------*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-text-size-adjust: none;
}

ul li,
ol li {list-style: none;}
em,address {font-style: normal;}

input,
button {
	border: none;
	background: none;
	color: var(--black-color);
	font-size: 1.1rem;
}

.main-container ul {
	margin-bottom: 0;
	padding-left: 0;
}

.center{
    text-align: center;
}

.text_right{
    text-align: right;
}
/* Basic
--------------------------------------------*/

html {
	scroll-behavior: smooth;
	font-size: 18px;
	box-sizing: border-box;
}

h1,h2,h3,h4 {margin-bottom: 0.8rem;}

@media screen and (max-width: 1366px){
	html {
		font-size: 16px;
	}
}

@media screen and (max-width: 1024px){
	html {
		font-size: 14px;
	}
	h1 {font-size: 2rem;margin-bottom: 0.5rem;}
	h2 {font-size: 1.6rem;margin-bottom: 0.5rem;}
	h3 {font-size: 1.4rem;margin-bottom: 0.5rem;}
	h4 {font-size: 1.2rem;margin-bottom: 0.5rem;}

}

@media screen and (max-width: 767px){
	html {
		font-size: 12px;
	}
}

/*---- font ----*/

body {
	font-size: 1.2rem;
	font-weight: 400;
/*	line-height: 2rem;*/
	font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	color: #000;    
}



/*---- outline ----*/

.outline {
	max-width: 1367px;
	margin: 0 auto;
	padding: 0 1rem;
}

/*---- global_drawer_menu_list ----*/

html .container-fluid{
    font-size: 90%;
    line-height: 1.7rem;
}

html .container-fluid .navbar-right{
    font-size: 98%;
}

header .global_drawer_nav_wrapper ul{
    margin-top: 0.5rem;
}

@media screen and (max-width: 767px){	
    html .container-fluid{	
    line-height: inherit;	
    }	
}

/*パンくずリスト*/
.breadcrumb {
	max-width: 1367px;
	width: 95%;
  margin: 1rem auto;
  padding: 0.4rem 2.5%;
  list-style: none;
  background: none; }
  .breadcrumb li {
    display: inline;
    /*横に並ぶように*/
    list-style: none;
    font-size: 0.9rem;
    font-weight: normal;
    /*太字*/ }
    .breadcrumb li:after {
      /* >を表示*/
      content: '>';
      padding: 0 0.8em;
      color: #555; }
    .breadcrumb li:last-child:after {
      content: ''; }


@media screen and (max-width: 1366px){
	.breadcrumb {
		width: 100%;
		margin: 0;
		padding: 1rem;
	}
}

/* Components
--------------------------------------------*/

/*---- link ----*/

.lnk1 {
	text-align: center;
	margin: 2rem 0;
}

.lnk1 a {
	display: inline-block;
	color: var(--white-color);
	text-decoration: none;
	padding: 1rem 40px;
	text-align: center;
	background: var(--blue-color) url("/common2/img/arrow_w.svg") no-repeat;/* img/arrow_w.svg */
	background-position: left 20px top 52%;
	background-size: 20px;
    border: solid 2px var(--blue-color);
	border-radius: 3rem;
	min-width: 250px;
}
.lnk1 a:hover{
    color: var(--blue-color);
	background: var(--white-color) url("/common2/img/arrow.svg") no-repeat;/* img/arrow.svg */
	background-position: left 25px top 52%;
	background-size: 20px;
    transition: 0.3s;
}

img.icon {
	width: 20px;
	margin: 0 5px;
}


.lnk2 {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 2rem;
	margin: auto;
	padding: 0 1rem;
}

.main-container ul.lnk2 {
	padding-left: 1rem;
}

.lnk2 a {
	color: var(--black-color);
	display: flow-root;
	height: 100%;
	border: 3px solid var(--blue-color);
	background-color: var(--white-color);
	text-decoration: none;
	position: relative;
	box-shadow: 0px 8px 12px 2px rgba(10,10,10,0.1), 0px 0px 0px 1px rgba(10,10,10,0.02);
	padding: 2rem;
	background-size: 80px!important;
	background-position: 35px center!important;
	background-repeat: no-repeat!important;
}

.lnk2 a:hover {
	box-shadow: 0px 8px 12px 2px rgba(10,10,10,0.3), 0px 0px 0px 1px rgba(10,10,10,0.06);
    transition: 0.3s;
}
.lnk2 a:after {
	content: "";
	display: block;
	position: absolute;
	width: 30px;
	height: 20px;
	background: url("/common2/img/arrow_g.svg") no-repeat;/* img/arrow_g.svg */
	background-size: 30px;
	bottom: 10px;
	right: 15px;
}
.lnk2 a:after:hover {
    right: 5px;
}

.lnk2 a h2 {
	font-size: 1.6rem;
	color: var(--blue-color);
}

.lnk2 a img {
	width: 35%;
	float: left;
	margin-right: 1rem;
}

@media screen and (max-width: 1366px){

	.lnk2 a:after {
		width: 28px;
		height: 18px;
		background-size: 28px;
		bottom: 8px;
		right: 13px;
	}
}

@media screen and (max-width: 1024px){
	.lnk2 {
		grid-gap: 1.5rem;
	}
	.lnk2 a {
		padding: 1.5rem;
	}
	.lnk2 a:after {
		width: 25px;
		height: 15px;
		background-size: 25px;
		bottom: 5px;
		right: 10px;
	}
}

@media screen and (max-width: 767px){
	.lnk2 {
		grid-template-columns: 1fr;
		grid-gap: 1.5rem;
		padding: 0 1rem;
	}
	.lnk2 a {
		padding: 1rem;
	}
	.lnk2 a img {
		width: 25%;
	}
}


ul.lnk3 {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 2rem;
	padding-left: 0;
}

.lnk3 li img:not([class]) {width: 100%;}


/*---- tablist tabpanel ----*/

/*-- tablist --*/

.tab_list {
	background: var(--gray-color1);
}

.tab_list ul.outline {
/*	box-sizing: content-box;*/
	margin: 2rem auto;
	display: grid;
	grid-template-columns: auto repeat(4,1fr);
    padding: 0 1rem;
}

.tab_list ul button {
	padding: 1.5rem 1rem 2rem;
	text-align: center;
	border-top: 3px solid var(--gray-color1);
	background: url("/common2/img/btn.svg") no-repeat;/* img/btn.svg */
	background-position: bottom 10px center;
	background-size: 18px;
	width: 100%;
	height: 100%;
}

.tab_list ul button.on,
.tab_list ul button:hover {
	background-color: var(--white-color);
	border-top: 3px solid var(--blue-color);
}

.tab_list ul li {
	position: relative;
}

.tab_list ul li:first-child:before,
.tab_list ul li:after {
	content: "";
	display: block;
	position: absolute;
	top: 2.1rem;
	right: 0;
	width: 1px;
	height: 20px;
	background: var(--gray-color2);
}

.tab_list ul li:first-child:before {
	left:0;
}


@media screen and (max-width: 1366px){
	.tab_list ul.outline {
        padding: 0 1rem;
/*		box-sizing: border-box;*/
	}
}

@media screen and (max-width: 1024px){
	.lnk2 {
		grid-gap: 1.5rem;
		margin: 1.5rem 0 2rem;
	}
	.tab_list ul button {
		padding: 1rem 0.5rem 1.5rem;
		background-position: bottom 5px center;
		background-size: 15px;
	}
}
	
@media screen and (max-width: 767px){
/*
	.tab_list ul.outline {
		grid-template-columns: repeat(3,1fr);
		padding: 0;
	}
	.tab_list ul button {
		padding: 0.5rem 0.5rem 1rem;
		background-size: 10px;
	}
	.tab_list li:nth-child(-n+3) button {
		border-bottom: 1px solid var(--gray-color2);
	}
*/
}

/*-- tabpanel --*/

.main-container .tab_panel ul {
	margin: 2rem 0 3rem;
}

.tab_panel li {
	display: grid;
	grid-gap: 1rem 1.5rem;
    grid-template-columns: 9em 14rem 1fr;
	padding: 2rem 1.5rem;
	border-bottom: 1px solid var(--gray-color2);
}

#tab_panel2 li,
#tab_panel3 li,
#tab_panel4 li,
#tab_panel6 li{
    grid-template-columns: 9em 1fr;
}

.tab_panel li time {
/*	font-weight: bold;*/
/*	margin-right: 1.5rem;*/
}

.tab_panel li b span:first-child {
	color: var(--white-color);
/*	display: inline-block;*/
/*	width: 11.9rem;*/
/*	margin-right: 1.5rem;*/
/*	text-indent: 0.4rem;*/
/*	vertical-align: middle;*/
}

.tab_panel li b span {
	display: block;
/*	width: 11.9rem;*/
	padding: 0 0.4rem;
}

.tab_panel li b.cate1 span:first-child {background: #C4131D;}
.tab_panel li b.cate2 span:first-child {background: #2D7D59;}
.tab_panel li b.cate3 span:first-child {background: #242E34}
.tab_panel li b.cate4 span:first-child {background: #2F4791;}
.tab_panel li b.cate5 span:first-child {background: #007A86;}
.tab_panel li b.cate6 span:first-child {background: #2D7D59;}
.tab_panel li b.cate7 span:first-child {background: #D14800;}
.tab_panel li b.cate8 span:first-child {background: #CD3170;}
.tab_panel li b.cate9 span:first-child {background: #401C77;}
.tab_panel li b.cate10 span:first-child {background: #3B1A08;}
.tab_panel li b.cate11 span:first-child {background: #6D7076;}
.tab_panel li b.cate12 span:first-child {background: var(--black-color);}

.tab_panel li b span.sub {
	color: var(--black-color);
	background: var(--white-color);
	border: 1px solid var(--gray-color2);
	border-top: none;
	display: block;
/*	width: 11.9rem;*/
/*	text-indent: 0.4rem;*/
}

.tab_panel li a{
    font-weight: bold;
}

@media screen and (max-width: 1366px){
	
	.tab_panel li {
		padding: 1.5rem 1rem;
        grid-template-columns: 9em auto;
	}

	.tab_panel li a {
		display: block;
		margin-top: 0.5rem;
        grid-column: 1 / 3;
    }

	.tab_panel li b span {
		width: 14rem;
    }
    
	.tab_panel li b span.sub {
		border-top: 1px solid var(--gray-color2);
    }
}

@media screen and (max-width: 767px){	
    .tab_panel li {	
    display: block;	
    }	
}

#tab_panel5 time span{
    display: block;
    font-size: 1rem;
}

#tab_panel5 b{text-align:center;}
#tab_panel5 b span{color: var(--black-color);}
#tab_panel5 b.now span{background: #9FD3CF;}
#tab_panel5 b.coming span{background: #E0B8C1;}
#tab_panel5 b.end span{background: #A3B2D1;}



/* category index
--------------------------------------------*/

/*---- category_index ----*/

/*-- about --*/
#category_index {
	background: url("/common2/img/title01_l.svg") no-repeat;/* img/title01_l.svg */
	background-size: 45%;
	position: relative;
	padding: 4rem 0 0;
}

#category_index h1 {
	color: var(--white-color);
	margin: 0 auto 3rem;
	padding-left: 3rem;
}

#category_index h1 span {
	display: inline-block;
	background-color:  var(--blue-color);
}

#category_index h1 span span {
	display: block;
	font-size: 1rem;
    letter-spacing: 0.2rem;
    font-weight: normal;
}

#category_index #category_content .outline {
	display: flow-root;
	position: relative;
}

#category_index #category_content .outline .content_in{
	background: var(--white-color);
	padding: 2rem 2rem 1rem;
}


@media screen and (max-width: 1366px){
	#category_index #category_content .outline {
		padding: 2rem 1rem 0;
/*		margin: 0 1rem;*/
		position: relative;
	}
}

@media screen and (max-width: 1024px){	
	#category_index {
		padding: 3rem 0 0;
	}
	
	#category_index h1 {
		margin: 0 auto 2rem;
		padding-left: 2rem;
	}
}

@media screen and (max-width: 767px){	
    #category_index #category_content .outline .content_in{
        padding: 1rem;
    }
}


#category_index #category_content img.about_img {
	float: left;
	margin: 0 2rem 3rem 0;
	width: 50%;
}


#category_index #category_content h2 {
	color: var(--blue-color);
	margin-bottom: 2rem;
}

@media screen and (max-width: 767px){	
    #category_index #category_content h2{
        margin: 2rem;
    }
}

#category_content {
	background: url("/common2/img/title01_r.svg") no-repeat bottom right;/* img/title01_r.svg */
	background-size: 20%;
	padding-bottom: 5rem;
}

ul.main_menu {
	clear: both;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 2rem;
	margin: 1rem 0;
	padding: 0;
}

.main_menu a {
	background-repeat: no-repeat!important;
	text-align: center;
	padding: 2rem 2rem;
	background-size: 80px!important;
	background-position: center top 40px!important;
	background-repeat: no-repeat!important;
	font-size: 1.6rem;
	font-weight: bold;
}

.main_menu a:after {
	width: 30px;
	height: 20px;
	background-size: 30px;
	bottom: 10px;
	right: 15px;
}

.main_menu a span {
	display: block;
	color: var(--gray-color3);
	font-size: 1.2rem;
}

#category_index #category_content .main_menu a img {
	display: block;
	width: 70px;
	margin: 0 auto 2rem;
    float: inherit;
}



@media screen and (max-width: 1024px){
	
	ul.main_menu {
		grid-gap: 1.5rem;
		margin: 1.5rem 0;
	}
	.main_menu a {
		padding: 1.5rem 1.5rem;
		background-size: 70px!important;
		background-position: center top 30px!important;
		font-size: 1.4rem;
	}

	.main_menu a:after {
		width: 28px;
		height: 18px;
		background-size: 28px;
		bottom: 8px;
		right: 12px;
	}
}

@media screen and (max-width: 767px){
	#category_index {
		padding: 2rem 0 0;
		background-size: 70%;
	}
	
	#category_index h1 {margin-bottom: 2rem;}
	
	#category_index #category_content img {
		float: none;
		margin: 0 0 2rem;
		width: 100%;
	}
	
	ul.main_menu {grid-template-columns: 1fr;}
	
	.main_menu a {
/*
		padding: 90px 1rem 1rem;
		background-size: 60px!important;
		background-position: center top 20px!important;
		font-size: 1.4rem;
*/
		text-align: left;
		padding: 1rem;
		background-size: 50px!important;
		background-position: 15px center!important;
	}
	
	.main_menu h2 {
		font-size: 1.4rem;
		margin-bottom: 0.5rem;
	}

	.main_menu h2 span {
		font-size: 0.9rem;
	}
	
	.main_menu ul {
		grid-template-columns: 1fr;
		grid-gap: 1rem;
	}
    
    #category_index #category_content .main_menu a img {
        display: inline-block;
        width: 50px;
        margin: 0 1rem 0 0;
        float: left;
    }
}

/*-- number --*/

#number {
	background: var(--gray-color1);
	padding: 3rem 0;
}

#number dl {
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3,1fr);
}

#number dl div:first-child {border-left: 2px solid var(--gray-color2);}

#number dl div {
	text-align: center;
	border-right: 2px solid var(--gray-color2);
	display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
/*    gap: 30px;*/
}

#number dl div.small {
    border-right: none;	
}

#number dt {
	font-size: 1.6rem;	
}

#number dt img {
	display: block;
	width: 120px;
	margin: 2rem auto;
}

#number dd span {
	font-size: 4rem;
	color: var(--blue-color);
}

#number dd time {
	display: block;
    text-align: right;
    font-size: 0.9rem;
    padding: 1rem 1rem 0 0;
}

@media screen and (max-width: 1366px){
	#number {
		padding: 2.5rem 0 2rem;
	}
}
	
@media screen and (max-width: 1024px){
	#number dt {
		font-size: 1.4rem;	
	}
	#number dt img {
		width: 100px;
		margin: 1.5rem auto;
	}
	#number dd span {
		font-size: 3.5rem;
	}
}

@media screen and (max-width: 767px){
	#number dt {
		font-size: 1.2rem;	
	}
	#number dt img {
		width: 80px;
	}
	#number dd span {
		font-size: 3rem;
	}
}

/*-- region --*/

#region {
	padding: 3rem 0;
	background: url("/common2/img/region.svg") no-repeat top;/* img/region.svg */
	background-size: cover;
}

#region h2,
#region h2 span {color: var(--white-color);}

#region h2 {
	margin-bottom: 5rem;
	display: inline-block;
	background-color:  var(--blue-color);
}

#region section{
	background: var(--white-color);
	padding: 3rem 2rem 0;
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-gap: 2rem;
}

#region h3 {
	text-align: center;
	padding: 180px 2rem 2rem;
	background-repeat: no-repeat;
}

#region #energy,
#region #industria{border-bottom: 2px solid var(--gray-color2);}

#region #energy h3 {background-image: url("/common2/img/region01.svg");background-size: 120px;background-position: top 20px center;}/* img/region01.svg */
#region #industria h3 {background-image: url("/common2/img/region02.svg");background-size: 150px;background-position: top 50px center;}/* img/region02.svg */

#region #energy .lnk3 a span,
#region #industria .lnk3 a span,
#region #other h3 a span{
    display: block;
    background: url("/common2/img/arrow_g.svg") no-repeat;/* img/arrow_g.svg */
    background-size: 1.4rem;
    background-position: 0.1rem 0.6rem;
    padding-left: 1.8rem;
}


#region section ul.lnk3 {
	grid-template-columns: repeat(2,1fr);
}


#region #other h3{padding: 0;text-align: left;font-size: 1.4rem;line-height: 2rem;
    }
#region #other section{padding: 3rem 0;display: block;}
#other{display: grid;grid-gap: 2rem;grid-template-columns: repeat(4,1fr); padding: 0 2rem;}
#other section img:not([class]) {width: 100%;}

/*
#other{
	display: grid;
    grid-gap: 2rem;
	grid-template-columns: repeat(4,1fr);
}
*/

/*
#region .lnk2 a {
	padding: 2rem 1.5rem 2rem 100px;
	background-repeat: no-repeat;
	background-size: 60px;
	background-position: left 20px center;
	font-weight: bold;
	font-size: 1.3rem;
}

#region .lnk2 li:nth-child(1) a {background-image: url("img/about01.svg");}
#region .lnk2 li:nth-child(2) a {background-image: url("img/about01.svg");}
#region .lnk2 li:nth-child(3) a {background-image: url("img/about01.svg");}
#region .lnk2 li:nth-child(4) a {background-image: url("img/about01.svg");}
*/


@media screen and (max-width: 1024px){
	
	#region h2 {
		margin-bottom: 3rem;
	}
	#region section ul {
		grid-gap: 1.5rem;
	}
	#region section {
		padding: 2rem 0;
		grid-gap: 1.5rem;
	}
    
}

@media screen and (max-width: 767px){

	#region {
		padding: 2rem 0 0;
		background-size: contain;
	}
	
	#region section {
		padding: 2rem 1rem 0;
		grid-template-columns: 1fr;
		grid-gap: 1.5rem;
	}
	#region h3 {
		text-align: left;
		padding: 2rem 1rem 2rem 110px;
	}

	#region #energy h3 {background-image: url("/common2/img/region01.svg");background-size: 70px;background-position: center left 20px;}/* img/region01.svg */
	#region #industria h3 {background-image: url("/common2/img/region02.svg");background-size: 90px;background-position: center left 10px;}/* img/region02.svg */
    
    #other{grid-template-columns: repeat(2,1fr);}
    #region #other h3{font-size: 1.2rem;}
    #region #other section{padding: 0;}
    #region #other {padding: 3rem 1rem;}

}



/*-- contents_list --*/


#contents_list {
	padding: 3rem 0;
	background: var(--gray-color1);
}


/* mission
--------------------------------------------*/
#mission{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 2rem;
}

#mission h2{
	text-align: center;
}

@media screen and (max-width: 767px){
	#mission {
		grid-template-columns: 1fr;
		grid-gap: 0;
	}
}


/* element setting:
--------------------------------------------*/


