/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments



--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

@media print, screen and (max-width:1070px) { 

html {
	font-family: "Jun 201", sans-serif;
	font-style: normal;
	font-size: 93%;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Box sizing
--------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #333333;
	font-family:inherit;
	font-size: 100%;
	line-height: 1.8;
	letter-spacing: 0.1em;
}
b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}
blockquote {
	margin: 0 1.5em 1.6em;
	padding: 15px;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
}
address {
	margin: 0 0 1.5em;
}
.pc_view {
	display: none;
}
.sp_view {
	display: block;
}



/* Elements
--------------------------------------------- */
body {
background-image: -webkit-linear-gradient(317deg, #fbdd97, #d3fbfb);
background-image: -o-linear-gradient(317deg, #fbdd97, #d3fbfb);
background-image: linear-gradient(47deg, #fbdd97, #d3fbfb);
	overflow-x: hidden;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
dt {
	font-weight: 700;
}
dd {
	margin: 0 1.5em 1.5em;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}
img {
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}
figure {
	margin: 1em 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
/*SP用の要素を非表示*/
.pc_show {
	display: none !important;
}

/* Links
--------------------------------------------- */
a {
	color: #0066c0;
}
a:visited {
	color: #649ACB;
}
a:hover,
a:focus,
a:active {
	color: #014786;
	text-decoration: none;
}
a:focus {
	outline: none;
}
a:hover,
a:active {
	outline: 0;
}
/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.2em .5em 0.6em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: inherit;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}
select {
	border: 1px solid #ccc;
}
textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
main.contents_top {
	margin: 0 auto;
}

main .contents_page_inner {
	margin: 0 auto 50px;
	width: 92%;
}
main .contents_page_inner.page_2col {
}
main .contents_page_inner.page_2col article {
}
main .contents_page_inner.page_2col aside {
}

/*要素をコンテナから開放*/
.breaking-out {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}
/*子要素を内側にプレス*/
.press-inside {
	padding-right: calc(50vw - 50%);
	padding-left: calc(50vw - 50%);
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* header
--------------------------------------------- */
.header {
	display: flex;
	align-items: center;
	padding: 7px 10px 3px;
	min-height: 77px;
	background: #fff;
}
.header_inner {
	width: 65%;
	max-width: 270px;	
}


/* Navigation
--------------------------------------------- */
/*ボタン外側*/
.openbtn{
	position: fixed;
	top: 11px;
	right: 8px;
	cursor: pointer;
    width: 58px;
    height:58px;
	z-index: 20;
}
/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 4px;
	background: #000;
  	width: 50%;
  }
.openbtn span:nth-of-type(1) {
	top:12px;	
}
.openbtn span:nth-of-type(2) {
	top:21px;
}
.openbtn span:nth-of-type(3) {
	top:30px;
}
.openbtn span:nth-of-type(3)::after {
	content:"MENU";/*3つ目の要素のafterにメニュー表示を指定*/
	position: absolute;
	top:6px;
	left:-14px;
	width: 60px;
	text-align: center;
	font-family: "Jun 201", sans-serif;
	color: #000;
	font-size: 60%;
}


/*activeクラスが付与されると線が回転して×になり、メニュー⇒とじるに変更*/
.openbtn.active span:nth-of-type(1) {
    top: 15px;
    left: 14px;
    transform: translateY(6px) rotate(-45deg);
    width: 52%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 27px;
    left: 14px;
    transform: translateY(-6px) rotate(45deg);
    width: 52%;
}
.openbtn.active span:nth-of-type(3)::after {
	content:"CLOSE";/*3つ目の要素のafterにとじる表示を指定*/
    transform: translateY(0) rotate(-45deg);
	position: absolute;
	top:8px;
	left:1px;
	width: 60px;
	text-align: center;
}

/*ナビメニュー*/
.sp_nav {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 11;
    background-color: #fff;
    width: 100%;
    height: 100%;
	overflow-y: auto;
}
.sp_nav_header {
	display: flex;
	align-items: center;
	padding: 7px 10px 3px;
	min-height: 77px;
	background: #fff;
}
.sp_nav_title {
	width: 65%;
    max-width: 270px;
}


.sp_nav_wrap{
    display: flex;
    justify-content: center;
	padding: 20px 0 90px;
    width: 100%;
}
.sp_nav ul.sp_nav_menu {
	margin: 0 auto;
	width: 88%;
	background: #fff;
}

/*リンクのスタイル*/
.sp_nav a,
.sp_nav a:hover,
.sp_nav a:active,
.sp_nav a:visited {
	color: #222;
	text-decoration: none;
	font-family: "Jun 501", sans-serif;
	font-size: 110%;
	letter-spacing: 0.08em;
}

/*メニュー*/
.sp_nav ul.sp_nav_menu li {
	position: relative;
	border-bottom: 1px solid #ddd;
}
.sp_nav ul.sp_nav_menu li:after {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -1px;
	right: 0;
	width: 10%;
	height: 3px;
	background: #007A88;
}
.sp_nav ul.sp_nav_menu li a {
	display: block;
	padding: 15px 5px 11px 35px;
}
.sp_nav ul.sp_nav_menu li a:before {
	content: "";
	position: absolute;
	top: 21px;
	left: 5px;
	display: inline-block;
	background: url("images/headers/navlist_sp.svg")no-repeat;
	background-size: contain;
	width: 20px;
	height: 29px;
}

/* TOP　コンテンツ
--------------------------------------------- */
/*共通*/
h2.h2_top {
	margin: 0 auto 10px;
	padding-top: clamp(20px, 7.1vw, 49px);
	width: 98%;
	max-width: 630px;
	height: clamp(50px, 25.5vw, 163px);
	color: #000;
	font-family: "Jun 501", sans-serif;
	font-size: clamp(115%,5vw,180%);
	font-weight: 500;
	letter-spacing: 0.1em;
	text-align: center;
	background: url("images/pages/toph2_balloon.svg")no-repeat;
	background-size: contain;
}
section {
	padding: 35px 0;	
}

.mv {
	width: 100%;
	height: 500px;
	background: #ddd;
}
.gmap_iframe {
    width: 100%;
	height: 500px;
}



/* TOPコンテンツ Vamosの紹介
--------------------------------------------- */
section.vamos {

}
section.vamos h3 {
	margin: 20px 0;
	font-family: "Jun 501", sans-serif;
	font-size: 140%;
}
.vamos_innerbox {
	margin: 20px auto;
	width: 92%;
}
.vamos_innerbox .txt {
	/*width: 43%;*/
}
.vamos_innerbox .pic {
	/*flex: 1;*/
}

.vamos_innerbox .txt p {
	font-size: 93%;
}
.vamos_innerbox .pic .frame {
	position: relative;
	margin: 0 auto;
	max-width: 700px;
	overflow: hidden;
	aspect-ratio: 52/50;
}
.vamos_innerbox .pic .frame img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.vamos_innerbox .pic .frame:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.vamos_innerbox_naiyou {
	margin: 20px auto;
	width: 90%;
}

/* TOPコンテンツ インスタグラム
--------------------------------------------- */
section.insta {
	height: 400px;
	padding:0 20px;
	margin: 0 0 220px;
}
section.insta h2 span:before {
	content: "";
	display: inline-block;
	position: relative;
	top: 0.2em;
	left: -6px;
	background: url("icon/instagram_50x50.png")no-repeat;
	background-size: contain;
	width: 1.2em;
	height: 1.2em;
}

/* TOPコンテンツ お知らせ・カレンダー
--------------------------------------------- */
section.news {
}

.news_innerbox {
	margin: 0 auto;
} 
.news_wrapper {

}
.event_wrapper {

}
.news_wrapper ul {
	margin: 0 auto;
	width: 92%;
}
.category .news_wrapper ul {
	width: 100%;
}
.news_wrapper ul li.news_box {
	border-bottom: 1px dashed #5D5D5D;
	padding: .7em .5em;
}
.news_wrapper ul li.news_box time.date span {
	position: relative;
	display: inline-block;
	padding-left: 15px;
}
.news_wrapper ul li.news_box time.date span:after {
	content: "■";
	position: absolute;
	left: 0;
	top: .4em;
	color: #48B6D9;
	font-size: 70%;
}
.news_wrapper ul li.news_box .title {
	line-height: 1.5;
}

/*リンク色*/
.news_wrapper ul li.news_box a,
.news_wrapper ul li.news_box a:visited {
	color: #222;
	transition: all .1s;
}
.news_wrapper ul li.news_box a:hover,
.news_wrapper ul li.news_box a:active {
	color: #888;
	text-decoration: none;
	transition: all .1s;
}
img.mark_new {
	position: relative;
	top: -.1em;
    right: 0px;
}

/*過去一覧*/
.news_more {
	margin: 20px 5%;
	text-align: right;
}
.news_more a {
	padding-left: 10px;
	color: #000;
	text-decoration: none;
}
.news_more a:before {
	content: "";
	display: inline-block;
	position: relative;
	top: 1px;
	left: -7px;
	width: 15px;
	height: 15px;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	background: #77c156;
	transition: all .1s;
}
.news_more a:hover,
.news_more a:active {
	transition: all .1s;
	color: #D4E2A2;
}

/*行事カレンダーエリア*/
.event_wrapper {
	margin: 40px auto;
	padding: 0 0 1px;
	max-width: 600px;
	background: #77C9D2;
}
.event_head {
	padding: 13px 0;
	background-image: -webkit-linear-gradient(317deg, #fbdd97, #d3fbfb);
background-image: -o-linear-gradient(317deg, #fbdd97, #d3fbfb);
background-image: linear-gradient(47deg, #fbdd97, #d3fbfb);
	background-position: 50% 55%;
	background-size: cover;
}
.event_head h2 {
	margin-bottom: 7px;
	color: #000;
	font-size: 190%;
	font-family: "Jun 501", sans-serif;
	text-align: center;
	text-shadow: 2px 4px 5px rgba(255,255,255,0.75);
}
.event_head p.date {
	margin: 0 auto;
	padding: 0;
	width: 11em;
	font-size: 130%;
	font-family: "Jun 501", sans-serif;
	text-align: center;
    letter-spacing: 0.1em;
	background: rgba(255,255,255,0.7);
	border-radius: 30px;
}
.event_head p.date span {
	font-size: 120%;
}

/*月のカレンダー*/
.event_calendar {
	margin-bottom: 25px;
	padding: 4%;
}
#eo_fullcalendar_1 .fc-view-container table .fc-sun {
	color: #C70D35;
}
#eo_fullcalendar_1 .fc-view-container table .fc-sat {
	color: #1974E0;
}
.event_calendar .fc-right .fc-button-group:nth-child(1) button,
.event_calendar .fc-right .fc-button-group:nth-child(2) button {
	padding: 0 3px 3px;
	border-radius: 30px;
}
.event_calendar .fc-right .fc-button-group:nth-child(3) button {
	color: #fff;
	font-family: "Jun 501", sans-serif;
	background: #077F8C;
}

/*直近の行事*/
.upcoming_events {
	margin: 4%;
	padding: 0 2% 2%;
	font-family: "Jun 501", sans-serif;
	background: #fff;
}
.upcoming_events h2 {
	position: relative;
	top: -8px;
	left: -15px;
	padding: 5px;
	width: 8em;
	color: #fff;
	text-align: center;
	background: #39B200;
}
.upcoming_events ul.typesquare_option {
	color: #226B00;
}
.upcoming_events ul.typesquare_option li {
	padding: 8px;
	border-bottom: 1px dotted #777;
}
.upcoming_events ul.typesquare_option li a {
	color: #000;
}

/*バナー群*/
.top_bnrs {
	margin: 50px auto 0;
	width: 92%;
	max-width: 400px;
}
.top_bnrs div {
	margin-bottom: 20px;
}
@media print, screen and (min-width:600px) { 
.top_bnrs {
	display: flex;
	justify-content: space-around;
	column-gap: 5%;
	width: 85%;
	max-width: 1000px;
}
.top_bnrs div {
	flex: 1;
}
}

/* Posts and pages
--------------------------------------------- */
.entry-content p,
.widget_block p {
	margin-bottom: 30px;
}
.entry-content p strong,
.widget_block strong {
	font-family: "Jun 501", sans-serif;
}
.entry-content ul,
.entry-content ol,
.widget_block ul,
.widget_block ol {
	margin: 0 0 1.5em 1em;
}

.entry-content ul,
.widget_block ul {
	list-style: disc;
}

.entry-content ol,
.widget_block ol {
	list-style: decimal;
}

.entry-content li > ul,
.entry-content li > ol,
.widget_block li > ul,
.widget_block li > ol {
	margin-bottom: 0;
	margin-left: 1.2em;
}
.entry-content .entry_meta {
	margin: 0 10px 8px;
	text-align: right;
	font-size: 90%;
}

.sticky {
	display: block;
}

.post,
.page {
	margin: 0;
}

.updated:not(.published) {
	display: none;
}

/*.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
*/
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}


/* Posts and pages（見出し）
--------------------------------------------- */
/* H1 */
h1.entry-title,
h1.category_name {
	margin: 0 0 30px;
	padding: 8vw 4%;
	font-size: clamp(135%,4vw,180%);
	font-family: "Jun 501", sans-serif;
	text-align: center;
	background: url("images/headers/bg_header.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	letter-spacing: 0.08em;
	line-height: 1.4;
	-webkit-text-stroke: 5px #fff;
	text-stroke: 5px #fff;
	paint-order: stroke;
}

/* H2 */
.entry-content h2,
.widget_block h2 {
	margin: 40px 0 15px;
    padding: 9px;
    font-size: clamp(130%,4vw,150%);
    font-family: "Jun 501", sans-serif;
    line-height: 1.6;
    background: #FFFFFF;
    border-bottom: 6px solid;
    border-image: linear-gradient(to right, #d3fbfb, #fbdd97) 1;
    border-radius: 0 20px 0 0;
}
/* H3 */
.entry-content h3,
.widget_block h3 {
	margin: 20px 0 10px;
	padding: 0px 3px;
	font-size: clamp(110%,4vw,130%);
	font-family: "Jun 501", sans-serif;
	/*border-bottom: 1px dotted #999;*/
	line-height: 1.6;
}

/* Posts and pages（ページナビ）
--------------------------------------------- */
#page .wp-pagenavi {
	margin: 25px 0 0;
	font-size: 90%;
}
#page .wp-pagenavi span,
#page .wp-pagenavi a {
	display: inline-block;
	padding: 2px 7px !important;
	color: #222;
	border-radius: 4px;
	border: 1px solid #aaa;
}
#page .wp-pagenavi a 
,#page .wp-pagenavi a:visited {
	color: #222;
}
#page .wp-pagenavi a:hover
,#page .wp-pagenavi a:active {
	background: rgba(0,122,136,0.2);
	text-decoration: none;
	color: #222;
	border: 1px solid rgba(0,122,136,0.2);
}

#page .wp-pagenavi span.pages {
	text-align: center;
	border: none;
}
#page .wp-pagenavi span.current {
	color: #fff;
	font-family: "Jun 501", sans-serif;
	background: #007a88;
	border: 1px solid #007a88;
}

