/*!
Theme Name: 大東保育園
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: temp_base
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
>>> 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
--------------------------------------------- */ 
@media print, screen and (min-width:769px) { 

html {
	font-family: "tbudrgothic-std", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 96%;
	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;
	line-height: 1.7;
	letter-spacing: 0.08em;
}
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;
}
/* Elements
--------------------------------------------- */
body {
	background: #fff;
	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用の要素を非表示*/
.sp_show {
	display: none !important;
}

/*アニメーション*/
.anm_totop {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s, visibility 1s, transform .5s;
	transition-timing-function: ease-out;
}
.anm_totop_delay {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s, visibility 1s, transform .4s;
	transition-timing-function: ease-out;
	transition-delay: .2s;
}
.anm_totop_delay1 {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s, visibility 1s, transform .4s;
	transition-timing-function: ease-out;
	transition-delay: .3s;
}
.anm_totop_delay2 {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s, visibility 1s, transform .4s;
	transition-timing-function: ease-out;
	transition-delay: .6s;
}
.anm_totop_delay3 {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s, visibility 1s, transform .4s;
	transition-timing-function: ease-out;
	transition-delay: .9s;
}
.anm_toright {
	opacity: 0;
	visibility: hidden;
	transform: translateX(-30px);
	transition: opacity 1s, visibility 1s, transform .5s;
	transition-timing-function: ease-out;
}
.anm_toleft {
	opacity: 0;
	visibility: hidden;
	transform: translateX(30px);
	transition: opacity 1s, visibility 1s, transform .5s;
	transition-timing-function: ease-out;
}
/*きっかけで付与するクラス*/
.is-inview {
	opacity: 1;
	visibility: visible;
	transform: translate(0);
}

/* 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;
}
#page a:hover img,
.site_header a:hover img {
	opacity:0.78;
	-webkit-transition:0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
/* 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 5%;
	padding: 0 25px;
	width: 88%;
	max-width: 1400px;
}
main .contents_page_inner.page_2col {
	display: flex;
	justify-content: space-between;
	
}
main .contents_page_inner.page_2col article {
	width: 72%;
}
main .contents_page_inner.page_2col aside {
	margin-left: 6%;
	width: clamp(250px, 28%, 320px);
}

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

/* header
--------------------------------------------- */
.header {
	background-color: #fff;
	background-image: url("images/headers/bg_lefttop.png") , url("images/headers/bg_righttop.png");
	background-position: left top, right top;
	background-repeat: no-repeat, no-repeat;
	background-size: clamp(150px, 16vw, 303px);
}
.header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	margin: 0 auto;
	padding: 25px 0;
	width: 69%;
	max-width: 1280px;
}
.site_title {
	width: 43%;
}
.header_links {
	width: 50%;
}

ul.head_contect {
	display: flex;
	justify-content: flex-end;
	flex-wrap: nowrap;
	column-gap: 5px;
	margin-bottom: 10px;
}
ul.head_contect li.access {
	max-width: 7em;
    min-width: 7em;
}
ul.head_contect li.access a {
	position: relative;
	display: block;
	padding: 10px 0 0 25px;
	color: #000;
	text-decoration: none;
	transition: all .2s;
}
ul.head_contect li.access a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 5px;
	display: inline-block;
	background: url("images/headers/head_access.svg")no-repeat;
	width: 21px;
	height: 30px;
}
ul.head_contect li.access a:hover,
ul.head_contect li.access a:active {
	color: #979797;
	transition: all .2s;
}
/*パンくずリスト*/
#breadcrumb {
	margin: 0 auto 40px;
	padding: 15px 25px;
    width: 88%;
    max-width: 1400px;
	font-size: 73%;
	text-align: left;
}
#breadcrumb_inner a {
	color:#333;
	text-decoration: none;
}
#breadcrumb_inner a:hover,
#breadcrumb_inner a:active {
	color:#9CB52A;
	text-decoration:none;
}
#breadcrumb_inner .current-item {
	color:#333;
	text-decoration: none;
}
#breadcrumb_inner .circle_green {
	padding: 0 8px;
	color: #D0DE91;
	font-size: 85%;
}

