@charset "UTF-8";

/**
 * 目次
 *
 * 01. Reset
 * 02. Base
 * 03. Layout
 * 04. Parts
 *
 */
/* ==========================================================================
   01. Reset
   ========================================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }


article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none; 
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #666;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }


/*=== ▼ clearfix ==*/

/* modern browsers */

.clearfix:after,
.fbox:after,
#contents:after,
.item-wrap:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* IE7 */

.clearfix,
.fbox,
#contents,
.item-wrap{
  display: inline-block;
}

/* legacy IE */

* html .clearfix,
* html .fbox,
* html #contents,
* html .item-wrap{
  height: 1%;
}

.clearfix,
.fbox,
#contents,
.item-wrap {
  display: block;
}

/* ==========================================================================
   02. Base
   ========================================================================== */

 html{
 	background: #fff;
 }

 body{
 	font: #1A1A1A;
 	letter-spacing: 0.05em;
 	font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
 }

#wrapper{
 	width:100%;
 }

.small{
 	font-size: 75%;
  	line-height: 1.5;
 }

.medium{
 	font-size: 76%;
  	line-height: 1.5;
 }

.large{
 	font-size: 142%;
  	line-height: 1.5;
 }

.semi-large{
 	font-size: 116%;
  	line-height: 1.5;
 }

.serif{
  font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important; 
  font-weight: normal;
}

.centence{
	font-size: 100%;
 	line-height: 2.2;
}

.bold{
	font-weight: bold;
}

.pt10{
 	padding-top:10px;
 }

.pt60{
 	padding-top:60px;
 }

.pb30{
	padding-bottom: 30px;
}

.mt5{
	margin-top:5px;
}

.mt10{
	margin-top:10px;
}

.mt20{
 	margin-top:20px;
 }

.mt30{
 	margin-top:30px;
 }

.mt40{
 	margin-top:40px;
 }

.mt50{
 	margin-top:50px;
 }

.mt70{
 	margin-top:70px;
 }

.mb30{
 	margin-bottom:30px;
 }

.mb10{
 	margin-bottom:10px;
 }

.mb3{
 	margin-bottom:3px;
 }

.mb50{
 	margin-bottom:50px;
 }

.align-c{
 	text-align: center;
}

.margin-c{
	margin:0 auto;
}

.block100{
 	display: block;
 	width: 100%;
}

a{
 	color: #1A1A1A;
 	text-decoration: underline;
}

a:hover{
 	color: #1A1A1A;
 	text-decoration: none;
}

.sp-item{
	display: none;
 }

.inview-fadein{
	opacity: 0;
	transform: translate(0,20px); 
	-webkit-transform: translate(0,20px); 
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all  1s ease;
}
.inview-fadein-delay{
	opacity: 0;
	transform: translate(0,20px); 
	-webkit-transform: translate(0,20px); 
    -webkit-transition: all 1.4s ease .5s;
    -moz-transition: all 1.4s ease .5s;
    -o-transition: all 1.4s ease .5s;
    transition: all  1.4s ease .5s;
}
.inview-fadein-done{
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}


/*-----------スマホ--------------*/
 
@media screen and (max-width: 767px) {
.pc-item{
	display: none;
}

.sp-item{
	display: block;
}

#wrapper{
 	overflow: hidden;
}

}



/* ==========================================================================
   03. Layout
   ========================================================================== */

/*=== ▼ header ==*/

header{
 	width:10%;
 	height: 100%;
 	margin-bottom: 0px;
 	position: fixed;
 	z-index: 20;
 }

/* chrome, safari */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  header {
    width:3%;
  }
}

#pc-nav{
 	width:auto;
 	position: absolute;
 	top:10%;
 	-webkit-writing-mode: vertical-rl;
 	-ms-writing-mode: tb-rl;
 	writing-mode: vertical-rl;
 	float: left;
 	padding-left:20%;
 	font-size: 88%;
 	font-weight: bold;
 }

#pc-nav ul li{
	display: inline-block;
	margin-bottom:20px;
}

#pc-nav ul li a{
	text-decoration: none;
}


#pc-nav ul li .current{
	position: relative;
}

#pc-nav ul li .current:after{
	content: "";
	width: 2px;
	height: 100%;
	background: #1A1A1A;
	position: absolute;
	top:0;
	left: 0;
	margin-left: 22px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}


