/******************************************************************************
******************************************************************************
**
** 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;
}
.w_base {
	margin: 0 auto;
	width: 960px;
}

a {
    color:#000;
}
a:hover {
    color:#0f550d;
}


/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
}
.hd {
	height: 110px;
	position: relative;
}
.hd_logo {
	position: absolute;
	top: 30px;
	left: 0;
	font-size: 2.2rem;
    display: flex;
    align-items: center;
}
.hd_logo img {
	width: 300px;
	height: auto;
}

.hd_logo a {
    text-decoration: none;
    color: #000000;
    font-weight: 100;
}

.hd_lang {
	position: absolute;
	right: 30px;
	bottom: 20px;
    font-size: 1.38rem;
}
.hd_lang a {
    text-decoration: none;
    color: #000;
}

.hd_lang a:hover, .hd_lang .current {
    font-weight: bold;
    color: #0f550d;
}

.hd_lang .current:hover {
    opacity: 0.7;
}

.logo_block {
    width: 60px!important;
    display: block;
    margin-right: 23px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
	margin-bottom: 40px;
}
.nav {
	overflow: visible;
}
.nav_list {
	display: flex;
	width: 100%;

}
.nav_list img {
	transition: All 0.5s ease;
}
.nav_list img:hover {
	opacity: 0
}
.nav_list a.current img {
	opacity: 0
}
.nav_list>li {
	position: relative;
	z-index: 1000;
    width: 100%;
    height: 70px;
}

.nav_list>li a {
    border-right: 1px solid #82a77b;
}

.nav_list>li:first-child a {
    border-left: 1px solid #82a77b;
}

.nav_list>li>a {
	text-align: center;
    font-size: 1.23rem;
    color: #fff;
    text-decoration: none;
    display: block;
    background-image: url(../images/nav.png);
    padding: 10px 0px;
    font-weight: bold;
}


.nav_list>li>a:hover,
.nav_list>li>a.current{
    background-image: url(../images/nav_hover.png);
    color: #0f550d;
    font-weight: bold;

}
.nav_list>li:hover .nav_clist {
	display: block;
	animation: nav_active 1s ease 0s 1 alternate
}

.nav_list li span {
    display: block;
    font-size: 1rem;
}

.en_list  {
}

.en_list li {
}

.en_list li a {
    padding: 20px 0;
}

@-webkit-keyframes nav_active {
0% {
opacity:0
}
100% {
opacity:1
}
}
@keyframes nav_active {
0% {
opacity:0
}
100% {
opacity:1
}
}
.nav_clist {
	display: none;
	transition: All 0.5s ease;
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0
}
.nav_clist>li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.7);
	position: relative
}
.nav_clist>li>a {
	background-color: #000;
	color: #fff;
	display: block;
	padding: 10px;
	text-decoration: none
}
.nav_clist>li>a:hover, .nav_clist>li>a.current {
	opacity: 0.8
}
.nav_clist>li:hover .nav_glist {
	display: block;
	animation: nav_active 1s ease 0s 1 alternate
}
.nav_glist {
	display: none;
	width: 100%;
	position: absolute;
	top: 0;
	left: 100%
}
.nav_glist>li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	border-left: 1px solid rgba(255, 255, 255, 0.4)
}
.nav_glist>li>a {
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	display: block;
	padding: 10px;
	text-decoration: none
}
.nav_glist>li>a:hover, .nav_glist>li>a.current {
	background-color: #000;
	box-shadow: 0 0 4px rgba(255, 0, 0, 0.2)
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {

}
.con {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    padding: 0px 0 30px 0;
}
.main {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
    width: 100%;
}
.side {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	width: 230px;
}
.side h3 {
	background-color: #EEE;
	color: #111;
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 6px;
	padding: 8px;
	text-align: center
}
.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_bg {

}
.ft {
	padding: 30px 0;
}
.ft_copy {
	font-size: 10px;
	text-align: center
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	border-radius: 50%;
	background-color: #333;
	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_main {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
    width: 100%;
}

.index_greet {
    font-size:  1.2rem;
    text-align: justify;
    text-justify: inter-ideograph;
}

.index_side {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	width: 230px;
}
.index_bnr_list li {
	margin-bottom: 4px
}
.index_bnr_list a {
	padding: 16px 16px 16px 42px;
	border: 1px solid #000000;
	border-radius: 3px;
	display: block;
	text-decoration: none;
	background: url(../images/icon_elink_black.png) no-repeat 16px center;
	color: #000000;
}
.index_bnr_list a:hover {
	background-color: #000;
	background-image: url(../images/icon_elink_white.png);
	color: #FFF
}

.index_news {
}

.index_news h2 {
	margin-bottom: 0px;
    font-size: 2.5rem;
    color: #0f550d;
    border-bottom: 2px solid #0f550d;
}
.index_news_item {
	border-bottom: 1px solid #999;
	display: flex;
	align-content: space-between;
    padding: 30px 0 10px 0;
	width: 100%;
}
.index_news_item_date {
	width: 130px;
}
.index_news_item_date:before {
	vertical-align: bottm;
	margin-right: 0.2em;
}
.index_news_item_ttl {
	width: calc(100% - 140px);
}
.index_news_item_icon_new {
	display: inline-block;
	color: #C00;
	font-size: 0.9em;
	font-weight: bold;
	margin-left: 0.3em
}
.index_news_item_icon_new:before {
	content: "NEW"
}
.index_news_scrl {
	max-height: 250px;
	overflow: auto
}
.index_slider_bg {
}

.index_slider_bg video {
    height: auto!important;
    zoom: 1;
    width: 100%!important;
}

/*-- 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
******************************************************************************
----------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  font-size: 1.2rem;
  text-align: justify;
  text-justify: inter-ideograph;
}

.mcon .blue_link, .mcon .blue_link a {
    color: #0f550d;
}

.mcon a img:hover {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.mcon h1 {
        font-size: 1.69rem;
        margin-bottom: 20px;
        border-bottom: 1px solid #0f550d;
        font-weight: normal;
        padding-bottom: 5px;
        position: relative;
        padding-left:15px;
        font-weight: bold;
        color: #000;
}

.mcon h1:before {
        content: "";
        height: 20px;
        width: 10px;
        background-image: url(../images/mcon_h1.png);
        background-repeat: no-repeat;
        left: 0;
        position: absolute;
        top: 6px;
}

.mcon h1 span {
    font-size: 1.38rem;
    font-weight: normal;
    padding-left: 10px;
}

.mcon h2 {
        font-size: 1.28rem;
        margin-bottom: 20px;
        border-bottom: 1px solid #0f550d;
        font-weight: normal;
        padding-bottom: 5px;
        position: relative;
        padding-left:15px;
        font-weight: bold;
        color: #0f550d;

}

.mcon h2:before {
        content: "";
        height: 20px;
        width: 10px;
        border-left: 3px solid #0f550d;
        left: 0;
        position: absolute;
        top: 2px;
    
}

.mcon h3 {
    font-size: 1.2rem;
    position: relative;
    display: block;
    padding: 0.2em 0 0.2em 1.2em;
    color: #0f550d;
}

.mcon h3::before {
    position: absolute;
    top: 0.5em;
    left: 0;
    display: block;
    width: 0.8em;
    height: 0.8em;
    background: #0f550d;
    content: "";
}
.mcon h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    margin-top: 5px;
    border: 1px solid #0f550d;
    display: block;
    width: fit-content;
    padding: 5px 40px;
    color: #0f550d;
}
.mcon h5, .mcon h6 {
	font-size: 1.1em;
	margin-bottom: 2px;
	margin-top: 5px;
}
.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: 1em;
	margin-bottom: 0.5em
}
.mcon ol li {
	margin-left: 2em;
	margin-bottom: 0.5em
}
.mcon p {
	margin-bottom: 1em
    
}
.mcon ul {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ul li {
	list-style-type: disc;
	margin-left: 1.5em;
	margin-bottom: 0.5em
}

.mcon .cv, .mcon .cv a {
    color: #0f550d;
}
.mcon .cv a {
    font-weight: bold;
}

.mcon .blank:before {
    content: "　";
}

.mcon .reserch_img_box{
    text-align: center;
}

.mcon .reserch_img_box img{
    display: block;
    width: 80%;
    margin:0 auto;
    padding-bottom: 10px;
}

.mcon .reserch_img_box2 {
    display: flex;
    margin-bottom: 20px;
}

.mcon .reserch_img_box2 div {
    text-align: center;
}

.mcon .reserch_img_box2 div img {
    display: block;
    padding-bottom: 10px;
}

.mcon .reserch_video{
    text-align: center;
}

.mcon .reserch_video video{
    display: block;
    width: 80%;
    margin:0 auto;
    padding-bottom: 10px;
}

.mcon .reserch_title {
    font-weight: bold;
    font-size: 1.2rem;
}

.mcon .title_right {
    float:right;
    font-weight: normal;
    font-size: 1rem;
}

.mcon  .normal {
    font-weight: normal!important;
}

.member_box {
    display: flex;
}

.member_box .member_photo {
    display: block;
    margin-right: 30px;
}

.member_box .contents {
    width: 720px;
}

.member_list_box {
    display: flex;
}

.member_list_box div:first-child {
margin-right: 40px;
}

.mcon .btn_flex {
    display: flex;
}

.mcon a.btn-border {
    border: 1px solid #0f550d;
    border-radius: 0;
    background: #fff;
    padding: 15px 0;
    color: #0f550d;
    text-decoration: none;
    display: block;
    width: 30%;
    text-align: center;
    margin: 30px auto;
    font-weight: bold;
}

.mcon a.btn-border:hover {
    color: #fff;
    background: #0f550d;
}

.mcon a.btn-border2 {
    border: 1px solid #0f550d;
    border-radius: 0;
    background: #fff;
    padding: 10px 0;
    color: #0f550d;
    text-decoration: none;
    display: block;
    width: 15%;
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
}

.mcon a.btn-border2:hover {
    color: #fff;
    background: #0f550d;
}

.mcon .list_link a {
    display: block;
    text-align: right;
    color: #0f550d;
    margin: 5px 0;
}

.mcon .bg_orange {
    background: #fdefe6;
    padding: 30px;
}

.pc_none {
    display: none;
}

.sp_none {
    display: block;
}

.accordion-container .accordion-title {
  position: relative;
  margin: 0;
  padding: 0.625em 0.625em 0.625em 1.2307692307692em;
	background-image: url(../images/accordion.png);
    border-bottom: 1px solid #0f550d;
  font-size: 1.25em;
  font-weight: normal;
  color: #0f550d;
  cursor: pointer;
  font-weight: bold;
  position: relative!important;
}
.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open { 
  background-color: #00aaa7;
}

.accordion-container .accordion-title::before {
    background-image: url(../images/arrow.png);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 98%;
    height: 100%;
    background-repeat: no-repeat;
    margin: auto 0;
    background-size: initial;
    background-position: right;
  border-left: none;
}


.accordion-container .accordion-title.open::before {
    transform: scale(1, -1);
}

.accordion-container .accordion-title.open::after {
  opacity: 0;
}

.accordion-content {
  padding-left: 2.3125em;
  padding-top: 20px;
  margin-bottom:30px;
}

/* CSS for CodePen */
.accordion-container {
  width: 100%;
}

.no-accordion {
    cursor: auto!important;
}
.no-accordion:before {
  display: none;
}

.top_link {
    display: block;
    text-align: right;
}

.top_link a {
    text-decoration: none;
    background: #0f550d;
    padding: 10px;
    border-radius: 5%;
    color: #fff;
}

.top_link a:hover {
    border: 2px solid #0f550d;
    background: #fff;
    color: #0f550d;
}
