
/** ボタン一覧 */
/* 通常ボタン */
.normal-btn {
    position: relative;
    display: inline-block;
    background: #99cccc;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    height: 22px;
    line-height: 22px;
}
.normal-btn:hover {
    bottom: 1px;
    left: 2px;
    background: #0099cc;
    color: black;
    cursor: hand;
}
.action-btn {
    position: relative;
    display: inline-block;
    text-align: center;
    background: #99CCCC;
    font-weight: bold;
    border-radius: 2px;
    border-width: 0px;
}
.action-btn:hover {
    bottom: 1px;
    left: 2px;
    background: #0099cc;
    color: black;
    cursor: hand;
}

/** 遷移ボタン */
.tranBtn {
    position: relative;
    display: inline-block;
    text-align: center;
    background: #02017f;
    border-radius: 30px;
    color: #FFF;
    font-weight: bold;
}
.tranBtn:hover {
    bottom: 1px;
    left: 2px;
    cursor: hand;
}

/** 切替ボタン */
.switchArea {
    line-height: 24px;
    letter-spacing: 0;
    font-size: 14px;
    position: relative;
    width: 160px;
    background: #e3e5e8;
}

.switchArea input[type="checkbox"] {
  display : none;
}

.switchArea label {
  display: block;
  box-sizing: border-box;
  height: 30px;
  border-radius: 5px;
}

.switchArea input[type="checkbox"]:checked + label {
  border-color: #7fa4d4; /* 選択タブの枠線 */
}

.switchArea label span:after {
  content: "モバイル";
  padding: 0 0 0 80px;
  line-height: 30px;
}

.switchArea input[type="checkbox"]:checked + label span:after{
  content: "PC";
  padding: 0 80px 0 0;
  line-height: 30px;
}

/* ボタン部分の標準設定  */
.switchArea #swImg {
  position: absolute;
  width: 80px;
  height: 30px;
  background: #7fa4d4;
  top: 0px;
  left: 0px;
  border-radius: 3px;
  transition: .2s;
}

/* ボタン部分の標準設定 */
.switchArea input[type="checkbox"]:checked ~ #swImg {
  transform: translateX(80px);
  background: #7fa4d4;
}

.switchArea input[type="checkbox"] ~ #swImg p {
    margin: 0;
}

.switchArea input[type="checkbox"] ~ #swImg p:after {
    content: "PC";
    color: #FFF;
    line-height: 30px;
    font-size: 14px;
    font-weight: bold;
}

.switchArea input[type="checkbox"]:checked ~ #swImg p:after {
    content: "モバイル";
    color: #FFF;
    line-height: 30px;
    font-size: 14px;
    font-weight: bold;
}

/***** 矢印 *****/
.right-arrow-clippath {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 68px;
  background-color: #1E88E5;
  border-color: #1E88E5;
  border-style: none;
  clip-path: polygon(0 33%, 50% 33%, 50% 15%, 100% 50%, 50% 85%, 50% 67%, 0 67%);
}

.right-arrow-clippath:hover {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 68px;
  background-color: #0099cc;
  border-style: none;
  bottom: 1px;
  left: 2px;
  clip-path: polygon(0 33%, 50% 33%, 50% 15%, 100% 50%, 50% 85%, 50% 67%, 0 67%);
}

.left-arrow-clippath {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 68px;
  background-color: #1E88E5;
  border-style: none;
  clip-path: polygon(100% 67%, 50% 67%, 50% 85%, 0% 50%, 50% 15%, 50% 33%, 100% 33%);
}

.left-arrow-clippath:hover {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 68px;
  background-color: #0099cc;
  border-style: none;
  bottom: 1px;
  left: 2px;
  clip-path: polygon(100% 67%, 50% 67%, 50% 85%, 0% 50%, 50% 15%, 50% 33%, 100% 33%);
}

.under-arrow-clippath {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 68px;
  background-color: #1E88E5;
  border-style: none;
  clip-path: polygon(67% 0%, 67% 50%, 85% 50%, 50% 100%, 15% 50%, 33% 50%, 33% 0%);
}

.under-arrow-clippath:hover {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 68px;
  background-color: #0099cc;
  border-style: none;
  clip-path: polygon(67% 0%, 67% 50%, 85% 50%, 50% 100%, 15% 50%, 33% 50%, 33% 0%);
}

