@charset "utf-8";
/* common css */

/*---------------------------------
memo
普遍のもの中心 ---
---------------------------------*/

html{
	font-size: 10px;
	height:100%;
}
.startmask{
	width:100%;
	height:100%;
	position: fixed;
	pointer-events: none; 
	top:0;
	left:0;
	background-color: rgba(217, 85, 44, 1.0);
	z-index:9999;
}
.pagemask{
	width:0%;
	height:100%;
	position: fixed;
	pointer-events: none; 
	top:0;
	left:0;
	background-color: rgba(217, 85, 44, 1.0);
	z-index:9999;
}
body{
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
	padding:0;
	margin:0;
	color:#333;
	font-size:1.6rem;
	height:100%;
}

button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
}

img{
	vertical-align: middle;
}

h1,h2,h3,h4,h5,h6,en{
	font-family: 'Balthazar', serif;
}

h1,h2,h3,h4,h5,p,div,span{
	padding:0;
	margin:0;
	box-sizing: border-box;
}

ul,ol,li{
	margin:0;
	padding:0;
	list-style-type: none;
	box-sizing: border-box;
}

*:focus {
  outline: none;
}

a{
	color: rgba(217, 85, 44, 1.0);
	cursor: pointer;
	transition:.8s;
}

a.link_white{
	color:#fff;	
}


textarea,input[type="button"],input[type="reset"],input[type="email"],input[type="text"],input[type="submit"],input[type="password"] {/*safariの効果削除*/

	border-radius: 0;
    outline: none;
}

input[type="text"]:focus {
	outline: 0;
	border: 3px solid #de6e46;
}

/*--- clear---------------------*/
.clearfix {zoom:1;}
.clearfix:after {
	content: ""; 
	display: block; 
	clear: both;
}

/*---------------------------------
colorset
---------------------------------*/
.white{
	color: rgba(217, 85, 44, 1.0);
	background-color: rgba(255, 255, 255, 1.0);
}
.orange1{
	color:#FFF;
	background-color: rgba(217, 85, 44, 1.0);
}
.orange2{
	color:#FFF;
	background-color: rgba(217, 85, 44, 0.9);
}
.orange3{
	color:#FFF;
	background-color: rgba(217, 85, 44, 0.8);
}
.orange4{
	background-color: rgba(217, 85, 44, 0.7);
}
.orange5{
	background-color: rgba(217, 85, 44, 0.2);
}

.orange a{
	color:#FFF;
}

/*---------------------------------
layout
---------------------------------*/

#contents{
	min-width:1024px;
}
.inner{
	padding:60px 7vw;
}
.box{
	line-height:1.8;
	padding-left:250px;
}
.flex{
	display: flex;
}

.width100{
	width:100%;
}
/*---------------------------------
title
---------------------------------*/

.mainTT{
	font-size: 5vw;
	line-height:1.2;
	padding-bottom:60px;
	text-align: center;
	color: rgba(217, 85, 44, 1.0);
}

#footer .mainTT,
.home .mainTT{
	color:#FFF;
}

.mainTT.jaTT{
	font-size:3.5rem;
}

.subTT {
	font-size:2.4rem;
	font-weight: bold;
	padding:20px 0;
}

/*---------------------------------
parts
---------------------------------*/
.down{
	width: 100%;
	text-align: center;
}

.down a{
	display: block;
	height:80px;
	background: url(../img/down_arrow.svg) center center no-repeat;
	background-size:60px auto;
	text-indent:-9999px;
	overflow: hidden;
}

.down_WH a{
	display: block;
	height:80px;
	margin-top: 50px;
	background: url(../img/down_arrow_WH.svg) center center no-repeat;
	background-size:50px auto;
	text-indent:-9999px;
	overflow: hidden;
}

.pd-btm{
	padding-bottom:2em;
}

