@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  letter-spacing: 1px;
  line-height: 1.9;
  color: #1f3134;
  font-size: 14px;
  transition: 0.4s;
  font-family: "Noto Sans JP", Verdana, Arial, "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" on;
}

body.no_action {
  user-select: none;
  pointer-events: none;
}

img {
  display: block;
  width: 100%;
  border: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
  user-select: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  display: block;
}

a {
  display: inline-block;
}
a:hover {
  opacity: 0.7;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

#wrapper {
  position: relative;
  min-height: calc(var(--vh, 1vh) * 100);
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}

main {
  flex-grow: 1;
  padding: 3em 0 4em;
  width: 96%;
  max-width: 1000px;
  margin: auto;
}

input:not([type=radio]):not([type=checkbox]), textarea {
  padding: 0.5em 0.6em;
  border: 1px solid #dbdbdb;
  width: 100%;
  border-radius: 3px;
}
input:not([type=radio]):not([type=checkbox]):focus, textarea:focus {
  outline: none;
  border-color: #EBA03B;
  box-shadow: 0 0 1px 1px rgba(235, 160, 59, 0.7);
}

input::placeholder {
  color: #ccc;
}

input[type=radio], input[type=checkbox], select {
  appearance: none;
  -webkit-appearance: none;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.checkbox input {
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #1f3134;
  position: relative;
  margin-right: 0.4em;
}
.checkbox input:after {
  content: "";
  display: block;
  position: absolute;
  width: 55%;
  height: 25%;
  border: solid white;
  border-width: 0 0 2px 2px;
  opacity: 0;
  top: 20%;
  left: 13%;
  transform: rotate(-50deg);
  transition: 0.2s;
}
.checkbox input:checked {
  background: #1f3134;
}
.checkbox input:checked:after {
  opacity: 1;
}

.radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.radio input {
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #AE5E05;
  border-radius: 50%;
  margin-right: 0.3em;
  position: relative;
  cursor: pointer;
}
.radio input:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #AE5E05;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}
.radio input:checked:before {
  transform: translate(-50%, -50%) scale(1);
}

.radio_area.fx .radio:not(:last-child) {
  margin-right: 1.4em;
}

.select {
  position: relative;
}
.select:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #dbdbdb transparent transparent transparent;
}
.select select {
  width: 100%;
  padding: 0.5em 2em 0.5em 0.6em;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
}
.select select:focus {
  outline: none;
  border-color: #EBA03B;
  box-shadow: 0 0 1px 1px rgba(235, 160, 59, 0.7);
}