@charset "UTF-8";
body {
  font-size: 14px;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  display: block;
  cursor: pointer;
}

button {
  color: #333333;
  display: block;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
}

select {
  color: #333333;
}

.orange_button {
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  background: #FF662E;
  border: 1px solid #FF662E;
  box-shadow: 2px 2px 0 #BE3605;
}

.light_orange_button {
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  background: #FF9A2E;
  border: 1px solid #FF9A2E;
  box-shadow: 2px 2px 0 #FF662E;
}

.white_button {
  color: #FF662E;
  font-size: 14px;
  border-radius: 4px;
  background: #FF9A2E;
  border: 1px solid #FF662E;
  box-shadow: 2px 2px 0 #FF662E;
}

.light_gray_btn {
  color: #333333;
  font-size: 15px;
  border-radius: 4px;
  background-color: #D0D0D0;
  box-shadow: 2px 2px 0 #c0c0c0;
  text-align: center;
}

.dark_gray_btn {
  color: #FFFFFF;
  font-size: 18px;
  border-radius: 4px;
  background-color: #999999;
  box-shadow: 2px 2px 0 #5F5F5F;
  text-align: center;
}

.main_bg {
  background-image: url(/images/mainback_2.png);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 48px;
  padding-top: 35.2%;
}

header #sp_menu .menu_bottom {
  min-height: calc(100vh - 50px);
}

/*タイトル*/
.overview {
  padding: 0 20px;
}
.overview h2 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  line-height: 36px;
  padding: 48px 0;
}
.overview p {
  font-size: 14px;
  line-height: 24px;
}

.header_title {
  font-size: 20px;
  background: #fff;
  font-weight: bold;
  text-align: center;
  padding: 0.7em;
  position: relative;
  box-shadow: 0 4px 10px rgba(51, 51, 51, 0.12);
}
.header_title::before {
  content: "";
  background: #FF662E;
  position: absolute;
  top: 46%;
  left: 7%;
  width: 3px;
  height: 13px;
  border-radius: 50px;
  transform: rotate(-45deg);
}
.header_title::after {
  content: "";
  background: #FF662E;
  position: absolute;
  top: 30%;
  left: 7%;
  width: 3px;
  height: 13px;
  border-radius: 50px;
  transform: rotate(45deg);
}
.header_title .top_back_btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  margin: 0;
  z-index: 2;
}

.back_btn {
  padding-top: 36px;
  margin-left: 20px;
  color: #006AD5;
  border-bottom: solid 1px #006AD5;
  padding-bottom: 2px;
  display: inline-block;
}
.back_btn a, .back_btn button {
  color: #006AD5;
}
.back_btn img {
  float: left;
  padding-right: 10px;
  top: 2px;
  position: relative;
}

.checkbox_wrap {
  display: flex;
  flex-flow: wrap;
  flex-wrap: wrap;
}
.checkbox_wrap input {
  display: none;
}
.checkbox_wrap input[type=checkbox] + label {
  font-size: 14px;
  cursor: pointer;
  display: block;
  position: relative;
  padding: 9px 10px 9px 30px;
  background-color: #EBEBEB;
  box-shadow: 2px 2px 0 #c0c0c0;
  border-radius: 4px;
  margin: 4px 6px 4px 0;
}
.checkbox_wrap input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  left: 5px;
  top: 50%;
  border: none;
  border-radius: 4px;
  background-color: #FFF;
}
.checkbox_wrap input[type=checkbox]:checked + label {
  background-color: #FF662E;
  color: #ffffff;
}
.checkbox_wrap input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 13px;
  height: 9px;
  margin-top: -9px;
  top: 60%;
  left: 8px;
  transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #FF662E;
  z-index: 1;
}

.square_badge_wrap {
  display: flex;
  align-items: center;
}
.square_badge_wrap span.date {
  font-size: 12px;
  color: #999999;
  margin-right: 6px;
}
.square_badge_wrap .square_badge {
  font-size: 11px;
  text-align: center;
  padding: 2px 4px;
  border-radius: 2px;
  margin-right: 4px;
  border: solid 1px;
}
.square_badge_wrap .white_square {
  background-color: #ffffff;
  color: #FF662E;
}
.square_badge_wrap .orange_square {
  background-color: #FF662E;
  color: #ffffff;
  border: solid 1px #FF662E;
}
.square_badge_wrap .gray_square {
  background-color: #ffffff;
  color: #999999;
}

.bottom_fixed_button {
  padding: 7px 20px 8px 20px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  box-shadow: 0 -4px 10px 0 rgba(51, 51, 51, 0.12);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.frame_tail {
  width: 100%;
  background-color: #FFFBF6;
  border: solid 3px #FF9A2E;
  border-radius: 3px;
  position: relative;
}
.frame_tail:before {
  content: "";
  border-right: 13px solid transparent;
  border-bottom: 17px solid #FF9A2D;
  border-left: 13px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -17px;
  transform: translate(-50%, 0) rotate(180deg);
}
.frame_tail:after {
  content: "";
  border-right: 13px solid transparent;
  border-bottom: 17px solid #FFFBF6;
  border-left: 13px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translate(-50%, 0) rotate(180deg);
}
.frame_tail .flex_inner {
  display: flex;
  padding: 16px;
}
.frame_tail .flex_inner .photo_wrap {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-right: 16px;
  background-color: #FFFFFF;
}
.frame_tail .flex_inner .photo_wrap img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.frame_tail .flex_inner .text_wrap .name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 8px;
  margin-bottom: 12px;
  text-align: left;
}
.frame_tail .flex_inner .text_wrap .profile {
  font-size: 14px;
  text-align: left;
}
.frame_tail .text_wrap {
  flex: 1;
}
.frame_tail .profile_open {
  font-size: 13px;
  color: #006AD5;
  text-decoration: underline;
  cursor: pointer;
  text-align: right;
  margin: 0 16px 0 16px;
}
.frame_tail .profile_link {
  margin: 6px 0 0 0;
}