#page .wp-pagenavi span.extend {
border: none;
}

/* Posts and pages（イベント詳細）
--------------------------------------------- */
.eventorganiser-event-meta {
	margin: 35px 0 35px;
	padding: 1em .5em;
	border-top: 2px dotted #000;
	border-bottom: 2px dotted #000;
}
.eventorganiser-event-meta h2 {
	margin-bottom: 8px;
	padding: 0px 0 0px 30px;
	font-family: "Jun 501", sans-serif;
	font-size: 110%;
	background: url("images/headers/navlist_sp.svg")no-repeat;
	background-position: 0% 100%;
	
}
.eventorganiser-event-meta ul {
	list-style: circle;
	margin: 0 0 0 1.2em;
	line-height: 1.3;
}
.eventorganiser-event-meta ul li {
	margin: 5px 0;
}



/* Posts and pages（お問い合わせ）
--------------------------------------------- */
.inquiry_list {
	margin-top: 20px;
}
.inquiry_list p {
	margin-bottom: 0;	
}
.inquiry_list dt.inquiry_title {
	display: inline-block;
	margin: 25px 0 5px;
	width: 100%;
	vertical-align: top;
}

.inquiry_list dl dt p {
	margin-bottom:6px;
	font-family: "Jun 501", sans-serif;
}

