@charset "Shift_JIS";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
}
html, body {
	height:100%;
}

@font-face {
  font-family: YuGothicM;
  src: local(Yu Gothic Medium),
       local(Yu Gothic);
  font-weight: 500;
}
body, td, th {
	color: black;
	font-family: YuGothic,YuGothicM,"メイリオ",sans-serif;
	font-size: 16px;
}
select, option, input, textarea {
	color: black;
	font-family: YuGothic,YuGothicM,"メイリオ",sans-serif;
	font-size: 32px;
	transform-origin: left top;
	transform: scale(0.5);
}
body {
	background-color: #FFF;
}
a {
	overflow: hidden;
	outline: none;
}
a:link {
	color: #35660c;
}
a:visited {
	color: #35660c;
}
a:hover {
	color: #660c0c;
}
a:active {
	color: #660c0c;
}
table {
	border-collapse:collapse;
}
img {
	border: none
}

.TekiyoTitle {
	text-align: center !important; 
}
.TekiyoData {
	word-wrap: break-word !important; 
}
.NotesTitle {
	color: DarkRed; 
	font-size: 24px; 
	font-weight: bold; 
}

.NotesData {
	width: 720px;
	overflow: auto; 
	white-space: pre-wrap; 
	word-wrap: break-word;
}

#Wrapper {
	width: 720px;
	min-height:100%;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	height: auto !important;
	height:100%;
	padding-left: 15px;
	padding-right: 15px;

	/* margin-bottom: -70px; */
}

#floatingmenu {
	position: fixed;
	bottom: 10px;
	right: calc(50% - (720px/2) + 7px);
 	z-index: 1;

	display      : inline-block;
	border-radius: 5%;          /* 角丸       */
	font-size    : 22px;        /* 文字サイズ */
	text-align   : center;      /* 文字位置   */
	cursor       : pointer;     /* カーソル   */
	padding      : 12px 12px;   /* 余白       */
	background   : LightCyan;  /* 背景色     */
	color        : #ffffff;     /* 文字色     */
	line-height  : 1em;         /* 1行の高さ  */
	transition   : .3s;         /* なめらか変化 */
	box-shadow   : 6px 6px 3px #666666;  /* 影の設定 */
	border       : 2px solid LightCyan;    /* 枠の指定 */
}

/*
#floatingmenu {
	display: block;
	width: 720px;
	height: 3em;
	position: fixed;
	left: calc(50% - 720px/2);
	bottom: 0px;
	z-index: 9999;
	text-align: center;
	vertical-align: top;
	padding: 0 auto;
	background-color: LightCyan;
	font-size: 24px;
}
*/

#TekiyoSiyo {
	width: 720px;
	text-align: center;
}

#Header {
	min-height: 35px;
}
#FooterSpace {
	height:70px;
}
#Footer p {
	width: 720px;
	height: 70px;
	position: relative;
	text-align: center;
	font-size: 20px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px;
	line-height: normal;
}
.TitleArea {
	font-size: 100%;
	width: 100%;
	clear: both;
	border-style: none;
	margin-top: 1em;
	margin-bottom: 1em;
}
.TitleArea th, .TitleArea td {
	border: 1px solid #999;
	padding: 3px;
	text-align:center;
}
.TitleArea th {
	font-size: 85%;
	font-weight:bold;
	background: #dddddd;
}
.TitleArea td{
	font-size: 125%;
	font-weight:bold;
}
.DataArea {
	width: 100%;
	clear: both;
	border-style: none;
	margin-top: 1em;
	margin-bottom: 1em;
}
.DataArea th, .DataArea td {
	border: 1px solid #999;
	padding: 3px;
}
.DataArea th {
	font-weight:bold;
	background: #dddddd;
	white-space: nowrap;
	text-align: left;
	width: 30%;
}
.DataArea th.Title {
	font-size: inherit;
	font-weight:bold;
	background: #dddddd;
}
.DataArea td{
	font-size: inherit;
}
.DataArea td.PhotoArea {
	text-align: center;
}

.DataArea th.fs_m, .DataArea td.fs_m {
	font-size: 24px;
}

