@charset "UTF-8";
/*!
Theme Name: 2026 WP THEME made by kiki verb Co., Ltd.
Theme URI: https://www.kiki-verb.com/
Description: WP THEME made by kiki verb Co., Ltd.
Author: kiki verb Co., Ltd.
Author URI: https://www.kiki-verb.com/
Version: 1.0
*/
body {
  background-color: #fff;
  color: #222;
  font: 1.1vw/1.9 "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
  position: relative;
}
body > section {
  width: 100%;
  position: relative;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #4da5b6;
}

img, iframe, video {
  max-width: 100%;
  height: auto;
}

.mincho {
  font-family: "Hina Mincho", serif;
}

.opa:hover {
  opacity: 0.7;
}

.is-error {
  color: #cc0044;
  font-weight: bold;
}

.clear::after {
  content: "";
  display: block;
  clear: both;
}

.pc_only {
  display: block !important;
}

.sp_only {
  display: none !important;
}

/*======================================
//	■MediaQuery
//======================================*/
@media screen and (max-width: 835px) {
  body {
    font: 3.2vw/1.9 "Noto Sans JP", sans-serif;
  }
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}
body.mceContentBody {
  min-width: inherit;
}

.mceContentBody h2 {
  font-size: 27px;
  font-weight: bold;
}
.mceContentBody h3 {
  font-size: 21px;
  font-weight: bold;
}
.mceContentBody h4 {
  font-size: 18px;
}
.mceContentBody h5 {
  font-size: 15px;
  font-weight: bold;
}
.mceContentBody h6 {
  font-size: 15px;
}
.mceContentBody p {
  display: block;
  margin: 1rem 0;
}
.mceContentBody ol, .mceContentBody ul {
  margin: 0 0 3rem 2rem;
  list-style: outside disc;
}
.mceContentBody ol ol, .mceContentBody ol ul, .mceContentBody ul ol, .mceContentBody ul ul {
  margin-bottom: 0;
}
.mceContentBody ol.prevention, .mceContentBody ul.prevention {
  position: relative;
  list-style: none;
}
.mceContentBody ol.prevention::before, .mceContentBody ul.prevention::before {
  content: "■";
  position: absolute;
  left: -1rem;
}
.mceContentBody ol.prevention ol, .mceContentBody ol.prevention ul, .mceContentBody ul.prevention ol, .mceContentBody ul.prevention ul {
  list-style: outside disc;
}
.mceContentBody ol.prevention ol::before, .mceContentBody ol.prevention ul::before, .mceContentBody ul.prevention ol::before, .mceContentBody ul.prevention ul::before {
  content: "";
}
.mceContentBody strong {
  font-weight: bold;
}
.mceContentBody em {
  font-style: italic;
}
.mceContentBody blockquote {
  display: block;
  -webkit-margin-before: 1rem;
  -webkit-margin-after: 1rem;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}
.mceContentBody .aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.mceContentBody .alignright {
  float: right;
  margin-left: 1rem;
}
.mceContentBody .alignleft {
  float: left;
  margin-right: 1rem;
}
.mceContentBody img[class*=wp-image-], .mceContentBody img[class*=attachment-] {
  height: auto;
  max-width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mceContentBody iframe {
  height: 400px;
  width: 100%;
}
.mceContentBody a {
  text-decoration: underline;
}
.mceContentBody p.wp-caption-text {
  margin-top: -1rem;
}

#tinymce h2 {
  font-size: 5.76vw;
}
#tinymce h3 {
  font-size: 3.6vw;
}
#tinymce h4 {
  font-size: 3.06vw;
}
#tinymce h5 {
  font-size: 2.52vw;
}
#tinymce h6 {
  font-size: 2.52vw;
}
#tinymce p {
  font-size: 2.34vw;
}

