/*--------------------------------------------------------------
>>> 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: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 93%;
	-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: #222;
	font-family:inherit;
	line-height: 1.65;
	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 url("images/pages/bg_texture.png")repeat;
	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: #0066c0;
}
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;
	padding: 30px 1.2em 10px;
	width: 92%;
	min-height: 150px;
	background: #fff;
	border-radius: 10px;
}
main .contents_page_inner.page_2col {
}
main .contents_page_inner.page_2col article {
}
main .contents_page_inner.page_2col aside {
}


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

/* header
--------------------------------------------- */
.header {
	background: #fff url("images/headers/bg_texture.png")repeat;
}
.header_inner {
	margin: 0 auto;
	padding: 7px 80px 7px 0;
	width: 100%;
}

.header_logo {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	column-gap: 7px;
}
.header_logo .logoshikochu {
	max-width: 110px;
}
.header_logo .site_title img {
	max-width: 160px;
	height: auto;
}
.header_links {
	display: none;
}



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

/*ボタン外側*/
.openbtn{
	position: fixed;
	top: 0px;
	right: 0px;
	background:none;
	background-size: contain;
	cursor: pointer;
    width: 60px;
    height:60px;
	z-index: 20;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 3px;
    border-radius: 2px;
	background: #C41631;
  	width: 55%;
  }
.openbtn span:nth-of-type(1) {
	top:13px;	
}
.openbtn span:nth-of-type(2) {
	top:22px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn span:nth-of-type(3)::after {
	content:"MENU";/*3つ目の要素のafterにメニュー表示を指定*/
	position: absolute;
	top: 4px;
	left:-12px;
	width: 60px;
	text-align: center;
	color: #C41631;
	font-size: 70%;
	font-weight: 700;
	text-transform: uppercase;
}


/*activeクラスが付与されると線が回転して×になり、メニュー⇒とじるに変更*/
.openbtn.active span:nth-of-type(1) {
    top: 15px;
    left: 14px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}
.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: 50%;
}
.openbtn.active span:nth-of-type(3)::after {
	content:"CLOSE";/*3つ目の要素のafterにとじる表示を指定*/
    transform: translateY(0) rotate(-45deg);
	position: absolute;
	top:6px;
	left:0px;
	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;
}
.nav_search {
	margin: 15px auto;
	width: 80%;
	text-align: center;
}
.nav_search .nav_searchtitle {
	padding-bottom: 5px;
	font-size: 120%;
	font-weight: 700;
}
.nav_search #feas-searchform-0 {
	font-size: 105%;
}
.nav_search #feas-searchform-0 .feas_meta_freeword,
.nav_search #feas-searchform-0 select {
	padding: 6px 12px;
	border: 1px solid #222;
	border-radius: 6px;
}
.nav_search #feas-searchform-0 .feas-submit-button {
	padding: 10px 0 12px 30px;
	width: 60%;
	font-size: 96%;
	background: #C41631 url("images/pages/icon_search_white.svg")no-repeat 37% 40%/23px;
}

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

/*リンクのスタイル*/
.sp_nav a,
.sp_nav a:hover,
.sp_nav a:active,
.sp_nav a:visited {
	color: #222;
	text-decoration: none;
	font-size: 108%;
	font-weight: 700;
	letter-spacing: 0.08em;
}

/*親メニュー*/
.sp_nav ul.sp_nav_menu > li {
	position: relative;
	padding-right:  1.8em;
	font-size: 100%;
	border-bottom: 1px solid #D2D2D2;
}
.sp_nav ul.sp_nav_menu > li:first-child {
	border-top: 1px solid #D2D2D2;
}

.sp_nav ul.sp_nav_menu li a {
	display: block;
	padding: 11px 0 11px 1.8em;
	background: url("images/headers/arrow_righht.svg")no-repeat 100% 50%/8px;
}

