@charset "UTF-8";
/* ====================================== */
/* ================= base ================= */
/* ====================================== */
/* フォント読み込み */
/* Google Fonts 
		Roboto(Regular 400, Bold 700), Noto Sans Japanese(Regular 400, Bold 700) */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@400;700&display=swap");

/* ベーススタイル */
html {
  font-size: 62.5%;
  color: #525252;
}

body {
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

#root {
  background-color: #f9fafd;
  font-size: 1.6rem;
  min-height: 100vh;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 80px;
}

@media (max-width: 1080px) {
  main {
    width: calc(100% - 32px);
  }
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

@media (max-width: 1080px) {
  .header {
    width: auto;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}

.header .phase {
  font-size: 2rem;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .header .phase {
    font-size: 1.6rem;
  }
}

.white-back {
  background-color: #fff;
  margin: 105px 0 0;
  padding: 40px 120px;
  box-sizing: border-box;
  max-width: 1100px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(45, 102, 196, 0.1019607843);
}

@media (max-width: 1080px) {
  .white-back {
    padding: 24px;
    margin-left: auto;
    margin-right: auto;
  }
}

h1 {
  font-size: 2.8rem;
  color: inherit;
  margin: 0;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 2rem;
  }
}

.section-title {
  color: #2648a4;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
}

.form-section {
  margin-top: 3.5rem;
}

.form-field {
  margin-bottom: 4.5rem;
}

.children-fields .form-field {
  margin-top: -3.5rem;
}

.field-label {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 15px;
  font-weight: bold;
}

.field-label.mark-only:not(.required) {
  display: none;
}

.field-label.required::after,
.item-name.required::after {
  content: '*必須';
  color: #ff6161;
  font-size: 1.2rem;
  margin-left: 15px;
  vertical-align: baseline;
}

.field-label.required.mark-only::after,
.item-name.required.mark-only::after {
  margin-left: 0;
}

.field-desc {
  font-size: 1.2rem;
  margin: 4px 0 0 16px;
}

.field-error {
  color: #ff6161;
  font-size: 1.4rem;
}

.children-fields {
  padding-left: 3.5rem;
}

@media (max-width: 1080px) {
  .children-fields {
    padding-left: 1rem;
  }
}

/* input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=date],
input[type=month],
textarea,
select, */
/* .form-field {
  max-width: 100%;
} */

input[type=text],
input[type=email],
input[type=tel],
input[type=number] {
  display: block;
  font-size: 1.6rem;
  padding: 2rem 10px;
  width: 50%;
  outline: none;
  border: 1px solid rgba(82, 82, 82, 0.2);
  border-radius: 4px;
  box-sizing: border-box;
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #525252;
}

@media (max-width: 1080px) {

  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number],
  div.input-text,
  .hier-checkbox .input-checkbox {
    width: 100%;
  }
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #b1b1b1;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus {
  border: 1px solid #e24043;
}

input[type=date],
input[type=month] {
  display: block;
  font-size: 1.6rem;
  padding: 2rem 10px;
  width: auto;
  /* width: 20%; */
  outline: none;
  border: 1px solid rgba(82, 82, 82, 0.2);
  border-radius: 4px;
  box-sizing: border-box;
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #525252;
}

textarea {
  display: block;
  font-size: 1.6rem;
  width: 100%;
  height: 8.4rem;
  padding: 16px;
  outline: none;
  border: 1px solid rgba(82, 82, 82, 0.2);
  border-radius: 4px;
  box-sizing: border-box;
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #525252;
  resize: vertical;
}

input[type=checkbox] {
  appearance: none;
  outline: none;
  border: 2px solid #e24043;
  border-radius: 2px;
  width: calc(1.6rem + 2px);
  height: calc(1.6rem + 2px);
  margin: -2px 0;
  flex-shrink: 0;
  cursor: pointer;
}

input[type=checkbox]:checked {
  background-color: #e24043;
}

input[type=checkbox]:checked::before {
  position: absolute;
  display: inline-block;
  content: "✓";
  font-weight: 700;
  transform: translateY(-2px) scale(1.3);
  color: #fff;
}

