@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&subset=japanese');
* {
  font-family: "Noto Sans JP",sans-serif;
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /* 1rem = 10px */
}
body {
  margin: 0;
  background: #FEE3D2;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

table {
  border-collapse: collapse;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (min-width: 1024px) {
  .pc-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1024px;
    margin: 0 auto;
  }
  #main {
    justify-content: space-around;
    width: 675px;
  }
}
#footer {
  width: 100%;
  padding: 5px 0;
  text-align: center;
  background: #F0A0A5;
  color: #fff;
  font-size: 14px;
  line-height: 1.4em;
}
  #footer a {
    color: #fff;
  }

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

span.line {
  background: linear-gradient(transparent 60%, gold 60%);
}

span.f-red {
  background: linear-gradient(transparent 55%, rgba(255, 88, 88, 0.25) 60%);
}
span.f-green {
  background: linear-gradient(transparent 55%, rgba(151, 232, 154, 0.70) 60%);
}
span.f-blue {
  background: linear-gradient(transparent 55%, rgba(107, 182, 255, 0.25) 60%);
}
span.f-yellow {
  background: linear-gradient(transparent 55%, rgba(255, 252, 107, 0.70) 60%);
}

.box {
  width: 95%;
  margin: 15px auto;
  padding: 1.5em 1em;
  border-top: solid 5px #5d627b;
  background: white;
  box-shadow: 0 2px 3px #aaa;
  color: #5d627b;
}

.embed-video {
  display: block;
  width: 95%;
  margin: 8px auto;
}

.compare-img {
  display: block;
  margin: auto;
}

.reflection-base {
  position: relative;
  overflow: hidden;
}

.reflection {
  height      :100%;
  width       :30px;
  position    :absolute;
  top         :-180px;
  left        :-60px;
  background-color: #fff;
  opacity     :0;
  transform: rotate(45deg);
  animation: reflection 3s cubic-bezier(0, 0.3, 0.6, 0) infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2.5s cubic-bezier(0, 0.3, 0.6, 0) infinite;
  -moz-transform: rotate(45deg);
  -moz-animation: reflection 2s cubic-bezier(0, 0.3, 0.6, 0) infinite;
  -ms-transform: rotate(45deg);
  -ms-animation: reflection 2s cubic-bezier(0, 0.3, 0.6, 0) infinite;
  -o-transform: rotate(45deg);
  -o-animation: reflection 2s cubic-bezier(0, 0.3, 0.6, 0) infinite;
}

@keyframes reflection {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
  0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection {
  0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection {
  0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}

.bobble {
  animation: bobble 2.5s linear infinite;
  -webkit-animation: bobble 2.5s linear infinite;
  -moz-animation: bobble 2.5s linear infinite;
}
@keyframes bobble {
  55% { transform: rotate(0deg); }
  59% { transform: rotate(3deg); }
  63% { transform: rotate(-3deg); }
  67% { transform: rotate(3deg); }
  71% { transform: rotate(-3deg); }
  75% { transform: rotate(0deg); }
}

.zoom {
  animation: zoom 2s linear infinite;
  -webkit-animation: zoom 2s linear infinite;
  -moz-animation: zoom 2s linear infinite;
}

@keyframes zoom {
  0% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1.1); }
  75% { transform: scale(1); }
}

.marquee-base {
  overflow: hidden;
}
.marquee {
  font-size: 1.6rem;
  transform: translateX(100%);
  animation: marquee 20s linear infinite;
  -webkit-animation: marquee 20s linear infinite;
  -moz-animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

#modal {
  display: block;
  width: 90%;
  max-width: 500px;
  margin: auto;
}
  .modal__wrapper {
    text-decoration: none;
  }
  .modal_img {
    display: block;
    width: 100%;
    object-fit: contain;
    margin: auto;
  }
  .modal_close {
    position: absolute;
    top: -20px;
    right: 0;
    width: 42px;
    height: 42px;
  }
  .modal__upper {
    padding: 0.2em 0;
    background: #f79886;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .modal__bottom {
    padding: 10px 0;
    background: #fff;
    text-align: center;
  }
    .modal__button {
      padding: 0.2em 0.5em;
      background: #5ee8ce;
      border-radius: 8px;
      color: #fff;
      font-size: 2.0rem;
      font-weight: bold;
    }
  .modal__help {
    padding: 0.5em 1em 0;
    background: #fff9e7;
    border: solid 2px #f79886;
  }

.pr {
  width: 100%;
  text-align: right;
  color: #888;
  font-size: 12px;
}