/* CSS Document */




.clearfix::after {
content: “”;
display: block;
clear: both;
}
* {
  box-sizing: border-box;
}
a{
  text-decoration: none;
  color: rgba(69,69,69,1.00);
}
body {
  margin: 0;
  padding: 0;
  
  font-family: 'Noto Sans JP', sans-serif; 
  background: rgba(225,225,225,1.00);



}
ul{
  list-style: none;
  padding: 0;
}

.wrapper{
  background: rgba(255,255,255,1.00);
  max-width: 1200px;  
/*  min-height: 1200px;*/

  margin: 0px auto;
  padding-bottom: 20px;

}
.copyRight{
  background: #FFAFAF;
  width: 100%;
  height: 3em;
  text-align: center;
  position: relative;
  
}
.copyRight span{
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translate(-50%,-50%);
  width: 100%;
  color: aliceblue;
  
}
article{
  width: 900px;
}

.h2headline {
  margin: 10px;
  position: relative;
  padding: 30px 0 2px 0px;
  font-size: 26px;
  border-bottom: 5px solid #FFAFAF;
}
.h2headline::after {
  content: attr(data-text);
  position: absolute;
  top: 0px;
  left: 10px;
  color: rgba(249,130,215,0.20);
  font-size: 40px;
  font-style: italic;
  text-transform: uppercase;
  z-index: 1;
}


@media (min-width : 769px ){
header {
/*height: 100px;*/
}  
  
  
.inner{
  height: 100%;





}
  .inner_topContents{
       display: flex;
  justify-content: space-around;
  /*overflow-x: auto;*/
    height: auto;

  }

.top_img{
  text-align: center; 
  padding: 0 20px;
  min-width: 700px;
}

.top_img img {
              max-width: 100%;
  object-fit: contain;
}
.table_overview{
  border-collapse: collapse;
  border: solid 1px rgba(138,138,138,1.00);
  margin: 0 auto;
  background: rgba(255,255,255,1.00)
}
.table_overview td{
   border: solid 1px rgba(138,138,138,1.00); 
  padding: 10px;

}
.table_overview th{
   border: solid 1px rgba(138,138,138,1.00); 
  padding: 10px;
  text-align: center;
}




.menu{
/*  background: blue;*/
  min-width:  250px;
  margin-left:  50px;
  
}

.menu_item{
/*  background: rgba(255,255,255,1.00);*/
  margin: 15px 0;
  font-size: 1.2em;  
}

.menu_item a {
  width: 100%;
  display: block;
  padding: 15px;
  border: 1px solid #FFAFAF;
  color:#FFAFAF ;
  border-radius: 5px;
  transition: all .5s;
  position: relative;
} 
  .menu_item a:hover{
    color: #FFF;  
  }
  .menu_item a::before{
position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #FFAFAF;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  
    
  }

.menu_item a:hover::before {
  transform: scaleX(1);
  transform-origin: left;


}
  .text{
    position: relative;
  }
.footer_nav{
  display: none;
}



}


@media (max-width : 768px ){
  body{
    padding-bottom: 60px;    
  }
  article{
    width: 100%;
  }
  .wrapper{

  /*  position: relative;*/
  }

  .footer_nav{
    width: 100%;
    background: rgba(230,230,230,1.00);
    height: 60px;
    position: fixed;
    bottom: 0px;
    display: flex;

    justify-content: space-around;
    z-index: 1000;
  }
  .footer_nav_list{
    display: flex;
    justify-content: space-between;
    list-style: none;
    background: rgba(160,228,155,1.00);
    padding: 0;  
    
  }
  
  .footer_nav_item{
    width:30%;
    /*background: rgba(200,201,252,1.00);*/
    display: grid;
    place-items:center;
    

  }
  .menu_sp_btm{
    width: 40px;
    height: 20px;
/*    border: 1px solid rgba(189,251,255,1.00);*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;

  }
/* ハンバーガーアイコンがアクティブな時 */
.menu_sp_btm.active .bar:nth-child(1) {
    transform:translateY(9px) rotate(19deg);
}

.menu_sp_btm.active .bar:nth-child(2) {
    opacity: 0;
}

.menu_sp_btm.active .bar:nth-child(3) {
    transform:translateY(-9px) rotate(-19deg);
}
  
  
  .bar{
    width: 100%;
    height: 2px;
    background: rgba(47,47,47,1.00);
    transition: all 0.4s ease;
  }
  
  .menu{
    position: fixed;
    background: rgba(255,165,193,1.00);
    color: aliceblue;
    width: 80%;
    top: 0;
    left: 0;
    height: 100vh ;
    transition: all 0.5s ease;
    transform: translateX(-100%);
    overflow-y: auto;
    padding-bottom: 60px;
  
    z-index: 100;
    
  }
  .menu.active {
    transform: translateX(0);
  }
  
  .menu_list{
    
  }
  
  .menu_item{
    margin: 20px;
    font-size: 1.4em;
    border-bottom: 2px solid ;
    padding-left: 10px;
    
  }
  
  .menu_item a{
    display: block;
/*    background: rgba(184,192,255,1.00);*/
    width: 100%;
    border: none;
  }
  
  .info{
/*    padding: 10px;*/
    margin: 10px;
    height: 200px;
  }
  
  
  
  .copyRight span{
    font-size: .7em;
  }
  
}