/* Navigation
--------------------------------------------- */
.pc_nav {
	margin: 20px 0 10px;
	transition: all .2s;
}
.pc_nav_menu {
	display: flex;
	justify-content: space-around;
	flex-wrap: nowrap;
	margin: 0 auto;
	width: 100%;
	max-width: 1400px;
}
ul.pc_nav_menu li a {
	position: relative;
	display: block;
	padding: 9px 7px 9px 30px;
	color: #222;
	text-decoration: none;
	letter-spacing: 0.08em;
}
ul.pc_nav_menu li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 5px;
	background: url("images/headers/nav_list.svg")no-repeat;
	width: 21px;
	height: 33px;
}
ul.pc_nav_menu li a:hover,
ul.pc_nav_menu li a:active {
	color: #93AF0C;
	transition: all .2s;
}

/* TOP　コンテンツ
--------------------------------------------- */
.mv {
	width: 100%;
	height: auto;
}
.mv .metaslider #metaslider_438.flexslider {
	margin: 0;
}


/* TOP　コンセプト
--------------------------------------------- */
.concept {
	padding: 30px 0 14%;
	width: 100%;
	background: #fff url("images/pages/concept_bg.png")no-repeat;
	background-position: center bottom;
	background-size: contain;
}
.catchphrase {
	padding-top: 20px;
	background-image: url("images/pages/concept_bg_left.png") , url("images/pages/concept_bg_right.png");
	background-position: -1% 65%, 101% 20%;
	background-repeat: no-repeat, no-repeat;
	background-size: clamp(90px, 11vw, 193px);
}
.catchphrase_box {
	margin: 0 auto;
	max-width: 1200px;
	width: 82%;
	text-align: center;
}

/* TOP　お知らせ
--------------------------------------------- */
section.news {
	padding: 50px 0;
	background: #FAFFE2 url("images/pages/news_bg.png")no-repeat;
	background-position: center bottom;
}
section.news h2 {
	margin: 0 auto;
	width: 50%;
	text-align: center;
}
.news_innerbox {
	margin: 0 auto;
	padding: 30px 0;
	width: 83%;
	max-width: 1100px;
}

ul.news_wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 40px auto 0;
}
li.news_box {
	margin-bottom: 3.5%;
	margin-right: 2%;
	width: calc((100% - 4%) / 3);	
}
li.news_box:nth-child(3n) {
	margin-right: 0;
}
li.news_box > a {
	display: block;
}
/*アイキャッチ画像*/
li.news_box .news_thumb {
	overflow: hidden;
	aspect-ratio: 4/3;
	margin-bottom: 15px;
}
li.news_box .news_thumb img {
	width: 100%;
    height: 100%;
    object-fit: cover;
	border: 1px solid #e5e4e4;
    border-radius: 5px;
}
/*投稿タイトル*/
li.news_box p.title {
	padding-bottom: 8px;
	color: #5E4141;
	line-height: 1.4;
}
/*投稿日*/
li.news_box .date {
	display: inline-block;
	margin-right: 10px;
	color: #555555;
	font-size: 83%;
	vertical-align: bottom;
}
/*投稿カテゴリー*/
li.news_box .catname {
	display: inline-block;
	padding: 0 1em;
	color: #fff;
	font-size: 70%;
	border-radius: 30px;
	background: #8F6B6B;
}
/*リンク色*/
ul.news_wrapper li.news_box a,
ul.news_wrapper li.news_box a:visited {
	text-decoration: none;
	transition: all .1s;
	padding: 3%;
	border: 2px solid #faffe2;
}
ul.news_wrapper li.news_box a:hover,
ul.news_wrapper li.news_box a:active {
	color: #cb324c;
	background: rgba(223, 239, 139, 0.35);
	border-radius: 8px;
	border: 2px solid rgba(223, 239, 139, 1);
	transition: all .1s;
}
#page ul.news_wrapper li.news_box a:hover img,
#page ul.news_wrapper li.news_box a:active img {
	opacity: 1;
}
img.mark_new {
	position: relative;
	top: -.2em;
    right: 0px;
}
/*過去の一覧*/
.news_more {
	margin: 0 0 20px;
	text-align: center;
}
.news_more a {
	display: inline-block;
	padding: 0.2em 3em;
	color: #fff;
	background: #7BC445;
	text-decoration: none;
	border-radius: 15px;
	transition: all .2s;
}
.news_more a:hover,
.news_more a:active {
	background: #F1D120;
	transition: all .2s;
}

