/*
Theme Name: iw
*/
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@600&family=Noto+Sans+JP:wght@300&display=swap");
body {
  max-width: 100%;
  background-color: #FBFBFB;
  overflow-x: hidden;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  scroll-margin-top: 80px;
}

img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

li {
  list-style: none;
}

p {
  font-family: "Noto Sans JP", sans-serif;
  color: black;
  letter-spacing: 1px;
  line-height: 25px;
  font-size: 1rem;
  margin: 0;
  font-weight: bold;
}

h3, h4 {
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 800px) {
  p {
    font-size: 0.8rem;
  }
}
a {
  font-family: "Noto Sans JP", sans-serif;
  color: black;
  letter-spacing: 1px;
  line-height: 25px;
  font-size: 1rem;
  word-wrap: break-word;
}
a:hover {
  text-decoration: none;
}

.sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .sp {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
}
main {
  background-color: #FBFBFB;
}

.section {
  width: 100%;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section .secBox {
  width: 90%;
}
.section .secTitle {
  font-family: "Jost", sans-serif;
  font-style: italic;
}
.section .secTitle h1 {
  letter-spacing: 2px;
}
.section .secTitle p {
  font-weight: bold;
  color: #00d76f;
}
.section.heavyBlue {
  background-color: #008d44;
}
.section.heavyBlue .secTitle h1 {
  color: white;
}
.section.heavyBlue .secTitle p {
  color: #caffcd;
}

@media screen and (max-width: 1000px) {
  .section .secTitle {
    width: 100%;
    text-align: center;
  }
}
.header {
  display: flex;
  padding-right: 0;
  align-items: center;
  width: 100%;
  height: 80px;
  flex-wrap: nowrap;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgb(222, 222, 222);
  box-sizing: border-box;
}
.header nav {
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1050px) {
  .header nav {
    display: none;
  }
}
.header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  position: relative;
  padding: 0;
  box-sizing: border-box;
}
.header nav ul li {
  margin: 0 15px;
}
.header nav ul li a {
  font-size: 1rem;
  color: rgb(70, 70, 70);
  font-weight: bold;
  transition: 0.3s;
}
.header nav ul li a:hover {
  color: #caffcd;
  text-decoration: none;
}
.header nav ul li.headContact {
  position: absolute;
  right: 0;
  margin: 0;
}
.header nav ul li.headContact a {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00d76f;
  color: white;
  height: 80px;
  transition: 0.3s;
}
.header nav ul li.headContact a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.hbg {
  display: none;
  width: 80px;
  height: 80px;
  background-color: #00d76f;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  cursor: pointer;
}
.hbg span {
  display: block;
  background-color: white;
  width: 60%;
  height: 5px;
  margin: 5px 0;
  border-radius: 5px;
  transition: 0.3s;
}
.hbg.open span:first-child {
  transform: rotate(45deg) translateY(14px) translateX(13px);
}
.hbg.open span:last-child {
  transform: rotate(-45deg) translateY(-8px) translateX(8px);
}
.hbg.open span:nth-child(2) {
  opacity: 0;
}

