@charset "UTF-8";

/*----------------------------------------------------------------------
Reset
----------------------------------------------------------------------*/

html {
	font-size: 62.5%;
}

body {
	margin: 0;
	line-height: 1;
	font-size: 1.5rem;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-size: 1.5rem;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,dl,dt,dd,ul{
	display: block;
	margin: 0;
	padding: 0;
}

ul {
	list-style-type: none;
}

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

input, select {
	vertical-align: middle;
}

a {
	-webkit-tap-highlight-color: transparent;
	overflow: hidden;
	outline: none;
}

a img {
	border: 0;
}

iframe {
	display: block;
	margin-top: 1rem;
}

img {
	display: block;
	width: 100%;
}

/* cf */
.cf:before, .cf:after {content: ""; display: table;}
.cf:after {clear: both;}
.cf {zoom:1;}

/* 文字拡大対策 */
* {
	-webkit-text-size-adjust: none;
}

/* リスト風 */
.listindent {
	padding-left:1em;
	text-indent:-1em;
}

/*linkname*/
.linkname {
	display: block;
	margin: -55px 0 70px !important;
}

/* Btnbox */
.btnbox {
	margin: 1.5rem 0 0 0;
	text-align: center;
}

.btnbox a, 
.btnbox input[type="button"], 
.btnbox input[type="submit"], 
.btnbox input[type="reset"] {
	-webkit-appearance: none;
	display: inline-block;
	min-width: 130px;
	margin: 0;
	padding: 15px;
	border-radius: 5px;
	background-color: #000;
	border: 0;
	text-align: center;
	font-size: 1.5rem;
	color: #fff;
	cursor: pointer;
}

.btnbox input[type="button"]:nth-of-type(2) {
	margin-left: 5px;
	background-color: #aaa;
}

.btnbox input[type="button"]:hover, 
.btnbox input[type="submit"]:hover, 
.btnbox input[type="reset"]:hover {
	background: #aaa;
}


/*----------------------------------------------------------------------
common
----------------------------------------------------------------------*/

*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,body { height:100%; }

body {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	background: #8f8f8f;
background: #9f9f9f;
	text-align: justify;
	text-justify: inter-ideograph;
	line-break: strict;
	word-break: break-all;
}

body,tr,td,textarea {
	font-family: 'Roboto','Noto Sans JP', Helvetica-Light, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3";
	font-size: 1.5rem;
	line-height: 180%;
	color: #fff;
}

a {
	text-decoration: none;
	color: #fff;
	-webkit-tap-highlight-color:rgba(0,0,0,0.3);
}

a:hover {
	color: #faa61a;
}

textarea, 
input[type="button"], 
input[type="submit"], 
input[type="reset"] {
	-webkit-appearance: none;
	display: inline-block;
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: solid 1px #000;
	color: #000;
}

input[type="text"], 
input[type="password"] {
	-webkit-appearance: none;
	display: inline-block;
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: solid 0.1rem;
}

select 
{
	border-radius: 0;
	border: solid 0.1rem;
	font-size: 1.5rem;
	margin-bottom: 0.9rem;
}

/* ifbox */
.ifbox {
	overflow: hidden;
	width: 96%;
	margin: 10px auto 0;
}


/* video */
video {
	display: block;
	margin: 0 auto;
}


/* --------------------------------------------------
coder
-------------------------------------------------- */
.coder {
	width: 100%;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
	border-spacing: 0;
	border-radius: 0px;
	border: 1px solid rgba(255,255,255,0.4);
	border-collapse: collapse;
}

.coder th,
.coder td {
	padding: 10px 5px;
	border-bottom:solid 1px rgba(0,0,0,0.85);
	border-right:solid 1px rgba(0,0,0,0.85);
	background: rgba(255,255,255,0.85);
	text-align: center;
	color: #000;
}

.coder th {
	background: rgba(255,255,255,0.85);
	color: #fff;
}

.coder tr:first-child th:first-child,
.coder tr:first-child td:first-child {
	border-radius: 0px 0 0 0;
}

.coder tr:nth-child(even) td {
	background: rgba(255,255,255,0.9);
}

.coder tr:nth-child(even) th {
	background: rgba(255,255,255,0.1);
}

/*右上角丸　最初の行の最後のセル*/
.coder tr:first-child th:last-child,
.coder tr:first-child td:last-child {
	border-radius: 0 0px 0 0;
}

/*左下角丸　最後の行の最初のセル*/
.coder tr:last-child th:first-child,
.coder tr:last-child td:first-child {
	border-radius: 0 0 0 0px;
}
/*右下角丸　最後の行の最後のセル*/
.coder tr:last-child th:last-child,
.coder tr:last-child td:last-child {
	border-radius: 0 0 0px 0;
}

/*thaed,tbodyを使う場合の設定*/
.coder thead th {
	border-right: 1px solid rgba(255,255,255,0.4);
	background: rgba(0,0,0,0.0);
}
.coder thead+tbody th {background: rgba(255,255,255,0.05);}
.coder tbody th {text-align:center;}/*ie*/

/*左上角丸 thead内　最初の行の最初のセル*/
.coder thead tr:first-child th:first-child,
.coder thead tr:first-child td:first-child {
	border-radius: 0px 0 0 0;
	border-bottom: solid 1px rgba(255,255,255,0.4);
}

/*右上角丸 thead内　最初の行の最後のセル*/
.coder thead tr:first-child th:last-child,
.coder thead tr:first-child td:last-child {
	border-radius: 0 0px 0 0;
}

/*
角丸なし　thaedの後のtbody 最初の行の最初のセル
角丸なし　thaedの後のtbody 最初の行の最後のセル
*/
.coder thead+tbody tr:first-child th:first-child,
.coder thead+tbody tr:first-child td:first-child,
.coder thead+tbody tr:first-child th:last-child,
.coder thead+tbody tr:first-child td:last-child {
	border-radius:0px;
}

/*左下角丸　thaedの後のtbody 最後の行の最初のセル*/
.coder thead+tbody tr:last-child th:first-child,
.coder thead+tbody tr:last-child td:first-child {
	border-radius: 0 0 0 0px;
}

/*右下角丸　thaedの後のtbody 最後の行の最後のセル*/
.coder thead+tbody tr:last-child th:last-child,
.coder thead+tbody tr:last-child td:last-child {
	border-radius: 0 0 0px 0;
}

.coder  tr:last-child th, 
.coder  tr:last-child td {
	border-bottom: 0;
}

.coder  tr th:last-child, 
.coder  tr td:last-child {
	border-right: 0;
}


/*----------------------------------------------------------------------
datatable
----------------------------------------------------------------------*/
.datatable {
	overflow: hidden;
	margin: 10px 10px 0;
	padding: 5px;
	border-radius: 5px;
	background: rgba(0,0,0,0.5);
}

.datatable .title {
	margin-bottom: 1px;
	padding: 0.5rem 1.0rem;
	background: rgba(0,0,0,0.65);
	text-align: center;
	font-size: 16px;
	color: #fff;
}

.datatable dl {
	display: table;
	width: 100%;
	margin-bottom: 1px;
	border-collapse: collapse;
}

.datatable dl:nth-last-of-type(1) {
	margin-bottom: 0;
}

.datatable dl dt {
	display: table-cell;
	width: 40%;
	padding: 0.7rem 0.5rem;
	background: rgba(0,0,0,0.5);
	line-height: 150%;
	vertical-align: middle;
	text-align: center;
	font-size: 13px;
	color: #fff;
}

.datatable dl dd {
	display: table-cell;
	padding: 0.5rem;
	background: rgba(255,255,255,0.125);
	vertical-align: middle;
	font-size: 13px;
}


/*----------------------------------------------------------------------
head
----------------------------------------------------------------------*/

header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 5.5rem;
	padding: 0.5rem 0;
	background-color: rgba(0,0,0,0.8);
	z-index: 100;
}

header #sitelogo {
	width: 12rem;
	height: 4.5rem;
	background: url(../image/common/logo.png) left -5px top 1px no-repeat;
	background-size: auto 4.5rem;
}

