@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/*
.spacer20{
	width: 100%;
	height: 20px;
}*/
.spacer30{
	width: 100%;
	height: 30px;
}
html {
	margin-top: 0 !important;
}
body{
	margin-top: 0 !important;	
}

/************************************
** JSによるclass指定アニメーション(ここから)
************************************/
.body {
	animation: fadein 2s forwards; /*アニメーション指定*/
}

@keyframes fadein {
	0% {opacity: 0} /*アニメーション開始時*/
	100% {opacity: 1} /*アニメーション終了時*/
}
/* クラス単位でのフェードイン設定 */
.fade-in {
    opacity: 0; 
    transition: all 1.5s;
    transform: translate(0,30px);
}
.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* クラス単位での下から遅れてフェードイン設定 */
.fade-in-slide {
    opacity: 0; 
    transition: all 3.0s;
    transform: translate(0,100px);
}
.side-scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* クラス単位での右横からフェードイン設定 */
.fade-in-rightslide {
    opacity: 0; 
    transition: all 1.5s;
    transform: translate(100px,0);
}
.rightside-scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* クラス単位での左横からフェードイン設定 */
.fade-in-leftslide {
    opacity: 0; 
    transition: all 1.5s;
	transform: translate(-100px,0);
}
.leftslide-scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* クラス単位での上からフェードイン設定 */
.fade-in-topslide {
    opacity: 0; 
    transition: all 1.5s;
	transform: translate(0,-100px);
}
.top-scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}


/* imgがスライドイン */
.slide-img.slide-img-scrollin {
	overflow: hidden;
	position: relative;
	display: block;
}
.slide-img-scrollin::before,
.slide-img-scrollin::after {
  animation: 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.slide-img-scrollin::before {
  animation-name: img-wrap-before;
  inset: 0 0 50%;
}

.slide-img-scrollin::after {
  animation-name: img-wrap-after;
  inset: 50% 0 0;
}

@keyframes img-wrap-before {
  100% {
    transform: translateX(100%);
  }
}

@keyframes img-wrap-after {
  100% {
    transform: translateX(-100%);
  }
}
/************************************
** JSによるclass指定アニメーション(ここまで)
************************************/


/************************************
** CSSによるアニメーション(ここから)
************************************/
/* 画面トップの文字 */
@keyframes start-fadein {
	0% {
		opacity: 0;
		transition: all 1.5s;
    	transform: translateY(30px);
	} /*アニメーション開始時*/
	100% {
		opacity: 1
	    transform: translateY() !important;
	} /*アニメーション終了時*/
}
/************************************
** CSSによるアニメーション(ここまで)
************************************/



/**************************************************
/
/ 全体装飾 (ここから)
/
/**************************************************/
body{
	font-family: "zen-maru-gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.spacer30{
  height: 30px;
  width: 100%;
}
.spacer30-sp{
  height: 30px;
  width: 100%;
  display: none;
} 
.spacerfooter{
  height: 100px;
  width: 100%;
  margin-bottom: 0;
}

/* リストのpadding設定 */
ol, ul {
    padding-left: 20px;
}



/* 見出し */
h2 {
  position: relative;
  color: #333;
  display: inline-block;
  margin: 47px 0;
  font-size: 2.5rem;
  text-shadow: 2px 3px 3px rgba(210, 180, 140, 0.5);
}
h2:before {
  content: "";
  position: absolute;
  background: rgba(210, 180, 140, 0.7);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 50%;
  left: 16px;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: -1;
}
.article h2 {
	background-color: transparent;
}


.article h3 {
  color: #333;
  padding: 0.5em;
  display: inline-block; 
  line-height: 1.3;
  background: #D9D9D9; 
  vertical-align: middle;
  border-radius: 40px 0px 0px 40px;
  width: 100%;
  font-size: 2rem;
	border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: none;
}
.article h3:before {
  content: '●';
  font-size: 0.8rem;
  color: white;
  margin-right: 8px;
  position:relative;
  top:-5px;
}

h4 {
  position: relative;
  padding: 0.25em 0;
  width: 30%;
  font-size: 1.5rem;
}
h4:after {
  content: "";
  display: block;
  height: 4px;
  background: -webkit-linear-gradient(to right, rgb(217, 217, 217), rgb(217, 217, 217));
  background: linear-gradient(to right, rgb(210, 180, 140), rgb(217, 217, 217));
}
.article h4 {
    border-top: none;
    border-bottom: none;
}
h4.longh4{
  width: 50%;
}
h4.wideh4{
  width: 80%;
}


.article h5 {
  position: relative;
  padding: .5em 2em;
  color: #333333;
  font-size: 1.3rem;
  border-bottom: none;
}
h5::before{
    display: inline-block;
    position: absolute;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: rgba(210, 180, 140, 0.7);
    content: '';
    top: 50%;
    left: 0;
}

/* トップに戻るボタン */
button.go-to-top-button.go-to-top-common.go-to-top-hide.go-to-top-button-icon-font{
	background-color: rgba(210, 180, 140, 1.0);
	color: #fff;
	border-radius: 50%;
}

/* モバイルメニュー */
li.home-menu-button.menu-button{
	width: 80%;
	font-weight: bold;
}
.mobile-menu-buttons .menu-caption {
	font-size: 0.9rem;
}
li.navi-menu-button.menu-button{
	width: 20%;
}
span.home-menu-icon.menu-icon{
	display: none;
}

/* スライドインモバイルメニュー */
div#navi-menu-content.navi-menu-content.menu-content{
	background-color: rgba(210, 180, 140, 0.7);
	padding-right: 0;
	overflow: hidden;
}
.menu-drawer a, span.fas.fa-times, span.fa.fa-close{
	color: #fff;
}


/* レスポンシブ対応 */
/* 1023px */
.responsive1023_before{
	display: block;
}
.responsive1023_after{
	display: none;
}

/* 480px */
.responsive_before{
	display: block;
}
.responsive_after{
	display: none;
}

/**************************************************
/
/ 全体装飾 (ここまで)
/
/**************************************************/



/**************************************************
/
/ header (ここから)
/
/**************************************************/
/* ヘッダー/フッター前のマージン消し */
.content {
    margin-top: 0;
}
.entry-content {
    margin-top: 0;
}
article#post-7.article.post-7.page.type-page.status-publish.hentry{
	margin-bottom: 0;
}

/* mainの両サイドpadding封じ */
main#main.main{
  padding: 0;
  border: none;
}
/* パディング消し */
.entry-content{
  margin-bottom: 0;
}
/* ウィジェット非表示 */
div#sidebar.sidebar.nwa.cf, header.article-header.entry-header, footer.article-footer.entry-footer{
	display: none;
}

