/* 共通CSS*/
*
{
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.contents_wrapper .inner
{
    padding: 31px 40px 80px;
}

.contents_wrapper .inner h2
{
    font-size: 1.875rem;
    font-weight: 700;
    border-left: 3px solid #08519f;
    padding: 0 0 0 0.5em;
    margin-bottom: 27px;
}

/* ページタイトル（block-wrapper）*/
.block-wrapper-margin
{
    margin-top: 48px;
}

.block_title
{
    text-align: center;
    margin: 1rem;
    width: 98%;
    color: #08519f;
    font-weight: 700;
    font-size: 1.25rem;
}

/* エラー表示 */
.form-all-errors
{
    margin-top: 1rem;
    color: #f80606;
    text-align: center;
}

/* テーブルレイアウト */
.form_table
{
    white-space: normal;
    word-break: break-word;
}

.form_table td
{
    border-bottom: 1px solid #dbdbdb;
}

.form_table td:first-child
{
    width: 200px;
}

.form_table input.w-100
{
    border: 1px solid #9f9f9f;
    padding: 8px 8px;
    text-align: left;
    vertical-align: middle;
    border-radius: 4px;
    height: 46px;
    width: 752px;
}

.form_table input.w-50
{
    border: 1px solid #9f9f9f;
    padding: 8px 8px;
    text-align: left;
    vertical-align: middle;
    border-radius: 4px;
    height: 46px;
    width: 360px;
}

.form_table td input:nth-child(2)
{
    margin-left: 30px;
}

.form_table input,
.form_table textarea,
.form_table select
{
    border: 1px solid #9f9f9f;
    padding: 8px 8px;
    text-align: left;
    vertical-align: middle;
    border-radius: 4px;
}

.form_table input.radiobox
{
    width: auto;
}

/* テーブルレイアウト*/
.form_table
{
    width: 100%;
    margin: 0 auto 0;
    text-align: left;
}

.form_table td:first-child
{
    width: 220px;
}

.form_table td
{
    padding: 18px 8px;
    text-align: left;
    /* vertical-align: middle; */
    vertical-align: top;
}

.form_table input.w-100
{
    width: 94%;
}

.form_table input,
.form_table textarea,
.form_table select
{
    border: 1px solid #9f9f9f;
    padding: 8px 8px;
    text-align: left;
    vertical-align: middle;
    border-radius: 4px;
    width: 45%;
}

.form_table textarea,
.form_table select
{
    width: 94%;
}

.form_table .i_required
{
    padding: 4px 10px;
    text-align: center;
    color: #fff;
    vertical-align: middle;
    background: #d4213e;
    border-radius: 8px 8px;
    font-size: 0.75rem;
    margin-left: 6px;
}

/* ボタンレイアウト */
.btns
{
    display: flex;
    justify-content: center;
    margin-top: 65px;
    gap: 44.67px;
}

@media (max-width: 790px)
{
    .btns
    {
        display: block;
    }
}

.btns .form-button
{
    width: 100%;
    max-width: 315.33px;
    height: 64px;
    margin: 0 22.3px 0;
}

img .btn_apply:hover
{
    opacity: 0.8;
}

.btn
{
    position: relative;
    display: flex;
    margin: 0;
}

.btn.btn_right
{
    justify-content: flex-end;
}

.btn-01
{
    width: 315.33px;
    max-width: none;
    display: block;
    position: relative;
}

@media screen and (max-width: 790px)
{
    .btn-01
    {
        width: 100%;
        max-width: 315.33px;
    }
}

@media screen and (max-width: 320px)
{
    .btn-01
    {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 260px)
{
    .btn-01
    {
        font-size: 0.5rem;
    }
}

input.btn-01
{
    height: 64px;
    width: 315.33px;
    max-width: none;
}

input.btn-01[name="withdrawal_button"]
{
    display: none;
}

.btn
{
    display: flex;
    position: relative;
    margin: 0;
    gap: 44.67px;
}

.btns .form-button
{
    width: 100%;
    max-width: 315.33px;
    height: 64px;
    margin: 0 22.3px 0;
}

.btn_apply:hover
{
    opacity: 0.8;
}

img .btn_apply:hover
{
    opacity: 0.8;
}

.btn
{
    position: relative;
    display: flex;
    margin: 0;
}

/* input.btn-01
{
    height: 64px;
    width: 315.33px;
    max-width: none;
} */
.btn-01::after
{
    right: 20px;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.75rem;
    height: 1.75rem;
    background-image: url("../../images/btn_right_icon.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
    z-index: 2;
    display: block;
}

@media (max-width: 350px)
{
    .btn-01::after
    {
        right: 10px;
        width: 1.25rem;
        height: 1.25rem;
    }
}

.btn-mini::after
{
    right: 20px;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0.875rem;
    /* Half of 1.75rem */
    height: 0.875rem;
    /* Half of 1.75rem */
    background-image: url("../../images/btn_right_icon.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
    z-index: 2;
    display: block;
}

@media (max-width: 350px)
{
    .btn-mini::after
    {
        right: 10px;
        width: 0.625rem;
        /* Half of 1.25rem */
        height: 0.625rem;
        /* Half of 1.25rem */
    }
}

@media (max-width: 270px)
{
    .btn-01::after
    {
        right: 7px;
        width: 1rem;
        height: 1rem;
    }
}

.btn-01:hover
{
    opacity: 0.8;
}

input.hidden
{
    display: none;
}
