@charset "UTF-8";

html,body {
	height: 100%;
	overflow: visible;
}

/* ========== 同窓会の概要========== */
#main {
	overflow: visible;
}

@font-face {
  font-family: 'calibri';
  src: url('../font/Calibri Bold.ttf') format('truetype');
}

#main h2 {
	padding: 30px 0;
	font-size: 15px;
	text-align: center;
	letter-spacing: 0.08em;
	background-color: #fff;
	background-image: repeating-linear-gradient(90deg, transparent, transparent 6px, rgba(243, 244, 245, 1) 6px, rgba(243, 244, 245, 1) 10px );
}
#main h2 span {
	display: inline-block;
	margin-bottom: 20px;
	padding-bottom: 15px;
	font-size: 40px;
	font-family: 'calibri';
	letter-spacing: 0.08em;
	position: relative;
	border-bottom: 3px solid #000;
}
#main h2 span:before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 14px solid #fff;
  z-index: 2;
}

#main h2 span:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -13px;
  border: 13px solid transparent;
  border-top: 17px solid #000;
  z-index: 1;
}

/* 改行 */
br.pc {display: ;}
br.sp {display: none;}

/* 本文 */
#main #main_txt {
	padding: 20px 0 40px;
	background: #f3f4f5;
}

#main section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row-reverse;
}

/* 情報 */
#main #text {
	width: 100%;
	margin-top: -30px;
}

#main .box {
	margin-top: 30px;
	padding: 20px 30px;
	background: #fff;
	border-radius: 7px;
	position: relative;
}

#main .box .title {
	position: relative;
}
#main .box .title h3 {
	color: #f5ac2e;
	margin-bottom: 15px;
	font-size: 17px;
	letter-spacing: 0.03em;
}

#main .box h4 {
	font-size: 17px;
	letter-spacing: 0.03em;
}

#main .box .detail {
	margin-top: 20px;
}

#main .box .detail .cover {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	
}
#main .box .detail .cover div {
	width: 31%;
	margin-top: 20px;
	position: relative;
}
#main .box .detail .cover div:nth-child(-n+3) {
	margin-top: 0;
}
#main .box .detail .cover div a {
	border: 1px solid #ccc;
	display: block;
}
#main .box .detail .cover div a:hover {
	opacity: 0.7;
}
#main .box .detail .cover div a img {
	width: 100%;
	display: block;
}
#main .box .detail .cover div .icon {
	padding: 0 5px;
	display: inline-block;
	color: #fff;
	background: red;
	text-align: center;
	line-height: 1.5em;
	position: absolute;
	right: 0;
	z-index: 9;
}
#main .box .detail .cover div p {
	margin: 8px 0 0;
	text-align: center;
	line-height: 1.5em;
}


/** タブレット
===================================*/
@media screen and (max-width: 990px){
/*  本文 */
#main .box .title h3 {
	margin-bottom: 10px;
}

#main .box .detail .cover div {
	width: 48%;
	margin-top: 4%;
}
#main .box .detail .cover div:nth-child(-n+3) {
	margin-top: auto;
}
#main .box .detail .cover div:nth-child(-n+2) {
	margin-top: 0;
}

}


/** スマートフォン
===================================*/
@media screen and (max-width: 767px){
#main h2 {
	padding: 17px 0;
	font-size: 110%;
}
#main h2 span {
	margin-bottom: 15px;
	padding-bottom: 10px;
	font-size: 200%;
}
#main h2 span:before {
	bottom: -18px;
	border: 7px solid transparent;
	border-top: 11px solid #fff;
}
#main h2 span:after {
	bottom: -25px;
	border: 10px solid transparent;
	border-top: 14px solid #000;
}

/* 改行 */
br.pc {display: none;}
br.sp {display: block;}

/* 本文 */
#main section {
	display: block;
}

#main #text {
	margin: 0;
}

#main .box {
	margin-top: 25px;
	padding: 15px;
}

#main .box .title {
	padding-bottom: 15px;
}
#main .box .title h3 {
	margin-bottom: 0;
	font-size: 115%;
}

/* スマホのみ */
#main .box .title {
	border-bottom: 1px solid #ccc;
	pointer-events: none;
}

#main .box .detail {
	margin: 20px 0 5px;
	padding: 0;
	border: none;
}

}



