@charset "UTF-8";
/*
Author: Ann Tachibana
Version: 1.0
*/
/*======================================
arrow
/*======================================*/
.arrow-L {
  width: 130px;
  padding-top: calc(130px*.35);
  margin: 1.5em auto;
}
.arrow-S {
  width: 90px;
  padding-top: calc(90px*.35);
  margin: 1em auto;
}
.arrow-gold {
  background: url(../img/arrow-gold.png) no-repeat center;
  background-size: cover;
}
/*======================================
under line
/*======================================*/
.under {
  display: inline;
  background: linear-gradient(transparent 70%, #fff799 70%);
  background-size: 100% 100%;
  background-position: center bottom;
}
/*placeholder-----------------*/ :placeholder-shown {
  color: #777;
}
/* Google Chrome, Safari, Opera 15+, Android, iOS */ ::-webkit-input-placeholder {
  color: #777;
}
/* Firefox 18- */ :-moz-placeholder {
  color: #777;
  opacity: 1;
}
/* Firefox 19+ */ ::-moz-placeholder {
  color: #777;
  opacity: 1;
}
/* IE 10+ */ :-ms-input-placeholder {
  color: #777;
}
/*aside-----------------*/
.form-CMN aside ul li {
  font-size: 13px;
  line-height: 1.3em;
}
/*======================================
title
/*======================================*/
.title-CMN p {
  text-align: center !important;
  font-size: 100% !important;
  margin-top: .1em;
  line-height: 1.3em;
  letter-spacing: 2px;
}
.ribon-B {
  position: relative;
  text-align: center;
  background: rgba(65, 60, 65, 1);
  padding: 1em 0 1.5em;
  z-index: 10;
  box-shadow: 0 0 15px rgba(0, 0, 0, .7);
  color: #fff;
}
.ribon-B:before, .ribon-B:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d2a765+0,fae0a0+25,fae0a0+75,d2a765+100 */
  background: #d2a765;
  background: linear-gradient(to right, #d2a765 0%, #fae0a0 25%, #fae0a0 75%, #d2a765 100%);
}
.ribon-B:before {
  top: 5px;
}
.ribon-B:after {
  bottom: 5px;
}
.ribon-B .txt-gold {
  color: rgb(226 199 142);
}
/*======================================
border-frame
/*======================================*/
.border-frame {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+25,e5e1d7+100 */
  background: rgba(255, 255, 255, .8); /* Old browsers */
  padding: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
.border-frame .border-outside {
  border: 1px solid rgba(230, 200, 145, 1);
  padding: 2px;
}
.border-frame .border-inside {
  border: 5px solid rgba(230, 200, 145, 1);
  padding: 1em;
}
@media screen and (min-width: 768px) { /*768px〜1023px*/
  .border-frame .border-inside {
    padding: 1.5em;
  }
}
/*======================================
submitBtn
/*======================================*/
@keyframes animScale {
  0% {
    transform: scale(0.8, 0.8);
  }
  5% {
    transform: scale(1.1, 1.1);
  }
  10% {
    transform: scale(1, 1);
  }
  15% {
    transform: scale(1.1, 1.1);
  }
  20% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes animSlowScale {
  0% {
    transform: scale(.95);
  }
  50% {
    transform: scale(1.05, 1.05);
  }
  100% {
    transform: scale(.95);
  }
}
.slow-effect {
  animation: animSlowScale 3s infinite ease;
  transform-origin: 50% 50%;
  animation-play-state: running;
}