body {
	margin:0; padding:90px 0 0 0;
	font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	background-color: #000;
	color: #fff;
}
ul, li, h1, h2, h3 { list-style:none; padding:0;margin:0; font-weight:normal;}
a, a:visited { text-decoration:none; color: #fff;}
th { text-align: left; font-weight:normal;}


.wrapper{
    min-height: 100vh;
    position: relative;/*←相対位置*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
	padding-bottom: 120px
}

.container {
	margin: 0;
}


.bread_crumb {
	font-size: 0.9rem;
	max-width: 1200px;
	margin: 0 auto;
}
.bread_crumb a,
.bread_crumb a.visited {
	color: #fff;
}

h2.page_title {
	text-align: center;
	color: #a0d237;
	font-size: 3rem;
	margin: 60px 0;
}

h3 {
	border-left: 5px solid #a0d237;
	font-size: 2rem;
	padding: 5px 10px;
	margin-bottom: 30px;
}



header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 40px;
  background: #000;
  box-sizing: border-box;
}
header .header_inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

footer{
	background-color: #0b0b0d;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 50px 0 30px 0;
	font-size: 1.0rem;
}


.header_inner {
	max-width: 1200px;
	margin: 0 auto;
}

.site-logo {
  position: relative;
  margin: 0;
  padding: 0;
  width: 420px;
  font-weight: bold;
}
@media only screen and (max-width:500px) {
.site-logo img {
	width: calc(100% - 50px);
}

}
@media only screen and (max-width:1200px) {
	header {
		padding: 5px;
	  }	
}

header .gnav {
	margin: 0 0 0 auto;
}

header .gnav .gnav__menu {
  margin: 0 0 0 auto;
  padding: 0;
  font-size: 14px;
  display: flex;
  list-style: none;
}
header .gnav .gnav__menu li {
  margin: 5px 0 5px 30px;
}
header .gnav .gnav__menu li:first-child {
  margin-left: 0;
}
header .gnav .gnav__menu li a {
  box-sizing: border-box;
  text-decoration: none;
  color: #fff;
}
header .gnav .gnav__menu li a:hover {
  text-decoration: underline;
}


@media only screen and (max-width:1201px) {

	header .gnav {
		margin: auto;
	}
	header .gnav .gnav__menu {
		display: block;
		margin: auto;
	  }
	  header .gnav .gnav__menu li {
		margin: auto;
	  }
	  header .gnav .gnav__menu li:first-child {
		margin: auto;
	  }
	  header .gnav .gnav__menu li a {
		box-sizing: unset;
		text-decoration: none;
		font-size: 1.3em;
	  }
	  header .gnav .gnav__menu li a:hover {
		text-decoration: none;
	  }
	  


	/*　ハンバーガーボタン　*/
	.hamburger {
	  display : block;
	  position: fixed;
	  z-index : 3;
	  right : 13px;
	  top   : 12px;
	  width : 42px;
	  height: 42px;
	  cursor: pointer;
	  text-align: center;
	  -webkit-transition: 0.5s all;
	  -moz-transition   : 0.5s all;
	  transition        : 0.5s all;
	}
	.hamburger span {
	  display : block;
	  position: absolute;
	  width   : 30px;
	  height  : 2px ;
	  left    : 6px;
	  background : #a0d237;
	}
	.hamburger span:nth-child(1) {
	  top: 10px;
	}
	.hamburger span:nth-child(2) {
	  top: 20px;
	}
	.hamburger span:nth-child(3) {
	  top: 30px;
	}
	
	/* ナビ開いてる時のボタン */
	.hamburger.active{
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
	.hamburger.active span:nth-child(1) {
	  top : 16px;
	  left: 6px;
	  background : #a0d237;
	  -webkit-transform: rotate(-45deg);
	  -moz-transform   : rotate(-45deg);
	  transform        : rotate(-45deg);
	}
	.hamburger.active span:nth-child(2) {
	  top: 16px;
	  background : #a0d237;
	  -webkit-transform: rotate(45deg);
	  -moz-transform   : rotate(45deg);
	  transform        : rotate(45deg);
	}
	.hamburger.active span:nth-child(3) {
	  opacity: 0;
	}
	
	nav.globalMenuSp {
	  position: fixed;
	  z-index : 2;
	  top  : 0;
	  right : 0;
	  color: #fff;
	  background: rgba(0,0,0,0.7);
	  text-align: center;
	  width: 480px;
	  opacity: 0;
	  transition: opacity .6s ease, visibility .6s ease;
	  padding-top: 50px;
	  display: none;
	}
	
	nav.globalMenuSp ul {
	  margin: 0 auto;
	  padding: 0;
	  width: 100%;
	}
	
	nav.globalMenuSp ul li {
	  list-style-type: none;
	  padding: 0;
	  width: 100%;
	  transition: .4s all;
	}
	nav.globalMenuSp ul li:last-child {
	  padding-bottom: 0;
	}
	nav.globalMenuSp ul li:hover{
	  background :#a0d237;
	}
	
	nav.globalMenuSp ul li a {
	  display: block;
	  color: #fff;
	  padding: 1em 0;
	  text-decoration :none;
	}
	
	/* このクラスを、jQueryで付与・削除する */
	nav.globalMenuSp.active {
	  opacity: 100;
	
	}
}

@media only screen and (max-width:480px) {
	nav.globalMenuSp {
		width: 100%;
	}
}

.main {
/*  min-height: 100vw;*/
	padding-top: 20px;
	margin-bottom: 150px;
}


.foot_logo {
	width: 60px;
}
.foot_name {
	margin: 20px auto;
}
.foot_banner {
	margin: 20px auto;
}

.contents_top {
	max-width: 1200px;
	margin: 0 auto;
}

.contents_body {
	max-width: 1200px;
	margin: 0 auto;
}

.contents_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 5px;
}

h1 {
	display: inline-block;
}

.top_image {
	position: relative;
}

.top_image img {
	width: 100%;
}
.top_image_cap {
	position: absolute;
	bottom: 0;
	background-color: #000;
	opacity: .6;
	padding: 10px 0 10px 10px;
	width: 100%;
	font-size: 1.0em;
}

.top_image_more {
	display: inline-block;
	position: absolute;
	right: 0;
	background-color: #8bb336;
	opacity: 1;
	color: #fff;
	padding: 9px;
	bottom: 2px;
	font-size: 1.0em;
	border: 0;
}

.pc-top-img {
	display: block !important;
}
.sp-top-img {
	display: none !important;
}

@media only screen and (max-width:640px) {

	.pc-top-img {
		display: none !important;
	}
	.sp-top-img {
		display: block !important;
	}
	
		

}

.recent_message {
	max-width: 1600px;
	margin: 0 auto;
}

.news {
	/* background-color: #808080; */
}

.news_item {
	font-size: 1.3em;
	border-bottom: 1px dotted #808080;
	padding: 25px 5px;
	/*margin-bottom: 30px;*/
}
.news_item:first-child {
	border-top: 1px dotted #808080;
}
.news_item .date {
	/*display: inline-block;*/
	margin-bottom: 5px;
	width: 150px;
	color: #8bb336;
}
.news_item .comment {
	display: inline-block;
	/*width: calc(100% - 170px);*/
	width: 100%;
}

@media only screen and (max-width:1200px) {
.news_item {
	padding: 10px 5px;
}
.news_item .date {
	display: block;
	width: 100%;
}
.news_item .comment {
	display: block;
	width: 100%;
}
}

@media only screen and (max-width:640px) {
.news_item {
	font-size: 1.1em;
}
}

.news_link .news_item .comment:hover {
	text-decoration: underline;
	font-weight: bold;
}


.balloon {
	background-color: #fff;
	font-size: 1.2rem;
	color: #000;
	padding: 10px 10px 10px 130px;
	background-image: url('../../images/common/balloon_icon.png');
	background-repeat: no-repeat;
	background-position: left center;
	min-height: 65px;
	margin-top: 50px;

}

.event_info {
	margin-top: 50px;
	background-color: #333;
	padding: 50px 0;
}
.event_inner {
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
}
.event_inner img {
	width: 400px;
}
.event_content {
	position: absolute;
	top: 0;
	left: 450px;
}
.event_content_title {
	color: #a0d237;
	font-size: 3rem;
}
.pc_event_title {
	display: block;
}
.sp_event_title {
	display: none;
}
.event_content_title span {
	color: #fff;
	font-size: 1.2rem;
	display: block;
	margin: 5px 0 30px;
}
.event_content p {
	font-size: 1.5rem;
}
.event_more {
	position: absolute;
	right: 5px;
	bottom: 0;
}
.event_more a {
	display: block;
	padding: 15px;
	border: 1px solid #fff;
}
.event_more a:hover {
	background-color: #a0d237;
}

@media only screen and (max-width:640px) {

.pc_event_title {
	display: none;
}
.sp_event_title {
	display: block;
	background-color: #000;
	padding-bottom: 20px;
}

.event_content_title {
	text-align: center;
}
.event_content_title span {
	margin-bottom: 0;
}
.event_info {
	margin-top: 30px;
	background-color: #000;
	padding: 0;
}

.event_content {
	position: static;
	left: 0;
}
.event_more {
	position: static;
}

.event_inner {
	margin: 0 auto;
	position: static;
}
.event_content p {
	font-size: 1.0rem;
	padding: 5px;
}
.event_inner img {
	width: 100%;
}


.event_more {
	position: relative;
	width: 100%;
	font-size: 1.2rem;
	text-align: center;
	margin: 0 auto;
	right: 0;
}

.event_more .fas {
	position: absolute;
	right: 20px;
	bottom: 20px;
}



}

.blog_info,
.news_info {
	margin-top: 50px;
	padding: 50px 0;
}

.blog_content_title,
.work_content_title {
	text-align: center;
	color: #a0d237;
	font-size: 3rem;
}

.blog_content_title span,
.work_content_title span {
	color: #fff;
	font-size: 1.2rem;
	display: block;
	margin: 5px 0 30px;
}
.blog_content,
.work_content,
.event_list {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 20px;
}
.blog_col,
.work_col,
.event_item {
	position: relative;
	width: calc(100% / 3 - 14px);
}

.blog_col .blog_img::before,
.work_col .work_img::before,
.event_item .event_item_img::before {
	content: "";
	display: block;
	padding-top: 320px;
	text-align: center;
}

.blog_col .blog_img img,
.work_col .work_img img,
.event_item .event_item_img img {
	position: absolute;
	width: 90%;
	height: 300px;
	top: 0;
	bottom: calc(100% -280px);
	right: 0;
	left: 0;
	margin: auto;
	object-fit: cover;
}

.blog_col .blog_col_title,
.work_col .work_col_title,
.event_item .event_item_title {
	font-size: 1.1rem;
	font-weight: bold;
	width: 90%;
	margin: 0 auto;
}
.blog_col .blog_col_date,
.event_item .event_item_date {
	width: 90%;
	margin: 0 auto;
	color: #a0d237;
}
.blog_col .blog_summary {
	width: 90%;
	margin: 0 auto;
	height: 190px;
	overflow: hidden;
}
@media only screen and (max-width:480px) {

.blog_content,
.work_content,
.blog_info,
.news_info,
.event_list {
	margin-top: 30px;
}

.blog_info, .news_info {
	padding: 20px 0;
}

	.blog_col .blog_img::before,
	.work_col .work_img::before,
	.event_item .event_item_img::before {
		content: "";
		display: block;
		padding-top: 130px;
		text-align: center;
	}
	
	.blog_col .blog_img img,
	.work_col .work_img img,
	.event_item .event_item_img img {
		position: absolute;
		width: 90%;
		height: 120px;
		top: 0;
		bottom: calc(100% -280px);
		right: 0;
		left: 0;
		margin: auto;
		object-fit: cover;
	}


}


.blog_more,
.work_more,
.back_event,
.next_link {
	position: relative;
	width: 300px;
	font-size: 1.2rem;
	border: 1px solid #fff;
	text-align: center;
	margin: 50px auto 0;
	padding: 20px;
}
.blog_more:hover,
.work_more:hover,
.back_event:hover,
.next_link:hover {
	background-color: #a0d237;
}

.blog_more .fas,
.work_more .fas,
.next_link .fas {
	position: absolute;
	right: 20px;
	bottom: 25px;
}

.back_event .fas {
	position: absolute;
	left: 20px;
	bottom: 25px;
}

@media only screen and (max-width:480px) {

.blog_more,
.work_more,
.back_event,
.next_link {
	position: relative;
	width: calc(100% - 40px);
	font-size: 1.2rem;
	border: 1px solid #fff;
	text-align: center;
	margin: 50px auto 0;
	padding: 20px;
}

}

/* STAFF */
.staff {
	text-align: center;
	display: table-cell;
	width: calc(1200px / 3 - 10px);
	vertical-align: top;
	padding: 5px;
}
.staff img {
	width: 100%;
}

.staff .name {
	margin-top: 30px;
	font-size: 2rem;
}
.staff .name span {
	display: block;
	font-size: 2rem;
	color: #a0d237;
}
.staff .title {
	font-size: 1.5rem;
}
.staff .message {
	line-height: 2rem;
}

.staff h3 {
	border: 0;
}


.c-lh25 {
	margin-left: 20px;
	line-height: 2.5rem;
}

p.next_margin {
	margin-bottom: 50px;
}

@media only screen and (max-width:1100px) {

.staff {
	text-align: center;
	margin: 0 auto 100px auto;
	display: block;
	width: calc(80% - 10px);
	padding: 5px;
}
.staff img {
	width: 100%;
	max-width: 360px;
}
.staff .message {
	width: 100%;
	max-width: 400px;
	margin: 0 auto 0 auto;
}

}

/* ABOUT */
table.company {
	width: 100%;
	border-collapse: collapse;
}
table.company tr {
	border-bottom: 1px solid #999;
}
table.company th,
table.company td {
	padding: 10px;
}

.mapright {
	text-align:right;
	margin: 10px 0;
}


/* EVENT */
.event_item .event_item_summary {
	width: 90%;
	margin: 0 auto;
	height: 200px;
	font-size: 1.1em;
	line-height: 1.2em;
	overflow: hidden;
}
.event_list {
	gap: 100px 20px;
	margin-bottom: 100px;
}

.event_date {
	margin-left: 20px;
	color: #a0d237;
}

.event_img {
	width: 100%;
	max-width: 1200px;
}

.event_desc {
	/* margin-bottom: 200px; */
}

.old_event {
	padding: 0 20px;
}

.old_event dt {
	display: inline-block;
	width: 500px;
	font-weight: bold;
}

.old_event dd {
	margin: 0;
	display: inline-block;
	width: calc((100% - 500px) * 0.9);
	overflow: hidden;
	font-size: 0.9em;
}

@media only screen and (max-width:640px) {
.event_item .event_item_img img {
	height: 400px;
}
.event_item .event_item_img::before {
	padding-top: 420px;
}
}	


@media only screen and (max-width:1100px) {

.event_item {
	width: 100%;
}

.event_item .event_item_img img {
	height: 600px;
}
.event_item .event_item_img::before {
	padding-top: 620px;
}

.old_event {
	padding: 0 40px;
}

.old_event dt {
	display: block;
	width: 100%;
}

.old_event dd {
	display: block;
	width: 100%;
	text-align: right;
}

}

/* WORKS */
.works_content {
	margin-top: 30px;
}
.works_body {
	width: calc(100% - 400px);
	float:right;
}
.works_body h2 {
	margin-top: 0;
	margin-bottom: 30px;
	text-align: left;
}

.works_body figure {
    display: inline-block;
	width: 240px;
    margin: 0px 10px 30px 10px;
    background-color: #fff;
}
/* ▼画像に対する装飾 */
.works_body figure a {
	height: 180px;
	width: 240px;
    display: block;
	text-align: center;
	overflow: hidden;
    margin: 0px 0px 3px 0px;
}
.works_body figure img.w {
	width: 100%;
}
.works_body figure img.h {
	height: 100%;
}

/* ▼キャプションに対する装飾 */
.works_body figcaption {
    text-align: center;      /* 中身をセンタリング */
	color: #000;
	padding: 5px 0;
}


.works_menu {
	width: 300px;
	padding: 15px;
	border: 2px solid #fff;
	float:left;
	margin-bottom: 200px;
}
.works_menu h3 {
	border-left: 5px solid #a0d237;
	font-size: 1rem;
	padding: 5px 20px;
	margin-bottom: 20px;
}
.works_menu ul {
	margin-bottom: 30px;
}
.works_menu ul li {
	display: block;
	border: 1px solid #808080;
	padding: 10px 10px 10px 25px;
	margin-bottom: 10px;
	font-size: 1rem;
}

@media only screen and (max-width:1000px) {
.works_body {
	float: none;
	width: 100%;
}
.works_menu {
	float: none;
	display: none;
}
}

.slick-next{
    right: -35px !important;
	z-index: 100;
}

.slick-prev{
    left: -35px !important;
	z-index: 100;
}
.slick-prev:before,
.slick-next:before {
	font-size: 25px !important;
}


@media only screen and (max-width:1250px) {
.slick-next{
    right: 10px !important;
}

.slick-prev{
    left: 10px !important;
}
}

/* ACCESS */
#map {
	width: 100%;
	max-width: 1200px;
	height: 600px;
}

