@charset "UTF-8";
/*共通scss*/
/*use colors*/
/*size*/
/*font family*/
/*共通scss*/
/*共通scss*/
/*common style*/
html {
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1d1c1c;
  background-color: #f7f7f5;
}
@media screen and (max-width: 1200px) {
  body {
    font-size: 14px;
  }
}
body .inner {
  width: 100%;
  overflow-x: hidden;
}

/*main*/
main {
  width: 100%;
}

@media screen and (min-width: 767px) {
  a {
    transition: 0.25s ease-in-out;
    opacity: 1;
  }
  a:hover {
    transition: 0.25s ease-in-out;
    opacity: 0.6;
  }
}
/*container*/
.container {
  width: calc(1200 / 1400 * 100%);
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    width: calc(787 / 867 * 100%);
  }
}
@media screen and (max-width: 500px) {
  .container {
    width: calc(450 / 500 * 100%);
  }
}

/*title-text*/
.vertical-ttl {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 6rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  letter-spacing: 2rem;
}

/*text-font*/
.mincho {
  font-family: "Zen Old Mincho", serif;
}

/*text-color*/
.color-red {
  color: #FF0000;
}

.color-white {
  color: #ffffff;
}

.color-black {
  color: #1d1c1c;
}

/*position*/
.absolute-all {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.absolute-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.section-ttl {
  font-size: 4rem;
  margin-bottom: 24px;
  font-weight: bold;
  text-align: center;
}

.contents-subtitle {
  font-size: 1.6rem;
  margin-bottom: 30px;
  letter-spacing: 0.8rem;
}

/*animation*/
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeIn2 {
  0% {
    opacity: 0;
    transform: translateY(22px) translateX(110%);
  }
  100% {
    opacity: 1;
    transform: translateY(-82px) translateX(110%);
  }
}
.fade-content {
  transform: translateY(50px);
  opacity: 0;
}

.fade-content-active {
  animation: fadeIn 2s forwards;
}

.fade-content2 {
  transform: translateY(25px);
  opacity: 0;
}

.fade-content2-active {
  animation: fadeIn2 2s forwards;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.fade-left {
  transform: translateX(50px);
  opacity: 0;
}

.fade-left-active {
  overflow: hidden;
  animation: fadeInLeft 1s forwards;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
.fade-right {
  transform: translateX(-50px);
  opacity: 0;
}

.fade-right-active {
  overflow: hidden;
  animation: fadeRight 1s forwards;
}

@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(10%);
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}
.fade-scale {
  transform: scale(10%);
  opacity: 0;
}

.fade-scale-active {
  animation: fadeScale 1s forwards;
}

/*共通scss*/
/*共通scss*/
/*共通scss*/
/*news-single*/
.news-inner {
  width: 73.5416666667%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 70px;
}
.news-inner .title {
  margin-bottom: 0;
}
.news-inner .post-meta {
  text-align: right;
  margin-bottom: 19px;
  color: #ccc;
}
.news-inner #primary {
  width: 60.4343720491%;
}
.news-inner #primary .prev-next-post {
  width: 100%;
  margin: 60px 0;
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
}
.news-inner #primary .prev-next-post a {
  width: fit-content;
  display: flex;
  align-items: center;
}
.news-inner #primary .prev-next-post a p {
  margin: 0 15px;
}
.news-inner #primary .prev-next-post .prev-post {
  margin-right: auto;
}
.news-inner #primary .prev-next-post .prev-post .arrow-icon_b {
  transform: rotate(180deg);
}
.news-inner #primary .prev-next-post .prev-post:hover .arrow-icon_b {
  transform: rotate(180deg) translateX(10px);
}
.news-inner #primary .prev-next-post .next-post {
  margin-left: auto;
}
.news-inner #primary .info-lilsts {
  padding-top: 15px;
}
.news-inner #primary .info-lilsts .info-lilst {
  display: flex;
  align-items: center;
  height: 80px;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  font-family: "Zen Old Mincho", serif;
  padding: 0 10px;
}
.news-inner #primary .info-lilsts .info-lilst:hover {
  transition: 0.25s ease-in;
  background-color: rgba(255, 0, 0, 0.2);
}
.news-inner #primary .info-lilsts .info-lilst:nth-child(1) {
  border-top: none;
}
.news-inner #primary .info-lilsts .info-lilst .list-meta {
  display: flex;
}
.news-inner #primary .info-lilsts .info-lilst .list-meta .post-date {
  color: #FF0000;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
}
.news-inner #primary .info-lilsts .info-lilst .list-meta .post-category {
  color: #FF0000;
  font-size: 12px;
  width: 78px;
  max-width: 100px;
  text-align: center;
  height: 20px;
  border: 1px solid #FF0000;
  border-radius: 20px;
  margin: 0 20px 0 35px;
}
.news-inner #primary .info-lilsts .info-lilst .list-meta .kimidori {
  color: #FF0000;
  border: 1px solid #FF0000;
}
.news-inner #primary .info-lilsts .info-lilst .list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -webkit-fill-available;
}
.news-inner #primary .info-lilsts .info-lilst .list-title .post-title {
  font-size: 18px;
}
.news-inner #primary .pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.news-inner #primary .pagination .page-numbers li {
  margin: 0 10px;
}
.news-inner #primary .pagination .page-numbers li .page-numbers {
  width: 39px;
  height: 39px;
  border: 1px solid #359a64;
  text-align: center;
  line-height: 39px;
  border-radius: 50%;
}
.news-inner #primary .pagination .page-numbers li .arrow-icon_b {
  border: none;
}
.news-inner #primary .pagination .page-numbers li .prev-arrow {
  transform: rotate(180deg);
}
.news-inner #primary .pagination .page-numbers li .current {
  border: 1px solid #359a64;
  color: #fff;
  background-color: #359a64;
}
.news-inner #primary .pagination .page-numbers li .next, .news-inner #primary .pagination .page-numbers li .prev {
  font-size: 12px;
}
.news-inner #secondary {
  width: 32.5779036827%;
}
.news-inner #secondary .side-bar {
  padding: 20px 7.5362318841% 20px 7.5362318841%;
  background-color: #ffffff;
  box-shadow: 0px 8px 18px -11px #777777;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.news-inner #secondary .side-bar .info-bar {
  position: absolute;
  height: 5px;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FF0000;
}
.news-inner #secondary .side-bar .secion-title_2 {
  font-size: 24px;
  margin-bottom: 16px;
}
.news-inner #secondary .side-bar .latest-news-lists {
  margin-top: 60px;
  width: 100%;
  margin-bottom: 38px;
}
.news-inner #secondary .side-bar .latest-news-lists .latest-news-list {
  margin-bottom: 12px;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 12px;
}
.news-inner #secondary .side-bar .latest-news-lists .latest-news-list:nth-child(3) {
  margin-bottom: 0;
}
.news-inner #secondary .side-bar .latest-news-lists .latest-news-list a {
  display: flex;
  justify-content: center;
}
.news-inner #secondary .side-bar .latest-news-lists .latest-news-list a .news-text {
  width: 100%;
}
.news-inner #secondary .side-bar .latest-news-lists .latest-news-list a .news-text .news-meta-box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.news-inner #secondary .side-bar .latest-news-lists .latest-news-list a .news-text .news-meta-box .news-meta {
  color: #FF0000;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
}
.news-inner #secondary .side-bar .latest-news-lists .latest-news-list a .news-text .news-meta-box .post-category {
  color: #FF0000;
  font-size: 12px;
  width: 78px;
  max-width: 100px;
  text-align: center;
  height: 20px;
  border: 1px solid #FF0000;
  border-radius: 20px;
  margin: 0 0 0 15px;
}
.news-inner #secondary .side-bar .latest-news-lists .latest-news-list a .news-text .news-meta-box .kimidori {
  color: #FF0000;
  border: 1px solid #FF0000;
}
.news-inner #secondary .side-bar .latest-news-lists .latest-news-list a .news-text .news-des-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-inner #secondary .side-bar .latest-news-lists .latest-news-list a .news-text .news-des-box .news-des {
  font-weight: 500;
  line-height: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  width: calc(100% - 50px);
}
.news-inner #secondary .side-bar .latest-news-lists .latest-news-list a .news-text .news-des-box .arrow-icon_b {
  border: none;
}

