@charset "UTF-8";
/* =====================
  Custom Property
==================== */
:root {
  /* ==== 色 ==== */
  --white: #ffffff;
  --black: #333333;
  --grey: #e3e3e3;
  --blue: #4e97ce;
  --navy: #234060;
  --yellow: #f8c313;

  /* ==== フォント ==== */
  --mincho: '游明朝', 'Yu Mincho Regular', 'Yu Mincho', 'YuMincho Medium', serif;
  --title: 'Poppins', sans-serif;
  /* ==== アニメーション easing関数 ==== */
  --easeOutQuart: cubic-bezier(0.25, 1, 0.5, 1);
  --easeOutExpo: cubic-bezier(0.87, 0, 0.13, 1);
  --easeOutBack: cubic-bezier(0.34, 1.56, 0.64, 1);
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
  --easeInCirc: cubic-bezier(0.55, 0, 1, 0.45);
  --easeInOutBack: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* =====================
  リセット要素
==================== */
html,
body {
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  height: 100%;
}

/* ==== テキスト選択時の色 ==== */
::selection {
  background: #595555;
}

/* =====================
  アニメーション
===================== */
@media (hover: hover) and (pointer: fine) {
  .hover-op {
    transition: opacity 250ms ease 0s;
  }
  .hover-op:hover {
    opacity: 0.7;
  }
}

/* =====================
  操作不可能ボタン
===================== */
.disabledBtn {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  opacity: 0.7;
  filter: grayscale(1);
}
.ui-lock {
  opacity: 0.8;
  pointer-events: none;
  position: relative;
}
.ui-lock::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: #ffffff05;
  z-index: 100;
}
.ui-lock * {
  pointer-events: none;
}
.form-error:empty {
  display: none;
}
.form-error {
  padding: 0.5em 1em;
  color: #c84949;
  border: 2px solid #c84949;
  border-radius: 5px;
  background: #fce3e3;
  margin-top: 1em;
  display: block;
}
textarea {
  font-family: inherit;
  word-break: break-all;
}