/*======================================
	■Animation
======================================*/
@keyframes pulse {
  0% {
    fill: #000;
  }
  80% {
    fill: #fff;
    filter: drop-shadow(0 0 5px #fd5);
  }
}
.spark_1, .spark_2, .spark_3 {
  fill: #000;
  animation-duration: 2s;
  animation-name: pulse;
  animation-iteration-count: infinite;
}

.spark_1 {
  animation-delay: 0.1s;
}

.spark_2 {
  animation-delay: 0.2s;
}

.spark_3 {
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-duration: 1.5s;
  animation-name: fadeIn;
  animation-fill-mode: both;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-duration: 1.5s;
  animation-name: fadeInLeft;
  animation-fill-mode: both;
}

#loading {
  width: 100%;
  height: 100vh;
  background: linear-gradient(#313151, #000);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
#loading svg {
  width: 30vw;
  height: 30vw;
}

/*======================================
//	■MediaQuery
//======================================*/
@media screen and (max-width: 835px) {
  #loading svg {
    width: 60vw;
    height: 60vw;
  }
}
header {
  background-color: #003250;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  border: 0;
  z-index: 9;
  width: 100%;
  padding: 0 2.5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5vw;
}
header #header_logo {
  order: 2;
  position: absolute;
  left: calc(50% - 8.3vw);
  top: 0;
  z-index: 999;
}
header #header_logo img {
  height: 9.5vw;
  transition: all 0.3s ease;
}
header #header_logo img:hover {
  filter: saturate(300%) drop-shadow(0px 0px 1vw rgba(0, 0, 0, 0.5));
}
header #header_socials {
  order: 1;
  position: relative;
  z-index: 999;
}
header #header_socials p {
  position: absolute;
  left: 0;
  top: -1.75vw;
  width: max-content;
}
header #header_socials p img {
  width: 7.5vw;
  transition: all 0.3s ease;
}
header #header_socials p img:hover {
  filter: saturate(300%) drop-shadow(0px 0px 1vw rgba(0, 0, 0, 0.5));
}
header #header_socials ul {
  display: flex;
  gap: 0.5vw;
  padding-left: 8vw;
}
header #header_socials ul li img {
  height: 3.5vw;
}
header #header_nav {
  order: 3;
  position: relative;
  width: 5vw;
  height: 5vw;
}
header #header_nav button {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  background: transparent;
  border: none;
  cursor: pointer;
}
header #header_nav button svg {
  width: 5vw;
}
header #header_nav button svg line {
  stroke: #fff;
  stroke-width: 3vw;
  stroke-linecap: round;
  transition: 0.2s;
  transform-origin: center center;
}
header #header_nav button svg .border1 {
  transform: translateY(-8vw);
}
header #header_nav button svg .border3 {
  transform: translateY(8vw);
}
header #header_nav button.active .border1 {
  transform: translateY(0px) rotate(45deg);
}
header #header_nav button.active .border2 {
  opacity: 0;
}
header #header_nav button.active .border3 {
  transform: translateY(0px) rotate(-45deg);
}
header #header_nav #header_nav_menu {
  display: none;
  width: 100vw;
  height: 100lvh;
  background-color: #003250;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  padding-top: 7vw;
}
header #header_nav #header_nav_menu.active {
  display: block;
}
header #header_nav #header_nav_menu ul {
  width: 100%;
  padding: 0 2.5vw;
  overflow-y: auto;
  display: block;
  text-align: center;
  height: calc(100lvh - 7vw);
  background: url("img/bg_nav.webp") no-repeat center/cover;
}
header #header_nav #header_nav_menu ul li {
  padding: 2.5vw 0;
  border-bottom: 1px solid #fff;
}
header #header_nav #header_nav_menu ul li a {
  color: #fff;
  font-size: 1.4vw;
  font-weight: bold;
}

/*======================================
//	■MediaQuery
//======================================*/
@media screen and (max-width: 835px) {
  header {
    padding: 0 5vw;
    height: 10vw;
  }
  header #header_logo {
    left: calc(50% - 16.5vw);
    top: 0;
    z-index: 999;
  }
  header #header_logo img {
    height: 19vw;
  }
  header #header_socials p {
    top: -7.5vw;
  }
  header #header_socials p img {
    width: 15vw;
  }
  header #header_socials ul {
    display: none;
  }
  header #header_nav {
    width: 10vw;
    height: 10vw;
  }
  header #header_nav button svg {
    width: 10vw;
  }
  header #header_nav button svg line {
    stroke-width: 10vw;
  }
  header #header_nav button svg .border1 {
    transform: translateY(-27vw);
  }
  header #header_nav button svg .border3 {
    transform: translateY(27vw);
  }
  header #header_nav #header_nav_menu {
    padding-top: 15vw;
  }
  header #header_nav #header_nav_menu ul {
    padding: 0 5vw;
    height: calc(100lvh - 15vw);
  }
  header #header_nav #header_nav_menu ul li {
    padding: 5vw 0;
  }
  header #header_nav #header_nav_menu ul li a {
    font-size: 3.2vw;
  }
}
footer {
  background-color: #e4e4e4;
}
footer nav {
  padding: 2vw 5%;
}
footer nav ul {
  display: flex;
  padding: 1vw 0;
  gap: 0 3.5vw;
}
footer nav ul a {
  color: #222;
}
footer small {
  display: block;
  text-align: center;
  padding: 1vw;
  background-color: #dbdbdb;
}