@media screen and (max-width: 767px) {
  .news-inner {
    width: 90.6666666667%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: initial;
    margin-top: 7px;
  }
  .news-inner .title {
    margin-bottom: 0;
  }
  .news-inner #primary {
    width: 100%;
  }
  .news-inner #primary .info-lilsts {
    margin-left: 0%;
    width: 100%;
    padding-top: 15px;
  }
  .news-inner #primary .info-lilsts .info-lilst {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .news-inner #primary .info-lilsts .info-lilst .list-meta {
    align-items: center;
  }
  .news-inner #primary .info-lilsts .info-lilst .list-meta .post-date {
    font-size: 12px;
  }
  .news-inner #primary .info-lilsts .info-lilst .list-meta .post-category {
    font-size: 12px;
    line-height: 18px;
    height: 18px;
    margin: 0px auto 0 15px;
  }
  .news-inner #primary .info-lilsts .info-lilst .list-meta .kimidori {
    color: #FF0000;
    border: 1px solid #FF0000;
  }
  .news-inner #primary .info-lilsts .info-lilst .list-title {
    margin-top: 10px;
  }
  .news-inner #primary .info-lilsts .info-lilst .list-title .post-title {
    font-size: 14px;
    margin-left: 0px;
  }
  .news-inner #secondary {
    width: 0%;
    display: none;
  }
}
.news-inner {
  /* image */
  /* list */
  /* block quote */
  /* captions */
}
.news-inner .post_content p {
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin: 0 0 2em 0;
}
.news-inner .post_content li {
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin: 0 0 0.5em 0;
}
.news-inner .post_content h1,
.news-inner .post_content h2,
.news-inner .post_content h3,
.news-inner .post_content h4,
.news-inner .post_content h5,
.news-inner .post_content h6 {
  clear: both;
  margin: 0 0 10px 0;
}
.news-inner .post_content h1 {
  display: block;
  line-height: 1.5;
  padding-bottom: 8px;
  font-size: 28px;
}
.news-inner .post_content h2 {
  display: block;
  line-height: 1.5;
  padding-bottom: 8px;
  font-size: 26px;
}
.news-inner .post_content h3 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
  padding: 6px 0px;
}
.news-inner .post_content h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.news-inner .post_content h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.news-inner .post_content a {
  border-bottom: 2px solid #FF0000;
  transition: 0.25s all;
}
.news-inner .post_content a:hover {
  transition: 0.25s all;
  color: #FF0000;
}
.news-inner .post_content h6 {
  font-size: 100%;
  font-weight: 500;
  line-height: 24px;
}
@media screen and (max-width: 1200px) {
  .news-inner .post_content h1 {
    font-size: 18px;
    line-height: 27px;
  }
  .news-inner .post_content h2 {
    font-size: 20px;
    font-weight: 500;
  }
  .news-inner .post_content h3 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
  }
  .news-inner .post_content h4 {
    font-size: 15px;
    line-height: 23px;
  }
  .news-inner .post_content p, .news-inner a, .news-inner li {
    font-size: 14px;
  }
  .news-inner .post_content h5 {
    font-size: 13px;
    line-height: 26px;
  }
}
.news-inner .post_content img[class*=align],
.news-inner .post_content img[class*=wp-image-],
.news-inner .post_content img[class*=attachment-],
.news-inner .post_content img.size-full,
.news-inner .post_content img.size-large,
.news-inner .post_content .wp-post-image,
.news-inner .post_content img {
  height: auto;
  max-width: 100%;
  margin-bottom: 31px;
}
.news-inner .post_content li,
.news-inner .post_content dt,
.news-inner .post_content dd {
  line-height: 2.2;
}
.news-inner .post_content ul,
.news-inner .post_content ol,
.news-inner .post_content dl {
  margin-bottom: 24px;
}
.news-inner .post_content ol {
  list-style: decimal outside none;
  margin-left: 1.5em;
}
.news-inner .post_content ul {
  list-style: circle outside none;
  margin-left: 1.3em;
}
.news-inner .post_content li > ul,
.news-inner .post_content li > ol {
  margin-bottom: 0;
}
.news-inner .post_content dt {
  font-weight: bold;
}
.news-inner .post_content dd {
  margin-bottom: 1em;
}
.news-inner .post_content blockquote {
  margin: 0 0 25px 0;
  padding: 27px 30px 0;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 4px 0px 0px #f8f8f8;
  position: relative;
}
.news-inner .post_content blockquote:before {
  content: '"';
  font-style: italic;
  font-size: 30px;
  font-weight: normal;
  line-height: 40px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  left: 10px;
  color: #5cbcd7;
}
.news-inner .post_content blockquote:after {
  content: '"';
  font-style: italic;
  font-size: 30px;
  font-weight: normal;
  text-align: left;
  line-height: 60px;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 7px;
  right: -2px;
  color: #5cbcd7;
}
.news-inner .post_content blockquote cite {
  border-top: 1px dotted #aaa;
  display: block;
  padding: 20px 0 0 0;
  font-style: italic;
  text-align: right;
  font-size: 90%;
}
.news-inner .post_content .wp-caption {
  margin-bottom: 24px;
  background: #f8f8f8;
  border: 1px solid #ccc;
  padding: 5px;
  max-width: 100%;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.news-inner .post_content .wp-caption-text {
  text-align: center;
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
  margin: 9px auto;
}
.news-inner .post_content .wp-caption img[class*=wp-image-] {
  display: block;
  margin: 0 auto;
}

/*scss page*/
/*body*/
/*header*/
header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
header .header-container .top {
  display: flex;
  align-items: center;
  transition: 0.25s ease-in-out;
  width: 100%;
}
header .header-container .top .top-logo {
  height: 10vh;
  margin-right: auto;
  padding: 12px 12px;
  background-color: rgba(235, 181, 3, 0.8);
}
header .header-container .top .top-logo img {
  width: 100%;
  height: 100%;
}
header .header-container .top .top-nav-area {
  display: flex;
  align-items: center;
  height: 100%;
}
header .header-container .top .top-nav-area ul {
  display: flex;
  margin-left: auto;
}
header .header-container .top .top-nav-area ul a {
  display: block;
  padding: 12px 17px;
  line-height: 20px;
  color: #FF0000;
  font-size: 15px;
  font-weight: bold;
}
header .header-container .top .top-nav-area ul a p {
  font-size: 10px;
  text-align: center;
  margin-top: 5px;
  color: #ffffff;
}
header .header-container .top .top-nav-area .top-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  width: 140px;
  font-weight: bold;
  margin-left: 0;
  height: 72px;
  position: relative;
  overflow: hidden;
  padding: 23px 0;
  background: #218e54;
}
header .header-container .top .top-nav-area .top-btn:nth-child(3) {
  background: #ffffff;
  color: #218e54;
}
header .header-container .top .top-nav-area .top-btn:nth-last-child(1) {
  background: #218e54;
  color: #ffffff;
}
header .header-container .top .top-nav-area .top-btn img {
  display: inline-block;
  width: 15px;
  height: auto;
  margin-right: 7px;
  z-index: 1;
}
header .header-container .top .top-nav-area .top-btn span {
  display: inline-block;
  line-height: 30px;
  z-index: 1;
}
header .header-container .top.active {
  background-color: rgba(255, 0, 0, 0.8);
  transition: 0.25s ease-in-out;
}
header .header-container .top.active .top-nav-area ul {
  display: flex;
  margin-left: auto;
}
header .header-container .top.active .top-nav-area ul a {
  color: #ffffff;
}
header .header-container .top-sp {
  display: none;
  opacity: 0;
  visibility: hidden;
}
header .header-container .header-nav-sp {
  display: none;
  opacity: 0;
  visibility: hidden;
}
header .header-container .header-nav-sp {
  position: fixed;
  top: 0px;
  right: 0;
  width: 300px;
  height: 100vh;
  padding: 100px 40px;
  background-color: rgba(255, 0, 0, 0.9);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.25s ease-in;
  transform: translateX(100%);
  border-radius: 4px 0 0 4px;
}
header .header-container .header-nav-sp ul li {
  color: #ffffff;
  text-align: left;
  font-size: 16px;
  padding: 18px 10px 18px 15px;
  position: relative;
}
header .header-container .header-nav-sp ul li a {
  display: block;
  width: 100%;
}
header .header-container .header-nav-sp ul li a P {
  font-size: 12px;
  margin-top: 5px;
}
header .header-container .header-nav-sp ul li::before {
  position: absolute;
  left: 0;
  top: 24px;
  content: "";
  width: 4px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 50%;
}
header .header-container .header-nav-sp .sp-info {
  width: 300px;
  margin-top: 50px;
  padding-bottom: 20vh;
}
header .header-container .header-nav-sp .sp-info .tel_black {
  width: 35px;
  margin-right: 10px;
}
header .header-container .header-nav-sp .sp-info .sp-dt P {
  letter-spacing: 0.08em;
  font-size: 12px;
  line-height: 14px;
  margin: 7.5px 0;
  font-weight: 300;
}
header .header-container .sp-nav-active {
  opacity: 1;
  visibility: visible;
  transition: 0.25s ease-in;
  transform: translateX(0);
}

