@charset "UTF-8";
/*----------------------------------------------------
    変数設定
----------------------------------------------------*/
/* 16:9 */
/*----------------------------------------------------
    mixin
----------------------------------------------------*/
/*----------------------------------------------------
    SCSS Import
----------------------------------------------------*/
/*====================================================
 *
 *
 *   Foundation
 *
 *
====================================================*/
/*----------------------------------------------------
    ブラウザ設定初期化
----------------------------------------------------*/
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, p, th, td {
  margin: 0;
  padding: 0;
}

address, caption, th {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

object, embed {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: bottom;
}

.ie7 img {
  -ms-interpolation-mode: bicubic;
}

li {
  list-style-type: none;
}


*,*::before,*::after{
	box-sizing: border-box;
}


/*----------------------------------------------------
    HTML5 elements for lte IE8
----------------------------------------------------*/
article, footer, header, nav, section {
  display: block;
}

/*----------------------------------------------------
    文字サイズ統一
----------------------------------------------------*/
body {
  line-height: 1.61;
  font-size: 13px;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
  color: #333;
}

/*----------------------------------------------------
    基本設定、リンクカラーなど
----------------------------------------------------*/
body {
  background: #EEF2EE;
}


@media screen and (min-width : 768px) {
body {
  background: url(../img/bg_back01.png) repeat-y;
}
}

a {
  background-color: transparent;
}

a:link {
  color: #3F9A48;
}

a:visited {
  color: #3F9A48;
}

a:hover {
  color: #900;
}

a:active {
  color: #300;
}

a:link, a:visited {
  text-decoration: none;
}

a:hover, a:active {
  outline: 0;
  text-decoration: underline;
}

b, strong {
  font-weight: bold;
}

hr {
  height: 0;
}

small {
  font-size: 80%;
}

sub, sup {
  position: relative;
  line-height: 0;
  vertical-align: baseline;
  font-size: 75%;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

svg:not(:root) {
  overflow: hidden;
}

.styleTypeA {
	color: #F8072C;
}

.styleTypeB {
	background: #FEF20A;
}

.styleTypeC {
	font-size: 16px;
	font-weight: bold;
}

/*----------------------------------------------------
    フォームのノーマライズ
----------------------------------------------------*/
button, input, select, textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

button {
  overflow: visible;
}

button, input {
  line-height: normal;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

button[disabled], html input[disabled] {
  cursor: default;
}

input[type="checkbox"], input[type="radio"] {
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

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

button::-moz-focus-inner, input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

textarea {
  overflow: auto;
  vertical-align: top;
}


/*====================================================
 *
 *
 *   Layout
 *
 *
====================================================*/

/*  .fb(fllex box)
----------------------------------------------------*/


@media screen and (max-width : 767px ){
.fb {
	display:-webkit-box;
	-webkit-box-orient: vertical; /* Android -4.3 */
	flex-direction: column;
}
}

@media screen and (min-width : 768px) {
.fb {
	display: -webkit-box; /* Android -4.3 */
	display: flex;
}
}




@media screen and (max-width : 767px ){
.fb02 {
	display:-webkit-box;
	-webkit-box-orient: vertical; /* Android -4.3 */
	flex-direction: column;
}
}

@media screen and (min-width : 768px) {
.fb02 {
	display: -webkit-box; /* Android -4.3 */
	display: flex;
	justify-content: space-between;
}
}

/*----------------------------------------------------
    #header
----------------------------------------------------*/
/*#header {
	position: relative;
	> .wrap {
		@include contentsWidth;
		height: 68px;
		padding-bottom: 50px;
		@include clearAfter;
	}
}*/



/*  #header > #hdLogo
----------------------------------------------------*/
#hdLogo {
  float: left;
  margin-top: 20px;
}

#hdLogo a {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  display: inline-block;
}

#hdLogo a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}

/*  #header > .hdContents
----------------------------------------------------*/
.hdContents {
  float: right;
}

/*  #subNav
----------------------------------------------------*/
#subNav ul{
	text-align: center;
}

#subNav ul li{
	display: inline;
}

#subNav ul li path{
	color: #55B95F;
}

img.accessIcon,img.privacyIcon,img.faqIcon{
	width: 20px;
	height: 20px;
	margin-bottom: 5px;
}


@media screen and (max-width : 767px ){
	#subNav {
		background: #FAFCFA;
		padding: 20px 0;
		border-top: 1px solid #aaa;
	}
	#subNav ul {
		display: flex;
		justify-content: center;
		text-align: center;
	}
	
	#subNav ul li{
		font-size: 10px;
	}
	
	#subNav li a {
		padding: 0 5px;
		color: #000;
	}
	
	#subNav li a:hover {
		text-decoration: none;
		color: #333;
	}
}


@media screen and (min-width : 768px) {
	#subNav {
		padding: 20px 0;
		background: url(../img/bg_hd01.jpg) no-repeat;
		font-size: 11px;
		margin-bottom: 20px;
	}

	#subNav ul {
		display: flex;
		justify-content: flex-end;
		margin-right: 50px;
	}
	
	#subNav ul li{
		margin: 0 6px;
	}
	
	#subNav li a {
		font-size: 11px;
		color: #000;
	}
	
	#subNav li a:hover {
		text-decoration: none;
		opacity: 0.7;
	}
}



/*----------------------------------------------------
    .topicPath
----------------------------------------------------*/
.topicPath {
  margin-bottom: 60px;
}

.topicPath > .wrap {
  /*width: 1040px;
  margin: 0 auto;*/
  padding: 10px 0;
  line-height: 1.8em;
  text-align: left;
  font-size: 12px;
}

.topicPath > .wrap span {
  padding: 0 5px;
}

.topicPath > .wrap a {
  color: #000;
  text-decoration: underline;
}

.topicPath > .wrap a:hover {
  text-decoration: none;
}

