/** 汎用css **/
/* normalize */

html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
    font-size: 100%;
    vertical-align:baseline;
}
*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
article, header, footer, aside, figure, figcaption, nav, section {
    display:block;
}
html, body{ height:100%; }
body {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    position:relative;
    margin:0;
}
ol, ul {
    list-style: none;
    list-style-type: none;
}
a{
color:#7c4670;
text-decoration:none;
}
header h1 a{
    background: linear-gradient(135deg, rgba(0, 162, 255, 1) 0%, rgba(0, 32, 229, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration:none;
}


/* common */
.clearfix:after{display:block;content:"";clear:both;}
.left{float:left;}
.right{float:right;}

.pt20{padding-top:20px !important;}
.pb20{padding-bottom:20px !important;}

.mt2{margin-top:2px !important;}
.mt5{margin-top:5px !important;}
.mt10{margin-top:10px !important;}
.mt20{margin-top:20px !important;}
.mt30{margin-top:30px !important;}
.mt40{margin-top:40px !important;}
.mt50{margin-top:50px !important;}

.mb5{margin-bottom:5px !important;}
.mb10{margin-bottom:10px !important;}
.mb20{margin-bottom:20px !important;}
.mb30{margin-bottom:30px !important;}
.mb30{margin-bottom:30px !important;}
.mb80{margin-bottom:80px !important;}

.mr5{margin-right:5px !important;}
.mr10{margin-right:10px !important;}
.mr20{margin-right:20px !important;}
.mr30{margin-right:30px !important;}

.ml5{margin-left:5px !important;}
.ml10{margin-left:10px !important;}
.ml20{margin-left:20px !important;}
.ml30{margin-left:30px !important;}

.text_c{text-align:center;}
.text_r{text-align:right;}

.align_item_c{align-items: center;}

.fs12{font-size:12px !important;}
.fs14{font-size:14px !important;}
.fs16{font-size:16px !important;}
.fs18{font-size:18px !important;}
.fs24{font-size:24px !important;}

.w100p{width:100% !important;}
.w90p{width:90% !important;}
.w80p{width:80% !important;}
.w70p{width:70% !important;}
.w60p{width:60% !important;}
.w50p{width:50% !important;}
.w40p{width:40% !important;}
.w30p{width:30% !important;}
.w25p{width:25% !important;}
.w20p{width:20% !important;}
.w15p{width:15% !important;}
.w10p{width:10% !important;}
.w190{width:190px !important;}

.h100{height:100px !important;}
.h200{height:200px !important;}

h2{
    font-size:1.2em;
    font-weight:bold;
}
h2 span{
    display:inline-block;
    padding:0 0.2em;
    background: linear-gradient(transparent 75%, #ffff00 0%);
    font-weight: bold; 
}

.td_u{text-decoration:underline !important;}

.dl_table{
    display: table;
    width: 100%;
}
.dl_table > dl{
    display: table-row;
}
.dl_table > dl > dt,
.dl_table > dl > dd{
    display: table-cell;
}

.flex{
    display: -webkit-flex; /* Safari */
    display: flex;
}

.space_evenly{
    justify-content: space-evenly;
}

.flex.col-2 div.student{
    width:25%;
    padding:10px;
}
.flex .f_item:not(:last-child){
    margin-right: 20px;
}

.none{
    display: none;
}

.inline > *{
    display: inline-block;
}

.error-message { color: #ff2c2c; }

.not-permitted-message { color: #ff2c2c; }

.form-error{ border-color: #ff2c2c!important; }

.box{
    background: #fff;
    padding: 10px;
    margin-bottom: 24px;

}
.required {
    color: #fe5855;
    padding-left: 10px;
}
/* layout */
.header_container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
#side_navigation{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    margin-top: 60px;
    min-width: 200px;
    width: 200px;
    z-index: 9999;
}
#side_navigation nav{
    overflow: auto;
    height: 100%;
}
#side_navigation nav ul li a{
    display: block;
    padding: 15px 20px;
    font-size: 14px;
}

#side_navigation nav ul li a:hover{
    /*
    background: rgba(0,0,0,0.2);
    */
    background: rgba(255,255,255,0.5)
}
#side_navigation nav ul li.active a:hover{
    background: linear-gradient(135deg, rgba(0, 162, 255, 1) 0%, rgba(0, 32, 229, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* メイン */
.container.admin{
    padding: 60px 0 0 200px;
}
.content{
    margin: 0 auto;
    padding-top: calc( clamp(1.92rem,2.4615384615vw,16rem) + 92px);
    padding-left: 50px;
    padding-right: 50px;
}
.content:has(.inquiry-wrapper) {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
}
.inquiry-wrapper{
    margin: 0 auto;
    padding-top: calc( clamp(1.92rem,2.4615384615vw,16rem) + 92px);
    padding-left: 50px;
    padding-right: 50px;
}

/* ページタイトル */
.title_wrap{
    margin-bottom: 1em;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
.title_wrap h2{
    float: left;
}
.title_wrap:after{
    content: "";
    display: block;
    clear: both;
}

/* アイコン画像 */
/* アイキャッチ画像 */
.icon,
.eyecatch,
.blog_header,
.bannar{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #C0C0C0;
    display: inline-block;
    margin: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.icon{
    border-radius: 50%;;
    width: 90px;
    height: 90px;
}

.eyecatch{
    width: 64px;
    height: 40px;
}

.blog_header{
    width: 600px;
    height: 160px;
}

/* フォーム */
/*
input[type=text],
input[type=password],
input[type=tel],
input[type=email],
textarea{
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    padding: 10px 12px;
    background: rgb(232, 240, 254);
    font-family: inherit;
}
input[type=number],
select{
    padding: 10px 12px;
    border-radius: 6px;
}
select{
    border: none;
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    background: rgb(232, 240, 254);
    font-family: inherit;
}
*/
header select{
    padding: 5px 10px;
    font-size: 14px;
}
[type=file]{
    /*
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 2px;
    background: #faf7f7;
    width: 260px;
    cursor: pointer;
    vertical-align: middle;
    */
}

.radio input[type="radio"],
.check input[type="checkbox"] {
    display:none;
}
.radio label ,
.check label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 0 0 0 28px;
    color: #000;
    font-size: 14px;
    text-align: left;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
}
.radio label{
    background:url(/request/img/radio_off.svg) left center no-repeat;
    background-size: auto 100%;
}
.check label{
    background:url(/request/img/check_off.svg) left center no-repeat;
    background-size: auto 100%;
}
.check label:before{
    border-radius: 0;
}
.radio label:hover,
.check label:hover{
    opacity: .8;
}
.radio input[type=radio]:checked + label{
    background:url(/request/img/radio_on.svg) left center no-repeat;
    background-size: auto 100%;
}
.check input[type=checkbox]:checked + label{
    background:url(/request/img/check_on.svg) left center no-repeat;
    background-size: auto 100%;
}

.medium{
    width: 100%;
    max-width: 420px;
}
.medium_large{
    width: 100%;
    max-width: 640px;
}
.large{
    width: 100%;
    max-width: 900px;
}

/* ボタン */
.btn{
    appearance: none;
    color: #fff;
    display: inline-block;
    padding: .5rem 1.2rem;
    margin: 2px auto;
    font-size:14px;
    border:none;
    border-radius: 2rem;
    display:inline-block;
    text-align: center;
    text-decoration:none;
    vertical-align: middle;
    cursor: pointer;
    background: #154a92;
}
.btn:hover{
    opacity: 0.9;
}
.login_box .btn{
    background: #1889c5;
}
.btn.btn_secondary{
    background: #1889c5;
}
.btn.btn_back,
.btn.btn_delete{
    background: #8a8a8a;
}
.btn.btn_small{
    padding: 5px 10px;
    font-size: 12px;
}
.btn.submit{
    font-weight:normal;
    letter-spacing: 0.2em;
}
.list_table .btn{
    padding: 6px 15px;
    font-size:14px;
}

input[type=text] + .btn,
select + .btn{
    margin-left: 0.5em;
}
.login_box{
    width: 500px;
    margin: 30px auto;
    background: #fff;
    font-size:14px;
}
.login_box h2{
    margin-bottom:1em;
}
.login_box .message.error{
    font-weight: bold;
    color: #c00;
    text-align: center;
    padding: 0.5em 0;
}
.login_box dl dt,
.login_box dl dd{
    padding-bottom: 10px;
}
.login_box input[type=text],
.login_box input[type=password]{
    width: 100%;
}
.login_box .btn_wrap{
    margin-top: 20px;
}
.login_box .btn{
    display: block;
    margin: 0 auto;
}
button.btn:disabled {
    background: #bdbaba;
    cursor: default;
}

.btn.submit{
    width: 300px;
    line-height: 3rem;
    padding: 0;
    position:relative;
    font-size: 1.25rem;
    font-weight: bold;
}
/*
.btn.submit:active{
    box-shadow: none;
    transform: translateY(5px);
}
/*

/* テーブル */
table{
    width: 100%;
    border-collapse:collapse;
    font-size: 14px;
    color: #2B2B2B;
}

table th,
table td{
    padding: .1rem 1rem;
    vertical-align: middle;
}
table th{
    background: #154a92;
}
table th,
table th a{
    color: #fff;
    font-weight: bold;
}


.dl_form dl{
    margin-bottom: 30px;
}
.dl_form dl dt{
    font-weight: bold;
    margin-bottom: 4px;
}
.dl_form dl dd{
}

/* ページャー */
.pager{
    margin-bottom: 20px;
}

.pager > li{
    display: inline-block;
    min-width: 30px;
}

.pager > li:not(:last-child){
    margin-right: 10px;
}

.pager > li.disabled{
    color:#ccc;
}

.pager > li a,
.pager > li span{
    background: #ACACAC;
    color: #fff;
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.pager > li.active a{
    background: #21686A;
}

.pager > li a:hover{
    //要望あり、色を変更してます。12/7 kawasaki
    //background: #eee;
    background: #21686A;
}

/* モーダル */
#modal{
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 99999;
}

#modal .overlay{
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    z-index: 90000;
    background: rgba(0,0,0,0.6);
    cursor: pointer;
    width: 100vw;
    height: 100vh;
}

#modal.active{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

#modal .modal_content{
    background: #fff;
    width: 78vw;
    max-width: 890px;
    display: none;
    z-index: 100000;
    padding: 2.25rem 20px;
}

#modal.active .modal_content{
    display: block;
}

#modal .modal_inner{
    text-align: center;
    max-height: 80vh;
    overflow: auto;
}

/* テーブル */
table tbody tr:nth-child(odd){
    background: #fff;
}
table tbody tr:nth-child(even){
    background: #DDF3FE;
}
table tbody td{
    color: #2B2B2B;
}
.list_table{
}
.list_table table thead th:first-child{
    border-radius: 6px 0 0 0;
}
.list_table table thead th:last-child{
    border-radius: 0 6px 0 0;
}
.list_table table tbody tr:nth-child(even){
    background: #e3f6ff;
}
.list_table table tbody tr:hover{
    background: #ddd;
}
.list_table table thead th,
.list_table table tbody td.operation{
    white-space: nowrap;
}
.list_table table thead th,
.list_table table tbody td,
.list_table table tbody td input,
.list_table table tbody td select{
    word-break: break-word;
    font-size: 12px;
}
.list_table table input.amount{
    width: 80px;
}
.list_table table th.check_wrap{
    text-align: left;
}

.form_table{
}
.form_table table th{
    text-align: left;
    width: 270px;
    max-width: 300px;
}
.form_table table tr + tr th,
.form_table table tr + tr td{
    border-top: 2px solid #f9f9f9;
}
.form_table table tr:nth-child(even){
    background: #fff;
}
.form_table textarea{
    width: 100%;
    resize: vertical;
}
.form_table table tr td + td,
.form_table table tr td + th{
    border-left: 5px solid #f9f9f9;
}

.form_table{margin-bottom: 20px;}
.form_table.search{margin-bottom:10px;}
.form_table img{
    max-width:550px;
    height:auto;
    max-height:400px;
    vertical-align:bottom;
}
@media only screen and (max-width: 750px) {
    .content{
        padding-left: 22px;
        padding-right: 22px;
        padding-top: calc( ( ( max(clamp(14.22rem,18.2307692308vw,118.5rem),180px) ) / 19 ) + 52px);
    }
    .inquiry-wrapper{
        padding-left: 22px;
        padding-right: 22px;
        padding-top: calc( ( ( max(clamp(14.22rem,18.2307692308vw,118.5rem),180px) ) / 19 ) + 52px);
    }
}
