@charset "utf-8";

/* Common Parts
===============================================*/
html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	color: #000;
	background: #F9F9F9;
	font-size: 1.6rem;
	line-height: 2;
}

a {
	transition: .3s;
	text-decoration: none;
}

.section_wrapper{
		padding: 0 15px;
}
.section_wrapper.white{
	background: #fff;
	padding: 1px 15px 80px;
	margin-top: 70px;
}

section {
	max-width: 1140px;
	margin: 60px auto 0;
}

section h2 {
	font-size: 3.5rem;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-weight: bold;
}

section h2::before {
	content: '';
	display: inline-block;
	background-image: url(../img/mark.svg);
	background-size: cover;
	width: 30px;
	height: 30px;
	margin-right: 18px;
}

section h3 {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 30px;
}

section h4 {
	font-size: 2.2rem;
	border: 2px solid #000;
	text-align: center;
	font-weight: normal;
}

section h5 {
	font-size: 1.7rem;
	font-weight: normal;
	display: flex;
	margin-bottom: 20px;
}

section h5 span {
	display: flex;
	align-items: center;
	border: 2px solid #000;
	padding: 0px 10px;
	font-weight: bold;
}

section h5 span:after {
	content: '';
	display: inline-block;
	background-image: url(../img/icon01.svg);
	background-size: cover;
	width: 14px;
	height: 10px;
	margin-left: 8px;
}

section h5 p {
	background: #000;
	color: #fff;
	font-weight: bold;
	padding: 0px 10px;
	flex-grow: 1;
}

section h6 {
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.5;
}

section h6 span {
	font-size: 1.3rem;
	background: #000;
	color: #fff;
	padding: 2px 15px;
	border-radius: 1em;
	display: inline-block;
	margin-bottom: 5px;
}

section h6 p {
	font-size: 2rem;
}

section small {
	text-align: right;
	font-size: 1.5rem;
	display: block;
	margin: 5px auto 20px
}

section>.contents {
	border: 1px solid #E9E9E9;
	padding: 40px 30px;
	border-radius: 10px;
	background: #fff;
	margin-bottom: 40px;
}

section>.contents:last-child {
	margin-bottom: 0;
}

.link_btn {
	display: inline-block;
	padding: 10px 20px;
	border: 1px solid #E9E9E9;
	border-radius: 5px;
	color: #333;
	font-weight: bold;
}

.link_btn:hover {
	border: 1px solid #333;
}

@media screen and (max-width: 768px) {
	body {
		padding: 0 10px;
		font-size: 1.4rem;
	}

	section h2 {
		font-size: 2.8rem;
	}

	section h3 {
		font-size: 2.2rem;
		margin-bottom: 15px;
	}

	section h4 {
		font-size: 1.7rem;
		text-align: left;
		padding: 3px 10px;
		line-height: 1.4;
	}

	section h5 {
		font-size: 1.5rem;
		display: block;
		margin-bottom: 10px;
	}

	section h5 span {
		display: inline-block;
	}

	section small {
		font-size: 1.3rem;
		text-align: left;
		line-height: 1.3;
		margin: 5px auto 10px
	}

	.pc {
		display: none;
	}

	.sp {
		display: initial;
	}

	section>.contents {
		padding: 30px 15px;
	}
	.section_wrapper.white{
		padding: 1px 15px 50px;
	}
}

@media screen and (min-width: 769px) {
	.sp {
		display: none;
	}

	.pc {
		display: initial;
	}
}

