/*--------------------------------------------------------------
>>> 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:768px) { 

html {
	font-family: "tbudrgothic-std", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 94%;
	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;
}
/* 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用の要素を非表示*/
.pc_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;
}
/*　▼※クラス名は「delay」だけどSP版では出現タイミング同じ*/
.anm_totop_delay {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s, visibility 1s, transform .5s;
	transition-timing-function: ease-out;
}
.anm_totop_delay1 {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s, visibility 1s, transform .5s;
	transition-timing-function: ease-out;
}
.anm_totop_delay2 {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s, visibility 1s, transform .5s;
	transition-timing-function: ease-out;
}
.anm_totop_delay3 {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s, visibility 1s, transform .5s;
	transition-timing-function: ease-out;
}
/*　▲※クラス名は「delay」だけど出現タイミング同じ*/
.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;
}
/* 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 40px;
	width: 92%;
}

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

/* header
--------------------------------------------- */
.header {
	background: #fff;
}
.header_inner {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	margin: 0 auto;
	padding: 20px 0;
	width: 95%;
}
.site_title {
	width: 73%;
	max-width: 320px;
}
.site_title img {
	margin-bottom: 5px;
}
.header_links {
	width: 100%;
}

/* Navigation
--------------------------------------------- */

/*ボタン外側*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: fixed;
	top: 3px;
	right: 6px;
	background:none;
	background-size: contain;
	cursor: pointer;
    width: 58px;
    height:58px;
	z-index: 20;
	
}
/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 10px;
    height: 4px;
    border-radius: 2px;
	background: #207D4C;
  	width: 65%;
  }
.openbtn span:nth-of-type(1) {
	top:11px;	
}
.openbtn span:nth-of-type(2) {
	top:21px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn span:nth-of-type(3)::after {
	content:"MENU";/*3つ目の要素のafterにメニュー表示を指定*/
	position: absolute;
	top: 6px;
	left: -11px;
	width: 60px;
	text-align: center;
	color: #207D4C;
	font-size: 61%;
	font-weight: 700;
	text-transform: uppercase;
}
/*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_wrap{
    display: flex;
    justify-content: center;
	padding: 0 0 90px;
    width: 100%;
	background: #fff;
}
.sp_nav ul.sp_nav_menu {
	margin: 15px auto;
	width: 70%;
	max-width: 400px;
}

/*リンクのスタイル*/
.sp_nav_wrap a,
.sp_nav_wrap a:hover,
.sp_nav_wrap a:active,
.sp_nav_wrap a:visited {
	color: #75880F;
	font-size: 125%;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.08em;
}

 ul.sp_nav_menu li {
	position: relative;
	margin-bottom: 10px;
	padding: 3px 5px 3px 30px;
	font-size: 100%;
}
ul.sp_nav_menu li:before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0px;
	display: inline-block;
	background: url("images/headers/nav_list.svg")no-repeat;
    width: 21px;
    height: 33px;
}
ul.sp_nav_menu li a {
	display: block;
}

/* TOP　コンテンツ
--------------------------------------------- */
.mv {
	width: 100%;
	height: auto;
	background: rgba(255,255,255,1.00);
}
.mv .metaslider #metaslider_438.flexslider {
	margin: 0;
}

/* TOP　コンセプト
--------------------------------------------- */
.concept {
	padding: 2% 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: 10%;
}
.catchphrase_box {
	margin: 0 auto;
	width: 82%;
	text-align: center;
}

/* TOP　お知らせ
--------------------------------------------- */
section.news {
	padding: 3% 0;
	font-size: clamp(74%, 3vw, 100%);
	background: #FAFFE2 url("images/pages/news_bg.png")no-repeat;
	background-position: center bottom;
	background-size: 1000px;
}
section.news h2 {
	margin: 0 auto;
	width: 80%;
	max-width: 450px;
	text-align: center;
}
.news_innerbox {
	margin: 0 auto;
	padding: 30px 0;
	width: 93%;
	max-width: 600px;
}

ul.news_wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 40px auto 20px;
}
li.news_box {
	margin-bottom: 5.5%;
	margin-right: 3%;
	width: calc((100% - 3%) / 2);	
}
li.news_box:nth-child(2n) {
	margin-right: 0;
}
li.news_box > a {
	display: block;
}
/*アイキャッチ画像*/
li.news_box .news_thumb {
	overflow: hidden;
	aspect-ratio: 4/3;
	margin-bottom: 12px;
}
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: 5px;
	color: #5E4141;
	line-height: 1.4;
}
/*投稿日*/
li.news_box .date {
	display: inline-block;
	margin-right: 5px;
	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 {
	text-decoration: none;
}
img.mark_new {
	position: relative;
    top: -.2em;
    right: 0px;
    width: 2.5em;
    height: auto;
}
/*過去の一覧*/
.news_more {
	margin: 0 0 25px;
	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: 20px 0;
	background: #fff;
}
section.about h2 {
	margin: 20px 0;
	text-align: center;
}
section.about h2 span {
	position: relative;
	color: #75880F;
	font-size: 5vw;
	letter-spacing: 0.1em;
}
section.about h2 span:before {
	content: "";
    display: inline-block;
    position: absolute;
    top: -2vw;
    left: -12vw;
    background: url("images/pages/h2_about_left.png")no-repeat;
    background-size: contain;
    width: 12vw;
    height: 12vw;
}
section.about h2 span:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: -2vw;
    right: -12vw;
	background: url("images/pages/h2_about_right.png")no-repeat;
	background-size: contain;
	width: 12vw;
    height: 12vw;
}