/*-----------スマホ--------------*/

@media screen and (max-width: 767px) {

header{
 	width:100%;
 	height: 30px;
}

#pc-nav{
	display: none;
}

#sp-nav-toggle{
	width: 38px;
	height: 38px;
	margin-left: 16px;
	margin-top:16px;
	position: relative;
	cursor: pointer;
	z-index: 1000;
	background: rgba(255,255,255,.8);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    transition: opacity;
}


#sp-nav-toggle span{
	width: 16px;
	height: 2px;
	display: block;
	background: #666666;
	position: absolute;
	top:15px;
	left: 11px;
    transition: all .35s ease;
    text-align: center;
}

#sp-nav-toggle span:last-child{
	margin:10px auto;
	top:11px;
}

#sp-nav-toggle.active {
	background: none;
}

#sp-nav-toggle.active span{
	background: #666;
	transform: translateY(2px) translateX(0) rotate(45deg);
}

#sp-nav-toggle.active span:last-child{
	transform: translateY(-4px) translateX(0) rotate(-45deg);
}

#sp-nav-toggle.close span{
	background: #ff0000;
	transform: translateY(2px) translateX(0) rotate(45deg);
}


#sp-nav{
	width:100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	z-index: 99;
	position: fixed;
	top:0;
	left: 0;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    overflow: hidden; 
}

#sp-nav.open {
      opacity: .95;
      visibility: visible;
      height: 100%;
      z-index: 998;
}

#sp-nav nav ul{
	width: 280px;
	position: absolute;
	top:20%;
	left: 50%;
	margin-left:-140px; 
	text-align: center;
}

#sp-nav nav ul li{
	margin-bottom: 26px;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	padding-bottom: 16px;
}

#sp-nav nav ul li a{
	text-decoration: none;
}

}



/*=== ▲ header ==*/

.contents{
	width:100%;
	background-color:#fff; 
	margin: 0 auto;
}


/*=== ▼ content00 ==*/

#conte00{
	width:93%;
	height: 650px;
	padding-left: 7%;
	position: relative;
	margin-bottom: 75px;
	overflow: hidden;
	z-index: 10;
}

.container{
	width:70%;
	padding-left: 20%;
	height: 650px;
	position: absolute; 
	right: 0;
	background-repeat: no-repeat;
	background-position: 1300 top;
	background-size:100% auto; 
	background-size: cover;
}



.conte00-inner{
	width: 100%;
	height: 530px;
	padding-top: 120px;
	position: absolute;
	z-index: 10;
	background:url("../img/bg-white.gif");
	background-repeat: repeat-y;
	background-position: left top;
}

.under-icon{
	position: absolute;
	top:560px;
	left: 50%;
	margin-left: -45px;
}

.conte00-inner h2{
	font-size: 158%;
	line-height: 1.7;
}

.deadline{
	width: 254px;
	margin-top: 40px;
	display: -webkit-flex; /* Safari */
   	display: flex;
}

.deadline div:first-child{
	background: #1A1A1A;
	width: 118px;
	color: #fff;
	text-align: center;
	padding: 4px;
	border: 1px solid #1A1A1A;
}

.deadline div:last-child{
	background: #fff;
	width: 118px;
	color: #1A1A1A;
	text-align: center;
	padding: 4px;
	border: 1px solid #1A1A1A;
	font-weight: bold;
	vertical-align:bottom;
	padding-top: 6px;
}

.deadline div:last-child p span{
	font-size: 176%;
}


.deadline_end{

	margin-top: 40px;
	display: -webkit-flex; /* Safari */
   	display: flex;
}


.deadline_end a,.deadline_end a:visited{
	background: #d81919;
	color: #fff;
	text-align: center;
	border: 1px solid #d81919;
	text-decoration: none;
	padding:14px 50px; 
	font-size: 110%;
}


/*-----------スマホ--------------*/

@media screen and (max-width: 767px) {

#conte00{
	width:100%;
	height: 400px;
	padding-left: 0%;
	position: relative;
	margin-bottom: 10px;
	overflow: hidden;
	z-index: 10;
	text-align: center;
}

.container{
	width:100%;
	padding-left: 0%;
	height: 400px;
	position: absolute; 
	right: 0;
	background-repeat: no-repeat;
	background-position: center top;
	background-size:100% auto; 
	background-size: cover;
}