/* Navigation
===============================================*/
header {
	background-color: #F9F9F9;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

.header_inner {
	max-width: 1140px;
	margin: auto;
}

nav ul {
	display: flex;
	justify-content: flex-start;
	gap: 2%;
}

nav ul li {
	font-size: 1.7rem;
	font-weight: bold;
}

nav ul li:last-child {
	margin-left: auto;
}

nav ul li.contact{
	/* background: #f4ed00; */
	background: #fff;
	/* border: 1px solid #333; */
	/* border-top: 0; */
	background: initial;
	/* padding: 5px; */
}

nav ul li.contact a{
	background: #EBDD1E;
	padding: 10px 15px;
	margin-top: 5px;
	margin-bottom: 5px;
	border-radius: 8px;
}

nav ul li a {
	padding: 15px;
	display: flex;
	align-items: center;
	transition: .3s;
}

nav ul li a :hover {
	opacity: .8;
}

nav ul li a::before {
	content: '';
	display: inline-block;
	background-image: url(../img/mark.svg);
	background-size: cover;
	width: 14px;
	height: 14px;
	margin-right: 8px;
}

nav ul li a:hover {
	opacity: .6;
}

@media screen and (max-width: 1000px) {
	header {
		height: 50px;
		/* padding: 0 15px; */
	}

	.header_inner {
		/* padding: 0 20px; */
		align-items: center;
		/* justify-content: flex-end; */
		height: inherit;
		position: relative;
		display: block;
	}

	nav {
		display: none;
	}

	nav ul {
		flex-direction: column;
	}

	.header__hamburger {
		/* width: 48px; */
		width: 40px;
		height: 100%;

	}

	.hamburger {
		background-color: transparent;
		border-color: transparent;
		z-index: 9999;
		position: absolute;
		top: 0;
		right: 15px;
	}
}

@media screen and (min-width: 1001px) {
	.hamburger {
		display: none;
	}
}

@media screen and (max-width: 1000px) {
	.header__nav {
		transition: .3s;
		opacity: 0;
		pointer-events: none;
		z-index: -1;
		background: #F9F9F9;
		display: block;
		width: 100%;
		height: 100dvh;
		/* margin: -15px; */
	}

	/* ハンバーガーメニューの線 */
	.hamburger span {
		width: 100%;
		/* height: 1px; */
		height: 5px;
		background-color: #1EB9EB;
		position: relative;
		transition: ease .3s;
		display: block;
	}

	.hamburger span:nth-child(1) {
		top: 0;
	}

	.hamburger span:nth-child(2) {
		margin: 8px 0;
		background-color: #F00;
	}

	.hamburger span:nth-child(3) {
		top: 0;
	}

	/* ハンバーガーメニュークリック後のスタイル */
	.header__nav.active {
		/* transform: translateX(0); */
		opacity: 1;
		z-index: 100;
		pointer-events: auto;
		justify-content: center;
		align-items: center;
		display: flex;
	}

	.hamburger.active span:nth-child(1) {
		top: 13px;
		transform: rotate(45deg);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;

	}

	.hamburger.active span:nth-child(3) {
		top: -14px;
		transform: rotate(-45deg);
	}
}


/* Main Visual
===============================================*/
.top_mv .top_mv_inner {
	position: relative;
	width: min(100%, 1140px);
	margin: 0 auto;
}

.mv_title {
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 10;
	background: url(../img/corner_l.svg) no-repeat, url(../img/corner_r.svg) no-repeat, #fff;
	background-size: 50px, 50px, 100%, 100%;
	background-position: left 10px bottom 10px, right 10px top 10px, 100% 100%;
	border: 5px solid #000;
	padding: 45px 40px;
	font-size: 1.8rem;
	font-weight: bold;
}

.mv_title h1 {
	font-size: 4.5rem;
}

.mv_title p {
	margin-top: 5px;
	line-height: 1.7;
}

.mv_title .hover {
	background: #000;
	color: #fff;
	padding: 5px 30px;
	font-weight: bold;
	display: inline-block;
	position: absolute;
	top: -25px;
	left: -30px;
	line-height: 1.3;
}

.mv_title.in_section {
	position: initial;
	margin: 30px auto auto;
	padding: 30px;
	background-size: 70px, 70px, 100%, 100%;
	background-position: left 15px bottom 15px, right 15px top 15px, 100% 100%;
	max-width: 1080px;
}

.mv_title.in_section p {
	line-height: 1.8;
	font-size: 3.5rem;
	text-align: left;
	margin: auto;
}

.swiper-slide {
	/*スライド要素の幅と高さを調整*/
	width: 100%;
	height: 100%;

	/*テキストの位置調整*/
	display: flex;
	justify-content: center;
	align-items: center;

	/*テキストの色と太さを指定*/
	color: #fff;
	font-weight: bold;
}

@media screen and (max-width: 920px) {
	.mv_title {
		position: relative;
		right: auto;
		bottom: 40px;
		max-width: 81.333vw;
		margin: 0 auto;
		padding:4.8vw;
		background-size: 40px, 40px, 100%, 100%;
	}

	.mv_title h1 {
		font-size: 4.0rem;
		text-align: center;
	}

	.mv_title p {
		margin-top: 10px;
	}

	.mv_title .hover {
		top: -40px;
		left: -10.667vw;
		/* padding: 5px 8px; */
		padding: 5px 2.133vw;
		font-size: 1.7rem;
	}

	.mv_title.in_section {
		background-size: 40px, 40px, 100%, 100%;
		background-position: left 10px bottom 10px, right 10px top 10px, 100% 100%;
	}

	.mv_title.in_section p {
		font-size: 2.5rem;
		text-align: left;
	}
}

/* 私たちの考え
===============================================*/
#about p {
	line-height: 2.1;
	font-size: 2rem;
	text-align: center;
}

