@charset "UTF-8";
/*------------------------------------------------------------mainphoto*/
#mainimage {
	position: relative;
    height: 350px;
	background: url("../img/index_img/main.png") center center no-repeat;
	background-size: cover;
	margin-top: 63px;
}
@media print, screen and (min-width: 768px) {
#mainimage {
    height: calc(100vh - 146px);
}
}
#mainimage h2{
	position: absolute;
	color:#fff;
	bottom: 30px;
	right: 11%;
}

/*------------------------------------------------------------content*/
#sec01{
	padding:160px 0 60px 0;
	position: relative;
}

#sec01 h3{
	background: rgba(255,255,255,0.85);
	width: auto;
	padding: 20px;
	font-weight: 900;
	font-size: 22px;
	position: absolute;
	top: -100px;
	left: 15px;
	right: 15px;
	line-height: 1.5;
}
@media print, screen and (min-width: 576px) {
#sec01{
	padding:120px 0 60px 0;
}
}
@media print, screen and (min-width: 768px) {
#sec01{
	padding:220px 0 100px 0;
}
#sec01 h3{
	width: 880px;
	padding: 30px;
	font-size: 28px;
	line-height: 1.8;
	top: -80px;
	left: auto;
	right: auto;
}
}
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 100px;
  padding-bottom: 40px;
  background-color: #fff;
  width: 100%;
  margin: 0 auto;}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/2);
  height: 60px;
  border-bottom: 3px solid #018f66;
  background-color: #c5c3c3;
  line-height: 60px;
  font-size: 17px;
  text-align: center;
  color: #fff;
  display: block;
  float: left;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
	cursor: pointer;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 30px;
  clear: both;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
.tab_content {
  padding: 40px 90px 30px;
}
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #018f66;
  color: #fff;
}



#sec02{
	padding:40px 0;
}
#sec03{
	padding:60px 0 50px 0;
}
.green_box{
	background:#018f66;
	padding:50px 30px;
	color: #fff;
	height: auto;
	margin-top: 20px;
}
.green_box h3{
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
#sec02, #sec03{
	padding:100px 0;
}
.green_box{
	padding:50px 30px;
	height: 340px;
	margin-bottom: auto;
}
}
/*************button2********************/
.button_box2{
  display: flex;
  justify-content: center; /* 左右中央に配置 */
  align-items: center;     /* 上下中央に配置 */
  margin-top: -25px;
}
.button2 {
  width: 280px; /* 固定幅 */
  display: flex;
  justify-content: center; /* 左右に配置 */
  align-items: center;
  background-color: #fff;
  border: 3px solid #af9049;
  color: #af9049;
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 17px;
	font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
	position: relative;
}
.button2 a{
	color:#fff !important;
}
.button2:hover {
 opacity: 0.9;
    filter: alpha(opacity=90);
    -moz-opacity: 0.9;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
}

.button2 .material-icons {
  font-size: 22px;
  transition: transform 0.2s ease;
	position: absolute;
	right: 30px;
}

.button2:hover .material-icons {
  transform: translateX(4px); /* hoverで矢印が右に動く */
}


#sec03 h3{
	font-size:22px;
	font-weight: 800;
	text-align: center;
	line-height: 1.6;
	margin-bottom: 30px;
}
.flex_box{
	display: inline-grid;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.flex_box img{
	max-width: 360px;
	height: auto;
}
#sec03 img{
	margin:10px;
}
@media print, screen and (min-width: 768px) {
#sec03 h3{
	font-size:24px;
	text-align: center;
	line-height: 1.8;
	margin-bottom: 30px;
}
.flex_box{
	display: flex;
}
#sec03 img{
	margin:10px;
}
}
/*更新プログラム(連動)フォーマット*/
.news01 {
	width: 100%;
	overflow: hidden;
}
.news01 dl {
	padding:15px 0;
	border-bottom: 1px solid #018f66;
}
@media print, screen and (min-width: 768px) {
.news01 dl {
	padding:30px 0;
}
}
.news01 dl dd div.newstitle {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.news01 dl dt, .news01 dl dd{
	font-size: 16px;
	font-weight: 600;
}
.news01 dl dt{
	color: #018f66;
}
.news01 dl dd a{
	color: #333;
	font-weight: 500;
}
.news01 dl dd a:hover{
	opacity: 0.7;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
}
@media print, screen and (min-width:768px) {
.news01 dl dt {
	float: left;
}
.news01 dl dd {
	padding: 0 0 0 100px;
}
}
/*更新プログラム(TOP完結)フォーマット*/
#news02 {
	width: 100%;
}
#news02 .newsbox {
	overflow: hidden;/* for modern browser */
}
#news02 .newsbox .news_text_area {
	zoom: 1;/*ie6*/
	overflow: hidden;	
}
#news02 .newsbox .news_text {
	line-height: 1.5;
}
#news02 .newsbox img {
	margin-bottom: 10px;
}
#news02 .newsbox a:hover img {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
}
#news02 .newstitle {
	font-size: 16px;
	font-weight: bold;
	color: #6D6D6D;
	padding-left: 10px;
	margin-bottom: 10px;
	border-left: 3px solid #6D6D6D;
}
#news02 .newstitle span {
	font-size: 12px;
}
#news02 .pdf_link {
	margin-top: 10px;
}
#news02 .pdf_link li {
	margin-bottom: 5px;
	text-align: left;
}
#news02 .pdf_link li a {
	padding:2px 0 2px 28px;
	display: inline-block;
	line-height: 1.4;
	text-decoration: underline;
	background: url(../img/common_img/icon_pdf.png) left top no-repeat;
	background-size: auto 22px;
}
#news02 .pdf_link li a:hover {
	text-decoration: none;
}
@media print, screen and (min-width:768px) {
#news02 .newstitle br {
	display:none;
}
}
/*Googlemap*/
#googlemap iframe {
	display: none;
}
.mapbtn {
	background: #666;
	border-radius: 4px;
	margin: 0 auto;
	text-align: center;
	width: 100px;
}
.mapbtn a {
	display: block;
	color: #FFF;
	text-decoration: none;
	padding: 10px;
}
.mapbtn a:hover {
	text-decoration: underline;
}
@media print, screen and (min-width:768px) {
#googlemap iframe {
	display: block;
}
.mapbtn {
	display: none;
}
}