.inquiry_list dd {
	display: inline-block;
	margin: 0px 0 15px;
	padding: 0;
	width: 100%;
}

.inquiry_list .must-txt {
	position: relative;
	top: -1px;
	left: 3px;
	padding: 0px 4px 1px;
	color: #fff;
	font-size: 60%;
	font-weight: 500;
	background: #db3b3b;
	border-radius: 2px;
	cursor: default;
	user-select: none;
}
.wpcf7-not-valid-tip {
	font-size: 80% !important;
}

.wpcf7-spinner {
	/*display: none;*/
}

.inquiry_list dl dd p span.wpcf7-form-control-wrap input {
	padding: 1px 10px 5px;
	width:100%;
}
.inquiry_list dl dd p span.wpcf7-form-control-wrap textarea {
	padding: 1px 10px 5px;
	width:100%;
}



.con_must {
	position: relative;
    top: -1px;
    left: 8px;
    display: inline;
    padding: 2px 6px;
    font-size: 11px;
    color: #cf1d05;
    border: 1px solid #cf1d05;
    user-select: none;
    line-height: 220%;
}
.must {
	position: relative;
	top: -.18em;
	left: 8px;
	display: inline;
	padding: 0 6px 2px;
	font-size: 11px;
	color: #cf1d05;
	border: 1px solid #cf1d05;
	user-select: none;
}
.wpcf7-text,
.wpcf7-textarea {
	font-size: 1.10em;
}

