@charset "UTF-8";
/* common */
body{
    line-height: 1.5;
    font-family: "M PLUS 1p";
}
a{
    color: #6A6565;
}
a:hover{
    opacity: 0.5;
    transition: .3s;
}
.int{
    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;
}
/* movie */
.movie{
    margin: 30px auto 15px;
    padding-left: 61px;
}
/* introduction */
.intro{
  padding-bottom:30px;
}
.int_p{
  color: black;
  font-size: 15px;
  text-align: center;
  padding:0 30px;
}
/* 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;
    color: #6A6565;
    font-size: 15px;
}
@media screen and (min-width: 1280px) {
    .btn{
        font-size: 40px;
    }
    .com{
        font-size: 20px;
    }
}