header #sitelogo a {
	display: block;
	height: 5rem;
	text-indent: -999rem;
}

header #menubtn {
	display: block;
	position: absolute;
	right: 0;
	top: 0.6rem;
	width: 5rem;
	height: 5rem;
	text-indent: -999rem;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 4.5rem 4.5rem;
	background-image: url(../image/common/menubtn.png);
}

/* headpanel */
.headpanel {
	display: none;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	z-index: 50;
}

.headpanel .headpanelinner {
	overflow-y: auto;
	width: 100%;
	height: 100%;
}

.headpanel .headpanelinner .panelheader {
	min-width: 310px;
	height: 4.5rem;
	margin: 7rem 2rem 0;
	border-radius: 0.3rem 0.3rem 0 0;
	background-color: #000;
	color: #fff;
}

.headpanel .headpanelinner h2 {
	float: left;
	height: 4.5rem;
	padding: 0 1rem;
	line-height: 4.5rem;
	font-weight: bold;
	font-size: 1.7rem;
}

.headpanel .headpanelinner .panelclosebtn {
	float: right;
	width: 4.4rem;
	height: 4.4rem;
	background: url(../image/common/panelclose.png) 1.3rem 1.3rem no-repeat;
	background-size: 2.2rem 2.2rem;
	text-indent: -999rem;
}

/* menupanel */
#menupanel .headpanelinner ul {
	overflow: hidden;
	margin: 0 2rem;
	border-radius: 0 0 0.5rem 0.5rem;
	background: #fff;
}

#menupanel .headpanelinner ul li {
	border-bottom: solid 1px #ddd;
}

#menupanel .headpanelinner ul li:last-child {
	border-bottom: 0;
}

#menupanel .headpanelinner ul li a {
	display: block;
	padding: 2rem 1.5rem;
	font-weight: bold;
	font-size: 1.1rem;
	color: #333;
}

#menupanel .headpanelinner .mainmenu>li>a {
	font-size: 2.0rem;
}

#menupanel .headpanelinner ul li a.disabled {
	pointer-events:none;
	color: #ddd;
}

#menupanel .headpanelinner ul li:last-child a {
	padding-bottom: 1.8rem;
}

#menupanel .headpanelinner ul li a:hover {
	background-color: #ddd;
	color: #fff;
}

#menupanel .headpanelinner ul li a span {
	display: inline-block;
	margin-right: 5px;
	font-size: 2.0rem;
}

#menupanel .headpanelinner .mainmenu>li>a>span {
	margin-left: 5px;
	font-size: 1.1rem;
}

#menupanel .headpanelinner ul .tel a {
	padding: 1.5rem 1.8rem 1.5rem 4.5rem !important;
	background-image: url(../image/common/telmark.png);
	background-position: 0.6rem center !important;
	background-repeat: no-repeat;
	background-size: 3.3rem 3.3rem;
	background-color: #404040;
	font-weight: bold;
	font-size: 1.8rem;
	color: #fff;
}

#menupanel .headpanelinner .dropdown dt {
	display: none;
}

#menupanel .headpanelinner .dropdown dd ul {
	margin: 0;
}

.headpaneleffect {
	pointer-events: none;
}


/*----------------------------------------------------------------------
footer
----------------------------------------------------------------------*/

footer {
#	margin-top: 5px;
	padding-top: 40px;
	background: #000;
}

footer .wrapper{

}

footer #sitelogo {
	text-align: center;
}

footer #sitelogo .name {
	display: block;
	overflow: hidden;
	width: 200px;
	height: 70px;
	margin: 0 auto;
	background: url(../image/common/logo.png) center center no-repeat;
	background-size: 200px auto;
	text-indent: -9999px;
}

footer #sitelogo .address {
	display: block;
	margin: 5px auto 0;
	line-height: 180%;
	font-size: 1.3rem;
	color: #777;
}

footer .sns {
	overflow: hidden;
	display: inline-block;
	height: 44px;
	margin: 20px auto 0;
	padding: 7px 25px;
	border-radius: 5px;
	background: #5f5f5f;
}

footer .sns li {
	float: left;
	height: 29px;
	margin: 0 0 0 20px;
}

footer .sns li:first-child {
	margin-left: 0;
}

footer .sns li a {
	display: block;
	height: 29px;
}

footer .sns li a img {
	display: block;
	width: auto;
	height: 29px;
}

footer .footnavi {
	width: 94%;
	margin: 50px auto 0;
	padding-top: 30px;
	border-top: dotted 1px #777;
}

footer .footnavi .footnavilist {

}

footer .footnavi .footnavilist .footnaviitem > a {
	display: inline-block;
	padding: 15px 10px 5px 10px;
	font-size: 2.2rem;
}

footer .footnavi .footnavilist .footnaviitem > p {
	display: block;
	padding: 15px 10px 2px 10px;
	font-size: 2.2rem;
	color: #777;
}

footer .footnavi .footnavilist .footnaviitem .footnavisub {
	margin-botom: 10px;
}

footer .footnavi .footnavilist .footnaviitem .footnavisub .subitem {
	display: inline-block;
}

footer .footnavi .footnavilist .footnaviitem .footnavisub .subitem > a {
	display: block;
	padding: 0 10px;
	font-size: 1.3rem;
}

footer .footnavi .footnavilist .footnaviitem .footnavisub .subitem > a:hover {
	color: #faa61a;
}

footer .copy {
	display: block;
	margin-top: 20px;
	padding: 20px 10px;
	font-size: 13px;
	text-align: center;
	color: #fff;
}


/*----------------------------------------------------------------------
main
----------------------------------------------------------------------*/

main {
	padding-top: 55px;
}


/* =============================================================================
パンくずリンク
============================================================================= */

.bc {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	height: 27px;
	margin-top: 70px;
	background: #404040;
}

.bc ul {
	white-space: nowrap;
	margin: 0;
}

.bc ul li {
	display: inline-block;
	padding-left: 8px;
	line-height: 23px;
	font-size: 1.2rem;
}

.bc ul li:last-child {
	pointer-events: none;
}

.bc ul li a {
	color: #fff;
}

.bc ul li a:after {
	content: ">";
	padding-left: 7px;
	color: #777;
}

.bc ul li:last-child a {
	color: #aaa;
}

.bc ul li:last-child a:after {
	content: none;
}


/*----------------------------------------------------------------------
ct
----------------------------------------------------------------------*/
.ct {
	width: 96%;
	margin: 20px auto 0;
	font-size: 5.0rem;
}

.ct .ctsub {
	display: block;
	margin-top: 10px;
	font-size: 1.5rem;
}


/*----------------------------------------------------------------------
link_next
----------------------------------------------------------------------*/
.link_next {
	width: 96%;
	margin: 20px auto 0;
	text-align: right;
}

.link_next a {
	display: inline-block;
	overflow: visible;
	line-height: 21px;
	font-size: 1.7rem;
}

.link_next a::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 28px;
	margin-top: -5px;
	margin-right: 9px;
	border-radius: 50px;
	background: url(../image/common/arrow_right.png) center center / auto 18px no-repeat #fff;
	vertical-align: middle;
}


/*----------------------------------------------------------------------
toppage
----------------------------------------------------------------------*/
#toppage main .topimage {
	position: relative;
	z-index:-1;
}

#toppage main .topimage video {
	width: 100%;
	height: auto;
}

#toppage main .news {
	background: #404040;
	padding: 20px 0 30px;
}

#toppage main .news .newslist {
	margin: 20px auto 0;
}

#toppage main .news .newslist li {
	padding: 5px 10px;
}

#toppage main .newslist li a {
	display: block;
	height: 100%;
	padding: 5px;
	border-radius: 3px;
	background: #fff;
	color: #555;
}

#toppage main .news .newslist li a .text {
	margin-top: 5px;
}

#toppage main .news .newslist li a .text .time {
	display: none;
}

#toppage main .newslist li a .image {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 52.6%;
	padding-top: 52.6%;
	background: url(../image/common/logo.png) center center no-repeat #555;
	background-size: 60% auto;
}

