@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
/*font: inherit;*/
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers
*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/*====================*/

*{
	position:relative;
	box-sizing:border-box;
}

body{
	font-family:  "M PLUS 1p",游ゴシック,メイリオ,Meiryo,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,ＭＳ\ Ｐゴシック,MS PGothic,sans-serif;
	font-weight: 300;
	font-size:16px;
	line-height:1.5;
	letter-spacing:0.08em;
	color:#333;
	overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6{
	/* font-family: "Zen Maru Gothic", serif; */
}

.mincho {
	font-family: 'Shippori Mincho B1',Yu Mincho,游明朝,Hiragino Mincho ProN,ヒラギノ明朝 ProN W3,MS Mincho,ＭＳ 明朝,serif;
}

a{
	color:#59aad9;
	text-decoration: none;
}

a.pdf,a.word,a.excel{
	position:relative;
}

a.pdf:after{
	display: inline-block;
    position: relative;
    top: 5px;
    content: '';
    margin: 0 5px;
    width: 19px;
    height: 26px;
    background-image: url(./img/pdf.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

a.word:after{
	display: inline-block;
    position: relative;
    top: 5px;
    content: '';
    margin: 0 3px;
    width: 19px;
    height: 26px;
    background-image: url(./img/word.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

a.excel:after{
	display: inline-block;
    position: relative;
    top: 5px;
    content: '';
    margin: 0 3px;
    width: 19px;
    height: 26px;
    background-image: url(./img/excel.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

p{
	margin-bottom: 1em;
}

img {
	max-width: 100%;
}

#main_wrap a {
    font-weight: bold;
	transition: .4s;
}

#main_wrap a:hover {
	opacity: .5;
}

span{
	font-weight:inherit;
	font-family:inherit;
}

.has-text-align-right{
	text-align: right;
}
.has-text-align-left{
	text-align: left;
}
.has-text-align-center{
	text-align: center;
}


/*記事内の画像*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em !important;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em !important;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto !important;
	margin-right: auto !important;
}

table.aligncenter,
table.alignright,
table.alignleft{
	display:table;
}

table.flex_table.aligncenter,
table.flex_table.alignright,
table.flex_table.alignleft{
	float:none;
}

.noborder{
	border:0 !important;
	box-shadow:none !important;
}

/* 画面外にいる状態 */
.animate {
	opacity : 0;
	transform : translate(0, 50px);
	-webkit-transform : translate(0, 50px);
	transition : all 1000ms;
}

/* 画面内に入った状態 */
.animate.scrollin {
	opacity : 1 !important;
	transform : translate(0, 0);
	-webkit-transform : translate(0, 0);
}

/* ギャラリー */
figure.wp-block-gallery.has-nested-images {
    align-items: normal;
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) {
    align-self: inherit;
}
.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
    margin: 0;
    width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px)/2);
}
.wp-block-gallery.has-nested-images figure.wp-block-image {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    max-width: 100%;
    position: relative;
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,
.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
    flex: 1 0 0%;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.wp-block-gallery.has-nested-images figure.wp-block-image img {
    display: block;
    height: auto;
    max-width: 100%!important;
    width: auto;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    background: linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    font-size: 13px;
    left: 0;
    margin-bottom: 0;
    max-height: 60%;
    overflow: auto;
    padding: 0 8px 8px;
    position: absolute;
    text-align: center;
    width: 100%;
}
.wp-block-gallery.has-nested-images figcaption {
    flex-basis: 100%;
    flex-grow: 1;
    text-align: center;
}


/* snow-monkey-block アコーディオン */
.wp-block-snow-monkey-blocks-accordion {
	margin-bottom: 1em;
}

.smb-accordion__item__title,
.smb-accordion__item__body {
	background-color: rgb(255 255 255 / 80%)!important;
}

.smb-accordion__item__title {
	color: #47806f;
    font-weight: bold;
    border-radius: 15px 15px 0 0;
}

/* snow-monkey-block ボタン */
#main_wrap .smb-buttons {
	margin-bottom: 1em;
}

#main_wrap .smb-btn {
	color: #fff;
	--smb-btn--background-color: #538aab;
}

/* Flexible table スマホ横スクロール */
.is-scroll-on-mobile {
	margin-inline: auto;
	overflow-x: auto; /* tableタグのはみ出た要素を隠す */
	white-space: nowrap; /* テキストの折り返しなし */
}
.is-scroll-on-mobile table {
	width: 500px; /* tableタグの親要素より広く */
}
.is-scroll-on-mobile th {
	border: 1px solid #ccc;
	color: #333;
	font-size: 16px;
	padding: 20px;
	width: 25%;
}
.is-scroll-on-mobile td {
	border: 1px solid #ccc;
	font-size: 16px;
	padding: 20px;
}

/* 画像角丸 */
.wp-block-image.is-style-rounded img, .wp-block-image.is-style-rounded .wp-block-image__crop-area, .wp-block-image.is-style-rounded .components-placeholder {
    border-radius: 9999px;
}

/* WP標準ボタン */
.wp-block-button__link {
	display: block;
}

:root {
	--header: 140px;
	scroll-padding: var(--header);
}

/* head */
#header_wrap {
    width: 100%;
	padding-bottom: 50px;
    position: absolute;
    z-index: 1;
	/* background: linear-gradient(170deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .9) 29%, rgba(255, 255, 255, 0) 39%, rgba(255, 255, 255, 0) 100%); */
}