/*======================================
//	■MediaQuery
//======================================*/
@media screen and (max-width: 835px) {
  footer nav {
    padding: 2vw 5vw;
  }
  footer nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5vw 5vw;
  }
  footer nav ul a {
    font-size: 2.4vw;
  }
}
#topKv {
  position: relative;
  padding-top: 5vw;
}
#topKv img {
  width: 100%;
}
#topKv p {
  font-size: 1.5vw;
  text-align: center;
  font-weight: bold;
  padding: 2vw;
  color: #D7669F;
  background: -webkit-repeating-linear-gradient(-45deg, #fcf1f5, #fcf1f5 0.5vw, #fff 0.5vw, #fff 1vw);
  background: repeating-linear-gradient(-45deg, #fcf1f5, #fcf1f5 0.5vw, #fff 0.5vw, #fff 1vw);
}

#topGallery {
  padding: 2.5vw;
}
#topGallery h2 {
  font-size: 3.2vw;
  text-align: center;
  font-weight: bold;
  line-height: 1.55;
  padding: 0.5vw 0 1vw;
  color: #D7669F;
  background: -webkit-repeating-linear-gradient(-45deg, #F8D9E3, #F8D9E3 3px, #fff 3px, #fff 7px);
  background: repeating-linear-gradient(-45deg, #F8D9E3, #F8D9E3 3px, #fff 3px, #fff 7px);
}
#topGallery h2 span {
  display: block;
  font-size: 1.4vw;
}
#topGallery h2 span::before, #topGallery h2 span::after {
  content: "---";
  padding: 0 0.5vw;
}
#topGallery ul {
  margin-top: 2vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5vw 0;
}
#topGallery ul li {
  flex: 0 0 calc(25% - 0.5vw);
}
#topGallery ul li img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

#topMovie {
  padding: 2vw;
  background-color: #000;
}
#topMovie iframe {
  width: 70%;
  margin: 0 auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

#news {
  background-color: #283250;
  position: relative;
}
#news::before {
  content: "";
  background: url("img/top/top_news_flower-rt.webp") no-repeat right top/50%;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 40%;
}
#news::after {
  content: "";
  background: url("img/top/top_news_flower-lb.webp") no-repeat left bottom/50%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 50%;
}
#news .content {
  width: 80vw;
  margin: 0 auto;
  padding: 5vw 0;
}
#news .content h2 {
  width: 12vw;
  margin-bottom: 2vw;
}
#news .content h2 img {
  width: 100%;
}
#news .content .newsLists {
  position: relative;
  z-index: 1;
}
#news .content .newsLists .newsList {
  display: block;
  margin-top: 2px;
  background-color: #fff;
  padding: 1.5vw 2vw;
}
#news .content .newsLists .newsList:hover {
  box-shadow: 0 0 15px rgb(255, 255, 255);
}
#news .content .newsLists .newsList h3 {
  font-size: 1.8vw;
  line-height: 1.4;
  color: #003250;
}
#news .content .newsLists .newsList time {
  color: #979797;
  display: block;
  margin-bottom: 1vw;
}
#news .content .newsLists .newsList .post_content {
  color: #222;
  line-height: 1.4;
}
#news .content .newsBtn {
  text-align: center;
  margin: 5vw auto 0;
  width: 35vw;
  position: relative;
  z-index: 1;
}
#news .content .newsBtn a {
  display: block;
}
#news .content .newsBtn a:hover {
  box-shadow: 0 0 15px rgb(255, 255, 255);
}

#introduce .content {
  background: url("img/top/top_introduce_bg.webp") #000 no-repeat top center/cover;
  padding: 3vw 0 5vw;
}
#introduce .content h2 {
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 2.4vw;
  margin: 7.5vw 0;
  text-shadow: 0 0 3px #000000, 0 0 7px #000000, 0 0 12px #000000;
}
#introduce .content p {
  text-align: center;
  color: #fff;
  line-height: 2.2;
  font-size: 1.4vw;
  font-weight: bold;
  text-shadow: 0 0 3px #000000, 0 0 7px #000000, 0 0 12px #000000;
}
#introduce .content p span {
  color: #cf6288;
}

#topBanner {
  background: url("img/ticket/souvenir_bg.png") no-repeat top center/cover;
  padding: 2vw 5vw 5vw;
}
#topBanner div {
  margin-top: 3vw;
}
#topBanner div h2 {
  background-color: #222;
  color: #fff;
  padding: 0 1vw;
  font-size: 1.6vw;
}
#topBanner div ul {
  display: flex;
  gap: 1vw;
  margin-top: 0.5vw;
}
#topBanner div ul h2 {
  margin-bottom: 0.5vw;
}
#topBanner div img {
  width: 100%;
}

