@charset "UTF-8";
/* ===============================================
コンテナ
=============================================== */
.l-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
  }
}

.l-container-02 {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .l-container-02 {
    max-width: 100%;
    margin: 0 auto;
  }
}

.l-container-03 {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .l-container-03 {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* セクションレイアウト
----------------------- */
/* 共通設定
----------------------- */
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #231815;
  min-width: 1035px;
  position: relative;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

main {
  background: #fff;
  width: 100%;
}

/* リンク
----------------------- */
.f-link {
  width: 100%;
  display: block;
  transition: 0.3s;
}
.f-link:hover {
  transition: 0.3s;
  opacity: 0.7;
}

/* 画像
----------------------- */
.f-img {
  width: 100%;
  display: block;
}

/* ボタン
----------------------- */
.p-btn1 {
  text-align: center;
  display: flex;
  justify-content: center;
}
.p-btn1 a {
  display: block;
  border: 1px solid #e24544;
  color: #e24544;
  padding: 10px 15px 10px 25px;
  margin: 20px 10px 0;
  transition: all 0.2s;
  font-size: 18px;
  font-weight: bold;
}
.p-btn1 a::after {
  font-family: "FontAwesome";
  content: "\f08e";
  margin-left: 15px;
}
.p-btn1 a:hover {
  background-color: #e24544;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-btn1 a {
    font-size: 16px;
    padding: 10px 15px 10px 25px;
  }
}

.p-btn2 {
  text-align: center;
  display: flex;
  justify-content: center;
}
.p-btn2 a {
  display: block;
  background-color: #e24544 !important;
  color: #fff !important;
  text-decoration: none !important;
  padding: 15px 40px 15px 52px;
  margin: 36px 10px;
  transition: all 0.2s;
  font-size: 18px;
  font-weight: bold;
}
.p-btn2 a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f101";
  margin-left: 15px;
}
.p-btn2 a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-btn2 a {
    font-size: 16px;
    padding: 12px 20px 12px 30px;
  }
}

.p-btn__exhibit {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}
.p-btn__exhibit a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-btn__exhibit {
    right: 10px;
    bottom: 15px;
    width: 48px;
  }
  .p-btn__exhibit img {
    width: 100%;
  }
}

/* 見出しタイトル
----------------------- */
.m-title {
  background: url(../img/bg_title.webp) no-repeat center;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  padding: 4px 16px;
  border-radius: 32px;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .m-title {
    font-size: 6vw;
    margin-bottom: 24px;
  }
}

/* Inview
----------------------- */
.fadeIn {
  opacity: 0;
  transition: 0.5s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 0.5s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 0.5s;
}

