@charset "UTF-8";
/* common */
body{
    line-height: 1.5;
    font-family: "M PLUS 1p";
}
a{
  color: #6A6565;
}
a:hover{
    transition: .3s;
}
.sto{
    text-decoration: underline;
}
.wid{
    max-width: 966px;
    margin:0 auto;
    font-family: 'Yomogi', cursive;
}
.sec{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}
.p{
    font-size: 15px;
}
/* bg */
html {
    height:100%;
}
.bg {
    animation:slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #faedd0 20%, #b4e5f8 80%);
    bottom:0;
    left:-50%;
    opacity:.8;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
}

.bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
}

.bg3 {
    animation-duration:5s;
}

@keyframes slide {
    0% {
        transform:translateX(-25%);
    }
    100% {
        transform:translateX(25%);
    }
}
/* header */
header{
    background-color: #342819;
    font-size: 20px;
}
nav{
    width: 966px;
    margin:0 auto;
}
ul{
    display: table;
    width: 100%;
    text-align: center;
}
ul li{
    display: table-cell;
    width: 33%;
    min-width: 50px;
}
ul li a{
    display: block;
    width: 100%;
    padding: 12px 0;
    color: white;
}
ul li.int{
    background-color: #DEEBF7;
}
ul li.int a{
    color: white;
}
ul li:hover{
    background-color: #F4A01A;
}
  /* main */
.main {
  position: relative;
}
.main_wrap{
  position: absolute;
  float: right;
  top: 30vw;
  left: 60%;
  color: black;
}
.main_img{
  width: 100%;
}
/* btn */
.main_wrap{
  margin-top:50px;
  margin-left: 20px;
  white-space: nowrap;
}
.btn{
    padding:5px 20px;
    margin-bottom: 100px;
    color: white;
    background-color: red;
    border-radius: 8px;
    font-size: 30px;
}
.com{
  margin-left: 10px;
  margin-top: 15px;
  font-family: "M PLUS 1p";
}
.btn:hover{
    background: #f14747;
}
/* epsode */
.ep1_p{
  text-align: center;
  color: black;
  margin: 0 auto 30px;
  padding:0 50px;
}
/* btn */
.ep_btn{
  margin:50px 0;
  text-align: right;
}
.butn{
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  overflow: hidden;
  border-radius: 15px;
  background: #ff5132c9;
  margin:0 auto;
  color: white;
}

.butn span {
  position: relative;
}

.butn:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 150%;
  height: 500%;

  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);

  background: rgb(248, 172, 31);
}

.butn:hover:before {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}
.line{
  margin:30px 0;
  height: 3px;
border-width: 0;
background-color: #ffccbc;
background-image: -webkit-linear-gradient(135deg,
#ff5722 0px,#ff5722 2px, transparent 2px, transparent 4px,
#ff5722 4px, #ff5722 6px, transparent 6px, transparent);
background-image:         linear-gradient(-45deg,
#ff5722 0px,#ff5722 2px, transparent 2px, transparent 4px,
#ff5722 4px, #ff5722 6px, transparent 6px, transparent);
background-size: 6px 6px;
}
/* epi */
.title{
  font-family: 'Yusei Magic', sans-serif;
  font-size: 30px;
  text-align: center;
  color: rgb(0, 140, 196);
  text-shadow: rgb(253, 186, 61) 2px 2px;
  margin-bottom: 20px;
}
/* link */
.link{
  margin-top: 50px;
}
.link_p{
background-color: rgba(255, 255, 255, 0.623);
/* border:0.5px solid #6A6565; */
border: thick double rgba(0, 0, 0, 0.349);
padding: 15px 0px;
color:#6A6565;
margin-bottom: 50px;
font-family: "M PLUS 1p";
text-align: center;
}
/* obi */
.obi{
  padding:25px 0;
  background-color: orange;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-shadow: 3px 3px gray;
}
/* footer */
footer{
    text-align: center;
}

/*  */
@media screen and (min-width: 1280px) {
  .btn{
      font-size: 40px;  
  }
  .com{
      font-size: 20px;
  }
}