#toppage main .newslist li a .image img {
	position: absolute;
	top: 0;
	left: 0;
}

#toppage main .news .pager {
	display: none;
}

#toppage main .blog {
	padding: 20px 0 30px;
}

#toppage main .blog .bloglist {
	margin: 20px auto 0;
}

#toppage main .blog .bloglist li {
	padding: 5px 10px;
}

#toppage main .bloglist li a {
	display: block;
	height: 100%;
	padding: 5px;
	border-radius: 3px;
	background: #404040;
	color: #fff;
}

#toppage main .blog .bloglist li a .text {
	margin-top: 5px;
	padding: 2px;
}

#toppage main .blog .bloglist li a .text .time {
	display: none;
}

#toppage main .bloglist li a .image {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 52.6%;
	padding-top: 52.6%;
	background: url(../image/common/logo.png) center center no-repeat #555;
	background-size: 60% auto;
}

#toppage main .bloglist li a .image img {
	position: absolute;
	top: 0;
	left: 0;
}

#toppage main .blog .pager {
	display: none;
}


#toppage main .inlifeitem {
	margin-top: 60px;
}

#toppage main .inlifeitem .wrapper {
	width: 96%;
	margin: 10px auto 0;
}

#toppage main .inlifeitem .wrapper .itemlist {
	margin-top: 40px;
}

#toppage main .inlifeitem .wrapper .itemlist .ttl {
	text-align: center;
	font-weight: bold;
	font-size: 2.5rem;
	color: #000;
}

#toppage main .inlifeitem .wrapper .itemlist .ttl span {
	display: inline-block;
	margin-left: -10px;
	font-size: 2.0rem;
}

#toppage main .inlifeitem .wrapper .itemlist .list {
	margin-top: 10px;
	padding: 3px;
}

#toppage main .inlifeitem .wrapper .itemlist .list li {
	padding: 5px;
}

#toppage main .inlifeitem .wrapper .itemlist .list li a {
	display: flex;
	align-items: center;
	padding: 7px;
	border-radius: 3px;
	background: #fff;
}

#toppage main .inlifeitem .wrapper .itemlist .list li a:hover {
	background: #f9f9f9;
}

#toppage main .inlifeitem .wrapper .itemlist .list li a img {
	width: 70px;
	height: 70px;
}

#toppage main .inlifeitem .wrapper .itemlist .list li a p {
	padding: 0 15px;
	font-weight: bold;
	font-size: 2.0rem;
	color: #000;
}

#toppage main .inlifeitem .wrapper .itemlist .list .empty div {
	display: none;
}



/*----------------------------------------------------------------------
#newslist
----------------------------------------------------------------------*/
#newslist main .news {
	padding-top: 40px;
}

#newslist main .newslist {
	margin: 30px auto 0;
}

#newslist main .newslist li {
	padding: 5px 10px;
}

#newslist main .newslist li a {
	display: block;
	padding: 5px;
	border-radius: 5px;
	background: #fff;
	color: #555;
}

#newslist main .newslist li a .text {
	margin-top: 5px;
}

#newslist main .newslist li a .text .time {
	display: none;
}

#newslist main .newslist li a .image {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 52.6%;
	padding-top: 52.6%;
	background: url(../image/common/logo.png) center center no-repeat #555;
	background-size: 60% auto;
}

#newslist main .newslist li a .image img {
	position: absolute;
	top: 0;
	left: 0;
}

#newslist main .news .pager {
	width: 96%;
	margin: 70px auto 0;
	text-align: center;
}

#newslist main .news .pager a {
	display: inline-block;
	margin: 0 5px;
	padding: 0 15px;
	border-radius: 5px;
	background: #aaa;
}

#newslist main .news .pager a.current {
	background: #000;
	pointer-events: none;
}


/*----------------------------------------------------------------------
#news
----------------------------------------------------------------------*/
#news main .news {
	padding-top: 40px;
}

#news main .news .lo {
	width: 96%;
	margin: 30px auto 0;
}

#news main .news .lo .text {

}

#news main .news .lo .text .subject {
	padding: 5px;
	line-height: 150%;
	font-size: 2.0rem;
}

#news main .news .lo .text .times {
	margin-top: 15px;
	padding-top: 10px;
	border-top: solid 1px #bfbfbf;
	text-align: right;
}

#news main .news .lo .text .body {
	max-width: 98%;
	margin: 20px auto 0;
	line-height: 200%;
	font-size: 1.7rem;
}

#news main .news .lo .text .body img {

}

#news main .news .lo .image {
	margin-top: 30px;
	border-radius: 5px;
	background: #fff;
}

#news main .news .lo .image img {
	padding: 5px 5px 0 5px;
}

#news main .news .lo .image img:last-child {
	padding-bottom: 5px;
}

#news main .news .lo .image img:last-child {
	margin-bottom: 0;
}

#news main .news .btnbox {
	margin-top: 70px;
}


/*----------------------------------------------------------------------
#bloglist
----------------------------------------------------------------------*/
#bloglist main .blog {
	padding-top: 40px;
}

#bloglist main .bloglist {
	margin: 30px auto 0;
}

#bloglist main .bloglist li {
	padding: 5px 10px;
}

#bloglist main .bloglist li a {
	display: block;
	padding: 5px;
	border-radius: 5px;
	background: #404040;
	color: #fff;
}

#bloglist main .bloglist li a .text {
	margin-top: 5px;
	padding: 3px;
}

#bloglist main .bloglist li a .text .time {
	display: none;
}

#bloglist main .bloglist li a .image {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 52.6%;
	padding-top: 52.6%;
	background: url(../image/common/logo.png) center center no-repeat #555;
	background-size: 60% auto;
}

#bloglist main .bloglist li a .image img {
	position: absolute;
	top: 0;
	left: 0;
}

#bloglist main .blog .pager {
	width: 96%;
	margin: 70px auto 0;
	text-align: center;
}

#bloglist main .blog .pager a {
	display: inline-block;
	margin: 0 5px;
	padding: 0 15px;
	border-radius: 5px;
	background: #aaa;
}

#bloglist main .blog .pager a.current {
	background: #000;
	pointer-events: none;
}


/*----------------------------------------------------------------------
#blog
----------------------------------------------------------------------*/
#blog main .blog {
	padding-top: 40px;
}

#blog main .blog .lo {
	width: 96%;
	margin: 30px auto 0;
}

#blog main .blog .lo .text {

}

#blog main .blog .lo .text .subject {
	padding: 5px;
	line-height: 150%;
	font-size: 2.0rem;
	padding: 10px;
	background: #000;
}

#blog main .blog .lo .text .times {
	margin-top: 15px;
	padding-top: 10px;
	border-top: solid 1px #000;
	text-align: right;
}

#blog main .blog .lo .text .body {
	max-width: 98%;
	margin: 20px auto 0;
	line-height: 200%;
	font-size: 1.7rem;
}

#blog main .blog .lo .text .body img {

}

#blog main .blog .lo .image {
	margin-top: 30px;
	border-radius: 5px;
	background: #404040;
}

#blog main .blog .lo .image img {
	padding: 5px 5px 0 5px;
}

#blog main .blog .lo .image img:last-child {
	padding-bottom: 5px;
}

#blog main .blog .lo .image img:last-child {
	margin-bottom: 0;
}

#blog main .blog .btnbox {
	margin-top: 70px;
}



/*----------------------------------------------------------------------
404
----------------------------------------------------------------------*/

#notfound main .text404 {
	position: relative;
	width: 90%;
	margin: 100px auto 50px;
	padding: 100px 10px 50px;
	border-radius: 5px;
	background: #404040;
	text-align: center;
}


#notfound main .text404::after {
	content: "";
	position: absolute;
	right: -10px;
	top: -70px;
	width: 100%;
	height: 140px;
	background: url(../image/common/inlife_kun.png) center center / contain no-repeat;
}

#notfound main .text404 p {
	margin-bottom: 30px;
	font-size: 6.0rem;
}

