
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");

body {
padding: 0;
	margin: 0;
 }

body, p, main, .form {
  font-family: Hiragino Kaku Gothic Pro;
  font-style: normal;
  font-weight: normal;
  font-size: 14px; }

ul, li, dl, dt, dd, ol, h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
list-style-type: none;}

p{
	letter-spacing: 0.1px;
	font-size: 14px;
	line-height: 28px;
	color: #4A4A4A;
}

/*  link ,btn */
a {
  color: #333;
  text-decoration: none;
   }

a:hover {
  color: #333;
}

.red_btn{
	background: linear-gradient(180deg, #F5515F 0%, #9F041B 100%);
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3), inset 1px 1px 3px #FFB8B8;
	border-radius: 11px;
	display: block;
	width:200px;
	height:70px;
	color: #fff;
	line-height: 70px;
    position: relative;
	margin: 20px auto 16px;
	font-size: 22px;
}


.red_btn:after {
	content:"";
    position:absolute;
    top:0;
    bottom:.1em;
    right:5%;
    margin:auto;
    width: .5em;
    height: .5em;
    border-top: .07em solid #fff;
    border-right: .07em solid #fff;
    transform: rotate(45deg);
    
}

.red_btn:hover{
	opacity: 0.5;
    filter: alpha(opacity=70);
}

.w470{
	width: 470px;
}

@media screen and (max-width: 414px) {
	
.red_btn{
	height:50px;
	line-height: 50px;
	font-size: 18px;
}
	
.w470{
	width: 80%;
}
}


/*  link ,btn end   */

/*header*/
header{
	width: 1280px;
	margin:0 auto;
}

header h1{
	width:300px;
	float: left;
}

header h1 p{
	font-size:10px;
	color: #979797;
	margin-bottom: 0;
}

header h1 img{
	width:187px;
	height:auto;
}

header .dl{
	float: right;
	width:170px;
	height:70px;
	background: #00B4DE;
	color:#ffffff;
	line-height: 70px;
	font-size: 14px;
	text-align: center;
	font-weight: 300;
}

header .dl a{
	color:#ffffff;
	font-weight: normal;
}

header .menu{
	float: right;
	width:100px;
	margin-right:20px;
	color: #4A4A4A;
	font-size: 14px;
	text-align: center;
}
header .menu a{
	color: #4A4A4A;
	font-weight: normal;
}

header .menu2{
	float: right;
	width:100px;
	margin-right:30px;
	color: #4A4A4A;
	font-size: 14px;
	text-align: center;
}

header p.btn{
	line-height: 40px;
	width: 100px;
	margin: 15px auto 0;
	font-weight: 300;
}

header p.underline{
	border-bottom: 3px solid #00B4DE;
	line-height: 40px;
	width: 100px;
	margin: 15px auto 0;
	font-weight: 300;
}


@media screen and (max-width: 1119px) {
	header{
		padding: 5px 0 10px;
		width: 100%;
		box-shadow: 0px 1px 4px #ccc;
	}
	
	header .sp_area{
	width: 96%;
	margin:0 auto;
	}
	
	header h1{
	width:60%;
	float: left;
}
	
	header h1 img{
	width:220px;
	height:auto;
}
	

}

@media screen and (max-width: 414px) {
	header .sp_area{
	width: 94%;
	margin:0 auto;
	}
	
	header h1 img{
	width:160px;
	height:auto;
}

}


/*header//*/

main .bread{
	width: 1280px;
	margin:10px auto 0;
	font-size: 12px;
	color: #4A4A4A;
	letter-spacing: 1.2px;
}
main .bread a:hover{
	text-decoration:underline;
}

@media screen and (max-width: 1119px) {
	main .bread{
	width: 92%;
	margin:10px auto 0;
	font-size: 12px;
	color: #4A4A4A;
	letter-spacing: 1.2px;
}

.header_right_sp{
		display:initial;
		float: right;
		width: 22%;
		padding:35px 0 0;
	}
}


h2{
	font-weight: 300;
	font-size: 20px;
	line-height: 45px;
	text-align: center;
	letter-spacing: 8px;
	color: #00B4DE;
	margin:80px 0 30px;
}






.cssgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-auto-rows: 1fr;
  grid-gap: 0.8em;
  padding: 0.8em;
  margin: 0 0 3em;
}

.cssgrid > div {
  border: 1px solid #ddd;
  overflow: auto;
  min-width: 0;
  
}
.grid-12 {
    width: 100%; }

.row {
  width: auto;
  overflow: hidden;
	margin:0 auto;}

main .cssgrid .card{
	transition: all .3s;
	margin: 5px 10px;
}

