@charset "utf-8";
/*ランキング*/
.ranking{
    list-style-type:none;
    counter-reset: ranking;
}
.ranking-item{
    margin:1em 0 0.5em;
    border-bottom:1px dashed #562222;
}
.ranking .ranking-item::before{
    content: "手順 " counter(ranking) ": ";
    counter-increment: ranking;
    margin:0.5em 0;
    padding:0.5em 0;
}
.ranking li:last-child{
    border-bottom:none;
}
/*toggleボタン*/
.toggle_class_btn{
    position:absolute;
    top:2px;
    right:2px;
    width:40px;
    height:40px;
    transition:0.3s;
}
.toggle_class_btn:hover{
    background:#B2291C;
}
.toggle_class_btn span{
    background:#fff;
    display:block;
    width:36px;
    height:5px;
    transition:0.3s;
}
.toggle_class_btn span:nth-child(1){
    position:relative;
    top:6px;
    left:2px;
}
.toggle_class_btn span:nth-child(2){
    position:relative;
    top:12px;
    left:2px;
}
.toggle_class_btn span:nth-child(3){
    position:relative;
    top:18px;
    left:2px;
}
 .open.toggle_class_btn span:nth-child(1){
    display:none;
}

 .open.toggle_class_btn span:nth-child(2){
    position:relative;
    top:18px;
    transform: rotate(45deg);
}
 .open.toggle_class_btn span:nth-child(3){
    position:relative;
    top:13px;
    transform: rotate(-45deg);
}
/*コンテンツ*/
.contents dd{
    border:none;
    padding:0.5em;
}
/*jquery-list*/
.jquery-list {
  background: #fff;
}
.jquery-list ul {
  width:100%;
  display: flex;
  flex-wrap: wrap;
}
.jquery-list li {
  width: 48%;
  margin: 1%;
  background: #E5DECA;
  border-radius: 10px;
  box-shadow: 2px 2px 4px#ccc;
}
.jquery-list li a {
  display: block;
  min-height: 200px;
  color: #000;
  border-radius: 10px;
}
.jquery-list dl {
  display: flex;
  flex-direction: column-reverse;
}
.jquery-list dt {
  padding: 0.5em;
}
.jquery-display{
    width:96%;
    height:auto;
    min-height:300px;
    margin:0 auto;
    padding:0.5em 0;
    background:#fff;
}
#test_display{
    width:96%;
    height:auto;
    min-height:100px;
    margin:0 auto;
    padding:0.5em 0;
    background:#fff;
}
#test_display img{
    display:block;
    width:98%;
    height:auto;
    aspect-ratio:16/9;
    margin:0 1%;
}
/*トグルボタン*/
#toggle_menu {
  position: relative;
  padding: 0 0 1em 0;
}
#toggle_menu02 {
  position: relative;
  padding: 0 0 1em 0;
}
.toggle_btn {
  width: 40px;
  height: auto;
  background-color: transparent;
  position: absolute;
  top: -6px;
  right: 0;
}
.code_ex {
  display: none;
}
.code_ex li {
  margin: 1em 0;
}
/*アラートボックス*/
.message {
  width: 300px;
  height: 180px;
  background: #fff;
  border-radius: 10px;
  margin: 1em auto 10px;
  padding: 10px;
    position:relative;
}
#click {
  display: block;
  width: 100px;
  height: 50px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  color: #000;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
}
#click:hover {
  background: #ccc;
}
#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
}
#alertBox {
  width: 300px;
  height: 200px;
  margin: 0;
  padding-top: 25px;
  text-align: center;
  background: #fff;
  border-radius: 3px;
  box-shadow: 2px 2px rgba(0, 0, 0, .3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.message {
  width: 250px;
  height: 180px;
  background: #fff;
  border-radius:20px;
  position: relative;
}
.message_txt {
  display: block;
  padding: 1em;
  background: #fff;
}
.alert_message{
    position:relative;
}
#ok{
    width:25px;
    height:25px;
    background:#fff;
    color:#000;
    border:1px solid #000;
    border-radius:50%;
    transform:translate(50%, -50%);
    position:absolute;
    top:-8px;
    right:0;
}
#ok:hover{
    background:#A5D4AD;
}
#ok span{
  display: inline-block;
  width: 10px;
  height: 2px;
  position: absolute;
  top:0px;
  left: 5px;
  border-radius: 2px;
  background: #000;
  transition: all .4s;
}
 #ok span:nth-of-type(1) {
    top: 11px;
    left: 2px;
    width:20px;
    transform: translateY(0) rotate(-45deg);
  }