.conte00-inner{
	width: 100%;
	height: 340px;
	padding-top: 66px;
	position: absolute;
	z-index: 10;
	background:none;
}

.conte00-inner p:nth-child(2){
	color:#fff;
}

.conte00-inner h1 img{
	width:70%;
	max-width: 300px;
}

.under-icon{
	position: absolute;
	top:330px;
	left: 50%;
	margin-left: -22px;
}

.under-icon img{
	width: 80%;
}

.conte00-inner h2{
	font-size: 158%;
	line-height: 1.7;
}

.deadline{
	width: 254px;
	margin-top: 20px;
	margin-bottom:50px;
}

.deadline div:first-child{
	background: #1A1A1A;
	width: 118px;
	color: #fff;
	text-align: center;
	padding: 4px;
	border: 1px solid #1A1A1A;
}

.deadline div:last-child{
	background: #fff;
	width: 118px;
	color: #1A1A1A;
	text-align: center;
	padding: 4px;
	border: 1px solid #1A1A1A;
	font-weight: bold;
	vertical-align:bottom;
	padding-top: 6px;
}

.deadline div:last-child p span{
	font-size: 176%;
}

.deadline_end{
	width: 260px;
	margin: 20px auto 30px;
	display: -webkit-flex; /* Safari */
   	display: flex;
}

}




/*=== ▼ content01 ==*/


#conte01{
	width:93%;
	padding-left: 7%;
	padding-bottom: 80px;
	position: relative;
	background-image:url("../img/bg-map.png"); 
	background-repeat: no-repeat;
	background-position: right top; 
	background-color: #f2f2f2; 
}

.conte01-inner{
	width: 88%;
	min-width: 920px;
	max-width: 1080px;
	margin:0 auto;
	padding: 80px 2% 00 0;
	display: -webkit-flex; /* Safari */
   	display: flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    flex-direction: row;
}

.headline{
	text-align: center;
	font-size: 142%;
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 65px;
}

.headline span{
	margin-bottom: 6px;
	display: block;
}

.headline :after{
	content: '';
	width: 40px;
	height: 1px;
	background: #1A1A1A;
	position: absolute;
	top:84px;
	left:50%;
	margin-left: -20px;
}

.ph-conte{
	width: 40%;
	max-width: 380px;
}

.ph-conte img{
	width: 100%;
	height: auto;
}

.conte01-inner p{
	width: 56%;
	padding-left: 4%;
	line-height: 2.1;
}
 

/*-----------スマホ--------------*/

@media screen and (max-width: 767px) {

#conte01{
	width:100%;
	padding-left: 0%;
	padding-bottom: 60px;
	position: relative;
	background-image:url("../img/bg-map.png"); 
	background-repeat: no-repeat;
	background-position: right top; 
	background-size: 90%;
	background-color: #f2f2f2; 
}

.conte01-inner{
	width: 90%;
	min-width: auto;
	max-width: auto;
	margin:0 auto;
	padding: 50px 0 0 0;
}

.headline{
	text-align: center;
	font-size: 120%;
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 50px;
}

.headline span{
	margin-bottom: 6px;
	display: block;
}

.headline :after{
	content: '';
	width: 40px;
	height: 1px;
	background: #1A1A1A;
	position: absolute;
	top:76px;
	left:50%;
	margin-left: -20px;
}

.ph-conte{
	width: 100%;
	max-width: auto;
	margin:0 auto;
}

.conte01-inner p{
	width: 92%;
	padding-left: 0;
	line-height: 2;
	margin:20px auto 0;
}

}

/*=== ▼ content02 ==*/


#conte02{
	width:93%;
	padding-left: 7%;
	padding-bottom: 30px;
	position: relative;
}

.conte02-inner{
	width: 88%;
	min-width: 920px;
	max-width: 1080px;
	margin:0 auto;
	padding: 80px 2% 0 0;
	display: -webkit-flex; /* Safari */
   	display: flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    flex-direction: row;
}

.conte02-inner .centence{
	width:86%;
	text-align: center;
	margin: 0 auto;

}

.subhead{
	text-align: center;
	font-size: 114%;
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 26px;
}

.program-head{
	width: 100%;
	background-image:url("../img/li-dot.gif");
}