input[type=checkbox]+label {
  padding-left: 5px;
  cursor: pointer;
}

input[type=radio] {
  position: relative;
  appearance: none;
  outline: none;
  border: 2px solid #e24043;
  border-radius: 50%;
  width: calc(1.6rem + 2px);
  height: calc(1.6rem + 2px);
  margin: -2px 0;
  flex-shrink: 0;
  cursor: pointer;
}

input[type=radio]::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #e24043;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  transform: translate(-50%, -50%) scale(0);
  cursor: pointer;
}

input[type=radio]:checked::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
}

input[type=radio]+label {
  padding-left: 5px;
  cursor: pointer;
}

select {
  display: block;
  font-size: 1.6rem;
  max-width: 100%;
  padding: 2rem 1rem;
  outline: none;
  border: 1px solid rgba(82, 82, 82, 0.2);
  border-radius: 4px;
  box-sizing: border-box;
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #525252;
}

@media (max-width: 1080px) {
  select {
    padding: 1rem 0.5rem;
  }
}

select option {
  width: 100%;
}

select:focus {
  border: 1px solid #e24043;
}

select:disabled,
input:disabled,
textarea:disabled {
  color: #8c959f;
  background: #dddddd;
  border: 1px solid rgba(82, 82, 82, 0.2);
}

option {
  color: #525252;
}

option:disabled {
  color: #8c959f;
}

.field-option {
  margin-right: 10px;
}

.option-label {
  padding-left: 5px;
  cursor: pointer;
}

.date-selector {
  display: flex;
  flex-flow: row nowrap;
  gap: 1rem;
}

.date-selector .field-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.date-selector .form-field {
  margin: 0;
}

.date-selector .form-field .field-desc {
  font-size: 1.6rem;
  margin: 0;
}

.date-range {
  max-width: 100%;
}

.date-range .form-field {
  margin: 0;
}

.date-range> :first-child {
  display: flex;
  align-items: center;
}

.date-range> :first-child::after {
  content: '～';
  margin: 1rem;
}

