/*--------------------------------------------------------------
>>> 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","BIZ UDGothic", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 90%;
	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.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;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
dt {
	font-weight: 700;
}
dd {
	margin: 0 1.5em 1.5em;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}
img {
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}
figure {
	margin: 1em 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
/*SP用の要素を非表示*/
.pc_show {
	display: none !important;
}

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

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

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


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

/* header
--------------------------------------------- */
.home .header {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
	background: rgba(255,255,255,0.85);
	z-index: 10;
}
.header {
	background: rgba(255,255,255,1.0);
}
.header_inner {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	margin: 0 auto;
	padding: 9px 0;
	width: 95%;
}
.site_title {
	width: 50%;
	max-width: 290px;
}
.site_title img {
	margin-bottom: 5px;
}
.head_contact {
	display: none;
}

/*検索*/
.search_wrap {
	margin: 10px auto 0;
	display: flex;
	justify-content: center;
	align-items: baseline;
	font-size: 100%;

}
#sbox {
	margin: 0 1rem;
    padding: 0 7px;
    width:clamp(150px, 45vw , 350px);
    border: solid 1px #777;
    border-radius: 5px;
	font-size: 100%;
}
#sbtn {
	/*width: 15%;*/
    /*font-size: 100%;*/
	padding: 0em .5em .4em;
    color: #777;
	font-size: 100%;
    border: none;
    background: #fff;
	text-align: center;
}
#sbtn img {
	position: relative;
	top: .25em;
	left: -.15em;
	width: 17px;
	height: auto;
}

/* 文字サイズ */
.fontM { font-size: 1.6rem }
.fontL { font-size: 1.8rem }
 
 /*文字サイズボタン*/
.font_wrap {
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	margin-left: 2rem;
	font-size: 100%;
}
.font_wrap .font_btn {
	margin-left: .5em;
	padding: .2rem .4rem .35rem;
	color: #fff;
	background: #4EA77D;
	border: 1px solid #777;
	border-radius: 3px;
}
.font_wrap .font_btn:hover {
	cursor: pointer;
}
.font_wrap .font_btn.large {
	font-size: 115%;
}
.font_wrap .font_btn.active {
	background: #2E7755;
}


.header_links ul.below {
	text-align: right;
}

@media print, screen and (max-width:1100px) { 
.header_links ul.below img {
	width: 230px;
}
}

/* Navigation
--------------------------------------------- */
/*ボタン外側*/
.openbtn{
	position: fixed;
	top: 8px;
	right: 10px;
	background:#fff;
	cursor: pointer;
    width: 55px;
    height:55px;
	z-index: 1000;
}
/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 11px;
    height: 5px;
	background: #63CCE5;
  	width: 60%;
  }
.openbtn span:nth-of-type(1) {
	top:9px;	
}
.openbtn span:nth-of-type(2) {
	top:19px;
}
.openbtn span:nth-of-type(3) {
	top:30px;
}
.openbtn span:nth-of-type(3)::after {
	content:"ＭＥＮＵ";/*3つ目の要素のafterにメニュー表示を指定*/
	position: absolute;
	top:8px;
	left:-13px;
	width: 60px;
	text-align: center;
	color: #63CCE5;
	font-size: 58%;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}


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

/*ナビメニュー*/
.sp_nav {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 100;
    background-color: #fff;
    width: 100%;
    height: 105vh;
	overflow-y: auto;
}

.sp_nav_wrap{
    display: flex;
    /*height: 100%;*/
    justify-content: center;
	padding: 0;
    width: 100%;
	background: #fff;
}
.sp_nav ul.sp_nav_menu {
	margin: 0 auto;
	padding:30px 0 0;
	width: 85%;
	max-width: 450px;
	background: #fff;
	border-radius: 6px;
}

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

/*親メニュー*/
.sp_nav ul.sp_nav_menu > li {
	position: relative;
	margin: 0 0 15px;
	padding: 0 0 0 28px;
}
.sp_nav ul.sp_nav_menu > li:before {
	content: "";
	position: absolute;
	top:15px;
	left: 5px;
	display: inline-block;
	background: #D5D5D5;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	width: 8px;
	height: 12px;
}
.sp_nav ul.sp_nav_menu li a {
	display: block;
	padding: 5px 0;
	font-size: 125%;
	font-weight: 700;
}

