body{
    font-family: 'Meiryo' , 'ヒラギノ角ゴ ProN' , 'Roboto';
    color: #323232;
    background-color: #f0f0f0;
}

@media (max-width: 991px) {
    body {
        font-size: 18px;
        -webkit-text-size-adjust: 100%;
    }
}

/* Safariのinput部のデフォルトを削除 */
input[type="button"],input[type="text"],input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

/* ラジオボタン */
.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;
}

/* フォーム内テーブル */
.table-form {
    margin: 10px 0;
    width: 100%;
}

/* 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;
}
/* div内上下中央寄せクラス(インライン用) */
span[class = middle]{
    display: inline-block;
}
/* div内上下左右中央寄せクラス(middleと併用)　*/
.middle-center{
    -webkit-box-pack:center;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:center;/*--- IE10 ---*/
    -webkit-justify-content:center;/*--- safari（PC）用 ---*/
    justify-content:center;
}
/* div内上下中央右寄せクラス(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;
}

/* テキストボックス */
.txt-box {
    -webkit-appearance: none;
    -ms-input-appearance: none;
    border:0;
    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: 0;
    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;
    border: none;
    background: #fff;
    border: 0;
    -webkit-box-align: center;
    box-sizing: border-box;
    font-weight: 300;
    height: 35px;
}

/* 既存のデザインを削除(IE用) */
select::-ms-expand {
    display: none;
}

/* 既存のデザインを削除(FireFox・Safari用) */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
}

/* ボタン周りの青線を削除(Chrome用) */
button {
    outline: none;
}

/* 「進む」ボタン */
.button-next {
    width: 250px;
    height: 70px;
    background-color: #3f5a77;
    border-style: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    transition: background-color 0.3s;
    position: relative;
}

/* 「進む」ボタン 非活性時 */
.button-next:disabled, .button-next:disabled:hover {
    background-color: #808080;
}

/* 「進む」ボタン ホバー時 */
.button-next:hover, .button-next:focus {
    filter:alpha(opacity=80);
    opacity:0.8;
}

/* 「進む」ボタンの矢印 */
.button-next::after {
    content: '';
    border-right: 2px solid;
    border-top: 2px solid;
    display: inline-block;
    height: 13px;
    position: absolute;
    top: 28px;
    left: 225px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    width: 13px;
}

/* 「戻る」ボタン */
.button-back {
    width: 250px;
    height: 70px;
    background-color: #3f5a77;
    border-style: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    position: relative;
}

/* 「戻る」ボタンの矢印 */
.button-back::before {
    content: '';
    border-left: 2px solid;
    border-bottom: 2px solid;
    display:inline-block;
    height: 13px;
    position: absolute;
    top: 28px;
    left: 13px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    width: 13px;
}

/* 「戻る」ボタン 非活性時 */
.button-back:disabled, .button-back:disabled:hover {
    background-color: #808080;
}

/* 「戻る」ボタン ホバー時 */
.button-back:hover, .button-back:focus{
    filter:alpha(opacity=80);
    opacity:0.8;
}

/* 通常ボタン */
.button {
    width: 250px;
    height: 70px;
    background-color: #3f5a77;
    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;
}

/* 選択ボタン */
.button-click {
    width: 100%;
    height: 60px;
    border-style: none;
    position: relative;
    margin-bottom: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s;
}

/* 試験科目選択ボタン */
.button-choose {
    width: 100%;
    height: 120px;
    border-style: none;
    position: relative;
    margin-bottom: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s;
}

/* 試験科目選択ボタン ホバー時 */
.button-choose:hover, .button-choose:focus {
    transition: background-color 0.3s;
}

/* 試験科目選択ボタンの上矢印 */
.button-choose::after {
    content: '';
    border-left: solid 30px transparent;
    border-right: solid 30px transparent;
    border-top: solid 25px #fff;
    display: block;
    bottom: 96px;
    left: 50%;
    margin-left: -30px;
    position: absolute;
}

/* ヘルプデスクフォーム・ヘッダ部 */
.help-desk-head {
    line-height: 23px;
    margin: 20px 0 0 0;
    white-space: nowrap;
}

/* ヘルプデスクフォーム・フッター部 */
.help-desk{
    margin: 0 10px 10px 10px;
    line-height: 30px;
}
@media (min-width: 992px) {
    .telNo{
        font-family: MS PGothic;
    }
}

/* スマートフォン */
@media (max-width: 991px) {
    .help-desk {
        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) {
    .help-desk{
        height: 140px;
        padding: 20px 10px;
        border-top: 5px solid #d2dcdd;
        border-bottom: 5px solid #d2dcdd;
    }
    .help-desk span:last-child {
        letter-spacing: 2px;
    }
}

/* フッターリンクボタン */
.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: 991px) {
    .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;
    }
}