#sponsor {
  padding: 7vw 0 5vw;
  background-color: #f0f0f0;
}
#sponsor div {
  text-align: center;
  margin-top: 5vw;
}
#sponsor div h2 {
  margin: 0 auto 1.5vw;
  font-size: 2.4vw;
  font-weight: bold;
}
#sponsor div h3 {
  font-size: 3.6vw;
  color: #27324F;
  margin-bottom: 1.5vw;
}
#sponsor div ul {
  display: flex;
  justify-content: center;
  gap: 1.5vw;
  flex-wrap: wrap;
}
#sponsor div ul li {
  display: flex;
}
#sponsor div ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 29vw;
  background-color: #fff;
  padding: 1vw 1.5vw 0.5vw;
  text-align: center;
  color: #222;
  min-height: 12vw;
}
#sponsor div ul li a img {
  height: 7.5vw;
  object-fit: contain;
}
#sponsor div ul li a figcaption {
  padding-top: 1vw;
}
#sponsor div ul li a:hover {
  background-color: #f7f7f7;
  box-shadow: 0 0 15px #dbdbdb;
}
#sponsor div ul li a p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2vw;
  line-height: 1.4;
}
#sponsor div .sponsor_addition {
  margin: 0 5vw;
  text-align: right;
}
#sponsor div.sponsor_special a {
  width: 50vw;
  padding: 2vw 1.5vw 0.5vw;
  font-size: 2.2vw;
}
#sponsor div.sponsor_special a img {
  height: 8vw;
}
#sponsor #sponsor_inquiry {
  margin: 5vw 5vw 0;
}
#sponsor #sponsor_inquiry a {
  display: block;
  width: 100%;
  font-size: 1.6vw;
  text-align: center;
  padding: 1vw;
  border: 1px solid #FF2A5F;
  background-color: #FECBD9;
  color: #FF2A5F;
}
#sponsor #sponsor_inquiry a:hover {
  background-color: #FF2A5F;
  color: #fff;
}

/*======================================
//	■MediaQuery
//======================================*/
@media screen and (max-width: 835px) {
  #topKv {
    padding-top: 10vw;
  }
  #topKv p {
    font-size: 3.6vw;
    padding: 5vw;
    line-height: 1.5;
  }
  #topMovie iframe {
    width: 90vw;
  }
  #news::before {
    background: url("img/top/top_news_flower-rt.webp") no-repeat right top/100%;
  }
  #news::after {
    background: url("img/top/top_news_flower-lb.webp") no-repeat left bottom/100%;
  }
  #news .content {
    width: 90vw;
    padding: 10vw 0;
  }
  #news .content h2 {
    width: 20vw;
    margin-bottom: 5vw;
  }
  #news .content .newsLists .newsList {
    padding: 5vw;
  }
  #news .content .newsLists .newsList h3 {
    font-size: 4.5vw;
  }
  #news .content .newsLists .newsList time {
    margin-bottom: 2vw;
  }
  #news .content .newsBtn {
    margin: 10vw auto 0;
    width: 70vw;
  }
  #introduce .content {
    padding: 15vw 0 10vw;
  }
  #introduce .content h2 {
    line-height: 1.4;
    font-size: 4.2vw;
    margin-bottom: 10vw;
  }
  #introduce .content p {
    padding: 0 5vw;
    line-height: 1.9;
    font-size: 3.5vw;
  }
  #introduce .content p span {
    font-weight: bold;
  }
  #sponsor {
    padding: 5vw 0;
  }
  #sponsor div {
    margin-top: 10vw;
  }
  #sponsor div h2 {
    margin: 0 auto 3vw;
    font-size: 5vw;
  }
  #sponsor div h3 {
    font-size: 7vw;
    margin-bottom: 2.5vw;
  }
  #sponsor div ul {
    gap: 2.5vw;
  }
  #sponsor div ul li a {
    width: 43.75vw;
    padding: 2.5vw 2.5vw 1vw;
    min-height: 20vw;
  }
  #sponsor div ul li a img {
    height: 10vw;
  }
  #sponsor div ul li a figcaption {
    padding-top: 1.5vw;
    line-height: 1.4;
  }
  #sponsor div ul li a p {
    font-size: 4.4vw;
    line-height: 1.4;
  }
  #sponsor div.sponsor_special a {
    width: 90vw;
    padding: 4vw 1.5vw 0.5vw;
    font-size: 5.4vw;
  }
  #sponsor div.sponsor_special a img {
    height: 15vw;
    object-fit: contain;
  }
  #sponsor #sponsor_inquiry a {
    font-size: 3.2vw;
    padding: 2vw 0;
  }
}
.single-post #news {
  padding-top: 5vw;
  min-height: 75vh;
}

