@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;
	background:#eaf9fc; /* 背景色 */
}
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: 2.275%;
	padding-right: 2.275%;
	border-top:solid 12px #088ba0;
	background:#fff;
/*	display: block;*/
}

.section2{
	padding:4% 4% 4%;
}

.section2 h1 {
  font-size: 30px;
  font-size: 3rem;
  position: relative;
  padding: 1.4rem;
  text-align: center;
  color:#000;
}

.section2 h1 span {
  font-size: 17px;
  font-size: 1.7rem;
  display: block;
}

.section2 h1:before {
  position: absolute;
  bottom: -0px;
  left: calc(50% - 100px);
  width: 200px;
  height: 5px;
  content: '';
  border-radius: 5px;
  background: #088ba0;

}

/* イベントのロゴ画像 */
.ibent_logo{
	margin:1.5vh 0;
	text-align: center;
}
.ibent_logo img{
	width:40%;
}

.warap{
	display: flex; /* 横並び */
	flex-direction: column; /* 縦1列 ---- モバイルファーストにて記載 */
	justify-content: center; /*センター*/
	align-items: center;
}
.warap img{
	width: 90%;
	margin:5px;
}


/* Footer */
.footer-2 {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 25px 10px 10px;
    background-color: #088ba0;;
	border-top:solid 5px #27b2c9;
}

.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以上の場合 */
	.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からはここを読み込む　*/
}