.program-head span{
	background: #fff;
	vertical-align: middle;
	display: inline-block;
	padding: 0 4px;
}

.schedule-conte{
	width: 100%;
	display: -webkit-flex; /* Safari */
   	display: flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    flex-direction: row;
    padding-top: 20px;
}

.schedule-box{
	width: 23%;
	margin-right: 2%;
	background: #f2f2f2;
}

.schedule-box h5{
	width: 100%;
	display: block;
	text-align: center;
	background: #fff;
	border-bottom: 2px solid #1A1A1A;
	padding-bottom: 4px;
}

.schedule-box p{
	width:84%;
	margin:16px auto;
	line-height: 1.6;
	font-size: 92%;
}

.schedule-box:nth-child(4){
	width: 25%;
	margin-right: 0%;
	background: #f2f2f2;
}

.info-box{
	width:31%;
	margin-right:2%;
	margin-bottom: 30px;
}


.info-box p{
	line-height: 1.6;
}

.info-box-rec{
	width:90%;
	border: 4px solid #f2f2f2;
	padding:24px 5%;
	margin:0 auto;
}

.info-box-rec p{
	line-height: 1.6;
}

.info-box p, .info-box2 p{
	margin-top:6px;
}

.info-box:nth-child(3){
	width: 34%;
	margin-right: 0;
}

.under-dot{
	background-image: url("../img/li-dot.gif");
	background-repeat: repeat-x;
	background-position: bottom;
	padding-bottom: 70px;
}

.program-nav{
	width: 100%;
	margin:30px auto;
	display: -webkit-flex; /* Safari */
   	display: flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    flex-direction: row;
	-webkit-align-content:center;/*--- safari（PC）用 ---*/
    align-content:center;
}

.program-nav li {
	width:32.33%;
	height: 144px;
	margin-right:1%;
	line-height: 1.6;
	position: relative;
	margin-bottom:10px;
}
.program-nav li:nth-child(3){
	margin-right:0%;
}
.program-nav li:nth-child(4), .program-nav li:nth-child(5) {
	width:49%;
	height: 144px;
	line-height: 1.6;
	position: relative;
}

.program-nav li:nth-child(4) a, .program-nav li:nth-child(5) a{
	text-decoration: none;
	color: #fff;
	position: absolute;
	width: 82%;
	height: 95px;
	top:0px;
	left:0px;
	padding: 45px 0 4px 18%;
}

.program-nav li a{
	text-decoration: none;
	color: #fff;
	position: absolute;
	width: 70%;
	height: 98px;
	top:0px;
	left:0px;
	padding: 45px 4% 0px 26%;
}

.program-nav li:first-child a:before{
	content: "";
	width: 50px;
	height: 40px;
	background: url("../img/pro01-s.svg");
	background-repeat: no-repeat;
	position: absolute;
	top:50px;
	left: 34px;
}

.program-nav li:first-child{
	background-image: url("../img/nav01.jpg");
	background-repeat: no-repeat;
	background-size: 110%;
}

.program-nav li a:hover{
	background-image: url("../img/hover.png");
	background-repeat:repeat;
}

.program-nav li:nth-child(2) a:before{
	content: "";
	width: 50px;
	height: 40px;
	background: url("../img/pro02-s.svg");
	background-repeat: no-repeat;
	position: absolute;
	top:50px;
	left: 28px;
}

.program-nav li:nth-child(2){
	background-image: url("../img/nav02.jpg");
	background-repeat: no-repeat;
	background-size: 110%;
}

.program-nav li:nth-child(3) a:before{
	content: "";
	width: 50px;
	height: 40px;
	background: url("../img/pro03-s.svg");
	background-repeat: no-repeat;
	position: absolute;
	top:50px;
	left: 28px;
}

.program-nav li:nth-child(3){
	background-image: url("../img/nav03.jpg");
	background-repeat: no-repeat;
	background-size: 110%;
}


.program-nav li:nth-child(4) a:before{
	content: "";
	width: 50px;
	height: 40px;
	background: url("../img/pro04-s.svg");
	background-repeat: no-repeat;
	position: absolute;
	top:50px;
	left: 28px;
}

.program-nav li:nth-child(4){
	background-image: url("../img/nav04.jpg");
	background-repeat: no-repeat;
	background-size: 100%;
}