/*----------------------------------------------------
    menu02
----------------------------------------------------*/
#navi {
	position: relative;
	margin: 0;
}

#navi ul.ul01{
	display: block;
	font-size: 1.1em;
}

#navi ul.ul01 li a.wrap{
	outline: medium none;
}

#navi ul.ul01 li ul{
display: none;
}

/*----------------------------------------------------
    menu
----------------------------------------------------*/
#navi {
	position: relative;
	margin: 0;
}

.slicknav_arrow {
	display: none;
}

.slicknav_nav li ul.sub-menu img{
	width: 12px;
	height: 12px;
	margin: 0 5px 11px 0;
}


@media screen and (max-width : 767px ){
#menu {
	display: none;
}

.slicknav_nav a{
	border-bottom: 1px dotted #000;
}

.slicknav_nav a:hover{
	background: #FFF;
	text-decoration: none;
	border-radius: 0;
    color: #3F9A48;
}
	
.slicknav_nav img{
}


.slicknav_nav .slicknav_row a{
	border: none;
}

.slicknav_nav .slicknav_row:hover{
	background: #FFF;
	text-decoration: none;
	border-radius: 0;
}
}

@media screen and (min-width : 768px) {
#menu {
	display: none;
}

.slicknav_btn {
	display: none;
}

 /*ナビ全体*/
.slicknav_nav {
	display:block !important;
	width: 210px;
	margin: 0 auto;
}

 /*リスト*/
.slicknav_nav ul {
	margin: 0;
}

.slicknav_nav li{
	border-bottom: 1px dotted #AAA !important;
	line-height: 2.3 !important;
}

.slicknav_nav li:last-child{
	border-bottom: none !important;
}

.slicknav_nav li a{
	background: #55B95F !important;
	border-radius: 0 !important;
	color: #FFF;
	margin: 0 !important;
	/*padding: 5px 5px !important;*/ /*下層にも効くためコメントアウト*/
	display: block;
}

.slicknav_nav li a:hover{
	/*background: #409B49 !important;*/
	text-decoration: none;
	/*padding: 10px 20px;
	margin: 0 20px;*/
	display: block;
	color: #333;
}

 /*子階層を含むメニューのリンク*/
.slicknav_nav li.slicknav_collapsed a,.slicknav_nav li.slicknav_parent a{
	display: block;
	color: #FFF;
}

.slicknav_nav li.slicknav_collapsed a:hover,.slicknav_nav li.slicknav_parent a:hover{
	color: #333;
}

 /*子階層を含むメニュー*/
.slicknav_nav li a:hover ul.sub-menu{
	display: block;    /*クリック時にサブメニューを表示する*/
}


 /*子階層（薄黄緑背景）*/
 
.slicknav_nav li ul.sub-menu{
	background: #D8EFDA !important;
}

.slicknav_nav li ul.sub-menu li a{
	background: #D8EFDA !important;
	color: #333;
	padding-left: 15px;
	border-bottom: 1px dotted #999 !important;
}

.slicknav_nav li ul.sub-menu li:last-child a{
	border-bottom: none !important;
}

.slicknav_nav li ul.sub-menu li a:hover{
	color: #AAA;
}
	


	
.activeContents a{
	background: #409B49!important;
}
}



@media screen and (max-width : 767px ){
.slicknav_menu{
	background: #EEF2EE;
	margin-bottom: 8px;
}
}






/*----------------------------------------------------
    .banner
----------------------------------------------------*/
@media screen and (max-width : 767px ){
.bannerArea{
	padding: 0;
	margin: 7px 0 20px;
	text-align: center;
}
}

@media screen and (min-width : 768px) {
.bannerArea{
	padding: 15px 0;
	margin-bottom: 50px;
	text-align: center;
}
}


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


.bannerArea ul li{
	list-style-type: none;
}

.bannerArea ul li a{
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

.bannerArea ul li a:hover{
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
	opacity: 0.6;
}

.bannerArea ul li img{
	margin: 5px 6px;
}


@media screen and (max-width : 767px ){
.bannerArea ul li.crosscheck{
	background: url(../img/bg_crosscheck01.png) repeat;
	border-radius: 2px;
	width: 298px;
	margin: 0 auto 5px;
	padding: 10px 0;
}
}

@media screen and (min-width : 768px) {
.bannerArea ul li.crosscheck{
	background: url(../img/bg_crosscheck01.png) repeat;
	margin: 0 20px 10px 20px;
	padding: 10px 0;
	border-radius: 2px;
}
}

.bannerArea ul li.crosscheck img{
	text-align: center;
}

/*----------------------------------------------------
    #fxNav
------------------------------------------------------*/
#fxNav {
  position: fixed;
  top: 100px;
  right: 45px;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
}

#fxNav.active {
  right: 0;
}

#fxNav.show {
  visibility: visible;
  opacity: 1;
}

#fxNav li {
  position: absolute;
  left: 0;
  background-color: #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#fxNav li.active {
  left: -95px;
}

#fxNav #fxNav01 {
  top: 0;
}

#fxNav #fxNav02 {
  top: 125px;
}

#fxNav #fxNav03 {
  top: 250px;
}

#fxNav a {
  display: block;
  width: 140px;
  height: 120px;
}

/*----------------------------------------------------
    #contents
----------------------------------------------------*/
#contents {
}

@media screen and (min-width : 768px) {
#contents {
  width: 1220px;
  margin: 0 auto;
}
}


/*----------------------------------------------------
    #contents > #sideArea
----------------------------------------------------*/
.ippan img{
	width: 12px;
	height: 12px;
	margin: 0 5px 6px 0;
}

.banner-space{
	text-align: center;
	margin-bottom: 14px;
}