/* ヘッダーメニューのスペースを小さく */
.navi-in > ul li {
    width: 100px;
}

/* アイコンとサブタイトルの調整（トシヒロ固有設定） */
/***** ロゴとサブタイトルのFlex *****/
div#header-in.header-in.wrap.cf {
  flex-direction: row-reverse;
	justify-content: space-between;
	width: 95%;
	margin: 0 auto;
}
/* 左カラム */
div.logo.logo-header.logo-image{
	width: 50%;
	text-align: right;
}
/* ロゴサイズ */
.logo-header img {
	width: 220px;
    height: auto;
}
/* 右カラム */
div.tagline{
	text-align: left;
	padding-top: 1%;
	width: 50%;
	font-size: 1.2rem;
}

/****** メニューバー ******/
nav#navi.navi.cf{
	background-color: #D2B48C;
}
div#navi-in.navi-in.wrap.cf{
	
}
.navi-in > ul li {
    width: auto;
	padding: 0 2%;
}

/**************************************************
/
/ header (ここまで)
/
/**************************************************/






/**************************************************
/
/ トップページ (ここから)
/
/**************************************************/
/***** ファーストビュースライダ *****/
/* レスポンシブ対応版を非表示 */
.fview_main-contents-respo{
	display: none;
}

.fview_main-contents{
	margin-bottom: 5%;
}
.fview_main-contents-wrap{
  position: relative;
  display: block;
  width: 100vw;
  width: 100%;
	/*max-width: 1690px;*/
  /* height: 30%;*/
  height: 500px;
  text-align: center;
  margin: 0 auto;
}
.fview_main-contents_slideshow {
  width: 100%;
  /*height: auto;*/
  height: 500px;
	pointer-events: none;
}
.fview_main-contents_slideshow img {
	width: 100%;
	/*height: auto;*/
	height: 500px;
	max-height: 700px;
	object-fit: cover;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); 
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
/*
@keyframes zoomIn {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1.0); 
  }
}
.add-animation {
  animation: zoomIn 10s linear 0s normal both;
}
*/

/* slickのprevとnextの調整 */
.slick-prev,
.slick-next
{
    z-index: 100;
	background-color: #FDD000;
	border-radius: 10px;
}
.slick-prev:before,
.slick-next:before
{
    color: #5AB655;
}

ul.slickdots{
	z-index: 200;
	background-color: #333;
}

/***** お知らせ *****/
.top-info_section{
  background-color: #F7F7F7;
  padding: 5% 0;
	animation: start-fadein 1.0s ease-in-out;
}

.top-info_wrap{
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}
.top-info_flex{
  display: flex;
  justify-content: space-around;
  width: 90%;
  margin: 0 auto;
}
/* お知らせタイトル */
.top-info_flex-left{
	width: 20%;
}
.top-info_flex-left p{
  font-size: 2rem;
  color: #D2B48C;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.5);
}
/* お知らせ内容 */
.widget-entry-card-date {
  display: block;
	width: 80%;
}
/* 以下、 固定ページのみの記載
a.new-entry-card-link.widget-entry-card-link.a-wrap{
	position: relative;
	background-color: #F5F5F5;
	padding: 2% 3%;
	margin-bottom: 1.6rem;
}
* relativeの解除 *
.widget-entry-card{
	position: static;
}
* カテゴリ *
.widget-entry-card-thumb{
	position: absolute;
	left: 110px;
	top: 18px;
}
* 日付 *
span.cat-label{
	background-color: #00AC97;
	color: #fff;
	font-size: 0.8rem;
	padding: 5px 8px;
	border-radius: 3px;
}
* タイトルと本文 *
.new-entry-card-date{
	font-size: 1.2rem;
	position: absolute;
	top: 20px;
	left: 10px;	
}
*/
/*** カテゴリの背景色 ***/
/* マルマエ */
span.cat-label.cat-label-7{
	background-color: #FFD1CC;
	color: #333;
}
/* 出水駅 */
span.cat-label.cat-label-8{
	background-color: #CCFFFF;
	color: #333;
}
/* ほたるの湯 */
span.cat-label.cat-label-9{
	background-color: #FFFF99;
	color: #333;
}



/* もっと見る */
.top-info_flex-right{
  width: 60%;
}
.top-info_more{
  width: 90%;
}
.top-info_more p{
  font-size: 1rem;
  width: 85px;
  border-bottom: 1px solid #333;
  margin: 0 0 0 auto;
}
.top-info_more_text{
	text-decoration: none;
	color: #333;
}

/***** 指定管理士施設 *****/
.management_facility-section{
  padding: 5% 0;
}

.management_facility-content{
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 1.8rem;
}
.management_facility-content_title{
  width: 100%;
  text-align: center;
}
.management_facility-content_title p{
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 3px 3px rgba(210, 180, 140, 0.5);
}

.management_facility-content_flex{
  display: flex;
  justify-content: space-around;
}

/* 出水駅周辺施設ボタン */
.management_facility-content_flex-box1{
  background-color: #CCFFFF;
  border-radius: 20px;
  height: 300px;
  width: 300px;
  position: relative;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.4); 
}
a.management_facility-content_flex-box1 {
	background: rgba(204, 255, 255, 1);
	transition: 0.3s ease-in-out;
}
a.management_facility-content_flex-box1::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #27acd9;
  border-radius: 20px;
  transition: 0.2s;
}
a.management_facility-content_flex-box1:hover {
	background: #27acd9;
	color: #fff;
}
a.management_facility-content_flex-box1:hover::before {
  top: 0;
  left: 0;
}


/* マルマエホール出水ボタン */
.management_facility-content_flex-box2{
  background-color: #FFD1CC;
  border-radius: 20px;
  height: 300px;
  width: 300px;
  position: relative;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.4); 
}
a.management_facility-content_flex-box2 {
	background: #FFD1CC;
	transition: 0.3s ease-in-out;
}
a.management_facility-content_flex-box2::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #f58a7d;
  border-radius: 20px;
  transition: 0.2s;
}
a.management_facility-content_flex-box2:hover {
	background: #f58a7d;
	color: #fff;
}
a.management_facility-content_flex-box2:hover::before {
  top: 0;
  left: 0;
}

/* 湯の鶴温泉ほたるの湯ボタン */
.management_facility-content_flex-box3{
  background-color: #FFFF99;
  border-radius: 20px;
  height: 300px;
  width: 300px;
  position: relative;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.4); 
}
a.management_facility-content_flex-box3 {
	background: #FFFF99;
	transition: 0.3s ease-in-out;
}
a.management_facility-content_flex-box3::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #e3e33d;
  border-radius: 20px;
  transition: 0.2s;
}
a.management_facility-content_flex-box3:hover {
	background: #e3e33d;
	color: #fff;
}
a.management_facility-content_flex-box3:hover::before {
  top: 0;
  left: 0;
}