#notfound main .text404 .link_next {
	width: 100% !important;
	margin: 40px auto 0;
	text-align: center !important;
}


/*----------------------------------------------------------------------
.pageheader
----------------------------------------------------------------------*/
main .pageheader {
	width: 100%;
	margin: 50px auto 0;
	padding: 50px 10px ;
	background: #7f7f7f;
}

main .pageheader dl {
}

main .pageheader dl dt {
	line-height: 100%;
	font-size: 7.0rem;
	color: #000;
}

main .pageheader dl dt span {
	display: block;
	width: 300px;
	margin-top: 10px;
	padding: 10px 30px;
	background: #000;
	line-height: 100%;
	text-align: center;
	font-weight: normal;
	font-size: 1.7rem;
	color: #fff;
	letter-spacing: 0.3em;
}

main .pageheader dl dd {
	margin-top: 30px;
	line-height: 180%;
	font-size: 1.7rem;
}


/*----------------------------------------------------------------------
#vision
----------------------------------------------------------------------*/
#vision main .ct {
	padding-top: 40px;
}

#vision main .lo {
	width: 94%;
	margin: 50px auto 0;
	padding-bottom: 60px;
	border-bottom: dotted 2px #000;
}

#vision main .lo:nth-last-of-type(1) {
	border: 0;
}

#vision main .lo dl dt {
	line-height: 100%;
	font-size: 6.0rem;
	color: #000;
}

#vision main .lo dl dt span {
	display: block;
	width: 40%;
	padding: 5px;
	background: #000;
	line-height: 100%;
	text-align: center;
	font-weight: normal;
	font-size: 1.7rem;
	color: #fff;
	letter-spacing: 0.3em;
}

#vision main .lo dl dd {
	width: 96%;
	margin: 30px auto 0;
	line-height: 180%;
}

#vision main .lo dl dd span {
	display: block;
	position: relative;
	padding-left: 20px;
}

#vision main .lo dl dd span::before {
	content: "";
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 50px;
	background: #000;
	vertical-align: middle;
}

/*----------------------------------------------------------------------
#cprofile
----------------------------------------------------------------------*/
#cprofile main .ct {
	padding-top: 40px;
}

#cprofile main .wrapper {
	width: 96%;
	margin: 50px auto 0;
	border-top: solid 1px #5f5f5f;
}

#cprofile main .wrapper .table {
	border-bottom: solid 1px #5f5f5f;
	padding: 15px;
}

#cprofile main .wrapper .table dt {
	color: #000;
}

#cprofile main .wrapper .table.address dd span {
	display: inline-block;
}

#cprofile main .photo {
	margin: 70px auto 0;
}

#cprofile main .photo dl {
	width: 96%;
	margin: 50px auto 0;
}

#cprofile main .photo dl dt {
	line-height: 100%;
	font-size: 5.0rem;
	color: #000;
}

#cprofile main .photo dl dt span {
	display: block;
	width: 40%;
	margin-top: 10px;
	padding: 5px;
	background: #000;
	line-height: 100%;
	text-align: center;
	font-size: 1.3rem;
	color: #fff;
}

#cprofile main .photo dl dd {
	margin-top: 40px;
}

#cprofile main .photo dl dd ul {
}

#cprofile main .photo dl dd ul li {
	padding: 5px;
}

#cprofile main .photo dl dd ul li img {
	border-radius: 3px;
}

#cprofile main .access {
	margin: 70px auto 0;
}

#cprofile main .access dl {
	width: 96%;
	margin: 50px auto 0;
}

#cprofile main .access dl dt {
	line-height: 100%;
	font-size: 5.0rem;
	color: #000;
}

#cprofile main .access dl dt span {
	display: block;
	width: 40%;
	margin-top: 10px;
	padding: 5px;
	background: #000;
	line-height: 100%;
	text-align: center;
	font-size: 1.3rem;
	color: #fff;
}

#cprofile main .access dl dd {
	margin-top: 40px;
}

#cprofile main .access dl dd img {
	margin-top: 30px;
	border-radius: 5px;
}

#cprofile main .map {
	margin: 50px auto 0;
}


/*----------------------------------------------------------------------
#greeting
----------------------------------------------------------------------*/
#greeting main .ct {
	padding-top: 40px;
}

#greeting main .wrapper {
	width: 96%;
	margin: 50px auto 0;
}

#greeting main .wrapper .text p {
	margin-top: 1.5em;
	padding: 0 10px;
	line-height: 200%;
	font-size: 1.7rem;
}

#greeting main .wrapper .text p.top {
	padding: 15px 10px;
	background: #000;
	line-height: 150%;
	font-size: 1.8rem;
}

##greeting main .wrapper .text p span {
	display: inline-block;
	margin: 0 3px;
	padding: 0 3px;
	background: #000;
}

#greeting main .wrapper .profile {
	margin: 30px auto 0;
}

#greeting main .wrapper .profile .name {
	padding: 10px 0;
	font-size: 1.7rem;
}

#greeting main .wrapper .profile .name span {
	display: inline-block;
	margin-right: 10px;
	font-size: 1.3rem;
}

#greeting main .wrapper .profile .data {
	display: inline-block;
	margin-top: 20px;
	padding: 20px 20px;
	border-radius: 5px;
	background: #555;
}






#greeting main .data {
	width: 96%;
	margin: 50px auto 0;
}

#greeting main .data .image {
	overflow: hidden;
	border-radius: 5px;
}

#greeting main .data .list {
	text-align: center;
}

#greeting main .data .list .movie {
	margin: 30px auto 0;
}

#greeting main .data .list .movie li {
	padding: 3px;
}

#greeting main .data .list .movie li div {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 300px;
	background: #000;
}

#greeting main .data .list .sns {
	overflow: hidden;
	display: inline-block;
	margin: 30px auto 0;
	padding: 15px 30px;
	border-radius: 5px;
	background: #5f5f5f;
}

#greeting main .data .list .sns li {
	float: left;
	height: 29px;
	margin: 0 0 0 25px;
}

#greeting main .data .list .sns li:first-child {
	margin-left: 0;
}

#greeting main .data .list .sns li a {
	display: block;
	height: 29px;
}

#greeting main .data .list .sns li a img {
	display: block;
	width: auto;
	height: 29px;
}






#greeting main .yamadaspage {
	width: 100%;
	margin: 50px auto;
	color: #000;
}

#greeting main .yamadaspage .toptext {
	width: 100%;
	margin: 0 auto 30px;
	padding: 15px 10px;
	background: #7f7f7f;
	line-height: 150%;
	font-size: 1.8rem;
	color: #fff;
}

#greeting main .yamadaspage .imagebox {
	width: 96%;
	margin: 10px auto 0;
	padding: 1.5%;
	border: solid 8px #000;
	background: #fff;
}

#greeting main .yamadaspage .imagebox li {
	float: left;
	width: 49.5%;
	margin: 0 1% 0 0;
}

#greeting main .yamadaspage .imagebox li:nth-of-type(2n) {
	margin-right: 0;
}

#greeting main .yamadaspage .imagebox li:nth-of-type(n+3) {
	margin-top: 1%;
}

#greeting main .yamadaspage .imagebox.item3 li {
	float: left;
	width: 32.66%;
	margin: 0 1% 0 0;
}

#greeting main .yamadaspage .imagebox.item3 li:nth-of-type(3n) {
	margin-right: 0;
}

#greeting main .yamadaspage .imagebox.item3 li:nth-of-type(n+4) {
	margin-top: 1%;
}

#greeting main .yamadaspage .imagebox.item1 li {
	float: left;
	width: 100%;
	margin: 0;
}

#greeting main .yamadaspage .imagebox.item1 li:nth-of-type(n+2) {
	margin-top: 1%;
}

#greeting main .yamadaspage .imagebox li a {
	display: block;
}

/*----#lifestyle----*/
#greeting main .yamadaspage #lifestyle h2 {
	width: 95%;
	margin: 5px auto 0;
	line-height: 150%;
	letter-spacing: -0.1rem;
	font-weight: bold;
	font-size: 1.9rem;
}

