@charset "UTF-8";
/* NotoSans */
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
/* M PLUS 1p */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500&display=swap");
/* font */
/* font option */
/* color */
/* opacity */
/**
 * 引数のfontSizeをremに変換する関数
 * @param fontSize フォントサイズ
 */
/**
* 引数の最大画面サイズから指定されたpx数を元にvwに変換する関数
* @param maxScreenSize 最大画面サイズ
* @param px 変換するpx数
*/
/**
* 引数のpx数と親要素のparentを元に割合を返す関数
* @param parent 基準となる画面幅
* @param px 変換するpx数
*/
/**
 * レスポンシブ
 * - sm:  576px〜
 * - md:  768px〜
 * - lg: 1024px〜
 * - xl: 1200px〜
 */
body {
  font-family: "Noto Sans Japanese", sans-serif;
  position: relative;
  line-height: 1.618;
}

.contents-wrapper {
  width: 100%;
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

img {
  width: 100%;
}

label {
  cursor: pointer;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  width: 98%;
}

.top .logo {
  width: 60%;
  margin: 0 auto;
  padding: 90px 0 0;
}

.top .h1-heading-wrapper {
  padding: 28px 0 40px;
}

.top .h1-heading {
  font-size: 1.5rem;
}

.top .text-wrapper .text + .text {
  margin: 8px 0 0;
}

.top .evaluation-item-list-wrapper {
  margin: 24px 0 0;
}

.form {
  padding: 60px 0 160px;
}

.form .uu-id {
  visibility: hidden;
}

.form .form-inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.form .form-block {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #F0DDDD;
  padding: 16px 24px;
}

.form .form-block + .form-block {
  margin: 8px 0 0;
}

.form .form-block-left {
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form .form-block-left .text {
  font-weight: bold;
}

.form .form-block-left span {
  font-size: 0.8125rem;
  color: #6a6a6a;
}

.form .form-block-left .number-status {
  height: 22px;
  color: #B85D43;
}

.form .form-block-left .count {
  color: #B85D43;
}

.form .form-block-left .count span {
  color: #B85D43;
  font-weight: bold;
  font-size: 0.9375rem;
  padding: 0 4px;
}

.form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form .form-row.ttl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form .form-row + .form-row {
  margin: 24px 0 0;
}

.form .ev-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form .ev-row + .ev-row {
  margin: 12px 0 0;
}

.form .input-number {
  padding: 8px 12px;
  border: solid #a5a5a5 2px;
  border-radius: 6px;
}

.form .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 140px;
  color: #8D3D3D;
  font-weight: bold;
}

.form .radio-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form .radio-wrapper label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

.form .radio-wrapper label + label {
  margin: 0 0 0 20px;
}

.form .form-submit-wrapper {
  text-align: center;
  padding: 16px 0 0;
}

.form .button-notice-text {
  text-align: center;
  font-size: 0.875rem;
  color: #B65757;
}

.form .button-notice-text.hide {
  visibility: hidden;
}

.form .submit-button {
  font-size: 1.25rem;
  border-radius: 8px;
  padding: 8px 0;
  width: 100px;
  color: white;
  background: #B65757;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 12px auto;
  display: block;
}

.form .submit-button:hover {
  opacity: .7;
}

.form .submit-button.disabled {
  background-color: #949494;
  pointer-events: none;
}

.thanks .message-wrapper {
  text-align: center;
  padding: 100px 0 0;
}

.thanks .h1-thanks {
  font-size: 2.5rem;
  color: #8D3D3D;
}

.thanks .logo-bottom {
  width: 160px;
  margin: 90px auto 0;
}