@media screen and (max-width: 1050px) {
  .hbg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.slideMenu {
  opacity: 0;
  z-index: -1;
  background-color: #008d44;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: 0.3s;
}
.slideMenu.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  z-index: 110;
}
.slideMenu ul {
  padding-top: 0px;
  width: 250px;
}
.slideMenu ul li {
  margin: 20px 0;
}
.slideMenu ul li a {
  color: white;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  transition: 0.3s;
}
.slideMenu ul li a:hover {
  color: #caffcd;
  text-decoration: none;
}
.slideMenu ul li.headContact {
  width: 250px;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.slideMenu ul li.headContact a {
  width: 100%;
  text-align: center;
  background-color: #D7D700;
  padding: 20px 40px;
}
.slideMenu ul li.headContact a:hover {
  opacity: 0.9;
  color: white;
  text-decoration: none;
}

.topVisual {
  margin-top: 45px;
  height: 750px;
  overflow: hidden;
}
@media screen and (max-width: 1550px) {
  .topVisual {
    height: 650px;
  }
}
@media screen and (max-width: 1400px) {
  .topVisual {
    height: 600px;
  }
}
@media screen and (max-width: 1200px) {
  .topVisual {
    height: 500px;
  }
}
@media screen and (max-width: 1080px) {
  .topVisual {
    height: 400px;
  }
}
@media screen and (max-width: 900px) {
  .topVisual {
    height: 350px;
  }
}
@media screen and (max-width: 750px) {
  .topVisual {
    margin-top: 20px;
    height: 550px;
  }
}
@media screen and (max-width: 550px) {
  .topVisual {
    margin-top: 35px;
    height: 500px;
  }
}
@media screen and (max-width: 400px) {
  .topVisual {
    margin-top: 35px;
    height: 400px;
  }
}
.topVisual img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 1900px) {
  .topVisual img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 1080px) {
  .topVisual img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media screen and (max-width: 750px) {
  .topVisual img {
    -o-object-fit: fill;
    object-fit: fill;
  }
}
@media screen and (max-width: 400px) {
  .topVisual img {
    -o-object-fit: fill;
    object-fit: fill;
  }
}

.latest {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  height: 80px;
  width: 100%;
  padding: 0 30px;
}
@media screen and (max-width: 1200px) {
  .latest {
    padding: 0 10px;
  }
}
.latest .secTitle {
  width: 15%;
}
@media screen and (max-width: 1200px) {
  .latest .secTitle {
    width: 10%;
  }
}
.latest .secTitle h2 {
  color: #D7D700;
  font-family: "Jost", sans-serif;
  font-style: italic;
}
@media screen and (max-width: 1200px) {
  .latest .secTitle h2 {
    font-size: 1.1rem;
  }
}
.latest .latestTxt {
  display: flex;
  align-items: center;
  width: 85%;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  .latest .latestTxt {
    width: 90%;
  }
}
.latest .latestTxt:hover {
  text-decoration: none;
  opacity: 0.7;
}
.latest .latestTxt .latestDate {
  margin: 0 30px;
}
@media screen and (max-width: 1200px) {
  .latest .latestTxt .latestDate {
    margin: 0 20px;
  }
}
.latest .latestTxt .latestDate p {
  color: rgb(198, 198, 198);
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .latest .latestTxt .latestDate p {
    font-size: 0.8rem;
  }
}
.latest .latestTxt .latestPostTitle h4 {
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-decoration: underline;
}
@media screen and (max-width: 1200px) {
  .latest .latestTxt .latestPostTitle h4 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  .latest .latestTxt .latestPostTitle h4 {
    font-size: 0.9rem;
    padding-right: 30px;
  }
}
.latest .latestTxt span {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .latest .latestTxt span {
    right: 1%;
  }
}
@media screen and (max-width: 1000px) {
  .latest .latestTxt span {
    right: 0;
  }
}
.latest .latestTxt span i {
  font-size: 2rem;
  color: #D7D700;
}
@media screen and (max-width: 1200px) {
  .latest .latestTxt span i {
    font-size: 1.3rem;
  }
}

.detailBtn a {
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00d76f;
  border-radius: 15px;
  box-shadow: 0 5px 10px 1px rgb(62, 60, 69);
  position: relative;
  transition: 0.6s;
}
.detailBtn a:hover {
  box-shadow: 0 3px 20px 1px rgba(85, 85, 85, 0.174);
  transform: translateY(2px);
  text-decoration: none;
  opacity: 0.9;
}
.detailBtn a p {
  color: white;
  font-weight: bold;
  margin: 0;
  letter-spacing: 1px;
}
.detailBtn a i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  right: 10px;
}
.detailBtn.lightBtn a {
  background-color: #D7D700;
  box-shadow: 0 3px 10px 1px rgb(75, 75, 75);
}
.detailBtn.lightBtn a p, .detailBtn.lightBtn a i {
  color: white;
}

.about .secBox {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .about .secBox {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.about .secBox .secTitle {
  width: 25%;
}
@media screen and (max-width: 1000px) {
  .about .secBox .secTitle {
    width: 100%;
    text-align: center;
  }
}
.about .secBox .secContent {
  width: min(800px, 75%);
}
@media screen and (max-width: 1000px) {
  .about .secBox .secContent {
    width: 90%;
    margin-top: 30px;
  }
}
.about .secBox .secContent p {
  letter-spacing: 1px;
  line-height: 30px;
}
.about .secBox .secContent .detailBtn {
  margin-top: 30px;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 1000px) {
  .about .secBox .secContent .detailBtn {
    justify-content: center;
  }
}
.about .outline {
  width: min(800px, 90%);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 50px 0;
  margin-top: 50px;
  border-radius: 40px;
  box-shadow: 0 0 20px 1px rgb(245, 245, 245);
}
@media screen and (max-width: 1000px) {
  .about .outline {
    padding-bottom: 10px;
  }
}
.about .outline .outlineTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  font-family: "Jost", sans-serif;
}
.about .outline .outlineTitle h2 {
  font-weight: bold;
  color: #008d44;
  letter-spacing: 1px;
}
.about .outline .outlineContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
}
.about .outline .outlineContent dl {
  display: flex;
  align-items: center;
  width: min(700px, 90%);
  border-bottom: 1px solid #00d76f;
  font-family: "Noto Sans JP", sans-serif;
}
.about .outline .outlineContent .outlineImg {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-top: 20px;
}
.about .outline .outlineContent .outlineImg img {
  width: 45%;
  margin: 10px 1%;
}
@media screen and (max-width: 550px) {
  .about .outline .outlineContent .outlineImg img {
    width: 90%;
  }
}
@media screen and (max-width: 1000px) {
  .about .outline .outlineContent dl {
    flex-direction: column;
    align-items: start;
  }
}
.about .outline .outlineContent dl:last-child {
  border: none;
}
.about .outline .outlineContent dl dt {
  width: 20%;
  padding: 10px;
  padding-top: 0;
  display: flex;
  color: #008d44;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .about .outline .outlineContent dl dt {
    width: 100%;
    justify-content: start;
  }
}
.about .outline .outlineContent dl dd {
  width: 80%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: start;
  font-size: 0.9rem;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .about .outline .outlineContent dl dd {
    width: 100%;
    justify-content: start;
  }
}
.about .outline .outlineContent dl dd a {
  font-size: 1.1rem;
  display: inline-block;
  margin-right: 10px;
  word-wrap: break-word;
}
@media screen and (max-width: 550px) {
  .about .outline .outlineContent dl dd a.siteUrl {
    font-size: 0.6rem;
  }
}