#greeting main .yamadaspage #lifestyle h2:first-letter {
	font-size: 4.0rem;
}

#greeting main .yamadaspage #lifestyle h2 span {
	font-size: 2.1rem;
}

#greeting main .yamadaspage #lifestyle h3 {
	margin: 15px auto 0;
	padding: 16px;
	background: #000;
	text-align: center;
	font-weight: bold;
	font-size: 3.8rem;
	color: #fff;
}

#greeting main .yamadaspage #lifestyle p {
	width: 94%;
	margin: 10px auto 0;
	font-weight: bold;
}

/*----#work----*/

#greeting main .yamadaspage #work {
	background: #fff;
}

#greeting main .yamadaspage #work h2 {
	margin: 25px auto 0;
	padding: 16px;
	background: #000;
	text-align: center;
	font-family: 'Anton';
	font-size: 4.2rem;
	color: #fff;
}

#greeting main .yamadaspage #work .body {
	padding: 3%;
}

#greeting main .yamadaspage #work .body p {
	margin-top: 15px;
	padding: 10px 7px 0;
	border-top: solid 2px #000;
	font-weight: bold;
	font-size: 1.7rem;
}

#greeting main .yamadaspage #work .body p:nth-of-type(1) {
	margin: 0;
	padding-top: 0;
	border: 0;
}

#greeting main .yamadaspage #work .body ul {
	margin-top: 10px;
}

#greeting main .yamadaspage #work .body ul li {
	padding: 7px;
	border-top: dotted 1px #aaa;
	font-size: 1.7rem;
}

#greeting main .yamadaspage #work .body a {
	display: block;
	width: 80%;
	margin-top: 7px;
	margin-left: 20%;
	margin-bottom: 15px;
	padding: 7px;
	border-radius: 5px;
	background: #a00;
	text-align: center;
	font-size: 1.7rem;
	color: #fff;
}

#greeting main .yamadaspage #work .body a:hover {
	background: #000;
	color: #fff;
}

#greeting main .yamadaspage #work .body a:after {
	content: "→";
	dispplay: inline-block;
	margin-left: 3px;
}


/*----#profile----*/
#greeting main .yamadaspage #profile {
	background: #fff;
}

#greeting main .yamadaspage #profile h2 {
	margin: 0 auto 0;
	padding: 16px;
	background: #000;
	text-align: center;
	font-family: 'Anton';
	font-size: 4.2rem;
	color: #fff;
}

#greeting main .yamadaspage #profile ul {
	padding: 3%;
}

#greeting main .yamadaspage #profile ul li {
	margin-bottom: 4px;
	padding-bottom: 4px;
	border-bottom: dotted 1px #aaa;
}

#greeting main .yamadaspage #profile ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

#greeting main .yamadaspage #profile ul li dl {
	display: table;
	width: 100%;
	font-size: 1.6rem;
}

#greeting main .yamadaspage #profile ul li dl dt {
	display: table-cell;
	width: 20%;
	padding: 2%;
	vertical-align: middle;
	text-align: center;
	letter-spacing: 0.2rem;
	font-weight: bold;
}

#greeting main .yamadaspage #profile ul li dl dd {
	display: table-cell;
	width: 80%;
	padding: 1% 3%;
	line-height: 150%;
	vertical-align: middle;
}


/*----#photo----*/

#greeting main .yamadaspage #photo h2 {
	height: 0px;
	text-indent: -9999px;
}

#greeting main .yamadaspage #photo .imagebox li a p {
	text-align: right;
	padding: 4px 7px;
	background: #000;
	color: #fff;
}


/*----#biography----*/

#greeting main .yamadaspage #biography {
	margin: 30px auto 0;
width: 96%;

}

#greeting main .yamadaspage #biography h2 {
	line-height: 100%;
	text-align: center;
	font-family: 'Anton';
	font-size: 6.5rem;
}

#greeting main .yamadaspage #biography h2:before {
	font-family:'Roboto','Noto Sans JP';
	content: "･";
}

#greeting main .yamadaspage #biography h2:after {
	font-family:'Roboto','Noto Sans JP';
	margin-left: -5px;
	content: "･";
}

#greeting main .yamadaspage #biography ul {
	margin: 30px auto 0;
	background: url(../image/greeting/bio_line.png) center 0 repeat-y;
}

#greeting main .yamadaspage #biography dl {
	margin-top: 20px;
	padding-top: 6px;
	background: url(../image/greeting/bio_mark.png) center 0 no-repeat;
	line-height: 150%;
}

#greeting main .yamadaspage #biography ul li dl dt {
	width: 43%;
	min-height: 115px;
	padding-top: 2px;
	background-position: right 9px top 0;
	background-repeat: no-repeat;
	background-size: auto 115px;
	font-family: 'Anton';
	font-weight: bold;
	font-size: 3.0rem;
}

#greeting main .yamadaspage #biography ul li:last-child dl dt {
	min-height: 50px;
}

#greeting main .yamadaspage #biography ul li:nth-of-type(odd) dl dt {
	float: left;
	background-position: left 10px top 0;
	text-align: right;
}

#greeting main .yamadaspage #biography ul li:nth-of-type(even) dl dt {
	float: right;
}

#greeting main .yamadaspage #biography ul li dl.age0 dt {background-image: url(../image/greeting/age0.png);}
#greeting main .yamadaspage #biography ul li dl.age12 dt {background-image: url(../image/greeting/age12.png);}
#greeting main .yamadaspage #biography ul li dl.age21 dt {background-image: url(../image/greeting/age21.png);}
#greeting main .yamadaspage #biography ul li dl.age23 dt {background-image: url(../image/greeting/age23.png);}
#greeting main .yamadaspage #biography ul li dl.age30 dt {background-image: url(../image/greeting/age30.png);}
#greeting main .yamadaspage #biography ul li dl.age35 dt {background-image: url(../image/greeting/age35.png?200922);}

#greeting main .yamadaspage #biography ul li dl dt span {
	font-size: 2.5rem;
}

#greeting main .yamadaspage #biography ul li dl dd {
	width: 44%;
	font-weight: bold;
}

#greeting main .yamadaspage #biography ul li:nth-of-type(odd) dl dd {
	float: right;
	padding-right: 2.5%;
}

#greeting main .yamadaspage #biography ul li:nth-of-type(even) dl dd {
	float: left;
	padding-left: 2.5%;
}

#greeting main .yamadaspage #biography ul li dl dd p {
	margin-bottom: 10px;
	padding: 5px;
	background: #000;
	text-align: center;
	font-weight: bold;
	font-size: 1.7rem;
	color: #fff;
}

#greeting main .yamadaspage #biography .continue {
	margin-top: 5px;
	text-align: center;
	font-family: 'Anton';
	font-weight: bold;
	font-size: 2.3rem;
}


/*----#hobby----*/
#greeting main .yamadaspage #hobby {
	width: 100%;
	margin: 70px auto 0;
}

#greeting main .yamadaspage #hobby h2 {
	line-height: 100%;
	text-align: center;
	font-family: 'Anton';
	font-size: 6.5rem;
}

#greeting main .yamadaspage #hobby h2:before {
	font-family:'Roboto','Noto Sans JP';
	content: "･";
}

#greeting main .yamadaspage #hobby h2:after {
	font-family:'Roboto','Noto Sans JP';
	margin-left: -5px;
	content: "･";
}

#greeting main .yamadaspage #hobby .table {
	margin-top: 10px;
	padding: 3%;
#	background: #fff;
}

#greeting main .yamadaspage #hobby .table li {
	margin-bottom: 4px;
	padding-bottom: 4px;
	border-bottom: dotted 1px #000;
}

#greeting main .yamadaspage #hobby .table li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

#greeting main .yamadaspage #hobby .table li dl {
	display: table;
	width: 100%;
	font-size: 1.6rem;
}