/*お問い合わせボタン*/
.sp_nav .navi_contact {
	margin: 20px 0;
	text-align: center;
}
.sp_nav .navi_contact a {
	display: inline-block;
	margin: 0 auto;
	padding: 12px 15vw;
	color: #fff;
	font-size: 130%;
	font-weight: 700;
	text-decoration: none;
	background: #31B171;
	border-radius: 50px;
}

/* TOP　コンテンツ
--------------------------------------------- */
h2.h2_top {
	position: relative;
	margin: 25px 0;
	text-align: center;
}
h2.h2_top span.txtl {
	display: inline-block;
	padding: 0 2.4em;
	color: #222;
	font-size: clamp(160%,5.5vw, 200%);
	font-weight: 700;
	text-align: center;
	background-image: url("images/pages/top_h2_wave.svg"),url("images/pages/top_h2_wave.svg");
	background-repeat: no-repeat,no-repeat;
	background-size: 2em, 2em;
	background-position: left center, right center;
}
h2.h2_top span.txts {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	font-size: 70%;
	font-weight: 700;
	letter-spacing: 0.3em;
}

.mv {
	position: relative;
	width: 100%;
	height: 100%;
}
.mv .mv_txt {
	position: absolute;
    top: 58px;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(100% - 50px);
}
.mv .mv_txt p {
	position: relative;
	font-size: 164%;
	color: #fff;
	padding-left: 5%;
	text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

div#n2-ss-2 .n2-font-d4dc6a8f0db96b24ff9797557536d741-paragraph,
div#n2-ss-2 .n2-font-90180a87b9f5f6013551701eacefd9bf-paragraph {
	font-size: 102% !important;
}


/* TOP　コンテンツ　山形・遊佐沖からはじまる新しいエネルギー
--------------------------------------------- */
section.about {
	position: relative;
    padding: 22px 0 27vw;
}
section.about:after {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 17vw;
	background: url("images/pages/top_line_fusha.png")
	repeat-x center/ cover;
}
section.about h2 {
	margin: 0;
	padding: 0 0 10vw;
	font-size: 6vw;
	color: #2EB5A7;
	font-weight: 700;
	text-align: center;
	background-image: url("images/pages/top_about_wave_left.svg"),url("images/pages/top_about_wave_right.svg");
	background-repeat: no-repeat,no-repeat;
	background-size: 30%, 30%;
	background-position: 20% 100%, 80% 100%;
}
section.about .txt {
	margin: 0 auto;
    padding: 0px 0 110px;
    background: url("images/pages/top_about_bg.png")no-repeat center bottom/100%;
}
section.about .txt p {
	margin: 0 auto;
	width: 90%;
	font-size: clamp(100%,3vw,125%);
	font-weight: 700;
	line-height: 2.0;
}



/* TOP　コンテンツ　お知らせ
--------------------------------------------- */
section.news {
	position: relative;
	padding: 20px 0 0;
	background: #dcf5ff;
}

section.news:after {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -7vw;
	left: 0;
	width: 100%;
	height: 14vw;
	background: url("images/pages/top_line_deepblue.svg")
	no-repeat center/ cover;
	z-index: 1;
}

ul.news_wrapper {
	margin: 30px auto;
	width: 92%;
	max-width: 550px;
}
li.news_box  {
	margin: 13px 0;
}
li.news_box a {
	display: flex;
	align-items: flex-start;
	flex-wrap: nowrap;
	padding: 8px 4px 8px 8px;
}
.news_thumb {
	width: 45%;
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;	
}
.news_thumb img {
	width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 5px;
}

.news_detail {
	padding-left: 1em;
	width: 65%
}
.news_detail time {
	color: #222;
	font-size: 80%;
	font-weight: 600;
}
.news_detail .catname {
	line-height: 1.3;
}
.news_detail .catname span {
	padding: 4px 1em 3px;
	color: #fff;
	font-size: 60%;
	font-weight: 400;
	vertical-align: middle;
	background: #1FA3CC;
	border-radius: 20px;
}
.news_detail .title {
	margin-top: 5px;
	font-size: 92%;
	line-height: 1.5;
}

/*リンク色*/
ul.news_wrapper li.news_box a,
ul.news_wrapper li.news_box a:visited {
	color: #1FA3CC;
	font-weight: 700;
	text-decoration: none;
	border-radius: 5px;
	transition: all .1s;
}
ul.news_wrapper li.news_box a:focus,
ul.news_wrapper li.news_box a:active {
	background: rgba(255,255,255,0.7);
	transition: all .1s;
}
img.mark_new {
	position: relative;
	top: -.25em;
    right: 3px;
}