/*======================================
//	■MediaQuery
//======================================*/
@media screen and (max-width: 835px) {
  .single-post #news {
    padding-top: 5vw;
  }
}
.staticPageContent {
  margin: 15vw auto 7.5vw;
}
.staticPageContent .title {
  font-size: 2.4vw;
  text-align: center;
  color: #004972;
  position: relative;
  padding-bottom: 1vw;
  font-weight: bold;
  margin-bottom: 7.5vw;
}
.staticPageContent .title::before {
  content: "";
  display: block;
  width: 10vw;
  height: 3px;
  background-color: #004972;
  position: absolute;
  left: calc(50% - 5vw);
  bottom: 0;
}
.staticPageContent .content {
  width: 80vw;
  margin: 0 auto;
}
.staticPageContent .content h1 {
  font-size: 2.4vw;
}
.staticPageContent .mw_wp_form {
  margin-top: 2vw;
}
.staticPageContent .mw_wp_form table {
  margin: 2vw auto;
}
.staticPageContent .mw_wp_form table th {
  padding: 1vw;
  background-color: #f3f6f9;
  border: 1px solid #e3e6e9;
  width: 17vw;
}
.staticPageContent .mw_wp_form table th .attention {
  font-size: 0.8vw;
  color: #c40;
  padding-left: 0.5vw;
}
.staticPageContent .mw_wp_form table td {
  padding: 1vw;
  background-color: #fbfbfb;
  border: 1px solid #e3e6e9;
}
.staticPageContent .mw_wp_form table td input, .staticPageContent .mw_wp_form table td select, .staticPageContent .mw_wp_form table td textarea {
  padding: 0.5vw 1vw;
  border: 1px solid #dbdbdb;
}
.staticPageContent .mw_wp_form table td input.inquiry_price {
  width: 80%;
}
.staticPageContent .mw_wp_form table td textarea {
  height: 15vw;
}
.staticPageContent .mw_wp_form #inquiry_submit {
  text-align: center;
}
.staticPageContent .mw_wp_form #inquiry_submit input[type=submit] {
  padding: 0.5vw 2vw;
  color: #222;
  border: 1px solid #222;
  margin: 1vw 1vw 0 0;
  cursor: pointer;
}
.staticPageContent .mw_wp_form #inquiry_submit input[type=submit].submitButton {
  border: 1px solid #CF6288;
  color: #CF6288;
  transition: all 0.3s ease;
}
.staticPageContent .mw_wp_form #inquiry_submit input[type=submit].submitButton:hover {
  background-color: #CF6288;
  color: #fff;
}
.staticPageContent .mw_wp_form .paling {
  display: block;
  padding: 1vw;
  margin: 1vw 0;
  background-color: #f0f0f0;
  font-weight: bold;
}

/*======================================
//	■MediaQuery
//======================================*/
@media screen and (max-width: 835px) {
  .staticPageContent {
    margin: 20vw auto 7.5vw;
  }
  .staticPageContent .title {
    width: 90vw;
    margin: 0 auto 5vw;
    font-size: 4.2vw;
  }
  .staticPageContent .title img {
    width: 100%;
  }
  .staticPageContent .content {
    width: 90vw;
    margin: 0 auto;
  }
  .staticPageContent .content h1 {
    font-size: 4.2vw;
  }
  .staticPageContent .mw_wp_form table th {
    display: block;
    padding: 2vw;
    width: 100%;
  }
  .staticPageContent .mw_wp_form table th .attention {
    font-size: 2.4vw;
    padding-left: 1vw;
  }
  .staticPageContent .mw_wp_form table td {
    display: block;
    margin: 0 auto 4vw;
  }
  .staticPageContent .mw_wp_form table td input, .staticPageContent .mw_wp_form table td select, .staticPageContent .mw_wp_form table td textarea {
    padding: 1vw 2vw;
  }
  .staticPageContent .mw_wp_form table td textarea {
    height: 35vw;
  }
  .staticPageContent .mw_wp_form #inquiry_submit input[type=submit] {
    padding: 1vw 2.5vw;
    margin: 5vw 1vw 0 0;
  }
  .staticPageContent .mw_wp_form .paling {
    display: block;
    padding: 2vw;
    margin: 2vw 0;
  }
}
#about_summary {
  background: url("img/overview/about_bg_summary.png") no-repeat top center/cover;
  color: #fff;
}
#about_summary .content {
  padding: 7.5vw 10vw;
}
#about_summary .content h2 {
  font-size: 2.4vw;
  margin-bottom: 5vw;
  padding-bottom: 1.5vw;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #fff;
  letter-spacing: 5px;
}
#about_summary .content div table {
  width: 100%;
  margin: 0 auto;
}
#about_summary .content div table th, #about_summary .content div table td {
  vertical-align: top;
}
#about_summary .content div table th {
  width: 18%;
  border-right: 1px solid #fff;
  text-align: right;
  padding-right: 1.5vw;
}
#about_summary .content div table td {
  padding-left: 1.5vw;
}
#about_summary .content div table td a {
  color: #fff;
  text-decoration: underline;
}
#about_summary .content div table td a#toSpecial {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0 1vw;
  margin: 0.5vw 0;
  border: 1px solid #fff;
  text-decoration: none;
  font-size: 1.2vw;
}
#about_summary .content div table td a#toSpecial:hover {
  background-color: #fff;
  color: #222;
}

