@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  word-break: break-all;
  font-family: 'Noto Sans JP', sans-serif; }

body {
  transition: 1.4s; }

*,
*::before,
*::after {
  box-sizing: border-box; }

a {
  color: unset;
  text-decoration: none; }

.underline {
  text-decoration: underline; }

li {
  list-style: none; }

.flex {
  display: flex; }

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
div,
span {
  font-size: 100%;
  line-height: 1.4; }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

img {
  max-width: 100%;
  vertical-align: bottom; }

.popup {
  width: 90%;
  height: auto;
  max-width: 340px;
  padding: 50px 0 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/1x/popup-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: #fff;
  z-index: -5;
  opacity: 0;
  display: none; }

.popup-show {
  z-index: 9999;
  opacity: 1;
  display: block; }

.popup-filter {
  width: 100%;
  height: 100%;
  background-color: #fffffff4;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -5;
  display: none; }

.filter-show {
  z-index: 9995;
  opacity: 1;
  display: block; }

.floating-hide {
  opacity: 0;
  z-index: -5; }

.select-frame {
  width: 90%;
  margin: 0 auto;
  position: relative;
  top: 8%;
  margin-bottom: 20px; }

.select-btn-1 {
  width: 90%;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%); }

.select-btn-2 {
  width: 90%;
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translateX(-50%); }

/** アニメーション
****************************************************************************/
.reflection {
  position: relative;
  overflow: hidden; }

.reflection:after {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite; }

@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; } }