/*過去一覧*/
.news_more {
	position: relative;
	bottom: -2px;
	margin: 10vw 0 0;
	text-align: center;
	z-index: 2;
}
.news_more a {
	color: #fff;
	font-size: clamp(9px,3.1vw,16px);
	font-weight: 700;
	text-decoration: none;
	transition: all .2s;
}
.news_more a:focus,
.news_more a:active {
	transition: all .2s;
	background: #016583;
}

/* TOP　コンテンツ　事業概要、会社概要
--------------------------------------------- */
section.info {
	margin: 0 auto;
	padding: 70px 0 40px;
	width: 100%;
	max-width: 1040px;
}


.overview_wrap,
.company_wrap {
/*	display: flex;
	justify-content: center;*/
}
section.info .txtbox .txt {
	margin: 13% 0 6%;
}
section.info .txtbox .btn_more {
	margin: 0;
	text-align: center;
}
section.info .txtbox .btn_more a {
	display: inline-block;
	padding: 5px 2.8em 3px;
	/*font-size: 80%;*/
	color: #222;
	text-decoration: none;
	border: 1px solid #222;
	border-radius: 40px;
}
section.info .picbox {
	position: relative;
	overflow: hidden;
	aspect-ratio: 13/6.5;
}
section.info .picbox img {
	width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: center;
}

/*事業概要*/
.overview_wrap {
	margin-bottom: 60px;
}
.overview_wrap .txtbox {
	position: relative;
}
/*.overview_wrap .txtbox:before {
	content: "";
	position: absolute;
	right: -90px;
	bottom: -170px;
	width: 130px;
	height: 207px;
	 background: url("images/pages/gray_thunder.svg")no-repeat center /contain;
	 z-index: 1;
}*/
/*@media print, screen and (max-width:1050px) {
.overview_wrap .txtbox:before {
	display: none;
}
}*/
.overview_wrap .txtbox {
	order: 1;
	padding: 0 3%;
	max-width: 500px;
}
.overview_wrap .picbox {
	order: 2;
}
/*.overview_wrap .picbox:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	width: 11%;
	height: 100%;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
*/

/*会社概要*/
.company_wrap .txtbox {
	order:2;
	padding: 0 3%;
	max-width: 500px;
}
.company_wrap .picbox {
	order: 1;
}
/*.company_wrap .picbox:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	background: #fff;
	width: 11%;
	height: 100%;
	clip-path: polygon(100% 0, 0 0, 100% 100%);
}
*/


/* Posts and pages
--------------------------------------------- */
.entry-content p {
	margin-bottom: 1.8em;
}
.entry-content ul,
.entry-content ol {
	margin: 0 0 1.5em 1.5em;
}

.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 10px;
	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（アーカイブ）
--------------------------------------------- */
.page-template-page-past-news ul.news_wrapper,
.archive ul.news_wrapper,
.category ul.news_wrapper {
	margin: 30px auto;
	width: 100%;
}


/* Posts and pages（見出し）
--------------------------------------------- */
/* H1 */
h1.entry-title,
h1.category_name {
	position: relative;
	margin-bottom: 25px;
	padding: 17px 12%;
	font-size: clamp(120%,5vw,200%);
	font-weight: 700;
	text-align: center;
	background: #fff url("images/pages/page_h1_bg.svg")no-repeat center / cover;
	letter-spacing: 0.08em;
	line-height: 1.5;
}

/* H2 */
.entry-content h2 {
	margin: 40px 0 15px;
	padding: 0;
	font-size: 130%;
	font-weight: 700;
}

/* H3 */
.entry-content h3 {
	display: inline-block;
	margin: 8px 0;
	padding:  0;
	font-size: 120%;
	font-weight: 700;
}

/* Posts and pages（ページナビ）
--------------------------------------------- */
main .wp-pagenavi {
	margin: 25px 0 0;
	font-size: 90%;
}
main .wp-pagenavi span,
main .wp-pagenavi a {
	display: inline-block;
	padding: 1px 7px;
	color: #222;
	border: 1px solid #fff;
}
main .wp-pagenavi a 
,main .wp-pagenavi a:visited {
	color: #222;
}
main .wp-pagenavi a:focus
,main .wp-pagenavi a:active {
	background: #DDDDDD;
	text-decoration: none;
	color: #222;
	border: 1px solid #DDDDDD;
}

main .wp-pagenavi span.pages {
	font-size: 80%;
	border: none;
}
main .wp-pagenavi span.current {
	color: #fff;
	background: #595b5a;
	border: 1px solid #595b5a;
}

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