#header_wrap:before {
	/* content: ''; */
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url(./img/title_bg_1.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

#page {
	padding-top: 140px;
}

#page #header_wrap{
	height:auto;
	padding-bottom: 0;
	position: fixed;
	top: 0;
	background-color: #fff;
}

#page #header_wrap:before {
	display: none;
}

#header{
	max-width:1600px;
	padding: 1em;
	display:flex;
	align-items:center;
	justify-content:space-between;
	margin: auto;
}

#page #header #title {
	display: flex;
    flex-direction: column-reverse;
	align-items: baseline;
}

#page #header #title p {
	margin-bottom: 0;
}

#page #header h1 a span {
	display: inline-block;
}

#header h1{

}

#header h1 a{
	color: #333;
    font-size: 2rem;
	font-weight: 500;
    display: block;
    text-decoration: none;
}

#header h1 a span {
	display: block;
	font-size: 1.2rem;
}

#header div {
	text-align: right;
}

#header div p {
	color: #fff;
	margin-bottom: 0;
	text-shadow: 0px 4px 10px #666;
}

#header div #tel::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 0;
	left: 3rem;
	background-image: url(./img/phone_fill.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left;
}

#page #header nav ul {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

#page #header nav ul li a {
    color: #fff;
    padding: .3rem 1rem;
    background-color: #47806f;
    border-radius: 1rem;
}

/* main_image */
#main_image_wrap{
    margin: 0 auto 1.5em;
}

#main_image_wrap .slick-slide img {
	width: 100vw;
	height: auto;
}

#main_image_wrap .slick-dots li button::before {
	font-size: 12px;
}

/* main_menu */
#main_menu{
	color: #fff;
}

#page #main_menu{
	margin-bottom:0;
}

#main_menu ul{
	display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: auto;
    max-width: 1600px;
}

#main_menu ul li:before {
    content: "/";
    font-weight: 500;
    position: absolute;
    top: calc(50% - 12px);
    left: -.8em;
}

#page #main_menu ul li:before {
	display: none;
}

#main_menu ul li:first-child:before {
	display: none;
}

#main_menu ul li a{
	display:block;
    padding: 0 .5em;
    margin: .5em;
	color: #fff;
	font-size: 120%;
	font-weight:500;
	text-align:center;
	text-decoration:none;
	transition:.5s;
	text-shadow: 0px 4px 10px #666;
}

#page #main_menu ul {
	justify-content: space-between;
	gap: 3px;
}

#page #main_menu ul li {
    width: 100%;
}

#page #main_menu ul li a {
    color: #333;
	text-shadow: none;
    padding: .2em;
    margin: 0;
    background-color: #eef8dd;
	background: rgb(238,248,221);
	background: linear-gradient(0deg, rgba(238,248,221,1) 0%, rgba(173,207,115,1) 51%, rgba(238,248,221,1) 100%);
	transition: .2s;
}

#page #main_menu ul li a:hover {
	opacity: .8;
}

#sp_menu ul{
	display: none;
}

/* news */
#news_wrap{
	padding: 2em;
    margin: 0 auto 1.5em;
    max-width: 1200px;
    background: #eef8dd;
	overflow-x: hidden;
}