/* TOP　コンテンツ 共通パーツ
--------------------------------------------- */
h2.toph2_box {
	position: relative;
	top: 30px;
	text-align: center;
	z-index: 10;
}
h2.toph2_box span {
	position: relative;
	display: inline-block;
	margin: 0 auto;
	padding: 0.7em .5em;
	width: 80%;
	max-width: 550px;
	color: #fff;
	font-size: 120%;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	background: #014391;
	border-radius: 8px;
}
h2.toph2_box span:before {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -7px;
	right: -7px;
	width: 100%;
    height: 100%;
	background: #fff;
	border: 1px solid #014391;
	border-radius: 8px;
	z-index: -1;
}
.cnttop_blackwhite {
	margin: 0 auto;
	padding: 60px 1em 30px;
	width: 95%;
	background: #fff;
	border: 2px solid #222;
	border-radius: 10px;
}
.toph3_bluebar {
	margin: 35px  0 20px;
	text-align: left;
}
.toph3_bluebar span {
	display: inline-block;
	padding: .2em 2.5em;
	color: #fff;
	font-weight: 700;
	text-align: center;
	background: #014391;
	border-radius: 50px;
}



/* TOP　コンテンツ
--------------------------------------------- */
.mv {
	position: relative;
	padding: 30px 0;
	width: 100%;
	background: linear-gradient(to bottom,  #3D90B6 0%,#8ecde8 20%,#ffffff 42%,#ffffff 56%,#c2fbd6 72%,#97e6b4 90%,#6dc28c 100%);
}
.mv:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("images/mv/bg_ougi.png")repeat;
}
.mv .inner_wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	width: 97%;
	z-index: 10;
}
.mv .inner_wrap .mvimage_1st {

	text-align: center;
}
.mv .inner_wrap .mvimage_2nd {
	margin: 30px auto 0;
	width: 88%;
	max-width: 450px;
}
.mvimage_1st .bluebar {
	margin: 0 auto 25px;
	max-width: 500px;
    width: 90%;
}

.schedule {
	padding: 40px 10px;
	text-align: center;
}
.schedule img {
	width: 100%;
}

.overview {
	margin-bottom: 35px;
	padding: 30px 0 45px;
	background: url("images/pages/bg_block.png")repeat;
}
.overview .innerwrap {
	position: relative;
	margin: 0 auto;
	padding: 1.6em 1.2em 1.6em 1.7em;
	width: 92%;
	font-size: 115%;
	background: #F4E1BB;
}
.overview .innerwrap p {
	font-weight: 700;
}
.overview .innerwrap img.illust {
	position: absolute;
	left: -15px;
	bottom: -60px;
	max-width: 70px;
	height: auto;
}

section.search {
	margin: 50px auto;
	width: 82%;
}
section.search h2 {
	margin: 25px 0;
	font-size: 180%;
	font-weight: 700;
	text-align: center;
}
#feas-searchform-0 {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	font-size: 125%;
    align-items: center;
    overflow: hidden;
    border-radius: 3px;
}
#feas-searchform-0 .input-wrap,
#feas-searchform-0 .select-wrap {
	margin: 5px auto;
	width: 100%;
	max-width: 500px;
}
#feas-searchform-0 .feas_meta_freeword {
	width: 100%;
	padding: 13px 15px;
	border: 2px solid #222;
	box-sizing: border-box;
	font-size: 1em;
	background: #EEEEEE;
	border-radius: 10px;
	outline: none;
}
#feas-searchform-0 .feas_meta_freeword::placeholder{
    color: #9C9C9C;
	font-size: 85%;
}
#feas-searchform-0 select {
	width: 100%;
	padding: 15px 15px;
	border: 2px solid #222;
	box-sizing: border-box;
	font-size: 1em;
	background: #EEEEEE;
	border-radius: 10px;
	outline: none;
}
#feas-searchform-0 .btn-wrap {
	width: 100%;
	text-align: center;
}
#feas-searchform-0 .feas-submit-button {
	position: relative;
	margin: 20px auto 0;
	padding: 12px 0 16px 35px;
	width: 70%;
	min-width: 260px;
	max-width: 350px;
	color: #fff;
	font-size: 110%;
	font-weight: 500;
	letter-spacing: 0.5em;
	border: none;
	border-radius: 100px;
	background-color: #C41631;
	cursor: pointer;
	background: #C41631 url("images/pages/icon_search_white.svg")no-repeat 37% 40%/28px;
}