.about_wrap {
	margin: 0 auto;
	width: 94%;
}
.outline {
	margin: 9% 5px 12%;
	column-gap: 3.5%;
}
.outline .img_box {
	text-align: center;
}
.outline .txt_box p {
	color: #779C17;
}
.circle_wrap {
	margin: 0 auto;
    max-width: 510px;
}
.circle_wrap figure {
	margin: 1.3em 0;
}

.circle_wrap .img02-1 {
	max-width: 322px;
}
.circle_wrap .img02-2 {
	margin: 0 0 0 auto;
	max-width: 356px;
}
.circle_wrap .img02-3 {
	max-width: 271px;
}
.circle_wrap .img02-4 {
	margin: 0 0 0 auto;
	max-width: 285px;
}
.circle_wrap figcaption {
	margin: 12px auto 0;
	max-width: 17em;
	font-size: clamp(70%,1.2vw,85%);
	text-align: center;
}
.outline_b {
	margin: 10% 6%;
	column-gap: 3.5%;
}
ul.about_btn {
	margin: 4% auto 1%;
	width: 82%;
}
ul.about_btn li {
	margin-bottom: 15px;
	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;
}
ul.about_btn li a .txt_box {
	padding-top: 7px;
}

/* Posts and pages
--------------------------------------------- */
.entry-content p {
	margin-bottom: 1.8em;
}
.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;
}
.post,
.page {
	margin: 0;
}
.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;
	margin-bottom: 15px;
	padding: 1.4em 15px;
	font-size: 150%;
	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: 23vw;
	letter-spacing: 0.15em;
}
.single h1.entry-title {
	font-size: 140%;
}
/* H2 */
.entry-content h2 {
	margin: 35px 0 12px;
	font-size: 150%;
	padding: 5px 20px;
	border:dotted 2px #5D9316;
	border-radius: 10px;
}
/* H3 */
.entry-content h3 {
	margin-bottom: 12px;
	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 {
	font-size: clamp(74%, 3vw, 100%);
}

/* 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 dd {
	display: inline-block;
	margin: 0;
	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;
}


.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_name,
.con_tel,
.con_address {
	width: 90%;
	max-width: 25em;
}
.con_inquiry {
	width: 100%;
	height: 12em;
}
*/

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

.bypostauthor {
	display: block;
}

/* sidebar
--------------------------------------------- */
/* ▼side（これまでのお知らせ） */
.past_entry h2 {
	color: #75880f;
	font-size: 130%;
	text-align: center;
}
.past_entry .innerwrap {
	margin-top: 60px;
}
.past_entry ul.past_entry_list {
	margin: 25px 4%;
}
.past_entry ul li {
	position: relative;
	margin-bottom: 20px;
	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: 85%;
	color: #777;
}
.past_entry ul li a {
	color: #000;
	font-size: 95%;
}
.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 {
	margin-bottom: 60px;
	position: relative;
	background: #ECFFD2 url("images/footers/foot_bg.png")no-repeat;
	background-position: center calc(100% - 30px);
	background-size: 160%;
	text-align: center;
}
.footer_innerwrap {
	display: inline-block;
	padding: 20px 10px 15%;
    text-align: left;
}
.footer_about p.footer_title {
	padding: 5px 20% 5px 0;
	max-width: 360px;
}
.footer_about p.footer_info {
	margin-top: 5px;
	font-size: 85%;
	line-height: 1.4em;
	letter-spacing: 0.06em;
}
.footer_about p.footer_info a.txtlink {
	display: inline-block;
}
/*コピーライト*/
#copyright {
	padding: 7px 0;
	font-size: 60%;
	text-align: center;
	letter-spacing: 0.2em;
	background: #fff;
}
#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:7px 0 0;
	bottom: 0;
	width: 100%;
	background-color: #BCCF55;
	box-shadow: 0px 0px 4px rgba(0,0,0,0.25);
	z-index: 10000;
}
.footer_area .footer_area_inner {
	flex: 1;
}
a.inquiry_btn {
	display: block;
    text-align: center;
	text-decoration: none;
}
a.inquiry_btn img.tel {
	width: 19px;
	margin-bottom: 2px;
}
a.inquiry_btn img.totop {
	width: 30px;
	margin-top: 10px;
	margin-bottom: 7px;
}
a.inquiry_btn p {
	color: #fff;
	font-size: 60%;
	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;
}

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

.sub_menu ul li a {
	text-align: center;
	text-decoration: none;
	padding: 6px 20px 8px 20px;
	border-radius: 20px;
	box-sizing: border-box;
	position: relative;
	transition-duration: 0.3s;
	font-size: clamp(8px,1.865vw,14px);
	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;
}

}