.btn_set{
	text-align: center;
	margin-bottom:60px;
}
.btn_set a {
	width:auto;
	padding:0 30px; 
	display: inline-block;
	line-height:3;
	border-radius: 100px;
	text-align: center;
	margin:0 auto;
	background-color:#d9542B;
	color:#FFF;

}
/*---------------------------------
フォーム
---------------------------------*/
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
}

.form_box{
	display: block;
	text-align: center;
}


.form_box button{
	color: #fff;
	background-color: #de6e46;
	font-size: 1.8rem;
	padding: 9px 1em;
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
}

.form_box button:hover{
	background-color: rgba(222, 95, 49, 0.5);
}

.form_box input[type="text"]{
	height: 45px;
	padding: 10px ;
	border: 3px solid #666;
	font-size: 1.8rem;
	box-sizing: border-box;
	vertical-align: middle;
	width:90%;
}



/*---------------------------------
ナビゲーション(header) 
---------------------------------*/

#header {
	position: fixed;
	width:250px;
	height:100%;
	top:0;
	left:0;
	z-index:9998;
	background-color:rgba(255,255,255,1);
	box-shadow: 1px 0px 5px rgba(0,0,0,0.3);
}
#header h1 {
	text-align: center;
}
#header h1 img{
	width:100px;
	height:auto;
	margin:20px;
	text-align: center;
}
#header nav{
	margin:0 20px;
}
#header nav li{
	border-bottom:1px solid rgba(215, 57, 32, 0.2);
	position: relative;
}
#header nav a{
	display: block;
	padding:10px 0 10px 0;
	line-height:1.1;
	font-family: 'Balthazar', serif;
}
#header nav li:first-of-type a{
	border-top:1px solid rgba(215, 57, 32, 0.2);
}
#header nav li span{
	position: absolute;
	width:100%;
	display: block;
	background-color:#F00;
}
#header nav li span.mask{
	width:0%;
	height:100%;
	background-color:rgba(217, 85, 44, 1.0);
	display: block;
	position: absolute;
	opacity:0;
	top:0;
	left:0;
	z-index:-999;
}

/*---------------------------------
会社概要（footer）
---------------------------------*/
#footer{
	background-color: #666;
	color:#FFF;
}

#footer .copy{
	text-align: center;
	font-size:1.3rem;
	padding-top:10px;
}


#footer .pagetop{
	background: url(../img/arrow_up.png) center center no-repeat;
	opacity: 0.8;
	width:60px;
	height:60px;
	background-size:100% 100%;
	display: block;
	color:#FFF;
	text-align: center;
	position: fixed;
	bottom:20px;
	right:10px;
	text-indent: -9999px;
	display: none;
	/* z-index: 10000000; visionの上にも表示したい場合 */
}

#footer-nav{
	text-align: center;
}

#footer-nav li{
	display: inline-block;
	padding:0 15px;
}
 

.compnay_info{
	width:60%;
	margin:20px auto;
}

.compnay_info th{
	width:30%;
	text-align: right;
	padding:7px;
}

.compnay_info td{
	width:70%;
	padding: 7px 7px 7px 30px;
	font-weight: normal;
}

@media screen and (max-width:767px){
	.compnay_info{
		width:95%;
		margin:20px auto;
	}
}
/*---------------------------------
top 
---------------------------------*/
#hero{
	text-align: center;
	height:100vh;
	overflow: hidden;
	position: relative;
}
#hero video{
	position: absolute;
	top:0;
	left:250px;
	height:100vh;
	width:auto;
}
#hero .inner{
	height:100vh;
	position: relative;
	background-color:rgba(255,255,255,0.5);
}
#hero h1 img{
	width:auto;
	height:45vh;
	
}
#hero p{
	padding:40px 0;
	font-size:2.0rem;
	color: #d9542b;
	line-height:2.0;
}
#news .more {
	text-align: right;
}
#news .more a{
	background-color: #FFF;
	color: rgba(217, 85, 44, 1);
	line-height: 40px;
	padding: 10px 20px;
	border-radius: 100px;
}