@media screen and (max-width: 1200px) {
  header .header-container {
    width: calc(1360 / 1400 * 100%);
    margin-right: auto;
  }
  header .header-container .top {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  header .header-container .top-sp {
    height: 60px;
    transform: translateX(0px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
    visibility: visible;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: 1002;
    padding: 10px 4%;
  }
  header .header-container .top-sp .top-sp-logo {
    height: 60px;
    display: inline-block;
    background-color: rgba(235, 181, 3, 0.8);
    transform: translateX(-15px);
    padding: 4px;
  }
  header .header-container .top-sp .top-sp-logo img {
    width: auto;
    height: 100%;
  }
  header .header-container .top-sp .burger-icon {
    width: 40px;
    z-index: 1001;
    cursor: pointer;
  }
  header .header-container .top-sp .burger-icon .buns {
    height: 2px;
    background-color: #FF0000;
    transition: 0.25s ease-in;
  }
  header .header-container .top-sp .burger-icon .patty {
    height: 2px;
    background-color: #FF0000;
    margin: 10px 0;
    transition: 0.25s ease-in;
  }
  header .header-container .top-sp .burger-active .buns {
    transition: 0.25s ease-in;
    transform: translateY(-12px) rotate(-45deg);
    background-color: #ffffff;
  }
  header .header-container .top-sp .burger-active .buns:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }
  header .header-container .top-sp .burger-active .patty {
    transition: 0.25s ease-in;
    opacity: 0;
    visibility: hidden;
  }
}
/*ヒーローセクション*/
.hero-area {
  height: 100vh;
  width: 100%;
}
.hero-area .hero-area-img {
  width: 100%;
  height: 100%;
}
.hero-area .hero-area-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
}
.hero-area .hero-area-img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 500px) {
  .hero-area {
    height: auto;
    width: 100%;
  }
  .hero-area .hero-area-img {
    width: 100%;
    height: 100%;
  }
  .hero-area .hero-area-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
  }
  .hero-area .hero-area-img svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/*縁日の説明セクション*/