.program .secBox {
  margin-bottom: 70px;
}
.program .detailBtn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.program .detailBtn a p {
  letter-spacing: 2px;
}

.dayTagsBox {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.dayTagsBox a {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  background-color: #00d76f;
  border-radius: 10px;
  margin: 0 12px;
  color: white;
  font-weight: bold;
  border: white 2px solid;
}
@media screen and (max-width: 1000px) {
  .dayTagsBox a {
    margin: 0 7px;
    padding: 5px 15px;
    font-size: 0.8rem;
  }
}
.dayTagsBox a:hover {
  transition: 0.3s;
  text-decoration: none;
  color: white;
  opacity: 0.7;
}

.timetableBox {
  width: 100%;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .timetableBox {
    margin-top: 50px;
  }
}
.timetableBox::before {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #caffcd;
}
.timetableBox .weekTitle {
  width: 100%;
  text-align: start;
  margin: 40px 0;
}
.timetableBox .weekTitle h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-style: italic;
  font-weight: bold;
  color: white;
  position: relative;
  padding-bottom: 30px;
  padding-left: 50px;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .timetableBox .weekTitle h3 {
    font-size: 1.3rem;
    padding-bottom: 20px;
    padding-left: 30px;
  }
}
.timetableBox .weekTitle h3::before {
  position: absolute;
  content: "";
  display: block;
  width: 105%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #caffcd;
}
.timetableBox .weekTitle.blueTitle h3 {
  color: #008d44;
}