#greeting main .yamadaspage #hobby .table li dl dt {
	display: table-cell;
	width: 20%;
	padding: 2%;
	vertical-align: middle;
	text-align: center;
	letter-spacing: 0.2rem;
	font-weight: bold;
}

#greeting main .yamadaspage #hobby .table li dl dd {
	display: table-cell;
	width: 80%;
	padding: 1% 3%;
	line-height: 150%;
	vertical-align: middle;
}


#greeting main .yamadaspage #hobby section {
	margin-top: 10px;
}

#greeting main .yamadaspage #hobby section h3 {
	padding: 16px;
	background: #000;
	text-align: center;
	font-family: 'Anton';
	font-size: 4.2rem;
	color: #fff;
}

#greeting main .yamadaspage #hobby section p {
	width: 94%;
	margin: 10px auto 0;
	font-weight: bold;
}






















/*----------------------------------------------------------------------
#contact
----------------------------------------------------------------------*/
#contact main .ct {
	padding-top: 40px;
}

#contact main .formbox {
	margin: 50px auto 0;
}

#contact main .formbox dl {
	margin-top: 5px;
	padding: 10px 15px;
}

#contact main .formbox dl dt .need {
	margin-left: 10px;
	padding: 2px 5px;
	border-radius: 3px;
	background: #faa61a;
	font-size: 1.3rem;
}

#contact main .formbox dl dd {
	margin-top: 5px;
}

#contact main .formbox dl dd input, 
#contact main .formbox dl dd text, 
#contact main .formbox dl dd textarea {
	width: 100%;
	padding: 15px;
	border-radius: 5px;
	border: 0;
	font-size: 1.7rem;
	
}

#contact main .formbox dl dd textarea {
	height: 200px;
}

#contact main .btnbox {
	margin-top: 50px;
}


/*----入力エラー----*/
#contact main .errorbox {
	width: 96%;
	margin: 40px auto 70px;
	padding: 15px;
	border-radius: 5px;
	background: #404040;
}

#contact main .errorbox h4 {
	margin-bottom: 1em;
}

/*----確認画面----*/
#contact main .confirmttl {
	width: 96%;
	margin: 40px auto 0;
	padding: 10px 15px;
	background: #000;
	text-align: center;
}

#contact main .confirmtext {
	width: 96%;
	margin: 10px auto 0;
	padding: 10px;
}

#contact main .formwrap {
	margin: 20px auto 50px;
}

#contact main .formwrap dl {
	margin-top: 5px;
	padding: 10px 15px;
}

#contact main .formwrap dl dd {
	margin-top: 5px;
	padding: 15px;
	border-radius: 5px;
	background: #404040;
}

#contact main .btnbox.confirm {
	margin-bottom: 70px;
}

/*----完了画面----*/
#contact main .done dt {
	width: 96%;
	margin: 40px auto 0;
	padding: 10px 15px;
	background: #000;
	text-align: center;
	letter-spacing: 1em;
}

#contact main .done dd {
	width: 96%;
	margin: 0 auto;
	padding: 20px 15px;
	background: #404040;
	line-height: 200%;
}

#contact main .done dd p {
	font-size: 1.5rem;
}

#contact main .done dd span {
	display: block;
	margin-top: 1.5em;
}

#contact main .done .link_next {
	width: 100% !important;
	margin: 40px auto 0;
	text-align: center !important;
}

/*----------------------------------------------------------------------
#recruit
----------------------------------------------------------------------*/
#recruit main .ct {
	padding-top: 40px;
}

#recruit main .job {
	width: 96%;
	margin: 50px auto 0;
}

#recruit main .job .name {
	margin-bottom: 70px;
	line-height: 100%;
	font-size: 5.0rem;
	color: #000;
}

#recruit main .job .name span {
	display: block;
	width: 40%;
	margin-top: 10px;
	padding: 5px;
	background: #000;
	line-height: 100%;
	text-align: center;
	font-size: 1.3rem;
	color: #fff;
}

#recruit main .job .table {
	width: 96%;
	margin: 0 auto 10px;
	padding: 5px;
	border-top: solid 1px #5f5f5f;
}

#recruit main .job .table .ttl {
	padding: 5px 10px;
	font-weight: bold;
	color: #000;
}

#recruit main .job .table .value {
	padding: 0 10px;
}

#recruit main .job .table .value .salary {
	margin-top: 1em;
}

#recruit main .job .table .value .salary:first-child {
	margin-top: 0;
}

#recruit main .job .table .value .salary dt {
}

#recruit main .job .table .value .salary dd {
	margin-left: 1.5em;
	color: #000;
}



/*----------------------------------------------------------------------
#history
----------------------------------------------------------------------*/
#history main .ct {
	padding-top: 40px;
}

#history main .wrapper {
	width: 96%;
	margin: 50px auto 0;
	border-top: solid 1px #5f5f5f;
}

#history main .wrapper .table {
	border-bottom: solid 1px #5f5f5f;
	padding: 15px;
}

#history main .wrapper .table dt {
	font-weight: bold;
	font-size: 1.7rem;
	color: #000;
}

#history main .wrapper .table dd {
	margin-top: 10px;
}

#history main .wrapper .table dd .data p {
	font-size: 1.7rem;
	margin-bottom: 5px;
}

#history main .wrapper .table dd .data .subimage {
	display: flex;
	width: 100%;
	margin-top: 15px;
	padding: 3px;
	border-radius: 5px;
	background: #404040;
}

#history main .wrapper .table dd .data .subimage li {
	width: 33.33%;
	padding: 4px;
}

#history main .wrapper .table dd .mainimage {
	width: 110px;
	margin: 15px auto ;
}


/*----------------------------------------------------------------------
#inlifeitem_ct
----------------------------------------------------------------------*/
#inlifeitem_ct main .ct {
	padding-top: 40px;
}

#inlifeitem_ct main .wrapper .ct_name {
	margin-top: 50px;
	text-align: center;
	font-weight: bold;
	font-size: 3.0rem;
	color: #000;
}

#inlifeitem_ct main .wrapper .ct_name span{
	font-size: 2.0rem;
}

#inlifeitem_ct main .wrapper .list {
	width: 96%;
	margin: 40px auto 0;
}

#inlifeitem_ct main .wrapper .list .item {
	margin-top: 10px;
}

#inlifeitem_ct main .wrapper .list .item a {
	display: flex;
	padding: 10px;
	border-radius: 3px;
	background: #fff;
	color: #000;
}

#inlifeitem_ct main .wrapper .list .item a img {
	width: 100px;
	height: 100px;
}

#inlifeitem_ct main .wrapper .list .item a p {
	padding-left: 10px;
	line-height: 150%;
}

#inlifeitem_ct main .pager {
	width: 96%;
	margin: 70px auto 0;
	text-align: center;
}

#inlifeitem_ct main .pager a {
	display: inline-block;
	margin: 0 5px;
	padding: 0 15px;
	border-radius: 5px;
	background: #aaa;
}

#inlifeitem_ct main .pager a.current {
	background: #000;
	pointer-events: none;
}



/*----------------------------------------------------------------------
#inlifeitem
----------------------------------------------------------------------*/
#inlifeitem main .wrapper {
	padding-top: 40px;
}

#inlifeitem main .wrapper .lo {
	width: 96%;
	margin: 30px auto 0;
}

#inlifeitem main .wrapper .lo .textclm {

}

#inlifeitem main .wrapper .lo .textclm .subject {
	padding: 5px;
	line-height: 150%;
	font-size: 2.0rem;
	padding: 10px;
	background: #000;
}

#inlifeitem main .wrapper .lo .textclm .data_ct {
	margin-top: 15px;
	padding-top: 10px;
	border-top: solid 1px #000;
	text-align: right;
}

#inlifeitem main .wrapper .lo .textclm .data_ct a {
	display: inline-block;
	background: #000;
	padding: 0 10px;
	border-radius: 3px;
}

#inlifeitem main .wrapper .lo .textclm .times {
	margin-top: 15px;
	padding-top: 10px;
	border-top: solid 1px #000;
	text-align: right;
}