.hier-dropdown-selector {
  width: 20rem !important;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.wrap {
  display: flex;
  flex-wrap: wrap;
}

.no-wrap {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.no-wrap * {
  white-space: nowrap;
}

.inline-desc .field-label {
  display: block;
}

.inline-desc input[type] {
  width: 50%;
  display: inline;
}

.inline-desc .field-desc {
  font-size: 1.6rem;
}

.inline-block {
  display: inline-block;
}

.separator {
  margin: 1rem;
}

.text-ellipsis {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.confirm-inline-desc div {
  width: 70%;
  display: inline-block;
  vertical-align: middle;
}

.white-back>div {
  margin-top: 16px;
}

.date-range-sep .input-text {
  border-color: transparent;
  background-color: transparent;
}


.big-button button.blue-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.vertical-middle-option input[type=checkbox],
.vertical-middle-option input[type=radio] {
  vertical-align: middle;
}

.newliner {
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.screen a {
  word-break: break-all;
}

.selectable-text-options {
  margin-bottom: 0.5rem;
}

.selectable-text-options+input[readonly] {
  background-color: #3897f830;
}

.selectable-button input[type="checkbox"] {
  display: none;
}

.selectable-button .option-label {
  display: inline-block;
  margin: 0.5rem 0;
  padding: .5rem 1rem;
  color: #3897f8;
  text-align: center;
  border: 1px solid #3178d6;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
}

.selectable-button .checked .option-label {
  background-color: #3897f8;
  color: #fff;
}

/* ############################################### */

.plus-button {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #e24043;
  margin-top: 8px;
  padding: 14px 24px;
  background-color: #fff;
  border: 1px solid #e24043;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .plus-button {
    font-size: 1.6rem;
    padding: 15px 25px;
  }
}

.item-name-oneline {
  display: inline-block;
  font-size: 1.4rem;
  margin: 0 1.2rem 5px 5px;
  vertical-align: baseline;
}

.remove-button {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #e24043;
  padding: 2px 10px;
  background-color: #fff;
  border: 1px solid #e24043;
  border-radius: 8px;
  cursor: pointer;
}

/* @media (max-width: 1080px) {
  .remove-button {
    font-size: 1.6rem;
    padding: 15px 25px;
  }
} */


.big-button {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 40px 0 0;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
}

.big-button button {
  width: 312px;
  padding: 16px 0;
  border-radius: 2.9rem;
  text-align: center;
  border: none;
}

.big-button button.blue-button {
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #e24043;
  color: #fff;
  cursor: pointer;
}

.big-button button.white-button {
  font-size: 1.8rem;
  font-weight: 700;
  background-color: rgba(82, 82, 82, 0.1019607843);
  color: #525252;
  cursor: pointer;
}

/* ========== ↓入力ボックス共通↓ ========== */
/* 複数の入力ボックスを横並びにする */
.one-set {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1080px) {
  .one-set {
    row-gap: 16px;
    column-gap: 5px;
  }
}

/* 自動で等幅の入力ボックスを並べる */
.equality-box>div {
  flex: 1;
}

@media (max-width: 1080px) {
  .one-set.equality-box {
    flex-direction: column;
  }
}

/* 横幅が半分のボックス（上記のように２つ以上のボックスが横並びになる際は除く） */
.single-half-box {
  width: calc(50% - 5px) !important;
}

@media (max-width: 1080px) {
  .single-half-box {
    width: 100% !important;
  }
}


/* ========== ↑複数行テキスト↑ ========== */
/* ========== ↓チェックボックス・ラジオボタン↓ ========== */
/* チェック箇所□○と選択肢名を改行させない (宣言済のためコメントアウト)
.nowrap {
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
}
 */
.nowrap:not(:last-of-type) input[type=checkbox]+label,
.nowrap:not(:last-of-type) input[type=radio]+label {
  margin-right: 100px;
}

@media (max-width: 1080px) {

  .nowrap:not(:last-of-type) input[type=checkbox]+label,
  .nowrap:not(:last-of-type) input[type=radio]+label {
    margin-right: 10px;
  }
}

/* .nowrap label {
  white-space: pre-wrap;
} */


/* ========== ↑チェックボックス・ラジオボタン↑ ========== */

/* ====================================== */
/* ============== privacy-policy ============== */
/* ====================================== */
.privacy-back {
  height: 400px;
  background-color: #fff;
  margin: 40px 0 0;
  box-sizing: border-box;
  max-width: 1100px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
}

.privacy-inside {
  overflow: hidden auto;
  margin: 24px 70px;
  height: calc(100% - 48px);
  padding: 10px 0;
  box-sizing: border-box;
}

.privacy-inside h2 {
  font-size: 1.92rem;
  margin: 0;
}

.privacy-inside h2+p {
  font-weight: 700;
  padding: 10px 0 5px;
}

.privacy-inside h3 {
  font-size: 1.6rem;
  margin: 25px 0 12px;
}

.privacy-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

@media (max-width: 1080px) {
  .privacy-consent {
    align-items: flex-start;
  }
}

.privacy-consent p {
  margin-bottom: 8px;
}

/* ====================================== */
/* =============== confirmation ============== */
/* ====================================== */
/* ========== ↓一行テキスト・チェックボックス・ラジオボタン・ドロップダウン確認↓ ========== */
.input-text,
.input-checkbox,
.input-radio,
.input-select {
  display: block;
  padding: 2rem 10px;
  width: 100%;
  border: 1px solid rgba(82, 82, 82, 0.2);
  border-radius: 4px;
  box-sizing: border-box;
  color: #525252;
  line-height: 1.21;
}

/* ========== ↑一行テキスト・チェックボックス・ラジオボタン・ドロップダウン確認↑ ========== */
/* ========== ↓複数行テキスト確認↓ ========== */
.input-textarea {
  display: block;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(82, 82, 82, 0.2);
  border-radius: 4px;
  box-sizing: border-box;
}

/* ========== ↑複数行テキスト確認↑ ========== */
/* ====================================== */
/* ============= completion-screen ============ */
/* ====================================== */
.completion-screen {
  text-align: center;
}

.completion-screen .white-back {
  margin-top: 0;
}

.thanks-text {
  margin: 90px 0 160px;
}

@media (max-width: 1080px) {
  .thanks-text {
    margin: 15px 0 46px;
    text-align: left;
  }
}

label .blue-label {
  color: #e24043;
  text-decoration: underline;
}

div .field-haed {
  margin-top: 3.5rem;
}

div .notice-message {
  margin-top: 0.5rem;
}

.notice-message .indent1 {
  margin-left: 2.0rem;
}

.notice-message .indent2 {
  margin-left: 4.0rem;
}

.notice-message .indent3 {
  margin-left: 6.0rem;
}

.notice-message .red-font {
  color: red;
}

input[type="text"][disabled] {
  -webkit-text-fill-color: #525252;
  opacity: 1;
  /* required on iOS */
}

.field-width-50per {
  width: 50%;
}

.confirm-item-name {
  display: inline-block;
  font-size: 1.4rem;
  margin: 0 0 5px 5px;
  vertical-align: baseline;
  height: 2.0rem;
}

.item-required {
  display: inline-block;
  color: #ff6161;
  font-size: 1.2rem;
  margin-left: 15px;
  vertical-align: baseline;
}

.input-text {
  display: block;
  padding: 1.5rem 10px;
  width: 100%;
  border: 1px solid rgba(82, 82, 82, 0.2);
  border-radius: 4px;
  box-sizing: border-box;
  color: #525252;
  line-height: 1.21;
  background-color: #eeeeee;
  min-height: 5.0rem;
}

.input-label {
  display: block;
  padding: 1.5rem 10px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 4px;
  box-sizing: border-box;
  color: #000000;
  line-height: 1.21;
  background-color: #ffffff;
  min-height: 5.0rem;
}

.input-checkbox,
.input-radio,
.input-select {
  display: block;
  padding: 1.5rem 10px;
  width: 50%;
  border: 1px solid rgba(82, 82, 82, 0.2);
  border-radius: 4px;
  box-sizing: border-box;
  color: #525252;
  line-height: 1.21;
  background-color: #eeeeee;
  min-height: 5.0rem;
}

.input-textarea {
  display: block;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(82, 82, 82, 0.2);
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #eeeeee;
}

.input-dateselector-year {
  align-items: center;
  width: 12.0rem;
  height: 5.0rem;
}

.input-dateselector-month {
  align-items: center;
  margin-left: 16px;
  width: 10.0rem;
  height: 5.0rem;
}

.input-dateselector-date {
  align-items: center;
  margin-left: 16px;
  width: 10.0rem;
  height: 5.0rem;
}

.confirm-field {
  margin-bottom: 3.0rem;
}


.confirm-desc {
  font-size: 1.2rem;
  margin: 0px 0px 0px 5px;
}

.date-selector .form-field .confirm-desc {
  font-size: 1.6rem;
  margin: 0;
}

input[type="file"] {
  display: none;
}

.fileUploadBtn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #dddddd;
  color: #000;
  cursor: pointer;
  outline: none;
  border: 1px solid rgba(82, 82, 82, 0.2);
  box-sizing: border-box;
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.3rem;
  padding: 2rem 0.5rem;
  vertical-align: middle;
  text-align: center;
  height: 6.0rem;
  margin-left: -1px;
}

.fileUploadBtn:hover,
.fileUploadBtn:focus {
  background: #eeeeee;
}

input[type="text"].fileUploadTextbox {
  font-size: 1.3rem;
  display: inline-block;
  width: 75%;
  vertical-align: middle;
  border-radius: 0px;
  height: 6.0rem;
}

.remove-file-button {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #e24043;
  background-color: #fff;
  border: 0px;
  cursor: pointer;
  padding-left: 0.5rem;
  padding-right: 0rem;
  padding-top: 0px;
  padding-bottom: 0px;
  vertical-align: middle;
}

.error-input {
  border: 1px solid #E7B8B8 !important;
  background: #F9ECE6 !important;
}

.logo-area {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075);
}

.logo-svg {
  width: 30%;
  padding: 20px;
}

@media (max-width: 1080px) {
  .logo-area {
    width: auto;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .logo-svg {
    width: 50%;
    padding: 20px;
  }
}