#news_wrap:before {
    content: '';
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: calc((1200px - 100vw)/2);
    top: 0;
    background: #eef8dd;
}

#news_wrap h3 span {
    background: transparent !important;
    color: rgb(204 204 204 / 60%);
    font-size: 1.2em;
    padding: 0;
    position: absolute;
    top: -.6em;
    left: -1em;
}

#news_wrap ul{
	display:flex;
	flex-direction:column;
	margin:auto;
	max-width:1000px;
}

#news_wrap ul li{
	display:flex;
	align-items: flex-end;
}

#news_wrap ul li a{
	color: #47806f;
}

#news_wrap ul li span{
	padding:.5em;
}

#news_wrap ul li span.date {
	min-width: 10rem;
}

#news_wrap #kako{
	justify-content:flex-end;
}

/* searchform */
#search{
	padding:1em  1em 1.5em;
	margin:0 auto;
	max-width:1200px;
	text-align:right;
}

#search input{
	font:inherit;
}


/* main */

#main_wrap {
}

#main,#free_space{
	padding:1em  1em 1.5em;
	margin:0 auto;
	max-width:1200px;
	overflow:hidden;

}

#page #main {
	min-height:500px;
}


/* main parts */

#main_wrap #p_list{
	padding:.5em;
	margin:0  auto;
	max-width:1200px;
}

#main_wrap #breadcrumb{
	display:flex;
	font-size:90%;
	justify-content:flex-end;
	padding:0 1em;
}

#main_wrap #breadcrumb li{
	margin-left: .5em;
	padding-left: 0;
}

#main_wrap #breadcrumb li:after{
	margin-left: .5em;
	content: '＞';
}

#main_wrap #breadcrumb li:last-child:after{
	content:'';
}

#main_wrap #breadcrumb li a{
	color: #59aad9;
}
#main_wrap h2{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#main_wrap h2:before{
	position:absolute;
	display:block;
	content:'';
	width:100%;
	height:100%;
	background:rgba(255,255,255,.6);
}

#main_wrap h2 span{
	display:block;
	padding: 1em .5em;
	margin:auto;
	max-width:1200px;
	font-size:200%;
	text-shadow:2px 2px 2px #fff;

}

#main_wrap h3 {
    font-size: 150%;
    margin-bottom: 1em;
}

#main_wrap h3 span {
	background: #fff;
    padding: 0 .5rem;
	line-height: 1.2em;
}

#main_wrap h3:before {
	content: '';
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 18px;
    background-color: #f2d789;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -.5em;
    z-index: -1;
}

#main_wrap h4 {
	font-size: 120%;
	background-color: #f1f1f1;
	padding: .5rem 1rem;
	margin-bottom: 1em;
}

#main_wrap h5 {
    margin-bottom: 1.5em;
    padding: .5em;
    font-size: 110%;
	border-top: 2px solid #47806f;
	border-bottom: 2px solid #47806f;
}

#main_wrap h6 {
	color: #47806f;
    margin-bottom: 1em;
}

#main_wrap #main section{
	display: flex;
	justify-content: space-between;
}

#main_wrap #main section p:first-of-type{
	display: inline-block;
	margin: 0 2em 1em .5em;
}


#main_wrap #main h4 a,
#main_wrap #main h5 a{
	color: #6495ed;
}

#main_wrap a:hover{
	text-decoration:none;
}

#main_wrap #main hr{
	clear:both;
	border-bottom:1px dotted #ccc;
}

#main_wrap #main blockquote{
	clear:both;
	width:calc(100% - 2em);
	margin:1em;
	margin-bottom:1.5em;
	padding:1em;
	border-radius:8px;
	background:#efefef
}

#main_wrap #main blockquote > :last-child{
	margin-bottom:0;
}

#main_wrap img{
	max-width: 100%;
	height:auto;
}

#main_wrap img.jigyou{
	max-width: none;
	width: 300px;
	height:auto;
	box-shadow:2px 2px 5px #aaa;
}

#main_wrap #main ul{
	margin-bottom:1.5em;
}

#main_wrap #main ul li{
	margin-left:1.5em;
	margin-bottom:.5em;
	line-height:2.3em;
}

#main_wrap #main ul li:before {
	display: block;
	position: absolute;
	content: '';
	margin: auto;
	width: .5em;
	height: .5em;
    transform: rotate(45deg);
    background-color: #ffd34e;
	top: 1em;
	left: -1.5em;
}

