@charset "utf-8";
/*=================
　TOPの掲示板
=================*/

:root {
    --top_bulletin__bd: rgb(246,185,168 , 1);
    --top_bulletin__bg: rgb(246,185,168,0.2);
}

.top__bulletin__board__wrap {
  text-align: center;
}

.top__bulletin__box {
  background: var(--top_bulletin__bg);
  padding: 70px;
}

.top__bulletin__board {
  padding: 30px;
  position: relative;
  text-align: left;
  text-align: justify;
  border: 7px double var(--top_bulletin__bd);
}
.top__bulletin__board p {
    margin-bottom: 1em;
}
.top__bulletin__board p:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 559px){
	.top__bulletin__board {
		padding: 20px;
	}
    .top__bulletin__box {
        padding: 70px 30px;
    }
}

.top__bulletin__board__box h2 {
	font-size: 24px;
	margin-bottom: 20px;
	color: hsl(13 101% 71% / 1);
}