.banner-space a{
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

.banner-space a:hover{
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
	opacity: 0.6;
}

@media screen and (min-width : 768px ){
.banner-space-sp{
	display: none;;
}
}

@media screen and (max-width : 767px ){
#asideArea {
	background: #EEF2EE;
	position:relative;
}
	
.banner-space{
	display: none;
}
	
.banner-space-sp{
	text-align: center;
	margin-bottom: 15px;
}

.ippan a{
	color: #FFF;
}

#asideArea .headArea {
	width: 200px;
    position: absolute;
    left: 15px;
    top: 40px;
}

#asideArea .headArea svg{
	width: 32px;
    height: 32px;
}

.ippan{
	top: 0;
	left: 0;
	padding: 5px 10px;
	background: #55B95F;
}


}

@media screen and (min-width : 768px) {
#asideArea .headArea svg{
	width: 60px;
	height: 60px;
}
}


#asideArea .headArea p{
	float: left;
}

#asideArea .headArea p img{
	width: 33px;
	height: 33px;
	margin-right: 10px;
}


#asideArea .headArea h1 {
	font-size: 14px;
	text-align: left;
	line-height: 1.2;
}

#asideArea .headArea h1 a:hover {
	text-decoration: none;
}

#asideArea .headArea h1 span{
	font-size: 10px;
}


#asideArea .headArea h1 a:link,#asideArea h1 a:visited{
	color: #000;
}





@media screen and (min-width : 768px) {
#asideArea {
	background: #FFF;
	width: 250px;
}

#asideArea .headArea {
	width: 210px;
	float: none;
	margin: 30px auto 15px auto;
}


#asideArea .headArea p {
	float: none;
	text-align: center;
}

#asideArea .headArea p img{
	width: 62px;
	height: 62px;
	margin-bottom: 10px;
	margin-right: 0;
}

#asideArea .headArea h1 {
	text-align: center;
	font-size: 16px;
	line-height: 1.4;
}

#asideArea .headArea h1 span{
	font-size: 14px;
}


.ippan {
	text-align: center;
	margin-bottom: 20px;
}
}





/*----------------------------------------------------
    #contents > #main
----------------------------------------------------*/
#main {
   /* display: inline;*/
}

@media screen and (min-width : 768px) {
  #main {
  width: 970px;
  background: #EEF2EE;
  /*display: table-cell;*/
  vertical-align: top;
  }
}


/*----------------------------------------------------
    #contents > #main > #mainContents
----------------------------------------------------*/
@media screen and (max-width : 767px ){
#mainContents {
   margin-bottom: 0;
   padding: 0 20px;
}
}

@media screen and (min-width : 768px) {
#mainContents {
   padding: 0 20px;
   margin-bottom: 20px;
}
}



/*----------------------------------------------------
    #footer
------------------------------------------------------*/
#footer {
  padding: 20px 10px 30px 10px;
  border-top: 1px solid #aaa;
  font-size: 11px;
}

#footer address .footerTitle{
  margin-bottom: 10px;
  font-weight: bold;

}

#footer address .footerTitle img{
  float: left;
  margin-right: 5px;
  width: 28px;
  height: 28px;
}

#footer address p{
  font-size: 15px;
}

#footer p span{
  font-size: 10px;
}

@media screen and (min-width : 768px) {
#footer{
   padding-left: 35px;
	display: -webkit-box; /* Android -4.3 */
	display: flex;
	justify-content: space-between;
}
}



/*  #footer > .copyright
----------------------------------------------------*/
#footer .copyright {
	margin-top: 30px;
}


@media screen and (min-width : 768px) {
#footer .copyright{
   text-align: right;
}
}




/*----------------------------------------------------
    Page Top
----------------------------------------------------*/
.secPageTop {
  position: relative;
  clear: both;
  width: 100%;
}


/*  .secPageTop > #pageTop
----------------------------------------------------*/
#pageTop {
  display: block;
  overflow: hidden;
  outline: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ccc;
  text-indent: 100%;
  white-space: nowrap;
}

@media screen and (max-width : 767px ){
  #pageTop {
    display: none;
  }
}

#pageTop:before, #pageTop:after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}

#pageTop:before {
  position: absolute;
  top: 16px;
  left: 15px;
  border-width: 0 10px 14px 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  line-height: 0;
}

.ie8 #pageTop:before {
  width: 20px;
  height: 14px;
  border: none;
  /*background: #06c url(../img/btn_pagetop01.png) no-repeat 0 0;*/
}


/* 波紋エフェクト */
.secPageTop #pageTop:hover:after {
  opacity: 0.6;
  position: absolute;
  top: 25px;
  left: 25px;
  border-radius: 50%;
  background: #fff;
  -webkit-animation-name: hoverEffect01;
  animation-name: hoverEffect01;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