/* WORKS */
/* index
================================================ */
.itemlist {
	padding-left: 7px;
}

.itemlist a {
	display:block;
	width: 33%;
	overflow: hiddden;
	float: left;
	background-size: cover;
	background-position: center;
	font-size: 1px;
	text-indent: -10000px;
}

/* CONTACT */
.form_parts {
	padding: 5px;
	margin: 0 auto 0 50px;
}
.form_title {
	font-size: 1.0em;;
	display: table-cell;
	width: 180px;
	vertical-align: middle;
}
.form_value,
.form_value_c {
	display: table-cell;
	font-size: 1.0em;;
	width: calc(100% - 200px);
}

.form_value input,
.form_value select,
.form_value textarea {
	font-size: 1.0em;;
	padding: 5px;
	font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.form_command {
	text-align: center;
	margin-top: 30px;
}
.form_command div{
	margin: 0 auto;
}

.required {
	color: #f99;
}

input[name="name"],
input[name="job"],
input[name="email"],
input[name="email2"],
input[name="addr"] {
	width: 400px;
}
input[name="zip"],
input[name="tel"] {
	width: 150px;
}
textarea[name="comment"] {
	width: 400px;
	height: 250px;
}

#back_button div,
#submit_button div {
	display: inline-block;
}


@media only screen and (max-width:800px) {

.form_parts {
	padding: 5px;
	margin: 0;
}

.form_title {
	display: block;
	padding: 5px 0;
	width: calc(100% - 10px);
}
.form_value {
	display: block;
	width: calc(100% - 10px);
	background-color: #fff;
	padding: 5px;
}
.form_value_c {
	display: block;
	width: calc(100% - 10px);
	background-color: #fff;
	color: #000;
	padding: 5px;
}

.form_value input,
.form_value textarea,
.form_value select {
	width: calc(100% - 10px);
	border: 0;
	outline: 0;
}

#back_button div,
#submit_button div {
	display: block;
}
.form_command .back_event {
	margin-bottom: 10px;
}


}