#vision{
	position: relative;
}
#vision h1{
	position: relative;
	top:5vw;
	font-size:8vw;
	color:rgba(255,255,255,1.0);
}

#vision p:last-of-type{
	text-align: right;
	padding-top:2em;
}

/* works 共通 ----------*/
.box.works .flex{
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
}
.box.works .thumb{
	width:25%;
	text-align: center;
}
.box.works .thumb img{
	width:100%;
	height:auto;
}
.box.works .thumb a img{
	width:70%;
}
.box.works .text {
	width:68%;
}
.box.works h2{
	font-size:2.0rem;
	margin-bottom:1em;
	border-bottom:5px solid rgba(255,255,255,0.2);
}

.box.works .linkset {
	padding-top:20px;
	justify-content: flex-end;
}
.box.works .linkset a{
	margin-left:15px;
}
.box.works .linkset a.link{
	background-color:#FFF;
	color:rgba(217, 85, 44, 1);
	line-height:40px;
	padding:0 20px;
	border-radius:100px;
}
.box.works .linkset a.link:hover{
	opacity:0.5;
}
.linkset img{
	width:100%;
	height:auto;
}
.linkset .sns{
	width:40px;
}
/*---------------------------------
times
---------------------------------*/
.home .registration h1{
	color:#d9542B;
}
.registration .strong{
	font-size:1.8rem; 
	padding-bottom:1em;
	text-align: center;
}
.registration .orange5{
	padding:3em;
	font-size:1.3rem;
	margin:40px 0;
}
.registration .orange5 .msg{
	font-size:1.5rem;
}
.registration .orange5 h2{
	color:#d9542B;
	font-weight: bold;
	font-size:1.5rem;
	padding-top:2em;
	padding-bottom:0.3em;
	margin-bottom:1em;
	border-bottom:1px solid #D9542B;
	
}
.registration .select{
	padding:30px 0;
	justify-content: space-between;
}
.registration .select > div{
	width:47%;
	text-align: center;
}
.registration .select h2{
	font-size:2.2rem;
	margin-bottom:1em;
	background-color:#999;
	color:#FFF;
	padding:10px 0;
}

.registration .select p{
	padding:1em 0;
}
.registration .select form p{
	padding:0;
}
.registration .select .qr{
	width:32%;
	height:auto;
}
.registration .select .qr img{
	width:100%;
	height:auto;
}
.registration .select .text{
	width:68%;
	text-align: center;
}
.registration .att{
	text-align: left;
}
.registration .formbox-title-1136104{
	text-align: center !important;
	display: none;
}

.registration .formbox-editor-1136104{
	width:100% !important;
 padding: 0px 20px;
 text-align: center;
}


.box.works.registration .link{
	padding-top:60px;
	justify-content: space-around;
}
.box.works.registration .link a {
	width:45%;
	font-size:1.8rem;
	display: block;
	line-height:3;
	border-radius: 100px;
	text-align: center;
	background-color:#d9542B;
	color:#FFF;
}

.box.works.registration .link span {
	width:45%;
	line-height:3;
	border-radius: 100px;
	text-align: center;
	background-color:#FFF;
	color:#d9542B;
	opacity: 0.4;
}

.box.works.registration h2{
	font-size:2.0rem;
	margin-bottom:1em;
	border-bottom:5px solid rgba(217, 85, 44,0.2);
}


/*--------------*/


.times_archive{
	margin:20px 0;
}

.times_list {
	justify-content: space-between;
}
.times_list li{
	display: flex;
	justify-content: space-between;
	margin-bottom:30px;
	height: auto;
	position: relative;
	padding:10px !important;
}
.times_list li .thumb {
	width:22%;
}
.times_list li .thumb a{
	display: block;
	height:100%;
	width:100%;
}

.times_list li .thumb.noimage{
	background-color:rgba(50,50,50, 0.2);
	transition:.8s;
	text-align: center;
	position: relative;
}
.times_list li .thumb.noimage a:before{
	content:"NO IMAGE";
	text-align: center;
	font-family: 'Balthazar', serif;
	color:rgba(255,255,255,0.5);
	position: absolute;
	top:40%;
	width:100%;
	left:0;
}