.about-fair {
  position: relative;
  background-color: red;
  padding: 50px 0;
}
.about-fair .about-fair-bk {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.about-fair .about-fair-bk img {
  transform: scale(0.5);
  width: auto;
  height: 100%;
}
.about-fair .container {
  position: relative;
  z-index: 2;
}
.about-fair .about-fair-wrap {
  padding: 200px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.about-fair .about-fair-ttl {
  margin-bottom: 50px;
}
.about-fair .about-fair-desc {
  text-align: center;
  line-height: 3;
}

@media screen and (max-width: 767px) {
  .about-fair {
    position: relative;
  }
  .about-fair .about-fair-bk {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about-fair .about-fair-bk img {
    width: 100%;
    height: auto;
  }
  .about-fair .about-fair-wrap {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    height: 100%;
  }
  .about-fair .about-fair-ttl {
    margin-bottom: 50px;
  }
  .about-fair .about-fair-desc {
    text-align: left;
    line-height: 3;
    padding: 0 24px;
  }
  .about-fair .about-fair-desc br {
    display: none;
  }
  .about-fair .red-cover {
    background-color: rgba(255, 0, 0, 0.9);
  }
}
/*防災 * 遊び*/
.play_disaster {
  background-image: url(../img/illust/ilust_play_disaster.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* フローティングエフェクトのための要素 */
  /* ホバーエフェクト */
  /* レスポンシブデザイン */
}
@media screen and (max-width: 767px) {
  .play_disaster {
    background-image: url(../img/illust/ilust_play_disaster.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: initial;
  }
}
.play_disaster .container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.play_disaster .background-circles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.play_disaster .circle-left {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #ff8c42, #ff6b1a);
  border-radius: 24px;
  left: -150px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
}
.play_disaster .circle-right {
  position: absolute;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #4a90a4, #2e5266);
  border-radius: 50%;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
}
.play_disaster .main-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 90%;
  text-align: center;
  position: relative;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
}
.play_disaster .title-section {
  margin-bottom: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.play_disaster .title-section-wrap {
  display: flex;
  flex-direction: column;
}
.play_disaster .title-play {
  font-size: 48px;
  color: #ff8c42;
  font-weight: bold;
  display: inline-block;
  margin-right: 20px;
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
}
.play_disaster .title-cross {
  font-size: 36px;
  display: inline-block;
  margin: 0 15px;
  opacity: 0;
  transform: scale(0);
}
.play_disaster .title-disaster {
  font-size: 48px;
  color: #4a90a4;
  font-weight: bold;
  display: inline-block;
  margin-left: 20px;
  opacity: 0;
  transform: scale(0.8) rotate(10deg);
}
.play_disaster .description {
  line-height: 2;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  font-size: 1.6rem;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 767px) {
  .play_disaster .description {
    text-align: left;
  }
}
.play_disaster .floating-element {
  position: absolute;
  background: rgba(255, 140, 66, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.play_disaster .floating-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 15%;
  animation: float 6s ease-in-out infinite;
}
.play_disaster .floating-2 {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 20%;
  animation: float 4s ease-in-out infinite reverse;
  background: rgba(74, 144, 164, 0.2);
}
.play_disaster .floating-3 {
  width: 30px;
  height: 30px;
  top: 30%;
  right: 30%;
  animation: float 5s ease-in-out infinite;
  background: rgba(255, 140, 66, 0.15);
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
.play_disaster .main-card:hover {
  transform: translateY(0px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}
.play_disaster .title-play:hover {
  transform: scale(1.1) rotate(5deg);
  cursor: pointer;
}
.play_disaster .title-disaster:hover {
  transform: scale(1.1) rotate(-5deg);
  cursor: pointer;
}
@media (max-width: 768px) {
  .play_disaster .main-card {
    padding: 40px 12px;
    margin: 20px;
    width: 100%;
    margin: 0;
  }
  .play_disaster .title-play,
  .play_disaster .title-disaster {
    font-size: 36px;
  }
  .play_disaster .title-cross {
    font-size: 28px;
  }
  .play_disaster .circle-left {
    width: 300px;
    height: 300px;
    left: -100px;
  }
  .play_disaster .circle-right {
    width: 250px;
    height: 250px;
    right: -80px;
  }
}

/*ロゴ掲載箇所*/
.logo-section {
  padding: 40px 20px;
  display: flex;
  align-items: center;
}
.logo-section .logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  padding: 120px 0px;
  max-width: 900px;
  width: 90%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .logo-section .logo-container {
    padding: 0px 0px;
  }
}
.logo-section .logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  width: 30%;
}
.logo-section .logo-item img {
  width: 100%;
  height: auto;
}
.logo-section .logo-item:hover {
  transform: scale(1.05);
}
.logo-section .logo-image {
  width: 100%;
  height: auto;
}

/*newsセクション*/
.news-section {
  background-color: #FFCA1A;
  padding: 100px 20px;
  text-align: center;
}

.news-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", sans-serif;
}

.news-container {
  max-width: 800px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  background-color: white;
  border-radius: 15px;
  padding: 20px 25px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 500;
}

.news-content {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: bold;
}

.more-button {
  background-color: #333;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
  gap: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", sans-serif;
}

.more-button:hover {
  background-color: #555;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .news-section {
    padding: 40px 15px;
  }
  .news-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .news-container {
    gap: 15px;
  }
  .news-item {
    padding: 18px 20px;
  }
  .news-content {
    font-size: 15px;
  }
  .more-button {
    padding: 10px 25px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .news-title {
    font-size: 24px;
  }
  .news-item {
    padding: 15px 18px;
  }
  .news-content {
    font-size: 14px;
  }
}
/*ffとは*/
.festival-section {
  padding: 120px 20px;
  text-align: center;
  position: relative;
}
.festival-section .container {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .festival-section .container {
    background-color: rgba(255, 255, 255, 0);
  }
}

.ff_illust_bk {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  max-width: 800px;
}
.ff_illust_bk img {
  width: 100%;
  height: auto;
}

.festival-header {
  position: relative;
  margin-bottom: 50px;
}

.festival-title {
  font-size: 6rem;
  font-weight: bold;
  color: #FF0000;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}
.festival-title span {
  font-size: 1.8rem;
  color: #1d1c1c;
  display: inline-block;
  margin-left: 24px;
}

.festival-logo {
  width: 100%;
  max-width: 350px;
  background-color: rgb(235, 181, 3);
  padding: 20px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.festival-logo img {
  width: 100%;
  height: auto;
}

.festival-description {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin: 60px 0;
  text-align: center;
}

.description-line {
  margin-bottom: 8px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .description-line {
    font-size: 1.4rem;
    text-align: left;
  }
  .description-line br {
    display: none;
  }
}

.video-container {
  position: relative;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 56.25%;
  height: 0;
}
@media screen and (max-width: 767px) {
  .video-container {
    width: 100%;
  }
}
.video-container .video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-container iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .festival-section {
    padding: 40px 15px;
  }
  .festival-arc {
    width: 150px;
    height: 75px;
  }
  .festival-title {
    font-size: 3.6rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 12px 0;
  }
  .logo-text {
    font-size: 16px;
  }
  .video-container {
    max-width: 350px;
  }
  .video-thumbnail {
    height: 200px;
  }
  .video-logo {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .festival-title {
    font-size: 3.6rem;
  }
  .festival-logo {
    width: 100%;
  }
  .logo-text {
    font-size: 14px;
  }
  .video-container {
    max-width: 300px;
  }
  .video-thumbnail {
    height: 170px;
  }
  .video-logo {
    font-size: 18px;
  }
}
/**/
.contents-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.contents-header {
  margin-bottom: 50px;
}

.contents-title {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", sans-serif;
}

.enjitsu-section {
  background-color: #FF0000;
  padding: 120px 20px;
  position: relative;
  margin-top: 80px;
}

.enjitsu-ticket{
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.7;
}

.enjitsu-ticket{
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
}

.enjitsu-ticket-note{
  text-align: center;
  font-size: 13px;
  color: #fff;
  margin-bottom: 80px;
}

.content-price{
  margin-bottom: 12px;
    color: #FF1000;
    background: #fff;
    padding: 4px 12px;
    border-radius: 14px;
}

.enjitsu-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 150px;
  margin: 0 auto;
  transform: translateY(-50%);
}
.enjitsu-header img {
  width: 100%;
  height: auto;
}

.enjitsu-subtitle {
  color: white;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.content-number {
  color: white;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
}

.content-image {
	background-color: #fff;
  width: 100%;
  max-width: 200px;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.content-button {
  background: transparent;
  color: white;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-weight: 500;
}

.content-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.button-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.button-icon::after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .contents-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .contents-section {
    padding: 40px 15px;
  }
  .enjitsu-section {
    padding: 120px 15px;
  }
  .contents-title {
    font-size: 36px;
  }
  .enjitsu-title {
    font-size: 48px;
  }
  .contents-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .content-image {
    height: 100px;
  }
}
@media (max-width: 480px) {
  .contents-title {
    font-size: 28px;
  }
  .enjitsu-title {
    font-size: 36px;
  }
  .contents-grid {
    gap: 20px;
  }
  .content-image {
    max-width: 250px;
  }
}
/*asobプロジェクト*/
.asobo-section {
  background-color: #FFCA1A;
  padding: 160px 20px;
  position: relative;
  margin-top: 250px;
}

.asobo-header-img {
  width: 200px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.asobo-header-img img {
  width: 100%;
  height: auto;
}

.asobo-header {
  text-align: center;
  margin-bottom: 50px;
}

.asobo-subtitle {
  font-size: 16px;
  color: #FF0000;
  margin-bottom: 10px;
  font-weight: 500;
}

.asobo-title {
  font-size: 56px;
  font-weight: bold;
  color: #FF0000;
  margin-bottom: 5px;
  font-family: Arial, sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.asobo-project {
  font-size: 18px;
  color: #FF0000;
  margin-bottom: 40px;
  font-weight: 500;
}

.concept-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 30px;
}

@media (max-width: 480px) {
  .concept-container {
  min-height: 140px;;
}
}

.concept-text {
  font-size: 72px;
  font-weight: bold;
  color: #FF0000;
  line-height: 1;
}

.cross-symbol {
  font-size: 48px;
  color: #FF0000;
  font-weight: 300;
}

.concept-description {
  text-align: center;
  font-size: 16px;
  color: #FF0000;
  margin-bottom: 30px;
  font-weight: 500;
}

.cta-button {
  background-color: #FF0000;
  color: white;
  border: none;
  border-radius: 32px;
  padding: 12px 40px;
  font-size: 16px;
  cursor: pointer;
  margin: 0 auto 50px;
  display: block;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: 500;
  line-height: 2;
}

.cta-button:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.experience-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.experience-content {
  position: relative;
}

.experience-title {
  font-size: 32px;
  font-weight: bold;
  color: #FF0000;
  margin-bottom: 25px;
}

.experience-text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.mascot-container {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.mascot-character {
  width: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mascot-character img {
  width: 100%;
  height: auto;
}

.mascot-text {
  color: #333;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.speech-bubble {
  position: absolute;
  top: 0px;
  right: 0px;
  transform: translateX(100%);
  background-color: white;
  border: 2px solid #FF0000;
  color: #FF0000;
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 16px;
  width: 300px;
  line-height: 1.4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  line-height: 2;
}

.mascot-character-name {
  position: absolute;
  bottom: 50%;
  right: -20px;
  font-size: 14px;
  color: #333;
}

.experience-image {
  width: 100%;
  background: linear-gradient(135deg, #87ceeb, #4682b4);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.experience-image img {
  width: 100%;
  height: auto;
}

.more-button {
  color: white;
  border: none;
  border-radius: 25px;
  padding: 16px 60px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: 500;
  margin-top: 20px;
}

.asobo-section .more-button {
  background-color: #FF0000;
  margin-left: 0;
  padding-top: 32px;
  padding-bottom: 32px;
  border-radius: 42px;
}

.more-button:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.arrow-icon::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .asobo-section {
    padding: 100px 15px;
  }
  .asobo-title {
    font-size: 40px;
  }
  .concept-text {
    font-size: 48px;
  }
  .cross-symbol {
    font-size: 32px;
  }
  .experience-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .experience-title {
    font-size: 28px;
  }
  .speech-bubble {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 20px;
    margin-left: 20px;
    width: 300px;
  }
  .speech-bubble::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .asobo-title {
    font-size: 32px;
  }
  .concept-text {
    font-size: 36px;
  }
  .experience-title {
    font-size: 24px;
  }
  .mascot-character {
    width: 120px;
    height: auto;
  }
  .speech-bubble {
    width: 200px;
    font-size: 1.4rem;
  }
  .mascot-character-name {
    bottom: 0;
    right: 0;
    transform: translateX(100%);
  }
}
/*スケジュール*/
.schedule-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.schedule-header {
  margin-bottom: 50px;
}

.schedule-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.schedule-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", sans-serif;
}

.event-date {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.event-year {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 2.4rem;
  color: #333;
  font-weight: 500;
}

.event-main-date {
  font-size: 72px;
  font-weight: bold;
  color: #333;
  line-height: 1;
}

.event-day {
  font-size: 24px;
  color: #333;
  font-weight: 500;
  border: 2px solid #333;
  padding: 5px 10px;
  border-radius: 4px;
}

.event-time-info {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .event-time-info {
    flex-direction: column;
    align-items: center;
  }
}

.event-hours {
  font-size: 18px;
  color: #333;
}

.event-main-time {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.event-entry-note {
  font-size: 14px;
  color: #666;
}

.schedule-content {
  max-width: 1100px;
  margin: 0 auto;
}

.schedule-block {
  margin-bottom: 40px;
}

.schedule-block-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.schedule-table {
  background-color: #b8b8b8;
  border-radius: 10px;
  padding: 30px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.schedule-item {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.schedule-time {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  min-width: 80px;
  margin-right: 20px;
}

.schedule-event {
  font-size: 16px;
  color: #333;
  flex: 1;
}

.schedule-location {
  font-size: 14px;
  color: #666;
  background-color: #f0f0f0;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 10px;
}

.festival-schedule {
  margin-bottom: 30px;
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media (max-width: 768px) {
  .festival-schedule {
    flex-direction: column;
  }
}

.disaster-schedule {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .schedule-section {
    padding: 40px 15px;
  }
  .schedule-title {
    font-size: 28px;
  }
  .event-main-date {
    font-size: 56px;
  }
  .event-day {
    font-size: 20px;
  }
  .event-main-time {
    font-size: 28px;
  }
  .schedule-table {
    padding: 20px;
  }
  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .schedule-time {
    min-width: auto;
    margin-right: 0;
  }
  .schedule-location {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .event-date {
    gap: 5px;
  }
  .event-main-date {
    font-size: 48px;
  }
  .schedule-title {
    font-size: 24px;
  }
  .schedule-table {
    padding: 15px;
  }
}
/*会場マップ*/
.venue-map-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.map-header {
  margin-bottom: 40px;
}

.map-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.map-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", sans-serif;
}

.map-container {
  max-width: 1100px;
  margin: 0 auto 50px;
/*   background-color: white; */
/*   border-radius: 15px; */
/*   padding: 20px; */
/*   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); */
}

.map-image {
  width: 100%;
  height: auto;
/*   border-radius: 10px; */
  margin-bottom: 30px;
/*   max-width:500px; */
}

.map-legend {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.legend-section {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.legend-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  border-left: 5px solid;
}

.festival-legend .legend-title {
  background-color: #fff9e6;
  color: #b8860b;
  border-left-color: #ffd700;
}

.event-legend .legend-title {
  background-color: #e8f4fd;
  color: #0066cc;
  border-left-color: #0080ff;
}

.store-legend .legend-title {
  background-color: #f0f9f0;
  color: #228b22;
  border-left-color: #32cd32;
}

.legend-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  text-align: left;
}

.legend-item {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  padding: 8px 12px;
  background-color: #f8f9fa;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease;
}

.legend-item:hover {
  background-color: #e9ecef;
}

.legend-number {
  font-weight: bold;
  color: white;
  background-color: #FF0000;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 12px;
  flex-shrink: 0;
}

.legend-letter {
  font-weight: bold;
  color: white;
  background-color: #28a745;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 12px;
  flex-shrink: 0;
}

.event-legend .legend-letter {
  background-color: #0080ff;
}

@media (max-width: 768px) {
  .venue-map-section {
    padding: 40px 15px;
  }
  .map-title {
    font-size: 28px;
  }
  .map-container {
    padding: 15px;
  }
  .map-legend {
    gap: 20px;
  }
  .legend-section {
    padding: 20px;
  }
  .legend-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .legend-content {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .map-title {
    font-size: 24px;
  }
  .legend-title {
    font-size: 18px;
  }
  .legend-item {
    font-size: 13px;
  }
}
/*会場アクセス*/
#access {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
  margin: 100px 0;
}
#access .access-title {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", sans-serif;
}
#access .map-btn {
  letter-spacing: 1rem;
}
#access .venue-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
#access .venue-logo {
  width: 150px;
}
#access .venue-logo img {
  width: 100%;
  height: auto;
}
#access .logo-text {
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
#access .venue-name {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}
#access .park-name {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}
#access .venue-address {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: bold;
}
#access .map-button {
  background-color: white;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 12px 30px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 50px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1rem;
  font-weight: bold;
}
#access .map-button:hover {
  background-color: #f8f9fa;
  border-color: #007bff;
  color: #007bff;
}
#access .access-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 80px;
}
#access .access-method {
  background-color: white;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
}
#access .google-map {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
#access .google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#access .method-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}
#access .method-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
#access .method-icon img {
  width: 100%;
  height: auto;
}
#access .train-icon {
  background-color: #e8f5e8;
  color: #4caf50;
}
#access .car-icon {
  background-color: #e3f2fd;
  color: #2196f3;
}
#access .bus-icon {
  background-color: #fff3e0;
  color: #ff9800;
}
#access .method-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
#access .access-details {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
#access .detail-item {
  margin-bottom: 8px;
}
#access .highlight {
  font-weight: bold;
  color: #333;
}
#access .time-info {
  font-weight: bold;
}
@media (max-width: 1024px) {
  #access .access-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  #access .access-section {
    padding: 40px 15px;
  }
  #access .access-title {
    font-size: 36px;
  }
  #access .venue-info {
    flex-direction: column;
    gap: 15px;
  }
  #access .venue-name,
  #access .park-name {
    font-size: 24px;
  }
  #access .venue-address {
    font-size: 16px;
  }
  #access .access-method {
    padding: 20px;
  }
  #access .method-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  #access .access-title {
    font-size: 28px;
  }
  #access .venue-name,
  #access .park-name {
    font-size: 20px;
  }
  #access .venue-address {
    font-size: 14px;
  }
  #access .method-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/*footer*/