.recaptcha {
	margin: 50px 0 0;
	color: #777;
	font-size: 65%;
	line-height: 1.5em;
}
#agreement {
	margin-top: 50px;
}
#agreement p {
	text-align: center;
}
input[type="submit"].wpcf7-form-control,
input[type="button"].wpcf7-form-control {
	padding: 25px 55px;
	border: solid 1px #999999;
	font-size: 100%;
	font-weight: 600;
	letter-spacing: 0.25em;
	cursor: pointer;
}
input[type="button"].wpcf7-form-control {
	padding: 25px 40px;
	background: #f5f5f5;
}
input[type="submit"].wpcf7-form-control:hover,
input[type="button"].wpcf7-form-control:hover {
	background: #aaa;
	transition: all .2s;
}
input[type="submit"].wpcf7-form-control:active,
input[type="submit"].wpcf7-form-control:focus,
input[type="button"].wpcf7-form-control:active,
input[type="button"].wpcf7-form-control:focus {
	background: #ccc;
	border: solid 1px #999;
	transition: all .2s;
}
.con_inquiry {
	width: 100%;
	height: 12em;
}


/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* sidebar
--------------------------------------------- */
/* ▼side（これまでのお知らせ） */
aside .past_entry  {
	margin-top: 50px;
	padding: 15px 2%;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 0 8px rgba(0,0,0,0.2);
}
.past_entry h2 {
	position: relative;
	margin: 5px 0 15px;
	padding: 15px 5px 15px 45px;
	font-family: "Jun 501", sans-serif;
	font-size: 115%;
}
.past_entry h2:before {
	content: "";
	position: absolute;
	top: 14px;
	left: 15px;
	display: inline-block;
	background: url("images/headers/navlist_sp.svg")no-repeat;
	background-size: contain;
	width: 20px;
	height: 29px;
}
.past_entry ul.past_entry_list {
	margin: 0 4% 20px;
}
.past_entry ul li {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-bottom: 13px;
	padding:0 5px 10px 7px;
	border-bottom: 1px dotted #777;
}
.past_entry ul li time {
	order: 1;
	font-size: 80%;
}
.past_entry ul li a {
	order: 2;
	color: #000;
	font-size: 95%;
	line-height: 1.6;
}
.past_entry .more {
	margin: 0 10px;
	text-align: right;
}
.past_entry .more a {
	color: #000;
	font-size: 95%;
	font-family: "Jun 501", sans-serif;
	text-decoration: none;
}