#inlifeitem main .wrapper .lo .textclm .body {
	max-width: 98%;
	margin: 20px auto 0;
	line-height: 200%;
	font-size: 1.7rem;
}


#inlifeitem main .wrapper .lo .textclm .body img {
	width: auto;
	max-width: 100%;
}

#inlifeitem main .wrapper .lo .image {
	margin-top: 30px;
	border-radius: 5px;
	background: #404040;
}

#inlifeitem main .wrapper .lo .textclm .body strong {
	font-weight: bold;
	color: #000;
}

#inlifeitem main .wrapper .lo .textclm .body .midasi1, 
#inlifeitem main .wrapper .lo .textclm .body .midasi3 {
	margin: 20px 0;
	padding: 10px;
	border-bottom: dotted 2px #fff;
	line-height: 180%;
	font-weight: bold;
	font-size: 2.5rem;
}

#inlifeitem main .wrapper .lo .textclm .body .midasi2, 
	margin: 10px 0;
	line-height: 180%;
	font-weight: bold;
	font-size: 2.0rem;
}

#inlifeitem main .wrapper .lo .textclm .body .kansou div {
	margin: 20px auto;
	border: solid 1px #ccc;
	padding: 15px;
}

#inlifeitem main .wrapper .lo .textclm .body font[color="red"] {
	font-weight: bold;
	color: #c00;
}

#inlifeitem main .wrapper .lo .textclm .body font[color="blue"] {
	font-weight: bold;
	color: #00c;
}

#inlifeitem main .wrapper .lo .sub {
	border-radius: 5px;
	background: #f0f0f0;
}

#inlifeitem main .wrapper .lo .sub .itemlist {
	margin-top: 10px;
	padding-top: 20px;
}

#inlifeitem main .wrapper .lo .sub .itemlist:first-child {
	margin-top: 50px;
}

#inlifeitem main .wrapper .lo .sub .itemlist .ttl {
	text-align: center;
	font-weight: bold;
	font-size: 2.5rem;
	color: #000;
}

#inlifeitem main .wrapper .lo .sub .itemlist .ttl span {
	display: inline-block;
	margin-left: -10px;
	font-size: 2.0rem;
}

#inlifeitem main .wrapper .lo .sub .itemlist .list {
	margin-top: 10px;
	padding: 3px;
}

#inlifeitem main .wrapper .lo .sub .itemlist .list li {
	padding: 5px;
}

#inlifeitem main .wrapper .lo .sub .itemlist .list li a {
	display: flex;
	align-items: center;
	padding: 7px;
	border-radius: 3px;
	background: #fff;
}

#inlifeitem main .wrapper .lo .sub .itemlist .list li a:hover {
	background: #f9f9f9;
}

#inlifeitem main .wrapper .lo .sub .itemlist .list li a img {
	width: 70px;
	height: 70px;
}

#inlifeitem main .wrapper .lo .sub .itemlist .list li a p {
	padding: 0 15px;
	font-weight: bold;
	font-size: 2.0rem;
	color: #000;
}

#inlifeitem main .wrapper .lo .sub .itemlist .list .empty div {
	display: none;
}

#inlifeitem main .wrapper .btnbox {
	margin-top: 70px;
}



/* otonanosyumido */

#otonanosyumido {
	padding-bottom: 2em;
	font-size: 15px;
}

#otonanosyumido .text {
	margin: 2em auto 0;
	line-height: 180%;
}

#otonanosyumido .text:nth-of-type(1) {
	margin-top: 0;
}

#otonanosyumido strong {
	font-weight: bold;
}

#otonanosyumido img {
	width: 100%;
}

#otonanosyumido .gallery {
#	width: 300px;
	margin: 0 auto;
}

#otonanosyumido .gallery .lo {
	margin: 0 auto !important;
}

#otonanosyumido .gallery .set {
	float: left;
#	border: solid 1px #ddd;
}

#otonanosyumido .g3 .set {
	width: 33.33%;
#	margin: 0 7px 0 0;
	padding: 5px;
}

#otonanosyumido .g3 .set:nth-child(3n) {
	margin: 0;
}

#otonanosyumido .gallery .set img {
	display: block;
}

#otonanosyumido .gallery .set p {
	margin-top: 5px;
	line-height: 130%;
}

#otonanosyumido .slide {
display: none;
	overflow: hidden;
	width:290px;
	height:290px;
	margin:10px auto 0;
	padding: 5px;
	position:relative;
	border-radius: 10px;
	border: solid 1px #ddd;
}

#otonanosyumido .slide img {
	width:290px;
	height:290px;
	position:absolute;
	left:0;
	top:0;
}


/* dissection */
#dissection {
	line-height: 180%;
	text-align: left;
	font-size: 15px;
}


#dissection img {
	width: 100%;
}

#dissection #head {
	overflow: hidden;
	border-radius: 5px;
	background: #fff;
}

#dissection #head img {
	margin: 0 auto;
}

#dissection .text {
	margin-bottom: 20px;
	padding-top: 20px;
	counter-increment: theme;
}

#dissection .text h3 {
	width: 105px;
	height: 105px;
	margin-bottom: 15px;
	padding: 5px;
	background: #404040;
	line-height: 100%;
	text-align:center;
	color: #fff;
}

#dissection .text h3:before {
	content: "0"counter(theme);
	display: block;
	line-height: 70px;
	font-weight: bold;
	font-size: 70px;
}

#dissection .text:nth-child(n+10) h3:before {
	content: counter(theme);
}

#dissection .text h3 .title {
	display: block;
	letter-spacing: 0.2em;
	font-weight: bold;
	font-size: 20px;
}

#dissection .text .gallery {
	margin: 20px auto;
}

#dissection .text .gallery .lo {
	width: 100%;
	margin: 0;
}

#dissection .text .gallery .set {
}

#dissection .text .set a {
	display: block;
}

#dissection .text .g3 .set {
#	width: 208px;
#	margin: 0 7px 0 0;
}

#dissection .text .g3 .set:nth-child(3n) {
	margin: 0;
}

#dissection .text .g2 .set img {
	width: 100% !important;
	max-width: auto !important;
#	margin: 0 10px 0 0;
}

#dissection .text .g2 .set:nth-child(2n) {
	margin: 0;
}

#dissection .text .g1 .set {
#	width: 638px;
	margin: 0 auto;
}

#dissection .text .gallery .set img {
	display: block;
	margin-top: 10px;
}

#dissection .text .gallery .set p {
	margin-top: 5px;
	line-height: 130%;
}

#dissection .text .point {
	margin-top: 15px;
	border-radius: 3px;
	border: solid 1px #ddd;
	padding: 10px;
}

#dissection .text .point span {
	display: block;
	margin-bottom: 5px;
	padding: 10px;
	border-radius: 3px;
	background: #404040;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size: 15px;
	color: #fff;
}

#dissection .text .point span:before {
	content: "Point「";
	margin-right: 0.1em;
	letter-spacing: 0em;
	font-weight: normal;
}

#dissection .text .point span:after {
	content: "」";
	margin-left: 0.1em;
	letter-spacing: 0em;
	font-weight: normal;
}

#dissection .text dl {
	margin-top: 30px;
}

#dissection .text dl dt {
	display: block;
	padding: 10px;
	border-bottom: dotted 1px #1a728f;
	background: #000;
	font-weight: bold;
	font-size: 18px;
}

#dissection .text dl dd {
	display: block;
	margin: 10px 0;
}

#dissection .text h4 {
	display: block;
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 10px;
	background: #000;
	font-weight: bold;
	font-size: 15px;
}

#dissection .text .hosoku {
	display: block;
	line-height: 100%;
	font-size: 13px;
	color: #ddd;
}

#dissection .text ul {
	margin: 10px 0;
}

#dissection .text ul li {
	border-bottom: dotted 1px #aaa;
	padding: 10px 1em;
	text-indent:-1em;
}

#dissection .text ul li:before {
	content: "・";
}

#dissection .text ul li .hosoku {
	padding-left:1.3em;
	text-align: right;
}