main .cssgrid .card:hover{
	box-shadow: 2px 2px 4px #ddd;
	-webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
}

main .cssgrid .card_comming{
	border: 1px solid #ddd;
	margin: 5px 10px;
	display: -webkit-flex;
 display: flex;
 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
 align-items: center; /* 縦方向中央揃え */
 -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
 justify-content: center; /* 横方向中央揃え */
}

main .cssgrid .card_comming p{
	text-align: center;
	font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
letter-spacing: 8px;
color: #979797;
}


main .cssgrid ul{
	margin-top: 24px;
}

main .cssgrid li{
	margin: 0 16px 16px;
}

main .cssgrid li span{
	font-size: 12px;
	line-height: 22px;
	color: #979797;
	font-weight: 300;
	}

main .cssgrid li.day{
	
}

main .cssgrid .title{
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
	color: #4A4A4A;
}
main .cssgrid .title:hover{
	color: #00B4DE;
}

main .example_card_comming{
	width: 405px;
	font-weight: 300;
	border: 1px solid #C8C8C8;
	float: left;
	font-size: 18px;
	line-height: 460px;
	text-align: center;
	letter-spacing: 8px;
	color: #979797;
	height: 460px;
}

@media screen and (max-width: 414px) {
	.cssgrid {
		display: block;
	}

	main .cssgrid .card {
		margin-bottom: 25px;
	}

	main .cssgrid .card_comming {
		padding: 80px 0;
	}
}

@media screen and (min-width: 1119px) {
  .content, .row {
    max-width: 1280px;
	  margin:0 auto;
	}
}






main .gray_area{
	width: 96%;
	background: #F5F5F5;
	text-align: center;
	margin: 64px 0 40px;
	padding: 56px 2%;
}

main .gray_area .tell{
	font-size: 12px;
line-height: 18px;
color: #4A4A4A;
}

main .gray_area .tell span{
	font-size: 18px;
	font-weight: 600;
}


/*examplePage*/
.examplePage{
	width: 850px;
	margin: 0 auto;
}

.examplePage h2.kiji_title{
	text-align: left;
	font-size: 20px;
	line-height: 41px;
	letter-spacing: 5px;
	color: #00B4DE;
	font-weight: bold;
	margin:106px 0 10px;
}

.examplePage .photo_top{
margin:50px auto 50px;
}

.examplePage .photo_top img{
	width: 100%;
}

.examplePage .photo{
margin:50px auto 50px;
	text-align: center;
}

.examplePage .photo img{
	width: 80%;
}

.examplePage .text{
	margin: 24px 0;
}

.examplePage .blueBar{
width: 100px;
height: 3px;
margin: 60px auto;
background: #00B4DE;
}

.examplePage .information{
	width: 848px;
	border: 1px solid #00B4DE;
	padding-bottom: 20px;
}
	.examplePage .information .name{
	font-size: 20px;
	line-height: 23px;
	text-align: center;
	letter-spacing: 8px;
	color: #00B4DE;
	padding:20px 0 0;
}
.examplePage .information dl{
	width: 90%;
	margin: 0 auto 0px;
}
.examplePage .information dt{
	float: left;
	width: 10%;
	margin-bottom: 10px;
	line-height: 30px;
}
.examplePage .information dd{
	float: right;
	width: 88%;
	margin-bottom: 10px;
	line-height: 30px;
}
.examplePage h3 {
  position: relative;
  line-height: 1.4;
  padding:10px 4%;
  display: inline-block;
  top:0;
	width:92%;
	text-align: left;
	color: #00B4DE;
	font-size: 20px;
	margin-bottom: 20px;
}

.examplePage h3:before, .examplePage h3:after { 
  position: absolute;
  top: 0;
  content:'';
  width: 8px;
  height: 100%;
  display: inline-block;
}
.examplePage h3:before {
  border-left: solid 1px #00B4DE;
  border-top: solid 1px #00B4DE;
  border-bottom: solid 1px #00B4DE;
  left: 0;
}
.examplePage h3:after {
  content: '';
  border-top: solid 1px #00B4DE;
  border-right: solid 1px #00B4DE;
  border-bottom: solid 1px #00B4DE;
  right: 0;
}


.examplePage h4 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
	margin:30px 0 0;
	color: #4A4A4A;
}

.examplePage h4:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}

.examplePage h4:before {
  left:0;
}