footer {
  position: relative;
  background-color: #FF0000;
}
footer .footer-fair-bk {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: auto;
  display: flex;
  justify-content: center;
  z-index: 1;
}
footer .footer-fair-bk img {
  height: 100%;
  width: auto;
}
footer .footer-inner {
  position: relative;
  z-index: 2;
  padding-top: 56px;
}
footer .footer-inner .container .footer-logo {
  display: inline-block;
  width: 260px;
  margin-bottom: 26px;
}
footer .footer-inner .container .footer-logo img {
  width: 100%;
  height: auto;
}
footer .footer-inner .container .footer-info {
  display: flex;
}
footer .footer-inner .container .footer-info .footer-left p {
  display: block;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 22px;
  color: #ffffff;
}
footer .footer-inner .container .footer-info .footer-right {
  margin-left: auto;
  width: 50%;
}
footer .footer-inner .container .footer-info .footer-right .footer-nav {
  display: flex;
}
footer .footer-inner .container .footer-info .footer-right .footer-nav ul {
  width: 100%;
  flex-wrap: wrap;
  padding-left: 5%;
  display: flex;
}
footer .footer-inner .container .footer-info .footer-right .footer-nav ul li {
  font-family: "Zen Old Mincho", serif;
  color: #ffffff;
  padding-left: 15px;
  position: relative;
  margin-bottom: 30px;
  font-size: 14px;
  width: 25%;
}
footer .footer-inner .container .footer-info .footer-right .footer-nav ul .sub-menu {
  padding-left: 25px;
  font-size: 12px;
}
footer .footer-inner .container .footer-info .footer-right .footer-nav ul .sub-menu::before {
  width: 0;
  height: 0;
}
footer .copy-right {
  font-size: 14px;
  margin-top: 80px;
  text-align: center;
  color: #ffffff;
  height: 60px;
  line-height: 60px;
}