/* 「受付トップへ」ボタン */
.to-top{
    border: 5px solid #d2dcdd;
    margin: 30px 10px 40px 10px;
    height: 50px;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s;
}
/* 「受付トップへ」ボタン ホバー時 */
.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;
}
/* スマートフォン */
@media (max-width: 991px) {
    .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%;
    }
}

/* 画面を中央に表示させる */
.main-width {
    padding: 0px;
    margin: auto;
    background: #fff;
    width: 100%;
    overflow: hidden;
}
/* パソコンでは幅を固定する */
@media (min-width: 992px) {
    .main-width {
        width: 960px;
        overflow: visible;
    }
}
/* 幅が480px未満なら幅を固定する */
@media (max-width: 479px) {
    .main-width{
        width:480px;
    }
}

/* フォーム内の表示の調整 */
.main{
    width:90%;
    height:auto;
    margin:auto;
    text-align:left;
}

/* 注意文字 */
.caution-chara{
    color: #e84040;
}

/* チェックアイコン */
.check-icon {
    color: #14c3c8;
    vertical-align: middle;
    opacity: 0;
}
@media (min-width: 992px) {
    .check-icon{
        font-size: 25px;
    }
}
@media (max-width: 991px) {
    .check-icon{
        font-size: 1.6rem;
    }
}

/* フォントサイズ制御 */
/* スマートフォン */
@media (max-width: 991px) {
    .font-size{
        font-size: 1.0rem;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .font-size{
        font-size: 16px;
    }
}

/* スマートフォン */
@media (max-width: 991px) {
    .head{
        padding-top: 5px;
        font-size: 2.5rem;
        text-align: center;
        line-height: 30px;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .head{
        line-height: 120px;
    }
}

/* ヘッダー内学科表示箇所 */
.gakka {
    width: 102px;
    height: 42px;
    line-height: 42px;
    border: 2px solid #fff;
    background-color: #b464ab;
    color: #fff;
    letter-spacing: 13px;
    white-space: nowrap;
    font-size: 80%;
    position: relative;
}
/* スマートフォン */
@media (max-width: 991px) {
    .gakka{
        left: 50%;
        transform: translateX(-50%);
    }
}
/* パソコン */
@media (min-width: 992px) {
    .gakka{
        top: 50%;
        transform: translateY(-50%);
    }
}

/* パンくずリスト */
.bread-crumbs {
    background-color: transparent;
    font-weight: 600;
    font-size: 16px;
    list-style: none;
    overflow: hidden;
    padding: 0 16px 0 0;
    display: table;
    table-layout: fixed;
    width: 97.5%;
    margin: 0 15px;
}

.bread-crumbs li {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    z-index: 0;
    margin-right: 20px;
}

.bread-crumbs li span {
    text-decoration: none; 
    padding: 10px 0 10px 10px;
    background-color: #d2dcdd;
    position: relative;
    display: block;
}

.bread-crumbs li span:after {
    content: " "; 
    display: block;
    width: 0; 
    height: 0;
    border-style: solid;
    border-width: 80px 0 80px 10px;
    border-color: transparent transparent transparent #d2dcdd;
    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 10px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 50%;
    margin-top: -80px;
    left: 99%;
    margin-left: 3px;
    z-index: 1; 
}

/* パンくずリスト現在項目・過去項目 */
.now span, .end span {
    background-color: #8b8baf !important;
}

.now span {
    color: #fff !important;
}

.now span:before, end span:before {
    border-color: transparent transparent transparent #fff !important;
}

.now span:after, .end span:after {
    border-left: 10px solid #8b8baf !important;
}

/* フォーム部項目名（申込可否） */
/* スマートフォン */
@media (max-width: 991px) {
    .form-name-judge {
        background-color: #a0d2dc;
        border-bottom: solid 1px #fff;
        border-top: solid 1px #fff;
        padding: 5px 0;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .form-name-judge {
        background-color: #a0d2dc;
        border-right: solid 2px #fff;
        border-bottom: solid 1px #fff;
        border-top: solid 1px #fff;
    }
}

/* フォーム部入力箇所（申込可否） */
.form-input-judge {
    background-color: #d2dcdc;
    border-bottom: solid 1px #fff;
    border-top: solid 1px #fff;
}

/* フォーム部項目名（学科/製図） */
/* スマートフォン */
@media (max-width: 991px) {
    .form-name-gsw {
        background-color: #3f5a77;
        color: #fff;
        border-bottom: solid 1px #fff;
        border-top: solid 1px #fff;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    /* フォーム部入力箇所（学科） */
    .form-input-gsw-right {
        background-color: #dcd2dc;
        border-bottom: solid 1px #fff;
        border-top: solid 1px #fff;
    }
}
/* パソコン */
@media (min-width: 992px) {
    .form-name-gsw {
        background-color: #3f5a77;
        color: #fff;
        border-right: solid 2px #fff;
        border-bottom: solid 1px #fff;
        border-top: solid 1px #fff;
    }
    /* フォーム部入力箇所（学科） */
    .form-input-gsw-right {
        background-color: #dcd2dc;
        border-bottom: solid 1px #fff;
        border-top: solid 1px #fff;
    }
}
.form-name-gsw-left{
    height: 100%;
    float:left;
    width: 50%;
    border-right: solid 2px #fff;
    padding-left:10px;
}
.form-name-gsw-right{
    height: 100%;
    float:left;
    width: 50%;
    padding-left:5px;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
}

/* フォーム部入力箇所（学科） */
.form-input-gsw {
    background-color: #dcd2dc;
    border-bottom: solid 1px #fff;
    border-top: solid 1px #fff;
}

/* スマートフォン表示時、ボーダーを調整 */
@media (max-width: 991px) {
    .height-adjust-top{
        border-top: none !important;
    }
    .height-adjust-bottom{
        border-bottom: none !important;
        margin-bottom: -1px;
    }
}

/* フッター部 */
.footer {
    text-align: left;
    background: #3F5A77;
    color: #fff;
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    font-size: 15px;
}
.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;
}

/* 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;
}

/* スクリーンロック */
.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);
}

/* 項目表示非表示制御用チェックボックス */
.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;
}

