/*----------------------------------------
    head
 ----------------------------------------*/
/* スマートフォン */
@media (max-width: 991.9px) {
    .head{
        padding-top: 5px;
        font-size: 2.5rem;
        text-align: center;
        line-height: 30px;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .head{
        line-height: 120px;
    }
}

/*----------------------------------------
    body
 ----------------------------------------*/
body , html {
    font-family: 'Noto Sans JP', sans-serif;
    color: #323232;
    background-color: #fff;
    height: 100%;
}
/* スマートフォン */
/*@media (max-width: 991.9px) {
    body {
        font-size: 18px;
        -webkit-text-size-adjust: 100%;
        min-width: initial;
    }
}*/

/*----------------------------------------
    画面表示
 ----------------------------------------*/
/* 中央に表示 */
.main-width {
    padding: 10px;
    margin: 0px auto;
    background: #fff;
    overflow: hidden;
    width: 100%;
    max-width: 740px;
    position: relative;
}
/* パソコン（幅を固定） */
@media (min-width: 992px) {
    .main-width {
        width: 960px;
        /*overflow: visible;*/
    }
}
/* 幅480px未満（幅を固定） */
@media (max-width: 479px) {
    .main-width{
        width:480px;
    }
}

/* 表示調整 */
.main{
    width:100%;
    max-width: 740px;
    height:auto;
    margin:auto;
    text-align:left;
    min-height: 62vh;
}

/*----------------------------------------
    パンくずリスト
 ----------------------------------------*/
.bread-crumbs {
    background-color: transparent;
    font-weight: 600;
    text-align: center;
    font-size: 1.3rem;
    list-style: none;
    overflow: hidden;
    padding: 0 18px 0 0;
    display: table;
    table-layout: fixed;
    width: 97.5%;
    margin: 0 12px;
}

.bread-crumbs li {
    display: table-cell;
    vertical-align: middle;
    z-index: 0;
    margin-right: 20px;
}

.bread-crumbs li span {
    text-decoration: none; 
    padding: 7px 0 7px 29px;
    background-color: #dbeeed;
    position: relative;
    display: block;
}

.bread-crumbs li span:after {
    content: " "; 
    display: block;
    width: 0; 
    height: 0;
    border-style: solid;
    border-width: 80px 0 80px 20px;
    border-color: transparent transparent transparent #dbeeed;
    position: absolute;
    top: 50%;
    margin-top: -80px;
    left: 99%;
    z-index: 2;
}

.bread-crumbs li span:before {
    content: " ";
    display: block;
    width: 0; 
    height: 0;
    border-style: solid;
    border-width: 80px 0 80px 20px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 50%;
    margin-top: -80px;
    left: 99%;
    margin-left: 3px;
    z-index: 1;
}

/* パンくずリスト現在項目・過去項目 */

.end span {
    background-color: #dbeeed !important;
}

.now span { 
    background-color: #20b2aa !important;
    color: #fff !important;
}

.now span:before, end span:before {
    border-color: transparent transparent transparent #fff !important;
}

.now span:after {
    border-color: transparent transparent transparent #20b2aa !important;
}

.end span:after {
    border-color: transparent transparent transparent #dbeeed !important;
}

/*----------------------------------------
    注意事項リスト
 ----------------------------------------*/
/* スマートフォン */
@media (max-width: 991.9px) {
    .notes-link {
        font-size: 1.7rem;
        width: 90%;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .notes-link {
        font-size: 16px;
        width: 97.5%;
    }
}
/*----------------------------------------
    div内位置変更
 ----------------------------------------*/
/* 上下中央寄せ */
.middle{
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    word-break:break-all;
    align-items: center;
    padding-bottom: 1px;
    padding: 20px 0px 20px 20px;
}

/* 上下中央寄せ(インライン用) */
span[class = middle]{
    display: inline-block;
}

/* 上下左右中央寄せ(middleと併用)　*/
.middle-center{
    -webkit-box-pack:center;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:center;/*--- IE10 ---*/
    -webkit-justify-content:center;/*--- safari（PC）用 ---*/
    justify-content:center;
}

/* 上下中央右寄せ(middleと併用)　*/
.middle-right{
    -webkit-box-pack:end;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:end;/*--- IE10 ---*/
    -webkit-justify-content:flex-end;/*--- safari（PC）用 ---*/
    justify-content:flex-end;
}

.row {
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

/*----------------------------------------
    DIV幅調整
 ----------------------------------------*/
.row-0 {
    margin-left: 0px;
    margin-right: 0px;
}

.row-0 > div {
    padding-right: 0px;
    padding-left: 0px;
}

.row-10 {
    margin-left: -5px;
    margin-right: -5px;
}

.row-10 > div {
    padding-right: 5px;
    padding-left: 5px;
}

.row-20 {
    margin-left: -10px;
    margin-right: -10px;
}

.row-20 > div {
    padding-right: 10px;
    padding-left: 10px;
}

.row-30 {
    margin-left: -15px;
    margin-right: -15px;
}

.row-30 > div {
    padding-right: 15px;
    padding-left: 15px;
}

.row-40 {
    margin-left: -20px;
    margin-right: -20px;
}

.row-40 > div {
    padding-right: 20px;
    padding-left: 20px;
}


/*----------------------------------------
    フォーム内テーブル
 ----------------------------------------*/
.table-form {
    margin: 10px 0;
    width: 100%;
}

/*----------------------------------------
    フォント
 ----------------------------------------*/
/* フォントサイズ */
/* スマートフォン */
@media (max-width: 991.9px) {
    .font-size{
        font-size: 1.0rem;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .font-size{
        font-size: 16px;
    }
}

/* 注意文字 */
.caution-chara{
    color: #e84040;
}

/*----------------------------------------
    inputのデフォルトを削除(Safari用)
 ----------------------------------------*/
input[type="button"],input[type="text"],input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

/*----------------------------------------
    Selectのデフォルトを削除
 ----------------------------------------*/
/* IE用 */
select::-ms-expand {
    display: none;
}

/* FireFox・Safari用 */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
}

/*----------------------------------------
    テキストボックス
 ----------------------------------------*/
.txt-box {
    -webkit-appearance: none;
    -ms-input-appearance: none;
    border: solid 1px;
    height:35px;
    font-size:18px;
    position: relative;
    padding-left: 5px;
}

/* アクティブ時、例の表示を削除 */
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }

/* 例の文字の色を統一 */
input::-webkit-input-placeholder {
    color: #a9a9a9;
}
input:-ms-input-placeholder {
    color: #a9a9a9;
}
input::-moz-placeholder {
    color: #a9a9a9;
}

/*----------------------------------------
    プルダウンメニュー
 ----------------------------------------*/
.pulldown {
    position: relative;
    /*display: inline;*/
    border: none;
    margin-right: 5px;
    -webkit-box-align: center;
    box-sizing: border-box;
    overflow: hidden;
}

/* 三角形 */
.pulldown:after {
    content: "";
    position: absolute;
    top: 32%;
    right: 10px;
    display: inline;
    border: 5px solid transparent;
    border-top: 8px solid #9fd3de;
    pointer-events: none;
}

/* メニュー内 */
.pulldown select {
    cursor: pointer;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline;
    padding: 6px 20px 6px 6px;
    background: #fff;
    border: solid 1px;
    -webkit-box-align: center;
    box-sizing: border-box;
    font-weight: 300;
    height: 35px;
    width: 100%;
}

/*----------------------------------------
    チェックボックス
 ----------------------------------------*/
.checkbox label {
    cursor: pointer;                
    display: inline-block;
    position: relative;
    margin-left: 5px;
}

.checkbox label:before,.checkbox label:after{
    content: '';
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    margin-top: -21px;
    margin-left: -35px;
}

.checkbox label:before {
    top: 100%;
}

.checkbox input {
    opacity: 0;
}

.checkbox input:checked + label:after{
    content: "\002713";
    background-color: #00c2cb;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    border: 1px solid #fff;
    z-index: 1;
}

/* 項目表示非表示制御用 */
.show-hide-box{
    display: none;
}

/* 項目種別タイトル */
.show-hide-box + .content-group>:first-child{
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
}

/* 項目制御チェックボックスがチェック無の時 */
.show-hide-box + .content-group>div:not(:first-child){
    display: none;
}

/* 項目制御チェックボックスがチェック有の時 */
.show-hide-box:checked + .content-group>div:not(:first-child){
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;
}

/* 項目　非表示時 */
.show-hide-box + .content-group>:first-child>div>.show-hide-btn:after{
    color: #d2dcdc;
    content: "▼";
}

/* 項目　表示時 */
.show-hide-box:checked + .content-group>:first-child>div>.show-hide-btn:after{
    color: #d2dcdc;
    content: "▲";
}

/* 項目タイトル */
.content-title{
    color: #fff;
    background-color: #323232;
    padding-top:5px;
}
.content-title>div>:first-child{
    float:left;
}
.content-title>div>:not(:first-child){
    float:right;
}

/* 優先的に非表示にするクラス */
.hide-disp{
    display: none !important;
}

/*----------------------------------------
    ラジオボタン
 ----------------------------------------*/
.radio label {
    cursor: pointer;
    margin-top: 5px;
    display: inline-block;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
}

.radio label:before,.radio label:after{
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: #fff;
    margin-top: -26px;
    margin-left: -35px;
}

.radio label:before {
    width: 22px;
    height: 22px;
    background-color: #fff;
    z-index: 1;
    top: 120%;
    transform: translateY(-0%);
    margin-left: -31px;
    position: absolute;
    border:1px solid #9fd3de;
}

.radio input {
    opacity: 0;
}

.radio input:checked + label:after{
    background-color: #9fd3de;
    border: 4px solid #fff;
    z-index: 1;
}

/* 非活性時 */
.radio input:disabled + label:before,.radio input:disabled + label:after{
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background-color: #BDBDBD;
    margin-top: -26px;
    margin-left: -35px;
}
.radio input:disabled + label:after{
    border: none;
}
.container-radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-top: 3px;
    margin-bottom: 3px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
/* Hide the browser's default radio button */
.container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #dbeeed;
    border-radius: 50%;
    border: 2px solid #009f96;
    margin: 3px 0px;
}
/* On mouse-over, add a grey background color */
.container-radio:hover input ~ .checkmark {
    background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.container-radio input:checked ~ .checkmark {
    background-color: #009f96;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the indicator (dot/circle) when checked */
.container-radio input:checked ~ .checkmark:after {
    display: block;
}
/* Style the indicator (dot/circle) */
.container-radio .checkmark:after {
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-radius: 100%;
}
.label-title{
    font-size:18px;font-weight: 300;
}

/*----------------------------------------
    通常ボタン
 ----------------------------------------*/
.button {
    width: 250px;
    height: 70px;
    background-color: #4e7199;
    border-style: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

/* 非活性時 */
.button:disabled, .button:disabled:hover {
    background-color: #808080;
}

/* ホバー時 */
.button:hover, .button:focus {
    filter:alpha(opacity=80);
    opacity:0.8;
}

/*----------------------------------------
    「受付トップへ」ボタン
 ----------------------------------------*/
.to-top{
    border: 5px solid #d2dcdd;
    margin: 30px 10px 40px 10px;
    height: 50px;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s;
}
/* スマートフォン */
@media (max-width: 991.9px) {
    .to-top {
        width: 100%;
        text-align: center;
        margin-top: 40px !important;
    }
    .to-top::after {
        left: 90%;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .to-top{
        text-align: left;
        float: right;
        width: 20%;
    }
    .to-top::after {
        left: 80%;
    }
}

/* ホバー時 */
.to-top:hover, .to-top:focus {
    background-color: #f2f3f5;
    transition: background-color 0.3s;
}

/* 矢印 */
.to-top::after {
    content: '';
    border-right: 5px solid #d2dcdd;
    border-top: 5px solid #d2dcdd;
    display:inline-block;
    height: 15px;
    width: 15px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    top: 50%;
    margin-top: -8px;
}

/*----------------------------------------
    「進む」ボタン
 ----------------------------------------*/
/* 「進む」ボタン 非活性時 */
.button-next:disabled, .button-next:disabled:hover {
    background-color: #808080;
}

/* 「進む」ボタンの矢印 */
.button-next::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 0;
    height: 0;
    margin-top: -7px;
    border: 7px solid transparent;        /*top right bottom を透明化 */ 
    border-left: 9px solid #fff;
}



/*----------------------------------------
    小ボタン
 ----------------------------------------*/
.button-s, .button-s-back, .button-s-next {
    width: 135px;
    height: 35px;
    background-color: #4e7199;
    border: solid 1px #fff;
    color: #fff;
    transition: background-color 0.3s;
    position: relative;
}
/* スマートフォン 
@media (max-width: 991px) {
    .button-s{
        font-size:1.2rem;
    }
}*/

/* 「戻る」ボタンの矢印 */
.button-s-back::before {
    content: '';
    border-left: 2px solid;
    border-bottom: 2px solid;
    display:inline-block;
    height: 13px;
    position: absolute;
    top: 10px;
    left: 13px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    width: 13px;
}

/* 「次へ」ボタンの矢印 */
.button-s-next::after {
    content: '';
    border-right: 2px solid;
    border-top: 2px solid;
    display:inline-block;
    height: 13px;
    position: absolute;
    top: 10px;
    right: 13px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    width: 13px;
}

/* 通常ボタン 非活性時 */
.button:disabled, .button:disabled:hover, .button-s:disabled, .button-s:disabled:hover,
.button-s-back:disabled, .button-s-back:disabled:hover,
.button-s-next:disabled, .button-s-next:disabled:hover{
    background-color: #808080;
}

/* 通常ボタン ホバー時 */
.button:hover, .button:focus, .button-s:hover, .button-s:focus {
    filter:alpha(opacity=80);
    opacity:0.8;
}

/*----------------------------------------
    ログアウトボタン
 ----------------------------------------*/
.button-logout {
    width: 100px;
    height: 40px;
    background-color: #4e7199;
    border: solid 1px #fff;
    color: #fff;
    transition: background-color 0.3s;
    position: relative;
}
/* スマートフォン */
@media (max-width: 991.9px) {
    .button-logout{
        font-size:1.2rem;
    }
}

/* ボタン 非活性時 */
.button:disabled, .button:disabled:hover, .button-logout:disabled, .button-logout:disabled:hover,
.button-logout-back:disabled, .button-logout-back:disabled:hover,
.button-logout-next:disabled, .button-logout-next:disabled:hover{
    background-color: #808080;
}

/* ボタン ホバー時 */
.button:hover, .button:focus, .button-logout:hover, .button-logout:focus {
    filter:alpha(opacity=80);
    opacity:0.8;
}

/*----------------------------------------
    リストマーク
 ----------------------------------------*/
.list-mark li {
    list-style:none;
    margin-left: -15px;
}

.list-mark li:before {
    content: "○";
    margin-right: 3px;
}

/*----------------------------------------
    アイコン
 ----------------------------------------*/
/* チェックアイコン */
.check-icon {
    color: #14c3c8;
    vertical-align: middle;
    opacity: 0;
}
/* スマートフォン */
@media (max-width: 991.9px) {
    .check-icon{
        font-size: 1.6rem;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .check-icon{
        font-size: 25px;
    }
}

/*----------------------------------------
    エラーメッセージ用吹き出し
 ----------------------------------------*/
.ballon-top, .ballon-bottom{
    width: 170px;
    height: 50px;
    padding: 5px 0 5px 5px;
    border: none;
    border-radius: 10px;
    background-color: #e84040;
    position: absolute;
    z-index: 30;
    color: #fff;
    visibility: hidden;
    opacity: 0.95;
}
.ballon-top-l, .ballon-bottom-l{
    width: 170px;
    height: 70px;
    padding: 5px 0 5px 5px;
    border: none;
    border-radius: 10px;
    background-color: #e84040;
    position: absolute;
    z-index: 30;
    color: #fff;
    visibility: hidden;
    opacity: 0.95;
}

/* スマートフォン */
@media (max-width: 991.9px) {
    .ballon-top, .ballon-bottom {
        height: 75px !important;
        font-size: 16px;
    }
    .ballon-top {
        margin-top: -75px !important;
    }

    .ballon-top-l, .ballon-bottom-l {
        height: 95px !important;
        font-size: 16px;
    }
    .ballon-top-l {
        margin-top: -85px !important;
    }
}

/* 上部表示用 */
.ballon-top {
    margin-top: -55px;
}

/* 下部表示用 */
.ballon-bottom{
    margin-top: 40px;
}

/* 上部表示用 */
.ballon-top-l {
    margin-top: -65px;
}

/* 下部表示用 */
.ballon-bottom-l{
    margin-top: 50px;
}

.ballon-top:before, .ballon-top-l:before{
    content: "";
    border: 12px solid transparent;
    border-top: 10px solid #e84040;
    position: absolute;
    right: 80%;
    bottom: -19px;
}

.ballon-bottom:before, .ballon-bottom-l:before{
    content: "";
    border: 12px solid transparent;
    border-bottom: 10px solid #e84040;
    position: absolute;
    right: 80%;
    top: -19px;
}

/*----------------------------------------
    注意喚起メッセージ部
 ----------------------------------------*/
.attention-msg {
    left: 50%;
    padding: 20px 10px;
    position: fixed;
    z-index: 9998;
    background-color: #fff;
    color: #000;
    display: none;
    border-radius: 20px;
    border: 2px solid #000;
    text-align: center;
    max-height: 100%;
}
/* スマートフォン */
@media (max-width: 991.9px) {
    .attention-msg {
        width: 360px;
        margin-left: -180px;
        top: 10%;
    }
}
@media (max-height: 320px) {
    .attention-msg {
        height: 80%;
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .attention-msg{
        width: 600px;
        margin-left: -300px;
        top: 25%;
    }
}

.attention-msg button {
    width: 100px !important;
    height: 50px !important;
    margin-top: 10px;
    font-size: 16px;
}

.input-err{
    background-color: #ffe9e6 !important;
}

.input-err-validat{
    background-color: #ffa599 !important;
}

/*----------------------------------------
    テキストのみの項目の余白
 ----------------------------------------*/
/* スマートフォン */
@media (max-width: 991px) {
    .out-txt{
        padding-top: 5px;
        padding-bottom: 5px;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .out-txt{
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/*----------------------------------------
    テキストのみの項目の余白(テーブル型)
 ----------------------------------------*/
/* スマートフォン */
@media (max-width: 991.9px) {
    .out-txt-tbl{
        padding-top: 5px;
        padding-bottom: 5px;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .out-txt-tbl{
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/*----------------------------------------
    フッター部
 ----------------------------------------*/
.wrapper {
    /*    display:flex;
        flex-direction:column;*/
    min-height:100vh;
}
/*footer {
    background-color:blue;
    height:50px;
    margin-top:auto;
}*/
.footer {
    text-align: center;
    background-color: #009f96;
    color: #fff;
    padding: 10px 0;
    width: 100%;
    margin: 0 auto;
    font-size: 15px;
    height: 135px;
}
.footer-inner {
    max-width: 691px;
    margin: 0 auto;
}

/* スマートフォン */
@media (max-width: 767.9px) {
    .foot-g {
        width: 64px;
        float: none;
        margin: 0 auto;
    }
}
/* パソコン */
@media (min-width: 768px) {
    .foot-g {
        width: 64px;
        float: left;
    }
}
/* スマートフォン */
@media (max-width: 767.9px) {
    .tokutei {
        font-size: 1.1rem;
        padding: 0.2rem;
        border-radius: 10px;
        border: 1px solid white;
        width: 160px;
        text-align: center;
        /*bottom: 20px;*/
        right: 20px;
        margin: 2rem auto;
        position: static;
    }
}
/* パソコン */
@media (min-width: 768px) {
    .tokutei {
        font-size: 1.1rem;
        padding: 0.2rem;
        /*margin: 0.8rem;*/
        border-radius: 10px;
        border: 1px solid white;
        width: 160px;
        text-align: center;
        position: absolute;
        /*bottom: 20px;*/
        right: 20px;
    }
}

.joho {
    line-height: 2rem;
    font-size: 1.2rem;
    float: right;
    text-align: left;
    list-style-type: none;
}
.pc {
    display: block !important;
}
.footer div {
    margin-bottom: 10px;
    max-height: 100%;
}

/* フッター用表示記号 */
.block {
    width: 3px;
    height: 3px;
    background: #fff;
    margin-top: 5px;
    position:absolute;
}
.block::before {
    content: '';
    margin-top: 6px;
    margin-right: 6px;
    width: 3px;
    height: 3px;
    background: #fff;
    position:absolute;
}
.block::after {
    content: '';
    margin: 3px;
    width: 3px;
    height: 3px;
    background: #fff;
    position:absolute;
}


/*----------------------------------------
    フッター部・問い合わせ
 ----------------------------------------*/
.toiawase-inf{
    margin: 0 10px 10px 10px;
    line-height: 25px;
}
/* スマートフォン */
@media (max-width: 991.9px) {
    .toiawase-inf {
        border-right: 10px solid #d2dcdd;
        border-left: 10px solid #d2dcdd;
        width: 100%;
        height: 100px;
        padding: 0 10px 10px 10px;
        text-align: center;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .toiawase-inf{
        height: 140px;
        padding: 10px 10px;
        border-top: 5px solid #d2dcdd;
        border-bottom: 5px solid #d2dcdd;
    }
    .toiawase-inf span:last-child {
        letter-spacing: 2px;
    }
}

/* パソコン（電話番号） */
@media (min-width: 992px) {
    .telNo{
        font-family: 'Noto Sans JP', sans-serif;
    }
}

/*----------------------------------------
    フッター部・リンクボタン
 ----------------------------------------*/
.link-button {
    border: 5px solid #d2dcdd;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s;
}

/* ホバー時 */
.link-button:hover, .link-button:focus {
    background-color: #f2f3f5;
    transition: background-color 0.3s;
}

/* 矢印 */
.link-button::after {
    content: '';
    border-right: 5px solid #d2dcdd;
    border-top: 5px solid #d2dcdd;
    display:inline-block;
    height: 15px;
    width: 15px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    top: 50%;
    margin-top: -8px;
}

/* スマートフォン */
@media (max-width: 991.9px) {
    .link-button {
        width: 100%;
        height: 100px;
        text-align: left;
        margin: 0 10px 10px 10px;
    }
    .link-button::after {
        left: 90%;
    }
    .link-button span {
        margin: 0 -10px 0 -15px !important;
        vertical-align: middle;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .link-button{
        height: 150px;
        padding: 20px 0;
        text-align: center;
        margin: 0 0 10px 20px;
    }
    .link-button::after {
        left: 85%;
    }
    .link-button span{
        margin-top: -10px !important;
    }
}

/*----------------------------------------
    スクリーンロック
 ----------------------------------------*/
.screen-lock {
    height: 100%; 
    left: 0px; 
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 9997;
    visibility: hidden;
}

/* メッセージ部 */
.screen-lock-msg {
    width: 50%;
    height: 50%;
    left: 25%;
    position: fixed;
    top: 25%;
    z-index: 9999;
    background-color: #fff;
    color: #000;
    font-size: 230%;
    overflow: hidden;
    visibility: hidden;
    border-radius: 20px;
}

.screen-lock-msg p {
    text-align: center;
    top: 40%;
    transform: translateY(-40%);
    position:relative;
}

.screen-lock-msg ul {
    list-style-type: decimal;
    position: relative;
    float: left;
    left: 50%;
    top: 40%;
    transform: translateY(-40%);
}

.screen-lock-msg ul li {
    left: -50%;
    position: relative;
    white-space: nowrap;
}

/* 画面をぼかす */
.blur {
    -webkit-filter: blur(50px);
}

/*----------------------------------------
    スマートフォン表示時、ボーダーを調整
 ----------------------------------------*/
@media (max-width: 991.9px) {
    .height-adjust-top{
        border-top: none !important;
    }
    .height-adjust-bottom{
        border-bottom: none !important;
        margin-bottom: -1px;
    }
}

.printTipsBtn{
    position: relative;
}
.printTipsBtn .printTips{
    position: absolute;
    opacity: 0;
    top: -50px;
    left: -0px;                    
    padding: 10px;
    border-radius: 2px;
    background: #196090;
    color: #fff;
    line-height: 1;
    transition: .3s;
    font-size: 14px;
    font-weight: normal;
}
.printTipsBtn .printTips:after{
    position: absolute;
    top: 100%;
    left: 24px;
    height: 0;
    width: 0;
    border: 6px solid transparent;
    border-top: 6px solid #196090;
    content: "";
}
.printTipsBtn:hover .printTips{
    opacity: 1;
    top: -50px;
}

.Midashi-Font {
    font-size: 18px;
}

/* BMAメニュー用  */
.bma-menuBorder{
    /*    border:0px solid;
        border-color: skyblue;*/
}
.bma-menu{
    float: left;
    width:12%;
    max-width: 220px;
    margin-left: -60px;
    background-color: rgb(237,237,237);
}
.bma-menu-button{
    width: 120%;
    height: 50px;
    margin-left: -29px;
    background: #f5f2e9;
    margin-bottom: 3px;
    text-align: center;
    font-size: 1.6rem;
    color: #000;
    border: none;
}
.bma-menu-button-sp{
    width: 100%;
    height: 40px;
    margin-left: -29px;
    background: #f5f2e9;
    margin-bottom: 3px;
    text-align: center;
    font-size: 1.6rem;
    color: #000;
    border: none;
}
.form-menu{
    background: rgb(197, 224, 180);
}
.bma-content{
    float: left;
    width: 84%;
    margin:-25px 0px 0px  60px;
    margin-bottom: 15px;
}
.table-col-kaijyo{
    background-color: rgb(222,235,247);
    border-bottom: solid 1px #fff;
    border-top: solid 1px #fff;
    border-right: solid 2px #fff;
    padding-left: 0px;
    padding-top:0px;
    padding-bottom: 0px;
}
.table-head-common{
    background-color: rgb(0,176,240);
    border-right: solid 2px #fff;
    border-bottom: solid 1px #fff;
    border-top: solid 1px #fff;
    padding-left: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: left;
}
.table-head-Kaijyo{
    background-color: #808080;
    border-right: solid 2px #fff;
    border-bottom: solid 1px #fff;
    border-top: solid 1px #fff;
    color: #fff;
}
.table-col-kaisaiti{
    background-color: rgb(222,235,247);
    border-right: solid 2px #fff;
    padding-left: 5px;
    padding-top:5px;
    padding-bottom: 5px;
    align-items: center;
    text-align: left;
}
.bma-common-padding-left{
    padding-left: 6%;
    padding: 8px 0px 8px 20px;
}

.bma-col-md-xs-3{
    padding-left: 6%;
    padding: 8px 0px 8px 20px;
}
/*申込履歴用・共通ボタン*/
.table-head-moshikomi{
    background-color: #999999;
    border: solid 1px #fff;
    padding: 5px 5px 5px 10px;
    color: #fff;
}
.table-col-moshikomi{
    background-color: #dcdcdc;
    border: solid 1px #fff;
    padding: 5px 5px 5px 10px;
}
.table-col-kajyoSel{
    background-color: #dcdcdc;
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    border-top: solid 2px #fff;
    padding: 10px;
}

/*----------------------------------------
    画像アップロード
 ----------------------------------------*/
.upd-chiyui-button{
    text-align: center;
    font-weight: bold;
    font-size: 2.8rem;
    color: white;
    padding: 20px;
    border-radius: 5px;
    background-color: #009f96;
    max-width: 536px;
    letter-spacing: 2px;
    margin: 20px auto 40px;
    box-shadow: 0px 5px #00756e;
    border:solid 1px #009f96;
}

/*.upd-chiyui-button:hover, .upd-chiyui-button:focus {
    background-color: #a6b7e6;
    transition: background-color 0.3s;
}*/


.upd-gazo-button{
    width: 320px;
    height: 55px;
    background-color: rgb(3,110,74);
    border-style: none;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    font-weight: bold;
    position: relative;
}

.cut-gazo-button{
    width: 320px;
    height: 55px;
    background-color: rgb(3,110,74);
    border-style: none;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    font-weight: bold;
    position: relative;
}

.upd-button:disabled, .upd-button:disabled:hover {
    background-color: #808080;
    border-bottom: solid 1px #808080;
    border-top: solid 1px #808080;
    border-right: solid 2px #808080;
    border-left: solid 2px #808080;
}

.gazoCheck-button{
    width: 60px;
    background: #20b2aa;
    color: white;
    border-bottom: solid 1px #20b2aa;
    border-top: solid 1px #20b2aa;
    border-right: solid 2px #20b2aa;
    border-left: solid 2px #20b2aa;
    padding-left: 4px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.3rem;
}
.gazoCheck-button:disabled, .gazoCheck-button:disabled:hover {
    background-color: #808080;
    border-bottom: solid 1px #808080;
    border-top: solid 1px #808080;
    border-right: solid 2px #808080;
    border-left: solid 2px #808080;
}
.sansho-button {
    font-weight: bold;
    text-align: center;
    padding: 0.3em 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    color: white;
    background-color: #20b2aa;
    width: auto;
    height: 32px;
    border: 1px #20b2aa solid;
}

.sansho-button-sp {
    font-weight: bold;
    text-align: center;
    padding: 0.3em 0.5rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    color: white;
    background-color: #20b2aa;
    width: auto;
    height: 32px;
    border: 1px #20b2aa solid;
}

.upd-title{
    font-size: 18px;
    font-weight: bold;
    border-style: none;
}
.upd-shubetsu{
    background: rgb(0,176,240);
    border-style:solid;
    border-color:white;
    color: #fff;
}
.upd-status{
    background: white;
    border: solid 1px #000;
    color:red;
}

.upd-status-complet{
    background: white;
    border: solid 1px #000;
}
.upd-status-fuyo{
    background: white;
    border: solid 1px #000;
    color: #808080;
}

.complete-border {
    border-top:3px solid rgb(3,110,74);
    border-bottom:3px solid rgb(3,110,74);
    margin-left: 180px;
    margin-right: 180px;
    height: 125px;
    text-align:center;
    line-height:28px;
    padding-top: 17px;
    color: red;
    font-weight: bold;
}
.form-table-input {
    width:100%;
    height: 130%;
    border: none;
    margin: 0px 0px 0px -18px; 
    padding-left: 7px;
    padding-right: 7px;
}
.form-name {
    background-color: rgb(0,176,240);
    border-right: solid 2px #fff;
    border-bottom: solid 3px white;
    border-top: solid 3px white;
    color: #FFF;
    vertical-align:middle; 
}
.form-title {
    background-color: rgb(0,176,240);
    border-right: solid 2px #fff;
    border-bottom: solid 3px white;
    border-top: solid 3px white;
    color: #FFF;
    text-align: center; 
    display: inline-block; 
    margin-right:16px;
}
.form-background{
    margin: 3px 0px 3px 0px;
    padding-left: 6%;
    width: 600px;
    background-color: rgb(222,235,247);
    padding-right: -10px;
}
.form-name-et {
    background-color: rgb(0,176,240);
    border-right: solid 2px #fff;
    color: #FFF;
    vertical-align:middle; 
}
.form-background-et{
    padding-left: 6%;
    width: 600px;
    background-color: rgb(222,235,247);
    padding-right: -10px;
    font-weight: bolder;
}
.form-strong {
    font-size:16px; 
    font-weight: bold;
    vertical-align: middle;
}
.form-mongon-blue {
    margin-bottom: 30px;
    margin-top: 10px;
    color:rgb(0,176,240);
    padding-right: 30px;
}
.form-mongon {
    padding-bottom: 30px;
    margin-top: 10px;
    padding-right: 30px;
}
.table_law {
    border-collapse: collapse;
    margin: 5px auto;
}

.table_law th {
    height: 18px;
    width: 245px;
    background-color: #F5F5F5;
    border: 1px solid #BFBFBF;
    padding: 5px;
    text-align: left;
}

.table_law td {
    width: 529px;
    border: 1px solid #BFBFBF;
    padding: 5px;
}

.box28 {
    position: relative;
    padding: 6px 48px 7px;
    border: solid 2px #20b2aa;
    /*width: 57.5%;*/
}
.box28 .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 14px;
    height: 48px;
    line-height: 27px;
    font-size: 2.8rem;
    background: #20b2aa;
    color: #ffffff;
    font-weight: bold;
}
.box28 p {
    margin: 10px 23px -11px; 
    padding: 0;
}
/* 申込共通タイトル名 */
.title-name {
    text-align: left;
    font-size: 2.8rem;
    border: 1px solid black;
    padding: 15px 10px 15px 20px;
    font-weight: bold;
    line-height: 2.8rem;
    margin-bottom: 1rem;
}

/* タイトル名(講習会の場合) */
.title-name-ksu {
    text-align: left;
    background: rgb(3,110,74);
    color: #fff;
    width: 97.5%;
    height: 40px;
    margin: 0 auto;
    font-size: 22px;
    font-weight: bold;
    line-height: 40px;
}

/* タイトル名(画像切り取り) */
.title-name-cut {
    text-align: left;
    background: rgb(3,110,74);
    color: #fff;
    width: 99%;
    height: 40px;
    margin: 0 auto;
    font-size: 21.5px;
    font-weight: bold;
    line-height: 40px;
    padding-left: 10px;
}
/* 「進む」ボタン */
.button-next {
    width: 110px;
    height: 41px;
    background-color: #20b2aa;
    border-style: none;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    font-weight: bold;
    transition: background-color 0.3s;
    position: relative;
}

/* 「進む」ボタン 非活性時 */
.button-next:disabled, .button-next:disabled:hover {
    background-color: #808080;
}

/* 「進む」ボタン ホバー時 
.button-next:hover, .button-next:focus {
    background-color: #a6b7e6;
    transition: background-color 0.3s;
}*/

/* 「進む」ボタンの矢印 */
.button-next::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 0;
    height: 0;
    margin-top: -7px;
    border: 7px solid transparent;        /*top right bottom を透明化 */ 
    border-left: 9px solid #fff;
}

/* 「戻る」ボタン */
.button-back {
    width: 110px;
    height: 41px;
    background-color: #20b2aa;
    border-style: none;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    font-weight: bold;
    position: relative;
}

/* 「戻る」ボタンの矢印 */
.button-back::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 0;
    height: 0;
    margin-top: -7px;
    border: 7px solid transparent;        /*top right bottom を透明化 */ 
    border-right: 9px solid #fff;
}

/* 「戻る」ボタン 非活性時 */
.button-back:disabled, .button-back:disabled:hover {
    background-color: #808080;
}
/*
 「戻る」ボタン ホバー時 
.button-back:hover, .button-back:focus{
    background-color: #a6b7e6;
    transition: background-color 0.3s;
}*/

/* 「閉じる」ボタン */
.button-close {
    width: 160px;
    height: 55px;
    background: #20b2aa;
    border-style: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    font-weight: bold;
    position: relative;
    border-radius:4px;
}

/* 「TOP」ボタン */
.button-top {
    width: 160px;
    height: 55px;
    background: #20b2aa;
    border-style: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    font-weight: bold;
    position: relative;
}

/* 「キャンセル」ボタン */
.button-cancel {
    width: 160px;
    height: 41px;
    background-color: #20b2aa;
    border-style: none;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    font-weight: bold;
    position: relative;
}

/* 「戻る」ボタンの矢印 */
.button-cancel::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 0;
    height: 0;
    margin-top: -7px;
    border: 7px solid transparent;        /*top right bottom を透明化 */ 
    border-right: 9px solid #fff;
}
/* 「ログアウト」ボタン */
.button-logout {
    /*    position: absolute;
        right: 70px;*/
    top: 31px;
    border-radius: 0.5rem;
    padding: 0.5rem 2rem;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    background-color: #009f96;
}
/*.button-close:hover, .button-close:focus{
    background-color: #a6b7e6;
    transition: background-color 0.3s;
}*/
/* 共通ボタン */
.button-common{
    width: 155px;
    height: 55px;
    background-color: #20b2aa;
    border-style: none;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    font-weight: bold;
    position: relative;
    border-radius:4px;
    text-align: center;
}
/* 通常ボタン */
.button {
    width: 250px;
    height: 70px;
    background-color: #6c87d6;
    border-style: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

/* 通常ボタン 非活性時 */
.button:disabled, .button:disabled:hover {
    background-color: #808080;
}

.table-button{
    width: 3.2em;
    margin: 0 auto;
    background: #20b2aa;
    border:solid 1px #fff;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius:4px;
    font-size: 1.8rem;
}

/* スマートフォン */
@media (max-width: 991px) {
    .button-logout{
        font-size:1.2rem;
    }
}
.table-button-disabled{
    background: rgb(192,192,192);
    width: 3.2em;
    margin: 0 auto;
    /*background: #20b2aa;*/
    border:solid 1px #fff;
    color: #f0f1f1;
    padding: 0.5rem 1rem;
    border-radius:4px;
    font-size: 1.8rem;
}
.table-button:hover{color: #fff;text-decoration: none;};
.table-button:visited{color: #fff;text-decoration: none;};
.table-button:active{color: #fff;text-decoration: none;};
.title-bar{
    height:10px; background-color:#d2dcdd; margin-bottom: 10px;
}

/*申込情報変更入力用*/
.form-name-update {
    background-color: #808080;
    color: #fff;
    border: solid 1px #fff;
    font-size: 1.8rem;
}
.form-input-bma {
    background-color: #e5e5e5;
    color: #fff;
    border: solid 1px #fff;
    font-size: 1.8rem;
    width: 100%;
}
.form-name-bma {
    background-color: #999999;
    color: #fff;
    border: solid 1px #fff;
    font-size: 1.8rem;
    /*width: 100%;*/
}
.remark-update{
    font-size: 11px;
    color:red;
}
.form-input-div {
    background-color: #dcdcdc;
    border: solid 1px #fff;
    padding: 0;
}
.form-input-bma {
    background-color: #e5e5e5;
    border: solid 1px #fff;
    padding: 0;
    color: #000;
}
.input-txt {
    display: block;
    padding: 9px;
    height: 100%;
    width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 0px;
}
.form-name-left{
    height: 100%;
    float:left;
    width: 20%;
    border-right: solid 2px #fff;
    padding-left:10px;
}
.form-name-right{
    height: 100%;
    float:left;
    width: 80%;
    padding-left:5px;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
}

.form-name-right-jusho{
    height: 100%;
    float:left;
    /*width: 75%;*/
    padding-left:5px;
    /*    border-top: solid 1px #fff;
        border-bottom: solid 1px #fff;*/
}
.mainbar2 {
    width: 100%;
    max-width: 740px;
    position: relative;
}

.no1:first-child::before {
    content: "1";
    color: black;
    position: absolute;
    left: -2.7rem;
    top: 0.5rem;
    font-size: 1.8rem;
    width: 22px;
    height: 22px;
    background-color: #a5d7d3;
    border-radius: 22px;
    line-height: 19px;
    text-align: center;
}

.no2:first-child::before {
    content: "2";
    color: black;
    position: absolute;
    left: -2.7rem;
    top: 0.5rem;
    font-size: 1.8rem;
    width: 22px;
    height: 22px;
    background-color: #a5d7d3;
    border-radius: 22px;
    line-height: 19px;
    text-align: center;
}

.header_logo {
    z-index: 10000;
    width: 85px;
    position: absolute;
    left: 30px;
    top: 15px;
}

.keisan-button{
    width: 4.4em;
    margin: 0 auto;
    background: #20b2aa;
    border:solid 1px #fff;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 1.8rem;
}

/*----------------------------------------
    申込情報入力
 ----------------------------------------*/
.form-input-mskjohoinp {
    background-color: #e5e5e5;
    color: #000;
    border: solid 1px #fff;
    font-size: 1.8rem;
}
.form-input-mskjohoinp-sp  {
    background-color: #e5e5e5;
    color: #000;
    border: solid 1px #fff;
    font-size: 1.8rem;
}
.form-name-mskjohoinp {
    background-color: #999999;
    color: #fff;
    border: solid 1px #fff;
    font-size: 1.8rem;
}
.form-name-mskjohoinp-sp {
    background-color: #999999;
    color: #fff;
    border: solid 1px #fff;
    font-size: 1.8rem;
}
.form-name-mskjohoinpjusho {
    background-color: #999999;
    color: #fff;
    border: solid 1px #fff;
    font-size: 1.8rem;
    width: 126px;
}

.form-name-mskjohoinpjusho-sp {
    background-color: #e5e5e5;
    color: #000;
    border: solid 1px #fff;
    font-size: 1.8rem;
    width: 100%;
    padding: 10px 15px 0;
}
.jusho-button{
    margin-top: 3px !important;
    margin-left: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 0rem 1rem;
    color: white;
    background-color: #009f96;
    border-radius: 0.4rem;
    line-height: 2.8rem;
    border:solid 1px #009f96;
}

.tate {
    margin: 1rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.jushohyojitaku {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    background-color: #e5e5e5;
}
.jushohyojitaku td:first-child {
    width: 40px;
    font-weight: bold;
    background-color: #808080;
    color: white;
}
.jushohyojitaku td, .hyo4 td {
    border-top: 0px solid white !important;
    position: relative;
    border: 1px solid white;
}
.jushohyojitaku tr:nth-child(1) td:nth-child(2) {
    width: 142.5px;
    padding-left: 1rem;
    font-weight: bold;
    background-color: #808080;
    color: white;
}
.form-name-left-jusho{
    height: 100%;
    float:left;
    width: 25%;
    padding-left:10px;
    color: #fff;
}
.hyo-w1-2 {
    margin: 2rem 0;
}
.hyo-w1-2-a {
    margin: 1rem 0 !important;
}
.kabe {
    margin: 1rem 2rem 1rem 1rem;
}
.logo {
    z-index: 10000;
    width: 85px;
    position: absolute;
    left: 30px;
    top: 15px;
}
img {
    max-width: 100%;
}

.head-title {
    font-size: 2.8rem;
    position: absolute;
    left: 141px;
    top: 23px;
    font-weight: bold;
    width: max-content;
}
.hissu {
    font-size: 1.3rem;
    padding: 0.1rem 1rem;
    border-radius: 0.5rem;
    background-color: #e50064;
    margin-left: 1rem;
}
.linkur {
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: black;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.3rem;
}

.kentei-box ul {
    margin-block-end: 0;
    margin-block-start: 0;
    padding: 0;
    margin-left: 10px;
    list-style-type: none;
}

.kentei-box li:first-child {
    margin-top: 1rem;
    font-weight: bold;
}

.kentei-box li {
    margin-left: 2.7rem;
    position: relative;
    line-height: 3rem;
    font-size: 1.8rem;
}

.kentei-box li:first-child::before {
    content: "1";
    color: black;
    position: absolute;
    left: -2.7rem;
    top: 0.5rem;
    font-size: 1.8rem;
    width: 22px;
    height: 22px;
    background-color: #a5d7d3;
    border-radius: 22px;
    line-height: 23px;
    text-align: center;
}

.kentei-box2 li:first-child {
    margin-top: 2rem;
    font-weight: bold;
}
.kentei-box2 li {
    margin-left: 2.7rem;
    position: relative;
    line-height: 3rem;
    font-size: 1.8rem;
}
.kentei-box2 li:first-child::before {
    content: "2";
    color: black;
    position: absolute;
    left: -2.7rem;
    top: 0.5rem;
    font-size: 1.8rem;
    width: 22px;
    height: 22px;
    background-color: #a5d7d3;
    border-radius: 22px;
    line-height: 23px;
    text-align: center;
}

.kentei-box3 li:first-child {
    margin-top: 2rem;
    font-weight: bold;
}
.kentei-box3 li {
    margin-left: 2.7rem;
    position: relative;
    line-height: 3rem;
    font-size: 1.8rem;
}
.kentei-box3 li:first-child::before {
    content: "3";
    color: black;
    position: absolute;
    left: -2.7rem;
    top: 0.5rem;
    font-size: 1.8rem;
    width: 22px;
    height: 22px;
    background-color: #a5d7d3;
    border-radius: 22px;
    line-height: 23px;
    text-align: center;
}

/*----------------------------------------
    同意
 ----------------------------------------*/
.kiyaku2 {
    margin: 2rem auto;
    padding: 2rem 10px;
    border: 1px solid #808080;
    background-color: #f5f2e9;
}
.kiyaku {
    position: relative;
    max-width: 665px;
    height: 900px;
    padding: 1rem;
    border: 1px solid black;
    overflow: hidden;
    font-size: 1.4rem;
    line-height: 2.5rem;
    overflow-y: scroll;
    margin: 0 auto;
    background-color: white;
}

.chui-box2 li:nth-child(n + 2)::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    height: 1rem;
    width: 1rem;
    top: 0.9rem;
    border-radius: 1rem;
    background-color: #808080;
}

.chui-t2 {
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin: 2rem 0;
}
.chui-t2 li {
    margin-left: 1.5em;
    position: relative;
}
ul {
    margin-block-end: 0;
    margin-block-start: 0;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
user agent stylesheet
ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}
.chui-t2 li:before {
    content: "";
    position: absolute;
    border-radius: 1em;
    left: -1.5em;
    top: 0.5em;
    width: 1em;
    height: 1em;
    background-color: #a5d7d3;
}
.chui-t3-1 {
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    list-style-type: decimal;
    margin-left: 1.5rem;
}
ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}
.chui-t3-1 li {
    position: relative;
}
li {
    display: list-item;
    text-align: -webkit-match-parent;
}
/*::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: start !important;
}*/

/*----------------------------------------
    タイトル番号
 ----------------------------------------*/
.altitle1, .altitle2, .altitle3, .altitle4, .altitle5, .altitle6, .altitle7, .altitle8 {
    margin-top: 50px;
    font-size: 2.8rem;
    font-weight: bold;
    position: relative;
    margin-left: 5rem;
}
.altitle1:before, .altitle2:before, .altitle3:before, .altitle4:before, .altitle5:before, .altitle6:before, .altitle7:before, .altitle8:before {
    left: -5rem;
    border-radius: 20px;
    position: absolute;
    font-size: 2.8rem;
    font-weight: bold;
    color: white;
    background-color: black;
    width: 38px;
    height: 38px;
    text-align: center;
}
.altitle1:before {
    content: "1";
}
.altitle2:before {
    content: "2";
}
.altitle3:before {
    content: "3";
}
.altitle4:before {
    content: "4";
}
.altitle5:before {
    content: "5";
}
.altitle6:before {
    content: "6";
}
.altitle7:before {
    content: "7";
}
.altitle8:before {
    content: "8";
}
/*----------------------------------------
    画像選択
 ----------------------------------------*/
.uparea {
    position: relative;
    margin: 2rem auto 5rem;
    padding: 40px;
    background-color: #e5e5e5;
}
.uparea-chui {
    padding: 2rem;
    background-color: #bee1de;
    margin-bottom: 3rem;
}
.uparea-chui li:first-child {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.uparea-chui li {
    line-height: 3rem;
    position: relative;
    font-size: 1.8rem;
}
li {
    display: list-item;
    text-align: -webkit-match-parent;
}
.uparea-chui li:nth-child(n+2) {
    margin-left: 2.4rem;
}
.uparea-chui li:nth-child(n+2)::before {
    content: "";
    border-radius: 0.5em;
    top: 0.5rem;
    left: -2.4rem;
    width: 1.8rem;
    height: 1.8rem;
    position: absolute;
    background-color: #009f96;
}
.upd-button{
    width: 99px;
    background: #20b2aa;
    color: white;
    border-bottom: solid 1px #20b2aa;
    border-top: solid 1px #20b2aa;
    border-right: solid 2px #20b2aa;
    border-left: solid 2px #20b2aa;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.3rem;
}
.upd-button1{
    width: 149px;
    background: #20b2aa;
    color: white;
    border-bottom: solid 1px #20b2aa;
    border-top: solid 1px #20b2aa;
    border-right: solid 2px #20b2aa;
    border-left: solid 2px #20b2aa;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.3rem;
}
ul {
    margin-block-end: 0;
    margin-block-start: 0;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
user agent stylesheet
ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.table-head-gazo{
    background-color: #fff;
    border: solid 1px #000;
    padding: 5px 5px 5px 10px;
    color: #000;
    font-size: 1.3rem;
}

.gazoupBotton {
    text-align: center;
    font-weight: bold;
    font-size: 2.8rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: white;
    border-radius: 1rem;
    border-color: #009f96;
    padding: 2rem;
    background-color: #009f96;
    border:solid 1px #009f96;
}
.gazocutBotton {
    text-align: center;
    font-weight: bold;
    font-size: 2.8rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: white;
    border-radius: 1rem;
    border-color: #009f96;
    padding: 2rem;
    background-color: #009f96;
    border:solid 1px #009f96;
}
.sanshobox {
    border-collapse: collapse;
}
.sanshobox td:first-child {
    max-width: 510px;
    width: 100%;
    padding: 1rem;
    background-color: white;
    border: 1px solid black;
}
tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}
.gazoup-pass {
    padding: 5px;
    height: 22px;
    width: 97%;
    display: block;
    margin: 0 auto;
    border: none;
}
/*----------------------------------------
    トップページメニューボタン
 ----------------------------------------*/
.naka {
    width: 1010px;
    margin: 26px auto 0;
}
.naka3 {
    max-width: 1010px;
    margin: 26px auto 0;
}
@media screen and (max-width: 1000px) {
    .naka3 {
        margin: 46px auto 0;
        padding: 0 10px;
    }
}
@media screen and (max-width: 650px) {
    .naka3 {
        margin: 46px auto 0;
        padding: 0 10px;
    }
}

.menu-sidebar {
    position: relative;
    float: left;
    width: 24%;
}
@media screen and (max-width: 1000px){
    .menu-sidebar {
        display: none;
    }
}
.menubar-sp {
    padding: 1rem 10px;
    background-color: #f5f2e9;
    position: relative;
    display: block !important;
    max-width: 100%;
    border-collapse: collapse;
}
.menubar-sp td:nth-child(2n+1) {
    border: 1px solid #b2b2b2;
    border-left: 0px !important;
}
.menubar-sp td {
    padding: 1.5rem 0 1.5rem 1rem;
    border: 1px solid #b2b2b2;
}

.mainbar {
    width: 100%;
    max-width: 740px;
    position: relative;
    float: right;
    min-height: 70vh;
}
@media screen and (max-width: 1000px) and (max-width: 650px) {
    .mainbar {
        margin-bottom: 100px;
    }
}

.topiclist {
    font-size: 1.6rem;
    line-height: 2.6rem;
    padding-bottom: 30px;
}
.topiclist li:first-child {
    margin-top: 2rem;
}
.topiclist li {
    margin-top: 34px;
    position: relative;
    padding-left: 20px;
}
.topiclist li:before {
    content: "";
    position: absolute;
    top: 0.4em;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: #a8d8d4;
    border-radius: 50%;
}
.facebox {
    margin-bottom: 15px;
    width: 100%;
    height: 120px;
    background-color: #f5f2e9;
    position: relative;
}
.facebox-sp {
    height: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    max-width: 100%;
    background-color: #f5f2e9;
    position: relative;
    /*margin-bottom: 15px;*/
    /*    width: 100%;
        height: 120px;
        background-color: #f5f2e9;
        position: relative;*/
}
.facebox2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    margin: 30px auto;
}
.facebox2-sp {
    height: 45px;
    padding: 20px 0 75px;
    margin: 0px 0 0px 15px;
}
.facebox2-sp {
    position: static;
    left: auto;
    transform: none;
}
.facebox2-sp {
    /*width: 42%;*/
}
.facebox-gazo {
    width: 40px;
    float: left;
}
.facebox-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 0.3em;
    width: auto;
    padding-left: 30%;
}
.facebox-name-sp {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 0.3em;
    width: auto;
    padding-left: 15%;
}
.facebox-kbn {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 0.3em;
}
.sidebox {
    max-width: 100%;
    padding: 0 10px;
    background-color: #f5f2e9;
    position: relative;
}
.sidebox2 {
    list-style-type: none;
    background-color: #f5f2e9;
    position: relative;
}
.sidebox2 li:first-child {
    border-top: none;
}
.sidebox2 li {
    position: relative;
    border-top: 1px solid #b2b2b2;
    height: 76px;
    padding: 2rem 0 2rem 3rem;
}
.sidebox2 li:after {
    content: "";
    position: absolute;
    top: 2.8em;
    right: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: 2px solid black;
    border-right: 2px solid black;
}
.sbox-g, .sbox-g2 {
    width: 30px;
    position: relative;
    display: table-cell;
}
.sbox-w {
    font-size: 1.6rem;
    font-weight: bold;
    margin-left: 1.5rem;
    display: table-cell;
    padding-left: 10px;
}
.sidebox2-sp {
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto;
    table-layout: fixed;
}
.sidebox2-sp {
    list-style-type: none;
    background-color: #f5f2e9;
    position: relative;
}
sidebox2-sp td:nth-child(2n+1) {
    border: 1px solid #b2b2b2;
    border-left: 0px !important;
}
.sidebox2-sp td:nth-child(2n) {
    border: 1px solid #b2b2b2;
    border-right: 0px !important;
    border-bottom: 0px !important;
}
.sidebox2-sp tr:nth-child(3) td {
    border-bottom: 0px !important;
}
.sidebox2-sp td {
    padding: 1.5rem 0rem 1.5rem 5rem;
    border: 1px solid #b2b2b2;
    border-left: 0px !important;
    border-bottom: 0px !important;
}
.clear {
    clear: both;
}
@media screen and (max-width: 650px) and (max-width: 1000px) {
    .header-nav-wrap {
        right: 0%;
        position: relative;
        height: auto;
    }
}

@media screen and (max-width: 650px) {
    .header-nav-wrap {
        z-index: 6000;
        width: 100%;
        height: 100vh;
        position: fixed;
    }
}

.header-nav-wrap {
    top: 0;
    z-index: 2000;
    width: 100%;
    right: -120%;
    height: 100vh;
    position: fixed;
    transition: all 0.6s;
    background-color: #f5f2e9;
}
/*----------------------------------------
    試験内容区分の詳細
 ----------------------------------------*/
.kubun1 {
    float: left;
    width: 273px;
}
.kubun2 {
    float: right;
}
.kubun1 li, .kubun2 li {
    font-size: 1.8rem;
    margin-top: 2rem;
    line-height: 2.5rem;
    font-weight: bold;
}
.kubun1 ul, .kubun2 ul {
    margin-block-end: 0;
    margin-block-start: 0;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.kubunw {
    font-size: 1.3rem !important;
    font-weight: 400 !important;
}

/*----------------------------------------
    お問い合わせ
 ----------------------------------------*/
.otoiawase_midashi {
    text-align: left;
    font-size: 2.3rem;
    padding-left: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #009f96;
    font-weight: bold;
    line-height: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #009f96;
}
.otoiawase_midashi2 {
    text-align: left;
    font-size: 2.3rem;
    padding-left: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #009f96;
    font-weight: bold;
    line-height: 3.2rem;
    margin-top: 8rem;
    margin-bottom: 1rem;
    color: #009f96;
}
.ask li {
    line-height: 3.5rem;
    font-weight: bold;
    position: relative;
    font-size: 1.8rem;
    color: black;
    margin-left: 2.9rem;
    margin-bottom: 1rem;
}
.ask li:before {
    content: "Q";
    font-size: 2.4rem;
    color: #009f96;
    font-weight: bold;
    position: absolute;
    top: -0.3rem;
    left: -2.9rem;
}
.ask2 li {
    line-height: 3.5rem;
    margin-left: 2.5rem;
    position: relative;
    font-size: 1.8rem;
    color: black;
}
.ask2 li:first-child::before {
    content: "A";
    font-size: 2.4rem;
    color: #009f96;
    font-weight: bold;
    position: absolute;
    left: -2.5rem;
}

/*----------------------------------------
    タイムアウトエラー
 ----------------------------------------*/
.timeouterr-honbun {
    line-height: 3.5rem;
    font-size: 1.8rem;
}
.timeouterr-honbun-2 {
    margin-top: 2rem;
}
.timeouterr-honbun-2 li {
    line-height: 3.5rem;
    font-size: 1.8rem;
    position: relative;
    margin-left: 2.5rem;
}
.timeouterr-honbun-2 li:before {
    top: 1rem;
    content: "";
    position: absolute;
    left: -2.5rem;
    line-height: 3.5rem;
    font-size: 1.8rem;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 0.9rem;
    background-color: #a8d8d4;
}

/*----------------------------------------
    システムエラー
 ----------------------------------------*/
.toiawasesaki {
    line-height: 2.3rem;
    font-size: 1.4rem;
    background-color: #e5e5e5;
    padding: 2rem;
    width: 100%;
}

/*----------------------------------------
    決済方法選択
 ----------------------------------------*/
.kessai-chui-box1 {
    padding: 2rem;
    background-color: #e5e5e5;
    margin-bottom: 20px;
}
.chui-box2 li, .chui-box3 li, .chui-box4 li{
    position: relative;
    font-size: 1.4rem;
    line-height: 2.5rem;
}
.chui-box2 li:nth-child(n + 2) {
    margin-left: 1.5rem;
}
.chui-box2 li:nth-child(n + 2)::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    height: 1rem;
    width: 1rem;
    top: 0.9rem;
    border-radius: 1rem;
    background-color: #808080;
}
.kessai-choice-radio {
    position: relative;
    line-height: 2.7rem;
    font-weight: bold;
    font-size: 1.8rem;
    padding: 54px 49px;
    background-color: #dbeeed;
    margin: 20px auto 40px;
    width: 100%;
}
.form-input-bma-kessai {
    background-color: #e5e5e5;
    color: #000;
    border: solid 1px #fff;
    font-size: 1.8rem;
}

/*----------------------------------------
    仮申込完了
 ----------------------------------------*/
.k_title {
    margin: 2rem 0;
    font-size: 1.8rem;
    font-weight: bold;
}
.k_title li {
    line-height: 3rem;
}
.k_title3 {
    border: 2px solid #009f96;
    padding: 2rem 0;
    text-align: center;
    margin: 2rem auto;
    font-size: 1.8rem;
    font-weight: bold;
    /*width: 737px;*/
}
.k_title3 li {
    line-height: 3.5rem;
}
.kessai-chui-box1-2 {
    padding: 2rem;
    background-color: #e5e5e5;
    margin-bottom: 20px;
}
ol.chui-box2-2 {
    counter-reset: item;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;

}
.chui-box2-2 li {
    position: relative;
    font-size: 1.4rem;
    line-height: 2.5rem;
}

.chui-box2-2 li:nth-child(n + 2) {
    margin-left: 1.5rem;
}
.chui-box2-2 li:nth-child(n + 2)::before {
    counter-increment: item;
    content: counter(item)'.';
    position: absolute;
    left: -1.5rem;
}
/*----------------------------------------
    資格情報入力
 ----------------------------------------*/
.chui-box {
    padding: 2rem;
    background-color: #e5e5e5;
    width: 100%;
    /*margin-bottom: 20px;*/
}
.chui-box2 li, .chui-box3 li, .chui-box4 li, .chui-box2-2 li {
    position: relative;
    font-size: 1.3rem;
    line-height: 2.5rem;
}
.chui-box2 li:nth-child(n + 2)::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    height: 1rem;
    width: 1rem;
    top: 0.9rem;
    border-radius: 1rem;
    background-color: #808080;
}
.chui-box3 li, .chui-box4 li {
    text-indent: -1.5rem;
    margin-left: 1.5rem;
}
.chui-box3 li:nth-child(2) {
    text-indent: 0rem;
    margin-left: 1.5rem;
}
.form-input-skkjohoinp {
    background-color: #e5e5e5;
    color: #000;
    border: solid 1px #fff;
    font-size: 1.8rem;
    width: 520px;
}
@media (max-width: 991.9px) {
    .form-input-skkjohoinp {
        background-color: #e5e5e5;
        color: #000;
        border: solid 1px #fff;
        font-size: 1.8rem;
        width: 100%
    }
}
.form-input-ksu-skkjohoinp {
    background-color: #e5e5e5;
    color: #000;
    border: solid 1px #fff;
    font-size: 1.8rem;
    width: 530px;
}
@media (max-width: 991.9px) {
    .form-input-ksu-skkjohoinp {
        background-color: #e5e5e5;
        color: #000;
        border: solid 1px #fff;
        font-size: 1.8rem;
        width: 100%;
    }
}
.form-name-skkjohoinp {
    background-color: #999999;
    color: #fff;
    border: solid 1px #fff;
    font-size: 1.8rem;
    width: 190px;
}
@media (max-width: 991.9px) {
    .form-name-skkjohoinp {
        background-color: #999999;
        color: #fff;
        border: solid 1px #fff;
        font-size: 1.8rem;
        width: 100%
    }
}
.shikaku {
    padding: 0.3em 0;
    text-align: center;
    width: 100% !important;
}
.check_button {
    margin-top: 0px !important;
    margin-left: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    color: white;
    background-color: #009f96;
    width: 7rem;
    border:solid 1px #009f96;
}
/*----------------------------------------
    申込情報確認
 ----------------------------------------*/
.form-input-mskjohoconf {
    background-color: #e5e5e5;
    color: #000;
    border: solid 1px #fff;
    font-size: 1.8rem;
    padding: 20px 10px;

}.form-name-mskjohoconf {
    background-color: #999999;
    color: #fff;
    border: solid 1px #fff;
    font-size: 1.8rem;
}
/*----------------------------------------
    申込履歴
 ----------------------------------------*/
.rirekiList {
    margin-top: 20px;
    margin-bottom: 40px;
    width: 100%;
    border-collapse: collapse;
    font-size: 1.4rem;
    background-color: #e5e5e5;
}
/*.rirekiList tr:first-child {
    font-weight: bold;
    padding-left: 1rem;
    background-color: #999999;
    color: white;
}*/
.rirekishosai-botton {
    margin: 0 auto;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: #009f96;
    color: white;
    font-weight: bold;
}

.chui-box2-2 li:nth-child(n + 2)::before {
    counter-increment: item;
    content: counter(item)'.';
    position: absolute;
    left: -1.5rem;
}
.table-col-rirekiList{
    background-color: #e5e5e5;
    border: solid 1px #fff;
    padding: 20px 5px 20px 10px;
}
.table-col-rirekiList-sp{
    background-color: #e5e5e5;
    border: solid 1px #fff;
    padding: 7px;
}
.rirekishosai-botton-sp {
    background-color: #e5e5e5;
    border: none;
    padding: 0 4px 0;
}
.button-icon-next {
    content: "";
    top: 28rem;
    right: 12px;
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 2px solid black;
    border-right: 2px solid black;
    padding: 6px;
    float: right;
}
/*----------------------------------------
    申込履歴詳細
 ----------------------------------------*/
.form-name-bma-rireki {
    background-color: #999999;
    color: #fff;
    border: solid 1px #fff;
    font-size: 1.8rem;
    padding-left: 10px;
}

.form-input-bma-rireki {
    background-color: #e5e5e5;
    color: #000;
    border: solid 1px #fff;
    font-size: 1.8rem;
    padding: 20px 10px;
}

.button-upload {
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
    font-size: 1.7rem;
    margin-top: 4rem;
    margin-bottom: 6rem;
    color: white;
    width: 234px;
    padding: 1rem 2rem;
    background-color: #009f96;
    border:solid 1px #fff;
}
.shosai-botton {
    position: relative;
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1em;
    width: 6em;
    padding: 1rem 3rem 1rem 3rem;
    text-align: center;
    background-color: #009f96;
    border:solid 1px #009f96;
}
/* 「戻る」ボタンの矢印 */
.shosai-botton::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 0;
    height: 0;
    margin-top: -7px;
    border: 7px solid transparent;        /*top right bottom を透明化 */ 
    border-right: 9px solid #fff;
}

.upd-button-rireki{
    width: 102px;
    background: #20b2aa;
    color: white;
    border-bottom: solid 1px #20b2aa;
    border-top: solid 1px #20b2aa;
    border-right: solid 2px #20b2aa;
    border-left: solid 2px #20b2aa;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.3rem;
}
.upd-button-rireki:disabled, .upd-button-rireki:disabled:hover {
    background-color: #808080;
    border-bottom: solid 1px #808080;
    border-top: solid 1px #808080;
    border-right: solid 2px #808080;
    border-left: solid 2px #808080;
}
/*----------------------------------------
    申込情報変更入力
 ----------------------------------------*/
.form-input-mskUpdinp {
    background-color: #e5e5e5;
    color: #000;
    border: solid 1px #fff;
    font-size: 1.8rem;
    /*width: 100%;*/
}

/*----------------------------------------
    特定商取引法に基づく表記
 ----------------------------------------*/
.form-name-tokutei {
    background-color: #999999;
    color: #fff;
    border: solid 1px #fff;
    font-size: 1.8rem;
    width: 221px;
    padding: 10px;
}
.form-input-tokutei {
    background-color: #e5e5e5;
    border: solid 1px #fff;
    font-size: 1.8rem;
    width: 539px;
    padding: 15px;
}

/*----------------------------------------
    端末切り替え
 ----------------------------------------*/
/* スマートフォン */
@media (max-width: 991.9px) {
    .layout-pc {
        display: none;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .layout-sp {
        display: none;
    }
}

/*----------------------------------------
    画像切取ツール
----------------------------------------*/
.kiritori-title-name {
    text-align: left;
    font-size: 2.8rem;
    border: 1px solid black;
    padding: 15px 10px 15px 20px;
    font-weight: bold;
    line-height: 1.8rem;
    margin-bottom: 1rem;
}

.up-w3 {
    text-align: center;
    font-weight: bold;
    font-size: 2.8rem;
    margin: 4rem 0px 2rem 0px;
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    background-color: #009f96;
    border-color: #009f96;
    border: solid 1px #009f96;
}

.up-w4w {
    letter-spacing: 0.3rem;
    text-align: center;
    font-weight: bold;
    width: 170px;
    font-size: 1.8rem;
    color: #009f96;
    border: 1px solid #009f96;
    border-radius: 0.5rem;
    background-color: white;
    margin: 20px 10px 0px;
}

.up-w5 {
    display: block;
    margin: 0 auto;
    width: 160px;
    height: 55px;
    background: #20b2aa;
    border-style: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    font-weight: bold;
    position: relative;
    border-radius:4px;
    margin-top: 70px;
}

.up-wc {
    margin-top: 3rem;
    text-align: center;
    line-height: 2rem;
    font-size: 1.4rem;
}

.rotate {
    width: 95px;
    background-color: #e5e5e5;
    border: none;
    color: black;
    transition: background-color 0.3s;
    font-size: 15px;
    margin: 0px 17px;
}

.kiribox {
    display: flex;
    text-align: center;
    width: 252px;
    margin: 0 auto;
    justify-content: center;
}

.clear {
    clear: both;
}

.hyoup {
    width: 100%;
    margin: 4rem 0;
    border-collapse: collapse;
}

tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

.hyoup td {
    height: 60px;
    font-size: 1.8rem;
    font-weight: bold;
    border: 1px solid black;
}

@media (max-width: 991.9px) {
    .hyoup td {
        height: 60px;
        font-size: 1.8rem;
        font-weight: bold;
        border: 1px solid black;
        display: block;
        height: auto;
    }
}

.hyoup td:nth-of-type(1) {
    /*width: 130px;*/
    color: white;
    background-color: #009f96;
}

.hyoup td:nth-of-type(2) {
    position: relative;
    /*padding: 0 2rem;*/
}

.hyoup ul {
    margin: 1rem;
}

.hyoup li {
    display: inline-block;
    text-align: -webkit-match-parent;
}

.hyoup div {
    margin: 1rem 1rem;
    /*float: left;*/
}

.clear2 {
    display: none;
    clear: both;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer; /* カーソルを分かりやすく */
    outline: none; /* スライダーのアウトラインは見た目がキツイので消す */
    height: 5px; /* バーの高さ */
    width: 100%; /* バーの幅 */
    background: #009f96; /* バーの背景色 */
    border-radius: 10px; /* バーの両端の丸み */
    border: solid 1px #009f96; /* バー周囲の線 */
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /*  デフォルトのつまみのスタイルを解除 */
    background: white; /* 背景色 */
    width: 20px; /* 幅 */
    height: 20px; /* 高さ */
    border-radius: 50%; /* 円形に */
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15); /* 影 */
    border: solid 1px #009f96;
}

.slider-title {
    background-color: #009f96;
    color: #fff;
    border: solid 1px #000;
    font-size: 1.8rem;
}

.slider-main {
    background-color: #e5e5e5;
    color: #000;
    border: solid 1px #000;
    font-size: 1.8rem;
    font-weight: bold;
}

.flexbox {
    display: flex;
    flex-direction: column;
}

.yoko {
    display: flex;
    justify-content: space-around;
}

/* スマートフォン */
@media (max-width: 991.9px) {
    .layout-memnu-pc {
        display: none;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .layout-menu-sp {
        display: none;
    }
}