/* Widgets
--------------------------------------------- */
/* ▼side（これまでのお知らせ） */
.recent_entry_list section {
	padding: 15px 20px;
	background: #fff6e9;
	border-radius: 10px;
	border: 1px solid #efe4d3;
}
.recent_entry_list a,
.recent_entry_list a:visited {
	color: #222;
	text-decoration: none;
}
.recent_entry_list a:hover,
.recent_entry_list a:active {
	color: #f99ea1;
	transition: all .2s;
}

.recent_entry_list h2 {
	margin: 10px 0 20px;
	font-size: 110%;
	font-weight: 500;
	text-align: center;
}
.recent_entry_list ul li {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
	padding: 0 8px 10px 15px;
	border-bottom: 1px dotted #555;
}
.recent_entry_list ul li:before {
	content: "●";
	position: absolute;
	top: .5em;
	left: 1px;
	color: #ffbbbd;
	font-size: .8em;
	
}
.recent_entry_list ul li time {
	order: 1;
	margin-bottom: 3px;
	font-size: 85%;
	font-weight: 500;
}
.recent_entry_list ul li a {
	order: 2;
	font-size: 90%;
}


.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}


/* footer
--------------------------------------------- */
#site_footer {
	padding: 30px 0 60px;
	background: url("images/footers/bg_footer.jpg") no-repeat;
	background-position: center;
}
.footer_innerwrap {
	margin: 0 auto;
	padding: 25px 3%;
	width: 92%;
	background: rgba(255,255,255,0.78);
	border-radius: 15px;
	text-align: center;
}