.management_facility-content_flex-box1_img, .management_facility-content_flex-box2_img, .management_facility-content_flex-box3_img{
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.management_facility-content_flex-box1_txt, .management_facility-content_flex-box2_txt, .management_facility-content_flex-box3_txt{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.management_facility-about_title{
  width: 100%;
  text-align: center;
}
.management_facility-about_title p{
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 2px 3px 3px rgba(210, 180, 140, 0.5);  
}
.management_facility-about_text{
  width: 60%;
  margin: 0 auto;
}

/* カラーボックス設定(形) */
.color-box_yellow{
  height: 250px;
  width: 250px;
  border: 5px solid #FFFF99;
  border-radius: 10px;
}
.color-box_pink{
  height: 100px;
  width: 100px;
  border: 5px solid #FFD1CC;
  border-radius: 6px; 
}
.color-box_pink_big{
  height: 200px;
  width: 200px;
  border: 5px solid #FFD1CC;
  border-radius: 10px;
  z-index: -1;
}

/* カラーボックスの配置(位置) */
section.top-all_wrap{
  position: relative;
  margin-bottom: 0;
}
.color-box_yellow{
  position: absolute;
  top: 45%;
  left: 1280px;
	animation: yellow-animation 3s ease-in 2s 1 forwards;
}
@keyframes yellow-animation {
	100% {
		left: 150px;
		transform: rotate(-360deg);
	}
}
.color-box_pink{
  position: absolute;
  top: 50%;
  left: 1280px;
	animation: pink-animation 2s ease-in 2s 1 forwards;
}
@keyframes pink-animation {
	100% {
		top: 40%;
		left: -50px;
		transform: rotate(-360deg);
	}
}
.color-box_pink_big{
  position: absolute;
  top: 50%;
  right: 1500px;
	animation: pink_big-animation 2s ease-in 2s 1 forwards;
}
@keyframes pink_big-animation {
	100% {
		top: 70%;
		right: -20px;
		transform: rotate(360deg);
	}
}

/* フッター前の余白削除 */
article#post-5.article.post-5.page.type-page.status-publish.hentry{
	margin-bottom: 0;
}


/**************************************************
/
/ トップページ (ここまで)
/
/**************************************************/



/************************************************
/*
/* マルマエホール出水(ここから)
/*
/************************************************/
/* 共通パーツ */
.marumae_izumi-common_wrap{
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;  
}

/***** お知らせ *****/
.marumae_izumi-events_flex{
  display: flex;
  justify-content: space-around;
}
.swiper-wrapper {
	justify-content: space-between;
}

/* 左側 */
.marumae_izumi-events_title{
	width: 20%;
}
.marumae_izumi-events_title p{
  font-size: 2rem;
  color: #D2B48C;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.5);	
}

/* 真ん中 */
.marumae_izumi-events_thumb{
	width: 60%;
}
/* マルマエホール専用のイベント情報(固定ページのCSSに入力)
div.new-entry-card-content.widget-entry-card-content.card-content{
	text-align: center;
}
div.new-entry-card-date.widget-entry-card-date.display-none{
	width: 100%;
}
.is-list-horizontal.large-thumb .card-title{
    height: 1.5em;
}

.widget-entry-cards.card-large-image figure{
	height: 300px;
}
.widget-entry-cards.card-large-image figure img {
	height: 300px;
}
*/

/* 右側 */
.marumae_izumi-events_more{
	position: relative;
	width: 10%;
}
.marumae_izumi-events_more-p{
	position: absolute;
	bottom: 0;
}
.marumae_izumi-events_more a{
	text-decoration: none;
	color: #333;
	font-size: 1rem;
	border-bottom: 1px solid #333;
	display:inline-block;
}






/***** マルマエホール出水の施設 *****/
/* トップタイトル */
.marumae_izumi_facility-content_title{
  text-align: center;
}

/* フレックス設定 */
.marumae_izumi_facility-content_flex{
  display: flex;
  justify-content: space-around;
}

.marumae_izumi_facility-content_flex-box1{
  background-image: url("http://toshihiro-shitei.com/wp-content/uploads/2025/09/文化会館ホール内全景BOXサムネ用01.jpg");
  background-size: cover;
  border-radius: 20px;
  height: 300px;
  width: 300px;
  position: relative;  
}
.marumae_izumi_facility-content_flex-box2{
  background-image: url("http://toshihiro-shitei.com/wp-content/uploads/2025/09/音楽ホール反響板BOXサムネ01.jpg");
  background-size: cover;
  border-radius: 20px;
  height: 300px;
  width: 300px;
  position: relative;  
}
.marumae_izumi_facility-content_flex-box3{
  background-image: url("http://toshihiro-shitei.com/wp-content/uploads/2025/09/公民館外観BOXサムネ用01.jpg");
  background-size: cover;
  border-radius: 20px;
  height: 300px;
  width: 300px;
  position: relative;  
}

/* カバー文字の配置 */
.marumae_izumi_facility-content_flex-box1_txt, .marumae_izumi_facility-content_flex-box2_txt, .marumae_izumi_facility-content_flex-box3_txt{
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  text-shadow: 3px 3px 3px #555;
}

/***** 貸館状況 *****/
.marumae_izumi_rental-toptxt{
  color: #025098;
  width: 80%;
  margin: 0 auto;
}
.marumae_izumi_rental-list{
  width: 80%;
  margin: 0 auto;  
}
.marumae_izumi_rental-list_no6 a, .marumae_izumi_rental-list_no7 a{
  text-decoration: none;
  color: #333;
}
.marumae_izumi_rental-list_no6, .marumae_izumi_rental-list_no7{
	margin-bottom: 1.8rem;
}
.marumae_izumi_rental-list_no6 p, .marumae_izumi_rental-list_no7 p{
	margin-bottom: 0;
}


/***** アクセス *****/
.marumae_izumi_map-wrap{
  width: 100%;
  height: auto;
}
.marumae_izumi_map{
  width: 100%;
  height: 300px;
}
.marumae_izumi_map-wrap_txt-underline{
  width: 100%;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 0.5px solid #D2B48C;
}


/***** お問い合わせ *****/
.marumae_izumi_contact-flex_wrap{
	margin-bottom: 1.8rem;
	padding-left: 30px;
}
.marumae_izumi_contact-flex_wrap p{
	margin-bottom: 0;
	line-height: 250%;
}
.marumae_izumi_contact-flex{
  display: flex;
}
.marumae_izumi_contact-flex_left{
  width: 20%;
}
.marumae_izumi_contact-flex_right{
  width: 50%;
}
a.marumae_izumi_contact-flex_right-url{
  text-decoration: none;
  color: #333;
}

/* お問い合わせ欄内のフォントサイズ調整 */
.marumae_izumi_contact-flex_right-telno{
  font-size: 1.5rem;
  font-weight: bold;
}
.marumae_izumi_contact-flex_right-addr{
  font-size: 1.2rem;
}
.marumae_izumi_contact-flex_right-closed{
  font-size: 1.2rem;
}
.marumae_izumi_contact-title p{
  font-weight: bold;
}


/* フッター前のマージン削除 */
article#post-12.article.post-12.page.type-page.status-publish.hentry{
	margin-bottom: 0;
}

