@charset "UTF-8";
.error {
  color: #f00; }

.resultInfo {
  display: flex;
  width: 100%;
  height: 3em;
  justify-content: space-between;
  margin-top: 1.8em; }
  .resultInfo .prev,
  .resultInfo .next {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 153, 153, 0.5);
    font-weight: bold;
    background-color: #ebebeb;
    white-space: nowrap;
    padding: 0 1.4em; }
  .resultInfo .prev.active,
  .resultInfo .next.active {
    color: #099; }
    .resultInfo .prev.active:hover,
    .resultInfo .next.active:hover {
      opacity: 0.7;
      cursor: pointer; }
  .resultInfo .prev {
    margin-right: 1em; }
    .resultInfo .prev span {
      padding-left: 0.5em; }
    .resultInfo .prev::before {
      content: "\f104";
      font-family: FontAwesome; }
  .resultInfo .next {
    margin-left: 1em; }
    .resultInfo .next span {
      padding-right: 0.5em; }
    .resultInfo .next::after {
      content: "\f105";
      font-family: FontAwesome; }
  .resultInfo .result {
    display: flex;
    width: 100%;
    justify-content: center;
    font-weight: bold;
    align-items: center;
    color: #099;
    background-color: #ebebeb; }
  .resultInfo.error .result {
    color: #F00;
    background-color: #FEE; }

.resultItem {
  margin-top: 2em; }
  .resultItem.private {
    opacity: 0.5; }
  .resultItem header h3 {
    display: block;
    color: #FFF;
    background-color: #099; }
    .resultItem header h3 .head {
      display: block;
      float: left;
      font-size: 20px;
      line-height: 1.5em;
      font-weight: bold; }
    .resultItem header h3 .place {
      display: block;
      float: right;
      color: #099;
      background-color: #FFF;
      line-height: 1.5em;
      opacity: 0.25; }
      .resultItem header h3 .place.active {
        opacity: 1; }
  .resultItem header .membership {
    display: block;
    background-color: #fff3b3;
    font-weight: bold;
    line-height: 1.5em; }
  .resultItem .treatment {
    background-color: #e7f2f2; }
    .resultItem .treatment .head {
      color: #099;
      font-weight: bold; }

.form input[type="text"],
.form input[type="email"],
.form input[type="number"],
.form input[type="tel"],
.form textarea {
  display: block;
  appearance: none;
  border: 2px solid #CCC;
  border-radius: 4px;
  line-height: 1.5em;
  padding: 0.25em;
  outline: none;
  color: #333;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .form input[type="text"]:hover,
  .form input[type="email"]:hover,
  .form input[type="number"]:hover,
  .form input[type="tel"]:hover,
  .form textarea:hover {
    border-color: #099; }
  .form input[type="text"].readonly,
  .form input[type="email"].readonly,
  .form input[type="number"].readonly,
  .form input[type="tel"].readonly,
  .form textarea.readonly {
    border-color: transparent; }
  .form input[type="text"].error,
  .form input[type="email"].error,
  .form input[type="number"].error,
  .form input[type="tel"].error,
  .form textarea.error {
    border-color: #F00;
    background-color: #FEE; }
.form input[type="number"] {
  -moz-appearance: textfield; }
.form input[type="number"]::-webkit-outer-spin-button,
.form input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }
.form .file input[type="text"],
.form .file input[type="email"],
.form .file input[type="number"],
.form .file input[type="tel"] {
  display: inline-block; }
.form .file .imgBtn {
  display: inline-block;
  width: 4em;
  text-align: center;
  background-color: #CCC;
  border: 2px solid #CCC;
  border-radius: 4px;
  line-height: 1.5em;
  padding: 0.25em;
  outline: none;
  color: #FFF;
  font-weight: bold;
  margin-left: 0.5em; }
  .form .file .imgBtn:hover {
    background-color: #099;
    border-color: #099;
    cursor: pointer; }
.form .value {
  padding: 0.25em; }
.form textarea {
  resize: none; }

.select {
  display: inline-block;
  position: relative;
  border: 2px solid #CCC;
  border-radius: 4px; }
  .select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    color: #333;
    background: transparent;
    display: block;
    padding: 0.6em 2em 0.6em 1em;
    line-height: 1.625em;
    cursor: pointer; }
    .select select::-ms-expand {
      display: none; }
    .select select::-ms-value {
      color: #333;
      background: none; }
    .select select optgroup {
      font-style: normal; }
  .select:hover {
    border-color: #099; }
  .select::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    right: 0.5em;
    top: calc( 50% - 0.275em );
    border-top: 0.5em solid #099;
    border-right: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
    border-left: 0.5em solid transparent;
    z-index: -1; }
  .select + .select {
    margin-left: 2.5em; }
    .select + .select::before {
      content: "\f105";
      font-family: FontAwesome;
      position: absolute;
      left: -1.625em;
      top: 0.5em; }
  .select + .inline {
    display: inline-block; }

.required {
  color: #F33; }

.resultT {
  width: 100%; }
  .resultT th {
    text-align: left;
    white-space: nowrap;
    color: #099;
    font-weight: bold; }
  .resultT .url th {
    vertical-align: middle; }
    .resultT .url th span {
      display: block;
      width: 4.5em;
      color: #FFF;
      background-color: #099;
      text-align: center;
      border-radius: 4px;
      line-height: 1.2em; }
  .resultT .url a {
    font-weight: bold;
    word-break: break-all; }

.formT {
  width: 100%; }
  .formT .form-item {
    position: relative; }
  .formT th {
    text-align: left;
    white-space: nowrap; }

.checkbox {
  display: inline-block;
  padding: 0.375em 1em 0.875em 2em; }

.checkbt {
  display: block;
  padding: 1.125em  0.5em 1.125em 2em;
  border: 2px solid #CCC;
  border-radius: 4px;
  text-align: center; }
  .checkbt:hover {
    border-color: #099; }

.checkbox,
.checkbt {
  line-height: 1.375em;
  text-indent: -1.75em; }
  .checkbox input[type="checkbox"],
  .checkbt input[type="checkbox"] {
    display: none; }
    .checkbox input[type="checkbox"] + span,
    .checkbt input[type="checkbox"] + span {
      position: relative;
      padding-left: 1.75em; }
      .checkbox input[type="checkbox"] + span::before,
      .checkbt input[type="checkbox"] + span::before {
        content: "";
        display: block;
        width: 1.375em;
        height: 1.375em;
        background-color: #FFF;
        border: 2px solid #CCC;
        border-radius: 4px;
        position: absolute;
        left: 0;
        top: calc( 50% - 0.6875em ); }
      .checkbox input[type="checkbox"] + span::after,
      .checkbt input[type="checkbox"] + span::after {
        content: "";
        display: block;
        position: absolute;
        left: 0.45em;
        width: 0.5em;
        height: 1em;
        border-bottom: 3px solid #099;
        border-right: 3px solid #099;
        transition: 0.2s ease;
        top: calc( 50% - 0.6875em + 0.3em );
        transform: rotate(80deg);
        opacity: 0; }
    .checkbox input[type="checkbox"]:checked + span::after,
    .checkbt input[type="checkbox"]:checked + span::after {
      top: calc( 50% - 0.6875em + 0.1em );
      transform: rotate(40deg);
      opacity: 1; }
  .checkbox:hover input[type="checkbox"]:not(.readonly) + span,
  .checkbt:hover input[type="checkbox"]:not(.readonly) + span {
    cursor: pointer; }
    .checkbox:hover input[type="checkbox"]:not(.readonly) + span::before,
    .checkbt:hover input[type="checkbox"]:not(.readonly) + span::before {
      border-color: #099; }
  .checkbox .nowrap,
  .checkbt .nowrap {
    display: inline-block;
    text-indent: 0; }

.radio {
  display: inline-block;
  padding: 0 1em 0.5em 2em;
  line-height: 1.375em;
  text-indent: -1.75em; }
  .radio input[type="radio"] {
    display: none; }
    .radio input[type="radio"] + span {
      position: relative;
      padding-left: 1.75em; }
      .radio input[type="radio"] + span::before {
        content: "";
        display: block;
        width: 1.375em;
        height: 1.375em;
        background-color: #FFF;
        border: 2px solid #CCC;
        border-radius: 0.6875em;
        position: absolute;
        left: 0;
        top: calc( 50% - 0.6875em ); }
      .radio input[type="radio"] + span::after {
        content: "";
        display: block;
        position: absolute;
        left: 0.3em;
        background-color: #099;
        border-radius: 0.3875em;
        transition: 0.2s ease;
        width: 0.775em;
        height: 0.775em;
        top: calc( 50% - 0.6875em + 0.3em );
        opacity: 0; }
    .radio input[type="radio"]:checked + span::after {
      opacity: 1; }
  .radio:hover input[type="radio"]:not(.readonly) + span {
    cursor: pointer; }
    .radio:hover input[type="radio"]:not(.readonly) + span::before {
      border-color: #099; }
  .radio .nowrap {
    display: inline-block;
    text-indent: 0; }

.notice {
  background-color: #ebebeb;
  margin-top: 1.5em;
  padding: 0.5em;
  line-height: 1.5em;
  text-align: center; }
  .notice .checkbox {
    padding-bottom: 6px; }

.submit {
  display: flex;
  justify-content: space-between;
  width: 12em;
  text-align: center;
  margin: 2em auto 0; }
  .submit input, .submit button {
    display: block;
    cursor: pointer;
    margin: 0;
    padding: 0.6em 0 0.5em;
    width: 12em;
    height: 2.5em;
    line-height: 1.4em;
    -webkit-appearance: none;
    border-radius: 4px;
    color: #FFF;
    background-color: #099;
    border: 0 solid #099;
    outline: none; }
    .submit input:hover, .submit button:hover {
      background-color: #00a8a8; }

@media screen and (min-width: 768px), print {
  .resultItem header h3 .head {
    padding: 9px 32px 9px; }
  .resultItem header h3 .place {
    font-size: 16px;
    padding: 0.25em 0.5em;
    border-radius: 4px;
    margin-top: 8px;
    margin-right: 8px; }
  .resultItem header .membership {
    padding: 7px 32px 5px; }
  .resultItem .img {
    padding-top: 1.8em;
    padding-right: 32px; }
  .resultItem .treatment {
    margin: 1em 1em 0;
    padding: 11px 16px 10px; }
    .resultItem .treatment .body {
      padding: 0 1em; }
  .resultItem .publish {
    font-size: 14px;
    line-height: 1.5em;
    text-align: right;
    padding: 0 16px;
    margin-top: 0.5em; }

  .form label {
    /*			line-height: 34px; */
    /*			padding-top: 6px;
    			padding-bottom: 6px; */ }
  .form .input-ss {
    width: 25%; }
  .form .input-s {
    width: 50%; }
  .form .input-m {
    width: 75%; }
  .form .input-l {
    width: 100%; }
  .form input[type="text"],
  .form input[type="email"],
  .form input[type="number"],
  .form input[type="tel"],
  .form textarea {
    margin-top: -0.25em;
    margin-bottom: 0em; }
  .form textarea {
    width: 100%;
    height: 6em; }
    .form textarea[name='hours'] {
      height: 12em; }
    .form textarea[name='report'] {
      height: 12em; }
  .form ul.error {
    margin-top: 6px; }

  .resultT {
    margin-top: 1.8em; }
    .resultT th {
      vertical-align: top;
      padding: 0 0 0.5em 2em;
      height: auto;
      width: 7em; }
    .resultT td {
      vertical-align: top;
      padding: 0 1em 0.5em 0;
      height: auto; }

  .formT {
    margin-top: 1em; }
    .formT .form-item {
      padding-right: 2em; }
      .formT .form-item::after {
        content: "：";
        display: block;
        position: absolute;
        top: 50%;
        right: 0px;
        transform: translateY(-50%); }
    .formT .ttl .form-item {
      padding-right: 0; }
      .formT .ttl .form-item::after {
        content: ""; }
    .formT .required {
      display: block;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 1.5em; }
    .formT th {
      color: #099;
      font-weight: bold;
      vertical-align: top;
      padding: 0 1em 1em 2.5em;
      height: auto; }
    .formT .ttl {
      font-size: 20px;
      line-height: 1.8em;
      font-weight: bold;
      color: #666;
      padding-left: 0;
      padding-top: 1em; }
      .formT .ttl.vtop {
        padding-top: 0; }
      .formT .ttl .bracket {
        font-size: 0.8em; }
    .formT th:not(.ttl) {
      padding-top: 0.15em; }
    .formT td {
      vertical-align: top;
      padding: 0 1em 1em 0;
      height: auto; }
      .formT td.c3 {
        padding-right: 0; }
        .formT td.c3 > * {
          display: block;
          width: 33.333%;
          float: left; }
        .formT td.c3 sup {
          color: #099; }
        .formT td.c3 .note {
          color: #099;
          clear: both;
          display: block;
          width: auto;
          margin-top: 0.15em; }
      .formT td.c2 {
        padding-right: 0; }
        .formT td.c2 > * {
          display: block;
          width: calc( 50% - 0.5em );
          float: left; }
          .formT td.c2 > *:first-child {
            margin-right: 1em; }
    .formT .form-item {
      /*			padding-right: 48px; */ }
    .formT .required {
      font-size: 12px;
      line-height: 20px;
      border-radius: 4px; }

  .resultInfo + .formT {
    margin-top: 3em; }

  .submit {
    font-size: 20px;
    line-height: 1.5em; } }
@media screen and (max-width: 767px) {
  .resultItem header h3 .head {
    padding: 9px 14px 9px; }
  .resultItem header h3 .place {
    font-size: 10px;
    padding: 0.15em 0.5em 0.1em;
    border-radius: 2px;
    margin-top: 4px;
    margin-right: 4px;
    margin-bottom: -0.25em; }
  .resultItem header .membership {
    padding: 7px 14px 5px; }
  .resultItem .treatment {
    margin: 1em 0 0;
    padding: 0.4em 0.5em; }
    .resultItem .treatment .head {
      font-size: 15px; }
    .resultItem .treatment .body {
      padding: 0 0 0 1em; }
  .resultItem .publish {
    font-size: 12px;
    line-height: 1.5em;
    text-align: right;
    margin-top: 0.5em; }

  .form input[type="text"],
  .form input[type="email"],
  .form input[type="number"],
  .form input[type="tel"],
  .form select,
  .form textarea {
    font-size: 16px; }
  .form label {
    line-height: 26px; }
  .form .input-ss {
    width: 50%; }
  .form .input-s,
  .form .input-m,
  .form .input-l {
    width: 100%; }
  .form textarea {
    width: 100%;
    height: 8em; }
    .form textarea[name='report'] {
      height: 12em; }
  .form ul.error {
    margin-top: 4px; }
  .form .file input[type="text"],
  .form .file input[type="email"],
  .form .file input[type="number"],
  .form .file input[type="tel"] {
    width: calc( 100% - 4em ); }

  .resultT {
    margin-top: 1em; }
    .resultT th {
      display: block;
      font-size: 15px;
      padding: 0 0.5em; }
    .resultT td {
      display: block;
      padding: 0 0.5em 0.5em 1.5em; }
    .resultT tr:last-child td {
      padding-bottom: 0; }

  .formT {
    margin-top: 1.5em; }
    .formT .checkbox {
      padding: 0.125em 1em 0.125em 2em; }
    .formT .radio {
      padding: 0.125em 1em 0.125em 2em; }
    .formT th,
    .formT td {
      display: block; }
    .formT .ttl {
      font-size: 18px;
      line-height: 1.8em;
      font-weight: bold;
      color: #666;
      margin-bottom: 0.5em; }
      .formT .ttl .bracket {
        font-size: 0.777em; }
    .formT .required {
      margin-left: 0.5em; }
    .formT th:not(.ttl) {
      padding: 0.15em 0.5em;
      margin-bottom: 0.6em;
      background-color: #b3e6e6; }
    .formT td {
      padding: 0 0 1em; }
      .formT td.c3 {
        padding-right: 0; }
        .formT td.c3 > * {
          display: inline; }
        .formT td.c3 sup {
          color: #099; }
        .formT td.c3 .note {
          color: #099;
          clear: both;
          display: block;
          width: auto;
          margin-top: 0.5em; }
      .formT td.c2 {
        padding-right: 0; }
        .formT td.c2 > * {
          display: block;
          width: calc( 50% - 0.5em );
          float: left; }
          .formT td.c2 > *:first-child {
            margin-right: 1em; }
    .formT tr:last-child td {
      padding-bottom: 0; }
    .formT .required {
      font-size: 10px;
      line-height: 16px;
      padding-top: 2px;
      border-radius: 3px; }

  .submit {
    font-size: 18px;
    line-height: 1.5em; } }