/* エラーメッセージ用吹き出し*/
.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: 991px) {
    .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;
}

/* 決済方法などのテーブル */
.kessai_left{
    background-color: #e67878;
    color: #ffffff;
    font-weight: bold;
    border-right:solid 2px #fff;
    border-bottom:solid 1px #fff;
    border-top: solid 1px #fff;
}
@media (max-width: 991px) {
    .kessai_left{
        padding-top: 5px;
        padding-bottom: 5px;
    }
}
.kessai_right{
    background-color: #e6d2d2;
    border-bottom:solid 1px #fff;
    border-top:solid 1px #fff;
}

/* テキストのみの項目の余白 */
/* パソコン */
@media (min-width: 992px) {
    .out-txt{
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
@media (max-width: 991px) {
    .out-txt{
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

/* 注意喚起メッセージ部 */
.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: 991px) {
    .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: #ffe6ea !important;
}

/* リストマーク */
.list-mark li {
    list-style:none;
    margin-left: -15px;
}

.list-mark li:before {
    content: "○";
    margin-right: 3px;
}

/* 顔写真 */
.photo-file{
    max-width: 100%;
    height: auto;
    max-height: 416px;
}

/* チェックボックス */
.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;
}
/* 決済警告文バー */
.kessai_caution_bar{
    background-color: #f0d2d2;
    float: left;
    width: 1em;
}
/* 決済警告文 */
.kessai_caution_str{
    float: left;
    width: 95%;
    padding-left: 10px;
}

/* 小ボタン */
.button-s, .button-s-back, .button-s-next {
    width: 125px;
    height: 35px;
    background-color: #3f5a77;
    border-style: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    transition: background-color 0.3s;
    position: relative;
}

/* 「戻る」ボタンの矢印 */
.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;
}
/*印刷時用*/
@media print{
    html{
        width: 992px;
    }
    .form-name-gsw {
        background-color: #e6b4dc;
        border-right: solid 2px #fff;
        border-bottom: solid 1px #fff;
        border-top: solid 1px #fff;
    }
    /* フォーム部入力箇所（学科） */
    .form-input-gsw-right {
        background-color: #dcd2dc;
        border-bottom: solid 1px #fff;
        border-top: solid 1px #fff;
    }
    .form-name-gsw {
        background-color: #f5b964;
        border-right: solid 2px #fff;
        border-bottom: solid 1px #fff;
        border-top: solid 1px #fff;
    }
    /* フォーム部入力箇所（学科） */
    .form-input-gsw-right {
        background-color: #e1dcc8;
        border-bottom: solid 1px #fff;
        border-top: solid 1px #fff;
    }
    .print-break{
        page-break-before: always;
    }
    .printTips{
        display: none !important;
    }
}

.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;
}

/* エラーメッセージ文字サイズ */
.err-msg {
    font-size :1.8rem;
}

/* ２行目以降字下げ*/
.indent {
    text-indent: -1em;
    padding-left:1em;
    margin: 0;
}

/*【警告】ボタン*/
.button-warning {
    width: 120px;
    height: 35px;
    background-color: #3f5a77;
    color: #FFFFFF;
    font-size: 18px;
    transition: background-color 0.3s;
    position: relative;
}

/* 非活性時 */
.button-warning:disabled, .button-warning:disabled:hover {
    background-color: #808080;
}

/* ホバー時 */
.button-warning:hover, .button-warning:focus {
    filter:alpha(opacity=80);
    opacity:0.8;
}

.modal{
    display: none;
    background-color: rgba(128,128,128,0.7);
    /* モーダルウィンドウの位置固定 */
    position: fixed;
    /* 背景色を画面いっぱいにする */
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
}

.modal_content{
    background: #fff;
    width: 500px;
    /* モーダルウィンドウを画面真ん中に表示 */
    margin: 25% auto;

}