#about .link_bnr {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}

#about .link_bnr a {
	margin: 0 15px;
	width: 100%;
	max-width: 525px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
}

#about .link_bnr a:nth-child(1) img {
	width: 100%;
	max-width: 283px;
}

#about .link_bnr a:nth-child(2) img {
	width: 100%;
	max-width: 380px;
}

section#about>.contents>div:first-child{
	display: flex;
	width: 100%;
	justify-content: space-between;
	gap: 4%;
}

section#about>.contents>div:first-child p{
	text-align: left;
	max-width: 48%;
}

section#about>.contents>div:first-child iframe{
	height: auto;
	max-width: 48%;
	aspect-ratio: 16 / 9;
}

@media screen and (max-width: 768px) {
	#about p {
		font-size: 1.7rem;
		text-align: left;
	}

	#about .link_bnr {
		flex-direction: column;
		justify-content: center;
	}

	#about .link_bnr a {
		margin-bottom: 20px;
	}

	#about .link_bnr a:last-child {
		margin-bottom: 0;
	}

	section#about>.contents>div:first-child{
		flex-direction: column;
		align-items: center;
		row-gap: 15px;
	}

	section#about>.contents>div:first-child p{
		max-width: 100%;
	}

	section#about>.contents>div:first-child iframe{
		max-width: 100%;
	}
}

#background .annotation {
	color: #5E5E5E;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.9;
	margin-bottom: 20px;
}

#background .contents_flex {
	display: flex;
	justify-content: space-between;
}

#background .contents_flex .area_left {
	margin-right: 30px;
	max-width: 618px;
	width: 52.821vw;
	min-width: 420px;
}

#background .contents_flex .area_right {
	max-width: 432px;
}

#background dl {
	background-color: #FFF2F2;
	padding: 20px 25px;
	max-width: 297px;
	margin-bottom: 50px;
}

#background dl:first-child {
	margin-right: 20px;
}

#background dl dt {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 10px;
}

#background dl dd {
	line-height: 2;
}

@media screen and (max-width: 768px) {
	#background .contents_flex{
		flex-direction: column;
	}
	#background .contents_flex .area_left{
		margin-right: 0;
		max-width: 100%;
		width: 100%;
		min-width: auto;
	}
	#background .annotation {
		font-size: 1.7rem;
	}
	#background dl {
		margin-bottom: 10px;
		max-width: 100%;
		width: 100%;
	}
}

#review .activities {
	margin-bottom: 60px;
}

#review .activities:last-child {
	margin-bottom: 0;
}

#review .activities picture {
	max-width: calc(33% - 15px);
}

#review .activities ul.review_img_area li.item {
	max-width: calc(33% - 15px);
}

#review p.reivew_caption{
	margin-top: 10px;
	line-height: 2.2rem;
}
#review p.reivew_caption span.name{
	margin-top: 10px;
	font-size: 1.7rem;
	display: block;
	font-weight: bold;
}
#review p.review_read {
	margin-bottom: 20px;
	line-height: 2.2rem;
}
#review p.review_read a{
	color:#2fa4c9;
}
#review ul.review_outline li.item {
	position: relative;
	padding-left: 15px;
}
#review ul.review_outline li.item:before {
	content: "";
	position: absolute;
	top: 1.4rem;
	left: 0;
	width: 7px;
	height: 7px;
	background-color: #1EB9EB;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#review ul.review_outline li.item span.title{
	font-weight: bold;
}
#review a.link_button{
	background: #EBDD1E;
	padding: 10px 15px;
	border-radius: 8px;
	display: block;
	width: 50%;
	margin: 15px auto 10px auto;
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 2.5rem;
}
#review a.link_button span{
	font-weight: normal;
	font-size: 1.4rem;
}


