@charset "UTF-8";
.p_top{
  background-image: url('../img/bg.png');
  background-repeat: repeat;
  background-size: auto; /* 画像を元のサイズで繰り返します */
  margin: 0; /* デフォルトの余白を削除 */
  padding: 0; /* デフォルトのパディングを削除 */
}
.content{
  width:92%;
  margin:0 auto;
}
.btn{
  margin: 30px 0;
   animation: bounce 2s infinite;
}
.closing{
  animation: blink 2s infinite; /* 5秒ごとに繰り返す */
  margin-top: 30px;
}
.list{
  margin-top:30px;
}
h2{
  font-size: 24px;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 20px;
}
dl{
  margin-top:20px;
}
dt{
  font-weight: bold;
}

@media screen and (min-width: 769px), print {
  img {
    width: 100%;
    height: auto;
  }
  .container {
    overflow: hidden;
    max-width: 750px;
    margin: 0 auto;
  }
  .show_pc {
    display: none !important;
  }
  .row {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
  }
  .row {
    padding-left: 13.5px;
    padding-right: 13.5px;
  }
  .inner {
    padding-left: 13.5px;
    padding-right: 13.5px;
  }
  .footer {
    text-align: center;
    padding: 27px 0 81px;
  }
  .footer ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer ul li {
    font-size: 27px;
    color: #000;
  }
  .footer ul li:not(:last-child) {
    position: relative;
  }
  .footer ul li:not(:last-child)::after {
    content: "｜";
    position: absolute;
    top: 50%;
    right: -19.8px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .footer ul li a {
    color: #000;
  }
  .footer ul li:not(:last-child) {
    margin-right: 13.5px;
  }

}

@media screen and (max-width: 768px) {
  img {
    width: 100%;
    height: auto;
  }
  .container {
    overflow: hidden;
    max-width: 100vw;
    margin: 0 auto;
  }
  .show_pc {
    display: none !important;
  }
  .row {
    padding-left: 1.81159vw;
    padding-right: 1.81159vw;
  }
  .inner {
    padding-left: 1.81159vw;
    padding-right: 1.81159vw;
  }
  .footer {
    text-align: center;
    padding: 3.62319vw 0 10.86957vw;
  }
  .footer ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer ul li {
    font-size: 3.62319vw;
    color: #000;
  }
  .footer ul li:not(:last-child) {
    position: relative;
  }
  .footer ul li:not(:last-child)::after {
    content: "｜";
    position: absolute;
    top: 50%;
    right: -2.657vw;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .footer ul li a {
    color: #000;
  }
  .footer ul li:not(:last-child) {
    margin-right: 1.81159vw;
  }
}
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes blink {
    0%, 100% {
        opacity: 1; /* 最初と最後は不透明 */
    }
    50% {
        opacity: 0; /* 中間は透明 */
    }
}