.footer_about p.footer_title {
	font-size: 135%;
	font-family: "Jun 501", sans-serif;
	letter-spacing: 0.07em;
	line-height: 1.3;
}
.footer_about p.footer_title_sub {
	margin: 3px 0 20px;
	font-size: 88%;
}
.footer_about p.footer_info {
	font-size: 78%;
	line-height: 1.4em;
}
.footer_about p.footer_info a.txtlink {
	display: inline-block;
}

/*フッターの共通スタイル*/
.footer_innerwrap a,
.footer_innerwrap a:visited {
	color: #222;
	text-decoration: none;
	font-size: 84%;
}
.footer_innerwrap a:hover,
.footer_innerwrap a:active {
	text-decoration: underline dotted #555;
}

/*コピーライト*/
#copyright {
	padding: 15px 0 15px;
	font-size: 60%;
	text-align: center;
	letter-spacing: 0.2em;
}
#copyright a,
#copyright a:visited {
	color: #222;
	text-decoration: none;
}
#copyright a:hover,
#copyright a:active {
	text-decoration: underline;
}

/*下部固定メニュー*/
.footer_area {
	display: flex;
	justify-content: space-around;
	position: fixed;
	/*padding:9px 0 4px;*/
	bottom: 0;
	width: 100%;
	background-color: #000;
background-image: -webkit-linear-gradient(317deg, #fbdd97, #d3fbfb);
background-image: -o-linear-gradient(317deg, #fbdd97, #d3fbfb);
background-image: linear-gradient(47deg, #fbdd97, #d3fbfb);
	overflow-x: hidden;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
	z-index: 10000;
}
.footer_area .footer_area_inner {
	flex: 1;
}
a.inquiry_btn {
	display: block;
	padding-bottom: 2px;
    text-align: center;
	text-decoration: none;
}
a.inquiry_btn img.tel {
	width: 19px;
	height: auto;
	margin-bottom: 5px;
	margin-top: 9px;
}
a.inquiry_btn img.contact {
	width: 27px;
	height: auto;
	margin-top: 16px;
	margin-bottom: 6px;
}
a.inquiry_btn img.event {
	width: 24px;
	height: auto;
	margin-top: 14px;
	margin-bottom: 5px;
}
a.inquiry_btn img.insta {
	width: 28px;
	height: auto;
	margin-top: 12px;
	margin-bottom: 3px;
}
a.inquiry_btn p {
	color: #007B66;
	font-size: 58%;
	line-height: 1.9;
}



/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875em;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/*PDFアイコン*/
a[href $='.pdf'] {
    background:url(icon/ico_pdf.gif) no-repeat right 70%;
    padding:0 18px 0 0;
}
a[href $='.pdf'] a {
    text-decoration:none;
}

a[href $='.pdf'] a:hover {
    text-decoration:none;
}

.bk_graph {
	width: 100%;
    margin: 20px auto 0;
    padding: 2em 1.5em;
    box-shadow: 0 4px 4px rgb(0 0 0 / 5%), 0 2px 3px -2px rgb(0 0 0 / 1%);
    background-image: linear-gradient(transparent calc(100% - 1px), #e6edf3 50%, #e6edf3), linear-gradient(90deg, transparent calc(100% - 1px), #e6edf3 50%, #e6edf3);
    background-size: 15px 15px;
    background-repeat: repeat;
    background-color: #ffffff;
    color: #333333;
    font-size: clamp(16px, 1.40vw, 22px);
}

.text-bold {
	font-family: "Jun 501", sans-serif;
}

.page_mv {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

}	background: url("images/footers/bg_footer.jpg") no-repeat;