@media screen and (max-width: 1119px) {
.examplePage{
	width: 92%;
	margin: 0 auto;
}
	.examplePage h2.kiji_title{
	text-align: left;
	font-size: 20px;
line-height: 41px;
	letter-spacing: 5px;
	color: #00B4DE;
	font-weight: bold;
	margin:50px 0 10px;
}
	.examplePage .text{
	margin: 18px 0;
	font-size: 14px;
line-height: 28px;
}
	

	
	.examplePage h3 {
position: relative;
padding:10px 3%;
display: inline-block;
top:0;
width:94%;
margin:0 auto 30px;
text-align: left;
color: #00B4DE;
font-size: 18px;
line-height: 27px;
	
}

.examplePage h3:before, .examplePage h3:after { 
  position: absolute;
  top: 0;
  content:'';
  width: 8px;
  height: 100%;
  display: inline-block;
}
.examplePage h3:before {
  border-left: solid 1px #00B4DE;
  border-top: solid 1px #00B4DE;
  border-bottom: solid 1px #00B4DE;
  left: 0;
}
.examplePage h3:after {
  content: '';
  border-top: solid 1px #00B4DE;
  border-right: solid 1px #00B4DE;
  border-bottom: solid 1px #00B4DE;
  right: 0;
}


	
	.examplePage .information{
	width: 100%;
	border: 1px solid #00B4DE;
}

	
}

@media screen and (max-width: 414px) {
.examplePage{
	width: 92%;
	margin: 0 auto;
}
	.examplePage h2.kiji_title{
	text-align: left;
	font-size: 18px;
	line-height: 27px;
	letter-spacing: 5px;
	color: #00B4DE;
	font-weight: bold;
	margin:50px 0 10px;
}
	.examplePage .text{
	margin: 18px 0;
	font-size: 14px;
line-height: 28px;
}
	
.examplePage .photo img{
	width: 100%;
}

	
	.examplePage h3 {
  position: relative;
  line-height: 1.4;
  padding:1em 1em;
  display: inline-block;
  top:0;
	width:90%;
		margin:0 auto 30px;
	text-align: left;
	color: #00B4DE;
	font-size: 16px;
	
}

.examplePage h3:before, .examplePage h3:after { 
  position: absolute;
  top: 0;
  content:'';
  width: 8px;
  height: 100%;
  display: inline-block;
}
.examplePage h3:before {
  border-left: solid 1px #00B4DE;
  border-top: solid 1px #00B4DE;
  border-bottom: solid 1px #00B4DE;
  left: 0;
}
.examplePage h3:after {
  content: '';
  border-top: solid 1px #00B4DE;
  border-right: solid 1px #00B4DE;
  border-bottom: solid 1px #00B4DE;
  right: 0;
}

	.examplePage h4 {
  position: relative;
  display: inline-block;
  padding: 0 0 0 55px;
	margin:10px 0 0;
	color: #4A4A4A;
}

.examplePage h4:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}

.examplePage h4:before {
  left:0;
}
	
	.examplePage .information{
	width: 100%;
	border: 1px solid #00B4DE;
}
	.examplePage .information .name{
	font-size: 20px;
	line-height: 23px;
	text-align: center;
	letter-spacing: 8px;
	color: #00B4DE;
	padding:10px 0 0;
}
.examplePage .information dl{
	width: 90%;
	margin: 0 auto 20px;
}
.examplePage .information dt{
	float: none;
	width: 100%;
	margin-bottom: 8px;
}
.examplePage .information dd{
	float: none;
	width: 100%;
	margin-bottom: 20px;
}
	
	
}

/*dl page*/
.dlPage{
	width: 1000px;
	margin: 0 auto;
}

.dl h2.kiji_title{
	font-size: 20px;
	line-height: 41px;
	text-align: center;
	letter-spacing: 8px;
	color: #00B4DE;
	font-weight: normal;
	margin:106px 0 10px;
}

.dlPage .right_block{
	width: 480px;
	float: right;
	margin-top: 20px;
}

.dlPage .right_block h3{
	width: 480px;
	left: 740px;
	background: #00B4DE;
	font-weight: bold;
	font-size: 18px;
	line-height: 46px;
/* identical to box height, or 167% */
	text-align: center;
	letter-spacing: 2px;
	color: #FFFFFF;
	margin-bottom: 24px;
}

.dlPage .right_block p{
	font-size: 16px;
	margin-bottom: 10px;
	line-height: 16px;
}

.dlPage .right_block p span{
	font-weight: bold;
}

.dlPage .right_block p i{
	color: #00B4DE;
	position: relative;
	top: 4px;
 	left: 0px;
	font-size: 22px;
	margin-right: 10px;
}

.dlPage .left_block{
	width: 480px;
	float: left;
	margin-top: 20px;
}

