@charset "UTF-8";
/* =====================
  Custom Property
==================== */
:root {
  /* ==== 色 ==== */
  --white: #ffffff;
  --grey: #595555;
  --black: #0d0602;
  --coffee: #2c1a12;
  --red: #9b003f;
  --pink: #e3166a;
  --smoke: #fefefe;

  /* ==== フォント ==== */
  --mincho: 'Shippori Mincho', serif;

  --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(--black);
  font-weight: 500;
  font-size: 15px;
  height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
li,
button,
input,
a {
  font-feature-settings: 'palt';
}

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

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

/* =====================
  操作不可能ボタン
===================== */
.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;
}
