@charset "utf-8";

/*
Theme Name: hoiku-design
Description: 保育のデザイン研究所のオリジナルWordPressテーマです。
Version: 0.1
Author: hoiku-design
*/


/* ***************************************************************** 
*	基本設定
* ***************************************************************** */

body {
	font-weight: 500;
	word-wrap: break-word;
	overflow-wrap: break-word;
}


/* リンク
---------------------------------------------------- */

a {
	color: #000;
	text-decoration: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

a:hover {
	color: #00819F;
}


/* 画像
---------------------------------------------------- */

img {
	border: 0;
	padding: 0px;
	margin: 0px
}


/* フロート
---------------------------------------------------- */

.alignright,
.right {
	float: right;
	margin: 0 0 10px 20px;
}

.alignleft,
.left {
	float: left;
	margin: 0 20px 10px 0;
}

.aligncenter {
	display: block;
	margin: 0 auto;
}

.clear {
	clear: both;
}



/* リスト
---------------------------------------------------- */
/*
ol {
	margin: 10px 0 20px 10px;
	padding: 0 0 0 0;
	list-style: decimal;
}

ul {
	margin: 10px 0 20px 4px;
	padding: 0 0 0 0;
	list-style: disc;
}

li {
	margin: 10px 0 10px 15px;
	padding: 0;
}

li a {
	color: #378893;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	
}

li a:hover {
	color: #666;
}
*/


/* *****************************************************************
*	全体Wrapper
* ***************************************************************** */

.wrapper {
	margin: auto;
	max-width: 1060px;
	/* padding: 50px 0 50px 0; */
	padding: 50px 0 50px 30px;
}



/* ***************************************************************** 
*	ヘッダー
* ***************************************************************** */

.topborder {
	border-top: 7px solid #333;
}

#header {
	width: 100%;
	margin: 0 auto;
}

.header-inner {
	max-width: 960px;
	overflow: hidden;
	margin: 0px auto;
	padding: 40px 0;
}

#header h1 {
	text-align: center;
	margin: 0;
}

.logo {
	text-align: center;
	margin: 0;
	padding: 0;
}



/* トップヘッダー画像
---------------------------------------------------- */

.top-header {
	width: 100%;
	margin: 0 auto 0px auto;
	text-align: center;
}


/* ワンカラムページのイメージヘッダー
---------------------------------------------------- */

.head-img {
	width: 100%;
	text-align: center;
	overflow: hidden;
	margin: 30px 0 0px 0;
}

.head-img img {
	margin: 0px auto 10px auto;
}


/* トップナビゲーション
---------------------------------------------------- */

#nav {
	width: 960px;
	margin: 0 auto 0px auto;
	z-index: 9999;
	padding: 0;
	text-align: center;
}

#nav ul {
	list-style: none;
	margin: auto;
}

.main-navigation {
	clear: both;
	margin: 0 auto;
	position: relative;
}

ul.nav-menu,
div.nav-menu>ul {
	margin: 0;
	padding: 0;
}

.nav-menu li {
	display: inline-block;
	position: relative;
	margin: 0 -2px 0 -2px;
}

.nav-menu li a {
	color: #333;
	display: block;
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
	padding: 12px 30px 12px 30px;
}

.nav-menu li:hover>a,
.nav-menu li a:hover {
	background: #eee;
}

.nav-menu .sub-menu,
.nav-menu .children {
	background: #eee;
	display: none;
	padding: 0;
	position: absolute;
	z-index: 99999;
}

.nav-menu .sub-menu ul,
.nav-menu .children ul {
	border-left: 0;
	left: 100%;
	top: 0;
}

ul.nav-menu ul a,
.nav-menu ul ul a {
	color: #333;
	margin: 0;
	width: 200px;
}

ul.nav-menu ul a:hover,
.nav-menu ul ul a:hover {
	background: #f5f5f5;
}

ul.nav-menu li:hover>ul,
.nav-menu ul li:hover>ul {
	display: block;
	background: #eee;
}

.nav-menu .current_page_item>a,
.nav-menu .current_page_ancestor>a,
.nav-menu .current-menu-item>a,
.nav-menu .current-menu-ancestor>a,
.nav-menu .current-post-ancestor>a {
	color: #333;
	background: #f5f5f5;
}

.toggle {
	display: none;
}

.menu-toggle {
	width: 40px;
	height: 40px;
}

.hamburger {
	display: none;
}


/* ハンバーガーメニュー
---------------------------------------------------- */

/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author Jonathan Suh @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
*/

.hamburger {
	padding: 12px 2px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, -webkit-filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}

.hamburger:hover {
	opacity: 0.7;
}

.hamburger-box {
	width: 50px;
	height: 25px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 30px;
	height: 2px;
	background-color: #000;
	border-radius: 4px;
	position: absolute;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: -10px;
}

.hamburger-inner::after {
	bottom: -10px;
}

/*
* Spin
*/
.hamburger--spin .hamburger-inner {
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
	transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
	transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
	transition-delay: 0.14s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
	bottom: 0;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/* スクロールダウンメニュー
---------------------------------------------------- */

/**
 * cbslideheader - A jQuery plugin to display or hide headerbar with a sliding motion
 * @version v0.3.8
 * @author maechabin <mail@chab.in> http://mae.chab.in/
 * @license MIT license
 */

.cb-header {
	position: fixed;
	left: 0;
	visibility: hidden;
}

.header1 {
	background-color: #FFF;
	margin-top: -1px;
	border-bottom: 1px solid #dedede;
	text-align: center;
	width: 100%;
}



/* ***************************************************************** 
*	メイン（本文）コンテンツ
* ***************************************************************** */

#main {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}


/* ギャラリーレイアウト
---------------------------------------------------- */

li.item {
	height: 450px;
	margin-bottom: 50px;
	position: relative;
}

.item-img {
	margin: 0 0 10px 0;
	overflow: hidden;
	text-align: center;
}

.item-cat {
	font-size: 65%;
	color: #999;
	padding: 0 0 0px 0;
	margin: 0 0 20px 0;
	max-height: 65px;
	overflow: hidden;
}

.item-cat a {
	color: #444;
}

.item-cat-name {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0px 8px;
	font-size: 65%;
	max-height: 25px;
	background: #eee;
	overflow: hidden;
}

.item-cat-name a {
	color: #333;
}

.news {
	background-color: #eee;
}

/* カテゴリーカラー変更 */

.item-date {
	font-size: 70%;
	color: #ccc;
	padding: 0 0 0 0;
	margin: 0 0 10px 0;
	max-height: 50px;
	overflow: hidden;
	line-height: 150%;
}

.item h2 {
	font-size: 16px;
	line-height: 150%;
	font-weight: bold;
	letter-spacing: 0.03em;
	text-decoration: underline;
}

.item-title {
	margin: 0 0 0 0;
	padding: 5px 0px 0px 0px;
	border-top: 0px solid #ccc;
	border-bottom: 0px solid #ccc;
}

.item-title a {
	color: #333;
}

.item-title a:hover {
	color: #666;
}

.item-text {
	font-size: 13px;
	color: #555;
	line-height: 170%;
}

/* CSS3アニメーション */

.img-anime2 img {
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.img-anime2:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}



/* ブログ記事部分
---------------------------------------------------- */

.single-contents {
	margin: 0 0 50px 0;
}

.page-contents {
	margin: 0 0 50px 0;
}

p {
	font-size: 16px;
	color: #333;
	line-height: 200%;
	padding: 15px 0px 15px 0px;
}

p a {
	color: #378893;
	text-decoration: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

p a:hover {
	color: #666;
}



/* ページ日付
---------------------------------------------------- */

.pagedate {
	font-size: 12px;
	font-weight: normal;
	text-align: left;
	padding: 0 0 0 0;
	margin: 0 0 -10px 0;
	color: #555;
	letter-spacing: 0.02em;
}

/* ページタイトル
---------------------------------------------------- */

.pagetitle-kotei {
	color: #333;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.05em;
	font-style: normal;
	margin: 0px 0px 20px 0px;
	padding: 0 0 3px 0;
}

.pagetitle {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.01em;
	padding: 0px 0px 5px 0px;
	margin: 0px auto 80px auto;
	border-bottom: 3px double #ccc;
	max-width: 300px;
	text-align: center;
}

.pagetitle a {
	color: #333;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.pagetitle a:hover {
	color: #666;
}

.pagetitle-top {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.01em;
	padding: 0px 0px 5px 0px;
	margin: 0px auto 30px auto;
	border-bottom: 3px double #ccc;
	max-width: 300px;
	text-align: center;
}

.pagetitle-single {
	color: #333;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.05em;
	font-style: normal;
	margin: 0px 0px 10px 0px;
}

.pagetitle-single a {
	color: #333;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.pagetitle-single a:hover {
	color: #666;
}


/* 投稿記事タイトルH1
---------------------------------------------------- */

.blog-title {
	font-size: 22px;
	line-height: 140%;
	font-weight: bold;
	color: #333;
	margin: 20px 0px 20px 0px;
	padding: 18px 0px 15px 0px;
	border-top: 3px double #ccc;
	border-bottom: 1px solid #ccc;
}

.blog-title a {
	color: #333;
	text-decoration: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.blog-title a:hover {
	color: #666;
}


/* 見出し
---------------------------------------------------- */

h1 {
	font-size: 24px;
	margin: 40px 0px 20px 0px;
}

h2 {
	font-size: 22px;
	line-height: 130%;
	font-weight: bold;
	color: #333;
	margin: 40px 0px 20px 0px;
	padding: 18px 0px 15px 0px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

h3 {
	font-size: 20px;
	line-height: 130%;
	font-weight: bold;
	color: #333;
	padding: 0 0 5px 0;
	margin: 40px 0 15px 0;
	border-bottom: 1px solid #ccc;
}

h4 {
	font-size: 18px;
	line-height: 130%;
	font-weight: bold;
	color: #555;
	padding: 0 0 5px 0;
	margin: 30px 0 10px 0;
	border-bottom: 1px dotted #ccc;
}

h5 {
	font-size: 16px;
	line-height: 1.3em;
	margin: 30px 0 0px 0;
}

h6 {
	font-size: 14px;
	line-height: 1.3em;
	margin: 30px 0 0px 0;
}


/* 記事フッター
---------------------------------------------------- */

.blog-foot {
	clear: both;
	font-size: 11px;
	color: #999;
	margin-bottom: 30px;
}

.blog-foot span {
	color: #999;
}


/* パンくずリスト
---------------------------------------------------- */

.breadcrumb {
	margin: 0px 0 0px 0;
	line-height: 120%;
}

.breadcrumb div {
	display: inline;
	font-size: 11px;
	color: #999;
}

.breadcrumb span,
.breadcrumb span a {
	color: #45aab8;
}

.breadcrumb ol {
	margin: 0px;
}

.breadcrumb li {
	margin: 0px;
	display: inline;
}


/* 次の記事・前の記事
---------------------------------------------------- */

#next {
	font-size: 90%;
	line-height: 150%;
	margin: 50px 0 20px 0;
}

.next-left {
	float: left;
	text-align: left;
	margin: 0 0 10px 0;
	background: url(images/left.gif) no-repeat left;
}

.next-left a {
	padding: 20px 20px 20px 50px;
	display: block;
	border: 1px solid #fff;
}

.next-left a:hover {
	border: 1px solid #eee;
}

.next-right {
	float: right;
	text-align: right;
	margin: 0 0 10px 0;
	background: url(images/right.gif) no-repeat right;
}

.next-right a {
	padding: 20px 50px 20px 20px;
	display: block;
	border: 1px solid #fff;
}

.next-right a:hover {
	border: 1px solid #eee;
}


/* ページャー
---------------------------------------------------- */

.pager {
	text-align: center;
	margin: 0px 0 30px 0;
}

a.page-numbers,
.pager .current {
	background: #ffffff;
	color: #00819F;
	padding: 7px 10px;
	margin: 0 2px;
	border: 2px solid #ffffff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.pager .current {
	background: #fff;
	color: #00819F;
	border: 2px solid #00819F;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}



/* 関連記事
---------------------------------------------------- */

.similar {
	margin: 0px 0px 50px 0px;
}

.similar-head {
	color: #333;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.05em;
	font-style: normal;
	margin: 30px 0px 10px 0px;
	padding: 0 0 3px 0;
	border-bottom: 3px double #ccc;
}

.similar ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.similar li {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	list-style: none;
}

.similar li a {
	color: #555;
}

.similar li a:hover {
	color: #888;
}

table.similar-text {
	width: 100%;
	color: #444;
	margin: 0 0 0 0;
	border-bottom: dotted 1px #ccc;
	border-collapse: collapse;
	border-spacing: 0;
}

table.similar-text img {
	width: 150px;
}

table.similar-text th {
	text-align: left;
	width: 150px;
	vertical-align: middle;
}

table.similar-text td {
	text-align: left;
	white-space: normal;
	vertical-align: middle;
}



/* コメント欄
---------------------------------------------------- */

.comment-head,
.comment-reply-title {
	color: #333;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.05em;
	font-style: normal;
	margin: 50px 0px 10px 0px;
	padding: 0 0 3px 0;
	border-bottom: 3px double #ccc;
}

.commentlist li {
	list-style: none;
	font-size: 90%;
	color: #888;
}

.commentlist {
	margin: 0 0 50px 0;
	padding: 0 0 0 0;
}

li.comment {
	list-style: none;
	font-size: 90%;
	color: #888;
	margin: 30px 0px 30px 0px;
}

.comment p {
	font-size: 14px;
}


/* WP必須
---------------------------------------------------- */

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	font-size: 90%;
	text-align: center;
}

.sticky {}

.gallery-caption {}

.bypostauthor {}

/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.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;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}



/* *****************************************************************
*	サイドバー
* ***************************************************************** */

.sidebar {
	width: 100%;
	margin: 0px 0px 40px 0px;
}


/* 新着表示
---------------------------------------------------- */

.sidebox-new {
	margin: 0 0 50px 0;
	padding: 0 0 0 0;
}

.sidebox-new ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.sidebox-new li {
	list-style: none;
	margin: 0 0 0 0;
	padding: 0px 0 0px 0px;
	border-bottom: 1px dotted #ddd;
}

.sidebox-new li a {
	font-size: 14px;
	color: #444;
	list-style: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.sidebox-new li a:hover {
	color: #999;
}

table.similar-side {
	width: 100%;
	color: #444;
	margin: 0 0 0 0;
	border-collapse: collapse;
	border-spacing: 0;
}

table.similar-side img {
	width: 80px;
}

table.similar-side th {
	text-align: left;
	width: 80px;
	vertical-align: middle;
}

table.similar-side td {
	text-align: left;
	white-space: normal;
	vertical-align: middle;
}


/* *****************************************************************
*	フッター
* ***************************************************************** */

#footer {
	background: #F5F5F5;
	clear: both;
	width: 100%;
	font-size: 80%;
	margin: 0px auto 0px auto;
}

.footer-inner {
	margin: 0px auto 0px auto;
	padding: 0px 0px;
	max-width: 960px;
}

#copyright {
	font-size: 10px;
	line-height: 110%;
	color: #999;
	text-align: center;
	position: relative;
	margin: 0;
	padding: 10px;
	background: #444;
}

#copyright a {
	color: #FFF;
}



/* *****************************************************************
*	ウィジェット
* ***************************************************************** */

/* 基本形
---------------------------------------------------- */

.widget {
	margin: 30px 0 50px 0;
}

.widget ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.widget li {
	list-style: none;
}

.widget li a {
	color: #666;
}

.widget li a:hover {
	color: #999;
}

.widget_recent_entries li a,
.widget_archive li a,
.widget_categories li a,
.widget_nav_menu li a {
	margin: 0 0 0 0;
}

.textwidget,
.textwidget p {
	font-size: 16px;
	color: #444;
	line-height: 170%;
	margin: 0 0;
	padding: 0px 0px 0px 0px;
}

.widget-title {
	color: #333;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.05em;
	font-style: normal;
	margin: 0px 0px 10px 0px;
	padding: 0 0 3px 0;
	border-bottom: 3px double #ccc;
}

.widget_block h2 {
	font-size: 16px !important;
	border-bottom: 3px double #ccc;
	border-top: none;
	margin: 0px 0px 10px 0px !important;
	padding: 0px 0 3px 0 !important;
}


/* ウィジェットボックストップページ用
---------------------------------------------------- */

.topbox {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.topbox h2,
.topbox h3,
.topbox h4 {
	border-bottom: none;
}

.topbox ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.topbox li {
	margin: 0 0 0 0;
	padding: 7px 0px 6px 0px;
	list-style: none;
	border-bottom: 1px dotted #ddd;
}

.topbox li a {
	font-size: 15px;
	line-height: 160%;
	color: #333;
	margin: 0 0 0 0;
	padding: 7px 0px 6px 0px;
	list-style: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.topbox li a:hover {
	color: #666;
}

.topbox ul.children {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.topbox ul.children li {
	padding-left: 15px;
	padding-top: 5px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}

.topbox ul.sub-menu {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.topbox ul.sub-menu li {
	padding-left: 15px;
	padding-top: 5px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}

.top-widget-title {
	font-size: 18px;
	letter-spacing: 0.01em;
	padding: 0px 0px 10px 0px;
	margin: 30px auto 40px auto;
	border-bottom: 3px double #ccc;
	max-width: 300px;
	text-align: center;
}



/* ウィジェットボックス全画面コンテンツ用
---------------------------------------------------- */

.top-wide-contents {
	width: 100%;
	margin: 0 0 0 0;
	background: #f9f9f9;
}

.top-wide-contents .widget {
	margin: 0 0 0 0;
	padding: 5px 20px 5px 20px;
}

.top-wide-contents .textwidget,
.top-wide-contents .textwidget p {
	color: #444;
	line-height: 170%;
	margin: 0 0 30px 0;
	text-align: center;
}

.top-wide-contents .top-widget-title {
	font-weight: bold;
	margin-bottom: 30px;
	padding: 0px 0 5px 0;
	border-bottom: 4px solid #444;
}

.top-wide-contents ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.top-wide-contents li {
	margin: 0 0 0 0;
	padding: 7px 0px 6px 0px;
	list-style: none;
	border-bottom: 1px dotted #ddd;
}

.top-wide-contents li a {
	line-height: 160%;
	color: #444;
	margin: 0 0 0 0;
	padding: 7px 0px 6px 0px;
	list-style: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.top-wide-contents li a:hover {
	color: #999;
}

.top-wide-contents ul.children {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.top-wide-contents ul.children li {
	padding-left: 15px;
	padding-top: 5px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}

.top-wide-contents ul.sub-menu {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.top-wide-contents ul.sub-menu li {
	padding-left: 15px;
	padding-top: 5px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}


/* ウィジェットボックスフッター用
---------------------------------------------------- */

.footerbox {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.footerbox .widget {
	margin: 0 0 0 0;
	padding: 50px 0 50px 0;
}

.footerbox h2,
.footerbox h3,
.footerbox h4 {
	border-bottom: none;
}

.footerbox ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.footerbox li {
	margin: 0 0 0 0;
	padding: 7px 0px 6px 0px;
	list-style: none;
	border-bottom: 1px dotted #ddd;
}

.footerbox li a {
	font-size: 14px;
	line-height: 160%;
	color: #444;
	margin: 0 0 0 0;
	padding: 7px 0px 6px 0px;
	list-style: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.footerbox li a:hover {
	color: #999;
}

.footerbox ul.children {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.footerbox ul.children li {
	padding-left: 15px;
	padding-top: 5px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}

.footerbox ul.sub-menu {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.footerbox ul.sub-menu li {
	padding-left: 15px;
	padding-top: 5px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}

.footer-widget-title {
	color: #333;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.05em;
	font-style: normal;
	margin: 0px 0px 10px 0px;
	padding: 0px 0 3px 0;
	border-bottom: 3px double #ccc;
}


/* ウィジェットボックスシングルページ記事下用
---------------------------------------------------- */

.singlebox {
	margin: 50px 0 50px 0;
	padding: 0 0 0 0;
}

.singlebox .textwidget,
.singlebox .textwidget p {
	font-size: 16px;
	color: #444;
	line-height: 170%;
	margin: 0 0 0px 0;
	padding: 5px 0 5px 0;
}

.singlebox h2,
.singlebox h3,
.singlebox h4 {
	border-bottom: none;
}

.singlebox ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.singlebox li {
	margin: 0 0 0 0;
	padding: 7px 0px 6px 0px;
	list-style: none;
	border-bottom: 1px dotted #ddd;
}

.singlebox li a {
	font-size: 16px;
	line-height: 160%;
	color: #444;
	margin: 0 0 0 0;
	padding: 7px 0px 6px 0px;
	list-style: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.singlebox li a:hover {
	color: #999;
}

.single-widget-title {
	color: #333;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.05em;
	font-style: normal;
	margin: 50px 0 10px 0;
	padding: 0 0 3px 0;
	border-bottom: 3px double #ccc;
}

.singlebox ul.children {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.singlebox ul.children li {
	padding-left: 15px;
	padding-top: 5px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}

.singlebox ul.sub-menu {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.singlebox ul.sub-menu li {
	padding-left: 15px;
	padding-top: 5px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}


/* ウィジェットボックスサイドバー用
---------------------------------------------------- */

.sidebox {
	margin: 0 0 30px 0;
	padding: 0 0 0 0;
}

.sidebox ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.sidebox li {
	margin: 0 0 0 0;
	padding: 7px 0px 7px 0px;
	list-style: none;
	border-bottom: 1px dotted #ddd;
}

.sidebox li a {
	font-size: 14px;
	color: #444;
	margin: 0 0 0 0;
	padding: 5px 0px 5px 0px;
	line-height: 150%;
	list-style: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.sidebox li a:hover {
	color: #999;
}

.sidebox h2,
.sidebox h3,
.sidebox h4 {
	margin: 0;
	padding: 0;
	border-bottom: none;
}

.sidebox ul.children {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.sidebox ul.children li {
	padding: 5px 0 5px 15px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}

.sidebox ul.sub-menu {
	margin-bottom: 0px;
	display: block;
	padding: 5px 0 0 0;
}

.sidebox ul.sub-menu li {
	padding: 5px 0 5px 15px;
	border-top: 1px dotted #ccc;
	border-bottom: 0px dotted #ccc;
}

.sidebox .textwidget {
	margin: 0px 0 30px 0;
}


/* タグクラウド
---------------------------------------------------- */

.widget_tag_cloud a {
	font-size: 13px !important;
	line-height: 250%;
	padding: 5px 10px;
	margin: 0 5px 0 0;
	background: #ddd;
	word-break: keep-all;
	border-radius: 1px
}


/* カレンダー
---------------------------------------------------- */

table#wp-calendar {
	width: 100%
}

table#wp-calendar th {
	text-align: center;
}

table#wp-calendar td {
	text-align: center;
}


/* 検索フォーム
---------------------------------------------------- */

.search input {
	font: 16px arial, sans-serif;
	line-height: 250%;
	color: #333;
	width: 85%;
}

.search button {
	width: 15px;
	height: 15px;
	cursor: pointer;
	vertical-align: middle;
	border: none;
	background: url(images/search.png) no-repeat;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

/* ************************************************ 
*	ライン・テーブル・装飾など
* ************************************************ */

/* ライン・囲み
---------------------------------------------------- */

.line-dotted {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	border-bottom: 1px dotted #CCC;
}

.line-solid {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	border-bottom: 1px solid #CCC;
}

.line-footmenu {
	margin: 0 0 5px 0;
	padding: 0 0 3px 0;
	border-bottom: 1px dotted #CCC;
}

.line-kakoi {
	margin: 20px 0 40px 0;
	padding: 20px 25px;
	border: 1px solid #CCC;
}

.line-kakoi2 {
	margin: 20px 0 40px 0;
	padding: 20px 25px;
	border: 3px dotted #CCC;
}


/* テーブル
---------------------------------------------------- */

.single-contents tabel,
.page-contents tabel {
	width: 100%;
}

.single-contents th,
.single-contents td,
.page-contents th,
.page-contents td {
	border: 1px solid #ccc;
	padding: 20px;
}

.single-contents th,
.page-contents th {
	font-weight: bold;
	background-color: #dedede;
}



/* CTA (コールトゥアクション)
---------------------------------------------------- */

.cta-minimal {
	padding: 25px 20px 10px 20px;
	margin: 0;
	border: solid 1px #ccc;
	background: #e8e8e8;
}

.cta-title {
	font-family: Helvetica, arial, sans-serif;
	margin: -30px -21px 30px -21px;
	padding: 20px 0px 19px 0px;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	line-height: 140%;
	color: #FFF;
	border-top: solid 1px #ccc;
	border-bottom: 0px solid #ccc;
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	background: #3e3e3e;
}

.bt-order a {
	font-size: 15px;
	color: #fff;
	display: block;
	text-align: center;
	background-color: #10c98d;
	margin: 20px 0 20px 0;
	padding: 15px 15px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

}

.bt-order a:hover {
	color: #fff;
	background: #008677;
	text-decoration: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}

.bt-order2 a {
	color: #867888;
	background: #ddd;
	font-size: 14px;
	display: block;
	text-align: center;
	margin: 20px 0 20px 0;
	padding: 10px 15px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.bt-order2 a:hover {
	color: #fff;
	background: #999;
	text-decoration: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
}



/* *****************************************************************
*   レスポンシブ（メディアクエリ）
* ***************************************************************** */


/* PC 画面の横幅が960px以上
---------------------------------------------------- */

@media only screen and (min-width: 960px) {
	.sidebar {
		width: 300px;
	}

	.pc-ad-none {
		display: none;
	}
}



/* Tablet (Portrait) 画面の横幅が768px〜959pxまで
---------------------------------------------------- */

@media only screen and (min-width: 768px) and (max-width: 959px) {
	.wrapper {
		width: 728px;
		padding: 50px 20px 50px 20px;
	}

	.header-inner {
		width: 728px;
	}

	#nav {
		float: none;
		width: 728px;
		margin: 0 auto 0px auto;
		padding: 0;
	}

	li.item {
		height: 460px;
		margin-bottom: 40px;
	}

	li.item-gallery {
		height: 150px;
	}

	.item-img {
		height: 150px;
		margin: 0 0 10px 0;
		overflow: hidden;
	}

	.twothird {
		width: 460px;
		margin-right: 10px;
	}

	.footer-inner {
		width: 728px;
		padding: 0px 0px;
	}
}


/* Mobile (Portrait) 画面の横幅が300px~767pxまで（基本）
---------------------------------------------------- */

@media only screen and (max-width: 767px) {
	.topborder {
		display: none;
	}

	/* .wrapper { width: 300px; padding: 0px 0px 50px 0px; }*/
	.wrapper {
		width: 300px;
		padding: 0px 0px 50px 30px;
	}

	#header {
		width: 100%;
		height: 60px;
		background-color: #FFF;
		border-bottom: 1px solid #dedede;
		top: 0;
		z-index: 100;
	}

	.header-inner {
		width: 300px;
		max-width: 300px;
		padding: 10px 0 10px 0;
	}

	.top-header {
		margin: 0px auto 0px auto;
	}

	.head-img {
		margin: 0;
	}

	#nav {
		display: none;
		position: fixed;
		float: none;
		width: 100%;
		background: #fefefe;
		margin: 0px auto 40px auto;
		border-top: 1px solid #dedede;
	}

	.nav-menu li a {
		color: #333;
		display: block;
		font-size: 15px;
		padding: 20px 10px;
		text-decoration: none;
	}

	.nav-menu li {
		display: block;
		float: none;
		border-bottom: 1px solid #ededed;
	}

	.toggle {
		display: block;
		float: right;
		position: fixed;
		top: 5px;
		right: -5px;
		z-index: 10000;
	}

	li.item {
		height: 430px;
		margin-bottom: 50px;
	}

	li.item-gallery {
		height: 200px;
	}

	.item-img {
		height: 200px;
		margin: 0 0 10px 0;
		overflow: hidden;
	}

	table.similar-text img {
		width: 100px;
	}

	table.similar-text th {
		width: 100px;
	}

	.pagedate {
		margin: -20px 0 -10px 0;
	}

	.pagetitle-single {
		text-align: center;
		margin-top: 20px;
	}

	.pagetitle-top {
		font-size: 14px;
		font-weight: bold;
		letter-spacing: 0.05em;
		padding: 0px 0px 30px 0px;
		margin-top: 20px;
		margin-bottom: -20px;
		border-bottom: none;
		text-align: center;
	}

	.pagetitle {
		font-size: 14px;
		font-weight: bold;
		letter-spacing: 0.05em;
		padding: 0px 0px 0px 0px;
		margin: 20px auto 20px auto;
		border-bottom: none;
		text-align: center;
	}

	p {
		font-size: 16px;
	}

	.footer-inner {
		width: 300px;
		padding: 0px 0px;
	}

	.single-contents br {
		display: none;
	}

	.top-wide-contents br {
		display: none;
	}

	.single-contents {
		margin: 0 0 50px 0;
	}

	.page-contents {
		margin: 0px 0 50px 0;
	}

	.block-three {
		margin-left: -3.1914893617021276%;
		width: 100%;
	}

	.block-two {
		list-style: none;
		margin-left: -3.1914893617021276%;
	}

	li.similar-item {
		float: left;
		width: 46.80851063829787%;
	}

	li.similar-item {
		height: 200px;
		margin-bottom: 20px;
		overflow: hidden;
	}

	.similar-item-title {
		font-size: 13px;
		line-height: 150%;
		font-weight: bold;
	}

}


/* Mobile (Portrait/iPhone6) 画面の横幅が375px〜479pxまで
---------------------------------------------------- */

@media only screen and (min-width: 375px) and (max-width: 479px) {
	.wrapper {
		width: 336px;
	}

	#header {
		width: 100%;
		max-width: 479px;
	}

	.header-inner {
		width: 336px;
	}

	li.item {
		height: 450px;
		margin-bottom: 50px;
	}

	li.item-gallery {
		height: 224px;
	}

	.item-img {
		height: 224px;
	}

	.footer-inner {
		width: 336px;
		padding: 0px 0px;
	}
}


/* Mobile (Landscape) 画面の横幅が480px〜767pxまで
---------------------------------------------------- */

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.wrapper {
		width: 420px;
	}

	#header {
		width: 100%;
		max-width: 767px;
	}

	.header-inner {
		width: 420px;
	}

	li.item {
		height: 500px;
		margin-bottom: 50px;
	}

	li.item-gallery {
		height: 280px;
	}

	.item-img {
		height: 280px;
	}

	.footer-inner {
		width: 420px;
		padding: 0px 0px;
	}
}



/* *****************************************************************
*   レスポンシブ（外部サービス対策用）
* ***************************************************************** */

/* Twitter Timeline
---------------------------------------------------- */

.twitter-timeline {
	width: 100%;
	height: 300px;
}


/* YouTube embed
---------------------------------------------------- */

.youtube {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin-top: 20px;
	margin-bottom: 20px;
}

.youtube iframe,
.youtube object,
.youtube embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* Google Map embed
---------------------------------------------------- */

.map {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin-top: 20px;
	margin-bottom: 20px;
}

.map iframe,
.map object,
.map embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


ul {
	margin: 0;
	padding: 0;
}

ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}


/* カスタマイズ
---------------------------------------------------- */

/************************

基本

*************************/

.pc {
	display: block;
}

.sp {
	display: none;
}

@media only screen and (max-width: 767px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

a.wb_btn {
	display: inline-block;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: 2px solid #00819F;
	font-size: 15px;
	padding: 10px 0;
	min-width: 300px;
	color: #00819F;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

a.wb_btn:after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 1px solid #00819F;
	border-right: 1px solid #00819F;
	display: inline-block;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	vertical-align: 1px;
	margin-left: 15px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

a.wb_btn:hover {
	color: #fff;
	background-color: #00819F;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

a.wb_btn:hover:after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}


a.o_btn {
	text-align: center;
	display: inline-block;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background: #FF9315;
	border: 2px solid #FF9315;
	color: #fff;
	font-size: 15px;
	padding: 10px 0;
	width: 100%;
	max-width: 280px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

a.o_btn:after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	display: inline-block;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	vertical-align: 1px;
	margin-left: 15px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

a.o_btn:hover {
	color: #FF9315;
	background-color: #fff;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

a.o_btn:hover:after {
	border-top: 1px solid #FF9315;
	border-right: 1px solid #FF9315;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}


/************************

ヘッダー

*************************/

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: #fff;
	padding-bottom: 10px;
	-moz-box-shadow: 0px 0px 3px #ccc;
	-webkit-box-shadow: 0px 0px 3px #ccc;
	box-shadow: 0px 0px 3px #ccc;
}

@media print {
	header {
		display: none;
	}
}

header .header_layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

header .header_layout>.item:first-child {
	margin-right: auto;
}

header .header_layout>.item h1 {
	margin: 20px 20px 0;
	padding: 0;
	max-width: 271px;
}

header .header_layout>.item>.header_sub {
	isplay: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

header .header_layout>.item>.header_sub>.item.tel {
	isplay: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	white-space: nowrap;

}

header .header_layout>.item>.header_sub>.item.tel a {
	color: #004594;
	text-decoration: none;
	font-size: 20px;
	font-weight: bold;
	font-family: Arial, Helvetica, "sans-serif";
	padding-right: 15px;
}

header .header_layout>.item>.header_sub>.item.tel a:before {
	content: "";
	width: 18px;
	height: 19px;
	background-image: url(images/header/tel-icon.png);
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: -3px;
	margin-right: 5px;
}

header .header_layout>.item>.header_sub>.item.tel a span {
	font-size: 12px;
	font-weight: bold;
	margin-left: 10px;
	font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

header .header_layout>.item>.header_sub>.item.contact {
	isplay: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	white-space: nowrap;

}

header .header_layout>.item>.header_sub>.item.contact a {
	color: #004594;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	padding: 0 15px;
	border-left: 1px solid #888;
}

header .header_layout>.item>.header_sub>.item.contact a:before {
	content: "";
	width: 18px;
	height: 12px;
	background-image: url(images/header/mail-icon.png);
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: -1px;
	margin-right: 3px;
}

header .header_layout>.item>.header_sub>.item.online {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

header .header_layout>.item>.header_sub>.item.online2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	position: relative;
}

header .header_layout>.item>.header_sub>.item.online a {
	padding: 10px;
	background: #004594;
}

header .header_layout>.item>.header_sub>.item.online2 a {
	padding: 10px;
	background: #5fabe2;
}

header .header_layout>.item>.header_sub>.item.online a img {
	max-width: 97px;
}

header .header_layout>.item>.header_sub>.item.online2 a img {
	max-width: 97px;
}

header .header_layout>.item>.header_sub>.item.career {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

header .header_layout>.item>.header_sub>.item.career a {
	padding: 10px;
	background: #FF9315;
}

header .header_layout>.item>.header_sub>.item.career a img {
	max-width: 130px;
}

header .header_layout>.item>.header_sub>.item.search {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	position: relative;
}

header .header_layout>.item>.header_sub>.item.search>span {
	padding: 10px;
	background: #ACACAC;
}

header .header_layout>.item>.header_sub>.item.search img {
	width: 20.5px;
	min-width: 20.5px;
}

header .header_layout>.item>.header_sub>.item.search .search-icon {
	cursor: pointer;
}

.searchBox {
	padding: 8px 10px 10px 10px;
	position: absolute;
	bottom: -50px;
	right: 0;
	display: none;
	background-color: #DEDEDE;
	width: auto;
	white-space: nowrap;
	z-index: 999;
}

.searchBox form {
	margin: 0;
	padding: 0;
}

.searchBox input[type="text"] {
	-webkit-appearance: none;
	width: 200px;
	text-indent: .5em;
	font-size: 12px;
	line-height: 1.6em;
	margin-right: 5px;
}

.searchBox .search_wrap {
	position: relative;
	margin-left: 5px;
}

.searchBox .search_wrap:before {
	content: "";
	width: 20px;
	height: 20px;
	background-image: url(images/header/search-black.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.searchBox input[type="submit"] {
	-webkit-appearance: none;
	border: 0;
	background: #DEDEDE;
	line-height: 2.4em;
	padding: 0 15px 0 25px;
	font-size: 12px;
	width: inherit;
	color: #262626;
}

.spBtn {
	display: none;
	position: absolute;
	top: 18px;
	right: 15px;
}

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

.menu-trigger {
	position: relative;
	width: 32px;
	height: 24px;
}

.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #000;
}

.menu-trigger span:nth-of-type(1) {
	top: 0;
}

.menu-trigger span:nth-of-type(2) {
	top: 11px;
}

.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(16px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-20px) rotate(45deg);
	transform: translateY(-11px) rotate(45deg);
}

/*sp用サブナビゲーション*/
.sp_sub {
	display: none;
}

.sp_sub .logins {}

.sp_sub .logins>.item.online {}

.sp_sub .logins>.item.online2 {}

.sp_sub .logins>.item.online a {
	display: block;
	text-align: center;
	padding: 10px;
	background: #004594;
}

.sp_sub .logins>.item.online2 a {
	display: block;
	text-align: center;
	padding: 10px;
	background: #5fabe2;
}

.sp_sub .logins>.item.online a img {
	max-width: 97px;
}

.sp_sub .logins>.item.online2 a img {
	max-width: 97px;
}


/*
.sp_sub .logins > .item.career{
flex-basis: 50%;
}

.sp_sub .logins > .item.career a{
display: block;
text-align: center;
padding: 10px;
background: #FF9315;
}

.sp_sub .logins > .item.career a img{
max-width: 130px;
}*/

.sp_sub .sp_search {
	padding: 0;
	background: #DEDEDE;
	text-align: center;
}

.sp_sub .sp_search .searchBox {
	padding: 8px 0 10px 0;
	position: inherit;
	bottom: auto;
	right: 0;
	display: block;
	background-color: #DEDEDE;
	width: inherit;
	margin: 0 auto;
	z-index: 3;
}

.sp_sub .sp_search .searchBox input[type="text"] {
	-webkit-appearance: none;
	width: calc(100% - 120px);
	text-indent: .5em;
	font-size: 12px;
	line-height: 1.6em;
	margin-right: 5px;
}

.sp_sub .sp_tel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	background: #fff;
}

.sp_sub .sp_tel>.item.contact {
	flex-basis: 40%;
	text-align: center;
}

.sp_sub .sp_tel>.item.tel {
	flex-basis: calc(60% - 1px);
	text-align: center;
	border-right: 1px solid #004594;
}

.sp_sub .sp_tel>.item.tel a {
	display: block;
	color: #004594;
	text-decoration: none;
	font-size: 20px;
	font-weight: bold;
	font-family: Arial, Helvetica, "sans-serif";
	margin: 5px 0;
}

.sp_sub .sp_tel>.item.tel a:before {
	content: "";
	width: 18px;
	height: 19px;
	background-image: url(images/header/tel-icon.png);
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: -3px;
	margin-right: 5px;
}

.sp_sub .sp_tel>.item.tel a span {
	display: block;
	font-weight: normal;
	font-size: 12px;
	margin-left: 0;
	margin-top: -10px;
}


.sp_sub .sp_tel>.item.contact a {
	color: #004594;
	text-decoration: none;
	font-size: 12px;
}

.sp_sub .sp_tel>.item.contact a:before {
	content: "";
	width: 18px;
	height: 12px;
	background-image: url(images/header/mail-icon.png);
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: -1px;
	margin-right: 3px;
}


@media only screen and (max-width: 960px) {
	header {
		padding-bottom: 0;
	}

	header.open {
		top: 0;
		bottom: 0;
		overflow-y: auto;
		background: none;

	}

	header .header_layout {
		display: block;
		background: #fff;
	}

	header .header_layout>.item {
		display: none;
	}

	header .header_layout>.item:first-child {
		display: block;
		-moz-box-shadow: 0px 0px 3px #ccc;
		-webkit-box-shadow: 0px 0px 3px #ccc;
		box-shadow: 0px 0px 3px #ccc;
	}

	header .header_layout>.item h1 {
		margin: 0;
		padding: 10px 10px 10px;
		max-width: 220px;
	}

	header .header_layout>.item>.header_sub {
		display: none;
	}

	.spBtn {
		display: block;
	}

	.sp_sub {
		display: block;
	}

	.sp_nav {
		display: none;
	}

}

/*
navmenu
*********************/
.menu {
	list-style-type: none;
	text-align: right;
	padding: 10px 10px 0;
}

.menu>li {
	display: inline-block;
	position: relative;
	margin: 0 10px;
}

.menu>li a,
.menu>li span {
	position: relative;
	color: #4B4B4B;
	z-index: 1;
	font-size: 15px;
	font-weight: bold;
	font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	cursor: pointer;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

.menu>li a:hover,
.menu>li span:hover,
.menu>li a.active {
	color: #00819F;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

.menu>li a span.forany {
	color: #fff;
	background: #00819F;
	padding: 5px 15px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


.menu>li a:hover span.forany {
	background: #4B4B4B;
}

.menu>li span.click_tab:after {
	content: "\f0d7";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-weight: bold;
	font-style: normal;
	display: inline-block;
	font-size: 20px;
	margin-left: 5px;
}

.menu>li>ul {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	padding: 0;
	margin: 0;
	top: 1em;
	left: 0;
	z-index: 2;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.menu>li.open span.click_tab {
	color: #00819F;
}

.menu>li.open ul {
	visibility: visible;
	opacity: 1;
	position: absolute;
	padding: 0;
	padding-top: 20px;
	margin: 0;
	top: 1.2em;
	left: 0;
	list-style-type: none;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.menu>li.last>ul {
	top: 1em;
	right: 0;
	left: auto;
}

.menu>li.last.open ul {
	top: 1.2em;
	right: 0;
	left: auto;
}

.menu>li>ul li {
	white-space: nowrap;
}

.menu>li>ul li a {
	display: block;
	text-align: left;
	padding: 3px 15px;
	border-bottom: 0;
	background: #eee;
}

.menu>li>ul li:first-child a {
	padding-top: 10px;
}

.menu>li>ul li:last-child a {
	padding-bottom: 10px;
}

.menu>li>ul li a:hover {
	color: #00819F;
	border-bottom: 0;
}



@media only screen and (max-width: 960px) {
	.menu {
		list-style-type: none;
		text-align: center;
		padding: 0;
		background: #fff;
	}

	.menu>li {
		display: block;
		position: relative;
		margin: 0;
		border-bottom: 1px solid #fff;
	}

	.menu>li a {
		display: block;
		position: relative;
		z-index: 1;
		color: #000;
		background: #F2F2F2;
		font-size: 14px;
		padding-bottom: 10px;
		padding: 10px 30px;
	}

	.menu>li span.click_tab {
		display: block;
		position: relative;
		z-index: 1;
		color: #000;
		background: #F2F2F2;
		font-size: 20px;
		padding-bottom: 10px;
		padding: 10px 30px;
	}

	.menu>li span.click_tab:after {
		display: none;
	}

	.menu>li span.click_tab:before {
		content: "+";
		position: absolute;
		top: 45%;
		right: 20px;
		color: #707070;
		font-size: 20px;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.menu>li.open span.click_tab:before {
		content: "−";
		position: absolute;
		top: 48%;
		right: 17px;
		color: #707070;
		font-size: 20px;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.menu>li.open span.click_tab {
		background: #D5F7FF;
	}

	.menu>li a:hover,
	.menu>li a.active {
		background: #D5F7FF;
	}

	.menu>li>ul,
	.menu>li.open ul {
		display: none;
		visibility: visible;
		opacity: 1;
		position: inherit;
		padding: 0;
		margin: 0;
		top: 0 !important;
		left: 0;
		z-index: 2;
		border-top: 1px solid #fff;
		-webkit-transition: none;
		transition: none;
	}


	.menu>li a span.forany {
		display: block;
		color: #00819F;
		background: none;
		border: 1px solid #00819F;
		padding: 5px 8px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
	}

	.menu>li a:hover span.forany {
		background: #00819F;
		color: #fff;
	}

	.menu>li>ul li a {
		display: block;
		text-align: center;
		padding: 12px 30px;
		background: #F7F7F7;
		border-bottom: 1px solid #fff;
	}

	.menu>li>ul li a:hover {
		border-bottom: 1px solid #fff;
	}

}

/************************

フッター

*************************/

.topback {
	background: url(images/footer/scroll-top.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 28px;
	height: 73px;
	position: absolute;
	bottom: 20px;
	right: 20px;
}

footer {
	background: #F7F7F7;
}

footer .wrapper {
	padding: 50px 0;
}

footer .layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: space-between;
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

footer .layout .item {
	flex-basis: 30%;
	text-align: left;
}

footer .layout .item:nth-of-type(2) {
	flex-basis: 60%;
}

footer .layout .item .logo {
	text-align: left;
}

footer .layout .item .logo img {
	width: 142px;
	height: auto;
}

footer .layout .item p {
	font-size: 13px;
	line-height: 2em;
	margin-bottom: 30px;
	padding: 0;
}

footer .layout .item p.title {
	font-size: 16px;
	font-weight: bold;
	padding-top: 30px;
}

footer .sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: flex-end;
	-webkit-box-pack: flex-end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

footer .sns .col {
	margin-left: 50px;
}

footer .sns .col img {
	width: 126px;
	height: auto;
}

footer .sitemap {
	padding-top: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: space-between;
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

footer .sitemap .col {
	flex-basis: 30%;
}

footer .sitemap .col ul li {
	margin-bottom: 20px;
}

footer .sitemap .col ul li a {
	font-size: 13px;
	color: #000;
}

footer .sitemap .col ul li a:hover {
	color: #00819F;
}

footer .sitemap_sp {
	display: none;
}

address {
	margin: 0;
	display: block;
	text-align: center;
	font-size: 12px;
	padding: 20px 0;
}


@media only screen and (max-width: 767px) {
	.topback {
		background: url(images/footer/scroll-top.png);
		background-repeat: no-repeat;
		background-size: contain;
		width: 28px;
		height: 73px;
		position: absolute;
		bottom: 5px;
		right: 5px;
	}

	footer {
		background: #F7F7F7;
	}

	footer .wrapper {
		padding: 30px 0 20px;
	}

	footer .layout {
		display: block;
	}

	footer .sp_logos {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
	}

	footer .layout .item .logo img {
		width: 142px;
		height: auto;
	}

	footer .layout .item p {
		font-size: 12px;
		line-height: 2.4em;
		margin-bottom: 30px;
		padding: 20px 0 0;
		text-align: center;
	}

	footer .layout .item p.title {
		text-align: left;
		font-size: 13px;
		font-weight: bold;
		padding-top: 0;
		margin-bottom: 0;
		padding-left: 20px;
		white-space: nowrap;
	}

	footer .sns {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-ms-flex-pack: flex-start;
		-webkit-box-pack: flex-start;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
	}

	footer .sns .col {
		flex-basis: 50%;
		margin-left: 0px;
	}

	footer .sns .col img {
		width: 115px;
		height: auto;
	}

	footer .sitemap {
		display: none;
	}

	footer .sitemap_sp {
		padding-top: 40px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-ms-flex-pack: space-between;
		-webkit-box-pack: space-between;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}

	footer .sitemap_sp .col {
		flex-basis: 45%;
	}

	footer .sitemap_sp .col ul li {
		margin-bottom: 15px;
	}

	footer .sitemap_sp .col ul li a {
		font-size: 11px;
		color: #000;
	}

	footer .sitemap_sp .col ul li a:hover {
		color: #00819F;
	}


	address {
		margin: 0;
		display: block;
		text-align: center;
		font-size: 10px;
		padding: 0 0 20px;
	}

}




/*******************************
LoadingCss
*******************************/
#loading {
	width: 100%;
	height: 100%;
	margin: 0;
	background: #fff;
	opacity: 1.0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

#loading .ball {
	border-radius: 100%;
	margin: 2px;
	border: 2px solid #00819F;
	border-bottom-color: transparent;
	height: 26px;
	width: 26px;
	display: inline-block;
	-webkit-animation: rotate .75s 0s linear infinite;
	animation: rotate .75s 0s linear infinite;
	position: absolute;
	top: calc(50% - 13px);
	left: calc(50% - 13px);
	-webkit-transform: translate(-50%, -50%);
	/* Safari用 */
	transform: translate(-50%, -50%);
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}




/************************

トップ

*************************/

#top_main {
	position: relative;
	display: block;
	margin-top: 125px;
}

/*
#top_main .txt{
text-align: center;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}

#top_main .txt .read{
margin-top: 0;
margin-bottom: 50px;
}

#top_main .txt .read img{
width: 90%;
max-width: 649px;
height: auto;
}

#top_main .txt a img{
width: 80%;
max-width: 322px;
height: auto;
}
*/
@media only screen and (max-width: 960px) {
	#top_main {
		margin-top: 60px;
	}
}

@media only screen and (max-width: 767px) {
	#top_main {
		position: relative;
	}

	/*
#top_main .txt{
text-align: center;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
-webkit-transform: translate(0, 0); 
transform: translate(0, 0); 
}

#top_main .txt .read{
position: absolute;
width: 100%;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
margin-top: 0;
margin-bottom: 0;
}

#top_main .txt .read img{
width: 90%;
max-width: 90%;
height: auto;
}

#top_main .txt a{
position: absolute;
width: 100%;
bottom: 30px;
left: 0;
}

#top_main .txt a img{
width: 80%;
max-width:70%;
height: auto;
}
*/
}



#top_news {
	padding-bottom: 80px;
}

#top_news h2 {
	border: 0;
	display: block;
	text-align: center;
}

#top_news h2 img {
	width: 118px;
	height: auto;
}

#top_news .builder {
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
}

ul.news_list li a {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px dotted #ACACAC;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;

}

ul.news_list li a .date {
	margin-right: 20px;
	color: #00819F !important;
	font-size: 12px;
	font-weight: bold;
}

ul.news_list li a .category span {
	background: #fff;
	color: #797979;
	font-size: 12px;
	border: 1px solid #ACACAC;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin-right: 5px;
	padding: 3px 8px;
}

ul.news_list li a .title {
	padding-top: 5px;
	flex-basis: 100%;
	color: #4b4b4b;
	font-size: 14px;
	font-weight: bold;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

ul.news_list li a:hover .title {
	color: #004594;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

.top_newslink {
	text-align: center;
	padding-top: 60px;
}

@media only screen and (max-width: 767px) {

	#top_news {
		padding-bottom: 50px;
	}


	#top_news h2 {
		border: 0;
		display: block;
		text-align: center;
		margin-top: 20px;
	}

	#top_news h2 img {
		width: 83px;
		height: auto;
	}

	ul.news_list li a {
		padding-bottom: 15px;
		margin-bottom: 25px;
	}

	ul.news_list li a .date {
		margin-right: 20px;
		color: #00819F !important;
		font-size: 12px;
	}

	ul.news_list li a .category span {
		font-size: 10px;
		vertical-align: 10px;
		white-space: nowrap;
	}

	ul.news_list li a .title {
		padding-top: 5px;
		flex-basis: 100%;
		color: #797979;
		font-size: 13px;
		line-height: 1.8em;
		-webkit-transition: 0.5s;
		-moz-transition: 0.5s;
		-ms-transition: 0.5s;
		transition: 0.5s;
	}


	.top_newslink {
		text-align: center;
		padding-top: 30px;
	}
}



/*
#top_movie{
padding-top: 80px;
padding-bottom: 80px;
}
#top_movie .wrapper{
border-top: 2px solid #00819F;
border-bottom: 2px solid #00819F;
padding: 0;
}

#top_movie .wrapper .layout{
padding: 50px 80px;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
-ms-flex-pack: space-between;
-webkit-box-pack: space-between;
-webkit-justify-content: space-between;
justify-content: space-between;
}

#top_movie .wrapper .layout .item{
flex-basis: 45%;
}

#top_movie .wrapper .layout .item p{
padding: 0;
}

#top_movie .wrapper .layout .item p.read{
text-align: center;
color: #00819F;
font-size: 30px;
font-weight: bold;
line-height: 1.6em;
padding: 15px 0;
}

@media only screen and (max-width: 767px) {
#top_movie{
padding-top: 80px;
padding-bottom: 60px;
}
#top_movie .wrapper{
width: 90%;
}
#top_movie .wrapper .layout{
padding: 20px 10px;
display: block;
}

#top_movie .wrapper .layout .item{
flex-basis: 45%;
}

#top_movie .wrapper .layout .item p{
font-size: 13px;
line-height: 1.8em;
padding: 0;
margin-bottom: 20px;
}

#top_movie .wrapper .layout .item p.read{
font-size: 24px;
margin-bottom: 0;
}

}
*/

#top_mission {
	background-color: #eefefe;
	background-image: url(images/top/bk-flower-pc.png);
	background-repeat: no-repeat;
	background-position: top 120px center;
	background-size: 1000px;
	/*background: rgb(221,247,246);
background: linear-gradient(125deg, rgba(221,247,246,1) 0%, rgba(249,255,235,1) 100%);*/
}

#top_mission .wrapper {
	text-align: center;
	padding: 80px 0 60px;
}

#top_mission .wrapper h2 {
	border: 0;
	margin: 0;
	padding-bottom: 80px;
}

#top_mission .wrapper h2 img {
	width: 95%;
	max-width: 500px;
}

#top_mission .wrapper p {
	font-weight: bold;
	font-size: 18px;
	line-height: 2.4em;
	padding: 20px 0;
}

#top_mission .wrapper p.read {
	padding: 0;
	margin-bottom: 40px;
	text-align: center;
}

#top_mission .wrapper p.read img {
	width: 90%;

	max-width: 736px;
	height: auto;
}

@media only screen and (max-width: 767px) {
	#top_mission {
		background-image: url(images/top/bk-flower-sp.png);
		background-position: top -40px center;
		background-size: 100%;
	}

	#top_mission .wrapper {
		text-align: center;
		padding: 30px 0 30px;
	}

	#top_mission .wrapper h2 {
		padding-bottom: 30px;
	}


	#top_mission .wrapper p {
		text-align: left;
		font-weight: bold;
		font-size: 15px;
		line-height: 2em;
		padding: 20px 0;
	}

	#top_mission .wrapper p.read {
		padding: 0;
		margin-bottom: 40px;
	}

}


#top_reason .wrapper {
	text-align: center;
	padding: 80px 0 60px;
}

#top_reason .wrapper h2 {
	border: 0;
	margin: 0;
	padding-bottom: 80px;
}

#top_reason .wrapper h2 img {
	width: 90%;
	max-width: 500px;
}

#top_reason .reason_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

#top_reason .reason_list .item {
	flex-basis: calc(49% - 6px);
	margin-right: 2%;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: space-between;
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	border: 3px solid #FF9315;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

#top_reason .reason_list .item:nth-child(2n) {
	margin-right: 0;
}

#top_reason .reason_list .item .col:nth-of-type(1) {
	flex-basis: 20%;
	background: #FF9315;
	padding: 60px 0;
}

#top_reason .reason_list .item .col:nth-of-type(1) img {
	width: 52px;
	height: auto;
}

#top_reason .reason_list .item .col:nth-of-type(2) {
	flex-basis: 80%;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

@media only screen and (max-width: 767px) {
	#top_reason .wrapper {
		text-align: center;
		padding: 60px 0 60px;
	}

	#top_reason .wrapper h2 {
		border: 0;
		margin: 0;
		padding-bottom: 30px;
	}

	#top_reason .wrapper h2 img {
		width: 90%;
		max-width: 500px;
	}

	#top_reason .reason_list {
		display: block;
	}

	#top_reason .reason_list .item {
		margin-right: 0;
	}

	#top_reason .reason_list .item .col:nth-of-type(1) {
		padding: 30px 0;
	}

	#top_reason .reason_list .item .col:nth-of-type(1) img {
		width: 34px;
		height: auto;
	}

	#top_reason .reason_list .item .col:nth-of-type(2) {
		flex-basis: 80%;
		text-align: left;
		font-weight: bold;
		font-size: 14px;
		line-height: 2em;
		padding: 0 15px;
	}

}


/*

#top_message{
background-image: url(images/top/circle-set.png);
background-repeat: no-repeat;
background-size: 1317px;
background-position: top center;
padding-bottom: 140px;
}

#top_message .wrapper{
padding: 0;
}

#top_message .message1{
padding-bottom: 140px;
}

#top_message .message1 h2{
display: block;
text-align: center;
border: 0;
padding:60px 0 30px;
margin: 0;
}

#top_message .message1 h2 img{
width: 90%;
max-width: 188px;
height: auto;
}

#top_message .message1 .catch{
text-align: center;
font-size: 30px;
font-weight: bold;
font-family:'Noto Serif JP','ヒラギノ明朝 ProN', 'Hiragino Mincho ProN','YuMincho', 'Yu Mincho', '游明朝体','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}

#top_message .message1 .sign{
text-align: right;
font-size: 17px;
font-family:'Noto Serif JP','ヒラギノ明朝 ProN', 'Hiragino Mincho ProN','YuMincho', 'Yu Mincho', '游明朝体','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}

#top_message .message1 .sign span{
font-size: 22px;
font-weight: bold;
margin-left: 20px;
}

#top_message .message1 .layout{
padding-top: 40px;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-pack: space-between;
-webkit-box-pack: space-between;
-webkit-justify-content: space-between;
justify-content: space-between;
flex-direction: row-reverse;
}

#top_message .message1 .layout .item:nth-of-type(1){
flex-basis: 40%;
}

#top_message .message1 .layout .item:nth-of-type(2){
flex-basis: 55%;
font-size: 22px;
line-height: 2.4em;
font-weight: bold;
}

#top_message .message2{
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-pack: space-between;
-webkit-box-pack: space-between;
-webkit-justify-content: space-between;
justify-content: space-between;
}

#top_message .message2 .item:nth-of-type(1){
flex-basis:26%;
}

#top_message .message2 .item:nth-of-type(1) .img{
display: block;
padding: 80px 0 0;
position: relative;
}

#top_message .message2 .item:nth-of-type(1) .img:before{
content: "";
background-image: url(images/top/recommend.png);
background-repeat: no-repeat;
background-size: contain;
width: 178px;
height: 178px;
display: block;
position: absolute;
top: -60px;
left: -60px;
}

#top_message .message2 .item:nth-of-type(1) .name{
display: block;
text-align: center;
font-size: 22px;
font-weight: bold;
font-family:'Noto Serif JP','ヒラギノ明朝 ProN', 'Hiragino Mincho ProN','YuMincho', 'Yu Mincho', '游明朝体','ＭＳ Ｐ明朝', 'MS PMincho', serif;
padding: 40px 0 20px;
}

#top_message .message2 .item:nth-of-type(1) .txt{
display: block;
text-align: center;
font-weight: bold;
font-size: 16px;
line-height: 2em;
}

#top_message .message2 .item:nth-of-type(2){
flex-basis: 69%;
}

#top_message .message2 .item:nth-of-type(2) p{
font-size: 16px;
font-weight: bold;
line-height: 2.8em;
padding: 0;
margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
#top_message{
background-image: url(images/top/green-circle.png);
background-repeat: no-repeat;
background-size: 900px;
background-position: top 0 left -100px;
padding-bottom: 40px;
}

#top_message .message1{
padding-bottom: 140px;
}

#top_message .message1 h2{
display: block;
text-align: center;
border: 0;
padding:30px 0 30px;
margin: 0;
}

#top_message .message1 h2 img{
width: 90%;
max-width: 124px;
height: auto;
}

#top_message .message1 .catch{
text-align: center;
font-size: 20px;
font-weight: bold;
font-family:'Noto Serif JP','ヒラギノ明朝 ProN', 'Hiragino Mincho ProN','YuMincho', 'Yu Mincho', '游明朝体','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}

#top_message .message1 .sign{
text-align: right;
font-size: 10px;
font-family:'Noto Serif JP','ヒラギノ明朝 ProN', 'Hiragino Mincho ProN','YuMincho', 'Yu Mincho', '游明朝体','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}

#top_message .message1 .sign span{
font-size: 13px;
font-weight: bold;
margin-left: 15px;
}

#top_message .message1 .layout{
padding-top: 20px;
display:block;
}

#top_message .message1 .layout .item:nth-of-type(2){
padding-top: 30px;
font-size: 16px;
line-height: 2.4em;
font-weight: bold;
}

.message2wrap{
background-image: url(images/top/orange-circle.png);
background-repeat: no-repeat;
background-size: 1400px;
background-position: top 120px left -700px;
margin: 0;
}

#top_message .message2{
display: block;
padding: 0;
}

#top_message .message2 .item:nth-of-type(1){
flex-basis:30%;
}

#top_message .message2 .item:nth-of-type(1) .img{
display: block;
padding: 80px 15% 0;
position: relative;
margin-top: -80px;
}

#top_message .message2 .item:nth-of-type(1) .img:before{
content: "";
background-image: url(images/top/recommend.png);
background-repeat: no-repeat;
background-size: contain;
width: 113px;
height: 113px;
display: block;
position: absolute;
top: 20px;
left: -0px;
}

#top_message .message2 .item:nth-of-type(1) .name{
font-size: 18px;
padding: 20px 0 20px;
}

#top_message .message2 .item:nth-of-type(1) .txt{
font-size: 14px;
margin-bottom: 30px;
}

#top_message .message2 .item:nth-of-type(2){
flex-basis: 65%;
}

#top_message .message2 .item:nth-of-type(2) p{
font-size: 16px;
font-weight: bold;
line-height: 2.4em;
padding: 0;
margin-bottom: 40px;
}
}


*/


#top_service .wrapper {
	padding: 80px 0 80px;
}

#top_service .wrapper h2 {
	display: block;
	text-align: center;
	border: 0;
	padding: 0 0 30px;
	margin: 0;
}

#top_service .wrapper h2 img {
	width: 90%;
	max-width: 260px;
}

#top_service .wrapper p.read {
	font-weight: bold;
	font-size: 18px;
	line-height: 2em;
	margin: 0 0 40px;
}

#top_service .layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: space-between;
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

#top_service .layout .item {
	flex-basis: 32%;
	/* flex-basis: 48%; */
	margin-bottom: 20px;
	background: #F2F2F2;
	-webkit-border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
}

#top_service .layout .item .title {
	color: #fff;
	text-align: center;
	display: block;
	background-color: #0B74CE;
	font-size: 22px;
	font-weight: bold;
	padding: 20px 0;
	-webkit-border-radius: 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
}

#top_service .layout .item ul {
	padding-top: 20px;
	padding-left: 25px;
	padding-right: 25px;
}

#top_service .layout .item ul li {
	font-weight: bold;
	font-size: 18px;
	line-height: 1.6em;
	margin-bottom: 20px;
}

#top_service .layout .item ul li span {
	display: block;
	font-size: 15px;
	font-weight: normal;
}

#top_service .layout .item .btn {
	display: block;
	padding: 25px;
}

@media only screen and (max-width: 767px) {
	#top_service .wrapper {
		padding: 60px 0 80px;
	}

	#top_service .wrapper h2 {
		display: block;
		text-align: center;
		border: 0;
		padding: 0 0 15px;
		margin: 0;
	}

	#top_service .wrapper h2 img {
		width: 90%;
		max-width: 150px;
	}

	#top_service .wrapper p.read {
		font-weight: bold;
		font-size: 15px;
		line-height: 2em;
		margin: 0 0 30px;
	}

	#top_service .layout {
		display: block;
	}

	#top_service .layout .item .title {
		font-size: 16px;
		font-weight: bold;
		padding: 10px 0;
	}

	#top_service .layout .item ul {
		padding-top: 20px;
		padding-left: 25px;
		padding-right: 25px;
	}

	#top_service .layout .item ul li {
		font-weight: bold;
		font-size: 15px;
		margin-bottom: 10px;
	}

	#top_service .layout .item ul li span {
		font-size: 13px;
	}

	#top_service .layout .item .btn {
		display: block;
		padding: 15px 50px 25px;
	}
}




/*
#top_works .wrapper{
padding: 0 0 140px;
}

#top_works .wrapper h2{
display: block;
text-align: center;
border: 0;
padding:0 0 30px;
margin: 0;
}

#top_works .wrapper h2 img{
width: 90%;
max-width:86px;
}

#top_works .wrapper p.read{
text-align: center;
font-weight: bold;
font-size: 18px;
line-height: 2em;
padding: 50px 0;
}

.works_list1,.works_list2{
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-pack: space-between;
-webkit-box-pack: space-between;
-webkit-justify-content: space-between;
justify-content: space-between;
margin-bottom: 10px;
}

.works_list1 .item,.works_list2 .item{
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
flex-basis: calc(40% - 60px);
padding: 0 30px;
background: #F5F5F5;
}

.works_list1 .item:nth-of-type(2),.works_list2 .item:nth-of-type(2){
flex-basis: calc(60% - 60px);
padding: 0 30px;
}

.works_list1 .item:nth-of-type(1){
background: #CCFFDA;
color: #000;
font-weight: bold;
}

.works_list2 .item:nth-of-type(1){
background: #D5F7FF;
color: #000;
font-weight: bold;
}

.works_list1 .item ul,.works_list2 .item ul{
padding: 30px 0 20px;
}

.works_list1 .item ul li,.works_list2 .item ul li{
margin-bottom: 10px;
}

.update{
text-align: right;
font-size: 13px;
}

@media only screen and (max-width: 767px) {
#top_works .wrapper{
padding: 0 0 40px;
}

#top_works .wrapper h2{
display: block;
text-align: center;
border: 0;
padding:0 0 40px;
margin: 0;
}

#top_works .wrapper h2 img{
width: 90%;
max-width:52px;
}

#top_works .wrapper p.read{
text-align: left;
font-weight: bold;
font-size: 15px;
line-height: 2em;
padding: 0 0 20px;
}

.works_list1,.works_list2{
display:block;
margin-bottom: 10px;
}

.works_list1 .item,.works_list2 .item{
display:block;
padding: 15px 30px;
background: #F5F5F5;

}

.works_list1 .item:nth-of-type(2),.works_list2 .item:nth-of-type(2){
padding: 0 30px;
font-size: 14px;
}

.works_list1 .item:nth-of-type(1){
background: #CCFFDA;
color: #000;
font-weight: bold;
font-size: 14px;
}

.works_list2 .item:nth-of-type(1){
font-weight: bold;
font-size: 14px;
}

.works_list1 .item ul,.works_list2 .item ul{
padding: 20px 0 10px;
}

.update{
text-align: right;
font-size: 12px;
padding-top: 0px;
}

}





#top_voice .wrapper{
padding: 0 0 60px;
}

#top_voice .wrapper h2{
display: block;
text-align: center;
border: 0;
padding:0 0 50px;
margin: 0;
}

#top_voice .wrapper h2 img{
width: 90%;
max-width:216px;
}

#top_voice .layout{
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-pack: space-between;
-webkit-box-pack: space-between;
-webkit-justify-content: space-between;
justify-content: space-between;
}

#top_voice .layout .item{
flex-basis: 32%;
}

#top_voice .layout .item .title{
display: block;
text-align: center;
font-weight: bold;
margin-bottom: 30px;
}

#top_voice .layout .item .text{
position: relative;
display: block;
font-weight: bold;
padding: 40px;
font-size: 16px;
line-height: 2em;
background-color: #CCF8EB;
-webkit-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
}

#top_voice .layout .item .text:before{
content: "";
width: 0;
height: 0;
border-style: solid;
border-width: 20px 20px 0 0;
border-color: #ccf8eb transparent transparent transparent;
position: absolute;
left: calc(50% - 10px);
bottom:-20px;
}

#top_voice .layout .item .name{
padding-top: 10px;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-pack: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: flex-end;
-ms-flex-align: flex-end;
-webkit-align-items: flex-end;
align-items:flex-end;
}

#top_voice .layout .item .name .col{
font-size: 15px;
font-weight: bold;
line-height: 1.6em;
margin: 0 5px 20px;
}

#top_voice .layout .item .name .col img{
width: 46px;
height: auto;
}

@media only screen and (max-width: 767px) {
#top_voice .wrapper{
padding: 0 0 20px;
}

#top_voice .wrapper h2{
display: block;
text-align: center;
border: 0;
padding:10px 0 40px;
margin: 0;
}

#top_voice .wrapper h2 img{
width: 90%;
max-width:124px;
}

#top_voice .layout{
display: block;
}

#top_voice .layout .item{
margin-bottom: 30px;
}

#top_voice .layout .item .title{
display: block;
text-align: center;
font-weight: bold;
margin-bottom: 10px;
}

#top_voice .layout .item .text{
position: relative;
z-index: -1;
font-size: 14px;
}

#top_voice .layout .item .name{
position: relative;
padding-top: 0;
margin-top: -20px;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-pack: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: flex-end;
-ms-flex-align: flex-end;
-webkit-align-items: flex-end;
align-items:flex-end;
}

#top_voice .layout .item .name .col{
font-size: 13px;
font-weight: bold;
line-height: 1.6em;
margin: 0 5px 20px;
}

}


*/


#top_contact {
	background: rgb(221, 247, 246);
	background: linear-gradient(125deg, rgba(221, 247, 246, 1) 0%, rgba(249, 255, 235, 1) 100%);
}

#top_contact .wrapper {
	text-align: center;
	padding: 60px 0;
}

#top_contact p.read {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.6em;
	margin-bottom: 20px;
}

#top_contact a>img {
	width: 90%;
	max-width: 390px;
}

#top_contact .layout {
	padding-top: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

#top_contact .layout .item:nth-of-type(1) {
	font-size: 18px;
	font-weight: bold;
	margin-right: 20px;
}

#top_contact .layout .item:nth-of-type(2) {
	font-size: 18px;
	font-weight: bold;
	margin-right: 20px;
}

#top_contact .layout .item:nth-of-type(2)>a {
	display: block;
	color: #000;
	text-decoration: none;
	font-size: 30px;
	font-weight: bold;
	font-family: Arial, Helvetica, "sans-serif";
}

#top_contact .layout .item:nth-of-type(2)>a:before {
	content: "";
	width: 24px;
	height: 34px;
	background-image: url(images/top/pagefooter/tel-black.png);
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: -9px;
	margin-right: 5px;
}

#top_contact .layout .item:nth-of-type(4) {
	margin-left: 30px;
}

#top_contact .layout .item:nth-of-type(4)>a {
	text-align: center;
	display: inline-block;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background: none;
	border: 2px solid #FF9315;
	color: #FF9315;
	font-size: 15px;
	font-weight: bold;
	padding: 10px 0;
	width: 100%;
	min-width: 190px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

#top_contact .layout .item:nth-of-type(4)>a:after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 1px solid #FF9315;
	border-right: 1px solid #FF9315;
	display: inline-block;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	vertical-align: 1px;
	margin-left: 15px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

#top_contact .layout .item:nth-of-type(4)>a:hover {
	color: #fff;
	background-color: #FF9315;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

#top_contact .layout .item:nth-of-type(4)>a:hover:after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

@media only screen and (max-width: 767px) {

	#top_contact .wrapper {
		text-align: center;
		padding: 30px 0;
	}

	#top_contact p.read {
		font-size: 15px;
		font-weight: bold;
		line-height: 2em;
		margin-bottom: 20px;
	}

	#top_contact .layout {
		padding-top: 40px;
		display: block;
	}

	#top_contact .layout .item:nth-of-type(1) {
		font-size: 14px;
		font-weight: bold;
		margin-right: 0;
		margin-bottom: 20px;
	}

	#top_contact .layout .item:nth-of-type(2) {
		font-size: 18px;
		font-weight: bold;
		margin-right: 0;
	}

	#top_contact .layout .item:nth-of-type(4) {
		margin-left: 0;
		margin-top: 20px;
		padding: 0 60px;
	}

}



#top_link {
	padding-top: 60px;
}

#top_link .wrapper {
	padding: 0 0 60px;
}

#top_link .wrapper h2 {
	display: block;
	text-align: center;
	border: 0;
	padding: 0 0 60px;
	margin: 0;
}

#top_link .wrapper h2 img {
	width: 90%;
	max-width: 500px;
}

.link_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.link_list .item {
	flex-basis: 49%;
	margin-right: 2%;
	margin-bottom: 20px;
}

.link_list .item:nth-child(2n) {
	margin-right: 0;
}

.link_list .item a {
	border: 1px solid #333;
	border-left: 30px solid #333;
	display: block;
	padding: 30px 0;
	text-align: center;
}

.link_list .item:nth-of-type(1) a {
	color: #81B410;
	border: 1px solid #81B410;
	border-left: 30px solid #81B410;
}

.link_list .item:nth-of-type(1) a:hover {
	color: #fff;
	background: #81B410;
}

.link_list .item:nth-of-type(2) a {
	color: #008670;
	border: 1px solid #008670;
	border-left: 30px solid #008670;
}

.link_list .item:nth-of-type(2) a:hover {
	color: #fff;
	background: #008670;
}

.link_list .item:nth-of-type(3) a {
	color: #FF9315;
	border: 1px solid #FF9315;
	border-left: 30px solid #FF9315;
}

.link_list .item:nth-of-type(3) a:hover {
	color: #fff;
	background: #FF9315;
}

.link_list .item:nth-of-type(4) a {
	color: #80671A;
	border: 1px solid #80671A;
	border-left: 30px solid #80671A;
}

.link_list .item:nth-of-type(4) a:hover {
	color: #fff;
	background: #80671A;
}

.link_list.individual .item:nth-of-type(1) a {
	color: #004594;
	border: 1px solid #004594;
	border-left: 30px solid #004594;
}

.link_list.individual .item:nth-of-type(1) a:hover {
	color: #fff;
	background: #004594;
}

.link_list.individual .item:nth-of-type(2) a {
	color: #00819F;
	border: 1px solid #00819F;
	border-left: 30px solid #00819F;
}

.link_list.individual .item:nth-of-type(2) a:hover {
	color: #fff;
	background: #00819F;
}

.link_list.individual .item:nth-of-type(3) a {
	color: #80671A;
	border: 1px solid #80671A;
	border-left: 30px solid #80671A;
}

.link_list.individual .item:nth-of-type(3) a:hover {
	color: #fff;
	background: #80671A;
}

.link_list.individual .item:nth-of-type(4) a {
	color: #4B4B4B;
	border: 1px solid #4B4B4B;
	border-left: 30px solid #4B4B4B;
}

.link_list.individual .item:nth-of-type(4) a:hover {
	color: #fff;
	background: #4B4B4B;
}

.link_list.kindergarden .item:nth-of-type(1) a {
	color: #004594;
	border: 1px solid #004594;
	border-left: 30px solid #004594;
}

.link_list.kindergarden .item:nth-of-type(1) a:hover {
	color: #fff;
	background: #004594;
}

.link_list.kindergarden .item:nth-of-type(2) a {
	color: #0075EA;
	border: 1px solid #0075EA;
	border-left: 30px solid #0075EA;
}

.link_list.kindergarden .item:nth-of-type(2) a:hover {
	color: #fff;
	background: #0075EA;
}

.link_list.kindergarden .item:nth-of-type(3) a {
	color: #EA406E;
	border: 1px solid #EA406E;
	border-left: 30px solid #EA406E;
}

.link_list.kindergarden .item:nth-of-type(3) a:hover {
	color: #fff;
	background: #EA406E;
}

.link_list.kindergarden .item:nth-of-type(4) a {
	color: #80671A;
	border: 1px solid #80671A;
	border-left: 30px solid #80671A;
}

.link_list.kindergarden .item:nth-of-type(4) a:hover {
	color: #fff;
	background: #80671A;
}

.link_list.organization .item:nth-of-type(1) a {
	color: #004594;
	border: 1px solid #004594;
	border-left: 30px solid #004594;
}

.link_list.organization .item:nth-of-type(1) a:hover {
	color: #fff;
	background: #004594;
}

.link_list.organization .item:nth-of-type(2) a {
	color: #006728;
	border: 1px solid #006728;
	border-left: 30px solid #006728;
}

.link_list.organization .item:nth-of-type(2) a:hover {
	color: #fff;
	background: #006728;
}

.link_list.organization .item:nth-of-type(3) a {
	color: #80221A;
	border: 1px solid #80221A;
	border-left: 30px solid #80221A;
}

.link_list.organization .item:nth-of-type(3) a:hover {
	color: #fff;
	background: #80221A;
}

.link_list.organization .item:nth-of-type(4) a {
	color: #80671A;
	border: 1px solid #80671A;
	border-left: 30px solid #80671A;
}

.link_list.organization .item:nth-of-type(4) a:hover {
	color: #fff;
	background: #80671A;
}

.link_list.online .item:nth-of-type(1) a {
	color: #81B410;
	border: 1px solid #81B410;
	border-left: 30px solid #81B410;
}

.link_list.online .item:nth-of-type(1) a:hover {
	color: #fff;
	background: #81B410;
}

.link_list.online .item:nth-of-type(2) a {
	color: #008670;
	border: 1px solid #008670;
	border-left: 30px solid #008670;
}

.link_list.online .item:nth-of-type(2) a:hover {
	color: #fff;
	background: #008670;
}

.link_list.online .item:nth-of-type(3) a {
	color: #FF9315;
	border: 1px solid #FF9315;
	border-left: 30px solid #FF9315;
}

.link_list.online .item:nth-of-type(3) a:hover {
	color: #fff;
	background: #FF9315;
}

.link_list.online .item:nth-of-type(4) a {
	color: #80671A;
	border: 1px solid #80671A;
	border-left: 30px solid #80671A;
}

.link_list.online .item:nth-of-type(4) a:hover {
	color: #fff;
	background: #80671A;
}

.link_list.point_network .item:nth-of-type(1) a {
	color: #81B410;
	border: 1px solid #81B410;
	border-left: 30px solid #81B410;
}

.link_list.point_network .item:nth-of-type(1) a:hover {
	color: #fff;
	background: #81B410;
}

.link_list.point_network .item:nth-of-type(2) a {
	color: #008670;
	border: 1px solid #008670;
	border-left: 30px solid #008670;
}

.link_list.point_network .item:nth-of-type(2) a:hover {
	color: #fff;
	background: #008670;
}

.link_list.point_network .item:nth-of-type(3) a {
	color: #FF9315;
	border: 1px solid #FF9315;
	border-left: 30px solid #FF9315;
}

.link_list.point_network .item:nth-of-type(3) a:hover {
	color: #fff;
	background: #FF9315;
}

.link_list.point_network .item:nth-of-type(4) a {
	color: #80221A;
	border: 1px solid #80221A;
	border-left: 30px solid #80221A;
}

.link_list.point_network .item:nth-of-type(4) a:hover {
	color: #fff;
	background: #80221A;
}

.link_list.policy .item:nth-of-type(1) a {
	color: #81B410;
	border: 1px solid #81B410;
	border-left: 30px solid #81B410;
}

.link_list.policy .item:nth-of-type(1) a:hover {
	color: #fff;
	background: #81B410;
}

.link_list.policy .item:nth-of-type(2) a {
	color: #008670;
	border: 1px solid #008670;
	border-left: 30px solid #008670;
}

.link_list.policy .item:nth-of-type(2) a:hover {
	color: #fff;
	background: #008670;
}

.link_list.policy .item:nth-of-type(3) a {
	color: #FF9315;
	border: 1px solid #FF9315;
	border-left: 30px solid #FF9315;
}

.link_list.policy .item:nth-of-type(3) a:hover {
	color: #fff;
	background: #FF9315;
}

.link_list.policy .item:nth-of-type(4) a {
	color: #004594;
	border: 1px solid #004594;
	border-left: 30px solid #004594;
}

.link_list.policy .item:nth-of-type(4) a:hover {
	color: #fff;
	background: #004594;
}

.link_list.consulting .item:nth-of-type(1) a {
	color: #81B410;
	border: 1px solid #81B410;
	border-left: 30px solid #81B410;
}

.link_list.consulting .item:nth-of-type(1) a:hover {
	color: #fff;
	background: #81B410;
}

.link_list.consulting .item:nth-of-type(2) a {
	color: #008670;
	border: 1px solid #008670;
	border-left: 30px solid #008670;
}

.link_list.consulting .item:nth-of-type(2) a:hover {
	color: #fff;
	background: #008670;
}

.link_list.consulting .item:nth-of-type(3) a {
	color: #FF9315;
	border: 1px solid #FF9315;
	border-left: 30px solid #FF9315;
}

.link_list.consulting .item:nth-of-type(3) a:hover {
	color: #fff;
	background: #FF9315;
}

.link_list.consulting .item:nth-of-type(4) a {
	color: #4B4B4B;
	border: 1px solid #4B4B4B;
	border-left: 30px solid #4B4B4B;
}

.link_list.consulting .item:nth-of-type(4) a:hover {
	color: #fff;
	background: #4B4B4B;
}



@media only screen and (max-width: 767px) {
	#top_link {
		padding-top: 60px;
	}

	#top_link .wrapper {
		padding: 0 0 30px;
	}

	#top_link .wrapper h2 {
		display: block;
		text-align: center;
		border: 0;
		padding: 0 0 20px;
		margin: 0;
	}

	#top_link .wrapper h2 img {
		width: 90%;
		max-width: 300px;
	}

	.link_list {
		display: block;
	}

	.link_list .item {
		margin-right: 0;
		margin-bottom: 15px;
	}


	.link_list .item a {
		border: 1px solid #333;
		border-left: 30px solid #333;
		display: block;
		padding: 15px 0;
		text-align: center;
	}

}




/************************

cms

*************************/

.under_wrapper {
	margin-top: 120px;
}

@media print {
	.under_wrapper {
		margin-top: 0;
		margin-left: 30px;
	}
}

.under_wrapper .wrapper {
	padding: 0;
}

.clumb {
	display: block;
	text-align: left;
	padding: 20px 0;
	font-size: 12px;
	color: #666
}

@media only screen and (max-width: 960px) {
	.under_wrapper {
		margin-top: 80px;
		margin-left: 30px;
	}

	.under_wrapper .wrapper {
		padding: 0;
	}

	.clumb {
		border-top: 0;
	}
}

.clumb a::after {
	content: "";
	width: 6px;
	height: 6px;
	vertical-align: 1.5px;
	border-top: 1px solid #666;
	border-right: 1px solid #666;
	display: inline-block;
	margin-left: 5px;
	margin-right: 10px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#blogs h2 {
	border: 0;
	margin: 0 0 60px;
	padding: 0;
	text-align: center;
	display: block;
}

#blogs h2 img {
	width: 142px;
	height: auto;
}

#blogs p.read {
	text-align: center;
	font-size: 14px;
	line-height: 2em;
	margin-bottom: 30px;
}

#blogs .category_list .title {
	background-color: #F5F5F5;
	color: #00819F;
	text-align: center;
	padding: 10px 0;
	font-size: 18px;
	font-weight: bold;
}

#blogs .category_list ul {
	padding: 30px 140px;
	text-align: center;
}

#blogs .category_list ul li {
	display: inline-block;
	margin: 0 5px 20px;
}

#blogs .category_list ul li a {
	display: block;
	font-size: 14px;
	font-weight: bold;
	color: #00819F;
	padding: 5px 15px;
	background-color: #fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

#blogs .category_list ul li a.active {
	background-color: #CCFFDA;
}

#blogs .blog_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: space-between;
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-bottom: 20px;
}

#blogs .blog_list .item:nth-of-type(1) {
	flex-basis: 35% !important;
}

#blogs .blog_list a .img .over {
	display: block;
	position: relative;
	width: 100%;
	padding-top: 66.6666%;
	overflow: hidden;
}

#blogs .blog_list a .img .over img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

#blogs .blog_list a:hover .img .over img {
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

#blogs .blog_list .item:nth-of-type(2) {
	flex-basis: 55%;
	margin-right: 5%;
}

#blogs .blog_list .item:nth-of-type(2) .content .date {
	font-size: 15px;
	font-weight: bold;
	color: #797979;
	display: block;
}

#blogs .blog_list .item:nth-of-type(2) .content .title {
	font-size: 18px;
	font-weight: bold;
	display: block;
	color: #00819F;
	padding: 10px 0;
}

#blogs .blog_list .item:nth-of-type(2) .content .text {
	display: block;
	font-size: 15px;
	line-height: 2.4em;
}

#blogs .blog_list .item:nth-of-type(2) .content .title a,
#blogs .blog_list .item:nth-of-type(2) .content .text .continue a {
	color: #00819F;
}

#blogs .blog_list .item:nth-of-type(2) .content .title a:hover,
#blogs .blog_list .item:nth-of-type(2) .content .text .continue a:hover {
	opacity: 0.6;
}

#blogs .blog_list .item:nth-of-type(2) .content .category {
	display: block;
	padding-top: 10px;
}

#blogs .blog_list .item:nth-of-type(2) .content .category span {
	background: #fff;
	color: #797979;
	font-size: 12px;
	border: 1px solid #ACACAC;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin-right: 10px;
	padding: 3px 8px;
}

.pager {
	padding-top: 60px;
	margin-bottom: 120px;
}

.footer_service {
	margin-bottom: 80px;
}

.footer_service .title {
	background: #F5F5F5;
	text-align: center;
	color: #004594;
	font-size: 18px;
	font-weight: bold;
	padding: 20px 0;
	margin-bottom: 40px;
}

.tag_archives_title {
	text-align: center;
	margin-bottom: 80px;
}

.tag_archives_title span {
	display: inline-block;
	color: #00819F;
	border: 1px solid #00819F;
	padding: 5px 15px;
	margin-right: 10px;
}

.tag_archives_title span:before {
	content: "#";
}

@media only screen and (max-width: 767px) {

	#blogs h2 {
		border: 0;
		margin: 0 0 20px;
		padding: 40px 0 0;
		text-align: center;
		display: block;
	}

	#blogs h2 img {
		width: 86px;
		height: auto;
	}

	#blogs p.read {
		text-align: left;
		font-size: 13px;
		line-height: 2em;
		margin-bottom: 10px;
	}

	#blogs .category_list .title {
		background-color: #F5F5F5;
		color: #00819F;
		text-align: center;
		padding: 10px 0;
		font-size: 13px;
		font-weight: bold;
	}

	#blogs .category_list ul {
		padding: 1px 0 0;
		text-align: center;
		display: none;
	}

	#blogs .category_list ul li {
		display: block;
		margin: 0 0 1px;
	}

	#blogs .category_list ul li a {
		display: block;
		font-size: 13px;
		font-weight: bold;
		color: #00819F;
		padding: 10px 15px;
		background-color: #F5F5F5;
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
		border-radius: 0px;
	}

	#blogs .category_list ul li a.active {
		background-color: #CCFFDA;
	}

	#blogs .blog_list {
		display: block;
		padding-top: 30px;
	}

	#blogs .blog_list .item:nth-of-type(1) {
		margin-bottom: 15px;
	}

	#blogs .blog_list .item:nth-of-type(2) .content {
		margin-right: 0;
	}

	#blogs .blog_list .item:nth-of-type(2) .content .date {
		font-size: 10px;
		font-weight: normal;
	}

	#blogs .blog_list .item:nth-of-type(2) .content .title {
		font-size: 13px;
		line-height: 1.8em;
		padding: 0;
	}

	#blogs .blog_list .item:nth-of-type(2) .content .text {
		display: none;
	}

	#blogs .blog_list .item:nth-of-type(2) .content .category {
		display: block;
		padding-top: 0;
	}

	#blogs .blog_list .item:nth-of-type(2) .content .category span {
		display: inline-block;
		background: #fff;
		color: #797979;
		font-size: 10px;
		line-height: 1em;
		border: 1px solid #ACACAC;
		-webkit-border-radius: 15px;
		-moz-border-radius: 15px;
		border-radius: 15px;
		margin-right: 10px;
		padding: 3px 8px;
	}

	.pager {
		padding-top: 60px;
		margin-bottom: 80px;
	}

	.footer_service {
		margin-bottom: 40px;
	}

	.footer_service .title {
		background: #F5F5F5;
		text-align: center;
		color: #004594;
		font-size: 14px;
		font-weight: bold;
		padding: 10px 0;
		margin-bottom: 20px;
	}

	.tag_archives_title {
		padding-top: 40px;
		margin-bottom: 20px;
		font-size: 12px;
	}

}



/************************

cms single

*************************/
.blog_layout {
	padding-top: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: space-between;
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding-bottom: 60px;
}

.blog_layout .main_column {
	flex-basis: 67%;
}

@media print {
	.blog_layout .main_column {
		flex-basis: 100%;
	}
}

.main_column h1.blog-title {
	color: #00819F;
	border: 0;
	font-size: 28px;
	line-height: 2em;
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}


.blog_layout .main_column .blog_options {
	margin-bottom: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: space-between;
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.blog_layout .main_column .blog_options .item {
	flex-basis: 65%;
}

.blog_layout .main_column .blog_options .item .date {
	color: #797979;
	font-size: 15px;
	margin-right: 15px;
}

.blog_layout .main_column .blog_options .item .category span {
	display: inline-block;
	border: 1px solid #797979;
	color: #797979;
	font-size: 11px;
	padding: 5px 10px;
	line-height: 1em;
	margin-right: 10px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.blog_layout .main_column .blog_options .item .tags {
	display: block;
	padding-top: 10px;
}

.blog_layout .main_column .blog_options .item .tags a {
	color: #00819F;
	border-bottom: 2px solid #00819F;
	display: inline-block;
	margin-right: 15px;
}

.blog_layout .main_column .blog_options .item .tags a:before {
	content: "#";
}

.blog_layout .main_column .blog_options .item .tags a:hover {
	opacity: 0.7;
}

.blog_layout .main_column .blog_options .item:nth-of-type(2) {
	flex-basis: 20%;
}

.blog_layout .main_column .blog_options .item:nth-of-type(2) .sns_btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: space-between;
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.blog_layout .main_column .blog_options .item:nth-of-type(2) .sns_btns li {
	flex-basis: 18%;
	cursor: pointer;
}

.blog_layout .main_column .blog_options .item:nth-of-type(2) .sns_btns li #copy-page #cAction {
	position: relative;
}

.blog_layout .main_column .blog_options .item:nth-of-type(2) .sns_btns li #copy-page #cAction span {
	position: absolute;
	top: 30px;
	left: 50%;
	font-size: 10px;
	display: inline-block;
	background: #4B4B4B;
	color: #fff;
	padding: 0 10px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap;
	animation: fadein-keyframes 2s ease 0s 1 forwards;
}

@keyframes fadein-keyframes {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}


.blog_layout .main_column h2 {
	margin: 0;
	padding: 0;
	text-align: left;
	border: 0;
	color: #00819F;
	font-size: 20px;
	line-height: 1.8em;
	letter-spacing: 1px;
}

.blog_layout .main_column h3 {
	display: block;
	background-color: #F0F0F0;
	border-left: 5px solid #008670;
	border-bottom: 0;
	font-size: 16px;
	font-weight: bold;
	color: #4B4B4B;
	padding: 30px 25px;
}

.blog_layout .main_column h3 a {
	color: #008670;
	font-size: 20px;
	vertical-align: -2px;
}

.blog_layout .main_column h3 a:hover {
	opacity: 0.7;
}

.blog_layout .main_column h4 {
	display: block;
	background-color: #F0F0F0;
	border-left: 5px solid #00819F;
	border-bottom: 0;
	font-size: 16px;
	font-weight: bold;
	color: #4B4B4B;
	padding: 30px 25px;
}

.blog_layout .main_column h4 a {
	color: #00819F;
	font-size: 20px;
	vertical-align: -2px;
	position: relative;
}

.blog_layout .main_column h4 a:hover {
	opacity: 0.7;
}

.blog_layout .main_column h4 a:after {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 1px solid #00819F;
	border-right: 1px solid #00819F;
	display: inline-block;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-left: 15px;
	vertical-align: 2px;
}

.share_area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: space-between;
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	font-size: 12px;
	margin-bottom: 80px;
}

.share_area .item:nth-of-type(1) {
	padding: 20px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	align-items: center;
	flex-basis: 40%;
	background: #00819F;
	color: #fff;
	text-align: center;
}

.share_area .item:nth-of-type(1) span {
	font-size: 19px;
	font-weight: bold;
	margin-right: 10px;
}

.share_area .item:nth-of-type(2) {
	padding: 20px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	flex-basis: 60%;
	background: #F5F5F5;
}

.share_area .item:nth-of-type(2) .sns_btns {
	width: 55%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: space-between;
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.share_area .item:nth-of-type(2) .sns_btns li {
	flex-basis: 10%;
	cursor: pointer;
}

.share_area .item:nth-of-type(2) .sns_btns li #copy-page2 #cAction2 {
	position: relative;
}

.share_area .item:nth-of-type(2) .sns_btns li #copy-page2 #cAction2 span {
	position: absolute;
	top: 30px;
	left: 50%;
	font-size: 10px;
	display: inline-block;
	background: #4B4B4B;
	color: #fff;
	padding: 0 10px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap;
	animation: fadein-keyframes 2s ease 0s 1 forwards;
}

.recommend_title {
	text-align: center;
	margin-bottom: 60px;
}

.recommend_title img {
	width: 70%;
	max-width: 240px;
	height: auto;
}

.recommend_body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}


.recommend_body .item {
	flex-basis: 49%;
	margin-right: 2%;
	margin-bottom: 30px;
}

.recommend_body .item:nth-child(2n) {
	margin-right: 0;
}

.recommend_body .item img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.recommend_body .item .date {
	display: block;
	color: #262626;
	font-size: 13px;
	font-weight: bold;
}

.recommend_body .item a {
	display: block;
	color: #00819F;
	font-size: 15px;
	font-weight: bold;
}

.recommend_body .item .category span {
	border: 1px solid #797979;
	color: #797979;
	display: inline-block;
	padding: 3px 7px;
	font-size: 10px;
	line-height: 1em;
	margin-right: 10px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

/*サイドバー*/
.blog_layout .side_column {
	flex-basis: 28%;
}


@media print {
	.blog_layout .side_column {
		display: none;
	}
}

.side_column .title {
	text-align: center;
	background: #00819F;
	color: #fff;
	font-size: 15px;
	line-height: 1.6em;
	letter-spacing: .1em;
	margin-bottom: 15px;
	padding: 5px 0;
}

.side_category {
	margin-bottom: 30px;
}

.side_category li a {
	font-size: 14px;
	line-height: 2em;
	font-weight: bold;
	color: #4B4B4B;
}

.side_category li a:hover {
	color: #00819F;
}

.side_tag {
	margin-bottom: 30px;
}

.side_tag li {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
}

.side_tag a {
	display: block;
	color: #00819F;
	font-size: 13px;
	line-height: 2em;
	border: 1px solid #00819F;
	padding: 5px 15px;
}

.side_tag a:before {
	content: "#";
}

.side_tag a:hover {
	color: #fff;
	background: #00819F;
}

.connection dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: space-between;
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.connection dl dt {
	flex-basis: 25%;
}

.connection dl dd {
	flex-basis: 70%;
}

.connection dl dd .date {
	display: block;
	font-size: 12px;
	line-height: 1em;
	color: #262626;
	margin-bottom: 5px;
}

.connection dl dd a {
	display: block;
	font-size: 13px;
	line-height: 1.6em;
	color: #00819F;
}

.connection dl dd .category span {
	border: 1px solid #797979;
	color: #797979;
	display: inline-block;
	padding: 3px 7px;
	font-size: 10px;
	line-height: 1em;
	margin-right: 5px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}


@media only screen and (max-width: 767px) {

	.blog_layout {
		padding-top: 20px;
		display: block;
		padding-bottom: 20px;
	}


	.main_column h1.blog-title {
		font-size: 18px;
		margin-bottom: 10px;
	}


	.blog_layout .main_column .blog_options {
		margin-bottom: 30px;
		display: block;
	}

	.blog_layout .main_column .blog_options .item .date {
		font-size: 13px;
	}

	.blog_layout .main_column .blog_options .item:nth-of-type(2) .sns_btns {
		padding-top: 20px;
		padding-bottom: 10px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-ms-flex-pack: flex-start;
		-webkit-box-pack: flex-start;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
	}

	.blog_layout .main_column .blog_options .item:nth-of-type(2) .sns_btns li {
		flex-basis: 6%;
		cursor: pointer;
		margin-right: 4%;
	}

	.blog_layout .main_column .blog_options .item:nth-of-type(2) .sns_btns li a img {
		width: 100%;
		height: auto;
	}

	.blog_layout .main_column .blog_options .item .tags {
		display: block;
		padding-top: 10px;
	}

	.blog_layout .main_column h2 {
		font-size: 18px;
	}

	.blog_layout .main_column h3 {
		font-size: 15px;
		font-weight: bold;
		color: #4B4B4B;
		padding: 20px 20px;
	}

	.blog_layout .main_column h3 a {
		display: block;
		color: #008670;
		font-size: 16px;
		vertical-align: 0;
		margin-top: 10px;
	}


	.blog_layout .main_column h4 {
		font-size: 15px;
		padding: 20px 20px;
	}

	.blog_layout .main_column h4 a {
		display: block;
		font-size: 15px;
		vertical-align: 0;
		margin-top: 10px;
	}

	.blog_layout .main_column h4 a:after {
		content: "";
		width: 10px;
		height: 10px;
		border-top: 1px solid #00819F;
		border-right: 1px solid #00819F;
		display: inline-block;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-left: 15px;
		vertical-align: 0px;
	}

	.share_area {
		display: block;
		font-size: 12px;
		margin-bottom: 80px;
	}

	.share_area .item:nth-of-type(1) {
		padding: 10px 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		-ms-flex-pack: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		align-items: center;
		flex-basis: 40%;
		background: #00819F;
		color: #fff;
		text-align: center;
	}

	.share_area .item:nth-of-type(1) span {
		font-size: 19px;
		font-weight: bold;
		margin-right: 10px;
	}

	.share_area .item:nth-of-type(2) .sns_btns {
		width: 70%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-ms-flex-pack: space-between;
		-webkit-box-pack: space-between;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}

	.recommend_title {
		text-align: center;
		margin-bottom: 60px;
	}

	.recommend_title img {
		width: 70%;
		max-width: 200px;
		height: auto;
	}

	.recommend_body {
		display: block;
		padding-bottom: 40px;
	}

	.recommend_body .item {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.recommend_body .item:nth-child(2n) {
		margin-right: 0;
	}

}

/************************

faqcms

*************************/

.faq_search {
	text-align: center;
	padding-bottom: 60px;
}

.faq_search input[type=text] {
	-webkit-appearance: none;
	background: #fff;
	border: 1px solid #ccc;
	line-height: 1em;
	padding: 16px 0;
	width: 400px !important;
	min-width: 400px !important;
	text-indent: 1em;
}

.faq_search input[type=submit] {
	-webkit-appearance: none;
	background: #00819F;
	color: #fff;
	line-height: 1em !important;
	padding: 20px 0;
	font-size: 14px !important;
	width: 200px !important;
	min-width: 200px !important;
	vertical-align: 1px;
}

#faq article {
	display: block;
	padding-bottom: 60px;
}

#faq h2 {
	border: 0;
	margin: 0 0 60px;
	padding: 0;
	text-align: center;
	display: block;
}

#faq h2 img {
	width: 170px;
	height: auto;
}

#faq .faq_nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 80px;
}

#faq .faq_nav li {
	flex-basis: 20%;
	margin-bottom: 30px;
}

#faq .faq_nav li a {
	display: block;
	text-align: center;
	color: #00819F;
	font-size: 18px;
	font-weight: bold;
	padding: 15px 0;
	border-bottom: 3px solid #00819F;
	position: relative;
}

#faq .faq_nav li a:hover {
	background: #D5F7FF;
}

#faq .faq_nav.list li:nth-of-type(1) a {
	background: #D5F7FF;
}

#faq .faq_nav.list li:nth-of-type(1) a:before {
	position: absolute;
	bottom: -8px;
	left: calc(50% - 5px);
	content: "";
	background: #D5F7FF;
	width: 10px;
	height: 10px;
	border: 3px solid;
	border-color: transparent transparent #00819F #00819F;
	transform: rotate(-45deg);
}

#faq .faq_nav li a.active {
	background: #D5F7FF;
}

#faq .faq_nav li a.active:before {
	position: absolute;
	bottom: -8px;
	left: calc(50% - 5px);
	content: "";
	background: #D5F7FF;
	width: 10px;
	height: 10px;
	border: 3px solid;
	border-color: transparent transparent #00819F #00819F;
	transform: rotate(-45deg);
}


#faq h3 {
	padding: 10px 18px;
	margin-bottom: 30px;
	margin-top: 60px;
	color: #00819F;
	font-size: 18px;
	line-height: 1em;
	font-weight: bold;
	border-bottom: 1px solid #00819F;
	border-left: 5px solid #00819F;
}

#faq dl {
	margin-bottom: 30px;
}

#faq dl dt {
	position: relative;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.8em;
	padding: 0;
	margin: 0;
	padding-left: 40px;
	cursor: pointer;
}

#faq dl dt:before {
	content: "Q.";
	position: absolute;
	top: -2px;
	left: 0;
	color: #00819F;
	font-size: 28px;
	font-weight: bold;
}

#faq dl dt:after {
	position: absolute;
	top: 3px;
	right: 15px;
	content: "";
	width: 10px;
	height: 10px;
	border: 3px solid;
	border-color: transparent transparent #00819F #00819F;
	transform: rotate(-45deg);
}

#faq dl dt.active:after {
	position: absolute;
	top: 13px;
	right: 15px;
	border-color: #00819F #00819F transparent transparent;
}

#faq dl dd {
	position: relative;
	font-size: 16px;
	line-height: 1.8em;
	padding: 0;
	margin: 0;
	margin-top: 20px;
	margin-left: 40px;
	padding-left: 40px;
}

#faq dl dd:before {
	content: "A.";
	position: absolute;
	top: 15px;
	left: 0;
	color: #FF9315;
	font-size: 28px;
	font-weight: bold;
}

.faq_search_title {
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	color: #00819F;
	margin: 0;
	margin-bottom: 60px;
}

.search_category {
	margin-bottom: 10px;
	font-size: 14px;
}

.search_category span {
	color: #00819F;
	font-weight: bold;
	margin-right: 20px;
}

.search_category span.parent {
	margin-right: 0;
}

.search_category span.parent:after {
	content: "";
	width: 7px;
	height: 7px;
	vertical-align: 2px;
	border-top: 1px solid #00819F;
	border-right: 1px solid #00819F;
	display: inline-block;
	margin-left: 5px;
	margin-right: 5px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.faq_top {
	text-align: center;
	padding-top: 80px;
	padding-bottom: 80px;
}

.faq_top a {
	color: #FF6F15;
	border: 2px solid #FF6F15;
	display: inline-block;
	padding: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	font-size: 20px;
	font-weight: bold;
	min-width: 600px;
}

.faq_top a:hover {
	color: #fff;
	background: #FF6F15;
}

.faq_top a:after {
	content: "";
	width: 10px;
	height: 10px;
	vertical-align: 2px;
	border-top: 2px solid #FF6F15;
	border-right: 2px solid #FF6F15;
	display: inline-block;
	margin-left: 20px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.faq_top a:hover:after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

@media only screen and (max-width: 767px) {
	.faq_search {
		padding-bottom: 30px;
	}

	.faq_search input[type=text] {
		padding: 11px 0;
		width: 70% !important;
		min-width: 70% !important;
	}

	.faq_search input[type=submit] {
		padding: 14px 0;
		width: 28% !important;
		min-width: 28% !important;
	}

	#faq article {
		display: block;
		padding-bottom: 60px;
	}

	#faq h2 {
		padding: 40px 0 0;
		margin-bottom: 40px;
	}

	#faq h2 img {
		width: 120px;
		height: auto;
	}

	#faq .faq_nav {
		display: block;
		margin-bottom: 60px;
	}

	#faq .faq_nav li {
		margin-bottom: 0;
	}

	#faq .faq_nav li a {
		display: block;
		text-align: center;
		color: #00819F;
		font-size: 16px;
		font-weight: bold;
		padding: 15px 0;
		border-bottom: 0;
		position: relative;
	}

	#faq .faq_nav.list li:nth-of-type(1) a:before {
		display: none;
	}

	#faq .faq_nav li a.active:before {
		display: none;
	}


	#faq h3 {
		padding: 10px 14px;
		font-size: 15px;
	}

	#faq dl dt {
		position: relative;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.8em;
		padding: 0;
		margin: 0;
		padding-left: 30px;
		padding-right: 40px;
		cursor: pointer;
	}

	#faq dl dt:before {
		content: "Q.";
		position: absolute;
		top: -2px;
		left: 0;
		color: #00819F;
		font-size: 20px;
		font-weight: bold;
	}

	#faq dl dt:after {
		position: absolute;
		top: 3px;
		right: 15px;
		content: "";
		width: 7px;
		height: 7px;
		border: 3px solid;
		border-color: transparent transparent #00819F #00819F;
		transform: rotate(-45deg);
	}


	#faq dl dd {
		position: relative;
		font-size: 14px;
		line-height: 1.8em;
		padding: 0;
		margin: 0;
		margin-top: 10px;
		margin-left: 30px;
		padding-left: 30px;
	}

	#faq dl dd p {
		font-size: 14px;
	}

	#faq dl dd:before {
		content: "A.";
		position: absolute;
		top: 15px;
		left: 0;
		color: #FF9315;
		font-size: 20px;
		font-weight: bold;
	}

	.faq_search_title {
		font-size: 20px;
	}

	.search_category {
		font-size: 11px;
	}

	.search_category span {
		color: #00819F;
		font-weight: bold;
		margin-right: 20px;
	}

	.search_category span.parent {
		margin-right: 0;
	}

	.search_category span.parent:after {
		content: "";
		width: 5px;
		height: 5px;
		vertical-align: 1.5px;
		border-top: 1px solid #00819F;
		border-right: 1px solid #00819F;
		display: inline-block;
		margin-left: 5px;
		margin-right: 10px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.faq_top {
		text-align: center;
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.faq_top a {
		padding: 15px 0;
		font-size: 13px;
		min-width: 100%;
	}

	.faq_top a:after {
		content: "";
		width: 7px;
		height: 7px;
		vertical-align: 1px;
		border-top: 2px solid #FF6F15;
		border-right: 2px solid #FF6F15;
		display: inline-block;
		margin-left: 20px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.connection {
		display: none;
	}
}

/************************

form

*************************/

#forms h2 {
	border: 0;
	margin: 0 0 60px;
	padding: 0;
	text-align: center;
	display: block;
}

#forms h2 img {
	width: 214px;
	height: auto;
}

#form {
	padding-top: 60px;
}

.form-img {
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	padding-top: 30%;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.form-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.form_input,
.form_confirm,
.form_thx {
	display: none;
}

.mw_wp_form_input .form_input {
	display: block;
}

.form_input p {
	font-size: 15px;
}

.mw_wp_form_input .form_input .tel {}

.form_input .tel a {
	color: #004594;
	text-decoration: none;
	font-size: 30px;
	font-weight: bold;
	font-family: Arial, Helvetica, "sans-serif";
	padding-right: 15px;
}

.form_input .tel a:before {
	content: "";
	width: 24px;
	height: 23px;
	background-image: url(images/header/tel-icon.png);
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: -2px;
	margin-right: 15px;
}

.form_input .tel a span {
	font-weight: normal;
	font-size: 12px;
	margin-left: 10px;
	color: #262626;
}


.mw_wp_form_confirm .form_confirm {
	display: block;
}

.mw_wp_form_complete .form_thx {
	display: block;
	padding: 40px 0 80px;
	max-width: 800px;
	margin: 0 auto;
}


.form_thx p {
	padding: 0;
	margin-bottom: 40px;
}

.form_thx p.title {
	font-size: 25px;
	font-weight: bold;
	color: #262626;
	text-align: center;
}

.form_thx .toplink {
	text-align: center;
}

.form_thx .toplink a {
	display: inline-block;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: 2px solid #00819F;
	font-size: 15px;
	padding: 20px 0;
	min-width: 300px;
	color: #00819F;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

.form_thx .toplink a:after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 1px solid #00819F;
	border-right: 1px solid #00819F;
	display: inline-block;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	vertical-align: 1px;
	margin-left: 15px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

.form_thx .toplink a:hover {
	color: #fff;
	background-color: #00819F;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

.form_thx .toplink a:hover:after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

.form-group {
	margin-bottom: 40px;
}

.form-group .item:nth-of-type(1) {
	margin-bottom: 5px;
}

.form-group .item:nth-of-type(1) label {
	font-size: 15px;
	font-weight: bold;
}

.form-group .item:nth-of-type(1) label.must:after {
	content: "";
	width: 40px;
	height: 20px;
	background-image: url(images/must.png);
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
	margin-left: 10px;
	vertical-align: -5px;
}

.form-group .item:nth-of-type(1) span {
	display: block;
	font-size: 13px;
}

.form-group input[type=text],
.form-group input[type=email] {
	-webkit-appearance: none;
	width: 70%;
	padding: 10px 0;
	line-height: 2em;
	text-indent: 1em;
	font-size: 15px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.form-group textarea {
	-webkit-appearance: none;
	width: 100%;
	height: 200px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/*
.form-group input[type=file] {
    display: none!important;
}

.form-group .files label{
	-webkit-appearance: none;
	display: inline-block;
    padding: 15px 20px;
	margin-top: 10px;
    margin-right: 10px;
    background-color: #ffffff;
    border: 1px solid #00819F;
    cursor: pointer;
    text-align: center;
    color: #00819F;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}*/

.form_policy {
	text-align: center;
}

.form_policy i:before {
	content: "";
	width: 14px;
	height: 14px;
	display: inline-block;
	background-image: url(images/outlink.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin: 0 5px;
}

.mw_wp_form_confirm .form_policy {
	display: none;
}

.mw_wp_form_complete .form_policy {
	display: none;
}

.submit_area {
	margin-bottom: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	flex-direction: row-reverse;
}

.btn_submit {
	-webkit-appearance: none;
	border: 1px solid #00819F !important;
	padding: 30px;
	min-width: 300px;
	text-align: center;
	font-size: 15px;
	background: #fff;
	color: #00819F;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	-webkit-border-radius: 10px !important;
	;
	-moz-border-radius: 10px !important;
	;
	border-radius: 10px !important;
	;
}

.btn_submit:hover {
	border: 1px solid #00819F;
	background: #00819F;
	color: #fff;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

.btn_back {
	-webkit-appearance: none;
	border: 1px solid #5F5E5E !important;
	padding: 30px;
	min-width: 180px;
	text-align: center;
	font-size: 15px;
	background: #fff;
	color: #5F5E5E;
	margin-right: 50px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	-webkit-border-radius: 10px !important;
	;
	-moz-border-radius: 10px !important;
	;
	border-radius: 10px !important;
	;
}

.btn_back:hover {
	background: #666;
	color: #fff;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}


@media only screen and (max-width: 767px) {
	#forms h2 {
		border: 0;
		margin: 0 0 30px;
		padding: 40px 0 0;
		text-align: center;
		display: block;
	}

	#forms h2 img {
		width: 128px;
		height: auto;
	}

	.form-img {
		padding-top: 67.75%;
	}

	.form_input .tel a {
		color: #004594;
		text-decoration: none;
		font-size: 21px;
		font-weight: bold;
		font-family: Arial, Helvetica, "sans-serif";
		padding-right: 15px;
	}

	.form_input .tel a:before {
		content: "";
		width: 19px;
		height: 18px;
		background-image: url(images/header/tel-icon.png);
		background-repeat: no-repeat;
		background-size: contain;
		display: inline-block;
		vertical-align: -2px;
		margin-right: 5px;
	}


	.form-group input[type=text],
	.form-group input[type=email] {
		-webkit-appearance: none;
		width: 100%;
		padding: 10px 0;
		line-height: 2em;
		text-indent: 1em;
		font-size: 15px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
	}

	.form_policy {
		font-size: 12px;
	}

	.submit_area {
		display: block;
		text-align: center;
	}


	.btn_back {
		width: 200px;
		margin: 30px auto 0px;
	}

}


/************************

under

*************************/
.pc_title {
	display: block;
	background: #2F5AE6;
	color: #fff;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	padding: 15px 0;
}

.pc_title2 {
	display: block;
	background: #1AACED;
	color: #fff;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	padding: 15px 0;
}

.sp_title {
	display: none;
}

.under_head {
	background: rgb(221, 247, 246);
	background: linear-gradient(125deg, rgba(221, 247, 246, 1) 0%, rgba(249, 255, 235, 1) 100%);
}

.under_head .wrapper {
	text-align: center;
	padding: 60px 0;
}

.under_head p.read {
	font-size: 22px;
	font-weight: bold;
	line-height: 2.4em;
	margin-bottom: 20px;
}

.under_head a>img {
	width: 90%;
	max-width: 390px;
}

@media only screen and (max-width: 959px) {
	.under_head {
		margin-top: -20px;
	}
}

@media only screen and (max-width: 767px) {

	.pc_title,
	.pc_title2 {
		display: none;
	}

	.sp_title {
		display: block;
		background: #2F5AE6;
		color: #fff;
		text-align: center;
		font-size: 13px;
		font-weight: bold;
		padding: 5px 0;
	}

	.under_head .wrapper {
		text-align: center;
		padding: 60px 0 30px;
	}

	.under_head p.read {
		font-size: 16px;
		font-weight: bold;
		line-height: 2.4em;
		margin-bottom: 20px;
	}

	.under_head a>img {
		width: 90%;
		max-width: 390px;
	}

}


/************************

event

*************************/

.event {
	margin: 50px auto;
	max-width: 700px;
}

.event-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	border-top: 1px solid rgb(199, 192, 192);
}

.event-item:first-child {
	border-top: none;
}

.event-date {
	width: 150px;
	padding: 23.5px 0 24.5px;
	text-align: center;
}

.event-title {
	width: 550px;
	margin-left: 0;
	padding: 23.5px 0 24.5px 31px;
	text-align: left;
}


/*===========================================
旧サイト打ち消しCSS
===========================================*/

img{
	max-width: 100% !important;
	width: revert-layer;
}