/* 適用作物絞り込み用DDL */
#SakumotuCd {
	/* まず、全てのスタイルを無効にする */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	text-align: center;
	font-size: 2rem;
	width: 90%;
	padding: 10px;
	padding-right: 35px;
	border: 1px solid #999;
	border-radius: 5px;
    background-image: -webkit-linear-gradient(#fed6e3 0%, #ffaaaa 100%);
    background-image: linear-gradient(#fed6e3 0%, #ffaaaa 100%);
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
/*
	background: url(/images/prod/prodNotes/ドロップダウン矢印.png) right 50% no-repeat, -webkit-linear-gradient(top, #fff 0%,#efebe1 100%);
	background: url(/images/prod/prodNotes/ドロップダウン矢印.png) right 50% no-repeat, linear-gradient(to bottom, #fff 0%,#efebe1 100%);
	background-size: 35px, 100%;
*/
}

#SakumotuCd:active{
	/*押したとき*/

	/*沈むように*/
    -ms-transform: translateY(2px) scale(0.5);
    -webkit-transform: translateY(2px) scale(0.5);
    transform: translateY(2px) scale(0.5);

    box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);

	/*グラデーションを明るく*/
    background-image: -webkit-linear-gradient(#fed6e3 0%, #ffbcbc 100%);
    background-image: linear-gradient(#fed6e3 0%, #ffbcbc 100%);
}

/* 適用作物絞り込み用DDL（IE10 / IE11用） */
select::-ms-expand {
	/* appearance が効かないので、代替処理を行う */
	display: none;
}

#SumikaLogo {
	background-image: url(../images/nav/SumikaLogo-trans.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 30px;
	width: 160px;
	position: absolute;
	top: 0px;
	right: 0px;
}
#SCALogo {
	background-image: url(../images/nav/sca_logo-trans.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 40px;
	width: 110px;
	position: absolute;
	left: 0px;
	bottom: 0px;
}

/* 作物絞り込みボタン */
#SakumotuSelect {
	background:url('/images/prod/prodNotes/適用作物絞込.png');

	width: 330px;
	height: 46px;

    -ms-transform: scale(1.0);
    -webkit-transform: scale(1.0);
    transform: scale(1.0);

	border:0px solid;
	cursor:pointer;

	padding-left: 1.25rem;
	font-size: 1.25rem;
	color: white;
}

/* ▼ 2022/07/01　牛川：病害虫絞り込みボタンを追加 */
/* 作物絞り込みボタン */
#TaisyogaiSelect {
	background:url('/images/prod/prodNotes/適用病害虫絞込.png');

	width: 330px;
	height: 46px;

    -ms-transform: scale(1.0);
    -webkit-transform: scale(1.0);
    transform: scale(1.0);

	border:0px solid;
	cursor:pointer;

	padding-left: 1.25rem;
	font-size: 1.25rem;
	color: white;
}
/* ▲ 2022/07/01　牛川：病害虫絞り込みボタンを追加 */


/* 以下、作物絞り込みモーダルウインドウ用 */
#modal-content {
	width: 50% ;
	margin: 0 ;
	padding: 10px 20px ;
	border: 2px solid #aaa ;
	background: #fff ;
	position: fixed ;
	display: none ;
	z-index: 2 ;
	max-height: 90%;
	overflow: scroll;
}


/* ▼ 2022/07/01　牛川：病害虫絞り込みモーダルウインドウを追加 */
#modal-content2 {
	width: 50% ;
	margin: 0 ;
	padding: 10px 20px ;
	border: 2px solid #aaa ;
	background: #fff ;
	position: fixed ;
	display: none ;
	z-index: 2 ;
	max-height: 90%;
	overflow: scroll;
}
/* ▲ 2022/07/01　牛川：病害虫絞り込みボタンを追加 */


#modal-overlay {
	z-index: 1 ;
	display: none ;
	position: fixed ;
	top: 0 ;
	left: 0 ;
	width: 100% ;
	height: 120% ;
	background-color: rgba( 0,0,0, 0.75 ) ;
}

.button-link {
	color: #00f ;
	text-decoration: underline ;
	font-size: 16px:
}
 
.button-link:hover {
	cursor: pointer ;
	color: #f00 ;
	font-size: 16px:
}