#main_wrap #main ul li a{
	color: #6495ed;
}
#main_wrap #main ol{
	margin-bottom:1.5em;
}

#main_wrap #main ol li{
	margin-left:1.5em;
	margin-bottom:.5em;
	counter-increment: olNum1;
}

#main_wrap #main ol > li:after{
	color: #47806f;
	font-weight: bold;
	position: absolute;
	display:flex;
	justify-content:center;
	align-items:center;
	width: 1em;
	height: 1em;
	border-radius: 25px;
	top: .25em;
	left: -1.5em;
	content: counter(olNum1)'.';
}

#main_wrap table{
	margin-bottom:1.5em;
	//width: 100%;
}

#main_wrap table tr:first-child {
	border-top: 1px solid #ccc;
}

#main_wrap table th,
#main_wrap table td{
	vertical-align: top;
    padding: 1em;
	background-color: transparent;
    border-style: none;
    border-bottom: 1px solid;
    border-color: #ccc;
}

#main_wrap table th{
	color:#47806f;
	background: #ebf6d9;
	padding:1em;
	word-break:keep-all;
}


#main_wrap table tr > th > :last-child,
#main_wrap table tr > td > :last-child{
	margin-bottom:0;
}

#main_wrap table tr > td > a{
	color: #6495ed;
}

#main_wrap table.flex_table,
#main_wrap table.flex_table > tbody{
	display:block;
	max-width:100%;
	border:0;
	background:transparent;
}

#main_wrap table.flex_table > tbody > tr{
	display:flex;
}

#main_wrap table.flex_table > tbody > tr > td{
	display:block;
	padding:1em;
	width:auto !important;
	border:0;
}

#main_wrap table.flex_table > tbody > tr > td table.flex_table td{
	padding:.5em;
}

#main_wrap table.flex_table.aligncenter > tbody > tr{
	justify-content:center;
}

#main_wrap table.flex_table.aligncenter > tbody > tr > td{
	width:auto !important;
}

#main_wrap table.flex_table.alignright > tbody > tr{
	justify-content:flex-end;
}


#main_wrap table.flex_table.al_center > tbody > tr{
	align-items:center;
}

#main_wrap table.flex_table.eq_width > tbody > tr > td{
	width:100% !important;
}

#main table.large_table{
	width:96% !important;
	margin-left:auto;
	margin-right:auto;
border-top: 0;
    border-bottom: 0;
}

#main table.large_table tr:first-of-type{
	border-top: 2px #47806f solid;
}

#main table.large_table tr:last-of-type{
}

#main table.large_table strong{
	word-break: keep-all;
}

#main table.large_table{
	display: block;
	height:auto !important;
	overflow-x: scroll;
	table-layout:fixed; 
	box-sizing: border-box;
}

#main table.large_table td,
#main table.large_table th{
	white-space: nowrap;
}

#main table.large_table {
     overflow: auto;
}

#main table.large_table th{
	vertical-align:middle;
	padding:.5em;
	font-size:90%;
}

#main table.large_table td{
	padding:.5em;
	font-size:90%;
	//max-width:500px;
}

#main table::-webkit-scrollbar{ /* スクロールバー全体 */
    height: 10px;
}

#main table::-webkit-scrollbar-thumb{ /* スクロールバーのある部分 */
    background: #7ea508;
    border-radius: 10px;
}
#main table::-webkit-scrollbar-track-piece:start{ /* スクロールバーが表示されてない部分（前） */
    background: #90a4e8;
    border-radius: 10px 0 0 10px;
}
#main table::-webkit-scrollbar-track-piece:end{ /* スクロールバーが表示されてない部分（後ろ） */
    background: #90a4e8;
    border-radius: 0 10px 10px 0;
}

/* form */

#page #main form input,
#page #main form textarea{
	max-width:800px;
	padding:.2em 1em;
	font-size: 100%;
	border:1px solid #ccc;
	border-radius:5px;
	font-family: 游ゴシック,メイリオ,Meiryo,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,ＭＳ\ Ｐゴシック,MS PGothic,sans-serif;
}

#page #main form textarea{
	width:100%;
}