#access {
  padding-top: 7.5vw;
}
#access .content {
  width: 80vw;
  margin: 0 auto 5vw;
}
#access .content h2 {
  font-size: 2.4vw;
  text-align: center;
  color: #004972;
  position: relative;
  padding-bottom: 1vw;
  font-weight: bold;
  margin-bottom: 7.5vw;
}
#access .content h2::before {
  content: "";
  display: block;
  width: 10vw;
  height: 3px;
  background-color: #004972;
  position: absolute;
  left: calc(50% - 5vw);
  bottom: 0;
}
#access .content h3 {
  font-size: 1.9vw;
  color: #004972;
  font-weight: bold;
  margin: 5vw 0 1vw;
}
#access .content .iframeBox {
  width: 100%;
  margin-bottom: 1vw;
}
#access .content .iframeBox iframe {
  width: 100%;
  aspect-ratio: 5/2;
}
#access .content #access_timeboard {
  width: 60vw;
  font-size: 1.1vw;
  border-bottom: 1px solid #c40;
  border-right: 1px solid #c40;
}
#access .content #access_timeboard tr {
  border-top: 1px solid #c40;
}
#access .content #access_timeboard tr th {
  padding: 1vw 0;
  text-align: center;
  border-left: 1px solid #c40;
}
#access .content #access_timeboard tr th:nth-of-type(1), #access .content #access_timeboard tr th:nth-of-type(3) {
  background-color: #e6e6e6;
}
#access .content #access_timeboard tr th:nth-of-type(2) {
  background-color: #f9f900;
}
#access .content #access_timeboard tr td {
  padding: 1vw 0;
  text-align: center;
  border-left: 1px solid #c40;
}

#parking {
  padding: 7.5vw 0;
  background-color: #f0f0f0;
}
#parking .content {
  width: 80vw;
  margin: 0 auto 5vw;
}
#parking .content h2 {
  font-size: 2.4vw;
  text-align: center;
  color: #004972;
  position: relative;
  padding-bottom: 1vw;
  font-weight: bold;
  margin-bottom: 7.5vw;
}
#parking .content h2::before {
  content: "";
  display: block;
  width: 10vw;
  height: 3px;
  background-color: #004972;
  position: absolute;
  left: calc(50% - 5vw);
  bottom: 0;
}
#parking .content p img {
  width: 100%;
}

#about_introduce {
  margin: 3.5vw auto;
}
#about_introduce h2 {
  width: 20vw;
  margin: 0 0 2.5vw 2.5vw;
}
#about_introduce h2 img {
  width: 100%;
}
#about_introduce h3 {
  text-align: center;
  color: #003250;
  font-size: 4.2vw;
  line-height: 1.4;
  margin: 0 auto 5vw;
}
#about_introduce ul {
  display: flex;
}
#about_introduce ul li {
  flex: 0 0 50%;
  text-align: center;
}
#about_introduce ul li img {
  width: 100%;
}
#about_introduce ul li figcaption {
  font-size: 0.9vw;
  padding-top: 0.75vw;
}
#about_introduce div {
  margin: 5vw 0;
  text-align: center;
}
#about_introduce div h4 {
  font-size: 2.4vw;
  margin-bottom: 1.5vw;
  font-weight: bold;
}
#about_introduce div p {
  line-height: 2.2;
}