/*お知らせ*/
section.news {
	margin: 30px 0;
}
ul.news_wrapper li.news_box {
	border-bottom: 1px solid #C4C4C4;
	padding: 12px 7px;
}
ul.news_wrapper li.news_box:first-child {
	border-top: 1px solid #C4C4C4;
}
ul.news_wrapper li.news_box time {
	display: inline-block;
	color: #014391;
	font-size: 85%;
	font-weight: 900;
}
ul.news_wrapper li.news_box .title {
	line-height: 1.5;
}
/*リンク色*/
ul.news_wrapper li.news_box a,
ul.news_wrapper li.news_box a:visited {
	color: #222;
	text-decoration: none;
}
ul.news_wrapper li.news_box a:hover,
ul.news_wrapper li.news_box a:active {
	text-decoration: underline;
}
img.mark_new {
	position: relative;
	top: -.1em;
    right: 0px;
}

/*過去一覧*/
.news_more {
	margin-top: 25px;
	text-align: center;
}
.news_more a {
	display: inline-block;
	padding: 7px 2em;
	color: #fff;
	font-weight: 500;
	font-size: 75%;
	text-decoration: none;
	transition: all .1s;
	border-radius: 30px;
	background: #222222;
}
.news_more a:hover,
.news_more a:active {
	transition: all .1s;
	opacity: 0.76;
}

section.info {
	margin: 30px 0;
}
section.info ul.info_wrapper {
	margin: 10px 0 30px;
}
section.info ul.info_wrapper li {
	padding: 10px 10px 10px 16px;
	border-bottom: 1px solid #C4C4C4;
}
section.info ul.info_wrapper li:first-child {
	border-top: 1px solid #C4C4C4;
}
section.info ul.info_wrapper li h3 {
	position: relative;
	margin-bottom: 3px;
	font-weight: 800;
	width: 12em;
}
section.info ul.info_wrapper li h3:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 9px;
	left: -11px;
	background: #222;
	width: 6px;
	height: 10px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
section.info ul.info_wrapper li p {
	flex: 1;
}

section.info ul.jouken {
	padding-left: 25px;
	list-style: disc;
}
section.info ul.jouken li {
	margin: 5px 0;
}

section.poster {
	margin: 30px 0;
}
section.poster ul.poster_wrapper {
}
section.poster ul.poster_wrapper li {
	margin: 15px auto;
	width: 90%;
}


/* Posts and pages
--------------------------------------------- */
.entry-content p {
	margin-bottom: 30px;
}
.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 0 5px;
	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 {
	position: relative;
	margin: 0 0 30px;
	padding: 1.3em 15px;
	color: #fff;
	font-size: 130%;
	font-weight: 700;
	text-align: center;
	background: #64adce url("images/mv/bg_ougi.png")repeat;
	background-size: 45%;
	letter-spacing: 0.08em;
	line-height: 1.5;
}
.single h1.entry-title {
/*	font-size: 100%;*/
}
/* H2 */
.entry-content h2 {
	margin: 20px 0 13px;
	padding: 6px 17px;
	color: #fff;
	font-size: 115%;
	font-weight: 700;
	background: #3a3a3a;
}

/* H3 */
.entry-content h3 {
	margin: 15px 0 10px;
	padding: 8px 15px;
	color: #3a3a3a;
	font-size: 105%;
	font-weight: 700;
	background: #EAEEF2;
}