.input_title_wrap {
  display: flex;
  align-items: center;
}
.input_title_wrap .required {
  font-size: 11px;
  color: #FFFFFF;
  background-color: #FF662E;
  border-radius: 2px;
  padding: 3px 5px;
  margin-right: 5px;
}
.input_title_wrap .arbitrary {
  font-size: 11px;
  color: #FFFFFF;
  background-color: #999999;
  border-radius: 2px;
  padding: 3px 5px;
  margin-right: 5px;
}
.input_title_wrap .title {
  font-size: 14px;
  font-weight: bold;
}
.input_title_wrap .title .small_text {
  font-size: 10px;
  margin-left: 4px;
  font-weight: normal;
}

.add_item_btn {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
.add_item_btn .button {
  background-color: #FF9A2E;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  position: relative;
}
.add_item_btn .button:before {
  content: "";
  position: absolute;
  background-color: #FFFFFF;
  width: 16px;
  height: 4px;
  top: 13px;
  left: 7px;
}
.add_item_btn .button:after {
  content: "";
  position: absolute;
  background-color: #FFFFFF;
  width: 4px;
  height: 16px;
  top: 7px;
  left: 13px;
}
.add_item_btn p {
  font-size: 14px;
  color: rgba(51, 51, 51, 0.5019607843);
  padding-left: 5px;
}

.input_rule_wrap {
  display: flex;
}
.input_rule_wrap input {
  font-size: 16px;
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #333333;
  border: solid 1px #333333;
  border-radius: 4px;
  padding: 0 10px;
  height: 45px;
  width: 100%;
}
.input_rule_wrap input::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
}
.input_rule_wrap input::placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
}
.input_rule_wrap input[type=date] {
  position: relative;
}
.input_rule_wrap input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  z-index: 1;
}
.input_rule_wrap input[type=date]::after {
  content: "";
  background-image: url(/images/ico_calendar.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.input_rule_wrap .wavy_line {
  line-height: 38px;
  padding: 0 4px;
  font-weight: bold;
  font-size: 18px;
}
.input_rule_wrap textarea {
  font-size: 16px;
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #333333;
  border: solid 1px #333333;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
  height: 140px;
}
.input_rule_wrap textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
}
.input_rule_wrap textarea::placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
}
.input_rule_wrap .select_wrap {
  position: relative;
  width: 100%;
}
.input_rule_wrap .select_wrap:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  background-image: url(/images/arrow_bottom.svg);
  height: 6px;
  width: 10px;
  transform: translateY(-50%);
  background-size: cover;
}
.input_rule_wrap .select_wrap select {
  font-size: 16px;
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #333333;
  border: solid 1px #333333;
  border-radius: 4px;
  padding: 0 10px;
  height: 45px;
  width: 100%;
}
.input_rule_wrap .select_wrap select:invalid {
  color: rgba(51, 51, 51, 0.5019607843);
}
.input_rule_wrap .select_wrap select option {
  color: #333333;
}
.input_rule_wrap .select_wrap select option:first-child {
  color: rgba(51, 51, 51, 0.5019607843);
}

.toggle_switch {
  display: table;
  font-size: 32px;
}

.toggle_switch > input {
  display: none;
}

.toggle_switch > label {
  display: block;
  position: relative;
  width: 2em;
  height: 1em;
  border-radius: 1em;
  background-color: #FF662E;
  cursor: pointer;
}

.toggle_switch > input:checked + label {
  background-color: #999;
}

.toggle_switch > label::before {
  position: absolute;
  top: 0.05em;
  left: calc(100% - 1em);
  width: 0.9em;
  height: 0.9em;
  border-radius: 0.9em;
  background-color: #fff;
  content: "";
}

.toggle_switch > input:checked + label::before {
  left: 0.07em;
}

.toggle_switch > input + label::after {
  content: "可";
  position: absolute;
  font-size: 10px;
  color: #fff;
  top: 11px;
  left: 12px;
}

.toggle_switch > input:checked + label::after {
  content: "不可";
  position: absolute;
  left: auto;
  right: 10px;
}

.toggle_switch_common {
  display: table;
  font-size: 32px;
}

.toggle_switch_common > input {
  display: none;
}

.toggle_switch_common > label {
  display: block;
  position: relative;
  width: 2em;
  height: 1em;
  border-radius: 1em;
  background-color: #999;
  cursor: pointer;
}

.toggle_switch_common > input:checked + label {
  background-color: #FF662E;
}

.toggle_switch_common > label::before {
  position: absolute;
  top: 0.05em;
  left: 0.07em;
  width: 0.9em;
  height: 0.9em;
  border-radius: 0.9em;
  background-color: #fff;
  content: "";
}

.toggle_switch_common > input:checked + label::before {
  left: calc(100% - 1em);
}

.toggle_switch_common > input + label::after {
  content: "OFF";
  position: absolute;
  font-size: 10px;
  color: #fff;
  top: 11px;
  right: 10px;
}

.toggle_switch_common > input:checked + label::after {
  content: "ON";
  left: 12px;
  right: auto;
}

.csrf_error{
    padding: 10px 0;
    line-height: 1.3;
    background: #ff662e;
    box-shadow: 3px 3px 6px #696969;
    color: #fff;
    width: 290px;
    font-size: 12px;
    border-radius: 4px;
    position: fixed;
    bottom: 60px;
    right: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.csrf_error img{
    margin: 0 8px;
}
