#fvContainer {
  width: 100%;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../news/img/main.png) center bottom /cover no-repeat;
}

.title {
  width: 90%;
  margin: 0 auto;
  font-size: 40px;
  text-align: center;
  position: relative;
  text-shadow: 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff;
  letter-spacing: 2px;
  line-height: 1.3;
}

#fvContainer span {
  font-size: 20px;
  text-shadow: 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff;
}





/* カテゴリー */
.newsContainer {
  width: 90%;
  max-width: 900px;
  margin: 70px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.categoryContainer {
  width: 250px;
  min-width: 200px;
  flex:  0 0 250px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.categoryTitle {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ABA9A9;
  display: flex;
  align-items: center;
}

.categoryTitle img {
  width: 66px;
}

.categoryTitle span {
  font-size: 20px;
  white-space: nowrap;
  margin-left: 20px;
}

.categoryContainer dd {
  margin-bottom: 9px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.categoryContainer dd:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  border-radius: 50%;
}
.categoryContainer dd:nth-of-type(3n)::before {
  background: var(--secondaryColor);
}
.categoryContainer dd:nth-of-type(3n + 1)::before {
  background: var(--primaryColor);
}
.categoryContainer dd:nth-of-type(3n + 2)::before {
  background: var(--thirdColor);
}





/* 本文 */
.newsContentsContainer {
  flex: 1 1 auto;
  margin-left: 6%;
}

.newsTitleContainer {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #E0DFDF;
}

.date {
  font-size: 14px;
  color: #ABA9A9;
}

.newsCategories {
  font-size: 12px;
  margin: 0;
  list-style: none;
  display: flex;
}

.newsCategories li {
  margin: 5px 7px;
  border-radius: 5px;
}
.newsCategories li:first-of-type {
  margin-left: 0;
}

.newsCategories li a {
  display: block;
  min-width: 100px;
  padding: 3px 20px;
  text-align: center;
  color: #fff;
}

.newsTitle {
  font-size: 20px;
  transform: translate(0, 0);
  position: static;
  top: 0;
  left: 0;
  text-align: left;
  margin-left: 0;
  text-shadow: none;
}

.blog {
  margin-top: 20px;
  padding-bottom: 60px;
  border-bottom: 1px solid #E0DFDF;
}

.more {
  width: 173px;
  margin: 50px auto 0;
  position: relative;
  z-index: 5;
}

.more a {
  font-size: 26.6px;
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;
  position: relative;
}

.more span {
  display: block;
  margin-top: -4px;
  margin-right: 10px;
}

.more span::after {
  content: "";
  width: 100%;
  height: 7px;
  background: var(--thirdColor);
  border-radius: 5px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.more img {
  /* flex: 0 0 25px; */
  width: 25px;
}









/* ブロック */
.blog p {
  margin-bottom: 10px;
}

.blog img {
  margin: 20px 0;
  width: 100%;
  vertical-align: bottom;
}

h2, h3 {
  color: var(--primaryColor);
  font-weight: bold;
}
h2 {
  font-size: 25px;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px 0;
}
h3 {
  font-size: 22px;
  letter-spacing: 0.5px;
  padding: 7px 0;
  color: var(--primaryColor);
}
.blog h3::before {
  content: "■";
  color: var(--primaryColor);
  margin-right: 5px;
}
h4, h5, h6 {
  font-weight: bold;
}
h4 {
  font-size: 18px;
  color: var(--primaryColor);
}
.blog h4::before {
  content: "【";
}
.blog h4::after {
  content: "】";
}

#articleContainer table {
  border-collapse: collapse;
  margin: 5px 0;
}

#articleContainer td, #articleContainer th {
  border: 1px solid var(--primaryColor);
  padding: 0px 8px;
}

.blog a {
  color: var(--primaryColor);
  transition: 0.3s;
}
.blog a:hover {
  opacity: 0.7;
}
/* .blog a:visited {
  color: #990099;
} */
.blog ol {
  list-style: decimal;
}
.blog ol li {
  margin-left: 1.2em;
}

/* #articleContainer p {
  margin-bottom: 30px;
} */

/* ブロックボタン */
.wp-block-button {
  transition: 0.3s;
}
.wp-block-button:hover {
  opacity: 0.7;
}
a.wp-block-button__link.wp-element-button {
  color: #fff;
  font-size: 15px;
  background: var(--primaryColor);
  border-radius: 5px;
}




/* #articleContainer {
  padding-bottom: 100px;
} */

/* #fvContainer {
  width: 100%;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  width: 90%;
  margin: 0 auto;
  font-size: 42px;
  line-height: 1.5;
  text-align: center;
  position: relative;
} */
/* h1::after {
  content: "";
  width: 133px;
  height: 6px;
  background: var(--primaryColor);
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
} */







/* .blogContainer {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0;
}

.mapContainer {
  width: 100%;
  height: 500px;
  margin-top: 60px;
}

.mapContainer iframe {
  width: 100%;
  height: 100%;
} */










@media(max-width: 1024px) {
#fvContainer {
  /* width: 100%; */
  height: 400px;
  /* display: flex;
  justify-content: center;
  align-items: center;
  background: url(../news/img/main.png) center bottom /cover no-repeat; */
}

/* .title {
  width: 90%;
  margin: 0 auto;
  font-size: 40px;
  text-align: center;
  position: relative;
  text-shadow: 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff;
  letter-spacing: 2px;
  line-height: 1.3;
}

#fvContainer span {
  font-size: 20px;
  text-shadow: 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff;
} */





/* カテゴリー */
.newsContainer {
  /* width: 90%;
  max-width: 900px; */
  margin: 50px auto 0;
  /* display: flex;
  justify-content: space-between;
  align-items: flex-start; */
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

.categoryContainer {
  /* width: 250px;
  min-width: 200px;
  flex:  0 0 250px;
  position: -webkit-sticky;
  position: sticky;
  top: 0; */
  margin-top: 80px;
}

/* .categoryTitle {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ABA9A9;
  display: flex;
  align-items: center;
}

.categoryTitle img {
  width: 66px;
}

.categoryTitle span {
  font-size: 20px;
  white-space: nowrap;
  margin-left: 20px;
}

.categoryContainer dd {
  margin-bottom: 9px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.categoryContainer dd:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  border-radius: 50%;
}
.categoryContainer dd:first-of-type::before {
  background: var(--secondaryColor);
}
.categoryContainer dd:nth-of-type(2)::before {
  background: var(--primaryColor);
}
.categoryContainer dd:nth-of-type(3)::before {
  background: var(--thirdColor);
} */





/* 本文 */
.newsContentsContainer {
  /* flex: 1 1 auto; */
  margin-left: 0;
}

/* .newsTitleContainer {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #E0DFDF;
}

.date {
  font-size: 14px;
  color: #ABA9A9;
}

.newsCategories {
  font-size: 12px;
  margin: 0;
  list-style: none;
  display: flex;
}

.newsCategories li {
  margin: 5px 7px;
  border-radius: 5px;
}
.newsCategories li:first-of-type {
  margin-left: 0;
}

.newsCategories li a {
  display: block;
  min-width: 100px;
  padding: 3px 20px;
  text-align: center;
  color: #fff;
}

.newsTitle {
  font-size: 20px;
}

.blog {
  margin-top: 20px;
  padding-bottom: 60px;
  border-bottom: 1px solid #E0DFDF;
}

.more {
  width: 173px;
  margin: 50px auto 0;
  position: relative;
  z-index: 5;
}

.more a {
  font-size: 26.6px;
  display: flex;
  align-items: center;
  position: relative;
}

.more span {
  display: block;
  margin-top: -4px;
  margin-right: 10px;
}

.more span::after {
  content: "";
  width: 100%;
  height: 7px;
  background: var(--thirdColor);
  border-radius: 5px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.more img {
  width: 25px;
} */

.bannerContainer {
  margin-top: -100px;
}

}










@media(max-width: 560px) {
#fvContainer {
  /* width: 100%; */
  height: 280px;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  background: url(../news/img/mainSp.png) center bottom /cover no-repeat;
}

.title {
  /* width: 90%;
  margin: 0 auto; */
  font-size: 30px;
  /* text-align: center;
  position: relative; */
  text-shadow: 0 0 11px #fff, 0 0 11px #fff, 0 0 11px #fff, 0 0 11px #fff;
  letter-spacing: 1px;
  /* line-height: 1.3; */
}

/* #fvContainer span {
  font-size: 20px;
  text-shadow: 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff;
} */





/* カテゴリー */
.newsContainer {
  /* width: 90%;
  max-width: 900px; */
  margin: 30px auto 0;
  /* display: flex;
  justify-content: space-between;
  align-items: flex-start; */
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

.categoryContainer {
  /* width: 250px;
  min-width: 200px;
  flex:  0 0 250px;
  position: -webkit-sticky;
  position: sticky;
  top: 0; */
  margin-top: 80px;
}

/* .categoryTitle {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ABA9A9;
  display: flex;
  align-items: center;
}

.categoryTitle img {
  width: 66px;
}

.categoryTitle span {
  font-size: 20px;
  white-space: nowrap;
  margin-left: 20px;
}

.categoryContainer dd {
  margin-bottom: 9px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.categoryContainer dd:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  border-radius: 50%;
}
.categoryContainer dd:first-of-type::before {
  background: var(--secondaryColor);
}
.categoryContainer dd:nth-of-type(2)::before {
  background: var(--primaryColor);
}
.categoryContainer dd:nth-of-type(3)::before {
  background: var(--thirdColor);
} */





/* 本文 */
.newsContentsContainer {
  /* flex: 1 1 auto; */
  margin-left: 0;
}

/* .newsTitleContainer {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #E0DFDF;
}

.date {
  font-size: 14px;
  color: #ABA9A9;
}

.newsCategories {
  font-size: 12px;
  margin: 0;
  list-style: none;
  display: flex;
}

.newsCategories li {
  margin: 5px 7px;
  border-radius: 5px;
}
.newsCategories li:first-of-type {
  margin-left: 0;
}

.newsCategories li a {
  display: block;
  min-width: 100px;
  padding: 3px 20px;
  text-align: center;
  color: #fff;
}*/

.newsTitle {
  /* font-size: 20px; */
  white-space: wrap;
}

/* .blog {
  margin-top: 20px;
  padding-bottom: 60px;
  border-bottom: 1px solid #E0DFDF;
}

.more {
  width: 173px;
  margin: 50px auto 0;
  position: relative;
  z-index: 5;
}

.more a {
  font-size: 26.6px;
  display: flex;
  align-items: center;
  position: relative;
}

.more span {
  display: block;
  margin-top: -4px;
  margin-right: 10px;
}

.more span::after {
  content: "";
  width: 100%;
  height: 7px;
  background: var(--thirdColor);
  border-radius: 5px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.more img {
  width: 25px;
} */

.bannerContainer {
  margin-top: -100px;
}






#articleContainer img {
  margin: 10px 0;
  /* width: 100%;
  vertical-align: bottom; */
}

/* h2, h3 {
  color: #1eb9d0;
  font-weight: bold;
} */
h2 {
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 1.3;
  /* text-align: center; */
  padding: 10px 0;
}
h3 {
  font-size: 18px;
  /* letter-spacing: 0.5px; */
  padding: 5px 0;
}
/* h4, h5, h6 {
  font-weight: bold;
} */
h4 {
  font-size: 16px;
  padding: 3px 0;
}

#articleContainer table {
  /* border-collapse: collapse; */
  margin: 5px 0;
}

#articleContainer td {
  /* border: 1px solid #000; */
  padding: 0px 3px;
}




/* #articleContainer {
  margin-top: 95px;
  padding-bottom: 30px;
} */

#fvContainer {
  /* width: 100%; */
  /* height: 300px; */
  /* background: url(../img/singleMainBack.jpg) center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center; */
}

h1 {
  /* width: 90%;
  margin: 0 auto; */
  font-size: 26px;
  line-height: 1.5;
  /* text-align: center;
  position: relative; */
}
h1::after {
  /* content: ""; */
  width: 100px;
  height: 5px;
  /* background: #1eb9d0;
  position: absolute;
  left: 50%; */
  bottom: -15px;
  /* transform: translateX(-50%); */
}







.blogContainer {
  width: 90%;
  max-width: 1000px;
  margin: 30px auto 0;
}
}