/* Posts and pages（ページナビ）
--------------------------------------------- */
#page .wp-pagenavi {
	margin: 20px 0;
	font-size: 88%;
}
#page .wp-pagenavi span,
#page .wp-pagenavi a {
	display: inline-block;
	padding: 0px 7px 3px;
	color: #222;
	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: #dedede;
	text-decoration: none;
	color: #222;
	border: 1px solid #aaa;
}

#page .wp-pagenavi span.pages {
	display: block;
	border: none;
}
#page .wp-pagenavi span.current {
	color: #fff;
	background: #222;
	border: 1px solid #222;
}

#page .wp-pagenavi span.extend {
	border: none;
}
/* Posts and pages（お知らせアーカイブ）
--------------------------------------------- */
.archive ul.news_wrapper {
	margin: 20px 0 50px;
}

/* Posts and pages（検索結果ぺージ）
--------------------------------------------- */
ul.search_result {
	list-style: disc;
	padding-left: 20px;
}
ul.search_result li {
	margin-bottom: 0.6em;
}

/* Posts and pages（問い合わせ）
--------------------------------------------- */
/*フォーム*/
.inquiry_list {
	margin: 50px auto 0;
	overflow: hidden;
}
.inquiry_list p {
	margin-bottom: 0;
}
.inquiry_list dl {
	padding: 0 0 20px;
	width:100%;
	overflow: hidden;
}
.inquiry_list dt {
	margin: 0 0 5px;
}
.inquiry_list dd {
	margin: 0 0 20px;
	width: 100%;
}
.inquiry_list input, .inquiry_list textarea, .inquiry_list select {
	margin: 0;
	padding: 5px 8px;

}
.inquiry_list .must {
	position: relative;
	top: -.15em;
	left: 8px;
	display: inline;
    padding: 0 6px 2px;
    font-size: 11px;
    color: #cf1d05;
	border: 1px solid #cf1d05;
	user-select: none;
}

/*名前*/
.con_name {
	margin: 0 10px 0 0;
	width: 100%;
}
/*ふりがな*/
.con_kana {
	margin: 0 10px 0 0;
	width: 100%;
}
/*メールアドレス*/
.con_address {
	margin: 0 10px 0 0;
	width: 100%;
    ime-mode:disabled;
}

/*TEL*/
.con_tel {
	width: 190px;
    ime-mode:disabled;
}

/*お問い合わせ内容*/
.con_inquiry {
	width: 100%;
	height: 200px;
}

/*ラジオボタン*/
.wpcf7-radio .wpcf7-list-item {
	margin: 0 1.5em 0 0;
	user-select: none;
}
/*チェックボックス*/
.wpcf7-checkbox .wpcf7-list-item {
	margin: 0 10px 0 0;
    display:block;
	user-select: none;
}

/*必須項目未入力の場合*/
.wpcf7 span.wpcf7-not-valid-tip {
	display: inline-block;
	padding-left: 8px;
	font-size: 80%;
}
.wpcf7-spinner {
	display: none !important;
}

/*個人情報　取扱同意*/
.doui_txt {
	padding:20px 20px 3px;
	background: rgb(249, 237, 223);
	border: 1px solid rgb(190, 170, 145);
	border-radius: 4px;
}
.doui_txt p span {
	display: block;
	text-align: center;
	font-weight: 600;
}
.doui_txt p {
	margin-bottom: 15px;
	font-size:0.9em;
}

.doui p {
	margin: 42px 0 40px;
	font-size: 85%;
	font-weight: 600;
	text-align: center;
}
.doui .wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
}
.doui .wpcf7-list-item label .wpcf7-list-item-label {
	padding-left: 10px;
}

/*フォームボタン*/
#btn_wrap {
	text-align: center;
}
#btn_wrap input[type="submit"] {
	width: 100%;
	padding: 1.5em 1em 1.6em;
	font-size: 115%;
	font-weight: 600;
    letter-spacing: 0.4em;
}




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

.bypostauthor {
	display: block;
}

/* sidebar
--------------------------------------------- */
/* ▼side（これまでのお知らせ） */
aside .past_entry  {
	margin-top: 50px;
}
.past_entry h2 {
	margin-bottom: 20px;
	padding: 5px 0;
	color: #014391;
	font-weight: 700;
	border-bottom: 2px solid #014391;
}
.past_entry ul.past_entry_list {
	margin: 15px 0;
}
.past_entry ul li {
	margin-bottom: 13px;
	padding:0 5px 13px 5px;
	border-bottom: 1px solid #ccc;
}
.past_entry ul li time {
	display: block;
	font-size: 83%;
	font-weight: 800;
	color: #014391;
}
.past_entry ul li p {
	line-height: 1.4;
	font-size: 90%;
}
.past_entry ul li a {
	color: #222;
}
.past_entry .more {
	margin: 15px 10px;
	text-align: right;
}
.past_entry .more a {
	font-size: 90%;
	color: #222;
}

/* 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 {
	margin-top: 50px;
	padding: 30px 20px 55px;
	background: #CB9837 url("images/footers/bg_ougi_footer.png")repeat;
	background-size: 50%;
}
.site_footer h2 {
	margin: 10px 0 25px;
	color: #fff;
	font-weight: 700;
	font-size: 135%;
}
.footer_about {
	text-align: center;
}
.footer_about a {
	color: #FFFFFF;
}
.footer_about p {
	margin: 10px 0;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
}
.footer_about p img {
	margin: 5px 0;
}
.footer_about p.footer_txts {
	font-size: 95%;
}
.footer_about p.footer_txtm {
	margin-top: 10px;
	font-size: 115%;
}
.footer_about p.footer_txtl {
	font-size: 130%;
}
.footer_about p.limit {
	margin: 40px 0 15px;
}
.footer_about p.limit span {
	display: inline-block;
}
.footer_about p.footer_houshin {
	margin-top: 25px;
}


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


/*下部固定メニュー*/
.footer_area {
	display: flex;
	justify-content: space-around;
	position: fixed;
	padding:8px 10% 6px;
	bottom: 0;
	width: 100%;
	background-color: #C41631;
	box-shadow: 0px 0px 4px rgba(0,0,0,0.25);
	z-index: 10000;
}
.footer_area .footer_area_inner {
	flex: 1;
	border-left: 1px solid rgba(255,255,255,0.6);
    /*position: relative;*/
    /*margin: 0px auto;*/
    /*padding: 5px 0 0;*/
	/*width:28%;*/
}
.footer_area .footer_area_inner:first-child {
	border-left: none;
}
a.inquiry_btn {
	display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 3px 0;
}
a.inquiry_btn img.tel {
	width: 18px;
    height: auto;
    margin-right: 11px;
}
a.inquiry_btn img.mail {
	width: 24px;
    height: auto;
    padding: 2px 0;
    margin-right: 11px;
}
a.inquiry_btn p {
	color: #fff;
    font-size: 73%;
    font-weight: 500;
    line-height: 1.4;
}



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


.jigyo_gaiyo table {
	border:none;
}

.jigyo_gaiyo table tbody tr td:nth-child(1) {
	width:33%;
	border:solid 1px #c7942b;
	text-align: center;
}
.jigyo_gaiyo table tbody tr td:nth-child(2) {
	width:66%;
	border:solid 1px #c7942b;
}


ol.ryuizikou {
	border:solid 2px #024290;
	border-radius: 15px;
	list-style-position: inside;
	margin: 0;
	padding:20px 24px;
}

h2.taisyotenpo {
	padding: 20px 22px;
	background: #c51632;
}

.esab__body p {
	margin: 0;	
}

.qa_nemu_box {
	display: flex;
	justify-content: center;
	column-gap: 15px;
	font-size:0.80em;
}

.qa_menu a {
	width:100%;
}

}