/*======================================
//	■MediaQuery
//======================================*/
@media screen and (max-width: 835px) {
  #about_summary .content {
    padding: 15vw 10vw;
  }
  #about_summary .content h2 {
    font-size: 5.2vw;
    margin-bottom: 5vw;
  }
  #about_summary .content div table {
    width: 100%;
    margin: 0 auto;
  }
  #about_summary .content div table th, #about_summary .content div table td {
    display: block;
  }
  #about_summary .content div table th {
    margin-top: 2vw;
    font-weight: bold;
    border-right: none;
    text-align: left;
    width: inherit;
  }
  #about_summary .content div table td {
    padding-bottom: 2vw;
    border-bottom: 1px solid #9d9d9d;
  }
  #about_summary .content div table td a#toSpecial {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 0.5vw 2vw;
    margin: 1vw 0;
    font-size: 2.7vw;
  }
  #access {
    padding: 7.5vw 0;
  }
  #access .content {
    width: 90vw;
    margin: 0 auto 5vw;
  }
  #access .content h2 {
    font-size: 5.2vw;
    text-align: center;
    color: #004972;
    position: relative;
    padding-bottom: 2vw;
    font-weight: bold;
  }
  #access .content h2::before {
    content: "";
    display: block;
    width: 10vw;
    height: 3px;
    background-color: #004972;
    position: absolute;
    left: calc(50% - 5vw);
    bottom: 0;
  }
  #access .content h3 {
    font-size: 4.6vw;
    color: #004972;
    font-weight: bold;
    margin: 7.5vw 0 2vw;
  }
  #access .content .iframeBox {
    width: 100%;
    margin-bottom: 3vw;
  }
  #access .content .iframeBox iframe {
    width: 100%;
    aspect-ratio: 4/3;
  }
  #access .content #access_timeboard {
    width: 100%;
    border-bottom: 1px solid #c40;
    border-right: 1px solid #c40;
  }
  #access .content #access_timeboard tr {
    border-top: 1px solid #c40;
  }
  #access .content #access_timeboard tr th {
    padding: 2vw 0;
    text-align: center;
    border-left: 1px solid #c40;
    line-height: 1.4;
    vertical-align: middle;
  }
  #access .content #access_timeboard tr th:nth-of-type(1), #access .content #access_timeboard tr th:nth-of-type(3) {
    background-color: #e6e6e6;
  }
  #access .content #access_timeboard tr th:nth-of-type(2) {
    background-color: #f9f900;
  }
  #access .content #access_timeboard tr td {
    padding: 2vw 0;
    text-align: center;
    border-left: 1px solid #c40;
  }
  #parking {
    padding: 7.5vw 0;
    background-color: #f0f0f0;
  }
  #parking .content {
    width: 90vw;
    margin: 0 auto 5vw;
  }
  #parking .content h2 {
    font-size: 5.2vw;
    text-align: center;
    color: #004972;
    position: relative;
    padding-bottom: 2vw;
    font-weight: bold;
  }
  #parking .content h2::before {
    content: "";
    display: block;
    width: 10vw;
    height: 3px;
    background-color: #004972;
    position: absolute;
    left: calc(50% - 5vw);
    bottom: 0;
  }
  #parking .content p img {
    width: 100%;
  }
  #about_introduce {
    margin: 7.5vw auto;
  }
  #about_introduce h2 {
    width: 30vw;
    margin: 0 0 5vw 5vw;
  }
  #about_introduce h3 {
    font-size: 6vw;
  }
  #about_introduce ul li figcaption {
    font-size: 1.8vw;
    padding: 0 3vw;
    line-height: 1.4;
  }
  #about_introduce div h4 {
    font-size: 5.2vw;
  }
  #about_introduce div p {
    padding: 0 5vw;
  }
}
.page-special .content {
  position: relative;
  overflow: hidden;
}
.page-special .content a {
  color: #fff;
  text-decoration: underline;
}

#special_title {
  padding-top: 10vw;
  background-color: #d1d1d1;
  padding-bottom: 1vw;
}
#special_title .title {
  font-size: 2.4vw;
  text-align: center;
  color: #004972;
  position: relative;
  padding-bottom: 1vw;
  font-weight: bold;
}
#special_title .title::before {
  content: "";
  display: block;
  width: 10vw;
  height: 3px;
  background-color: #004972;
  position: absolute;
  left: calc(50% - 5vw);
  bottom: 0;
}
#special_title .title_attention {
  width: 80vw;
  margin: 0 auto;
  text-align: right;
  color: #003250;
}