/* ------------------------------ */
.fukidashi_Y1 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 185px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_Y1::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_Y1:hover + .fukidashi_Y1 {
  display: block;
}
.MARK_Y1:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_S1 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_S2 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_S3 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_S4 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_S5 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_S6 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_S7 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_S8 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_S9 {
  display: none;
}
.MARK_Y1:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_Y2 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 226px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_Y2::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_Y2:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_Y2 {
  display: block;
}
.MARK_Y2:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_S1 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_S2 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_S3 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_S4 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_S5 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_S6 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_S7 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_S8 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_S9 {
  display: none;
}
.MARK_Y2:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_Y3 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 267px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_Y3::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_Y3:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_Y3 {
  display: block;
}
.MARK_Y3:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_S1 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_S2 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_S3 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_S4 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_S5 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_S6 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_S7 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_S8 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_S9 {
  display: none;
}
.MARK_Y3:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_Y4 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 308px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_Y4::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_Y4:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_Y4 {
  display: block;
}
.MARK_Y4:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_S1 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_S2 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_S3 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_S4 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_S5 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_S6 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_S7 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_S8 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_S9 {
  display: none;
}
.MARK_Y4:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_Y5 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 349px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_Y5::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_Y5:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_Y5 {
  display: block;
}
.MARK_Y5:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_S1 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_S2 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_S3 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_S4 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_S5 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_S6 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_S7 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_S8 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_S9 {
  display: none;
}
.MARK_Y5:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_Y6 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 390px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_Y6::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_Y6:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_Y6 {
  display: block;
}
.MARK_Y6:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_S1 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_S2 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_S3 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_S4 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_S5 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_S6 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_S7 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_S8 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_S9 {
  display: none;
}
.MARK_Y6:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_Y7 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 431px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_Y7::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_Y7:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_Y7 {
  display: block;
}
.MARK_Y7:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_S1 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_S2 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_S3 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_S4 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_S5 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_S6 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_S7 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_S8 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_S9 {
  display: none;
}
.MARK_Y7:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_Y8 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 472px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_Y8::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_Y8:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_Y8 {
  display: block;
}
.MARK_Y8:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_S1 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_S2 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_S3 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_S4 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_S5 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_S6 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_S7 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_S8 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_S9 {
  display: none;
}
.MARK_Y8:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_Y9 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 513px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_Y9::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_Y9:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_Y9 {
  display: block;
}
.MARK_Y9:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_S1 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_S2 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_S3 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_S4 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_S5 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_S6 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_S7 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_S8 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_S9 {
  display: none;
}
.MARK_Y9:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_Y10 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 554px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_Y10::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_Y10:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_Y10 {
  display: block;
}
.MARK_Y10:hover + .fukidashi_S1 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_S2 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_S3 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_S4 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_S5 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_S6 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_S7 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_S8 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_S9 {
  display: none;
}
.MARK_Y10:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_S1 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 170px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_S1::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_S1:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_S1:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_S1:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_S1:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_S1:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_S1:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_S1:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_S1:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_S1:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_S1:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_S1:hover + .fukidashi_S1 {
  display: block;
}
.MARK_S1:hover + .fukidashi_S2 {
  display: none;
}
.MARK_S1:hover + .fukidashi_S3 {
  display: none;
}
.MARK_S1:hover + .fukidashi_S4 {
  display: none;
}
.MARK_S1:hover + .fukidashi_S5 {
  display: none;
}
.MARK_S1:hover + .fukidashi_S6 {
  display: none;
}
.MARK_S1:hover + .fukidashi_S7 {
  display: none;
}
.MARK_S1:hover + .fukidashi_S8 {
  display: none;
}
.MARK_S1:hover + .fukidashi_S9 {
  display: none;
}
.MARK_S1:hover + .fukidashi_S10 {
  display: none;
}


