@charset "utf-8";
/* Global Styles */
body{
	font-size: calc(10pt + 0.25vw);
	font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
	-webkit-text-size-adjust: 100%;
	margin:0;
	border-top:solid 10px #333;
	background:#6f6f6; /* 背景色 */
}
p {
	font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
}
img {
    max-width: 100%;
    height: auto;
}
h1,h2{
	margin:0;
	padding:0;	
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*Main Content sections */
.mainContent{
	margin:0 auto;
	width: 92%;
	max-width: 960px;
	padding-left: 1%;
	padding-right: 1%;
/*	border-top:solid 10px #000;
	background:#fff;
	display: block;*/
}

.section2{
	padding:4% 4% 4%;
}

.section2 h1 {
  font-size: 35px;
  font-size: 3.5rem;
  position: relative;
  padding: 1.4rem;
  text-align: center;
  color:#000;
}

.section2 h1 span {
  font-size: 20px;
  font-size: 2rem;
  display: block;
}

.section2 h1:before {
  position: absolute;
  bottom: -0px;
  left: calc(50% - 200px);
  width: 400px;
  height: 5px;
  content: '';
  border-radius: 5px;
  background: #333;;

}

/* イベントのロゴ画像 */
.ibent_logo{
	margin:3vh 0;
	text-align: center;
}
.ibent_logo img{
	width: 90%;
}

.warap{
	display: flex; /* 横並び */
	flex-direction: column; /* 縦1列 ---- モバイルファーストにて記載 */
	justify-content: center; /*センター*/
	align-items: center;
}
.warap img{
	width: 90%;
	margin:5px;
}

._center{
	text-align: center;
}

.marker_side {
	font-size: 13px;
  	font-size: 1.3rem;		
	font-weight:900;
	border-left:solid 6px #333;
	border-right:solid 6px #333;
	/*background: linear-gradient(rgba(249,249,42,0.00) 70%, #cccccc 70%);*/
	padding: 0em 0.6em;
}

/* Footer */
.footer-2 {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 25px 10px 10px;
    background-color: #333;
	border-top:solid 5px #666;
}

.footer-2__logo {
    width: 130px;
    margin:0.8em 0;
}

.footer-2__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.5em;
    list-style-type: none;
    margin: 0 0 .5em;
    padding: .5em;
}

.footer-2__sns-icon {
    width: 35px;
    height: 35px;
}

.footer-2__copyright {
    margin: auto;
    color: #ffffffb3;
    font-weight: 200;
    font-size: 0.7em;
}


/* Media query for Mobile devices*/

/* -------------------------------------------- */
/*  ▼ タブレット横持ち/PCの場合に適用するCSS ▼
　　最小で1024pxある場合（＝幅1024px以上なら）　　　　　*/
/* -------------------------------------------- */
@media (min-width: 1440px) { /* 1440px以上の場合 */
	
}
@media only screen and (min-width: 1024px) { /* 1024px以上の場合 */
	.ibent_logo img{
		width: 60%;
	}
	.warap{
		flex-direction: row;  /*横ならび*/		
		align-items: stretch; /*横ならびの高さそろえ*/
	}
	.warap img{
		width: 47%;
	}
	
	

}
@media only screen and (min-width : 285px) and (max-width : 880px) {
/* 最小285px以上 880px以下の場合 */
}

@media screen and (min-width:480px) { 
/*　画面サイズが480pxからはここを読み込む　*/
}
@media screen and (min-width:768px) and ( max-width:1024px) {
/*　画面サイズが768pxから1024pxまではここを読み込む　*/
}
@media screen and (min-width:1024px) {
 /*　画面サイズが1024pxからはここを読み込む　*/
}