.special_headline {
  position: relative;
  z-index: 1;
  line-height: 1.4;
}
.special_headline h2 span {
  font-size: 5vw;
  color: #004972;
  background-color: #fff;
  padding: 0 2vw;
}
.special_headline p {
  display: inline-block;
  font-size: 1.4vw;
  color: #004972;
  background-color: #fff;
  padding: 1rem 2vw;
  margin-top: 1vw;
}

#special_ikebun {
  margin: 7.5vw auto -5vw;
}
#special_ikebun .special_headline {
  margin-left: 5vw;
}
#special_ikebun .special_pict {
  position: relative;
  top: -10vw;
}
#special_ikebun .special_pict img {
  width: 100%;
}
#special_ikebun .special_text {
  position: relative;
  width: 83vw;
  top: -13vw;
  left: 17vw;
  padding: 2vw;
  background-color: #003250;
  color: #fff;
}

#special_nomura {
  background-color: #d1d1d1;
  margin-bottom: -27.5vw;
  padding-top: 7.5vw;
}
#special_nomura .special_headline {
  margin-left: 5vw;
}
#special_nomura .special_pict {
  position: relative;
  top: -2vw;
  padding-left: 35vw;
}
#special_nomura .special_pict img {
  width: 100%;
}
#special_nomura .special_text {
  position: relative;
  width: 45vw;
  top: -40vw;
  left: 0;
  padding: 2vw 2vw 2vw 10vw;
  background-color: #003250;
  color: #fff;
}

#special_katakai {
  background-color: #fff;
  margin-bottom: -20.5vw;
}
#special_katakai .special_headline {
  text-align: right;
  top: 30vw;
}
#special_katakai .special_pict {
  position: relative;
  top: -7.5vw;
  padding-right: 35vw;
}
#special_katakai .special_pict img {
  width: 100%;
}
#special_katakai .special_text {
  position: relative;
  width: 45vw;
  top: -35vw;
  left: 55vw;
  padding: 2vw;
  background-color: #003250;
  color: #fff;
}

#special_marutama {
  background-color: #d1d1d1;
  padding-top: 7.5vw;
}
#special_marutama .special_headline {
  margin-left: 5vw;
}
#special_marutama .special_pict {
  position: relative;
  top: 3vw;
  padding-left: 35vw;
}
#special_marutama .special_pict img {
  width: 100%;
}
#special_marutama .special_text {
  position: relative;
  width: 70vw;
  top: -10vw;
  left: 0;
  padding: 2vw 2vw 2vw 10vw;
  background-color: #003250;
  color: #fff;
}

/*======================================
//	■MediaQuery
//======================================*/
@media screen and (max-width: 835px) {
  #special_title {
    padding-top: 25vw;
  }
  #special_title .title {
    font-size: 5.2vw;
    padding-bottom: 2vw;
  }
  #special_title .title::before {
    content: "";
    display: block;
    width: 10vw;
    height: 3px;
    background-color: #004972;
    position: absolute;
    left: calc(50% - 5vw);
    bottom: 0;
  }
  #special_title .title_attention {
    width: 90vw;
    font-size: 2.2vw;
  }
  .special_headline h2 span {
    font-size: 7.5vw;
    padding: 0 4vw;
  }
  .special_headline p {
    font-size: 3.2vw;
    padding: 1rem 4vw;
    margin-top: 2vw;
  }
  #special_ikebun {
    margin: 7.5vw auto -10vw;
  }
  #special_ikebun .special_text {
    width: 90vw;
    top: -20vw;
    left: 10vw;
    padding: 3vw 5vw;
    line-height: 2.2;
  }
  #special_nomura {
    margin-bottom: 0;
  }
  #special_nomura .special_pict {
    top: -5vw;
    padding-left: 20vw;
  }
  #special_nomura .special_text {
    width: 90vw;
    top: -14vw;
    padding: 3vw 5vw;
    line-height: 2.2;
  }
  #special_katakai {
    margin-bottom: 0;
  }
  #special_katakai .special_headline {
    top: 10vw;
  }
  #special_katakai .special_pict {
    position: relative;
    top: 0;
    padding-right: 15vw;
  }
  #special_katakai .special_pict img {
    width: 100%;
  }
  #special_katakai .special_text {
    width: 90vw;
    top: -10vw;
    left: 10vw;
    padding: 3vw 5vw;
    line-height: 2.2;
  }
  #special_marutama .special_text {
    position: relative;
    width: 90vw;
    top: -5vw;
    left: 0;
    padding: 3vw 5vw;
    background-color: #003250;
    color: #fff;
    line-height: 2.2;
  }
}/*# sourceMappingURL=style.css.map */