.times_list li .thumb img{
	width:100%;
	height:auto;
}

.times_list li .info {
	width:74%;
	line-height:1;
}
.times_list li .info .time{
	font-size:1.3rem;
	padding:5px 10px;
	display: inline-block;
	transition:.8s;
}
.times_list li .info .title{
	display:block;
	line-height:1.4;
	font-size:1.8rem;
	padding-top:10px;
	transition:.8s;
}
.times_list li .info .text{
	display:block;
	line-height:1.4;
	font-size:1.3rem;
	padding-top:5px;
	color:#666;
}

.times_list li .info .text p{
	transition:.8s;
}
/*
ul.times_list li:hover .info .text p,
ul.times_list li:hover .info .title{
	color:#FFF;
}

ul.times_list li:hover .info .time{
	color:rgba(217, 85, 44, 1.0);
	background-color:#FFF;
}
ul.times_list li:hover .thumb.noimage{
	background-color:rgba(255,255,255,0.5);
	color:rgba(217, 85, 44, 1.0);
}
*/

ul.times_list li span.mask{
	width:100%;
	height:100%;
	background-color:rgba(217, 85, 44, 1.0);
	display: block;
	position: absolute;
	opacity:0;
	top:0;
	left:0;
	z-index:-999;
}
.registration .archivelink{
	text-align: right;
	margin-bottom:60px;
}
.registration .archivelink a {
	width:auto;
	padding:0 30px; 
	display: inline-block;
	line-height:3;
	border-radius: 100px;
	text-align: center;
	margin:0 auto;
	background-color:#d9542B;
	color:#FFF;

}

.times_archive h2{
	color:#d9542B;
	font-size:2.0rem;
}
.times_archive ul li{
	background-color:rgba(50,50,50, 0.1);
}

.single-times .text p{
	padding:1em 0;
}
/*---------------------------------
privacy policy
---------------------------------*/
.term dt{
	margin: 25px 0;
	font-size: 2.0rem;
	font-family: 'Balthazar', serif;
	counter-increment: section;
}
.term dt::before {
	content: counter(section);
	display: inline-block;
	padding-right:1em;
}

.term dd{
	padding-bottom: 40px;
	font-size:1.5rem;
}


.term dd ol{
	padding-top:20px;
	padding-bottom:15px;
}
.term dd ol li{
	list-style-type: decimal;
	margin-left:3em;
	padding-bottom:5px;
}

.sig{
	text-align: right;
}

/*---------------------------------
NEWS
---------------------------------*/

ul.news_list li {
	padding-bottom:1.5em;
}
ul.news_list li a{
	display: block;
	position: relative;
	line-height:1.4;
}
ul.news_list li span.cat{
	position: absolute;
	left:0;
	top:5px;
	width:192px;
	font-size:1.6rem;
	line-height:2.4;
	text-align: center;
	padding:0 1em;
	font-family: 'Balthazar', serif;
}

ul.news_list li .text{
	display: block;
	margin-left:212px;
}
ul.news_list li .time{
	margin-left:212px;
	font-size:1.3rem;
	color:rgba(255,255,255,0.5)
}

.page-news ul.news_list li .time{
	color: rgba(217, 85, 44, 0.5);
}

.page-news ul.news_list li a:hover span.text{
	text-decoration: underline;
}
/*ページネーション*/
.nav_list,.nav_single{
	background-color: rgba(0,0,0,0.05);
	margin-top:40px;
	line-height:1.0;
	text-align: center;
	padding:10px 20px;
}
.nav_list a,
.nav_list span{
	display: inline-block;
	padding:5px 10px;
	margin:0 5px;
	box-sizing: border-box;
	border-bottom:1px solid transparent;
	
}