.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 0.5s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* ===============================================
ヘッダー
=============================================== */
.p-header {
  position: fixed;
  background: #91b122;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 80px;
  z-index: 9999;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-header {
    border-radius: 0;
    height: 60px;
    width: 100%;
    top: 0;
    border: none;
  }
}
.p-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding-left: 5%;
}
.p-header__name {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  width: 480px;
}
@media screen and (max-width: 767px) {
  .p-header__name {
    width: calc(100% - 70px);
    font-size: 18px;
  }
}
.p-header__list {
  display: flex;
  justify-content: right;
  flex-wrap: wrap;
  font-size: 16px;
  padding-right: 5%;
}
@media screen and (max-width: 767px) {
  .p-header__list {
    width: 100%;
    margin-top: 60px;
    padding: 0;
    height: auto;
    background-color: #91b122;
    justify-content: flex-start;
    box-shadow: 0px 30px 30px -20px rgba(37, 83, 121, 0.3);
  }
}
.p-header__item {
  position: relative;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-header__item {
    padding: 0;
    width: 100%;
    margin-left: 0;
    text-align: left;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.p-header__item a {
  display: block;
  color: #fff;
  padding: 10px 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-header__item a {
    padding: 10px 15px;
    text-align: center;
  }
}
.p-header__item a:hover {
  opacity: 0.8;
}
.p-header__item.exhibitor {
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .p-header__item.exhibitor {
    padding: 0;
  }
}
.p-header__item.exhibitor a {
  background-color: #e24544;
}
.p-header__item .p-header__sub-list {
  display: none;
  margin-bottom: 10px;
}
.p-header__item .p-header__sub-list a {
  display: block;
  padding: 8px 30px;
}
.p-header__item .p-header__sub-list a:hover {
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-header__item .p-header__sub-list {
    display: block;
  }
}
.p-header__item:hover .p-header__sub-list {
  display: block;
  width: 100%;
  position: absolute;
  top: 36px;
  left: 0;
  background-color: #fff;
  padding: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-header__item:hover .p-header__sub-list {
    display: block;
    position: static;
    box-shadow: none;
  }
}
.p-header__item:hover .p-header__sub-list a {
  display: block;
  font-size: 16px;
  padding: 10px 16px;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-header__item:hover .p-header__sub-list a {
    padding: 8px 30px;
  }
}
.p-header__item:hover .p-header__sub-list a:hover {
  transition: 0.2s;
  color: #fff;
  background-color: #222;
}
.p-header__link {
  transition: 0.2s;
}
.p-header__link:hover {
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-header__link {
    display: block;
    padding: 10px 20px;
  }
}

/* ===============================================
ナビゲーションメニュー
=============================================== */
.p-navi__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-navi__hamburger {
    display: block;
    position: fixed;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 9999;
    background: #91b122;
    right: 0;
    top: 0;
  }
}
.p-navi__hamburger-span {
  position: absolute;
  display: block;
  width: 35px;
  height: 3px;
  background-color: #fff;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.2s ease;
}
.p-navi__hamburger-span:nth-child(1) {
  top: 20px;
}
.p-navi__hamburger-span:nth-child(2) {
  top: 0;
  bottom: 0;
}
.p-navi__hamburger-span:nth-child(3) {
  bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-navi__list {
    opacity: 0;
    position: fixed;
    transition: 0.2s;
    top: -100%;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}

.p-navi__hamburger.is-open .p-navi__hamburger-span:nth-child(1) {
  top: 27px;
  transform: rotate(-45deg);
}
.p-navi__hamburger.is-open .p-navi__hamburger-span:nth-child(2) {
  opacity: 0;
}
.p-navi__hamburger.is-open .p-navi__hamburger-span:nth-child(3) {
  bottom: 30px;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .p-navi__list.is-open {
    opacity: 1;
    top: 0;
    pointer-events: auto;
    z-index: 999;
  }
}

.p-title {
  position: relative;
  background: url(../img/bg_head.jpg) no-repeat center;
  background-size: cover;
  padding: 200px 0 180px;
}
@media screen and (max-width: 767px) {
  .p-title {
    padding: 90px 0 60px;
  }
}
.p-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 40%;
  background: url(../img/bg_header.webp) no-repeat center bottom;
  background-size: cover;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-title::after {
    background-size: 150% auto;
    height: 40%;
  }
}
.p-title h1 {
  text-align: center;
  font-size: 48px;
  color: #237b3a;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-title h1 {
    font-size: 7vw;
  }
}

/* ===============================================
キ－ビジュアル
=============================================== */
.p-kv {
  width: 100%;
  position: fixed;
  overflow: hidden;
  background: url(../img/bg_top.jpg?v=20251015) no-repeat center;
  background-size: cover;
  min-width: 1180px;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-kv {
    background-size: auto 100%;
    padding-top: 60px;
    height: 56svh;
    min-width: 0;
  }
}
.p-kv::before {
  content: "";
  display: block;
  padding-top: 56%;
}
.p-kv__img {
  display: block;
  width: 45%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-kv__img {
    width: 90%;
    height: auto;
    max-width: 100%;
  }
}
.p-kv__tochimaru {
  width: 10%;
  position: absolute;
  top: 52%;
  left: 63%;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-kv__tochimaru {
    width: 15%;
    left: 70%;
  }
}

/* ===============================================
開催概要
=============================================== */
.p-overview {
  position: relative;
  z-index: 50;
  background: url(../img/bg_overview.webp) no-repeat center bottom;
  background-size: cover;
  margin-top: 51%;
  height: 360px;
}
@media screen and (max-width: 767px) {
  .p-overview {
    overflow: hidden;
    flex-direction: column;
    background-size: 250% auto;
    margin-top: 45svh;
    height: 60vw;
  }
}
.p-overview__wrap {
  position: relative;
  height: 100%;
}
.p-overview__img {
  max-width: 100%;
  position: absolute;
  right: 0px;
  top: -180px;
}
@media screen and (max-width: 767px) {
  .p-overview__img {
    max-width: none;
    width: 100%;
    left: 5%;
    top: 1svh;
  }
}