.program-conte{
	border-top: 1px solid#1A1A1A;
	width: 100%;
	margin-top:20px;
	padding-top: 46px;
	padding-bottom: 40px;
}


.program-nav li:nth-child(5) a:before{
	content: "";
	width: 50px;
	height: 40px;
	background: url("../img/pro05-s.svg");
	background-repeat: no-repeat;
	position: absolute;
	top:50px;
	left: 28px;
}

.program-nav li:nth-child(5){
	background-image: url("../img/nav05.jpg");
	background-repeat: no-repeat;
	background-size: 100%;
}

.program-conte{
	border-top: 1px solid#1A1A1A;
	width: 100%;
	margin-top:20px;
	padding-top: 46px;
	padding-bottom: 40px;
}

.program-title{
	width: 100%;
	display: -webkit-flex; /* Safari */
   	display: flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    flex-direction: row;
    margin-bottom:46px;
}

.program-number{
	margin-right:25px;
}

.detail{
	width: 100%;
	display: -webkit-flex; /* Safari */
   	display: flex;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    flex-direction: row;	
}

.detail-ph{
	width: 30%;
	margin-right: 4%;
}

.detail-ph div{
	width: 100%;
}

.detail-ph div img{
	width: 100%;
	height: auto;
}

.detail-cen{
	width: 66%;
	line-height: 2.1;
}


/*-----------スマホ--------------*/

@media screen and (max-width: 767px) {

#conte02{
	width:100%;
	padding-left: 0%;
	padding-bottom: 30px;
	position: relative;
}

.conte02-inner{
	width: 90%;
	min-width: auto;
	max-width: auto;
	margin:0 auto;
	padding: 60px 0 0 0;
	display:block;
}

.conte02-inner .centence{
	width:100%;
	text-align: left;
	margin: 0 auto;

}

.program-head span{
	background: #fff;
	vertical-align: middle;
	display: inline-block;
	padding: 0 4px;
}

.program-head span img{
	width: 84%;
}

.schedule-conte{
	width: 100%;
	display: -webkit-flex; /* Safari */
   	display: block;
    padding-top: 20px;
}

.schedule-box{
	width: 100%;
	margin-right: 0%;
	background: #f2f2f2;
	padding-bottom: 2px;
	margin-bottom: 10px;
}

.schedule-box h5{
	width: 100%;
	display: block;
	text-align: center;
	background: #fff;
	border-bottom: 2px solid #1A1A1A;
	padding-bottom: 4px;
}

.schedule-box p{
	width:84%;
	margin:16px auto ;
	line-height: 1.6;
	font-size: 92%;
}

.schedule-box:nth-child(4){
	width: 100%;
	margin-right: 0%;
	background: #f2f2f2;
}

.info-box{
	width:100%;
	margin-right:0%;
	margin-bottom: 48px;
}

.info-box h4{
	text-align: center;
}

.info-box p{
	margin-top:6px;
}

.info-box:nth-child(3){
	width: 100%;
	margin-right: 0;
}


.program-nav{
	width: 100%;
	margin:30px auto;
	display:block;
}

.program-nav li {
	width:100%;
	height: 144px;
	margin-right:1%;
	line-height: 1.6;
	position: relative;
	margin-bottom:10px;
}
.program-nav li:nth-child(3){
	margin-right:0%;
}
.program-nav li:nth-child(4), .program-nav li:nth-child(5) {
	width:100%;
	height: 144px;
	line-height: 1.6;
	position: relative;
}

.program-nav li:nth-child(4) a, .program-nav li:nth-child(5) a{
	text-decoration: none;
	color: #fff;
	position: absolute;
	width: 69%;
	height: 100px;
	top:0px;
	left:0px;
	padding: 45px 5% 0px 26%;
}

.program-nav li a{
	text-decoration: none;
	color: #fff;
	position: absolute;
	width: 69%;
	height: 100px;
	top:0px;
	left:0px;
	padding: 45px 5% 0px 26%;
}

.program-nav li:first-child a:before{
	content: "";
	width: 50px;
	height: 40px;
	background: url("../img/pro01-s.svg");
	background-repeat: no-repeat;
	position: absolute;
	top:50px;
	left: 26px;
}