#page #main form select{
	padding:1em;
	padding:.2em 1em;
	font-size: 100%;
	border:1px solid #ccc;
	border-radius:5px;
	font-family: 游ゴシック,メイリオ,Meiryo,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,ＭＳ\ Ｐゴシック,MS PGothic,sans-serif;
}

#page #main form input[type=submit],
#page #main form button[type=submit]{
	position:relative;
	display:block;
	padding: .2em 1em .2em 1.5em;
	margin:auto;
	color:#fff;
	font-weight:bold;
	letter-spacing:0.5em;
	text-shadow:none;
	background: #59aad9;
	border:0;
	cursor:pointer;
	transition:.2s;
	font-family: 游ゴシック,メイリオ,Meiryo,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,ＭＳ\ Ｐゴシック,MS PGothic,sans-serif;
}

#page table#mfp_confirm_table tr th,
#page table#mfp_confirm_table tr td{
	padding:1em .5em;
	font-size:100%;
}

#page .mfp_element_submit,
#page .mfp_element_reset,
#page .mfp_element_button,
#page button.mfp_next,
#page button.mfp_prev{
	position:relative;
	margin:auto;
	color:#fff;
	font-weight:bold;
	letter-spacing:0.05em;
	text-shadow:none;
	background: #052f47;
	cursor:pointer;
	transition:.2s;
	font-family: 游ゴシック,メイリオ,Meiryo,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,ＭＳ\ Ｐゴシック,MS PGothic,sans-serif;
}


#page #main form input[type=submit]:hover,
#page #main form button[type=submit]:hover{
	background-color:#718692;
	transition:.2s;
}

#page #main form input[type=submit]:before {
    display: block;
    position: absolute;
    content: '';
    margin: auto;
    width: 1em;
    height: .5em;
    background: linear-gradient(to top left, rgba(255,255,255,0) 50%, #052F47 50.5%) no-repeat top left/100% 100%;
    top: .5em;
    left: -1.2em;
}

#page #main form input[type=reset]{
	position:relative;
	display:inline-block;
	margin:auto;
	padding:.5em 1em;
	width:auto;
	color:#fff;
	font-size:100%;
	letter-spacing:.8em;
	background-color:#666;
	text-align:center;
	cursor:pointer;
	transition:.2s;
}

#page #main form input[type=reset]:hover{
	background-color:#aaa;
	transition:.2s;
}


/* page advance */
#page iframe{
	max-width:100%;
	margin-bottom: 1.5em;
}

#page .su-spoiler-title{
	display: inline-block;
	color: #7ea508;
	font-size:100%;
	text-decoration:underline;
}

#page .su-spoiler-title:hover{
	text-decoration:none;
}

#page .gallery {
	display:flex;
	flex-wrap:wrap;
	margin-bottom:1.5em;
}

#page .gallery-item{
	display:block;
	float:none!important;
	width:auto !important;
}

#page .gallery-columns-3 .gallery-item{
	width:33.3333% !important;
	
}
#page .gallery-item img{
	width:calc(100% - 1em);
	height:auto;
	border:none;
}

#page .mejs-inner,
#page .mejs-layers{
height: 100%;
    width: 100%;
}

/* 専用カスタム */

.btn {
    display: inline-block;
	margin-bottom: 1rem !important;
}
.btn a {
    color: #fff;
    padding: .3rem 1rem;
    border-radius: 1.5rem;
    background-color: #47806f;
}

/* footer */
#footer_wrap{
	border-top: 2px solid #333;
}

#footer_wrap #footer{
	margin:0 auto;
	max-width:1200px;
}

#footer_wrap ul{
	display:flex;
	justify-content: center;
}

#footer_wrap ul li{
	padding:.5em;
}

#footer_wrap ul li:after {
    content: "/";
    position: relative;
    left: .5em;
}

#footer_wrap ul li:last-child:after {
	content: "";
}

#footer_wrap ul li a{
	color: #333;
	font-weight: bold;
	transition: .3s;
}

#footer_wrap ul li a:hover{
	opacity: .5;
}

#footer_wrap #foot_cont{
	margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#footer_wrap #cp {
	text-align: center;
    font-size: 1.5rem;
}

#footer_wrap #cp span{
	display: block;
	font-size: .8rem;
}

#footer_wrap address{
	display: flex;
    justify-content: flex-end;
	max-width:1200px;
	font-style:normal;
}

#footer_wrap address p {
    text-align: right;
}