.p-content {
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
  background-color: #fff;
}
.p-content__about {
  margin-bottom: 60px;
}
.p-content__about p {
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-content__about p {
    margin: 0 15px;
  }
}
.p-content__theme {
  margin-bottom: 60px;
}
.p-content__theme-img {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-content__theme-img img {
    max-width: 100%;
    width: 90%;
  }
}
.p-content__theme-list {
  margin: 0 50px;
}
@media screen and (max-width: 767px) {
  .p-content__theme-list {
    margin: 0 15px;
  }
}
.p-content__theme-list li::before {
  content: "●";
  color: #237b3a;
  margin-right: 5px;
}
.p-content__exhibit {
  margin-bottom: 60px;
}
.p-content__exhibit-contact h3 {
  font-weight: bold;
  font-size: 1.1em;
  margin: 15px 120px;
}
@media screen and (max-width: 767px) {
  .p-content__exhibit-contact h3 {
    margin: 0 20px;
    font-size: 1em;
  }
}
.p-content__exhibit-contact p {
  margin: 0 120px 1em;
}
.p-content__exhibit-contact p a {
  color: #0000CC;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-content__exhibit-contact p {
    margin: 0 5px 1em;
    font-size: 14px;
  }
}
.p-content__exhibit-contact dl {
  margin: 0 120px 10px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-content__exhibit-contact dl {
    margin: 0 5px 10px;
    font-size: 14px;
  }
}
.p-content__exhibit-contact dl dt {
  width: 6em;
}
.p-content__exhibit-contact dl dd {
  width: calc(100% - 6em);
}
.p-content__exhibit-contact dl dd a {
  color: #0000CC;
  text-decoration: underline;
}
.p-content__exhibit-desc {
  text-align: center;
}
.p-content__exhibit .document {
  margin-left: 1em;
}
.p-content__exhibit .document li {
  font-size: 20px;
  margin-bottom: 10px;
}
.p-content__exhibit .document li.word::before {
  font-family: "Font Awesome 6 Free";
  content: "\f1c2";
  color: #036eb8;
  margin-right: 10px;
}
.p-content__exhibit .document li.pdf::before {
  font-family: "Font Awesome 6 Free";
  content: "\f1c1";
  color: #c30d23;
  margin-right: 5px;
}
.p-content__exhibit .document a {
  color: #0000CC;
  text-decoration: underline;
}
.p-content__exhibit .document a:hover {
  text-decoration: none;
}
.p-content .separator {
  margin-bottom: 40px;
}
.p-content__access {
  margin-bottom: 60px;
}
.p-content__access h3 {
  font-size: 1.1em;
  font-weight: bold;
}
.p-content__access p {
  margin: 0 0 1em;
}
.p-content__access p a {
  color: #0000CC;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-content__access p {
    margin: 0 15px;
    font-size: 14px;
  }
}

/* ===============================================
お知らせ
=============================================== */
.p-news {
  background: url(../img/bg_information.webp) no-repeat center top;
  background-size: cover;
  padding: 8% 0 12%;
  position: relative;
  z-index: 10;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding: 4% 0 18%;
  }
}
.p-news__box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-news__box {
    display: block;
  }
}
.p-news__title {
  display: inline-block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#006139', endColorstr='#00913A' ,GradientType=0)";
  background: linear-gradient(180deg, rgb(0, 97, 57) 0%, rgb(0, 145, 58) 84.44%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#006139", endColorstr="#00913A", GradientType=0);
  text-align: center;
  line-height: 160px;
}
@media screen and (max-width: 767px) {
  .p-news__title {
    display: block;
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    font-size: 16px;
    line-height: 80px;
  }
}
.p-news__list {
  width: calc(100% - 200px);
  padding: 0 0;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    width: auto;
  }
}
.p-news__list dl {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #33ad37;
}
@media screen and (max-width: 767px) {
  .p-news__list dl {
    display: block;
  }
}
.p-news__list dl dt {
  width: 9em;
  padding: 4px 0;
}
@media screen and (max-width: 767px) {
  .p-news__list dl dt {
    width: auto;
    padding: 4px 0 0;
  }
}
.p-news__list dl dd {
  width: calc(100% - 9em);
  padding: 4px 0;
}
@media screen and (max-width: 767px) {
  .p-news__list dl dd {
    padding: 0 0 4px;
    width: auto;
  }
}

/* ===============================================
フッター
=============================================== */
.p-footer {
  background: url(../img/bg_footer.webp) no-repeat center top;
  background-size: cover;
  color: #fff;
  padding: 10% 0 3%;
  margin-top: -12%;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-footer {
    margin-top: -20%;
    padding: 24% 0 4%;
  }
}
.p-footer__container {
  height: 100%;
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  place-content: center;
}
.p-footer__block {
  margin-bottom: 5px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__block {
    max-width: 100%;
    padding: 0 5%;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
  }
}
.p-footer__block ul {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 20px;
}
.p-footer__block ul li {
  font-size: 44px;
}
@media screen and (max-width: 767px) {
  .p-footer__block ul li {
    font-size: 32px;
  }
}
.p-footer__block ul li a:hover {
  opacity: 0.8;
}
.p-footer__block p {
  margin-bottom: 20px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-footer__block p {
    font-size: 14px;
  }
}
.p-footer__block p:last-child {
  margin-bottom: 0;
}

/* レスポンシブ設定
----------------------- */
.u-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

.u-pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */