@charset "utf-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
	overflow-x: hidden;
}
body{
	background: url("../images/body_bg.jpg") no-repeat fixed;
	background-size: cover;
	border-top: 3px solid #A13B42;
}
.w_base {
	margin: 0 auto;
	width: 960px;
	background-color: #FFF;
}
.cmn_ttl {
	background: url(../images/icon_leaf01.png) no-repeat left center;
	border-bottom: 3px solid #aaa;
	font-size: 24px;
	padding:  0 0 5px 35px;
	position: relative;
}
.cmn_ttl:first-letter {
	color: #A13B42;
}
.cmn_ttl::after {
	position: absolute;
	content: "";
	border-bottom: 3px solid #A13B42;
	left: 0;
	bottom: -3px;
	width: 150px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd {
	height: 100px;
	position: relative;
}
.hd_logo {
	position: absolute;
	top: 30px;
	left: 40px;
}
.hd_nav_list {
	position: absolute;
	top: 40px;
	right: 40px;
	display: flex;
}
.hd_nav_list li:first-child{
	margin-right: 10px;
}
.hd_nav_list a:hover{
	opacity: 0.8;
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
	background: #A13B42;
	overflow: visible;
}
.nav_list {
	display: flex;
	width: 100%;
}
.nav_list>li {
	position: relative;
	z-index: 1000;
	width: 15%;
	height: 80px;
	position: relative;
}
.nav_list>li::before {
	content: "";
	border-left: 1px solid #FFF;
	right: 0;
	top: 10px;
	bottom: 10px;
	position: absolute;
}
.nav_list>li:last-child {
	width: 25%;
}
.nav_list>li:last-child::before{
	display: none;
}
.nav_list>li>a {
	color: #FFF;
	font-size: 12px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 100%;
	text-align: center;
	text-decoration: none;
	position: relative;
	line-height: 16px;
	padding-bottom: 10px;
}
.nav_list>li>a:before {
	content: url(../images/icon_triangle_bottom_white01.png);
	right: 8px;
	top: 53px;
	bottom: 10px;
	position: absolute;
}
.nav_list>li>a:hover {
}

.nav_list>li>a:hover,
.nav_list>li.current-menu-parent>a,
.nav_list>li.current-menu-item>a{
	background: #E1AEB3;
	color: #A13B42;
}

.nav_list >li:hover .sub-menu {
	display: block;
	-webkit-animation: nav_active 1s ease 0s 1 alternate;
			animation: nav_active 1s ease 0s 1 alternate;
}

.menu-item-975 > a:after {
  content: url(/wp-content/uploads/2020/12/news.png);
  display: inline-block;
  width: 10px;
  height: 5px;
  top: 10px;
  left: 40%;
  position: absolute;
}

.menu-item-976 > a:after {
  content: url(/wp-content/uploads/2020/12/kusakabeabout.png);
  display: inline-block;
  width: 10px;
  height: 5px;
  top: 10px;
  left: 40%;
  position: absolute;
}
.menu-item-962 > a:after {
  content: url(/wp-content/uploads/2020/12/kougi.png);
  display: inline-block;
  width: 10px;
  height: 5px;
  top: 10px;
  left: 40%;
  position: absolute;
}
.menu-item-788 > a:after {
  content: url(/wp-content/uploads/2020/12/member.png);
  display: inline-block;
  width: 10px;
  height: 5px;
  top: 10px;
  left: 38%;
  position: absolute;
}
.menu-item-1004 > a:after {
  content: url(/wp-content/uploads/2020/12/mail.png);
  display: inline-block;
  width: 10px;
  height: 5px;
  top: 10px;
  left: 38%;
  position: absolute;
}
.menu-item-95 > a:after {
  content: url(/wp-content/uploads/2020/12/school.png);
  display: inline-block;
  width: 10px;
  height: 5px;
  top: 10px;
  left: 45%;
  position: absolute;
}

@-webkit-keyframes nav_active {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes nav_active {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	width: 100%;
	-webkit-transition: All 0.5s ease;
	transition: All 0.5s ease;
}
.sub-menu > li {
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.sub-menu > li > a {
	display: block;
	padding: 10px;
	background: #68272b;
	color: #fff;
	font-size: 12px;
	text-align: center;
	text-decoration: none;
}
.sub-menu > li > a:hover {
	background: #E1AEB3;
	color: #A13B42;
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 30px 40px;
}
.main {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	width: 640px;
}
.side {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	width: 200px;
}
.side .cmn_ttl:nth-child(3){
	background-image: none;
	font-size: 14px;
	padding-left: 5px;
	margin-top: 20px;
}
.side_nav_list li a {
	background: url(../images/icon_arrow_gray.png) no-repeat left center;
	border-bottom: 1px solid #CCC;
	color: #111;
	display: block;
	padding: 12px 10px;
	text-decoration: none
}
.side_nav_list li a:hover, .side_nav_list li a.current {
	text-decoration: underline
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft {
	background-color: #CCC;
	padding: 3rem 0;
}
.ft_nav_list{ display: none;}
.ft_copy {
	font-size: 0.7rem;
	text-align: center
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	border-radius: 50%;
	background-color: #A13B42;
	bottom: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	right: 30px;
	position: fixed;
	width: 60px;
	z-index: 100;
}
.pt:hover {
	opacity: 0.6;
}
.pt_btn {
	cursor: pointer;
	display: block;
	width: 20px;
	height: 20px;
	margin-top: 8px;
	transform: rotate(45deg);
	position: relative;
}
.pt_btn::before,
.pt_btn::after{
	background-color: #FFF;
	content: "";
	display: block;
	top: 0;
	left: 0;
	position: absolute;
}
.pt_btn::before{
	width: 7px;
	bottom: 0;
}
.pt_btn::after{
	height: 7px;
	right: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/

.index_news_wrap{
	max-height: 500px;
	overflow: auto;
}
.index_slider_bg {
}
/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
/*--
.index_slider img {
	width: 100%;
	max-height: 300px!important;
	-o-object-fit:cover!important;
	object-fit:cover;
	font-family:'object-fit: cover!important;'
} -- */

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.archive_item {
	border-bottom: 1px dotted #999;
	display: flex;
	align-content: space-between;
	padding: 10px 0;
	width: 100%;
}
.archive_item_date {
	width: 130px;
}
.archive_item_date:before {
	content: url(../images/icon_arrow_red01.png);
	vertical-align: bottom;
	margin-right: 0.2em;
}
.archive_item_ttl {
	width: calc(100% - 140px);
}
.archive_item_icon_new {
	display: inline-block;
	color: #C00;
	font-size: 0.9em;
	font-weight: bold;
	margin-left: 0.3em
}
.archive_item_icon_new:before {
	content: "NEW"
}
.single_date{
	text-align: right;
	margin: 10px 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	word-wrap: break-word
}
.mcon a img:hover {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.mcon h2{
	background-color: #A13B42;
	border-radius: 8px;
	color: #FFF;
    font-size: 18px;
    margin: 20px 0 10px;
    padding: 10px 15px;
}
.mcon h3{
	border-bottom: 1px dotted #999;
	border-left: 5px solid #A13B42;
    font-size: 17px;
    margin: 20px 0 10px;
    padding: 10px;
}
.mcon h4{
    border-left: 5px solid #A13B42;
    font-size: 16px;
    margin: 20px 0 10px;
	padding: 2px 10px;
}
.mcon hr {
	border: none;
	border-top: 1px dotted #000
}
.mcon iframe {
	max-width: 100%
}
.mcon img {
	max-width: 100%;
	height: auto
}
.mcon ol {
	margin-top: 1rem;
	margin-bottom: 0.5rem
}
.mcon ol li {
	margin-left: 2em;
	margin-bottom: 0.5rem
}
.mcon p {
	margin-top: 1rem
}
.mcon ul {
	margin-top: 1rem;
	margin-bottom: 0.5rem
}
.mcon ul li {
	list-style-type: disc;
	margin-left: 1.5rem;
	margin-bottom: 0.5rem
}