#copyright{
	padding:.5em;
	text-align:center;
	font-size:90%;
	background-color: #47806f;
	color: #fff;
}

#copyright p {
	margin: 0;
}

/* pagetop */
#page_top{
	width: 50px;
	height: 50px;
	position: fixed;
	right: 10px;
	bottom: 50px;
	background: rgba(29, 159, 214, 0.7);
	opacity: 0;
	transition:.2s;
	z-index:999;
	transform: rotate(45deg);
}
#page_top a{
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
	transform: rotate(-45deg);
}
#page_top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f062';
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	line-height:1;
	top: -5px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

#sp_toggle{
	display:none;
}

@media screen and (max-width:960px){
.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex-basis: 100%!important;
}

.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    width: calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px)*.66667);
}

.wp-block-columns {
    display: flex;
	justify-content: space-between;
    margin-bottom: 1.75em;
    box-sizing: border-box;
    flex-wrap: wrap!important;
    align-items: normal!important;
}

#header {
	background: #fff;
}

#header div {
	display: none;
}

#header #title p {
	display: none;
}

#header h1 a {
	font-size: 1.5rem;
}

#header h1 a span {
	font-size: 1.1rem;
}

#page #header h1 a span {
	display: block;
}

#page #header nav ul {
	display: none;
}

#main_menu ul {
	display:none;
}

#sp_toggle{
	position:relative;
	display:table;
	margin: 0 0 0 auto;
	padding:2em;
	font-size:100%;
	color:#8d8d8d;
	text-align:center;
	font-weight:bold;
	box-sizing:border-box;
	cursor:pointer;
}

#sp_toggle #sp_toggle_icon{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 3px;
	margin: -1px 0 0 -.5em;
	background: #8d8d8d;
	transition: .2s;
}

#sp_toggle #sp_toggle_icon:before,
#sp_toggle #sp_toggle_icon:after{
	display: block;
    content: "";
    position: absolute;
    top: 0%;
    left: 0;
    width: 24px;
    height: 3px;
    background: #8d8d8d;
    transition: .3s;
}

#sp_toggle #sp_toggle_icon:before{
	margin-top: -8px;
}

#sp_toggle #sp_toggle_icon:after{
	margin-top: 8px;
}

#sp_toggle #sp_toggle_icon.close{
	background: transparent;
}

#sp_toggle #sp_toggle_icon.close:before, #panel-btn .close:after{
	margin-top: 0;
}

#sp_toggle #sp_toggle_icon.close:before{
	margin-top: -1px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

#sp_toggle #sp_toggle_icon.close:after{
	margin-top: -1px;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}

#sp_menu{
	position:fixed;
	top:0;
	right:0;
	background:rgba(255,255,255,.9);
	z-index:9999;
}

#sp_menu.menuopen{
	width:100%;
}

#sp_menu ul{
	flex-direction: column;
	width:100vw;
	height:100vh;
}

#sp_menu ul li {
    margin: 1.5rem 2rem;
}

#sp_menu ul li a{
	display: block;
	color:#333;
}

#main_wrap #breadcrumb{
	font-size:70%;
}

/* 
#main_wrap img{
	margin:.5em 0;
} */

#main > table,
#main > table tbody,
#main > table tbody tr,
#main > table tbody tr th,
#main > table tbody tr td{
	display:block;
	padding:0;

}

#main > table tbody tr th,
#main > table tbody tr td{
	padding:1em;
	text-align:left;
}

#page,
#main_image_wrap {
	padding-top: 90px;
}

#footer_wrap{
	padding: 1em;
}

#footer_wrap #footer {
	display: none;
}

#footer_wrap #foot_cont {
	flex-direction: column;
	align-items: center;
}

#footer_wrap address p {
    text-align: center;
}

#copyright p{
	font-size:2vw;
}

}

@media screen and (max-width:500px){
#header h1 a {
	font-size: 1.3rem;
}

#header h1 a span{
	font-size: 1rem;
}

#header #title p {
	font-size: .8rem;
}

#news_wrap ul li {
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: .5rem;
}

#news_wrap ul li span {
    padding: 0 .5em;
}

#main_wrap h2 span {
	font-size: 150%;
}

#main_wrap h3 {
	font-size: 130%;
}

#main_wrap h4 {
	font-size: 110%;
}

#footer_wrap #cp {
	font-size: 1.2rem;
}

}