body {
    font-size: 12px;
    color: #333;
    line-height: 1.4;
    letter-spacing: 0.1em;
    font-family: "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, Osaka, Sans-Serif
}

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

@media screen and (max-width: 767px) {
    .pc {
        display: none !important
    }
}

#Header {
    overflow: hidden;
    border-top: 3px solid #e80e10;
    background: -webkit-gradient(linear, left bottom, left top, from(#f3f3f3), to(#fff));
    background: linear-gradient(to top, #f3f3f3 0%, #fff 100%);
    margin-bottom: 0;
    padding: 0 20px
}

@media screen and (max-width: 767px) {
    #Header {
        border-bottom: 1px solid #cdcdcd;
        background: none;
        padding: 0 14px
    }
}

.head-inline {
    padding: 8px 0;
    max-width: 900px;
    margin: 0 auto
}

#Footer {
    padding: 12px 20px;
    border-top: 1px solid #cdcdcd
}

.foot-inline {
    max-width: 900px;
    margin: 0 auto;
    text-align: right
}

@media screen and (max-width: 767px) {
    .foot-inline {
        text-align: center
    }
}

#Content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px
}

#Content .titA {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    background: -webkit-gradient(linear, left bottom, left top, from(#f3f3f3), to(#fff));
    background: linear-gradient(to top, #f3f3f3 0%, #fff 100%);
    border-radius: 8px;
    border: 1px solid #cdcdcd;
    padding: 15px 25px;
    position: relative
}

#Content .titA:before {
    content: "";
    position: absolute;
    left: 9px;
    top: 8px;
    bottom: 8px;
    width: 6px;
    background: -webkit-gradient(linear, left bottom, left top, from(#fd4c09), to(#f18d01));
    background: linear-gradient(to top, #fd4c09 0%, #f18d01 100%)
}

@media screen and (max-width: 767px) {
    #Content .titA {
        font-size: 16px
    }
}

#Content .titB {
    padding: 10px;
    background: -webkit-gradient(linear, left bottom, left top, from(#f3f3f3), to(#fff));
    background: linear-gradient(to top, #f3f3f3 0%, #fff 100%);
    font-weight: bold;
    border: 1px solid #cdcdcd;
    border-bottom: 2px solid #fd4c09;
    border-radius: 8px 8px 0 0;
    margin-bottom: 20px
}

#Content .alert {
    margin-top: 10px;
    color: red;
    font-weight: bold;
}

#Content .alert.is_show {
    display: block
}

#Content .caution {
    margin-bottom: 20px
}

#Content .caution__list {
    margin-bottom: 20px;
    padding-left: 1.8em
}

#Content .caution__list li {
    list-style-type: disc;
    line-height: 1.5
}

#Content .caution__list li + li {
    margin-top: 10px
}

#Content .form-table {
    width: 100%;
    background: #cccccc;
    border-collapse: separate;
    border-spacing: 1px;
    margin-bottom: 20px
}

@media screen and (max-width: 767px) {
    #Content .form-table {
        border: 1px solid #ccc
    }
}

#Content .form-table tr th {
    width: 220px;
    vertical-align: top;
    text-align: left;
    padding: 9px 10px 5px 10px;
    border: 1px solid #ffffff;
    background-color: #fff4d9;
    font-weight: bold;
    color: #333;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    white-space: nowrap
}

#Content .form-table tr td {
    width: calc(100% - 220px);
    padding: 5px 10px 5px 10px;
    background-color: #ffffff;
    color: #333;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

@media screen and (max-width: 767px) {
    #Content .form-table {
        display: block
    }

    #Content .form-table tbody, #Content .form-table tr, #Content .form-table th, #Content .form-table td {
        display: block;
        width: 100% !important
    }

    #Content .form-table tr td {
        padding: 10px
    }
}

#Content .form-table input[type="text"] {
    width: 100%;
    padding: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

@media screen and (max-width: 767px) {
    #Content .form-table input[type="text"] {
        font-size: 14px
    }
}

#Content .form-table textarea {
    width: 98.3%;
    padding: 5px
}

@media screen and (max-width: 767px) {
    #Content .form-table textarea {
        font-size: 14px
    }
}

#Content .form-table .req {
    background: red;
    color: white;
    font-weight: bold;
    padding: 2px 5px;
    margin-left: 5px
}

#Content .form-table__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

#Content .form-table__select select {
    padding: 5px 20px 5px 5px;
    display: inline-block;
    -webkit-appearance: none;
    border: 1px solid #a9a9a9
}

#Content .form-table__select select::-ms-expand {
    display: none
}

@media screen and (max-width: 767px) {
    #Content .form-table__select select {
        font-size: 14px
    }
}

#Content .form-table__select:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #000000 transparent transparent transparent;
    -webkit-transform: translateX(-17px);
    transform: translateX(-17px);
    pointer-events: none
}

#Content .form-table__radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -2px
}

@media all and (-ms-high-contrast: none), print {
    #Content .form-table__radio {
        width: 417px
    }
}

#Content .form-table__radio label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
    margin-top: 5px
}

@media screen and (max-width: 767px) {
    #Content .form-table__radio label {
        font-size: 14px
    }
}

#Content .form-table__radio label input {
    margin-right: 5px
}

#Content .form-table__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

#Content .form-table__name label {
    width: 49%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap
}

#Content .form-table__name label input {
    width: 85%;
    margin-left: auto
}

#Content .form-table__tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

#Content .form-table__tel label {
    display: block;
    width: 30%
}

#Content .form-table--confirm tr th, #Content .form-table--confirm tr td {
    padding: 10px
}

#Content .form-pp {
    margin-bottom: 20px
}

#Content .form-pp__text {
    margin-bottom: 20px;
    line-height: 1.5
}

#Content .form-pp__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

#Content .form-pp__label label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 767px) {
    #Content .form-pp__label label {
        font-size: 14px
    }
}

#Content .form-pp__label label input {
    margin-right: 5px
}

#Content .form-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

#Content .form-btn button {
    font-size: 16px;
    padding: 5px;
    cursor:pointer;
}

#Content .form-btn button + button {
    margin-left: 10px
}

#Content .thanks {
    margin-bottom: 20px;
    border-bottom: 1px dashed black
}

#Content .thanks p {
    margin-bottom: 20px
}

/*# sourceMappingURL=index.css.map */
