/*
main:color #aacf53 萌黄

*/


body {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .8px;
  color: #FFFFFF;
  background-color: #000000;
}

a {
  transition: opacity .3s;
  text-decoration: none;
  color: #FF0000;
}

/*--------------------------------
 レイアウト
---------------------------------*/
.section {
  padding: 1% 0;
}

.inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0;
}

.iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid #666666;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------
 フッター
---------------------------------*/
.footer {
  padding: 0;
  margin: 0;
  width: 100%;
}

.footer .logo{
  margin: 0 auto;
  width: 100%;
  text-align: center;
  background-color: #000000;
}

.logo img{
  border: #FF0000 double 3px;
  border-radius: 8px;
  position: relative;
}

.logo img:hover{
  top:1px;
  border: #FF0000 double 3px;
}

.copyright {
  padding: 8px 0;
  font-size: 10px;
  text-align: center;
  color: #FFF;
}

/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 1340px) {
  body {
    font-size: 13px;
    line-height: 1.7;
  }
  .section {
    padding: 0 0;
  }

  .inner {
    width: 100%;
    max-width: 100%;
  }

}

/*縦表示の場合の注意書き
----------------------------------------------------*/
.portrait{
  display: none;
}

@media (orientation: portrait){
  .portrait{
    display: block;
    width: 100%;
    text-align: center;
  }
}