/************************************************
/*
/* マルマエホール出水(ここまで)
/*
/************************************************/



/************************************************
/*
/* マルマエホール(ここから)
/*
/************************************************/

.marumae_hall-common_wrap{
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;  
}


/***** 施設概要 *****/
/* 左右分割 */
.marumae_hall-facility-flex{
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
	padding-bottom: 1.8rem;
}
.marumae_hall-facility-flex_left{
  width: 48%;
}
.marumae_hall-facility-flex_right{
  width: 48%;
}

/*** 左側 ***/
/* 表用フレックス */
.marumae_hall-facility-flex_left-flex{
  display: flex;
}
.left-flex{
  width: 40%;
}
.right-flex{
  width: 60%;
}
.left-flex p, .right-flex p{
	margin-bottom: 0;
	line-height: 250%;
}

/*** 右側 ***/
.marumae_hall-facility-flex_right-box{
  
}
a.marumae_hall-facility-flex_right-link{
  text-decoration: none;
  color: #333;
  background-color: #D9D9D9;
  padding: 1% 3%;
  border-radius: 10px;
}



/* 座席表 */
.marumae_hall-seating-pic{
	cursor: zoom-in;
}

/*モーダルメニュー(ここから) */
/* クラスが追加された時の指定 */
.map_pop1.is-active, .map_pop2.is-active{
  opacity: 1;
  visibility: visible;
}

/* モーダルを閉じるボタンの指定 */
.modal-close, .modal-close2{
  cursor: pointer;
}
.modal-close p, .modal-close2 p{
	color: #ffffff;
}


/****** モーダル本体 ******/
.map_pop1{
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.47);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 97;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.map_box_wrap{
  overflow: auto;
  position: fixed;
  width: 90%;
  max-height: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 100;
}
.map_box_left{
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.map_box_left-pic{
  margin: 0 auto;
  width: 85%;
  height: auto;
  max-height: 100%;
}

#close, #close2{
  position: fixed;
  top: 0;
  right: 30px;
  font-size: 3rem;
  font-weight: bold;
}


/* 客席、舞台、ホワイエ、外観 */
.marumae_hall-facility-imgflex{
  display: flex;
  justify-content: space-between;
}
.marumae_hall-facility-imgflex_left{
  width: 50%;
}
.marumae_hall-facility-imgflex_right{
  width: 50%;
}


/***** マルマエホール出水の使用料 *****/
.marumae_hall-fee-caution_text, .marumae_hall-fee-baseset_text{
  width: 95%;
  margin: 0 auto;
	padding-bottom: 1.8rem;
}
.marumae_hall-fee-graf{
	width: 80%;
	margin: 0 auto;
	padding-bottom: 1.8rem;
}
.marumae_hall-fee-caution_text ol{
	margin-bottom: 0;
}
.marumae_hall-fee-caution_text p{
	margin-bottom: 0;
}
.marumae_hall-fee-baseset_text p{
	margin-bottom: 0;
}
.marumae_hall-fee-baseset_text ul{
	margin-bottom: 0;
}

/***** 付帯設備の使用料 *****/
.marumae_hall-Includedfee-box{
	margin-bottom: 1.8rem;
}
.marumae_hall-Includedfee-box_flex{
  display: flex;
}
.marumae_hall-Includedfee-box_flex p{
	margin-bottom: 0;	
}
.topitem{
  border-bottom: 1px solid #333;
  font-weight: bold;
  text-align: center;
}
.marumae_hall-Includedfee-box_flex1{
  width: 30%;
}
.marumae_hall-Includedfee-box_flex2{
  width: 10%;  
}
.marumae_hall-Includedfee-box_flex3{
  width: 10%;  
}
.marumae_hall-Includedfee-box_flex4{
  width: 20%;  
}
.price_center{
  text-align: center;
}


/***** お申込みについて *****/



/* 使用上の注意 */
.marumae_hall-application-inner{
  width: 95%;
  margin: 0 auto;
}

.marumae_hall-application-inner_list-flex{
  display: flex;
}
.marumae_hall-application-inner_list-left{
  width: 150px;
  border-bottom: 1px solid #333;
}
.marumae_hall-application-inner_list-right{
  width: 100px;
  border-bottom: 1px solid #333;
}



/* フッター前のマージン削除 */
article#post-10.article.post-10.page.type-page.status-publish.hentry{
	margin-bottom: 0;
}
/************************************************
/*
/* マルマエホール(ここまで)
/*
/************************************************/


/************************************************
/*
/* マルマエ音楽ホール(ここから)
/*
/************************************************/
/***** 概要施設 *****/
.marumae_hall-facility-modal_wrap{
  display: flex;
  justify-content: space-between;
}
.marumae_hall-facility-modal_wrap-left{
  width: 50%;
}
.marumae_hall-facility-modal_wrap-right{
  width: 50%;
}

/***** マルマエホール出水の使用料 *****/
.marumae_hall-fee-graf{
  text-align: center;
}



/* フッター前のマージン削除 */
article#post-14.article.post-14.page.type-page.status-publish.hentry{
	margin-bottom: 0;
}
/************************************************
/*
/* マルマエ音楽ホール(ここまで)
/*
/************************************************/



/************************************************
/*
/* 中央公民館(ここから)
/*
/************************************************/
/* トップタイトル */
.marumae_izumi_community-content_title{
  text-align: center;
}

/***** 施設概要 *****/
.marumae_izumi_community-summary_flex{
  display: flex;
  justify-content: space-between;
}
.summary-left-flex_inner p, .summary-right-flex_inner p{
  margin-bottom: 0;
	line-height: 250%;
}
.marumae_izumi_community-summary_picflex{
	margin-bottom: 1.8rem;
}