/* TOP　大東保育園ってどんなとこ
--------------------------------------------- */
section.about {
	padding: 40px 0;
	background: #fff;
}
section.about h2 {
	margin: 20px 0;
	text-align: center;
}
section.about h2 span {
	position: relative;
	color: #75880F;
	font-size: 230%;
	letter-spacing: 0.18em;
}
section.about h2 span:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: -15px;
    left: -93px;
	background: url("images/pages/h2_about_left.png")no-repeat;
	width: 91px;
	height: 93px;
}
section.about h2 span:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: -14px;
    right: -88px;
	background: url("images/pages/h2_about_right.png")no-repeat;
	width: 91px;
	height: 93px;
}

.about_wrap {
	margin: 0 auto;
	width: 94%;
	max-width: 1400px;
}
.outline {
	margin: 5% 15px 4%;
	display: flex;
	align-items: center;
	column-gap: 3.5%;
}
.outline .img_box {
	width: clamp(350px,40vw,520px);
}
.outline .txt_box {
	flex: 1;
}
.outline .txt_box p {
	color: #779C17;
	font-size: clamp(95%,1.5vw,110%);
	line-height: 1.9;
}

.circle_wrap {
	display: flex;
	column-gap: 2%;
	justify-content: space-around;
}
.circle_wrap .img02-2 {
	margin-top: 10%;
}
.circle_wrap .img02-3 {
	margin-top: 8%;
}
.circle_wrap .img02-4 {
	margin-top: 5%;
}
.circle_wrap figcaption {
	margin: 12px auto 0;
	max-width: 17em;
	font-size: clamp(70%,1.2vw,85%);
	text-align: center;
}

.outline_b {
	margin: 2% 6%;
	display: flex;
	align-items: center;
	column-gap: 3.5%;
}
.outline_b .img_box {
	width: clamp(300px,37vw,500px);
}
.outline_b .txt_box {
	flex: 1;
}
.outline_b .txt_box p {
	font-size: clamp(85%,1.5vw,100%);
	line-height: 1.9;
}

ul.about_btn {
	display: flex;
	justify-content: space-between;
	column-gap: 2%;
	margin: 6% auto 2%;
	width: 92%;
	max-width: 1400px;
}
ul.about_btn li {
	flex: 1;
	text-align: center;
}
ul.about_btn li a {
	display: inline-block;
	padding: 10px;
	font-size: 130%;
	color: #75880F;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: all .3s;
}
ul.about_btn li a:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	border-radius: 10px;
	transform: translateY(-13px);
	transition: all .3s;
}
#page ul.about_btn li a:hover img {
	opacity: 1;
}
ul.about_btn li a .txt_box {
	padding-top: 10px;
}