/* ------------------------------ */
.fukidashi_S2 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 211px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_S2::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_S2:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_S2:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_S2:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_S2:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_S2:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_S2:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_S2:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_S2:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_S2:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_S2:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_S2:hover + .fukidashi_S1 {
  display: none;
}
.MARK_S2:hover + .fukidashi_S2 {
  display: block;
}
.MARK_S2:hover + .fukidashi_S3 {
  display: none;
}
.MARK_S2:hover + .fukidashi_S4 {
  display: none;
}
.MARK_S2:hover + .fukidashi_S5 {
  display: none;
}
.MARK_S2:hover + .fukidashi_S6 {
  display: none;
}
.MARK_S2:hover + .fukidashi_S7 {
  display: none;
}
.MARK_S2:hover + .fukidashi_S8 {
  display: none;
}
.MARK_S2:hover + .fukidashi_S9 {
  display: none;
}
.MARK_S2:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_S3 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 252px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_S3::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_S3:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_S3:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_S3:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_S3:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_S3:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_S3:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_S3:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_S3:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_S3:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_S3:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_S3:hover + .fukidashi_S1 {
  display: none;
}
.MARK_S3:hover + .fukidashi_S2 {
  display: none;
}
.MARK_S3:hover + .fukidashi_S3 {
  display: block;
}
.MARK_S3:hover + .fukidashi_S4 {
  display: none;
}
.MARK_S3:hover + .fukidashi_S5 {
  display: none;
}
.MARK_S3:hover + .fukidashi_S6 {
  display: none;
}
.MARK_S3:hover + .fukidashi_S7 {
  display: none;
}
.MARK_S3:hover + .fukidashi_S8 {
  display: none;
}
.MARK_S3:hover + .fukidashi_S9 {
  display: none;
}
.MARK_S3:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_S4 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 293px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_S4::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_S4:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_S4:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_S4:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_S4:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_S4:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_S4:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_S4:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_S4:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_S4:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_S4:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_S4:hover + .fukidashi_S1 {
  display: none;
}
.MARK_S4:hover + .fukidashi_S2 {
  display: none;
}
.MARK_S4:hover + .fukidashi_S3 {
  display: none;
}
.MARK_S4:hover + .fukidashi_S4 {
  display: block;
}
.MARK_S4:hover + .fukidashi_S5 {
  display: none;
}
.MARK_S4:hover + .fukidashi_S6 {
  display: none;
}
.MARK_S4:hover + .fukidashi_S7 {
  display: none;
}
.MARK_S4:hover + .fukidashi_S8 {
  display: none;
}
.MARK_S4:hover + .fukidashi_S9 {
  display: none;
}
.MARK_S4:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_S5 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 334px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_S5::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_S5:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_S5:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_S5:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_S5:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_S5:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_S5:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_S5:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_S5:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_S5:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_S5:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_S5:hover + .fukidashi_S1 {
  display: none;
}
.MARK_S5:hover + .fukidashi_S2 {
  display: none;
}
.MARK_S5:hover + .fukidashi_S3 {
  display: none;
}
.MARK_S5:hover + .fukidashi_S4 {
  display: none;
}
.MARK_S5:hover + .fukidashi_S5 {
  display: block;
}
.MARK_S5:hover + .fukidashi_S6 {
  display: none;
}
.MARK_S5:hover + .fukidashi_S7 {
  display: none;
}
.MARK_S5:hover + .fukidashi_S8 {
  display: none;
}
.MARK_S5:hover + .fukidashi_S9 {
  display: none;
}
.MARK_S5:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_S6 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 375px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_S6::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_S6:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_S6:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_S6:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_S6:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_S6:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_S6:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_S6:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_S6:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_S6:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_S6:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_S6:hover + .fukidashi_S1 {
  display: none;
}
.MARK_S6:hover + .fukidashi_S2 {
  display: none;
}
.MARK_S6:hover + .fukidashi_S3 {
  display: none;
}
.MARK_S6:hover + .fukidashi_S4 {
  display: none;
}
.MARK_S6:hover + .fukidashi_S5 {
  display: none;
}
.MARK_S6:hover + .fukidashi_S6 {
  display: block;
}
.MARK_S6:hover + .fukidashi_S7 {
  display: none;
}
.MARK_S6:hover + .fukidashi_S8 {
  display: none;
}
.MARK_S6:hover + .fukidashi_S9 {
  display: none;
}
.MARK_S6:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_S7 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 416px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_S7::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_S7:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_S7:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_S7:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_S7:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_S7:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_S7:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_S7:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_S7:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_S7:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_S7:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_S7:hover + .fukidashi_S1 {
  display: none;
}
.MARK_S7:hover + .fukidashi_S2 {
  display: none;
}
.MARK_S7:hover + .fukidashi_S3 {
  display: none;
}
.MARK_S7:hover + .fukidashi_S4 {
  display: none;
}
.MARK_S7:hover + .fukidashi_S5 {
  display: none;
}
.MARK_S7:hover + .fukidashi_S6 {
  display: none;
}
.MARK_S7:hover + .fukidashi_S7 {
  display: block;
}
.MARK_S7:hover + .fukidashi_S8 {
  display: none;
}
.MARK_S7:hover + .fukidashi_S9 {
  display: none;
}
.MARK_S7:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_S8 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 457px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_S8::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_S8:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_S8:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_S8:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_S8:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_S8:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_S8:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_S8:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_S8:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_S8:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_S8:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_S8:hover + .fukidashi_S1 {
  display: none;
}
.MARK_S8:hover + .fukidashi_S2 {
  display: none;
}
.MARK_S8:hover + .fukidashi_S3 {
  display: none;
}
.MARK_S8:hover + .fukidashi_S4 {
  display: none;
}
.MARK_S8:hover + .fukidashi_S5 {
  display: none;
}
.MARK_S8:hover + .fukidashi_S6 {
  display: none;
}
.MARK_S8:hover + .fukidashi_S7 {
  display: none;
}
.MARK_S8:hover + .fukidashi_S8 {
  display: block;
}
.MARK_S8:hover + .fukidashi_S9 {
  display: none;
}
.MARK_S8:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_S9 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 498px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_S9::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_S9:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_S9:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_S9:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_S9:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_S9:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_S9:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_S9:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_S9:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_S9:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_S9:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_S9:hover + .fukidashi_S1 {
  display: none;
}
.MARK_S9:hover + .fukidashi_S2 {
  display: none;
}
.MARK_S9:hover + .fukidashi_S3 {
  display: none;
}
.MARK_S9:hover + .fukidashi_S4 {
  display: none;
}
.MARK_S9:hover + .fukidashi_S5 {
  display: none;
}
.MARK_S9:hover + .fukidashi_S6 {
  display: none;
}
.MARK_S9:hover + .fukidashi_S7 {
  display: none;
}
.MARK_S9:hover + .fukidashi_S8 {
  display: none;
}
.MARK_S9:hover + .fukidashi_S9 {
  display: block;
}
.MARK_S9:hover + .fukidashi_S10 {
  display: none;
}