/* 左側 */
.marumae_izumi_community-summary-flex_left{
  width: 45%;
  margin-left: 30px;
}
.summary-left-flex_inner{
  display: flex;
}
.summary-left-flex_inner-left{
  width: 40%;
  border-bottom: 1px solid #333;
}
.summary-left-flex_inner-right{
  width: 60%;
  border-bottom: 1px solid #333;
}
.graybutton{
	margin-top: 1.8rem;
	margin-bottom: 1.8rem;
}

/* 右側 */
.marumae_izumi_community-summary-flex_right{
  width: 45%;
}
.summary-right-flex_inner{
  display: flex;
}
.summary-right-flex_inner-left{
  width: 40%;
  border-bottom: 1px solid #333;
}
.summary-right-flex_inner-right{
  width: 60%;
  border-bottom: 1px solid #333;
}

.marumae_izumi_community-summary_picflex{
  display: flex;
  justify-content: space-between;
}
.marumae_izumi_community-summary_picflex-left{
  width: 45%; 
}
.marumae_izumi_community-summary_picflex-right{
  width: 45%; 
}


/***** 出水市中央公民館の使用料 *****/
.marumae_izumi_community-fee_list{
  text-align: center;
	width: 80%;
    margin: 0 auto;
    padding-bottom: 1.8rem;
}
.marumae_izumi_community-fee_caution{
  width: 95%;
  margin: 0 auto;
}
.marumae_izumi_community-fee_ol{
  margin-left: 1.5%;
}
.marumae_izumi_community-fee_ol p{
  margin-bottom: 0;
}

/* お申込みについて */
.marumae_izumi_community-app-inner_wrap{
	margin-bottom: 1.8rem;
}
.marumae_izumi_community-app-inner_flex{
  display: flex;
}
.app-inner_flex-left{
  width: 30%;
  border-bottom: 1px solid #333;
}
.app-inner_flex-right{
  width: 40%;
  border-bottom: 1px solid #333;
}

.marumae_izumi_community-app-inner{
  width: 95%;
  margin: 0 auto;
}
.marumae_izumi_community-app-inner p{
  margin-bottom: 0;
}
.marumae_izumi_community-app-inner_ol{
  margin-left: 1.5%;
}


/* インスタ */
div.footer_insta{
	width: 100%;
	text-align: center;
}
img.insta_logo{
	width: 100px;
	height: auto;
}

/* フッター前のマージン削除 */
article#post-16.article.post-16.page.type-page.status-publish.hentry{
	margin-bottom: 0;
}


/************************************************
/*
/* 中央公民館(ここまで)
/*
/************************************************/


/************************************************
/*
/* 申請書ダウンロード (ここから)
/*
/************************************************/
.appform-list{
	margin-top: 1.62em;
	margin-bottom: 1.62em;
}
.appform-list p{
	margin-bottom: 0;
}
.appform-list a{
	text-decoration: none;
	color: #333;
}

/* フッター前のマージン削除 */
article#post-86.article.post-86.page.type-page.status-publish.hentry{
	margin-bottom: 0;
}
/************************************************
/*
/* 申請書ダウンロード(ここまで)
/*
/************************************************/



/************************************************
/*
/* 出水駅周辺施設：izumist(ここから)
/*
/************************************************/
/***** トップカバー ******/
.designated_top-img img{
  width: 100%;
  height: auto;
}
.designated_top-wrap{
  width: 100%;
  position: relative;
}
.designated_top-text{
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  text-align: center;
}
.designated_top-text p{
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 3px 3px 3px #555;
}

/***** 共通設定 ******/
.izumi_facility-common_wrap{
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}


/***** トップタイトル *****/
.izumi_facility_about-title{
  text-align: center;
}
.izumi_facility_about-section{
	animation: start-fadein 1.0s ease-in-out;
}

/***** 施設概要 ******/
/* 東口 */
.izumi_facility-east-detail{
  text-align: center;
  margin: 0 auto;
  padding-bottom: 1.8rem;
}
.izumi_facility-east-detail img{
  width: 80%;
  height: auto;
  object-fit: cover;
}
.izumi_facility-east p{
  width: 95%;
  margin: 0 auto;
  padding-bottom: 1.8rem;
}
/* 西口 */
.izumi_facility-west-detail_flex{
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
  text-align: center;
}
.izumi_facility-west-detail_flex-left{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.izumi_facility-west-detail_flex-right{
  width: 100%;
  height: auto;
  object-fit: cover;  
}
.izumi_facility-west p{
  width: 95%;
  margin: 0 auto;
  padding-bottom: 1.8rem;
}


/***** 駐車場 *****/
/* フレックスの開始位置をずらす */
.izumi_parking-detail{
  width: 95%;
  margin: 0 auto;
  padding-bottom: 1.8rem;
}
/* フレックスの幅 */
.izumi_parking-detail-flex_wrap{
  display: flex;
  padding: 1% 0;
  width: 80%;
}
/* フレックスのライン */
.firstline{
  border-top: 0.5px solid #000;
}
.secondline{
  border-top: 0.5px solid #000;
  border-bottom: 0.5px solid #000;  
}
.thirdline{
  border-bottom: 0.5px solid #000;  
}
/* フレックスの幅調整 */
.izumi_parking-detail-flex_wrap-left{
  width: 30%;
}
.izumi_parking-detail-flex_wrap-left p{
	margin-bottom: 0;
}
.izumi_parking-detail-flex_wrap-center{
  width: 20%;
}
.izumi_parking-detail-flex_wrap-center p{
	margin-bottom: 0;
}
.izumi_parking-detail-flex_wrap-right{
  width: 50%;
}
.izumi_parking-detail-flex_wrap-right p{
	margin-bottom: 0;
}


.izumi_parking-map{
  text-align: center;
  margin: 1.8rem 0;
}
.izumi_parking-map img{
	border: 1px solid #333;
}

/* 月極のオーダーリスト */
.izumi_parking-monthly-text{
  width: 95%;
  margin: 0 auto;
}


/***** 駐輪場 *****/
.izumi_bicycles-boxwrap{
	margin-bottom: 3%;
}
.izumi_bicycles-picwrap{
  padding-left: 2%;
}


/***** 多目的広場 *****/
.izumi_multipurpose-text, .izumi_multipurpose-request{
  width: 95%;
  margin: 0 auto;
}
.izumi_multipurpose-pic{
  text-align: center;
  padding-bottom: 1.8rem;
}

a.downloadlink{
  color: #333;
  text-decoration: none;
}
.izumi_appform_no2, .izumi_appform_izumi{
  width: 95%;
  margin: 0 auto;
  padding-bottom: 1.62em;
}
.izumi_appform_no2 p, .izumi_appform_izumi p{
	margin-bottom: 0;
}

.izumi_contact-text{
  width: 95%;
  margin: 0 auto; 
}
.izumi_contact_TEL{
  width: 95%;
  margin: 0 auto; 
}
.izumi_contact_TELtitle{
  font-size: 1.2rem;
  font-weight: bold;
}
.izumi_contact_TELno{
  font-size: 1.5rem;
  font-weight: bold; 
}


/* フッター前のマージン削除 */
article#post-18.article.post-18.page.type-page.status-publish.hentry{
	margin-bottom: 0;
}