.dayBox {
  width: 90%;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .dayBox {
    width: 95%;
  }
}
.dayBox .programList {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dayBox .programList li {
  border: none;
  width: 100%;
}
.dayBox .programList li .programContent {
  display: flex;
  align-items: center;
  margin: 15px 0;
  color: black;
  padding: 20px 10px;
  border-radius: 20px;
  background-color: white;
}
.dayBox .programList li .programContent .programTime {
  margin: 0;
  width: 20%;
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 0;
  padding-right: 10px;
  padding-top: 0;
  color: #bdc400;
}
@media screen and (max-width: 1000px) {
  .dayBox .programList li .programContent .programTime {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 600px) {
  .dayBox .programList li .programContent .programTime {
    font-size: 0.6rem;
    line-height: 15px;
    padding-right: 10px;
  }
}
.dayBox .programList li .programContent .programTitle {
  font-weight: bold;
  width: 80%;
  padding-right: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .dayBox .programList li .programContent .programTitle {
    font-size: 0.9rem;
  }
}
.dayBox .programList li:last-child {
  border: none;
}

.news .secBox .secContent {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news .secBox .secContent .newsList {
  width: min(800px, 90%);
}
.news .secBox .secContent .newsList li {
  border-bottom: 1px solid #00d76f;
  padding: 20px 10px;
  padding-right: 0;
  display: flex;
  align-items: center;
}
.news .secBox .secContent .newsList li h3, .news .secBox .secContent .newsList li h4 {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 10px;
}
.news .secBox .secContent .newsList li p {
  margin: 0;
  margin-right: 80px;
  font-size: 0.8rem;
}
@media screen and (max-width: 1000px) {
  .news .secBox .secContent .newsList li p {
    font-size: 0.6rem;
  }
}
.news .secBox .secContent .newsList li .newsTitle {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 1px;
  line-height: 30px;
}
@media screen and (max-width: 1000px) {
  .news .secBox .secContent .newsList li .newsTitle {
    font-size: 0.9rem;
    line-height: 25px;
  }
}
.news .secBox .secContent .newsList li:last-of-type {
  border: none;
}
.news .secBox .secContent .newsList li:first-child p {
  position: relative;
}
.news .secBox .secContent .newsList li:first-child p::before {
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: auto;
  right: -70px;
  content: "NEW";
  font-size: 0.6rem;
  background-color: #F21464;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 0 4px;
  padding-bottom: 1px;
  height: 18px;
}
.news .secBox .secContent .newsList .detailBtn {
  width: 100%;
  display: flex;
  justify-content: end;
  margin-top: 40px;
}
.news .secBox .secContent .newsList .detailBtn a {
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00d76f;
  border-radius: 15px;
  box-shadow: 0 5px 10px 1px rgb(169, 169, 169);
  position: relative;
  transition: 0.6s;
}
.news .secBox .secContent .newsList .detailBtn a:hover {
  box-shadow: 0 3px 20px 1px rgb(195, 195, 195);
  transform: translateY(2px);
  text-decoration: none;
  opacity: 0.9;
}

.sponser .detailBtn {
  margin-top: 50px;
}

.sponserBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}
@media screen and (max-width: 1000px) {
  .sponserBox {
    margin-top: 20px;
  }
}
.sponserBox h3 {
  font-size: 1.5em;
  font-weight: bold;
  font-family: "Jost", sans-serif;
  color: #008d44;
  letter-spacing: 1px;
  text-align: left;
  width: 100%;
  margin-bottom: 30px;
  padding-left: 30px;
}
.sponserBox .sponserList {
  background-color: white;
  width: 85%;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}
.sponserBox .sponserList li {
  width: 28%;
  margin: 20px 2%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .sponserBox .sponserList li {
    width: 45%;
  }
}
@media screen and (max-width: 500px) {
  .sponserBox .sponserList li {
    margin: 20px 0;
    width: 90%;
  }
}
.sponserBox .sponserList li a {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  text-decoration: none;
}
.sponserBox .sponserList li a:hover {
  opacity: 0.7;
}
.sponserBox .sponserList li a img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
}

.page_section {
  width: 100%;
  padding: 80px 0;
  padding-top: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page_section.blueSection {
  background-color: #008d44;
}
.page_section .pageBox {
  width: 90%;
}
.page_section .pageBox .askTheSpeaker {
  margin-top: 40px;
}
.page_section .pageBox .askTheSpeaker h3 {
  color: #D7D700;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .page_section .pageBox .askTheSpeaker h3 {
    font-size: 1.2rem;
  }
}
.page_section .pageBox .contactContent h2 {
  color: #008d44;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 10px 0;
}
@media screen and (max-width: 1000px) {
  .page_section .pageBox .contactContent h2 {
    font-size: 1.2rem;
  }
}
.page_section .pageBox .contactContent h3 {
  color: #00d76f;
  font-weight: bold;
  font-size: 1.3rem;
  margin: 10px 0;
}
@media screen and (max-width: 1000px) {
  .page_section .pageBox .contactContent h3 {
    font-size: 1.1rem;
  }
}
.page_section .pageBox .pageContent {
  position: relative;
  margin: 70px 0;
}
.page_section .pageBox .pageContent::before {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #caffcd;
}
.page_section .pageBox .pageContent p {
  padding: 20px;
  width: 90%;
  font-size: 0.9rem;
}
@media screen and (max-width: 1000px) {
  .page_section .pageBox .pageContent p {
    width: 100%;
  }
}
.page_section .pageBox .pageContent p a {
  font-weight: bold;
  text-decoration: underline;
  transition: 0.3s;
}
.page_section .pageBox .pageContent p a:hover {
  opacity: 0.7;
}
.page_section .pageBox .pageContent .aboutImg {
  display: flex;
  padding-left: 30px;
  padding-bottom: 80px;
}
@media screen and (max-width: 550px) {
  .page_section .pageBox .pageContent .aboutImg {
    justify-content: center;
    padding-left: 0px;
  }
}
.page_section .pageBox .pageContent .aboutImg img {
  width: 30%;
}
@media screen and (max-width: 1000px) {
  .page_section .pageBox .pageContent .aboutImg img {
    width: 70%;
  }
}
@media screen and (max-width: 550px) {
  .page_section .pageBox .pageContent .aboutImg img {
    width: 90%;
  }
}
.page_section .pageTitle {
  font-family: "Jost", sans-serif;
  font-style: italic;
}
.page_section.blueSection .pageBox .pageTitle {
  color: white;
}
.page_section.blueSection .pageBox .pageTitle p {
  color: white;
}
.page_section.blueSection .pageBox p {
  color: white;
}
.page_section .pageTitle h1 {
  letter-spacing: 2px;
}
@media screen and (max-width: 600px) {
  .page_section .pageTitle h1 {
    font-size: 2rem;
  }
}
.page_section .pageTitle p {
  font-weight: bold;
  color: #00d76f;
}
@media screen and (max-width: 600px) {
  .page_section .pageTitle p {
    font-size: 0.9rem;
  }
}
.page_section .pageSubTitle h2 {
  font-family: "Jost", sans-serif;
  color: #008d44;
  position: relative;
  display: inline-block;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 30px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1000px) {
  .page_section .pageSubTitle h2 {
    font-size: 1.1rem;
    padding: 20px;
  }
}
.page_section .pageSubTitle h2 span {
  font-size: 0.9rem;
}
.page_section .pageSubTitle h2::before {
  position: absolute;
  content: "";
  display: block;
  width: 105%;
  height: 1px;
  left: 0;
  bottom: 0px;
  background-color: #caffcd;
}

.topContactBtnArea {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}
.topContactBtnArea .topContactBtn {
  margin: 15px;
}
@media screen and (max-width: 1000px) {
  .topContactBtnArea .topContactBtn {
    margin: 5px;
  }
}
.topContactBtnArea .topContactBtn a {
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00d76f;
  border-radius: 15px;
  box-shadow: 0 5px 10px 1px rgb(91, 91, 95);
  position: relative;
  transition: 0.6s;
}
@media screen and (max-width: 1000px) {
  .topContactBtnArea .topContactBtn a {
    width: 150px;
  }
}
.topContactBtnArea .topContactBtn a i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  right: 10px;
}
.topContactBtnArea .topContactBtn a:hover {
  box-shadow: none;
  transform: translateY(2px);
  text-decoration: none;
  opacity: 0.9;
}
.topContactBtnArea .topContactBtn a p {
  color: white;
  font-weight: bold;
  margin: 0;
  letter-spacing: 1px;
}
.topContactBtnArea .topContactBtn.lightBtn a {
  background-color: #D7D700;
}
.topContactBtnArea .topContactBtn.lightBtn a p {
  color: white;
}