/* メニューボタン */
/** オレンジボタン */
.blue-menu-btn {
    position: relative;
    display: inline-block;
    background: linear-gradient(to bottom, #B4C7E7, white);
    border:1px solid;
    text-align: center;
    line-height: 16px;
}
.blue-menu-btn:hover {
	bottom: 1px;
	left: 2px;
    background: linear-gradient(to bottom, #B4C7E7, white);
    color: black;
    cursor: hand;
}

/** ブルーボタン */
.orange-menu-btn {
    position: relative;
    display: inline-block;
    background: linear-gradient(to bottom, #F8CBAD, white);
    border:1px solid;
    text-align: center;
    line-height: 16px;
}
.orange-menu-btn:hover {
    bottom: 1px;
    left: 2px;
    background: linear-gradient(to bottom, #F8CBAD, white);
    color: black;
    cursor: hand;
}

/* プルダウンメニュー */
#pullMenu {
    list-style-type: none;
    width: 135px;
    height: 51px;
    margin: 0;
    padding: 0;
    background: #99CCCC;
}
#pullMenu li {
    position: relative;
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    text-align: center;
}
#pullMenu #pullMenu-title {
    display: block;
    margin: 0;
    color: #fff;
    font-weight: bold;
    line-height: 51px;
    text-decoration: none;
}
#pullMenu li ul li a {
    display: block;
    margin: 0;
    color: #fff;
    padding: 13px 0;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
}
#pullMenu li ul {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
#pullMenu li ul li {
  overflow: hidden;
  width: 200%;
  height: 0;
  color: #fff;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}
#pullMenu li ul li a {
  padding: 15px 15px;
  background: #0099CC;
  text-align: left;
  font-size: 12px;
  font-weight: normal;
}
#pullMenu li:hover > a {
  background: #0099CC;
}
#pullMenu li ul li:hover > a {
  background: #0099FF;
}
#pullMenu li:hover ul li {
  overflow: visible;
  height: 38px;
  border-bottom: 1px solid #fff;
}
#pullMenu li:hover ul li:first-child{
  border-top: 0;
}
#pullMenu li:hover ul li:last-child{
  border-bottom: 0;
}

/** タブ切替部品 */
.panel_area {
    border: 3px solid #E6E6E6;
}
.tab_wrap input[type="radio"]{
    display:none;
}
.tab_area{
    font-size: 0;
    margin: 0 5px;
}
.tab_area label {
    width: 150px;
    margin: 0 0px;
    display: inline-block;
    color: #999;
    background:#ddd;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    transition:ease 0.2s opacity;
    line-height: 30px;
}

/* タブ領域 */
.panel_area{
    background:#fff;
}

/* タブのデータ領域 */
.tab_panel{
    width: 100%;
    display: none;
    padding-left: 5px;
    padding-bottom: 10px;
}
.tab_panel p{font-size:14px; letter-spacing:1px; text-align:center;}

/* タブの設定 */
#tab1:checked ~ .tab_area .tab1_label{background:#96CDDB; color:#000;}
#tab1:checked ~ .panel_area #panel1{display:block;}
#tab2:checked ~ .tab_area .tab2_label{background:#96CDDB; color:#000;}
#tab2:checked ~ .panel_area #panel2{display:block;}
#tab3:checked ~ .tab_area .tab3_label{background:#96CDDB; color:#000;}
#tab3:checked ~ .panel_area #panel3{display:block;}


.disp-table-content {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 280px;
    width: 711px;
    writing-mode: horizontal-tb;
    font-size:15px;
}

.disp-table-content > table {
    border: 0px solid #999999;
    border-collapse: collapse;
}

.disp-haisouinCd {
    width: 150px;
    font-weight: bold;
}

.disp-kanjNm {
    width: 300px;
    font-weight: bold;
}

.disp-rkanjNm {
    width: 150px;
    font-weight: bold;
}

.back-btn {
    width: 156px;
    height: 24px;
    font-weight: bold;
    margin-left: 156px;
    float: left;
}

.mode-btn {
    width: 156px;
    height: 24px;
    font-weight: bold;
    margin-right: 156px;
    float: right;
}

/** 枠線 */
.aibox2 {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    color: red;
    background: #FFF;
    border: solid 3px #507ea4;
    border-radius: 10px;
    width: 430px;
}

.box2 {
    font-weight: bold;
    border: solid 1.5px gray;
    border-radius: 5px;
}

.box2 {
    padding: 0px;
}

/* テーブル 線 */
.tbl-hd-l{
    border: solid;
    border-width:  1px 1px 1px 1px;
}

.tbl-hd-t{
    border: solid;
    border-width:  0px 1px 1px 0px;
}

.tbl-hd-r{
    border: solid;
    border-width:  1px 1px 1px 0px;
}


.tbl-dt-l{
    border: solid;
    border-width:  0px 1px 1px 1px;
}

.tbl-dt-r{
    border: solid;
    border-width:  0px 1px 1px 0px;
}

.tbl-dt-diff,
.tbl-dt-diff *{
    background-color: yellow;
}

/* ツールチップ */
#tooltip {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

#tooltip-content {
    opacity: 0;
    position: absolute;
    top: -90px;
    left: 10px;
    background: white;
    z-index: -1;
}

#tooltip-content th,
#tooltip-content td {
    padding: 10px;
}

#tooltip-content th {
    background-color: faebd7;
}

#tooltip:hover #tooltip-content{
    opacity: 1;
    z-index: 200000;
}
