@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Murecho", Verdana, Arial, "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  font-size: 13px;
  color: #494241;
  letter-spacing: 0.5px;
}
*:focus {
  outline: none;
}
*:active, *:hover {
  transition: 0.3s;
}

body {
  background: white;
  position: relative;
  line-height: 1.7;
  opacity: 0;
}
body.notAction {
  pointer-events: none;
  user-select: none;
}

img {
  display: block;
  width: 100%;
  border: 0;
  font-size: 0;
  line-height: 0;
}

a {
  display: inline-block;
  text-decoration: none;
}
a:active, a:hover {
  opacity: 0.7;
  cursor: pointer;
}
a.underline {
  text-decoration: underline;
}
a.underline:active, a.underline:hover {
  text-decoration: none;
}

ruby rt {
  font-size: 0.7rem;
  font-weight: 300;
  transform: translateY(.5em);
}

ol {
  margin-left: 1.2em;
}

ul {
  list-style: none;
}

.disNON {
  display: none;
}

.inner_hide {
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

#wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  height: calc(var(--vh, 1vh) * 100)
}

main {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.width_limit {
  width: 980px;
  max-width: 96%;
  padding: 7em 0 3em;
  margin: 0 auto;
}

#main_container {
  position: relative;
  flex-grow: 1;
}
#main_container #main_contents {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1em;
  overflow-y: auto;
  overflow-x: hidden;
}

h1 {
  font-size: 1.3em;
  margin-bottom: 1em;
}

label {
  display: block;
}

input, select, textarea {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  font-size: 16px;
  transform-origin: left;
  transform: scale(0.75);
  width: 132.96%;
  padding: 0.8rem 0.7rem;
  border: 1px solid #c9c9c9;
  box-shadow: none;
}

textarea {
  resize: none;
  min-height: 180px;
}

.cb {
  position: relative;
  margin-top: 3px;
  display: flex;
  align-items: center;
  user-select: none;
}
.cb input {
  width: 1.4rem;
  height: 1.4rem;
  padding: 0;
  background: transparent;
  transform: scale(1);
  margin-right: 0.5em;
  position: relative;
}
.cb input:after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 4px;
  width: 0.3em;
  height: 0.7em;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.4s;
}
.cb input:checked {
  background: #3eb5e9;
  border-color: #3eb5e9;
}
.cb input:checked:after {
  opacity: 1;
}

.select {
  position: relative;
  width: 100%;
  background: white;
  line-height: 1;
}
.select::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 0.7rem;
  pointer-events: none;
  width: 0.4em;
  height: 0.4em;
  border: 1px solid #ccc;
  border-top: 0;
  border-left: 0;
  z-index: 2;
}
.select select {
  padding: 0.8rem 1.9rem 0.8rem 0.7rem;
}

button {
  display: block;
  border: none;
  background: transparent;
}
button.ctr {
  margin: 2.7rem auto 0;
}
button:active, button:hover {
  cursor: pointer;
}

.btn {
  padding: 1em 2.5em;
  letter-spacing: 2.5px;
  color: white;
  font-size: 0.95rem;
}
.btn:active {
  box-shadow: 0 0 16px -6px rgba(0, 0, 0, 0.6) inset;
}
.btn.full {
  width: 100%;
}
.btn.medium {
  width: 72%;
}
.btn.cl {
  border-radius: 50px;
}
.btn.base {
  background: #3eb5e9;
}
.btn.base:active, .btn.base:hover {
  background: #1ea9e5;
}
.btn.pnk {
  background: #ed4f8d;
}
.btn.blue {
  background: #4bacc6;
}
.btn.red {
  background: #e00909;
}
.btn.gray {
  background: gray;
}
.btn.gray:active {
  background: #6e6e6e;
}

button[disabled] {
  background: gray !important;
  pointer-events: none;
}

.file_btn {
  position: relative;
}
.file_btn span {
  color: white;
  display: block;
  text-align: center;
}
.file_btn input {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  padding: 0;
  z-index: 2;
}

#msg_add_btn {
  position: fixed;
  bottom: 5.5em;
  right: 0.5em;
  background: #494241;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  z-index: 22;
}
#msg_add_btn:before, #msg_add_btn:after {
  content: "";
  display: block;
  position: absolute;
  background: white;
  width: 55%;
  height: 2px;
}
#msg_add_btn:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#msg_add_btn:after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

#bk_cl {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 98;
}

.z-100 {
  z-index: 100 !important;
}

.t-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin: 0 0 0.5em;
  font-size: 1.2rem;
}
.t-1:before, .t-1:after {
  content: "";
  display: block;
  flex-grow: 1;
  border-top: 1px solid #746968;
}
.t-1:before {
  margin-right: 1em;
}
.t-1:after {
  margin-left: 1em;
}

.t-2 {
  font-size: 1.4em;
  text-align: center;
  margin: 1.5rem 0;
}

.t-3 {
  background: #d6d2d2;
  border-bottom: 1px solid #beb7b7;
  padding: 0.4em 0.7em;
  margin-bottom: 0.4em;
}
.t-3.gry {
  background: #f2f2f2;
  border-bottom-color: #dbdbdb;
}

.fs_17 {
  font-size: 1.7em;
}

.sf {
  font-family: "Quattrocento Sans", sans-serif;
}

.f_red {
  color: #d91313;
}

.f_pnk {
  color: #ed4f8d;
}

.f_blu {
  color: #3eb5e9;
}

.res_msg h2 {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 1.2rem;
}
.res_msg p {
  text-align: center;
}
.res_msg.fx_col {
  /*height: 80%;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.res_msg .btn-sm { width: 50%; margin: 20px auto; }

.xy_c {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.xy_c.fixed {
  position: fixed;
}

.g-table {
  display: grid;
  background: #dbdbdb;
  padding: 0 1px 1px;
}
.g-table > div {
  padding: 0.4em;
  background: white;
  margin-top: 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.g-table .g-h {
  background: #eeeded;
}

.fx {
  display: flex;
  align-items: center;
}

.fx_b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fx_a {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.fx_c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fx_btn .btn:not(:last-child) {
  margin-right: 1.5em;
}

.fx_col {
  display: flex;
  flex-direction: column;
}

.tx_c {
  text-align: center;
}

.tx_r {
  text-align: right;
}

.fade-in {
  animation: fadeIn 1.7s ease-in-out forwards;
}

.fade-out {
  animation: fadeOut 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media all and (max-width: 390px) {
  * {
    font-size: 12px;
  }
}