#review .activities picture img {
	width: 100%;
}

#review .activities .contents_flex {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

#review .activities .contents_flex .area_left {
	margin-right: 30px;
	max-width: 618px;
	width: 52.821vw;
}

#review .activities .contents_flex .area_right {
	max-width: 430px;
}

#review .activities .contents_flex:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	#review .activities .contents_flex {
		flex-direction: column;
		justify-content: center;
		margin-bottom: 20px;
	}

	#review .activities .contents_flex .area_left,
	#review .activities .contents_flex .area_right {
		margin-right: 0;
		max-width: 100%;
		width: 100%;
	}

	#review .activities p {
		margin-bottom: 10px;
	}

	#review .activities picture {
		max-width: 100%;
		margin-bottom: 10px;
	}
	#review .activities ul.review_img_area li.item {
			max-width: 100%;
			margin-bottom: 10px;
	}
	#review a.link_button{
		width: 100%;
	}

	#review .activities picture:last-child {
		margin-bottom: 0;
	}
}

#benefit .contents {
	content: counter(benefit);
	counter-increment: benefit 1;
}

#benefit h3 {
	display: flex;
	align-items: center;
	line-height: 1.3;
}

#benefit h3:before {
	content: counter(benefit);

	font-family: 'Lato', sans-serif;
	font-size: 10rem;
	color: #E5E5E5;
	margin-right: 25px;
	line-height: initial;
}

#benefit h3 .contents_flex {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

#benefit h3 .contents_flex span {
	margin: 0;
	font-size: 3.5rem;
	color: #1EB9EB;
}

#benefit h3 .contents_flex small {
	margin: 0;
	font-weight: normal;
	font-size: 1.3rem;
	margin-top: 5px;
}

#benefit h4 {
	font-size: 2.5rem;
	font-weight: bold;
	border: none;
	color: #FF0000;
	margin: auto;
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 243px;
}

#benefit h4:before {
	content: '';
	border-radius: 50%;
	width: 243px;
	height: 243px;
	position: absolute;
	background-color: #FFF2F2;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

#benefit .contents_flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

#benefit .contents_flex .area_left {
	width: 100%;
	max-width: 462px;
}

#benefit .contents_flex .area_right {
	max-width: 618px;
}
#benefit .contents_flex .area_right dl {
	font-size: 1.6rem;
}
#benefit .contents_flex .area_right dl dt {
	color: #FF0000;
	font-weight: bold;
	display: inline;
}

#benefit .contents_flex .area_right dl dd {
	display: inline-block;
}

#benefit .result {
	text-align: center;
}

#benefit .result p {
	position: relative;
	z-index: 1;
	border: 1px solid #B2B2B2;
	padding: 30px 60px;
	font-size: 2.5rem;
	line-height: 1.6;
	background: url(../img/bg_red.svg) no-repeat, url(../img/bg_blue.svg) no-repeat, #fff;
	background-position: left 0 top 0, right 0 bottom 0;
	background-size: 400px 65px, 400px 65px;
	background-repeat: no-repeat;
}

#benefit .result p::after {
	content: '';
	z-index: -1;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	display: block;
	background: #fff;
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	background: #fff;
}

#benefit .result:before {
	content: '';
	display: block;
	background: url(../img/arrow.svg) no-repeat;
	background-size: cover;
	width: 227px;
	height: 135px;
	margin: 15px auto;
}

