@charset "utf-8";
/* ------------------------------------------
 SP 分野一覧　スクロール対応のモーダルウィンドウ
------------------------------------------- */
@media (min-width: 992px) {
	#modalField {
		display: none;
	}
	.open_btn{display: block;}
}
@media (max-width: 991px) {
	.open_btn{display:none;}
}
body {
  margin: 0;
  /* あとからスクロールバーが出ないように最初から表示＠問題ある場合はjavascriptでごにょごにょする 
  overflow-y: scroll;*/
}
#ModalWindow button {
  user-select: none;
}
.open_modal{
  cursor: pointer;
  display: inline-block;
  text-align: center;
  background: #67bc63;
  color: #fff;
  padding: 4px 6px;
  border-radius: 2px;
  font-size: 13px;
  border: none;
  transition: all 200ms;
width: 100%;
}
.close_modal {
  cursor: pointer;
  display: inline-block;
	text-align: center;
  background: #67bc63;
  color: #fff;
  padding: 6px 20px;
  border-radius: 2px;
  font-size: 13px;
  border: none;
  transition: all 200ms;
}

/* 開く時の.modalWrappeのアニメーション */
@keyframes modalwindow_body_in {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes modalwindow_body_out {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.modalwindow {
  /* オーバーレイ＆スクロール領域になるレイヤー */
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  z-index: 1010000;/*obi*/
  width: 100%;
  /* スマホでスワイプして指を離すまでの間下部の背景が無くなるため余分に指定 */
  height: calc(100% + 100px);
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 100px solid transparent;
  cursor: pointer;
  opacity: 1;
}
.modalwindow.no_overlay_close {
  cursor: default;
}
.modalwindow.lock .close_modal {
  background: #ccc;
}
.modalwindow .modalWrappe {
  /* ウィンドウ自体 アニメーションなどで装飾 */
  position: relative;
  left: 50%;
  top: 0;
  width: 600px;
  /*margin-left: -300px;
  margin-top: 40px;
  margin-bottom: 10px;*/
  background: #fff;
  border-radius: 4px;
  cursor: default;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  animation: 200ms modalwindow_body_out;
  z-index: 1010000;/*obi*/
}
.modalwindow .modalWrappe h3{
	background: #67bc63;
	color:#fff;
	font-size: 14px;
	text-align: center;
	padding: 6px 0 5px;
	border-radius: 4px 4px 0 0 ;
}
.modalwindow .modalWrappe .modal_content {
  padding: 5px 15px 15px 15px;
}
.modalwindow .modalWrappe .closeBtn {
  padding: 10px;
  text-align: center;
}
.modalwindow.is_visible .modalWrappe {
  transform: translateY(0px);
  animation: 400ms modalwindow_body_in;
}

.modalwindow_header_close {
  /* 右上に表示する×ボタン 面倒なので動的に追加してます */
  position: absolute;
  right: 0;
  top: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.modalwindow_header_close:before {
  content: "\D7";
  font-size: 24px;
  font-family: serif;
  color: #ccc;
}
@media screen and (max-width: 900px) {
  .modalwindow .modalWrappe {
    position: relative;
    width: calc(100% - 20px);
    margin: 20px 10px 10px 10px;
    left: 0;
  }
}
.open_modal{
  cursor: pointer;
  display: inline-block;
  text-align: center;
  background: #67bc63;
  color: #fff;
  padding: 3px 6px 4px 6px;
  border-radius: 2px;
  font-size: 13px;
  border: none;
  transition: all 200ms;
  width: 100%;
}
@media screen and (max-width: 346px) {
  .open_modal{
  padding: 4px 4px;
  border-radius: 2px;
  font-size: 12px;
	}
}
/* ----------------------------------
 .modalWrappeの中　分野一覧 アコーディオン
---------------------------------- */
.fieldWrappe_sp{display: block; border: 1px solid #67bc63; border-bottom: none; font-size: 13px;}
.fieldWrappe_sp h4 {
	margin: 0 0 0rem;
	font-weight: normal;
	line-height: 3;
	padding-left: 0.5rem;
}
.fieldWrappe_SP > ul {
	margin-right: 0rem;
}
.field li{margin-bottom: 0;padding-left: 0.5rem;}
.field li{ background-color: #eaf8e9;border-bottom: 1px solid #67bc63;}
.field li a{ display: block; color: inherit; text-decoration: none; line-height: 3}

.btn{
    border-bottom: 1px solid #67bc63;
    cursor: pointer;
    margin: 0;
	position: relative;
}
.btn:after, 
.btn.active:after {
    font-size: 20px;
    margin-left: 20px;
	color: #67bc63;
}
.btn::after {
    content: "＋";
	position: absolute;
	top:-20%;
	right: 0.8rem;
}
.btn.active::after {content: "－";}
.btn::after,.btn.active::after{font-weight: bold}