.sponserBox {
  width: 100%;
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .sponserBox {
    margin-top: 20px;
  }
}
.sponserBox::before {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #caffcd;
}
.sponserBox .sponserTitle {
  width: 100%;
  text-align: start;
  margin: 40px 0;
}
.sponserBox .sponserTitle h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-style: italic;
  font-weight: bold;
  color: white;
  position: relative;
  padding-bottom: 30px;
  padding-left: 50px;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .sponserBox .sponserTitle h3 {
    font-size: 1.3rem;
    padding-bottom: 20px;
    padding-left: 30px;
  }
}
.sponserBox .sponserTitle h3::before {
  position: absolute;
  content: "";
  display: block;
  width: 105%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #caffcd;
}
.sponserBox .sponserTitle.blueTitle h3 {
  color: #008d44;
}

.sponserImgTitle {
  font-weight: bold;
  color: #00d76f;
}

.sponserImg {
  display: flex;
  justify-content: center;
}

.news_pageContent {
  margin-top: 50px;
}
.news_pageContent .page_newsList li {
  padding: 30px;
  border-bottom: 1px solid #caffcd;
}
@media screen and (max-width: 1000px) {
  .news_pageContent .page_newsList li a {
    font-size: 0.8rem;
  }
}
.news_pageContent .page_newsList li .newsTime {
  letter-spacing: 1px;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .news_pageContent .page_newsList li .newsTime {
    font-size: 0.7rem;
  }
}
.news_pageContent .page_newsList li .newsTitle {
  font-family: "Jost", sans-serif;
  font-weight: bold;
  color: #008d44;
  margin: 20px 0;
  font-size: 2.2rem;
}
@media screen and (max-width: 1000px) {
  .news_pageContent .page_newsList li .newsTitle {
    font-size: 1.2rem;
    margin: 14px 0;
  }
}
@media screen and (max-width: 800px) {
  .news_pageContent .page_newsList li .newsTitle {
    font-size: 2rem;
  }
}
.news_pageContent .page_newsList li .newsContent {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1rem;
}
@media screen and (max-width: 800px) {
  .news_pageContent .page_newsList li .newsContent {
    font-size: 0.8rem;
  }
}
.news_pageContent .page_newsList li .newsContent h3 {
  font-family: "Noto Sans JP", sans-serif;
  margin: 15px 0;
  font-weight: bold;
  font-size: 1.5rem;
  color: #008d44;
}
@media screen and (max-width: 800px) {
  .news_pageContent .page_newsList li .newsContent h3 {
    font-size: 1.1rem;
    margin: 10px 0;
  }
}
.news_pageContent .page_newsList li .newsContent h4 {
  font-family: "Noto Sans JP", sans-serif;
  margin: 10px 0;
  font-weight: bold;
  font-size: 1.2rem;
  color: #008d44;
}
@media screen and (max-width: 800px) {
  .news_pageContent .page_newsList li .newsContent h4 {
    margin: 8px 0;
    font-size: 1rem;
  }
}
.news_pageContent .page_newsList li:last-child {
  border: none;
}
.news_pageContent .page_newsList li:first-child .newsTime {
  position: relative;
}
.news_pageContent .page_newsList li:first-child .newsTime::before {
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: auto;
  right: -70px;
  bottom: 0;
  content: "NEW";
  font-size: 0.6rem;
  background-color: #F21464;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 0 4px;
  padding-bottom: 1px;
  height: 18px;
  width: 35px;
}
@media screen and (max-width: 1000px) {
  .news_pageContent .page_newsList li:first-child .newsTime::before {
    height: 17px;
    width: 33px;
    padding-top: 1px;
  }
}