@media screen and (max-width: 768px) {
	#benefit h3 {
		font-size: 2rem;
		flex-direction: column;
	}
	#benefit h3 .contents_flex span {
		font-size: 2.5rem;
	}
	#benefit h4 {
		font-size: 2rem;
		height: 150px;
	}
	#benefit h4:before{
		width: 150px;
		height: 150px;
	}
	#benefit .result p {
		background-size: 80px 115px, 80px 115px;
		background-position: left 0 top -5vw, right 0 bottom -5vw;
		padding: 15px 25px;
		font-size: 1.7rem;
		text-align: left;
	}
	#benefit .contents_flex{
		flex-direction: column;
	}
	#benefit .contents_flex .area_right dl {
		font-size: 1.5rem;
	}
	#benefit .contents_flex .area_right dl dt{
		display: block;
	}
	#benefit .result:before{
		width: 120px;
		height: 72px;
	}
}
/*
|
| menu
|
*/
#menu .contents_flex {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
#menu .contents_flex .area_left {
	width: 100%;
	max-width: 618px;
	margin-right: 30px;
}
#menu .contents_flex .area_right {
	max-width: 432px;
	width: 100%;
}
#menu .contents_flex .area_right a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: bold;
}
#menu .contents_flex .area_right img{
	max-width: 95px;
	margin-left: 6px;
}

/* link_bnr */
#menu .link_bnr {
	display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
#menu .link_bnr a {
	flex-basis:calc((100% - 20px) / 2);
	max-width:calc((100% - 20px) / 2);
  display: flex;
  justify-content: center;
	align-items: center;
}
#menu .link_bnr a p {
	font-size: 2rem;
	padding-left: 5px;
}
#menu .link_bnr.commingsoon{
	position: relative;
	margin-top: 20px;
	padding: 10px;
}
#menu .link_bnr.commingsoon a:nth-of-type(n + 3) {
	margin-top: 10px;
}
#menu .link_bnr.commingsoon .screen{
	backdrop-filter: blur(0.5px);
	position: absolute;
	top:0;
	left:0;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.3);
  display: grid;
  place-content: center;
}
#menu .link_bnr.commingsoon .screen span{
	font-size: 3.5rem;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	#menu .contents_flex .area_right a{
		font-size: 2rem;
	}
	#menu .contents_flex {
		flex-direction: column;
	}
	#menu .contents_flex .area_left {
		margin-right: 0;
		max-width: 100%;
	}
	#menu .contents_flex .area_right {
		max-width: 100%;
		margin-top: 10px;
	}
	#menu .link_bnr {
		display: inherit;
	}
	#menu .link_bnr a {
		margin-top: 10px;
		max-width: none;
	}
}
/*
|
| company
|
*/
#company h2 {
	display: inline-flex;
}
#company small{
	margin: 0 0 0 10px;
	display: inline-block;
}
#company .link_bnr,
#supporter .link_bnr,
#sponsorship .link_bnr{
	display: flex;
	justify-content: flex-start;
}
#supporter .link_bnr:nth-of-type(n+2){
	margin-top: 30px;
}
#company .link_bnr p,
#supporter .link_bnr p{
	margin: 0 15px;
	width: 100%;
	max-width: 340px;
	height: 75px;
	border-radius: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	border: 4px solid #E9E9E9;
}
#company .link_bnr p a,
#supporter .link_bnr p a{
	padding: 5px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#company .link_bnr a:hover,
#supporter .link_bnr a:hover,
#sponsorship .link_bnr a:hover{
	opacity: 0.5;
}
@media screen and (max-width: 768px) {
	#company .link_bnr,
	#supporter .link_bnr,
	#sponsorship .link_bnr{
		flex-direction: column;
	}
	#company .link_bnr p,
	#supporter .link_bnr p,
	#sponsorship .link_bnr a{
		margin: 0 0 10px;
		max-width: 100%;
	}
	#company .link_bnr p:last-child,
	#supporter .link_bnr p:last-child,
	#sponsorship .link_bnr a:last-child{
		margin-bottom: 0;
	}
	#company .link_bnr p img.nec,
	#supporter .link_bnr p.sph100 a,
	#supporter .link_bnr p.sph100 img{
		height: 100%;
	}
	#supporter .link_bnr:nth-of-type(n+2){
		margin-top: 10px;
	}
}
/*
|
| supporter
|
*/

/* #contact div.contents{
	text-align: center;
}
#contact div.contents h3{
	text-align: left;
}
#contact a{
	font-size: 3rem;
	font-weight: normal;
	text-align: center;
	margin-top: 60px;
  display: inline-flex;
  justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	#contact a{
		max-width: 100%;
		font-size: 2rem;
		margin-top: 0;
		display: flex;
	}
} */