.movie iframe {
	width: 100%;
	aspect-ratio: 560 / 315;
}
.line_nav {
	width: 135px;
	margin: 0 0 0 auto;
	background-color: #333333;
	padding: 10px;
	text-align: center;
}
.line_nav img,
.gnav__menu__item.line_contact img {
	width: 20px;
	position: relative;
	top: 4px;
}
.line_nav span {
	color: #fff;
	top: -3px;
	margin-left: 5px;
	font-size: 14px;
}
.gnav {
	position: absolute;
	left: 475px;
	top: -10px;
	display: block;
}
.gnav__menu {
	width: 725px;
	font-size: 13.5px;
}
header .gnav .gnav__menu {
	font-size: 13.5px;
}
.gnav__menu__item.line_contact {
	display: none;
}
.gnav__menu__item.line_contact span {
	margin-left: 5px;
}
.line_nav {
	display: block;
}
nav.gnav.globalMenuSp {
    position: absolute;
	left: 475px;
	top: -10px;
}
@media screen and (max-width: 1201px) {
	.gnav__menu__item.line_contact {
		display: block;
	}
	.line_nav {
		display: none;
	}
	nav.globalMenuSp.active {
		position: fixed;
		top: 0;
		left: auto;
		right: 0;
	}
	.gnav__menu {
		width: auto;
	}
}
.line_nav a,
.line_nav a:visited {
	color: #fff;
	text-decoration: none;
}
.line_nav a:hover {
	text-decoration: underline;
}
.sns {
	margin: 0 auto 40px auto;
	text-align: center;
}
.sns a img {
	width: 40px;
	margin: 0 10px;
	border: 0;
}
.main {
	margin-bottom: 50px;
}
.foot_logo {
	width: 150px;
}


/* デフォルトは非表示 */
#line-footer {
display: none;
}

/* 幅1200px以下の時だけ表示 */
@media screen and (max-width: 1200px) {
#line-footer {
  display: flex !important;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #06c755;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
}

#line-footer a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

#line-footer a span {
  margin-left: 10px;
}

#line-footer a img {
  height: 40px;
}
}