/* ------------------------------ */
.fukidashi_S10 {
	display: none;
	width: 200px;
	height: 55px;
	position: absolute;
	top: -95px;
	bottom: 0px;
	left: 539px;
	padding: 16px;
	border-radius: 5px;
	background: #33cc99;
	color: #fff;
	font-weight: bold;
}
.fukidashi_S10::after {
	position: absolute;
	width: 0;
	height: 0;
	left: 0;
	bottom: -19px;
	margin-left: 10px;
	border: solid transparent;
	border-color: rgba(51, 204, 153, 0);
	border-top-color: #33cc99;
	border-width: 10px;
	pointer-events: none;
	content: " ";
}
.MARK_S10:hover + .fukidashi_Y1 {
  display: none;
}
.MARK_S10:hover + .fukidashi_Y2 {
  display: none;
}
.MARK_S10:hover + .fukidashi_Y3 {
  display: none;
}
.MARK_S10:hover + .fukidashi_Y4 {
  display: none;
}
.MARK_S10:hover + .fukidashi_Y5 {
  display: none;
}
.MARK_S10:hover + .fukidashi_Y6 {
  display: none;
}
.MARK_S10:hover + .fukidashi_Y7 {
  display: none;
}
.MARK_S10:hover + .fukidashi_Y8 {
  display: none;
}
.MARK_S10:hover + .fukidashi_Y9 {
  display: none;
}
.MARK_S10:hover + .fukidashi_Y10 {
  display: none;
}
.MARK_S10:hover + .fukidashi_S1 {
  display: none;
}
.MARK_S10:hover + .fukidashi_S2 {
  display: none;
}
.MARK_S10:hover + .fukidashi_S3 {
  display: none;
}
.MARK_S10:hover + .fukidashi_S4 {
  display: none;
}
.MARK_S10:hover + .fukidashi_S5 {
  display: none;
}
.MARK_S10:hover + .fukidashi_S6 {
  display: none;
}
.MARK_S10:hover + .fukidashi_S7 {
  display: none;
}
.MARK_S10:hover + .fukidashi_S8 {
  display: none;
}
.MARK_S10:hover + .fukidashi_S9 {
  display: none;
}
.MARK_S10:hover + .fukidashi_S10 {
  display: block;
}