/*
|
| sponsorship
|
*/
/* #sponsorship .link_bnr{
	display: flex;
	align-items: center;
	gap: 20px;
}

#sponsorship .link_bnr p.logo{
max-width: 250px;
border-radius: 0;
display: flex;
border: 4px solid #E9E9E9;
padding: 15px;
}
*/
#sponsorship .link_bnr div{
	margin: 0 15px;
	width: 100%;
	max-width: 340px;
}

#sponsorship .link_bnr div a{
	height: auto;
	border-radius: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	border: 4px solid #E9E9E9;
}

#sponsorship .link_bnr div a{
	padding: 10px;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

#sponsorship .link_bnr a img{
	object-fit: contain;
	height: 120px;
	width: auto;
}

@media screen and (max-width: 768px) {
	/* #sponsorship .link_bnr{
		flex-direction: column;
		gap: 5px;
	} */
	#sponsorship .link_bnr div{
		max-width: 100%;
		margin: 0 0 10px;
	}
	#sponsorship .link_bnr a img{
		height: 80px;
	}
}

footer{
	text-align: center;
	padding: 50px 15px 60px;
}
@media screen and (max-width: 1000px) {
	footer{
		padding: 50px 15px 90px;
	}
}
@media screen and (max-width: 768px) {
	footer{
		padding: 20px 15px 70px;
	}
}



/* add 20231127 */
.mv_title{
	background-image : none;
}
.mv_title .catch_cp{
	background: #000;
	color: #fff;
	padding: 5px;
	font-weight: bold;
	display: inline-block;
	line-height: 1.3;
	width: 100%;
	text-align: center;
}
.mv_title.flex h1.flex_item img{
	display: inline;
}
table.event_table{
	width: 100%;
	text-align: center;
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 40px;
}
table.event_table th{
	background:#FFF2F2;
}
table.event_table th,
table.event_table td {
	border:solid 1px #B2B2B2;
	padding: 10px;
}
@media screen and (min-width: 921px) {
	.mv_title{
		padding: 5px;
		width: 70%;
	}
	.mv_title .catch_cp{
		margin: 0;
	}
	.flex{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
	}
	.mv_title.flex .flex_item:first-child{
		width: 45%;
	}
	.mv_title.flex h1.flex_item{
		text-align: center;
	}
	.mv_title.flex h1.flex_item img{
		width: 90%;
	}
	.mv_title.flex .flex_item:nth-child(2){
		width: 55%;
		padding: 5px 5px 5px 0;
	}
}
@media screen and (max-width: 768px) {
	.mv_title {
		border: 3px solid #000;
	}
	.mv_title.in_section {
		padding: 18px;
	}
}


.floating_btn{
	position: fixed;
	right: 0;
	top: 50%;
	z-index: 102;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.floating_btn ul{
	display: flex;
}

.floating_btn ul li{
	font-size: 2rem;
	font-weight: bold;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.floating_btn ul li.contact{
	background: #f4ed00;
	background: #EBDD1E;
	border: 3px solid #333;
	border-right: 0;
}

.floating_btn ul li a{
	padding: 20px 10px;
	display: flex;
	align-items: center;
	transition: .3s;
}

.floating_btn ul li a:hover{
	opacity: .6;
}

.floating_btn ul li a::before {
	content: '';
	display: inline-block;
	background-image: url(../img/mark.svg);
	background-size: cover;
	width: 14px;
	height: 14px;
	margin-bottom: 8px;
}

@media screen and (max-width: 1000px) {
	.floating_btn{
		top: auto;
		bottom: 0;
		left: 0;
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	.floating_btn ul{
		display: block;
	}
	.floating_btn ul li{
		font-size: initial;
		-ms-writing-mode: initial;
		writing-mode: initial;
	}
	.floating_btn ul li.contact{
		border-left: 0;
		border-bottom: 0;
	}
	.floating_btn ul li a{
		padding: 8px;
		justify-content: center;
	}
	.floating_btn ul li a::before {
		margin-bottom: 0;
		margin-right: 8px;
	}
	nav ul li.contact{
		/* border-top: 1px solid; */
	}
	nav ul li.contact a{
		margin: 0;
	}
}