.program-nav li:first-child{
	background-image: url("../img/nav01.jpg");
	background-repeat: no-repeat;
	background-size: 110%;
}

.program-nav li a:hover{
	background-image: url("../img/hover.png");
	background-repeat:repeat;
}

.program-nav li:nth-child(2) a:before{
	content: "";
	width: 50px;
	height: 40px;
	background: url("../img/pro02-s.svg");
	background-repeat: no-repeat;
	position: absolute;
	top:50px;
	left: 22px;
}

.program-nav li:nth-child(2){
	background-image: url("../img/nav02.jpg");
	background-repeat: no-repeat;
	background-size: 110%;
}

.program-nav li:nth-child(3) a:before{
	content: "";
	width: 50px;
	height: 40px;
	background: url("../img/pro03-s.svg");
	background-repeat: no-repeat;
	position: absolute;
	top:50px;
	left: 22px;
}

.program-nav li:nth-child(3){
	background-image: url("../img/nav03.jpg");
	background-repeat: no-repeat;
	background-size: 110%;
}


.program-nav li:nth-child(4) a:before{
	content: "";
	width: 50px;
	height: 40px;
	background: url("../img/pro04-s.svg");
	background-repeat: no-repeat;
	position: absolute;
	top:50px;
	left: 21px;
}

.program-nav li:nth-child(4){
	background-image: url("../img/nav04.jpg");
	background-repeat: no-repeat;
	background-size: 140%;
}

.program-conte{
	border-top: 1px solid#1A1A1A;
	width: 100%;
	margin-top:20px;
	padding-top: 46px;
	padding-bottom: 40px;
}


.program-nav li:nth-child(5) a:before{
	content: "";
	width: 50px;
	height: 40px;
	background: url("../img/pro05-s.svg");
	background-repeat: no-repeat;
	position: absolute;
	top:50px;
	left: 21px;
}

.program-nav li:nth-child(5){
	background-image: url("../img/nav05.jpg");
	background-repeat: no-repeat;
	background-size: 140%;
}


.under-dot{
	background-image: url("../img/li-dot.gif");
	background-repeat: repeat-x;
	background-position: bottom;
	padding-bottom: 50px;
}

.program-conte{
	border-top: 1px solid #1A1A1A;
	width: 100%;
	margin-top:20px;
	padding-top: 34px;
	padding-bottom: 16px;
}

.program-title{
	width: 100%;
	display:block;
    margin-bottom:30px;
    text-align: center;
}

.program-title h4{
	font-size: 120%;
	line-height: 1.6;
	margin-top:8px;
	margin-bottom:6px;
}

.program-number{
	width: 100%;
	text-align: center;
	margin-right: 0;
}

.program-number img{
	width: 40%;
	margin:0 auto;
}

.detail{
	width: 100%;
	display: -webkit-flex; /* Safari */
   	display: block;	
}

.detail-ph{
	width: 100%;
	margin-right: 0%;
}

.detail-ph div{
	width: 100%;
}

.detail-ph div img{
	width: 100%;
	height: auto;
}

.detail-cen{
	width: 96%;
	margin:20px auto 0;
	line-height: 2;
}

}


/*=== ▼ content03 ==*/


#conte03{
	width:93%;
	padding-left: 7%;
	position: relative;
	background-color: #f2f2f2; 
}

.conte03-inner{
	width: 88%;
	min-width: 920px;
	max-width: 1080px;
	margin:0 auto;
	padding: 120px 2% 120px 0;
	text-align: center;
}


/*-----------スマホ--------------*/

@media screen and (max-width: 767px) {

#conte03{
	width:100%;
	padding-left: 0%;
	position: relative;
	background-color: #f2f2f2; 
}

.conte03-inner{
	width: 90%;
	min-width: auto;
	max-width: auto;
	margin:0 auto;
	padding: 60px 0 60px;
	text-align: center;
}

}


/*=== ▼ content04 ==*/


#conte04{
	width:93%;
	padding-left: 7%;
	padding-bottom: 80px;
	position: relative;
}

.conte04-inner{
	width: 88%;
	min-width: 920px;
	max-width: 1080px;
	margin:0 auto;
	padding: 80px 2% 0 0;
	text-align: center;
}

.gallary-box{
	width: 100%;
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	-webkit-flex-wrap:wrap;/*--- safari（PC）用 ---*/
    flex-wrap:wrap;
    -webkit-justify-content:center;
    justify-content:center;
}