/* Posts and pages
--------------------------------------------- */
.entry-content p {
	margin-bottom: 1.6em;
}
.entry-content ul,
.entry-content ol {
	margin: 0 0 1.5em 3em;
}
.entry-content ul {
	list-style: disc;
}
.entry-content ol {
	list-style: decimal;
}
.entry-content li > ul,
.entry-content li > ol {
	margin-bottom: 0;
	margin-left: 1.2em;
}
.entry-content .entry_meta {
	margin: 0 10px 20px;
	text-align: right;
	font-size: 90%;
}
.sticky {
	display: block;
}
.updated:not(.published) {
	display: none;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Posts and pages（見出し）
--------------------------------------------- */
/* H1 */
h1.entry-title,
h1.category_name {
	position: relative;
	padding: 2em;
	font-size: 190%;
	color: #75880F;
	text-align: center;
	background: #FAFFE2;
	background-image: url("images/pages/pageh1_left_daito.svg") , url("images/pages/pageh1_right_daito.svg");
	background-position: left top, right top;
	background-repeat: no-repeat, no-repeat;
    background-size: clamp(150px, 15vw, 228px);
	letter-spacing: 0.15em;
}
.single h1.entry-title {
	font-size: 170%;
}
/* H2 */
.entry-content h2 {
	margin: 60px 0 15px;
	padding: 5px 20px;
    font-size: 150%;
	border:dotted 2px #5D9316;
	border-radius: 10px;
}
/* H3 */
.entry-content h3 {
	margin: 8px 0;
	padding:0 14px 6px;
	font-size: 120%;
	border-bottom:dotted 2px #5D9316;
}
/* H4 */
.entry-content h4 {
	font-weight: bold;
}


/* Posts and pages（ページナビ）
--------------------------------------------- */
#page .wp-pagenavi {
	margin: 30px 0 0;
	font-size: 86%;
}
#page .wp-pagenavi span,
#page .wp-pagenavi a {
	display: inline-block;
	padding: 3px 8px;
	color: #427200;
	font-size: 90%;
	text-decoration: none;
	border-radius: 50px;
	background: #B0DD72;
	border: 1px solid #b0dd72;
}
#page .wp-pagenavi a:hover
,#page .wp-pagenavi a:active {
	background: #D0E5B4;
	border: 1px solid #D0E5B4;
}
#page .wp-pagenavi span.pages,
#page .wp-pagenavi a.first,
#page .wp-pagenavi a.last {
	border-radius: 2px;
}
#page .wp-pagenavi span.current {
	color: #fff;
	background: #427200;
	border: 1px solid #427200;
}
#page .wp-pagenavi span.extend {
	background: none;
}
#page .wp-pagenavi a.previouspostslink,
#page .wp-pagenavi a.nextpostslink {
	border: 1px solid #b0dd72;
	background: #fff;
}

/* Posts and pages（お知らせ一覧）
--------------------------------------------- */
.archive ul.news_wrapper {
	max-width: 1100px;
}
.archive ul.news_wrapper li.news_box a {
	border: 2px solid #fff;
}
.archive ul.news_wrapper li.news_box a:hover,
.archive ul.news_wrapper li.news_box a:active {
	border: 2px solid rgba(223, 239, 139, 1);
}

/* Posts and pages（お問い合わせ）
--------------------------------------------- */
/*.inquiry_list {
	margin-top: 40px;
}
.inquiry_list dt.inquiry_title {
	display: inline-block;
	width: 13em;
	vertical-align: top;
}
.inquiry_list dd {
	display: inline-block;
	margin: 0;
	padding: 0;
	width: calc(100% - 14em);
}

.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%;
}
*/
/*.wpcf7-spinner {
	display: none;
}
*/

/*.recaptcha {
	margin: 50px 0 0;
	color: #777;
	font-size: 65%;
	line-height: 1.5em;
}
#agreement {
	margin-top: 30px;
}
#agreement p {
	text-align: center;
}
input[type="submit"].wpcf7-form-control,
input[type="button"].wpcf7-form-control {
	padding: 30px 110px;
	border: solid 1px #999999;
	font-size: 100%;
	font-weight: 600;
	letter-spacing: 0.25em;
	cursor: pointer;
}
input[type="button"].wpcf7-form-control {
	padding: 30px 60px;
	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_name,
.con_tel,
.con_address {
	width: 90%;
	max-width: 25em;
}
.con_inquiry {
	width: 100%;
	height: 12em;
}
*/

/* sidebar
--------------------------------------------- */
/* ▼side（これまでのお知らせ） */
.past_entry h2 {
	color: #75880f;
	font-size: 120%;
	text-align: center;
}
.past_entry ul.past_entry_list {
	margin: 30px 4%;
}
.past_entry ul li {
	position: relative;
	margin-bottom: 27px;
	padding:0 5px 0 18px;
}
.past_entry ul li:before {
	content: '●';
	position: absolute;
	top: .3em;
	left: 0;
	font-size: 60%;
	color: #d0de91;
}
.past_entry ul li time {
	display: block;
	font-size: 80%;
	color: #777;
}
.past_entry ul li a {
	color: #000;
	font-size: 90%;
}
.past_entry .more {
	margin: 15px 10px;
	text-align: center;
}
.past_entry .more a {
	display: inline-block;
	padding: 4px 3.5em;
	font-size: 73%;
	color: #fff;
	background: #7bc445;
	border-radius: 30px;
	text-decoration: none;
	transition: all .2s;
}
.past_entry .more a:hover,
.past_entry .more a:active {
	opacity: 0.75;
	transition: all .2s;
}