@keyframes hoverEffect01 {
  0% {
    opacity: 0.6;
    top: 25px;
    left: 25px;
    width: 0;
    height: 0;
  }
  75% {
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes hoverEffect01 {
  from {
    opacity: 0.6;
    top: 25px;
    left: 25px;
    width: 0;
    height: 0;
  }
  to {
    opacity: 0;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
  }
}






/*====================================================
 *
 *
 *   Object:Component
 *
 *
====================================================*/
/*====================================================

  ページ共通パーツ

====================================================*/
/*----------------------------------------------------
    .secCotentsHead
----------------------------------------------------*/
.secCotentsHead {
  height: 60px;
  background: #eee;
}

.secCotentsHead .wrap {
  width: 1040px;
  margin: 0 auto;
}

.secCotentsHead .wrap .head {
  line-height: 60px;
  font-weight: normal;
  font-size: 28px;
  color: #000;
}


/*====================================================

  セクションスタイル

====================================================*/
/*----------------------------------------------------
    .secTypeA
----------------------------------------------------*/
.secTypeA {
  width: 1040px;
  margin: 0 auto;
}

.secTypeA + div {
  margin-top: 60px;
}

/*----------------------------------------------------
    .secTypeB
----------------------------------------------------*/
.secTypeB {
  background-color: #efefef;
}

.secTypeB > .wrap {
  width: 1040px;
  margin: 0 auto;
}

/*----------------------------------------------------
    .noticeBox
----------------------------------------------------*/
.noticeBox {
	border: 2px solid #F8072C;
	background: #FEEBEE;
	padding: 20px;
	margin-bottom: 50px;
}

.noticeBox dl dt{
	color: #F8072C;
	font-weight: bold;
}

.noticeBox dl dd{
	margin-bottom: 20px;
}

.noticeBox dl dd:last-child{
	margin-bottom: 0;
}

/*----------------------------------------------------
    .noticeBox2
----------------------------------------------------*/
.noticeBox2 {
	border: 2px solid #F8072C;
	background: #FEEBEE;
	padding: 20px;
	margin: 0 14px 30px;
	line-height: 1.8em;
}

.noticeBox2 dl {
	margin-bottom: 1.2em;
}
.noticeBox2 dl dt{
	color: #F8072C;
	font-weight: bold;
	float: left;
}

@media screen and (max-width: 767px) {
	.noticeBox2 dl dt{
		float: none;
	}
}

.noticeBox2 dl dd{
	margin-left: 8em;
}
@media screen and (max-width: 767px) {
	.noticeBox2 dl dd{
		margin-left: 0;
	}
}

.noticeBox2 dl dd a{
	color: #252525;
	text-decoration: underline;
}
.noticeBox2 dl dd span{
	display: inline-block;
	margin-right: 1em;
	font-weight: bold;
}

.noticeBox2 dl dd a:hover{
	text-decoration: none;
}

.noticeBox2 dl:last-child{
	margin-bottom: 0;
}


/*====================================================

  見出しスタイル

====================================================*/
/*----------------------------------------------------
    .hdTypeA
----------------------------------------------------*/
.hdTypeA {
	background :#55B95F;
	margin-bottom: 40px;
	font-weight: normal;
	font-size: 17px;
	padding: 13px 15px;
	color: #FFF;
	text-align: center;
}

/*----------------------------------------------------
    .hdTypeB
----------------------------------------------------*/
.hdTypeB {
	background :#FFF;
	color :#55B95F;
	border: 1px dotted #55B95F;
	line-height: 1.25;
	font-size: 18px;
	margin-bottom: 20px;
	padding: 8px 10px;
	text-align: center;
}

.hdTypeB span{
	color: #F8072C;
}

/*----------------------------------------------------
    .hdTypeC
----------------------------------------------------*/
.hdTypeC {
	line-height: 1.25;
	font-size: 17px;
	margin-bottom: 20px;
	padding: 5px 0;
	color :#409B49;
}


/*----------------------------------------------------
    .hdTypeD
----------------------------------------------------*/
.hdTypeD {
	background: #FFF;
	color: #55B95F;
	border: 1px dotted #55B95F;
	line-height: 1.8;
	font-size: 18px;
	margin-bottom: 10px;
	padding: 10px 10px 6px;
	text-align: left;
}

/*----------------------------------------------------
    .hdTypeE
----------------------------------------------------*/
.hdTypeE {
  line-height: 1.25;
  font-size: 15px;
  padding: 5px 0 15px;
  border-bottom: #AC2F73 solid 1px;
  color: #AC2F73;
  text-align: center;
  margin-bottom: 1em;
}

/*----------------------------------------------------
    .hdTypeF
----------------------------------------------------*/
.hdTypeF {
	line-height: 1.25;
	font-size: 15px;
	padding: 5px 0 15px;
	border-bottom: #f1b0ba solid 2px;
	color: #F8072C;
	text-align: center;
	margin-bottom: 1em;
}

/*----------------------------------------------------
    .hdTypeG
----------------------------------------------------*/
.hdTypeG {
	line-height: 1.25;
	font-size: 15px;
	padding: 5px 0 15px;
	border-bottom: #333 solid 1px;
	margin-bottom: 1em;
}


/*====================================================

  ページ内リンク

====================================================*/

/*----------------------------------------------------
    .pageLinkTypeA
----------------------------------------------------*/
nav.pageLinkTypeA{
	margin-bottom: 50px;
}

nav.pageLinkTypeA ul {
	display: -webkit-box; /* Android -4.3 */
	display: flex;
	justify-content: center;
}

nav.pageLinkTypeA ul li{
	width: 225px;
	text-align: center;
}

nav.pageLinkTypeA ul li a{
	display: block;
	background: #FEDE01;
	padding: 10px 10px;
	margin: 0 7px;
	color: #000;
}

nav.pageLinkTypeA ul li a svg{
	margin-right: 5px;
}

nav.pageLinkTypeA ul li a:link{
	color: #000;
}

nav.pageLinkTypeA ul li a:hover{
	background: #FEF20A;
	text-decoration: none;
	color: #000;
}

nav.pageLinkTypeA ul li a:visited{
	color: #000;
}


@media screen and (max-width : 767px ){
nav.pageLink{
}

nav.pageLinkTypeA ul {
 	-webkit-box-orient: vertical; /* Android -4.3 */
	flex-direction: column;
  }

nav.pageLinkTypeA ul li{
 	text-align: left;
	width: 80%;
	margin: 0 auto 10px auto;
  }

}



/*----------------------------------------------------
    .pageLinkTypeB
----------------------------------------------------*/
nav.pageLinkTypeB{
	margin-bottom: 50px;
}

nav.pageLinkTypeB ul {
 	-webkit-box-orient: vertical; /* Android -4.3 */
	flex-direction: column;
}

nav.pageLinkTypeB ul li{
	width: 80%;
	text-align: left;
	margin: 0 auto 10px auto;
}

nav.pageLinkTypeB ul li a{
	display: block;
	background: #FEDE01;
	padding: 10px 20px;
	margin: 0 10px;
	color: #000;
}

nav.pageLinkTypeB ul li a svg{
	margin-right: 5px;
}

nav.pageLinkTypeB ul li a:link{
	color: #000;
}

nav.pageLinkTypeB ul li a:hover{
	background: #FEF20A;
	text-decoration: none;
	color: #000;
}

nav.pageLinkTypeB ul li a:visited{
	color: #000;
}


/*====================================================

  テーブルスタイル

====================================================*/
.nowrap {
	white-space: nowrap;
}


/*----------------------------------------------------
    .tableTypeA　thが横並びのパターン
----------------------------------------------------*/
.caption { display: none; }

.tableTypeA {
	/*border: 1px solid #999;*/
	/*background: #FFF;*/
	font-size: 0.9em;
	margin-bottom: 50px;
	width: 100%;
}

.tableTypeA th,
.tableTypeA td {
	padding: 10px;
	border: solid 1px #EEE;
}

.tableTypeA th.nowrap{
	white-space:  nowrap;
}

.tableTypeA thead th {
	background: #333;
	color: #FFF;
}

.tableTypeA tbody th { background: #CCC; }

.tableTypeA tbody td {
	background: #FFF;
	text-align: left;
}

@media screen and (max-width: 767px) {
.tableTypeA {
}

.tableWrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.caption { display: inline; }

.tableTypeA {
	width: 100%;
	display: block;
}

.tableTypeA thead {
	/*display: block;
	float: left;*/
	display: none;
}

.tableTypeA thead th { display: block; }

.tableTypeA tbody {
	/*display: block;*/
	/*overflow-x: auto;*/
	/*white-space: nowrap;*/
	-webkit-overflow-scrolling: touch;
}

.tableTypeA tbody {
	vertical-align: top;
}

/*.tableTypeA tbody tr { display: inline-block; }*/

/*
.tableTypeA tbody th,
.tableTypeA tbody td { display: block; }
*/
}


/*----------------------------------------------------
    .tableTypeB　thが横並びのパターン
----------------------------------------------------*/
.tableTypeB {
	background: #FFF;
	font-size: 0.9em;
	margin-bottom: 10px;
	width: 100%;
}

.tableTypeB th,
.tableTypeB td {
	padding: 10px;
	border: solid 1px #EEE;
}

.tableTypeB th{
	text-align: center;
	background: #333;
	color: #FFF;
}
.tableTypeB th.sub{
	text-align:  left;
	background: #CCC;
	color: #000;
}

.tableTypeB td{
	text-align:  center;
}

/*====================================================

  リストスタイル

====================================================*/
/*----------------------------------------------------
    ol
----------------------------------------------------*/
.olTypeA {
	margin-left: 30px;
}

.olTypeA li{
	list-style-type: decimal;
	margin-bottom: 20px;
}


@media screen and (max-width : 767px) {
.olTypeA li img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
}


/*----------------------------------------------------
    ul
----------------------------------------------------*/
/*.ulTypeA*/
.ulTypeA {
	margin-bottom: 50px;
}

.ulTypeA li{
	width: 120px;
	float: left;
	padding: 10px 10px 10px 0;
}

.ulTypeA li.pdf{
	background: url(../img/icn_pdf01.png) no-repeat 0 12px;
	padding-left: 20px;
}

.ulTypeA li.html,
.ulTypeA li.link{
	background: url(../img/icn_html01.png) no-repeat 0 12px;
	padding-left: 20px;
}


/*.ulTypeB*/
.ulTypeB {
	margin: 0 15px 50px;
}

.ulTypeB li{
	margin-bottom: 15px;
}


/*.ulTypeC*/
.ulTypeC {
	margin: 0 15px 20px;
}

.ulTypeC li{
	list-style-type:  disc;
	padding-left: 3px;
}




/*----------------------------------------------------
    dl
----------------------------------------------------*/
.dlTypeA {
	margin-bottom: 50px;
}

.dlTypeA dt{
	margin-bottom: 5px;
	border-bottom: 1px dotted #999;
	font-weight:  bold;
}

.dlTypeA dd{
	margin-bottom: 30px;
}

.dlTypeB {
	margin-bottom: 50px;
}

.dlTypeB dt{
	margin-bottom: 5px;
	border-bottom: 1px dotted #999;
	font-weight:  bold;
	font-style: 1.1em;
}
.dlTypeB dt span{
	display: inline-block;
	font-weight: normal;
	margin-left: 1.2em;
}

.dlTypeB img{
	width: 12px;
	height: 12px;
	margin: 0 5px 5px 0;
}

/*====================================================

  カラム（列）スタイル

====================================================*/
/*----------------------------------------------------
    .secColumn
----------------------------------------------------*/
.secColumn {
  width: 1040px;
  margin: 0 auto;
}

.secColumn:after {
  content: '';
  display: block;
  clear: both;
}

.secColumn .wrap {
  clear: both;
}

.secColumn .wrap + .wrap {
  padding-top: 20px;
}

.secColumn .colum {
  float: left;
  position: relative;
  padding: 20px;
  border: 1px solid #000;
}

.secColumn .colum + .colum {
  margin-left: 20px;
}

.secColumn .colum .hdTypeB {
  margin-bottom: 10px;
}

.secColumn .colum .body {
  margin-bottom: 42px;
}

.secColumn .colum .more {
  position: absolute;
  bottom: 20px;
}

.secColumn.col5 .colum {
  width: 150px;
}

.secColumn.col5 .colum .more {
  width: 150px;
}

.secColumn.col4 .colum {
  width: 203px;
}

.secColumn.col4 .colum .more {
  width: 203px;
}

.secColumn.col3 .colum {
  width: 291.33333px;
}

.secColumn.col3 .colum .more {
  width: 291.33333px;
}

.secColumn.col2 .colum {
  width: 468px;
}

.secColumn.col2 .colum .more {
  width: 468px;
}

.secColumn.typeA .colum {
  border-color: #000;
}

.secColumn.typeB .colum {
  border-color: #aaa;
}

.secColumn.typeC .colum {
  border-color: #999;
  border-radius: 4px;
}

.secColumn.typeD .colum {
  border: none;
}



/*====================================================

  リンクスタイル

====================================================*/
/*----------------------------------------------------
    .linkTypeA
----------------------------------------------------*/
.linkTypeA {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  display: block;
  background-color: #000;
  line-height: 32px;
  text-align: center;
}

.linkTypeA:link, .linkTypeA:visited {
  color: #fff;
}

.linkTypeA:hover, .linkTypeA:active {
  filter: alpha(opacity=70);
  opacity: 0.7;
  text-decoration: none;
}



/*====================================================

  背景スタイル

====================================================*/
/*----------------------------------------------------
    .bgTypeA
----------------------------------------------------*/
.bgTypeA {
  background-color: #ccc;
}




/*====================================================
 *
 *
 *   Object:Utility
 *
 *
====================================================*/
/*----------------------------------------------------
    float
----------------------------------------------------*/
.fll {
  float: left;
}

img.fll {
  margin: 0 10px 10px 0;
}

.flr {
  float: right;
}

img.flr {
  margin: 0 0 10px 10px;
}

.clb {
  clear: both;
}

/*----------------------------------------------------
    text
----------------------------------------------------*/
.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.ti, .ti p {
  text-indent: 1em;
}

/*----------------------------------------------------
    margin, padding
----------------------------------------------------*/
.mt0 {margin-top: 0 !important;}
.mb0 {margin-bottom: 0 !important;}
.pt0 {padding-top: 0 !important;}
.pb0 {padding-bottom: 0 !important;}
.mt5 {margin-top: 5px !important;}
.mb5 {margin-bottom: 5px !important;}
.pt5 {padding-top: 5px !important;}
.pb5 {padding-bottom: 5px !important;}
.mt10 {margin-top: 10px !important;}
.mb10 {margin-bottom: 10px !important;}
.pt10 {padding-top: 10px !important;}
.pl10 {padding-left: 10px !important;}
.pr10 {padding-right: 10px !important;}
.pb10 {padding-bottom: 10px !important;}
.mt15 {margin-top: 15px !important;}
.ml15 {margin-left: 15px !important;}
.mr15 {margin-right: 15px !important;}
.mb15 {margin-bottom: 15px !important;}
.pt15 {padding-top: 15px !important;}
.pb15 {padding-bottom: 15px !important;}
.pl15 {padding-left: 15px !important;}
.pr15 {padding-right: 15px !important;}
.mt20 {margin-top: 20px !important;}
.ml20 {margin-left: 20px !important;}
.mr20 {margin-right: 20px !important;}
.mb20 {margin-bottom: 20px !important;}
.pt20 {padding-top: 20px !important;}
.pl20 {padding-left: 20px !important;}
.pr20 {padding-right: 20px !important;}
.pb20 {padding-bottom: 20px !important;}
.mt25 {margin-top: 25px !important;}
.mb25 {margin-bottom: 25px !important;}
.pt25 {padding-top: 25px !important;}
.pb25 {padding-bottom: 25px !important;}
.mt30 {margin-top: 30px !important;}
.mb30 {margin-bottom: 30px !important;}
.pt30 {padding-top: 30px !important;}
.pb30 {padding-bottom: 30px !important;}
.mt35 {margin-top: 35px !important;}
.mb35 {margin-bottom: 35px !important;}
.pt35 {padding-top: 35px !important;}
.pb35 {padding-bottom: 35px !important;}
.mt40 {margin-top: 40px !important;}
.mb40 {margin-bottom: 40px !important;}
.pt40 {padding-top: 40px !important;}
.pb40 {padding-bottom: 40px !important;}
.mt45 {margin-top: 45px !important;}
.mb45 {margin-bottom: 45px !important;}
.pt45 {padding-top: 45px !important;}
.pb45 {padding-bottom: 45px !important;}
.mt50 {margin-top: 50px !important;}
.mb50 {margin-bottom: 50px !important;}
.pt50 {padding-top: 50px !important;}
.pb50 {padding-bottom: 50px !important;}
.mt55 {margin-top: 55px !important;}
.mb55 {margin-bottom: 55px !important;}
.pt55 {padding-top: 55px !important;}
.pb55 {padding-bottom: 55px !important;}
.mt60 {margin-top: 60px !important;}
.mb60 {margin-bottom: 60px !important;}
.pt60 {padding-top: 60px !important;}
.pb60 {padding-bottom: 60px !important;}

/*----------------------------------------------------
    CSS ロールオーバー
----------------------------------------------------*/
.ro:hover img {
  filter: alpha(opacity=80);
  opacity: 0.8;
}

.rot {
  display: inline-block;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.rot:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}


/*----------------------------------------------------
    border
----------------------------------------------------*/
.borderBsolid{
	border-bottom: 1px solid #DDD;
}


/*----------------------------------------------------
    micro clearfix
----------------------------------------------------*/
.cf:before, .cf:after {
  display: table;
  content: " ";
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}



/*----------------------------------------------------
    #page-top
----------------------------------------------------*/
#page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
}
#page-top a {

}
#page-top a:hover {
}