.operationList {
  padding: 2%;
  display: flex;
  flex-wrap: wrap;
}
.operationList li {
  width: 30%;
  margin: 1%;
  padding: 20px 15px;
  padding-bottom: 0;
  box-sizing: border-box;
  box-shadow: 0 5px 10px 1px rgb(207, 207, 207);
  border-radius: 20px;
  background-color: white;
}
@media screen and (max-width: 1000px) {
  .operationList li {
    width: 45%;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 800px) {
  .operationList li {
    width: 100%;
    padding-bottom: 0px;
  }
}
.operationList li .operationContent {
  padding-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .operationList li .operationContent {
    padding-bottom: 13px;
  }
}
.operationList li .operationContent .operationImgTitle {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Jost", sans-serif;
  color: #008d44;
  font-family: "Noto Sans JP", sans-serif;
}
.operationList li .operationContent .operationImg {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 80px;
}
@media screen and (max-width: 1000px) {
  .operationList li .operationContent .operationImg {
    margin-bottom: -40px;
  }
}
.operationList li .operationContent .operationImg a {
  width: 80%;
  height: 100%;
}
.operationList li .operationContent .operationImg a img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
}
.operationList li .operationContent .operationDesc {
  padding: 0;
  width: 100%;
}
.operationList li .operationContent .operationDesc p {
  margin: 0;
  width: 100%;
  font-size: 0.8rem;
}
@media screen and (max-width: 1000px) {
  .operationList li .operationContent .operationDesc p {
    font-size: 0.7rem;
  }
}