.nav_list a:hover{
	opacity: 1.0;
	border-bottom:1px solid rgba(217, 85, 44, 1.0);
}

.nav_list span{
	color:#FFF;
	background-color: rgba(217, 85, 44, 1.0);
}

.nav_list .prev,
.nav_list .next{
	font-family: 'Balthazar', serif;
}


.nav_single ul {
	display: flex;
	align-items: center;
}
.nav_single ul li{
	font-size:1.2rem;
	line-height:1.0;
	vertical-align: middle;
}

.nav_single ul li span{
	background-color:transparent;
	line-height:1.8;
	display: block;
}
.nav_single ul li.link::after{
	content:">";
	padding:0 10px;
	display: inline-block;
}
.nav_single ul li a{
	padding:5px 0;
	display:inline-block;
	border-bottom:1px solid transparent;
}
.nav_single ul li a:hover{
	opacity: 1.0;
	border-bottom:1px solid rgba(217, 85, 44, 1.0);
}

/*---------------------------------
NEWS
---------------------------------*/


.news header{
	padding-bottom:30px;
	color:#d9542B;
}

.news header h1{
	font-size:2.2rem;
	padding-top:10px;
}
.news header span{
	display: inline-block;
	margin-right:1em;
	vertical-align: middle;
}
.news header span.cat{
  width: 13em;
	background-color:#d9542B;
	color:#FFF;
	font-size:1.3rem;
	text-align: center;
	padding:0 1em;
}

.wp-block-file *+.wp-block-file__button {
    margin-left: .75em;
    padding: 0px 10px;
}

/*---------------------------------
recruit
---------------------------------*/
.page-recruit h2.recruit_box{
	margin-top:40px;
}

.page-recruit h3{
	padding: 10px 0;
	margin-bottom: 1em;
	font-weight: bold;
	color: #333;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
}
.page-recruit .recruit_box{
	background-color:#EEE;
	padding:30px;
	margin:0;
}
.page-recruit .recruit_box li{
	list-style-type:disc;
	margin-left:2em;
}
/*---------------------------------
contact
---------------------------------*/
.contactBox{
width:70%;
margin:0 auto;
}
.grecaptcha-badge { visibility: hidden; }

@media all and (max-width: 640px) {
	.contactBox{
	width:100%;
	margin:0 auto;
	}
	.inputset.flex{
	display:block;
	}
	.inputset .inputArea input[type="text"],
	.inputset .inputArea input[type="email"],
	.inputset .inputArea input[type="tel"],
	.inputset .inputArea textarea{
	width:290px;
	}
	.sponly{
	display:block !important;
	}
}

.sponly{
display:none;
}
.inputset{
padding:40px 0;
border-bottom:1px solid #CCC;
}
.inputset p{
width:30%;
font-weight:bold;
}
.inputset .inputarea{
width:70%;
}
.inputset .inputArea input[type="text"],
.inputset .inputArea input[type="email"],
.inputset .inputArea input[type="tel"],
.inputset .inputArea textarea{
padding:7px;
font-size:1.5rem;
border:3px solid #CCC;
}
.inputset .inputArea select{
font-size:1.5rem;
}
.inputset .inputArea input[type="text"]:focus,
.inputset .inputArea input[type="email"]:focus,
.inputset .inputArea input[type="tel"]:focus,
.inputset .inputArea textarea:focus{
    border: 3px solid #de6e46;
}
input[type="submit"]{
    font-size: 1.8rem;
    display: inline-block;
    line-height: 3;
    border-radius: 100px;
    text-align: center;
    background-color: #d9542B;
    color: #FFF;
border:none;
width:200px;
}
input[type="submit"]:disabled{
opacity:0.2;
}
.termset{
padding-top:40px;
}
.termset .inputarea{
    text-align: center;
}
.termset .inputarea input[type="checkbox"]{
vertical-align: baseline;
}
.termset .policy{
text-decoration:underline;
}
.termset .inputarea label{
cursor:pointer;
}
.submitBox{
text-align:center;
padding-top:30px;
}
.req{
font-size:1.0rem;
color:#F00;
display:inline-block;
padding-bottom:10px;
padding-left:5px;
}
.wpcf7-response-output{
background-color:#FF0;
color:#F00;
border:none !important;
padding:15px 20px !important;
}
div.wpcf7-mail-sent-ok {
color:rgba(217, 85, 44, 1.0) !important;
    background-color: #FFF !important;
    border: 3px solid rgba(217, 85, 44, 1.0) !important;
}
.hosoku{
background-color:rgba(0,0,0,0.05);
padding:20px;
margin-top:40px;
}
.hosoku h4{
font-size:1.7rem;
font-weight:bold;
}
.hosoku p{
font-size:1.5rem;
padding-left:15px;
}
.hosoku dl{
padding-left:15px;
}
.hosoku dt{
font-size:1.3rem;
font-weight:bold;
}
.hosoku dd{
font-size:1.3rem;
padding-left:1em;
}
.attBox{
	font-size:13px;background-color:#FFC;padding:10px;margin-top:20px;
}
.wpcf7-spinner{
	display: block;
	margin: 10px auto;
}