/************************************************
/*
/* 出水駅周辺施設：izumist(ここまで)
/*
/************************************************/


/************************************************
/*
/* ほたるの湯 (ここから)
/*
/************************************************/
h3.hotaru_h3.responsive_before{
	display: block;
}
h3.hotaru_h3.responsive_after{
	display: none;
}

/***** 施設概要 *****/
.hotaru_facility-wrap{
	display: flex;
	justify-content: space-around;
	padding-left: 20px;
	margin-bottom: 1.8rem;
}
/* 左側 */
.hotaru_facility-detail-left{
	width: 50%;
}
.hotaru_facility-detail-flex_wrap{
	display: flex;
}
.hotaru_facility-detail-flex_wrap p{
	margin-bottom: 0;
	line-height: 250%;
}
.hotaru_facility-detail-flex_wrap-left{
	width: 35%;
}
.hotaru_facility-detail-flex_wrap-right{
	width: 65%;
}
/* 右側 */
.hotaru_facility-detail-right{
	width: 50%;
	text-align: center;
}

/***** 料金 *****/
.hotaru_price-table_flex{
	display: flex;
	padding-left: 20px;
}
.hotaru_price-table_flex p{
	margin-bottom: 0;
	line-height: 250%;
}
.hotaru_price-table_flex-1st{
	width: 15%;
}
.hotaru_price-table_flex-2nd{
	width: 45%;
}
.hotaru_price-table_flex-3rd{
	width: 15%;
}
.hotaru_price-table_flex-3rd p{
	padding-left: 20px;
}
.hotaru_price-table_flex-4th{
	width: 20%;
}
.txtcentering{
	text-align: center;
}


/* フッター前のマージン削除 */
article#post-20.article.post-20.page.type-page.status-publish.hentry{
	margin-bottom: 0;
}

/************************************************
/*
/* ほたるの湯 (ここまで)
/*
/************************************************/






/************************************************
/*
/* お知らせ (ここから)
/*
/************************************************/
a.new-entry-card-link.widget-entry-card-link.a-wrap{
	background-color: #FBF6EE;
	margin: 3% 0;
	border-radius: 10px;
}

aside#related-entries.related-entries.rect-entry-card, a.prev-post.a-wrap.border-element.cf, a.next-post.a-wrap.cf{
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;	
}
.pager-post-navi{
	margin-bottom: 0;
	padding-bottom: 1.5rem;
}

/* フッター前の余白削除 */
article#post-8.article.post-8.page.type-page.status-publish.hentry{
	margin-bottom: 0;
}

/************************************************
/*
/* お知らせ (ここまで)
/*
/************************************************/




/**************************************************
/
/ footer (ここから)
/
/**************************************************/
/* フッター前の余白削除 */
.footer {
    margin-top: 0;
}

/* footer頭 */
.footer-head-wrap{
	position: relative;
	margin-bottom: 0;
}
.footer-head{
	position: absolute;
	bottom: 0;
	/*
	background-image: url('http://3cubed.icurus.jp/wp-content/uploads/2024/10/footer_02.png');
	background-repeat: no-repeat;
	background-size: 100%;
	*/
}


/* footer本体 */
footer#footer.footer.footer-container.nwa{
	background-color: #D2B48C;
	height: 300px;
	position: relative;
}


/* 元々relativeだったところをキャンセル */
div.footer-bottom.fdt-logo.fnm-text-width.cf{
	position: static;
}
.footer-right{
	z-index: 10;
}

/* footerロゴ */
.footer-bottom-logo {
    float: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.footer-bottom-content {
    float: none;
}


/* インスタ欄 */
img.insta_logo{
	width: 50px;
	height: auto;
}
.footer_insta{
	text-align: center;
	margin-top: 30px;
}	
	

/* メニュー */
div#navi-footer-in.navi-footer-in{
	position: absolute;
	top: 40%;
	left: 0;
	right: 0;
	text-align: center;
}
.navi-footer-in > .menu-footer {
    justify-content: center;
}

/* コピーライト */
div.source-org.copyright{
	position: absolute;
	bottom: 20px;
	right: 70px;
}
/**************************************************
/
/ footer (ここまで)
/
/**************************************************/