.operationContentMain {
  padding: 40px;
  display: inline-block;
}
.operationContentMain .operationImgTitleMain {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Jost", sans-serif;
  color: #008d44;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
}
.operationContentMain .operationImgMain {
  margin-top: 40px;
  width: 200px;
  height: 120px;
}
@media screen and (max-width: 1000px) {
  .operationContentMain .operationImgMain {
    width: 100%;
  }
}
.operationContentMain .operationImgMain a {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.operationContentMain .operationImgMain a:hover {
  opacity: 0.7;
}
.operationContentMain .operationImgMain a img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.operationContentMain .operationDescMain {
  padding: 0;
  width: 100%;
}
.operationContentMain .operationDescMain p {
  margin: 0;
  width: 100%;
  font-size: 0.8rem;
}

.articleList {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.articleList li {
  width: 80%;
  border-bottom: 1px solid #caffcd;
  padding: 20px;
}
@media screen and (max-width: 1000px) {
  .articleList li {
    width: 95%;
  }
}
.articleList li .articleContent {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .articleList li .articleContent {
    flex-direction: column;
    align-items: start;
  }
}
.articleList li .articleContent .articleDate {
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 800px) {
  .articleList li .articleContent .articleDate {
    font-size: 0.7rem;
  }
}
.articleList li .articleContent .articleTitle {
  margin: 0 15px;
  margin-left: 80px;
}
@media screen and (max-width: 1000px) {
  .articleList li .articleContent .articleTitle {
    margin-left: 0px;
    margin-top: 10px;
  }
}
.articleList li .articleContent .articleTitle a {
  font-weight: bold;
  color: #008d44;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 800px) {
  .articleList li .articleContent .articleTitle a {
    font-size: 0.9rem;
    line-height: 20px;
  }
}
.articleList li .articleContent .articleTitle .articleDesc p {
  margin: 0;
}
@media screen and (max-width: 800px) {
  .articleList li .articleContent .articleTitle .articleDesc p {
    font-size: 0.7rem;
  }
}
.articleList li:last-child {
  border: none;
}
.articleList li:first-child .articleDate {
  position: relative;
}
.articleList li:first-child .articleDate::before {
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: auto;
  right: -70px;
  content: "NEW";
  font-size: 0.6rem;
  background-color: #F21464;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 0 4px;
  padding-bottom: 1px;
  height: 18px;
}

.otherBox {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .otherBox {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.otherBox a {
  width: 30%;
  border: 2px solid #00d76f;
  transition: 0.3s;
  margin: 0 1%;
}
@media screen and (max-width: 800px) {
  .otherBox a {
    width: 90%;
    display: block;
    margin: 8px 0;
  }
}
.otherBox a:hover {
  opacity: 0.7;
}

.currentCat {
  margin-top: 50px;
  text-align: center;
}
.currentCat h1 {
  font-size: 3.8rem;
  letter-spacing: 3px;
  font-family: "Jost", sans-serif;
  font-weight: bolder;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .currentCat h1 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 800px) {
  .currentCat h1 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 600px) {
  .currentCat {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
}

.catPostList .catProgramContent .noPost {
  width: 90%;
  text-align: start;
  color: rgb(212, 212, 212);
  padding-left: 20px;
}

.single {
  padding: 40px 0;
  padding-top: 0px;
}
.single .singleBox {
  border: 2px solid white;
  background-color: white;
}
.single .singleBox .singleTitle {
  background-color: #bdc400;
  padding: 15px;
  padding-top: 25px;
}
@media screen and (max-width: 1000px) {
  .single .singleBox .singleTitle {
    padding: 15px;
    padding-top: 25px;
  }
}
.single .singleBox h1 {
  color: white;
  font-family: "Jost", sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 1000px) {
  .single .singleBox h1 {
    font-size: 1.1rem;
  }
}
.single .singleInner {
  padding: 20px;
}
.single .singleInner .singleList > li {
  border-bottom: 1px solid #00d76f;
  padding: 20px;
}
@media screen and (max-width: 1000px) {
  .single .singleInner .singleList > li {
    padding: 15px;
  }
}
.single .singleInner .singleList > li:last-child {
  border: none;
}
.single .singleInner .singleList > li a:hover {
  text-decoration: none;
  transition: 0.3s;
  opacity: 0.7;
}
.single .singleInner .singleList > li p {
  color: black;
  font-size: 0.9rem;
}
@media screen and (max-width: 1000px) {
  .single .singleInner .singleList > li p {
    font-size: 0.7rem;
  }
}
.single .singleInner .singleList li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: black;
  font-size: 0.9rem;
}
@media screen and (max-width: 1000px) {
  .single .singleInner .singleList li {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 800px) {
  .single .singleInner .singleList li iframe {
    height: 250px;
    width: 100%;
  }
}
.single .singleInner .singleList li h3 {
  font-family: "Jost", sans-serif;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 30px;
  color: blue;
  font-size: 1.2rem;
  margin-left: -10px;
}
@media screen and (max-width: 1000px) {
  .single .singleInner .singleList li h3 {
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 1rem;
  }
}
.single .singleInner .singleList li h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin: 10px 0;
  color: rgb(0, 0, 148);
  font-size: 1.1rem;
  margin-left: -10px;
}
@media screen and (max-width: 1000px) {
  .single .singleInner .singleList li h4 {
    font-size: 0.9rem;
    margin: 6px 0;
  }
}
.single .singleInner .singleList li h5 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin: 5px 0;
  margin-top: 30px;
  color: rgb(0, 72, 255);
  font-size: 1rem;
  margin-left: -10px;
}
@media screen and (max-width: 1000px) {
  .single .singleInner .singleList li h5 {
    font-size: 0.8rem;
    margin: 3px 0;
    margin-top: 20px;
  }
}
.single .singleInner .singleList .singleListTitle {
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #008d44;
  font-weight: bold;
  margin-bottom: 10px;
  margin-left: -20px;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 1000px) {
  .single .singleInner .singleList .singleListTitle {
    font-size: 1.1rem;
  }
}
.single .singleInner .singleList .singleImg {
  display: flex;
  flex-wrap: wrap;
}
.single .singleInner .singleList .singleImg img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 3px;
}
.single .singleInner .singleList ul li {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  margin-left: 20px;
  font-weight: bold;
  color: black;
  margin-top: 5px;
}
.single .singleInner .singleList ul li::before {
  position: absolute;
  content: "";
  display: block;
  left: -10px;
  top: 10px;
  width: 5px;
  height: 5px;
  background-color: rgb(127, 127, 127);
  border-radius: 50%;
}
@media screen and (max-width: 1000px) {
  .single .singleInner .singleList ul li::before {
    top: 8px;
  }
}

.singleBtnArea {
  margin-top: 50px;
}
.singleBtnArea .topContactBtnArea {
  display: flex;
  justify-content: center;
  width: 100%;
}
.singleBtnArea .topContactBtnArea .topContactBtn {
  margin: 15px;
}
@media screen and (max-width: 1000px) {
  .singleBtnArea .topContactBtnArea .topContactBtn {
    margin: 5px;
  }
}
.singleBtnArea .topContactBtnArea .topContactBtn a {
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00d76f;
  border-radius: 15px;
  box-shadow: 0 5px 10px 1px rgb(169, 169, 169);
  position: relative;
  transition: 0.6s;
}
@media screen and (max-width: 1000px) {
  .singleBtnArea .topContactBtnArea .topContactBtn a {
    width: 150px;
  }
}
.singleBtnArea .topContactBtnArea .topContactBtn a:hover {
  box-shadow: 0 3px 20px 1px rgb(195, 195, 195);
  transform: translateY(2px);
  text-decoration: none;
  opacity: 0.9;
}
.singleBtnArea .topContactBtnArea .topContactBtn a p {
  color: white;
  font-weight: bold;
  margin: 0;
  letter-spacing: 1px;
}
.singleBtnArea .topContactBtnArea .topContactBtn.lightBtn a {
  background-color: #D7D700;
}
.singleBtnArea .topContactBtnArea .topContactBtn.lightBtn a p {
  color: white;
}

.wp-block-group__inner-container {
  border: 2px solid #008d44;
  margin: 30px 0;
}
.wp-block-group__inner-container h2 {
  background-color: #008d44;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  padding: 10px;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.wp-block-group__inner-container h3 {
  color: #00d76f;
  font-family: "Noto Sans JP", sans-serif;
  padding: 10px;
  font-weight: bold;
  font-size: 1.1rem;
}
.wp-block-group__inner-container p {
  padding: 10px;
}
.wp-block-group__inner-container ul {
  padding: 15px;
  padding-left: 30px;
}
.wp-block-group__inner-container ul li {
  position: relative;
  color: black;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.wp-block-group__inner-container ul li::before {
  position: absolute;
  content: "";
  display: block;
  top: 10px;
  left: -15px;
  width: 5px;
  height: 5px;
  background-color: rgb(69, 69, 69);
  border-radius: 50%;
}
.wp-block-group__inner-container .wp-block-table {
  padding: 10px;
}
.wp-block-group__inner-container img {
  width: 150px;
}

.eventFin {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.eventFin p {
  color: red;
  border: solid 2px red;
  border-radius: 10px;
  padding: 10px 30px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .eventFin p {
    font-size: 0.8rem;
    padding: 5px 20px;
  }
}

.venueH2 {
  margin-top: 40px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 700px) {
  .venueH2 {
    font-size: 1.5rem;
  }
}

.venueH3 {
  color: #00d76f;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.2rem;
}
.venueH3 a {
  color: #00d76f;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .venueH3 a {
    font-size: 1.4rem;
  }
}

.venueImgBox {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.venueImgBox img {
  margin: 15px;
  width: 30%;
}
@media screen and (max-width: 700px) {
  .venueImgBox img {
    width: 90%;
  }
}

.venueImgBox2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin-bottom: 50px;
}
.venueImgBox2 img {
  width: 900px;
}
@media screen and (max-width: 900px) {
  .venueImgBox2 img {
    width: 90%;
  }
}

/* anke-to */
.enqTitle {
  width: 100%;
  padding: 10px;
  background-color: #008d44;
  text-align: center;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin-top: 20px;
}

@media screen and (max-width: 700px) {
  .enqTitle {
    font-size: 1.1rem;
  }
}
.enqImgBox {
  display: flex;
  justify-content: center;
  width: 100%;
}
.enqImgBox img {
  margin: 10px;
  width: 70%;
}

@media screen and (max-width: 700px) {
  .enqImgBox img {
    width: 90%;
  }
}
/* annke-to */
.footerBox {
  background-color: #5a5252;
  position: relative;
  padding-bottom: 40px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  .footerBox {
    padding-top: 40px;
  }
}
@media screen and (max-width: 420px) {
  .footerBox {
    padding-top: 100px;
  }
}

.footLogo {
  width: 300px;
  padding: 20px;
}
@media screen and (max-width: 700px) {
  .footLogo {
    width: 250px;
    padding-left: 10px;
  }
}

.footContact {
  position: absolute;
  top: 20px;
  right: 20px;
}
.footContact a {
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D7D700;
  color: white;
  height: 60px;
  transition: 0.3s;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 20px;
}
@media screen and (max-width: 700px) {
  .footContact a {
    padding: 0 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
}
.footContact a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.footJPNIC {
  position: absolute;
  bottom: 3px;
  right: 10px;
}
@media screen and (max-width: 700px) {
  .footJPNIC {
    bottom: 22px;
    right: 40px;
    width: 50px;
  }
}
.footJPNIC a {
  display: block;
  width: 80px;
}

.rights {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.rights p {
  color: white;
  white-space: nowrap;
  font-size: 0.8rem;
}
@media screen and (max-width: 700px) {
  .rights p {
    font-size: 0.6rem;
  }
}
.rights p a {
  font-size: 0.8rem;
  color: #caffcd;
}
@media screen and (max-width: 700px) {
  .rights p a {
    font-size: 0.6rem;
  }
}

.footFlex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px 30px;
}
@media screen and (max-width: 700px) {
  .footFlex {
    padding: 0px 30px;
  }
}
@media screen and (max-width: 700px) {
  .footFlex .footMenu {
    padding: 10px;
  }
}
.footFlex .footMenu h5 {
  color: white;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
.footFlex .footMenu {
  padding: 25px;
}
.footFlex .footMenu .footWeeks a {
  display: block;
}
.footFlex .footMenu ul {
  padding: 0 10px;
}
.footFlex .footMenu ul li a {
  color: silver;
  font-size: 0.9rem;
}

/*# sourceMappingURL=style.css.map */