/*----------------------------------------------------------------------
#compositevideo
----------------------------------------------------------------------*/
#compositevideo main .ct {
	padding-top: 40px;
}

#compositevideo main .movie {
	margin: 70px auto 0;
}

#compositevideo main .movie dl {
	width: 96%;
	margin: 50px auto 0;
}

#compositevideo main .movie dl dt {
	line-height: 100%;
	font-size: 5.0rem;
	color: #000;
}

#compositevideo main .movie dl dt span {
	display: block;
	width: 40%;
	margin-top: 10px;
	padding: 5px;
	background: #000;
	line-height: 100%;
	text-align: center;
	font-size: 1.3rem;
	color: #fff;
}

#compositevideo main .movie dl dd {
	margin-top: 40px;
}

#compositevideo main .movie dl dd ul {
}

#compositevideo main .movie dl dd ul li {
	padding: 10px;
}

#compositevideo main .movie dl dd ul li img {
	border-radius: 3px;
}


/*----------------------------------------------------------------------
#videoshooting
----------------------------------------------------------------------*/
#videoshooting main .ct {
	padding-top: 40px;
}

#videoshooting main .movie {
	margin: 70px auto 0;
}

#videoshooting main .movie dl {
	width: 96%;
	margin: 50px auto 0;
}

#videoshooting main .movie dl dt {
	line-height: 100%;
	font-size: 5.0rem;
	color: #000;
}

#videoshooting main .movie dl dt span {
	display: block;
	width: 40%;
	margin-top: 10px;
	padding: 5px;
	background: #000;
	line-height: 100%;
	text-align: center;
	font-size: 1.3rem;
	color: #fff;
}

#videoshooting main .movie dl dd {
	margin-top: 40px;
}

#videoshooting main .movie dl dd ul {
}

#videoshooting main .movie dl dd ul li {
	padding: 10px;
}

#videoshooting main .movie dl dd ul li img {
	border-radius: 3px;
}

/*----------------------------------------------------------------------
#design
----------------------------------------------------------------------*/
#design main .ct {
	padding-top: 40px;
}

#design main .exs {
	margin: 70px auto 0;
}

#design main .exs dl {
	width: 96%;
	margin: 50px auto 0;
}

#design main .exs dl dt {
	line-height: 100%;
	font-size: 5.0rem;
	color: #000;
}

#design main .exs dl dt span {
	display: block;
	width: 40%;
	margin-top: 10px;
	padding: 5px;
	background: #000;
	line-height: 100%;
	text-align: center;
	font-size: 1.3rem;
	color: #fff;
}

#design main .exs dl dd {
	margin-top: 40px;
}

#design main .exs dl dd ul li {
	padding: 10px;
}

#design main .exs dl dd ul li img {
	border-radius: 3px;
}

#design main .exs dl dd ul li a {
	display: block;
}

#design main .exs.illust dl dd ul {
	display: flex;
	flex-wrap: wrap;
}

#design main .exs.illust dl dd ul li {
	width: 50%;
	padding: 5px;
}

#design main .exs.illust dl dd ul li a img {
	padding: 5px;
	background: #fff;
}


/*----------------------------------------------------------------------
#webdesign
----------------------------------------------------------------------*/
#webdesign main .ct {
	padding-top: 40px;
}

#webdesign main .website {
	margin: 70px auto 0;
}

#webdesign main .website dl {
	width: 96%;
	margin: 50px auto 0;
}

#webdesign main .website dl dt {
	line-height: 100%;
	font-size: 5.0rem;
	color: #000;
}

#webdesign main .website dl dt span {
	display: block;
	width: 40%;
	margin-top: 10px;
	padding: 5px;
	background: #000;
	line-height: 100%;
	text-align: center;
	font-size: 1.3rem;
	color: #fff;
}

#webdesign main .website dl dd {
	margin-top: 40px;
}

#webdesign main .website dl dd ul {
}

#webdesign main .website dl dd ul li {
	margin-bottom: 15px;
	padding: 10px;
}

#webdesign main .website dl dd ul li div {

}

#webdesign main .website dl dd ul li img {
	margin-top: 5px;
	border-radius: 3px;
}



/*----------------------------------------------------------------------
#staff
----------------------------------------------------------------------*/
#staff main .ct {
	padding-top: 40px;
}

#staff main .wrapper {
	margin-top: 70px;
}

#staff main .wrapper .stafflist {
	width: 96%;
	margin: 0 auto;
}

#staff main .wrapper .stafflist li {
	padding: 10px;
}

#staff main .wrapper .stafflist li .inner {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	padding: 15px;
	border-radius: 5px;
	background-position: center top;
	background-size: 80% auto;
	background-repeat: no-repeat;
	background-color:  #fff;
	color: #000;
}

/*個別顔グラ*/
#staff main .wrapper .stafflist li.yamada .inner {background-image: url(../image/staff/yamada1.jpg);}
#staff main .wrapper .stafflist li.yamada .inner:hover {background-image: url(../image/staff/yamada2.jpg);}

#staff main .wrapper .stafflist li.ito .inner {background-image: url(../image/staff/ito1.jpg);}
#staff main .wrapper .stafflist li.ito .inner:hover {background-image: url(../image/staff/ito2.jpg);}

#staff main .wrapper .stafflist li.takeuchi .inner {background-image: url(../image/staff/takeuchi1.jpg);}
#staff main .wrapper .stafflist li.takeuchi .inner:hover {background-image: url(../image/staff/takeuchi2.jpg);}

#staff main .wrapper .stafflist li.nitta .inner {background-image: url(../image/staff/nitta1.jpg);}
#staff main .wrapper .stafflist li.nitta .inner:hover {background-image: url(../image/staff/nitta2.jpg);}

#staff main .wrapper .stafflist li.tamura .inner {background-image: url(../image/staff/tamura1.jpg);}
#staff main .wrapper .stafflist li.tamura .inner:hover {background-image: url(../image/staff/tamura2.jpg);}

#staff main .wrapper .stafflist li.yamasaki .inner {background-image: url(../image/staff/yamasaki1.jpg);}
#staff main .wrapper .stafflist li.yamasaki .inner:hover {background-image: url(../image/staff/yamasaki2.jpg);}

#staff main .wrapper .stafflist li.hata .inner {background-image: url(../image/staff/hata1.jpg);}
#staff main .wrapper .stafflist li.hata .inner:hover {background-image: url(../image/staff/hata2.jpg);}

#staff main .wrapper .stafflist li.honda .inner {background-image: url(../image/staff/honda1.jpg);}
#staff main .wrapper .stafflist li.honda .inner:hover {background-image: url(../image/staff/honda2.jpg);}

#staff main .wrapper .stafflist li.nakao .inner {background-image: url(../image/staff/nakao1.jpg);}
#staff main .wrapper .stafflist li.nakao .inner:hover {background-image: url(../image/staff/nakao2.jpg);}

#staff main .wrapper .stafflist li.matuo .inner {background-image: url(../image/staff/matuo1.jpg);}
#staff main .wrapper .stafflist li.matuo .inner:hover {background-image: url(../image/staff/matuo2.jpg);}


#staff main .wrapper .stafflist li .inner::before {
	content: "";
	display: block;
	padding-top: 80%;
}

#staff main .wrapper .stafflist li .inner .name {
	margin-top: 30px;
	text-align: center;
	font-weight: bold;
	font-size: 1.7rem;
}

#staff main .wrapper .stafflist li .inner .job {
	margin-top: 10px;
	text-align: center;
}

#staff main .wrapper .stafflist li .inner .hobby {
	margin-top: 20px;
	padding: 15px 10px;
	border-top: solid 1px #777;
}

#staff main .wrapper .stafflist li .inner .hobby::before {
	content: "Hobby";
	display: block;
	width: 80px;
	margin-left: -10px;
	margin-bottom: 10px;
	padding: 0 10px;
	border-radius: 50px;
	background: #7f7f7f;
	line-height: 180%;
	text-align: center;
	font-size: 1.2rem;
	color: #fff;
}