/*---------------------------------
404
---------------------------------*/
.error404 .subTT{
	margin:60px 0 20px 0;
	padding:0 20px;
	text-align: center;
}

/*tablet*/
@media screen and (min-width: 768px) and (max-width: 1024px) {

	/*---------------------------------
	layout
	---------------------------------*/
	#contents {
		min-width:inherit;
	}
	.box{
		padding-left:0px;
	}
	/*---------------------------------
	title
	---------------------------------*/

	.mainTT{
		font-size:4.0rem;
	}
	/*---------------------------------
	ナビゲーション(header) 
	---------------------------------*/

	.nav_btn{
		display: block;
		position: fixed;
		top:10px;
		left:10px;
		background-color:rgba(255,255,255,0.2);
		padding:15px;
		z-index:9999;
		color:rgba(0,0,0,0.5);
	}
	.nav_btn i{
		font-size:2.4rem;
	}
	#header {
		display: none;
	}

	/*---------------------------------
	会社概要（footer）
	---------------------------------*/


	.compnay_info{
		width:100%;
	}

	/*---------------------------------
	top 
	---------------------------------*/

	#hero video{
		left:auto;
		right:-50%;
	}
	#hero h1 img{
		margin-top:30px;
		width:90%;
		height:auto;
		
	}
	#hero p {
		font-size: 1.6rem;
	}
	#news {
		height: auto;
	}
	#vision h1 {
		position: relative;
		top: auto;
		font-size:4.0rem;
	}
	/* works 共通 ----------*/

	.box.works .text {
		width: 70%;
	}

	.box.works .linkset a.link {
		padding: 0 20px;
		font-size:1.3rem;
	}
	.box.works .linkset a {
		margin-left: 10px;
	}

	/* registration ----------*/
	#registration .select > div {
		width: 48%;
	}
	#registration .select .qr {
		width: 28%;
	}
	#registration .select .text {
		width: 72%;
	}
	#registration .select p {
		padding: 0em 0 1em 0;
	}

	/*---------------------------------
	NEWS list
	---------------------------------*/

	ul.news_list li {
		margin-bottom:30px;
		border-bottom:1px solid rgba(217, 85, 44, 0.2);
	}

	.home ul.news_list li {
		border-bottom:1px solid rgba(255,255,255,0.5);
	}
	ul.news_list li span{
		display: block;
	}
	ul.news_list li span.text{
		line-height:1.4;
	}

	.nav_single ul {
		display: block;
		text-align: left;
	}

	.nav_single ul li{
		display: inline;
	}

	.nav_list{
		text-align: left;
	}

	/*---------------------------------
	NEWS
	---------------------------------*/

	.news header h1{
		font-size:2.0rem;
		padding-top:10px;
	}
}

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

	/*---------------------------------
	layout
	---------------------------------*/
	#contents {
		min-width:inherit;
	}
	.box{
		padding-left:0px;
	}
	/*---------------------------------
	title
	---------------------------------*/

	.mainTT{
		font-size:4.0rem;
	}
	/*---------------------------------
	ナビゲーション(header) 
	---------------------------------*/

	.nav_btn{
		display: block;
		position: fixed;
		top:10px;
		left:10px;
		background-color:rgba(255,255,255,0.2);
		padding:15px;
		z-index:9999;
		color:rgba(0,0,0,0.5);
	}
	.nav_btn i{
		font-size:2.4rem;
	}
	#header {
		display: none;
	}

	/*---------------------------------
	会社概要（footer）
	---------------------------------*/


	.compnay_info{
		width:100%;
		font-size:1.3rem;
	}

	/*---------------------------------
	top 
	---------------------------------*/

	#hero video{
		left:auto;
		right:-50%;
	}
	#hero h1 img{
		margin-top:30px;
		width:90%;
		height:auto;
		
	}
	#hero p {
		font-size: 1.6rem;
	}
	#news {
		height: auto;
	}
	#vision h1 {
		position: relative;
		top: auto;
		font-size:4.0rem;
	}
	/* works 共通 ----------*/

	.box.works .thumb{
		display: block;
		width:50%;
		margin:0 auto 20px auto;
	}
	.box.works h2 {
		font-size: 1.7rem;
		padding-bottom:20px;
		margin-bottom:20px;
		text-align: center;
	}
	.box.works .text {
		width:100%;
	}

	.box.works .linkset a{
		display: block;
		text-align: center;
		margin-bottom:20px;
		font-size:1.6rem;
	}
	.box.works .linkset .flex{
		justify-content: center;
	}
	.box.works .linkset a.sns{
		width:50px;
		margin:0 10px;
	}
	.box.works.registration .link a {
		width:100%;
		padding:0;
		margin-bottom:20px;
	}
	.box.works.registration .link span {
		width:100%;
		display: block;
	}
	.box.works.registration h2{
		font-size: 1.7rem;
	}
	/*---------------------------------
	times
	---------------------------------*/

	.registration .select > div {
		width: 100%;
		text-align: center;
	}
	.registration .select .qr{
		width: 100%;
	}

	.registration .select .text{
		width: 100%;
		margin-bottom:40px;
	}
	.registration .orange5 {
		padding: 1.5em;
	}

	/*--------------*/

	.registration .archivelink a {
		width:80%; 

	}
	.times_list li {
		display: block;
	}
	.times_list li .thumb ,
	.times_list li .info {
		width:100%
	}
	/*---------------------------------
	NEWS list
	---------------------------------*/

	ul.news_list li {
		margin-bottom:30px;
		border-bottom:1px solid rgba(217, 85, 44, 0.2);
	}

	.home ul.news_list li {
		border-bottom:1px solid rgba(255,255,255,0.5);
	}
	ul.news_list li span{
		display: block;
	}
	ul.news_list li span.cat {
		position: relative;
		left: inherit;
		top: inherit;
		width: 192px;
		font-size: 1.6rem;
		line-height: 1.8;
		text-align: center;
		padding: 0 0em;
		font-family: 'Balthazar', serif;
	}
	ul.news_list li span.text{
		line-height:1.4;
		margin-left: 0;
	}
	ul.news_list li .time {
		margin-left: 0;
		padding:10px 0 5px 0;
		font-size:1.5rem;
	}

	.nav_single ul {
		display: block;
		text-align: left;
	}

	.nav_single ul li{
		display: inline;
	}

	.nav_list{
		text-align: left;
	}

	/*---------------------------------
	NEWS
	---------------------------------*/

	.news header h1{
		font-size:2.0rem;
		padding-top:10px;
	}

	/*---------------------------------
	CONTACt
	---------------------------------*/

	.inputset p{
		width:100%;
		font-weight:bold;
	}
}