@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: rgba(228, 242, 254, 0.4);
    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: #2648a4;
    margin: 0;
}

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

    .title-hint {
        text-align: center;
        font-size: 1.8rem;
    }
}

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

.section-title-with-description {
    color: #2648a4;
    font-size: 1.6rem;
    font-weight: 700;
}

.section-description {
    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,
.confirm-item-name {
    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;
}

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

.field-desc,
.confirm-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[class*='input-'] {
        width: 100%;
    }

    div.input-number {
        width: calc(100% - 2em);
    }
}

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 #3897f8;
}

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 #3178d6;
    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: #3178d6;
}

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 #3178d6;
    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: #3178d6;
    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 #3897f8;
}

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,
.inline-desc .confirm-desc,
.confirm-inline-desc .confirm-desc {
    font-size: 1.6rem;
    margin: 0 0 0 16px;
}

@media (max-width: 1080px) {
    .inline-desc .field-desc,
    .inline-desc .confirm-desc,
    .confirm-inline-desc .confirm-desc {
        margin-left: 8px;
    }

    /* div[class*="input-dateselector"].item-container,
  .date-range-sep.item-container {
    margin-right: 8px;
  } */
}

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

.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 {
    margin-right: 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;
}

.form-field-label {
    font-size: 1.6rem;
    font-weight: bold;
}

.sample-image {
    margin: 4px 0 0 16px;
    max-width: 40rem;
}

.sample-image img {
    width: 100%;
}

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

.confirm-field.dateselector .confirm-item-name {
    margin-right: -999px;
}

.has-error input,
.has-error select,
.has-error textarea {
    border-color: #e7b8b8;
    background: #f9ece6;
}

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

div[class*='input-dateselector'] {
    display: flex;
    width: auto;
    margin-left: 0;
    margin-right: 16px;
}

div[class*='input-dateselector'] .input-text {
    width: auto;
    min-width: 5rem;
    text-align: center;
}

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

.plus-button {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3897f8;
    margin-top: 8px;
    padding: 14px 24px;
    background-color: #fff;
    border: 1px solid #3178d6;
    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: #3897f8;
    padding: 2px 10px;
    background-color: #fff;
    border: 1px solid #3178d6;
    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: #3897f8;
    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;
} */

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

/* ====================================== */

/* ====================================== */
/* =============== 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;
    word-break: break-all;
}

/* ========== ↑一行テキスト・チェックボックス・ラジオボタン・ドロップダウン確認↑ ========== */
/* ========== ↓複数行テキスト確認↓ ========== */
.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: #3897f8;
    text-decoration: underline;
}

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

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

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: 5rem;
}

.input-number {
    display: block;
    padding: 1.5rem 10px;
    width: 15%;
    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: 5rem;
}

.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: 5rem;
}

.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: 5rem;
}

.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: 12rem;
    height: 5rem;
}

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

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

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

/* .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: 6rem;
    margin-left: -1px;
}

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

.fileUploadBtnDisabled {
    display: inline-block;
    padding: 1rem 2rem;
    background: #eeeeee;
    color: #cccccc;
    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: 6rem;
}

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

input[type='text'].fileUploadTextboxDisabled {
    font-size: 1.3rem;
    display: inline-block;
    background: #eeeeee;
    width: 75%;
    vertical-align: middle;
    border-radius: 0px;
    height: 6rem;
}

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

.confirm-field .confirm-hide {
    display: none;
}

.logo-area {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    background-color: #fff;
}

.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;
    }
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    height: 0;
    overflow: visible;
}

table {
    margin-bottom: 1em;
    margin-top: 1em;
    border-collapse: collapse;
    border-spacing: 0;
}

tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

td {
    display: table-cell;
    vertical-align: inherit;
    border: 1px groove #000000;
}