/* 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-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,
.con_email {
	width: 100%;
	max-width: 25em;
}
.con_yubin1 {
	margin-left: 6px;
	margin-right: 6px;
    width: 60px;
}
.con_yubin2 {
	margin-left: 5px;
    margin-right: 25px;
    width: 65px;
}
.con_jusyo {
	margin-top: 15px;
    margin-right: 5px;
    width: 100%;
}
.con_inquiry {
	width: 100%;
	height: 12em;
}


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

.bypostauthor {
	display: block;
}

/* sidebar
--------------------------------------------- */
/* ▼side（これまでのお知らせ） */
aside h2 {
	margin-bottom: 11px;
	padding: 8px 13px;
	color: #fff;
	font-size: 95%;
	font-weight: 600;
	background: #1fa3cc;
}
aside a,
aside a:visited {
	color: #333;	
}
.past_entry,
.monthly-eachcat ul {
	margin-bottom: 35px;
}
.past_entry > ul,
.monthly-eachcat > ul {
	/*margin-top: 15px;*/
	font-size: 83%;
}
.past_entry ul li {
	position: relative;
	margin-top: 11px;
	padding:0 2px 13px 17px;
	border-bottom: 1px dotted #777;
}
.past_entry ul li time {
	display: block;
	margin-bottom: 4px;
	font-size: 90%;
}
.past_entry ul li time:before {
	content: "";
	position: absolute;
	top: 7px;
    left: 4px;
	display: inline-block;
	background: #fff;
	border: 2px solid #1fa3cc;
	width: 7px;
	height: 7px;
	border-radius: 10px;
}
.past_entry ul li .catname {
	display: block;
	color: #1fa3cc;
	padding: 0;
	font-size: 82%;
	border-radius: 2px;
}
.past_entry .more {
	margin: 0;
	text-align: right;
}
.past_entry .more a {
	font-size: 75%;
}
ul.monthly li {
	margin: 5px;
}
ul.eachcat li {
	margin: 5px;
}
ul.eachcat > li > ul {
	padding-left: 2.3em;
}
ul.eachcat > li > ul > li {
	position: relative;
}
ul.eachcat > li > ul > li:before {
	content: "ー";
	position: absolute;
	top: 0px;
    left: -20px;
	color: #c3c3c3;
	font-weight: 700;
}


/* 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: 40px;
	position: relative;
	background: #fff url("images/footers/footer.webp")no-repeat center 95% /cover;
	height: 16vw;
	max-height: 340px;
}
#site_footer:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	background: url("images/footers/footer_blur.png")repeat-x center top / cover;
	width: 100%;
	height: 5vw;
}

/*コピーライト*/
#copyright {
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline-block;
	padding: 15px 0 10px;
	width: 100%;
	color: #fff;
	font-size: 56%;
	text-align: center;
	letter-spacing: 0.25em;
}
#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;
	bottom: 0;
	width: 100%;
	background-color: #18906B;
	box-shadow: 0px 0px 4px rgba(0,0,0,0.25);
	z-index: 10000;
	height: 40px;
}
.footer_area .footer_area_inner {
	flex: 1;
    /*position: relative;*/
    /*margin: 0px auto;*/
    /*padding: 5px 0 0;*/
	/*width:28%;*/
}
a.inquiry_btn {
	display: block;
	padding:3px 0 10px;
    text-align: center;
}

a.inquiry_btn p {
	color: #fff;
	font-size: 80%;
	line-height: 1.9;
}

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

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

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

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

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

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

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

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

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

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

	/*rtl:ignore*/
	float: left;

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

.alignright {

	/*rtl:ignore*/
	float: right;

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

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

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

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


/*会社概要*/
.campany_outline table {
	margin: 0;	
	font-size: 0.95em;
}
.campany_outline table tbody td {
	margin: 0;
	padding: 18px 10px 18px 20px;
	line-height: 1.85;
	border:none;
}
.campany_outline table tbody td:nth-child(1) {
	padding-top: 18px;
	width: 25%;
	border:none;
	border-bottom:solid 1px #B8B8B8;
	vertical-align: top;
	font-weight: 700;
}
.campany_outline table tbody td:nth-child(2) {
	width: 75%;
	padding: 18px 10px 18px 20px;
	border:none;	
	border-bottom:dotted 1px #848484;
	vertical-align: top;
}

.shareholder table tbody th {
	margin-bottom: 10px;
}

}