.gallary-box li{
	width:230px;
	height: 230px;
	margin-right:10px;
	background:#999;
	margin-bottom:10px;
}

.gallary-box li img{
	width: 100%;
	height: auto;
}


/*-----------スマホ--------------*/

@media screen and (max-width: 767px) {

#conte04{
	width:100%;
	padding-left: 0;
	padding-bottom: 60px;
	position: relative;
}

.conte04-inner{
	width: 100%;
	min-width: auto;
	max-width: auto;
	margin:0 auto;
	padding: 60px 0 0 0;
	text-align: center;
}

.gallary-box{
	width: 300px;
	margin:0 auto;
}

.gallary-box li{
	width:140px;
	height: 140px;
	margin-right:8px;
	margin-bottom:10px;
}

.gallary-box li img{
	width: 100%;
	height: auto;
}
}



/*=== ▼ content05 ==*/


#conte05{
	width:93%;
	padding-left: 7%;
	padding-bottom: 14px;
	background-color: #f2f2f2; 
	margin-bottom:40px; 
}

.conte05-inner{
	width: 88%;
	min-width: 920px;
	max-width: 1080px;
	margin:0 auto;
	padding: 20px 2% 0 0;
	text-align: center;
}

.pagetop{
	text-decoration: none;
}

/*-----------スマホ--------------*/

@media screen and (max-width: 767px) {

#conte05{
	width:100%;
	padding-left: 0%;
	padding-bottom: 14px;
	background-color: #f2f2f2; 
	margin-bottom:40px; 
}

.conte05-inner{
	width: 90%;
	min-width: auto;
	max-width: auto;
	margin:0 auto;
	padding: 20px 0 0 0;
	text-align: center;
}
}



/*=== ▼ footer ==*/


footer{
	width:93%;
	padding-left: 7%;
	padding-bottom: 14px;
	margin-bottom:30px; 
}

.footer-inner{
	width: 88%;
	min-width: 920px;
	margin:0 auto;
	padding: 0 2% 0 0;
	text-align: center;
}

/*-----------スマホ--------------*/

@media screen and (max-width: 767px) {

footer{
	width:100%;
	padding-left: 0%;
	padding-bottom: 14px;
	margin-bottom:30px; 
}

.footer-inner{
	width: 90%;
	min-width: auto;
	margin:0 auto;
	padding: 0;
	text-align: center;
}

}


/* ==========================================================================
  04. Parts
========================================================================== */

.btn-entry{
	width: 850px;
	font-size: 114%;
	line-height: 1;
	text-align: center;
	margin:0 auto;
	background: #12a052;
	display: block;
	color: #fff;
	border: 1px solid #fff;
	font-weight: bold;
	padding: 34px 0;
    border-radius: 6px;     
    -webkit-border-radius: 6px;  
    -moz-border-radius: 6px; 
    text-decoration: none;
    position: relative;
}

.btn-entry:after{
	content: "";
	width: 830px;
	height: 64px;
	border:1px solid #fff;
    border-radius: 5px;     
    -webkit-border-radius: 5px;  
    -moz-border-radius: 5px; 
	position: absolute;
	z-index: 2;
	top:50%;
	left: 50%;
	margin-left: -415px;
	margin-top:-32px;

}

.btn-entry:hover{
	background:#a3d32f;
	color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}



/* スマホ　
------------------------------------------------------------------ */
@media screen and (max-width: 767px) {


.btn-entry{
	width: 290px;
	font-size: 114%;
	line-height: 1;
	text-align: center;
	margin:0 auto;
	background: #12a052;
	display: block;
	color: #fff;
	border: 1px solid #fff;
	font-weight: bold;
	padding: 34px 0;
    border-radius: 6px;     
    -webkit-border-radius: 6px;  
    -moz-border-radius: 6px; 
    text-decoration: none;
    position: relative;
}

.btn-entry:after{
	content: "";
	width: 270px;
	height: 64px;
	border:1px solid #fff;
    border-radius: 5px;     
    -webkit-border-radius: 5px;  
    -moz-border-radius: 5px; 
	position: absolute;
	z-index: 2;
	top:50%;
	left: 50%;
	margin-left: -135px;
	margin-top:-32px;

}


}