.dlPage #slideimage {
  width: 480px;
  margin: 0 auto;
  padding: 0
}
.dlPage #slideimage .main,
.dlPage #slideimage .main li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dlPage #slideimage .main {
  margin-bottom: 5px;
}
.dlPage #slideimage .main li {
  width: 480px;
  height: auto;
  overflow: hidden;
}
.dlPage #slideimage .main li img{
	width: 480px;
  height: auto;
}
.dlPage #slideimage .main li.item2,
.dlPage #slideimage .main li.item3,
.dlPage #slideimage .main li.item4,
.dlPage #slideimage .main li.item5{
  display: none;
}
.dlPage #slideimage .main li:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}
.dlPage #slideimage .thumb,
.dlPage #slideimage .thumb li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dlPage #slideimage .thumb li {
  display: inline-block;
  width: 88px;
  height: auto;
  overflow: hidden;
  cursor: pointer;
  vertical-align: top;
  margin-bottom: 4px;
	margin-right: 5px;
}
.dlPage #slideimage .thumb li.thumb5 {
	margin-right: 0px
}
.dlPage #slideimage .thumb li img {
  width: 100%;
  height: auto;
}
.dlPage #slideimage .thumb li:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}



/*dl page//*/


/*footer*/

.totop {
	width: 18px;
  height: 18px;
  border: 1px solid;
  border-color: #00B4DE #00B4DE transparent transparent;
  transform: rotate(-45deg);
	margin: 0 auto;
}

.totop a {
    display: block;
    height:60px;
    width:60px;
    color: #eaeaea;
}

footer{
	width: 100%;
	margin:10px auto 0;
	border-top: 1px solid #00B4DE;
}

footer .w1280{
	width: 1280px;
	margin: 0 auto;
}

footer .logo{
	width:300px;
	float: left;
}

footer .logo p{
	font-size:10px;
	color: #979797;
}

footer .logo img{
	width:260px;
	height:auto;
}

footer .dl{
	float: right;
	width:170px;
	height:70px;
	background: #00B4DE;
	color:#ffffff;
	line-height: 70px;
	font-size: 14px;
	text-align: center;
	font-weight: 300;
}
footer .dl a{
	color:#ffffff;
}

footer .menu{
	float: right;
	width:100px;
	margin-right:20px;
	color: #4A4A4A;
	font-size: 14px;
	text-align: center;
}

footer .menu2{
	float: right;
	width:100px;
	margin-right:30px;
	color: #4A4A4A;
	font-size: 14px;
	text-align: center;
}

footer p.btn{
	line-height: 40px;
	width: 100px;
	margin: 15px auto 0;
	font-weight: 300;
}

footer p.underline{
	border-bottom: 3px solid #00B4DE;
	line-height: 40px;
	width: 100px;
	margin: 15px auto 0;
	font-weight: 300;
}

footer .cw_logo{
	width: 1280px;
	margin: 0 auto;
	text-align: right;
}

footer .blue_area{
	background: #00B4DE;
	width: 100%;
	padding: 16px 0;
}

footer .blue_area .cw_logo{
	width: 130px;
	float: left;
	padding-top: 7px;
}

footer .blue_area .text_link{
	width: 410px;
	float: right;
	font-weight: 300;
	font-size: 10px;
	color: #FFFFFF;
	text-align: right;
	position: relative;
	line-height: 1em;
	padding-right: 20px;
}

footer .blue_area .text_link a {
	color: #FFFFFF;
}

footer .blue_area .text_link:after {
	content:"";
    position:absolute;
    top:0;
    bottom:.1em;
    right:0;
    margin:auto;
    width: .5em;
    height: .5em;
    border-top: .07em solid #fff;
    border-right: .07em solid #fff;
    transform: rotate(45deg);
    transition:.3s;
}

footer .bottom_link{
	font-weight: 300;
font-size: 10px;
text-align: center;
color: #4A4A4A;
	margin: 16px 0;
	line-height: 2.2em;
}

footer .bottom_link a {
	padding-left: 4px;
	padding-right: 4px;
}

@media screen and (max-width: 414px) {
	footer .w1280 {
		width: 100%;
	}

	footer .w1280 .content {
		padding: 10px 15px;
	}

	footer .blue_area {
		margin-top: 10px;
	}

	footer .blue_area .cw_logo{
		margin-left: 10px;
	}

	footer .text_link {
		display: none;
	}

	footer .nenu, .menu2, .dl, .btn, .cw_logo.root {
		display: none;
	}
}

/*footer//*/


.t14_30{
	font-weight: 300;
font-size: 14px;
line-height: 30px;
letter-spacing: 2px;
color: #4A4A4A;
}

.clearfix::after {
  content: "";
  display: block;
	clear: both; }
	
.fb-share-button {
	padding-right: 5px;
  top: -6px;
}