/*====================================================
 *
 *
 *  トップページ
 *
 *
====================================================*/


/*----------------------------------------------------
    .infoBox
----------------------------------------------------*/
.infoBox{
	border-radius: 5px;
	box-shadow: 2px 2px 2px 2px #CCC;
	-webkit-box-shadow: 2px 2px 2px 2px #CCC;
	-moz-box-shadow: 2px 2px 2px 2px #CCC;
}


.infoBox .ac-cont{
	padding: 10px 20px;
	margin-bottom: 20px;
}

.infoBox .more{
	margin-bottom: 7px;
}

.infoBox .more a{
	display: block;
	width: 80px;
	margin: 0 auto;
	background: #666;
	text-align: center;
	color: #FFF;
}

.infoBox .more a:hover{
	background: #999;
	text-decoration: none;
}


.boxType01 .more a { background-color: #FD9302; }
.boxType02 .more a { background-color: #FE4D01; }
.boxType03 .more a { background-color: #FC0379; }
.boxType04 .more a { background-color: #B30EF1; }
.boxType05 .more a { background-color: #680CF3; }
.boxType06 .more a { background-color: #1E4AFF; }


.boxType01 .more a:hover { background-color: #FFE4C1; }
.boxType02 .more a:hover { background-color: #FEC9B1; }
.boxType03 .more a:hover { background-color: #FEBADA; }
.boxType04 .more a:hover { background-color: #F1D2FD; }
.boxType05 .more a:hover { background-color: #E4D5FD; }
.boxType06 .more a:hover { background-color: #CED8FF; }



@media screen and (min-width : 768px) {
.infoBox .ac-cont{
	width: 395px;
	overflow-x : auto;
	overflow-y: scroll;
	height: 200px;

}
}


.infoBox .ac-cont dl dt{
	background: #CCC;
	margin-bottom: 4px;
	padding: 2px 6px;
	font-size: 0.8em;
  text-align: right;
}

.boxType01 .ac-cont dl dt { background-color: #FFE4C1; }
.boxType02 .ac-cont dl dt { background-color: #FEC9B1; }
.boxType03 .ac-cont dl dt { background-color: #FEBADA; }
.boxType04 .ac-cont dl dt { background-color: #F1D2FD; }
.boxType05 .ac-cont dl dt { background-color: #E4D5FD; }
.boxType06 .ac-cont dl dt { background-color: #CED8FF; }

.infoBox .ac-cont dl dd{
	margin-bottom: 15px;
}



@media screen and (min-width : 768px) {
.visualImg {
	display: none;
}
}

@media screen and (max-width : 767px ){
.visualImg {
	text-align: center;
	margin-bottom: 20px;
}
}


@media screen and (min-width : 768px) {
.infoBox {
	width: 434px;
	float: left;
	background: #FFF;
	margin: 15px 15px;
	padding: 0 20px 20px;
}

.infoBox .ac-content {
	padding-top: 15px;
}

.infoBox label svg {
	display: none;
}

.infoBox input {
	display: none;
}

.infoBox label {
	font-weight: bold;
	display: block;
	padding-bottom: 10px;
	border-bottom: 1px solid #CCC;
}


.boxType01 label { border-color: #FD9302; }
.boxType02 label { border-color: #FE4D01; }
.boxType03 label { border-color: #FC0379; }
.boxType04 label { border-color: #B30EF1; }
.boxType05 label { border-color: #680CF3; }
.boxType06 label { border-color: #1E4AFF; }


.infoBox .ac-cont {
	margin-top: 15px;
}

}


@media screen and (max-width : 767px ){
.infoBox {
	margin: 0 auto 20px auto;
	padding: 0;
	width: 300px;
	background: #FFF;
}

.infoBox .ac-content {
	margin: 0 10px;
}

.infoBox input {
	display: none;
}

.infoBox label {
	display: block;
	background: #FFF;
	cursor: pointer;
	padding: 10px;
	font-weight: bold;
	border-bottom: 1px solid #FFF;
}

.infoBox label:hover {
	background: #FFF;
}

.infoBox .ac-cont {
	transition: 0.2s;
	height: 0;
	overflow: hidden;
	background: #FFF;
	padding: 0 10px;
}

.infoBox input:checked + .ac-cont {
	height: auto;
	padding: 10px;
}
}



.boxType01 { border-top: 3px solid #FD9302; }
.boxType02 { border-top: 3px solid #FE4D01; }
.boxType03 { border-top: 3px solid #FC0379; }
.boxType04 { border-top: 3px solid #B30EF1; }
.boxType05 { border-top: 3px solid #680CF3; }
.boxType06 { border-top: 3px solid #1E4AFF; }

.boxType01 label { color: #FD9302; }
.boxType02 label { color: #FE4D01; }
.boxType03 label { color: #FC0379; }
.boxType04 label { color: #B30EF1; }
.boxType05 label { color: #680CF3; }
.boxType06 label { color: #1E4AFF; }



/*====================================================
 *
 *
 *  コンテンツページ
 *
 *
====================================================*/

/*----------------------------------------------------
    .contentsIndex
----------------------------------------------------*/
.contentsIndex{
}

.contentsIndex {
}

.contentsIndex a{
}

.contentsIndex a:hover{
}

.contentsIndex img{
	width: 12px;
	height: 12px;
	margin: 0 5px 5px 0;
}



/*----------------------------------------------------
    .pageContents
----------------------------------------------------*/
@media screen and (min-width : 768px) {
.pageContents{
	margin: 0 20px;
}
}



/*====================================================
 *
 *
 *  会長挨拶
 *
 *
====================================================*/
.greetingChairman{
	text-align: center;
}

.greetingChairman div{
	text-align: left;
}

@media screen and (max-width : 767px ){
.greetingChairman img{
	margin: 0 auto 20px;
	display: block;
	text-align: center;
	width: 200px;
	height: 220px;
}
}

@media screen and (min-width : 768px) {
.greetingChairman img{
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
	flex-shrink: 0;
	text-align: center;
	width: 200px!important;
	height: 220px!important;
}
}


/*====================================================
 *
 *
 *  交通アクセス
 *
 *
====================================================*/
.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin-bottom: 80px;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/*====================================================
 *
 *
 *  一般の皆様へ
 *
 *
====================================================*/
.guest{
	margin-bottom: 50px;
}

.guest img{
	width: 100%;
	max-width: 100%;
	height: auto;
	padding: 0;
	margin-bottom: 50px;
	border: 1px solid #AAA;
}/* レスポンシブ対応 */



/*====================================================
 *
 *
 *  行事予定
 *
 *
====================================================*/
.gc_wrapper {
  max-width: 800px; 
  min-width: 300px; 
  margin: 2.0833% auto;
}
 
.responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-bottom: 40px;
}
.responsive-iframe-container iframe,   
.responsive-iframe-container object,  
.responsive-iframe-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
 

@media (max-width: 320px) {
    .big-container {
        display: none;
    }
    .mid-container {
        display: none;
    }
    .mid2-container {
        display: none;
    }
    .mid3-container {
        display: none;
    }
    .mid4-container {
        display: none;
    }
    .small-container {
       padding-bottom: 200%;
    }
}

@media (min-width: 321px)  and  (max-width: 500px) {
    .big-container {
        display: none;
    }
    .mid-container {
       padding-bottom: 168%;
    }
    .mid2-container {
        display: none;
    }
    .mid3-container {
        display: none;
    }
    .mid4-container {
        display: none;
    }
    .small-container {
        display: none;
    }
}

@media (min-width: 501px)  and  (max-width: 700px) {
    .big-container {
        display: none;
    }
    .mid-container {
        display: none;
    }
    .mid2-container {
       padding-bottom: 120%;
    }
    .mid3-container {
        display: none;
    }
    .mid4-container {
        display: none;
    }
    .small-container {
        display: none;
    }
}

@media (min-width: 701px)  and  (max-width: 900px) {
    .big-container {
        display: none;
    }
    .mid-container {
        display: none;
    }
    .mid2-container {
        display: none;
    }
    .mid3-container {
       padding-bottom: 95%;
    }
    .mid4-container {
        display: none;
    }
    .small-container {
        display: none;
    }
}


@media (min-width: 901px)  and  (max-width: 1024px) {
    .big-container {
        display: none;
    }
    .mid-container {
        display: none;
    }
    .mid2-container {
        display: none;
    }
    .mid3-container {
        display: none;
    }
    .mid4-container {
       padding-bottom: 70%;
    }
    .small-container {
        display: none;
    }
}

@media (min-width: 1025px)  {
    .mid-container {
        display: none;
    }
    .mid2-container {
        display: none;
    }
    .mid3-container {
        display: none;
    }
    .mid4-container {
        display: none;
    }
    .small-container {
        display: none;
    }
}


/*
@media screen and (max-width: 320px) {
    .big-container {
        display: none;
    }
    .mid-container {
        display: none;
    }
    .mid2-container {
        display: none;
    }
    .small-container {
       padding-bottom: 195%;
}

@media screen and (min-width:321px)  and  (max-width: 600px){
    .big-container {
        display: none;
    }
    .mid-container {
       padding-bottom: 120%;
    }
    .mid2-container {
        display: none;
    }
    .small-container {
        display: none;
    }
}

@media screen and (min-width:601px)  and  (max-width: 1000px){
    .big-container {
        display: none;
    }
    .mid-container {
        display: none;
    }
    .mid2-container {
       padding-bottom: 80%;
    }
    .small-container {
        display: none;
    }
}

@media screen and (min-width: 1001px) {
    .mid-container {
        display: none;
    }
    .mid2-container {
        display: none;
    }
    .small-container {
        display: none;
    }
}

*/

/*====================================================
 *
 *
 *  お知らせバックナンバー
 *
 *
====================================================*/
dl.infoBackNumber {
	padding: 25px 30px 5px 30px;
	margin: 20px 0 50px;
	background: #FFF;
	border: 1px solid #CCC;
	border-radius: 5px;
	box-shadow: 2px 2px 2px 2px #CCC;
	-webkit-box-shadow: 2px 2px 2px 2px #CCC;
	-moz-box-shadow: 2px 2px 2px 2px #CCC;
}

dl.infoBackNumber dt {
	margin-bottom: 4px;
	padding: 2px 6px;
	font-size: 0.8em;
  text-align: right;
}

dl.infoBackNumber dd {
	margin-bottom: 15px;
}

dl.lecture dt {background-color: #FFE4C1;}
dl.ringi dt {background-color: #FEC9B1;}
dl.convivial dt {background-color: #FEBADA;}
dl.gakujutsubu dt {background-color: #F1D2FD;}
dl.syougaibu dt {background-color: #E4D5FD;}
dl.soumubu dt {background-color: #CED8FF;}


/*====================================================
 *
 *
 *  リンク
 *
 *
====================================================*/
ul.linkStyleTypeA{
	margin: 0 0 50px 0;
}

ul.linkStyleTypeA li{
	margin: 0 0 15px 0;
}

ul.linkStyleTypeA li a{
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

ul.linkStyleTypeA li a:hover{
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
	opacity: 0.6;
}

ul.linkStyleTypeA img.arw{
	width: 12px;
	height: 12px;
	margin: 0 5px 4px 0;
}

.toggle-pc { display: block; }
.toggle-sp { display: none; }
@media only screen and (max-width: 640px) {
  .toggle-pc { display: none; }
  .toggle-sp { display: block; }
}


/*----------------------------------------------------
    .secLogin
----------------------------------------------------*/
.secLogin {
	border: solid 1px #ccc;
	background: #fff;
	width: 100%;
	margin: 20px auto 60px;
	padding: 20px 0;
	text-align: center;
}

.secLogin p {
	margin: 10px;
}

.secLogin p.login-submit {
	margin: 15px 10px 10px;
}

.secLogin input[type=submit] {
	padding: 8px 40px;
	background: #55B95F;
	border: none;
	color: #fff;
}

.secLogin input[type=submit]:hover {
	filter: alpha(opacity=70);
	opacity: 0.7;
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}