/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
	
	/* レスポンシブ対応 */
	.responsive1023_before{
		display: none;
	}
	.responsive1023_after{
		display: block;
	}
	

	/************************************************
 	/*
  	/* Header (ここから)
  	/*
  	/************************************************/
	/* はみだすサブタイトルの消去 */
	div.tagline {
    	font-size: 0.2rem;
	}
	
	.mobile-header-menu-buttons {
        justify-content: space-around;
    }
	li.navi-menu-button.menu-button{
		width: auto;
	}
	span.custom-menu-icon.menu-icon{
		display: none;
	}
	
	/* ハンバーガーメニュー */
	span.fa.fa-bars{
		color: #fff;
	}
	span.navi-menu-caption.menu-caption{
		display: none;
	}
	label#navi-menu-open.menu-open.menu-button-in{
		background-color: rgba(210, 180, 140, 1.0);
		width: 40px;
		height: 40px;
		border-radius: 50%;
	}
	span.navi-menu-icon.menu-icon{
		line-height: 38px;
	}
	/************************************************
 	/*
  	/* Header (ここまで)
  	/*
  	/************************************************/

	
	
	
	/************************************************
 	/*
  	/* トップページ(ここから)
  	/*
  	/************************************************/
 	.management_facility-content_flex-box1{
		height: 250px;
		width: 250px;
 	 }
  	.management_facility-content_flex-box2{
		height: 250px;
		width: 250px;
		position: relative;
 	 }
  	.management_facility-content_flex-box3{
		height: 250px;
		width: 250px;
	}
	
	/* カラーボックス設定(形) */
	.color-box_yellow{
		height: 200px;
  		width: 200px;
  		border: 2px solid #FFFF99;
  		border-radius: 10px;
	}
	.color-box_pink{
  		height: 100px;
  		width: 100px;
  		border: 2px solid #FFD1CC;
  		border-radius: 6px; 
	}
	.color-box_pink_big{
  		height: 150px;
  		width: 150px;
  		border: 2px solid #FFD1CC;
  		border-radius: 10px;
  		z-index: -1;
	}
  /************************************************
  /*
  /* トップページ(ここまで)
  /*
  /************************************************/
	

	/************************************************
	/*
	/* マルマエホール出水(ここから)
	/*
	/************************************************/
	/***** イベント情報 *****/
	.marumae_izumi-events_flex {
		display: block;
	}
	.marumae_izumi-events_title {
    	width: 90%;
		margin: 0 auto;
	}
	.marumae_izumi-events_title p {
		text-align: center;
	}
	.marumae_izumi-events_thumb{
		width: 100%;
	}
	.marumae_izumi-events_more {
    	width: 100%;
	}
	.marumae_izumi-events_more-p {
    	bottom: -30px;
		right: 5px;
	}
	
	/***** マルマエホール出水の施設 *****/
	.marumae_izumi_facility-content_flex {
    	display: block;
	}
	.marumae_izumi_facility-content_flex-box1{
		display: block;
		margin: 0 auto;
		height: 250px;
		width: 250px;
	}
	.marumae_izumi_facility-content_flex-box2{
		display: block;
		margin: 0 auto;
		height: 250px;
		width: 250px;
	}
	.marumae_izumi_facility-content_flex-box3{
		display: block;
		margin: 0 auto;
		height: 250px;
		width: 250px;
	}


	/************************************************
	/*
	/* マルマエホール出水(ここまで)
	/*
	/************************************************/
	 

	/************************************************
	/*
	/* マルマエホール(ここから)
	/*
	/************************************************/
	/* 施設概要 */
	.marumae_hall-facility-flex {
		display: block;
	}
	.marumae_hall-facility-flex_left{
		width: 100%;
	}
	.marumae_hall-facility-flex_right {
		width: 100%;
	}
	
	/* 客席、舞台、ホワイエ、外観 */
	.marumae_hall-facility-imgflex{
		display: block;
	}
	.marumae_hall-facility-imgflex_left{
		width: 100%;
	}
	.marumae_hall-facility-imgflex_right{
		width: 100%;
	}
	/************************************************
	/*
	/* マルマエホール(ここまで)
	/*
	/************************************************/

	
	
	/************************************************
	/*
	/* マルマエ音楽ホール(ここから)
	/*
	/************************************************/
	.marumae_hall-facility-modal_wrap{
		display: block;
	}
	.marumae_izumi_community-summary_picflex-left {
		width: 100%;
	}
	.marumae_izumi_community-summary_picflex-right{
		width: 100%;
	}
	/************************************************
	/*
	/* マルマエ音楽ホール(ここまで)
	/*
	/************************************************/


	/************************************************
	/*
	/* 中央公民館(ここから)
	/*
	/************************************************/
	.marumae_izumi_community-summary_picflex{
		display: block;
	}
	.summary_picflex-left {
    	width: 100%;
	}
	.summary_picflex-right {
    	width: 100%;
	}

	/************************************************
	/*
	/* 中央公民館(ここまで)
	/*
	/************************************************/
	
	
	/************************************************
	/*
	/* 出水駅周辺施設：izumist(ここから)
	/*
	/************************************************/	
    /* 施設概要 */
	.izumi_facility-west-detail_flex {
    	display: block;
		width: 95%;
		margin: 0 auto;
		text-align: center;
	}
	.izumi_facility-west-detail_flex-left {
		margin-bottom: 1.8rem;
	}
	/************************************************
	/*
	/* 出水駅周辺施設：izumist(ここから)
	/*
	/************************************************/	
	
	
	/************************************************
	/*
	/* footer(ここから)
	/*
	/************************************************/		
	
	
	div.footer-right{
		margin-top: 65px;
	}
	div.source-org.copyright{
		right: 0;
		left: 0;
		margin: 0 auto;
	}
	/************************************************
	/*
	/* footer(ここまで)
	/*
	/************************************************/		
	
}


