@charset "utf-8";
/* CSS Document */
body {
    background-image: url("../../images/backdrop-corck.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .rgba {
    height: auto;
    background-color: rgba(255, 255, 255, 0.5);
  }
@media screen and (min-width:780px) {
.header {
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #E5AF28;
  padding-top: 5px;
  padding-right: -10px;
  background-color: #fff;
}
.neko_icon {
  width: 45px;
  height: 45px;
  float: left;
}
/*.header{
margin-bottom:-10px;;
}*/
a:link {
    color: #E5AF28;
  }
  a:visited {
    color: #E5AF28;
  }
/*ハンバーガーアイコン*/
  /*============nav=============*/
  nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
  }
  .open nav {
    left: 0;
    opacity: 1;
  }
  nav .inner {
    padding: 25px;
  }
  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #333;
  }
  nav .inner ul li a {
    display: block;
    color: #E5AF28;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
  }
   
  nav .inner ul li a:hover {
    background: #e4e4e4;
  }
  
  nav li a {
    font-family: vdl-v7marugothic, sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  /*============
.toggle_btn
=============*/
  .toggle_btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 30px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    transition: all .5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background-color: #fff;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }
  /*============
#mask
=============*/
  #mask {
    display: none;
    transition: all .5s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
  }
/*ハンバーガーアイコンここまで*/

/*Infoページの設定*/
.infomation {
  width: 500px;
  height: auto;
  margin: 10px auto;
}
figure {
  display: flex;
  margin: 0 auto;
}
/* ▼画像に対する装飾 */
figure img {
  display: flex;
  margin: 0 auto;
}
/* ▼キャプションに対する装飾 */
figcaption {
  padding: 10px;
  font-size: 0.9em; /* 文字サイズを90%に */
  text-align: center; /* 中身をセンタリング */
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}
iframe {
  display: flex;
  margin: 0 auto;
}
.info_box h2 {
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  /*font-size: 0.9em;*/
  text-align: center;
}
p {
  font-size: 0.9em;
  text-align: center;
  font-weight: bold;
}
.social {
  display: flex;
  justify-content: center;
  align-items: center;
}
.twitter_icon {
  width: 50px;
  height: 50px;
  float: left;
}
.facebook_icon {
  width: 50px;
  height: 50px;
  float: left;
}
.insta_icon {
  width: 50px;
  height: 50px;
  float: left;
}
p .info {
  text-align: center;
  float: left;
}
.social .twitter_icon {
  margin-left: 10px;
}
.social .facebook_icon {
  margin-left: 20px;
}
.social .insta_icon {
  margin-left: 20px;
}
/*各種猫紹介設定*/
.footer {
  clear: both;
  margin-top: 10px;
  /*padding: .3em;*/
  border-top: 1px solid #E5AF28;
  text-align: center;
  color: #000;
  width: 100%;
  box-sizing: content-box;
  background-color: #9BDDDB;
}
}

@media screen and (max-width:480px) {
  /*　画面サイズが480px以下の場合ここの記述が適用される　*/
/*header設定*/
  .header {
    max-width: 100%;
    height: auto;
    font-family: vdl-v7marugothic, sans-serif;
    font-weight: 500;
    font-style: normal;
    /*color: #E5AF28;*/
    /*padding-top: 5px;
    padding-right: -10px;*/
    background-color: #fff;
  }
  .neko_icon {
    max-width: 40px;
    height: auto;
    float: left;
  }
  .header h1 {
    font-size: 30px;
  }
  a:link {
    color: #E5AF28;
  }
  a:visited {
    color: #E5AF28;
  }
  /*ハンバーガーアイコン*/
  /*============
nav
=============*/
  nav {
    display: block;
    position: fixed;
    top: 0;
    right: -150px;
    bottom: 0;
    width: 300px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
  }
  .open nav {
    left: 0;
    opacity: 1;
  }
  nav .inner {
    padding: 25px;
  }
  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #333;
  }
  nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  nav .inner ul li a:hover {
    background: #e4e4e4;
  }
  /*============
.toggle_btn
=============*/
  .toggle_btn {
    display: block;
    position: fixed;
    top: 5px;
    right: 25px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
  }
  .open .toggle_btn {
    left: 330px;
  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    transition: all .5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background-color: #fff;
  }
  .open .toggle_btn {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  .open .toggle_btn span:nth-child(1), .open .toggle_btn span:nth-child(3) {
    width: 16px;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translate(-1px, 4px) rotate(-45deg);
    transform: translate(-1px, 4px) rotate(-45deg);
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translate(-1px, -4px) rotate(45deg);
    transform: translate(-1px, -4px) rotate(45deg);
  }
  /*============
#mask
=============*/
  #mask {
    display: none;
    transition: all .5s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
  }
  
  /*Infoページの設定*/
.infomation  img{
  width: 75%;
}
figure {
  display: flex;
  margin: 0 auto;
}
/* ▼画像に対する装飾 */
figure img {
  display: flex;
  margin: 0 auto;
}
/* ▼キャプションに対する装飾 */
figcaption {
  padding: 10px;
  font-size: 0.9em; /* 文字サイズを90%に */
  text-align: center; /* 中身をセンタリング */
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}
iframe {
width:75%;
display:block;
margin:0 auto;
}
.info_box h2 {
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 700;
  font-style: normal;
  /*font-size: 0.9em;*/
  text-align: center;
}
p {
  font-size: 0.9em;
  text-align: center;
  font-weight: bold;
}
.social {
  display: flex;
  justify-content: center;
  align-items: center;
}
.twitter_icon {
  width: 50px;
  height: 50px;
  float: left;
}
.facebook_icon {
  width: 50px;
  height: 50px;
  float: left;
}
.insta_icon {
  width: 50px;
  height: 50px;
  float: left;
}
p .info {
  text-align: center;
  float: left;
}
.social .twitter_icon {
  margin-left: 10px;
}
.social .facebook_icon {
  margin-left: 20px;
}
.social .insta_icon {
  margin-left: 20px;
}
  /*footer*/
  .footer {
    margin-top: 10px;
    /*padding: .3em;*/
    border-top: 1px solid #E5AF28;
    text-align: center;
    color: #000;
    width: 100%;
    box-sizing: content-box;
    background-color: #9BDDDB;
  }
  }