body{
    background-image: url(back1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    }
/*画面向き警告*/
@media screen and (orientation: landscape) {
    .note { display:none; }
}

 @media screen and (orientation: landscape) {
    .hide-logo { display:none; }
 }

 @media screen and (orientation: portrait) {
    .all { display: none; }
 }

.note{
    margin: 10px auto;
    width:50px;
}
.hide-logo{
    background:url('/logo.png');
    background-size: cover;
    width:100%;
    height:100px;
}

/*メニュー*/
.hamberger_line {
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 100;
    transform: translateX(0);
    transition: transform .5s;
}

.hamberger_line span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    transition: all .5s;
}

.hamberger_line span:nth-of-type(1) {
    top: 0;
}

.hamberger_line.open span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
}

.hamberger_line span:nth-of-type(2) {
    top: 12px;
}

.hamberger_line.open span:nth-of-type(2) {
    opacity: 0;
}

.hamberger_line span:nth-of-type(3) {
    bottom: 0;
}

.hamberger_line.open span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
}

.hamberger_list {
    width: 250px;
    height: 100%;
    padding-top: 100px;
    background-color:#ad002d;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    transform: translateX(250px);
    transition: all .5s;
}

.hamberger_list.open {
    transform: translateX(0);
}

.hamberger_list li {
    text-align: center;
    font-size:20px;
    padding: 10px 0;
    list-style: none;
}

.hamberger_list a {
    color: #fff;
    text-decoration: none;
}

/*カウントダウン*/
html {
    box-sizing: border-box;
    font-size: 62.5%;
  }
  
  @media screen and (min-width: 768px) {
    html {
      font-size: 78.195%;
    }
  }
  
  body {
    font-size: 1.2rem;
    line-height: 1.75em;
  }
  
  .cdt_wrapper {
    background-color: #e9e9eb;
    font-weight: bold;
    text-align: center;
    line-height: 2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  @media screen and (min-width: 768px) {
    .cdt_wrapper {
      line-height: 2.5;
      font-size: 1.8rem;
      padding: 0 20px;
    }
  }
  
  .cdt_wrapper small {
    font-size: .6em;
    padding: 0 .4em;
  }
  
  .cdt {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .cdt_txt {
    font-size: .6em;
    display: inline-block;
    margin-right: .6em;
  }
  
  @media screen and (min-width: 768px) {
    .cdt_txt {
      font-size: .5em;
    }
  }
  
  .cdt_txt span {
    display: block;
    line-height: 1;
  }
  
  .cdt_date {
    font-size: 1.6rem;
  }
  
  .cdt_num {
    background-color: #ffffff;
    padding: 0 .15em;
  }
  
  @media screen and (min-width: 768px) {
    .cdt_num {
      line-height: 1;
      padding: .3em .15em;
    }
  }

  /*お知らせ*/
  .news { text-align: center; }

  /*テキストシャドウ*/
  .shadow{
    text-shadow: 5px 5px 5px #ffffff;
  }

  /*テキストフェード*/
  .wrap { 
    width:90vw;
    height:90vh;
    background-color:#00000000;
     
    display:flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.content {      
    width:auto;
    height: auto;
}
p {
  font-size: 20px;
    color: #fff;
    
}
 
/*以下フェードイン表示の指定*/
.fadein {
    opacity: 0;
    animation: fadein 6s ease forwards;
}
@keyframes fadein {
    100% {  opacity: 1;}
}
 
/*以下遅延の指定*/
.txt01 {animation-delay: 1s;}
.txt02 {animation-delay: 4s;}
.txt03 {animation-delay: 7s;}
.txt04 {animation-delay: 10s;}
.txt05 {animation-delay: 13s;}
.txt06 {animation-delay: 16s;}

/*製品表*/
table , td, th {
	border: 1px solid #595959;
	border-collapse: collapse;
}
td, th {
	padding: 3px;
	width: 30%;
	height: 25px;
}
th {
	background: #f0e6cc;
}
.even {
	background: #fbf8f0;
}
.odd {
	background: #fefcf9;
}

/*ボタン*/
.btn-flat-vertical-border {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.5em 1em;
  text-decoration: none;
  border-left: solid 4px #c94641;
  border-right: solid 4px #c94641;
  color: #ff0000;
  background: #000000;
  transition: .4s;
}

.btn-flat-vertical-border:hover {
  background: #ff0000;
  color: rgb(0, 0, 0);
}

#r_news {
  background-color: #000000;
	margin-top: 5px;
	height: 5%;/*スクロールの高さ*/
  overflow-y: scroll;
 }