@media screen and (max-width: 767px) {
  footer .footer-inner {
    padding-top: 56px;
  }
  footer .footer-inner .container .footer-logo {
    width: 210px;
    margin-bottom: 26px;
  }
  footer .footer-inner .container .footer-info {
    display: flex;
    flex-direction: column;
  }
  footer .footer-inner .container .footer-info .footer-left {
    width: 100%;
  }
  footer .footer-inner .container .footer-info .footer-left .footer-tel {
    display: block;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  footer .footer-inner .container .footer-info .footer-left .footer-map {
    display: block;
    line-height: 18px;
    font-size: 14px;
    margin-bottom: 20px;
  }
  footer .footer-inner .container .footer-info .footer-left .footer-note {
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 20px;
  }
  footer .footer-inner .container .footer-info .footer-right {
    margin-left: inherit;
    width: 100%;
  }
  footer .footer-inner .container .footer-info .footer-right .footer-nav ul {
    margin-top: 50px;
    padding-left: 0%;
  }
  footer .footer-inner .container .footer-info .footer-right .footer-nav ul li {
    width: 50%;
  }
  footer .copy-right {
    font-size: 11px;
    margin-top: 40px;
    height: 50px;
    line-height: 50px;
  }
}
/*oage-title-area*/
.page-title-area {
  position: relative;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.page-title-area .title-area-inner {
  width: 92.8571428571%;
  margin-left: auto;
  border-radius: 40px 0px 0px 40px;
  height: 350px;
  background-image: url(../img/bg/bg_forest2.jpg);
  background-size: cover;
  padding-left: 6.2%;
  padding-top: 125px;
}
.page-title-area .title-area-inner .title-text .page-title {
  font-size: 48px;
  margin-top: 10px;
}
.page-title-area .bread {
  width: fit-content;
  margin-left: auto;
  display: flex;
  align-items: center;
  padding-right: 7%;
  margin-top: 27px;
}
.page-title-area .bread li {
  z-index: 10;
  font-size: 14px;
}
.page-title-area .bread li a {
  font-size: 14px;
}
.page-title-area .bread .crt {
  color: #FF0000;
}
.page-title-area .bread .arrow-right-box {
  margin: 0 7px;
  color: #a5a5a5;
}

@media screen and (max-width: 1200px) {
  .page-title-area {
    padding-bottom: 45px;
  }
  .page-title-area .title-area-inner {
    width: 100%;
    border-radius: 0px;
    padding-left: 5%;
    background-position: center top;
  }
  .page-title-area .bread {
    padding-right: 5%;
    margin-top: 30px;
  }
  .page-title-area .bread .crt {
    color: #FF0000;
  }
  .page-title-area .bread .arrow-right {
    margin: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-title-area {
    padding-bottom: 45px;
  }
  .page-title-area .title-area-inner {
    height: 250px;
  }
  .page-title-area .title-area-inner .title-text {
    padding-left: 5%;
  }
  .page-title-area .title-area-inner .title-text .page-title {
    font-size: 24px;
  }
  .page-title-area .bread {
    padding-right: 5%;
    margin-top: 15px;
  }
  .page-title-area .bread li a {
    font-size: 12px !important;
  }
  .page-title-area .bread .crt {
    font-size: 12px;
    color: #FF0000;
  }
  .page-title-area .bread .arrow-right {
    margin: 0 10px;
  }
}
.diabetes-page .title-area-inner {
  background-image: url(../img/bg/bg_diabetes.jpg);
}

.thyroid-page .title-area-inner {
  background-image: url(../img/bg/bg_thyroid.jpg);
}

.news-page {
  margin: 84px 0;
  background-color: #ffffff;
}
.news-page .page-title-area {
  background-color: initial;
  padding-left: 0%;
  width: 73.5416666667%;
  margin: 0 auto;
}
.news-page .title-area-inner {
  background-image: none;
  height: auto;
  padding-left: 0;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  padding-top: 70px;
}
.news-page .title-area-inner .page-title {
  padding-bottom: 10px;
  border-bottom: 2px solid #FF0000;
}
.news-page .title-area-inner .post-meta {
  display: flex;
  align-items: center;
}
.news-page .title-area-inner .post-meta .post_cat {
  color: #FF0000;
  font-size: 12px;
  width: 78px;
  max-width: 100px;
  text-align: center;
  height: 20px;
  border: 1px solid #FF0000;
  border-radius: 20px;
  margin: 0 0 0 15px;
}
.news-page .title-area-inner .post-meta .kimidori {
  color: #218e54;
  border: 1px solid #218e54;
}
.news-page .title-area-inner .post-meta .section-sub-title {
  font-size: 16px;
}
.news-page .bread {
  padding-right: 0;
}

@media screen and (max-width: 767px) {
  .news-page .page-title-area {
    padding-right: 0%;
    padding-left: 0%;
    width: 90.6666666667%;
  }
  .news-page .page-title-area .title-area-inner {
    padding-left: 0;
  }
  .news-page .page-title-area .title-area-inner .title-text {
    padding-left: 0;
  }
  .news-page .page-title-area .title-area-inner .page-title {
    padding-bottom: 10px;
  }
  .news-page .page-title-area .title-area-inner .post-meta {
    display: flex;
    align-items: center;
  }
  .news-page .page-title-area .title-area-inner .post-meta .post_cat {
    color: #FF0000;
    font-size: 12px;
    width: 78px;
    max-width: 100px;
    text-align: center;
    height: 20px;
    border: 1px solid #FF0000;
    border-radius: 20px;
    margin: 0 0 0 15px;
  }
  .news-page .page-title-area .title-area-inner .post-meta .kimidori {
    color: #218e54;
    border: 1px solid #218e54;
  }
  .news-page .page-title-area .title-area-inner .post-meta .section-sub-title {
    font-size: 16px;
  }
  .news-page .bread {
    padding-right: 0;
  }
}
/*準備中セクション*/
.prepare {
  padding: 50px 0;
}
.prepare .container {
  background-color: #fff;
  padding: 80px 30px;
  border-radius: 12px;
  box-shadow: 0px 8px 18px -11px #777777;
}
.prepare .container p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .prepare .container p br {
    display: none;
  }
}

/*404*/
.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-404 .container {
  text-align: center;
}

/*下層mv*/
/*slide-area*/
.under-mv {
  position: relative;
}
.under-mv svg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.under-mv .spot-text {
  position: absolute;
  top: 100px;
  transform: translateY(-50%);
  left: 3.5714285714%;
  padding: 24px 12px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 1;
}
.under-mv .spot-text h2 {
  margin-top: 24px;
  letter-spacing: 0rem;
}
.under-mv .spot-text h2 .text-span {
  letter-spacing: 0.2rem;
  font-size: 16px;
  text-shadow: 1px 2px 3px #000;
  display: block;
  color: #ffffff;
}
.under-mv .spot-text h2 .text-span:nth-child(2) {
  font-size: 40px;
}
.under-mv .spot-text h2 .color-span {
  color: #218e54;
}
.under-mv .spot-text h3 {
  font-size: 28px;
  margin-right: 15px;
  letter-spacing: 2px;
  font-weight: bold;
}
.under-mv .spot-text h3 {
  display: inline-block;
}
.under-mv .spot-text h3 .sem_title_1 {
  color: #ffffff;
  background-color: #218e54;
  padding: 8px 12px;
}
.under-mv .spot-text h3 .sem_title_2 {
  margin-left: 0px;
  color: #218e54;
  background-color: #ffffff;
  padding: 8px 12px;
}
.under-mv .under-mv-inner {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 12px 0px 0px 12px;
}
.under-mv .under-mv-inner .under-mv-content {
  width: 100%;
  height: 100%;
}
.under-mv .under-mv-inner .under-mv-content .under-mv-content-wrap {
  width: 100%;
  margin: 0 auto;
}
.under-mv .under-mv-inner .under-mv-content .under-mv-content-wrap .img-box {
  position: relative;
  padding-top: 100vh;
  width: 100%;
}
.under-mv .under-mv-inner .under-mv-content .under-mv-content-wrap .img-box img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.under-mv .under-mv-inner .slide-arrow {
  cursor: pointer;
  position: absolute;
  top: 44%;
  z-index: 1;
  width: 45px;
  height: 45px;
  background-color: #FF0000;
  border-radius: 50%;
}
.under-mv .under-mv-inner .slide-arrow .arrow-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.under-mv .under-mv-inner .slide-arrow .arrow-wrap::before {
  content: "";
  position: absolute;
  top: 16.5px;
  left: 16.5px;
  color: #000000;
  width: 12px;
  height: 12px;
  border: 2px solid #000000;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-135deg);
}
.under-mv .under-mv-inner .prev-arrow {
  left: 5.5%;
}
.under-mv .under-mv-inner .next-arrow {
  right: 5.5%;
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .under-mv .under-mv-inner {
    height: 40vh;
  }
  .under-mv .under-mv-inner .under-mv-content .under-mv-content-wrap {
    width: 100%;
    margin: 0 auto;
  }
  .under-mv .under-mv-inner .under-mv-content .under-mv-content-wrap .img-box {
    position: relative;
    padding-top: 40vh;
    width: 100%;
  }
}
/*プラン、料金*/
.plan_price {
  margin-bottom: 110px;
}
.plan_price .container .section-sub-title {
  text-align: center;
}
.plan_price .container .section-title {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.5;
}
.plan_price .container .plan_price-title {
  color: #218e54;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
  font-size: 20px;
}
.plan_price .container .plan_price-desc {
  text-align: center;
  line-height: 2;
  margin-bottom: 44px;
}
.plan_price .container .plan_price_list .plan_price-item {
  margin-bottom: 72px;
}
.plan_price .container .plan_price_list .plan_price-item .plan_price-item-title {
  font-size: 32px;
  font-weight: bold;
  color: #c7bab2;
  margin-bottom: 12px;
}
.plan_price .container .plan_price_list .plan_price-item .plan_price-item-desc {
  font-size: 18px;
  margin-bottom: 12px;
}
.plan_price .container .plan_price_list .plan_price-item .plan_price-item-body {
  border: 4px solid #c7bab2;
  padding: 24px 32px;
  border-radius: 0 24px 24px 24px;
}
.plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item {
  margin-bottom: 24px;
}
.plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item .plan_price-item-desc-item-title {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item .plan_price-item-desc-item-title .title-text {
  font-size: 18px;
  font-weight: bold;
}
.plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item .plan_price-item-desc-item-title .title-text img {
  width: 24px;
  height: 24px;
}
.plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item .plan_price-item-desc-item-title .separator {
  flex-grow: 1;
  margin: 0 12px;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
  border-color: #ffffff;
}
.plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item .plan_price-item-desc-item-title .price {
  font-size: 18px;
  font-weight: bold;
}
.plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item .plan_price-item-desc-item-desc {
  padding-left: 24px;
  font-size: 14px;
  line-height: 2;
}
.plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item.price {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #c7bab2;
}

@media screen and (max-width: 767px) {
  .plan_price {
    margin-bottom: 55px;
  }
  .plan_price .container .section-title {
    margin-bottom: 32px;
  }
  .plan_price .container .plan_price-title {
    font-size: 16px;
  }
  .plan_price .container .plan_price-desc {
    font-size: 14px;
    margin-bottom: 32px;
    text-align: left;
  }
  .plan_price .container .plan_price-desc br {
    display: none;
  }
  .plan_price .container .plan_price_list .plan_price-item {
    margin-bottom: 42px;
  }
  .plan_price .container .plan_price_list .plan_price-item .plan_price-item-title {
    font-size: 18px;
  }
  .plan_price .container .plan_price_list .plan_price-item .plan_price-item-desc {
    font-size: 12px;
  }
  .plan_price .container .plan_price_list .plan_price-item .plan_price-item-body {
    border: 3px solid #c7bab2;
    padding: 24px 12px;
  }
  .plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item {
    margin-bottom: 24px;
  }
  .plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item .plan_price-item-desc-item-title {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }
  .plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item .plan_price-item-desc-item-title .title-text {
    font-size: 13px;
    font-weight: bold;
    width: 50%;
  }
  .plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item .plan_price-item-desc-item-title .title-text img {
    width: 16px;
    height: 16px;
  }
  .plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item .plan_price-item-desc-item-title .price {
    font-size: 13px;
  }
  .plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item .plan_price-item-desc-item-desc {
    font-size: 12px;
  }
  .plan_price .container .plan_price_list .plan_price-item .plan_price-item-body .plan_price-item-desc-list .plan_price-item-desc-item.price {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #c7bab2;
  }
}
.p-faq {
  background: url(../img/faq/bg.png);
}

.p-faq__inner {
  padding-block: 100px;
}

@media screen and (max-width: 767px) {
  .p-faq__inner {
    padding-block: 50px;
  }
}
.p-faq__list {
  margin-top: 60px;
}

.p-faq__item {
  background: #fff;
  border-radius: 20px;
  padding: 43px 100px 46px;
}

.p-faq__item:not(:first-child) {
  margin-top: 30px;
}

@media screen and (max-width: 1279px) {
  .p-faq__item {
    line-height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    padding: 40px 20px;
  }
}
.p-faq__item--q {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
  gap: 19px;
  border-bottom: 2px dotted #dfe3e8;
  padding-bottom: 19px;
  color: #000;
}

.p-faq__item--q span {
  color: #DCDDDD;
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", serif;
}

@media screen and (max-width: 767px) {
  .p-faq__item--q span {
    font-size: 22px;
  }
}
@media screen and (max-width: 1279px) {
  .p-faq__item--q {
    align-items: start;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__item--q {
    font-size: 18px;
    gap: 10px;
  }
}
.p-faq__item--a {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  gap: 19px;
  color: #787878;
  margin-top: 27px;
}

.p-faq__item--a span {
  color: #218e54;
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", serif;
}

@media screen and (max-width: 767px) {
  .p-faq__item--a span {
    font-size: 22px;
  }
}
@media screen and (max-width: 1279px) {
  .p-faq__item--a {
    align-items: start;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__item--a {
    font-size: 16px;
    gap: 10px;
  }
}
.p-application {
  position: relative;
}

.p-application .c-section__titleText span {
  font-size: 0.8em;
  color: #ffffff;
}

.p-application__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.p-application__bg img {
  width: 100%;
  height: 100%;
}

.p-application__inner {
  padding-block: 100px;
  position: relative;
  padding-block: 50px;
}

.p-application__form {
  margin-top: 65px;
}

.p-form {
  max-width: 1000px;
  margin-inline: auto;
}

.p-form__item:not(:first-child) {
  margin-top: 30px;
}

.p-form__item label {
  display: block;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  line-height: 28px;
}

.p-form__item label span {
  font-size: 12px;
  background: #f36464;
  border-radius: 3px;
  color: #fff;
  width: 48px;
  height: 20px;
  display: grid;
  place-items: center;
  margin-left: 22px;
  line-height: 1;
}

.p-form__item legend {
  display: flex;
  align-items: center;
}

.p-form__item legend span {
  font-size: 12px;
  background: #f36464;
  border-radius: 3px;
  color: #fff;
  width: 48px;
  height: 20px;
  display: grid;
  place-items: center;
  margin-left: 22px;
  line-height: 1;
  margin-right: 10px;
}

.p-form__item select,
.p-form__item input,
.p-form__item textarea {
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  padding-left: 10px;
  box-sizing: border-box;
}

.p-form__item select,
.p-form__item input {
  height: 50px;
}

@media screen and (max-width: 767px) {
  .p-form__item select {
    margin-top: 0;
  }
}
input[type=radio] {
  width: 30px;
  height: 30px;
  margin: 0;
  margin-right: 10px;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item:not(:first-child) {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .wpcf7-list-item:not(:first-child) {
    margin-top: 10px;
  }
}
.wpcf7-list-item {
  display: flex;
  align-items: center;
}

.wpcf7-list-item-label {
  flex-shrink: 0;
}

/* フォーム内のラベルと入力欄の間隔 */
.wpcf7-form label {
  font-weight: bold;
  color: #ffffff;
}

/* 入力フィールドのスタイル */
.wpcf7-form input[type=text],
.wpcf7-form input[type=date],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=email],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.wpcf7-form input[type=submit] {
  background-color: #FF0000;
  width: fit-content;
  padding: 12px 42px;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .wpcf7-form input[type=text],
  .wpcf7-form input[type=date],
  .wpcf7-form select,
  .wpcf7-form textarea {
    margin-bottom: 0;
  }
}
/* フォーカス時のスタイル */
.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=date]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: #0078d4;
  outline: none;
}

.wpcf7-form fieldset {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 30px;
}

.wpcf7-form fieldset p {
  display: flex;
  gap: 10px;
}

.wpcf7-form fieldset p span {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .wpcf7-form fieldset p {
    display: block;
  }
}
.wpcf7-form legend {
  font-size: 16px;
  font-weight: bold;
  color: #0078d4;
  margin-bottom: 10px;
}

.wpcf7-form input[type=submit]:hover {
  background-color: #005a9e;
}

.wpcf7-form input[type=date] {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.3s;
}

/* フォーカス時のスタイル */
.wpcf7-form input[type=date]:focus {
  border-color: #0078d4;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 120, 212, 0.5);
}

.p-form__note {
  font-size: 14px;
  line-height: 22px;
}

.selectBox select {
  appearance: none;
}

.header-nav-sp .sp-btn-wrap {
  margin-top: 24px;
  width: 100%;
}
.header-nav-sp .top-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  width: 100%;
  margin: 0 auto;
  font-weight: bold;
  height: 52px;
  position: relative;
  overflow: hidden;
  padding: 23px 0;
  border: 1px solid #ffffff;
  margin-bottom: 12px;
}/*# sourceMappingURL=styles.css.map */


.bousai-content{
    margin-top: 80px;
    grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .bousai-content{
    grid-template-columns: repeat(1, 1fr);
  }
}
.bousai-content .content-number{
  color: #FF1000;   
}

.bousai-content .content-image{
      max-width: 500px;
    height: 250px; 
}


@media screen and (max-width: 767px) {
  .syutten-content{
    grid-template-columns: repeat(1, 1fr);
  }
}

.syutten-content .content-image{
    height: 0;
    padding-top: calc(9 / 16 * 100%);
    max-width: 100%;
}

.syutten-section{
  background-color: transparent;
  margin-top: 200px;
}

.syutten-content .content-number{
   color: #973323; 
   font-weight: bold;
}

.syutten-content .content-desc{
   color: #973323; 
   font-size: 14px;
   line-height: 1.5;
    width: 100%;
}

.syutten-content .content-desc span{
   font-weight: bold;
   font-size: 16px;
   display: block;
   margin-bottom: 8px;
}

.header-banner {
    background-color: #FF0000;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 8px;
    margin-bottom: 40px;
}

.intro-text {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}



.intro-text {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.ticket-section {
    margin-bottom: 30px;
}

.ticket-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ticket-image {
    width: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.ticket-logo {
    color: white;
    font-size: 48px;
    font-weight: bold;
}

.ticket-logo img{
    width: 100%;
    height: auto;
}

.ticket-label {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 20px;
}

.ticket-label.morning {
    color: #f5576c;
}

.ticket-label.afternoon {
    color: #00a8e8;
}

.ticket-time {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: bold;
}

.time-label {
    font-size: 24px;
    white-space: nowrap;
}

.time-value {
    font-size: 36px;
    white-space: nowrap;
}

.notes {
    margin: 40px 0;
    padding-left: 20px;
}

.notes li {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-banner {
    background-color: #FF0000;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    margin: 40px 0;
}

.activities {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-top: 60px;
    gap: 40px;
}

.activity-item {
    text-align: center;
    flex: 1;
}

.activity-image {
    width: 200px;
    margin: 0 auto 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.activity-image img{
    width: 100%;
    height: auto;
}

.activity-title {
    font-size: 14px;
    color: #FF0000;
    margin-bottom: 5px;
}

.activity-name {
    font-size: 24px;
    font-weight: bold;
    color: #FF0000;
}

.ticket_section{
    margin: 100px 0;
}

@media (max-width: 768px) {
    .header-banner {
        font-size: 18px;
        padding: 12px;
    }

    .intro-text {
        font-size: 15px;
        padding: 0 10px;
    }

    .ticket-card {
        flex-direction: column;
        gap: 15px;
    }

    .ticket-image {
        width: 100%;
        max-width: 400px;
        height: 100px;
    }

    .ticket-logo {
        font-size: 36px;
    }

    .ticket-label {
        font-size: 16px;
        padding: 8px 15px;
    }

    .ticket-time {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .time-label {
        font-size: 20px;
    }

    .time-value {
        font-size: 28px;
    }

    .notes {
        padding-left: 15px;
    }

    .notes li {
        font-size: 14px;
    }

    .footer-banner {
        font-size: 15px;
        padding: 12px;
    }

    .activities {
        gap: 10px;
    }

    .activity-image {
        width: 150px;
        height: 150px;
    }

    .activity-name {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .header-banner {
        font-size: 16px;
    }

    .intro-text {
        font-size: 14px;
    }

    .time-value {
        font-size: 24px;
    }

    .notes li {
        font-size: 13px;
    }
}

/* 追従ナビ */
.scroll-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.scroll-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
    .scroll-btn {
        width: 80px;
        height: 80px;
        bottom: 15px;
        right: 15px;
    }
}