/* Widgets
--------------------------------------------- */
.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 {
	position: relative;
	background: #ECFFD2 url("images/footers/foot_bg.png")no-repeat;
	background-position: center calc(100% - 30px);
	background-size: contain;
}
.footer_innerwrap {
	display: flex;
	justify-content: space-between;
	column-gap: 2%;
	margin: 0 auto;
	padding: 30px 0 7%;
	width: 96%;
	max-width: 1400px;
}
.footer_about {
	width: 35%;
	max-width: 400px;
}
.footer_about .footer_title {
	margin: 15px 0;
}
.footer_about p.footer_info {
	margin-top: 5px;
	font-size: 78%;
	line-height: 1.5em;
}
.footer_about p.footer_info a.txtlink {
	display: inline-block;
}
.footer_menu ul.nav {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	column-gap: 1.5em;
	margin: 0 0 0 auto;
	padding: 18px 0;
}
.footer_menu ul.nav li a {
	position: relative;
	padding-left: 0.9em;
}
.footer_menu ul.nav li a:before {
	content: "■";
	position: absolute;
	left: 0;
    top: 0.7em;
	color: #427200;
	font-size: 50%;
}

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

/*コピーライト*/
#copyright {
	padding: 10px 0 8px;
	font-size: 55%;
	text-align: center;
	letter-spacing: 0.25em;
	background: #fff;
}
#copyright a,
#copyright a:visited {
	color: #222;
	text-decoration: none;
}
#copyright a:hover,
#copyright a:active {
	text-decoration: underline;
}
/* ページトップボタン */
.page-top {
  position: fixed;
  width: 70px;
  height: 70px;
  right: 40px;
  bottom: 50px;
  z-index: 99;
  cursor: pointer;
}
.page-top img {
    width: 100%;
	height: auto;
}

/*--------------------------------------------------------------
# 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: 100%;
	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;
}
.alignleft:after {
   content: "";
   display: block;
   clear: both;
}

.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;
}


/* ページ内リンク */
.sub_menu {
    margin-bottom: 60px;
    padding: 0 30px;
}
.sub_menu ul {
    display: flex;
    justify-content: center;
    gap:10px;
}
.sub_menu ul li {
    list-style: none;
}

.sub_menu ul li a {
    text-align: center;
    text-decoration: none;
    padding:6px 55px 8px 55px;
    border-radius: 50px;
    box-sizing: border-box;
    position: relative;
    transition-duration: 0.3s;
    font-size: clamp(12px,0.865vw,15px);
    border:solid 1px #6ab21f;
	color:#6ab21f;
}


/*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;
}

.gyoji_04 {
	padding:30px 0 0 0;
	border:dotted 3px #F492BF;
	border-radius: 20px;
}
.gyoji_05 {
	padding:30px 0 0 0;
	border:dotted 3px #13C768;
	border-radius: 20px;
}
.gyoji_06 {
	padding:30px 0 0 0;
	border:dotted 3px #4CD8B6;
	border-radius: 20px;
}
.gyoji_07 {
	padding:30px 0 0 0;
	border:dotted 3px #3AD6F5;
	border-radius: 20px;
}
.gyoji_08 {
	padding:30px 0 0 0;
	border:dotted 3px #2665BF;
	border-radius: 20px;
}
.gyoji_09 {
	padding:30px 0 0 0;
	border:dotted 3px #7E62B7;
	border-radius: 20px;
}
.gyoji_10 {
	padding:30px 0 0 0;
	border:dotted 3px #FF6E75;
	border-radius: 20px;
}
.gyoji_11 {
	padding:30px 0 0 0;
	border:dotted 3px #E86C53;
	border-radius: 20px;
}
.gyoji_12 {
	padding:30px 0 0 0;
	border:dotted 3px #B33540;
	border-radius: 20px;
}
.gyoji_01 {
	padding:30px 0 0 0;
	border:dotted 3px #FF2F4E;
	border-radius: 20px;
}
.gyoji_02 {
	padding:30px 0 0 0;
	border:dotted 3px #FEC75D;
	border-radius: 20px;
}
.gyoji_03 {
	padding:30px 0 0 0;
	border:dotted 3px #C192C0;
	border-radius: 20px;
}



}