#ok span:nth-of-type(2) {
     opacity: 0; /*非表示*/
  }
 #ok span:nth-of-type(3) {
    top: 11px;
    left: 2px;
    width:20px;
    transform: translateY(0) rotate(45deg);
  }
/*ビューアー*/
.big_picture{
    display:block;
    width:90%;
    height:auto;
    aspect-ratio:16/9;
    margin:1em auto;
}
.thumbnail_list{
    display:flex;
    flex-wrap:wrap;
    width:98%;
    min-height:100px;
    margin:0 auto;
    padding:0;
    border:1px solid #000;
}
.thumbnail_list li{
    width:24%;
    margin:0 1% 0 0;
}
.thumbnail{
    width:100%;
    max-width:160px;
    margin:0.4em 0.3em;
}
.thumbnail a{
    display:block;
}
/*タブ*/
.tab_list{
    display:flex;
    flex-direction:row;
    margin:0 0.5em;
}
.tab_list li{
    width:6em;
    height:2em;
    font-size:1.15rem;
    text-align:center;
    background:#E5DECA;
    border-right:1px solid #000;
}
.tab_list li a{
    display:block;
    margin:0;
    padding:0.2em 0 0 0;
    color:#562222;
}
.tab_list li a:hover{
    background:#FFF7E8;
    box-shadow:2px -2px 4px #562222;
}
.tab_list li .current{
    background:#FFF7E8;
    color:#DA313B;
    margin:0;
    padding:0.2em 0 0 0;
}
.tab_list li .current:hover{
    text-shadow:1px 1px 2px #470000;
}
@media only screen and (min-width:600px), print {
    .tab_list li{
        width:10%;
        min-width:6em;
        height:2em;
        font-size:2rem;
        text-align:center;
        background:#E5DECA;
        border-right:1px solid #000;
    }
}
#contents{
    background:#FFF7E8;
    margin:0 0.5em;
    padding:0.5em;
}
#contents div{
    background:#fff;
    margin:0 0.1em;
    padding:0.5em;
}
.tab_title{
    backgroud:#fff;
    font-size:4em;
    color:#470000;
    margin:0;
    padding:0;
}
/*ドロップダウンメニュー*/
#drop_parent_list{
    display:flex;
    flex-direction:row;
    position:relative;
}
#drop_parent_list .parent_list_item{
    width:25%;
    max-height:4em;
    background:#4A7664;
    border-right:1px solid #ccc;
}
#drop_parent_list .parent_list_item:last-child{
    border-right:none;
}
#drop_parent_list .parent_list_item a{
    display:block;
    padding:0 0.5em;
    text-align:left;
    color:#E5DECA;
    transform:translateY(0%);
}
#drop_parent_list .parent_list_item a:hover{
    background:#4A7664;
}
#drop_parent_list .drop_child_list{
    display:none;
    background:rgba(0, 0, 0, .6);
}
.drop_child_list .child_list_item{
    width:100%;
    min-width:500px;
    height:auto;
    margin:0;
    padding:0.5em;
    background:rgba(0, 0, 0, 0.6);
    text-align:left;
    border-bottom:1px solid #E5DECA;
    z-index:9999;
}
.drop_child_list .child_list_item a{
    display:block;
    margin:0;
    padding:0;
    color:#E5DECA;
    text-align:left;
}
.drop_child_list .child_list_item a:hover{
     background:rgba(0, 0, 0, 0.4);
}
.drop_child_list .child_list_item:first-child{
    margin:0;
}
.drop_child_list .child_list_item:last-child{
    border-bottom:none;
}
/*フローティングメニュー*/
#floating_menu_display{
    position:absolute;
    top:100px;
    left:0;
}
#floating_menu_display ul{
    width:250px;
}
#floating_menu_display li{
    width:250px;
    height:auto;
    padding:0.5em;
    background:rgba(255,255,255,.4);
    color:#E5DECA;
    border-bottom:1px solid #E5DECA;
}
#floating_menu_display li a{
    display:block;
    color:#E5DECA;
    padding:0.5em;
}
@media only screen and (min-width:1280px), print {
    #floating_menu_display ul{
        width:150px;
        max-height:730px;
        overflow: auto;
    }
    #floating_menu_display li{
        width:150px;
        height:auto;
        background:rgba(0, 0, 0, .4);
        border-bottom:1px solid #E5DECA;
    }
    #floating_menu_display li:hover{
                background:rgba(0, 0, 0, 1);
    }
}/*@media only screen and (min-width:1280px)*/
@media only screen and (min-width:1800px), print {
    #floating_menu_display ul{
        width:270px;
        max-height:800px;
        overflow: auto;
    }
    #floating_menu_display li{
        width:270px;
        height:auto;
        background:rgba(0, 0, 0, .4);
        border-bottom:1px solid #E5DECA;
    }
    #floating_menu_display li:hover{
                background:rgba(0, 0, 0, 1);
    }
}/*@media only screen and (min-width:1280px)*/
/*モーダルウィンドウ*/
#test_display ul{
    display:flex;
    flex-direction:row;
}
#test_display li{
    width:25%;
    position:relative;
}
@media only screen and (max-width:320px), print {
    #test_display li{
        width:50%;
        height:auto;
        position:relative;
    }
    #floating_menu_display ul{
        display:none;
    }
}
/*画像のキャプション表示*/
#test_display div{
    display:none;
    width:100%;
    height:100%;
    padding:20px;
    background:rgba(17, 179, 179, .4);
    color:#fff;
    position:absolute;
    top:0;
    left:0;
    box-sizing:border-box;
}
#test_display p{
    position:relative;
    top:10px;
}
/*ツールチップ*/
.toolchip_display{
    width:94%;
    max-width:602px;
    min-height:290px;
    max-height:296px;
    margin:1em auto 0;
    background:url("../../images/icon/line_2.png")repeat;
    background-color:#7E9374;
}
/*ツールチップ*/
.dot_list{
    display:flex;
    flex-direction:row;
    margin:0 auto;
    width:600px;
}
.dot_list li{
    margin:60px 10px;
    width:180px;
    background:#000;
    position:relative;
}
.dot_list li:hover{
    box-shadow:2px 2px 10px #000;
}
.dot_list img{
    width:100%;
    height:auto;
}
#tooltip{
    padding:0.5em;
    position:absolute;
    border-radius:5px;
    background:#fff;
    color:#330000;
}
#tooltip::after{
    content: '';
    margin-left:-8px;
    border:8px solid transparent;
    border-top:18px solid #fff;
    border-bottom:0;
    position:absolute;
    left:50%;
}
/*高さを揃える*/
.all_height_display{
    display:flex;
    flex-direction:row;
    width:768px;
    height:auto;
    margin:0 auto;
    padding:0.5em;
    background:#fff;
}
.all_height{
    display:block;
    width:17%;
    background:#E5DECA;
    margin:0 1%;
    padding:1%;
    overflow:hidden;
}
.all_height_image{
    width:60px;
    height:auto;
    margin:0 auto;
}
.all_height p{
	padding:0.5em;
    background:#fff;
}
/*1024px以下のディスプレイ用*/
@media only screen and (max-width:1023px), print {
    #floating_menu_display{
       display:none; 
    }
}
/*文字サイズを変更*/
.font-size_display{
    width:96%;
    height:auto;
    min-height:100px;
    background:#fff;
    margin:0 auto;
    position:relative;
}
.font-size_display ul{
    display:flex;
    flex-direction:row;
    width:300px;
    margin:0;
    padding:1em;
    background:#C8714B;
    border-radius:10px;
    transform:translate(-50%, -50%);
    position:absolute;
    top:50%;
    left:50%;
}
.font-size_display ul li{
    width:30%;
    min-width:50px;
    background:#FBD9BF;
    border-radius:10px;
    margin:0 1em;
    text-align:center;
}
.font-size_display ul li:hover{
    background:#470000;
    box-shadow:1px 1px 2px #000;
}
.font-size_display ul li a{
    display:block;
    color:#470000;
}
.font-size_display ul li a:hover{
    color:#E5DECA;
}
.fontSmall{
    font-size:1.0rem;
}
.fontMedium{
    font-size:1.6rem;
}
.fontLarge{
    font-size:2.0rem;
}
/*パララックス効果*/
.parallax_display{
    width:96%;
    max-width:600px;
    height:auto;
    aspect-ratio:16/9;
    background:#fff;
    margin:0 auto;
    position:relative;
}
#parallax_base{
    width:100%;
    min-width:600px;
    height:400px;
    background:url("../../images/news/parallax/bg_base.png")0 100% repeat-X;
    margin:0 auto;
    position:absolute;
    bottom:-100px;
    transition:background .3s;
}
#bg1{
    width:100%;
    min-width:600px;
    height:400px;
    background:url("../../images/news/parallax/bg1.png") 0 100% repeat-X;
    position:absolute;
    bottom:0;
    transition:background .3s;
}
#bg2{
    width:100%;
    min-width:600px;
    height:400px;
    background:url("../../images/news/parallax/bg2.png") 0 100% repeat-X;
    overflow:hidden;
    position:absolute;
    bottom:0;
    transition:background .3s;
}
#parallax_slide{
    display:block;
    width:100%;
    min-width:600px;
    height:auto;
    aspect-ratio:16/9;
    margin:0 auto;
    baclground:#fff;
    position:relative;
    overflow:hidden;
}
#sections{
    position:absolute;
    width:2400px;
    height:100%;
}
#parallax_slide section{
    float:left;
    width:600px;
    min-height:337.5px;
    padding:80px 100px;
    background:transparent;
}
#parallax_slide section dl{
    background:rgba(0, 0, 0, .4 );
    color:#fff;
    padding:1em;
}
#sections::after{
    display:block;
    clear:both;
}
.parallax_indicator{
    display:flex;
    flex-direction:row;
    width:100px;
    margin:0 auto;
}
.parallax_indicator li{
    margin:0 1em 0 0;
}
.parallax_indicator li:last-child{
    margin:0;
}
.parallax_indicator a{
    text-indent:-9999px;
    display:block;
    width:16px;
    height:16px;
    border-radius:8px;
    background:#664949;
}
.parallax_indicator a.current{
	background:#988080;
}
/*テーブルセルのハイライト*/
.table_cell_display th{
    color:#E5DECA;
}
.target td, td.target{
    background:rgba(0,0,0,.4);
    color:#fff;
}
/*アコーディオンパネル*/
.accordion_display{
    color:#E5DECA;
}
.accordion_display dl{
    display:flex;
    flex-direction:row;
}
.accordion_display dt{
}
.accordion_display dt a{
    display:block;
    color:#E5DECA;
    padding:0.5em;
    transition:0.3s;
}
.accordion_display dt a:hover{
    background:#A5D4AD;
}
.accordion_display dd{
    width:100%;
    height:auto;
}
.accordion_display dt:nth-of-type(1), 
.accordion_display dd:nth-of-type(1){
	background:#47475A;
}

.accordion_display dt:nth-of-type(2), 
.accordion_display dd:nth-of-type(2){
	background:#55556B;
}

.accordion_display dt:nth-of-type(3), 
.accordion_display dd:nth-of-type(3){
	background:#636375;
}

.accordion_display dt:nth-of-type(4), 
.accordion_display dd:nth-of-type(4){
	background:#767686;
}
#contents th{
    color:#E5DECA;
}
.contents_list li{
    border-bottom:1px dashed #562222;
    padding:1em 0.5em 0.2em;
}