/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
　/************************************************
  /*
  /* トップページ(ここから)
  /*
  /************************************************/
  /* お知らせ */
	.top-info_flex{
    	display: block;
	}
	.top-info_flex-left{
		width: 100%;
		text-align: center;
	}
	.top-info_flex-right{
		width: 100%;
	}
  
	/* 指定管理施設 */
	.spacer30-sp{
		display: block;
	}
	.management_facility-content_flex{
		display: block;
	}
	.management_facility-content_flex-box1{
		height: 300px;
		width: 300px;
		margin: 0 auto;
		display: block;
	}
	.management_facility-content_flex-box2{
		height: 300px;
		width: 300px;
		position: relative;
		margin: 0 auto;
		display: block;
	}
	.management_facility-content_flex-box3{
		height: 300px;
		width: 300px;
		margin: 0 auto;
		display: block;
	}
  
	/* カラーボックス(黄色) */
	.color-box_yellow{
		z-index: -1;
	}
  /************************************************
  /*
  /* トップページ(ここまで)
  /*
  /************************************************/
  

	/************************************************
	/*
	/* 出水駅周辺施設：izumist(ここから)
	/*
	/************************************************/
	.designated_top-text {
    	top: 35%;
	}
	.designated_top-text p {
		font-size: 2rem;
	}
	/************************************************
	/*
	/* 出水駅周辺施設：izumist(ここまで)
	/*
	/************************************************/
	

	/************************************************
	/*
	/* 中央公民館(ここから)
	/*
	/************************************************/
	.marumae_izumi_community-summary_flex{
		display: block;
	}
	.marumae_izumi_community-summary-flex_left{
		width: 100%;
	}
	.marumae_izumi_community-summary-flex_right{
		width: 100%;
		margin-left: 30px;
	}
	/************************************************
	/*
	/* 中央公民館(ここまで)
	/*
	/************************************************/	
	

	/************************************************
	/*
	/* footer(ここから)
	/*
	/************************************************/	
	/* インスタ欄 */
	div.footer_insta{
		margin-top: 55px;
	}
	img.insta_logo{
		width: 50px;
	}
	div#navi-footer-in.navi-footer-in {
	    top: 180px;
	}
	/************************************************
	/*
	/* footer(ここまで)
	/*
	/************************************************/	
	
	
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
	/**************************************************
	/
	/ 全体装飾 (ここから)
	/
	/**************************************************/
	/* 見出し */
	h2 {
		position: relative;
		color: #000;
		display: inline-block;
		margin: 47px 0;
		font-size: 2.5rem;
		text-shadow: 2px 3px 3px rgba(210, 180, 140, 0.5);
	}
	h2:before {
		content: "";
		position: absolute;
		background: rgba(210, 180, 140, 0.7);
		width: 50px;
		height: 50px;
		border-radius: 50%;
		top: 50%;
		left: 0;
		-webkit-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
		z-index: -1;
	}
	.article h3 {
		padding: 0.5em;
		display: inline-block;
		line-height: 1.3;
		border-radius: 40px 0px 0px 40px;
		font-size: 1.2rem;
	}
	
	
	.article h4{
		width: 70%;
	}
	h4.longh4{
		width: 90%;
	}
	h4.wideh4{
		width: 100%;
	}
	
	.article h5 {
		font-size: 1rem;
	}
	
	
	/* レスポンシブ対応 */
	.responsive_before{
		display: none;
	}
	.responsive_after{
		display: block;
	}
	
	/**************************************************
	/
	/ 全体装飾 (ここまで)
	/
	/**************************************************/
	
	/************************************************
	/*
	/* トップページ(ここから)
	/*
	/************************************************/
	/* お知らせ */
	.top-info_flex{
		display: block;
	}
	.top-info_flex-left{
		width: 100%;
	}
	.top-info_flex-left p{
		margin-bottom: 1rem;
	}
	.top-info_flex-right{
		width: 100%;
	}
	
	.top-all_wrap{
		position: static;
	}
	.color-box_yellow{
		display: none;
	}
	.color-box_pink{
		display: none;
	}
	.color-box_pink_big{
		display: none;
	} 	
	
	/* テキスト部分 */
	.management_facility-about_text {
    	width: 90%;
	}
	
	/************************************************
	/*
	/* トップページ(ここまで)
	/*
	/************************************************/

	
	/************************************************
	/*
	/* マルマエホール出水(ここから)
	/*
	/************************************************/
	
	.widget-entry-cards.card-large-image figure img {
		object-fit: contain;
	}
	.marumae_izumi-events_more {
    	width: 100%;
	}
	.marumae_izumi-events_more-p {
    	bottom: -30px;
		right: 5px;
	}
	
	/* お知らせ */
	/* マルマエホール出水の固有設定
 	.cat-label{
		display: none;
	}
	a.new-entry-card-link.widget-entry-card-link.a-wrap {
		background-color: transparent;
	}
	*/
	
	/************************************************
	/*
	/* マルマエホール出水(ここまで)
	/*
	/************************************************/
	
	
	/************************************************
	/*
	/* マルマエホール(ここから)
	/*
	/************************************************/
	
	.marumae_hall-facility-flex_left, .marumae_hall-facility-flex_right-box{
		font-size: 0.8rem;
	}
	
	.marumae_hall-fee-graf {
		width: 100%;
	}

	/* 付属設備の使用料 */
	.marumae_hall-Includedfee-box {
		font-size: 0.8rem;
	}
	.marumae_hall-Includedfee-box_flex1{
		width: 40%;
	}
	.marumae_hall-Includedfee-box_flex2{
		width: 10%;
	}
	.marumae_hall-Includedfee-box_flex3{
		width: 25%;
	}
	.marumae_hall-Includedfee-box_flex4{
		width: 25%;
	}
	
	
	.marumae_izumi_contact-flex_left{
		width: 30%;
	}
	.marumae_izumi_contact-flex_right {
		width: 70%;
	}
	
	/* モーダルの無効化 */
	.map_pop1{
		display: none;
	}

	/************************************************
	/*
	/* マルマエホール(ここまで)
	/*
	/************************************************/	
	
	/************************************************
	/*
	/* 中央公民館(ここから)
	/*
	/************************************************/

	.marumae_izumi_community-summary-flex_left{
		margin-left: 0;
	}
	.marumae_izumi_community-summary-flex_right{
		margin-left: 0;
	}
	
	/************************************************
	/*
	/* 中央公民館(ここまで)
	/*
	/************************************************/		
	
	/************************************************
	/*
	/* 出水駅周辺施設：izumist(ここから)
	/*
	/************************************************/
	.designated_top-text {
    	top: 25%;
	}
	.designated_top-text p {
		font-size: 1.5rem;
	}
	
	/***** 駐車場 *****/
	/* フレックスの開始位置をずらす */
	.izumi_parking-detail{
	  	width: 95%;
	  	margin: 0 auto;
	  	padding-bottom: 1.8rem;
		overflow-x: scroll;
    	white-space: nowrap;
		font-size: 0.8rem;
	}
	/* フレックスの幅調整 */
	.izumi_parking-detail-flex_wrap-left, .izumi_parking-detail-flex_wrap-left p{
	}
	.izumi_parking-detail-flex_wrap-center, .izumi_parking-detail-flex_wrap-center p{
	}
	.izumi_parking-detail-flex_wrap-right, .izumi_parking-detail-flex_wrap-right p{
	}
	.izumi_parking-detail-flex_wrap{
		width: 700px;
	}
		
	/* 表の真ん中空白を削除 */
	.responsive_remove{
		display: none;
	}
	/************************************************
	/*
	/* 出水駅周辺施設：izumist(ここまで)
	/*
	/************************************************/
	
	
	/************************************************
	/*
	/* ほたるの湯 (ここから)
	/*
	/************************************************/
	.hotaru_h3{
		text-align: center;
	}
	h3.hotaru_h3.responsive_before{
		display: none;
	}
	h3.hotaru_h3.responsive_after{
		display: block;
	}
	/***** 概要 *****/
	.hotaru_facility-wrap{
		display: block;
	}
	.hotaru_facility-detail-left {
		width: 100%;
	}
	.hotaru_facility-detail-right {
		width: 100%;
		margin-top: 1.8rem;
	}
	/***** 料金 *****/
	.hotaru_price-table_wrap {
		font-size: 0.7rem;
	}
	.hotaru_price-table_flex{
		padding-left: 0;
	}
	.hotaru_price-table_flex p{
		line-height: 150%;
	}
	.hotaru_price-table_flex-3rd p{
		padding-left: 0;
	}

	.hotaru_price-table_flex-1st{
		width: 15%;
	}
	.hotaru_price-table_flex-2nd{
		width: 45%;
	}
	.hotaru_price-table_flex-3rd{
		width: 20%;
	}
	.hotaru_price-table_flex-3rd p{
		padding-left: 5px;
	}
	.hotaru_price-table_flex-4th{
		width: 15%;
	}
	
	/************************************************
	/*
	/* ほたるの湯 (ここまで)
	/*
	/************************************************/
	
	
	
	/************************************************
	/*
	/* 申請書ダウンロード (ここから)
	/*
	/************************************************/	
	h3.appform-title{
		font-size: 0.9rem;
	}
	h3.appform-title:before{
		top: 0;
	}
	/************************************************
	/*
	/* 申請書ダウンロード (ここまで)
	/*
	/************************************************/	
}
