/*全ページ共通スタイル*/

body{
    width: 100%;
    min-width:960px;/*-100*/

    /*font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;*/

    font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width:940px){/*860*/
    body{
        width: 100%;
        min-width: 100px;
    }
}

input[type="submit"] {/*iOS対策*/
    appearance: none;
    -webkit-appearance: none;
}

.wrapper{
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    width: 1000px;
    overflow: hidden;
}
@media screen and (max-width:1000px){
    .wrapper{
        width: 95%;
    }
}

.wrapperS{
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    width: 90%;/*-100*/
    overflow: hidden;
}

@media screen and (max-width:940px){
    /*.header a{
        display: none;
        height: 0px;
    }*/
    .header{
        height: 70px;
    }
    .header h2{
        top:0px;
    }
}

/*///////////////////////////////////////////////////////////////////////////////////////////*/

/*main*/

.main{
    display: flex;
    flex-direction: column;

    margin-top: 0px;
    margin-bottom: 30px;
}

@media screen and (max-width:940px){
    .main{
        /* width: 98%; */
    }
}

.main p{
    padding-left: 10px;
    padding-right: 10px;
}

.sp{
    margin-top: 6px;
    margin-bottom: 6px;
}

.red{
    color: red;
    font-weight: bold;
}

svg{
    bottom: -3px;
    position: relative;
}

/*/////////////////////////////////////*/

.r-img{
    margin-left: 50px;
}

.main h2{
    padding: 20px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius:8px;
}
@media screen and (max-width:940px){
    .main h2{
        padding: 10px 10px;
        width: calc(100% - 30px);
    }
}

.mh1{
    background-color: rgb(248, 252, 255);
    /*border: dashed 4px #7197c9;*/

    border: dotted 5px #4675b2;
}

.mh2{
    background-color: rgb(255, 255, 255);
    border: 4px dotted #ffb294;
}

.main h3{
    padding: 8px 20px;
    border-left: solid 4px #274e92;
}
@media screen and (max-width:940px){
    .main h3{
        width: 92%;
    }
}

.space{
    margin-top: 8px;
    margin-bottom: 8px;
}


/*///////////////////////////////////////////////////////////////////////////////////////////*/

/*ボタン３つ*/

.btn-square {/*黄ボタン*/
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #ffe78f;/*ボタン色*/
    color: rgb(0, 0, 0);
    border: 2px solid black;
    border-bottom: solid 4px #54472f;
    border-radius: 8px;
    margin-top: 15px;
    /* margin-left: 30px; */
    margin-bottom: 20px;
    font-weight: bold;
    min-width: 160px;
    width: fit-content;
    transition: background 0.3s ease;
}
.btn-square:hover {
    background: #fff1ac;/*ホバー時の色*/
}
.btn-square:active {/*ボタンを押したとき*/
    -webkit-transform: translateY(2px);
    transform: translateY(2px);/*下に動く*/
}

/* select_confirm用 */
.btn-square-black {/*黄ボタン*/
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #b6b6b6;/*ボタン色*/
    color: rgb(0, 0, 0);
    border-bottom: solid 4px #383838;
    border-radius: 8px;

    margin-left: 30px;
    margin-bottom: 20px;
    font-weight: bold;

    width: 160px;
}

.one-item > .route-btn {/*選択ボタン（黄ver）*/
    display: inline-block;
    padding: 0px 0px;
    text-decoration: none;
    background: #ffe78f;/*ボタン色*/
    color: rgb(0, 0, 0);
    border: 2px solid black;
    border-bottom: solid 4px #54472f;
    border-radius: 8px;
    font-weight: bold;
    width: 70px;
    height: 50px;
    margin-left: 0px;
    margin-right: 12px;
    margin-top: auto;
    margin-bottom: auto;
    transition: background 0.3s ease;
}
.one-item > .route-btn:hover {
    background: #fff1ac;/*ホバー時の色*/
}
.one-item > .route-btn:active {/*ボタンを押したとき*/
    -webkit-transform: translateY(2px);
    transform: translateY(2px);/*下に動く*/
}

.one-item-n > .route-btn {/*選択ボタン（グレーver）*/
    display: inline-block;
    padding: 0px 0px;
    text-decoration: none;
    background: #dfdfdf;/*ボタン色*/
    color: rgb(0, 0, 0);
    border: 2px solid #2b2b2b;
    border-bottom: solid 4px #2b2b2b;
    border-radius: 8px;

    margin-top: 14px;
    font-weight: bold;

    width: 70px;
    height: 50px;
    margin-left: 0px;
    margin-right: 12px;
    margin-top: auto;
    margin-bottom: auto;

    pointer-events: none;/*ボタンの無効化*/
}

.add-btn {/*青ボタン*/
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #6496c5;/*ボタン色*/
    color: rgb(255, 255, 255);
    border: 2px solid black;
    border-bottom: solid 4px #2f3854;
    border-radius: 8px;

    margin-left: 30px;
    margin-top: 6px;
    margin-bottom: 8px;
    font-weight: bold;

    width: fit-content;
    height: 40px;
    min-width: 140px;
    transition: background 0.3s ease;
}
.add-btn:hover {
    background: #7fb0e0;/*ホバー時の色*/
}
.add-btn:active {/*ボタンを押したとき*/
    -webkit-transform: translateY(2px);
    transform: translateY(2px);/*下に動く*/
}

/*///////////////////////////////////////////////////////////////////////////////////////////*/

/*ナビ*/

.nav{
    float: left;
    background-color: antiquewhite;
    /*width: 200px;*/
    margin-top: 20px;
    margin-left: 10px;
    padding:8px;

    border-radius:8px;
}
@media screen and (max-width:940px){
    .nav{
        display:none;
    }
}

.nav ul{
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.nav a{
    text-decoration: none;
    color:rgb(168, 95, 0);
}

.nav p{
    color:rgb(168, 95, 0);
    font-weight: bold;
    font-size: 20px;
    border-left: solid 4px rgb(88, 50, 0);
    padding-left: 10px;
    margin-left: 2px;
}

.nav a:hover {
	color:rgb(88, 50, 0);
}

.nav .first{
    padding-left: 8px;
    margin-top: 8px;

    font-weight: bold;
    font-size: 16px;
}

.nav .second{
    padding-left: 22px;
    padding-top: 6px;

    font-weight: bolder; 
    font-size: 14px;
}

/*///////////////////////////////////////////////////////////////////////////////////////////*/

/*ハンバーガーメニュー*/

header {
    padding:10px;
    background: skyblue;
}
  
#nav-drawer {
    position: absolute;

    margin-top: 15px;
    margin-left: 10px;
}

#nav-drawer>p{
    margin: 0px;
    margin-left: 10px;
    float: right;
}

.nav-unshown {
    display:none;
}

#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
}

#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;/*線の太さ*/
    width: 25px;/*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
}

#nav-open span:before {
    bottom: -8px;
}
#nav-open span:after {
    bottom: -16px;
}

#nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}
/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;/*最前面に*/
    width: 90%;
    max-width: 330px;
    height: 100%;
    background: #fff;/*背景色*/
    /*元の位置*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
}

#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: .5;
}
  
#nav-input:checked ~ #nav-content {
    transition: .3s ease-in-out;/*滑らかに表示*//*変更後の位置*/
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}


/*///////////////////////////////////////////////////////////////////////////////////////////*/

/*折りたたみ機構*/

.openbox input {
    display: none; /* チェックボックスを隠す */
}
.openbox .boxshow {
    height: 0;
    opacity: 0; /* 折り畳んだ時に中を透明にする */
    display: none;/* 閉じた時に中身の要素をなくす */
}
.inputcss:checked + .boxshow {
    height: auto;
    opacity: 1; /*クリックやタップで中を表示させる*/
    display: block;/* 折り畳みになるように */
}
.openbox label {
    background: #babbbb;
    padding: 5px 10px;
}


/*///////////////////////////////////////////////////////////////////////////////////////////*/

/*タグ追加画面*/

.s-flex{
    display: flex;
    align-items: center;
}
.s-flex-t{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.large-p{
    font-size: 24px;
}

.s-tag {
    width: 40px;
    height: 20px;
    margin: 4px;
}
.s-tagl {
    height: 20px;
    margin: 4px;
}
.s-box {
    width: 70%;
    height: 40px;
    margin: 4px;
    padding: 0px;
    font-size: 22px;
    transition: 0.3s;
}
.s-box:focus {
    border: 2px solid #2491ff;
    outline: none;
    box-shadow: 0 0 5px 1px #0079f1;
}

.s-btn {
    width: 30%;
    min-width: 150px;
    height: 48px;
    margin: 15px 0;
    padding: 0px;
    font-size: 22px;
    border: 2px solid black;
    border-bottom: solid 4px #00142b;
    border-radius: 8px;
    background-color: #0077ff;
    color: white;
    font-family: 'M PLUS 2', sans-serif;
    font-weight: bold;
    transition: 0.3s;
}
.s-btn:hover{
    background-color: #3091ff;
}

.s-flex2 {
    display: flex;
    flex-direction: row-reverse;
    /*align-items: center;*/
}
.s-box2 {
    display:none;
}
.s-btn2 {
    width: 30%;
    height: 42px;
    margin: 4px;
    padding: 0px;
    font-size: 18px;
    border-radius:8px;
    background: #ffe78f;/*ボタン色*/
    color: rgb(0, 0, 0);
    border-bottom: solid 4px #54472f;
    border-radius: 8px;
    transition: background 0.3s ease;
}
.s-btn2:hover {
    background: #fff1ac;/*ホバー時の色*/
}
.s-btn2:active {/*ボタンを押したとき*/
    -webkit-transform: translateY(2px);
    transform: translateY(2px);/*下に動く*/
}
.min-mar-top{
    margin-top: 0px;
}

/*///////////////////////////////////////////////////////////////////////////////////////////*/

/*検索結果表示*/

.all-item {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content:center;
}

.helds{
    display: flex;
    flex-direction: row;
    align-self: center;
    gap: 4px;
    margin-left: 7px;
}
@media screen and (max-width:940px){
    .helds{
        margin-left: 10px;
        margin-right: 0px;
    }
}
.one_held{
    background-color: #d5d5d5;
    color: #ffffff;
    border-radius: 5px;
    font-size: 14px;
    padding: 2px 6px !important;
    margin: 0 0;
}
@media screen and (max-width:400px){
    .one_held{
        font-size: 11px;
        padding: 2px 4.5px !important;
    }
}

.one-item {
    display: flex;
    flex-direction: row;
    align-self: center;
    border: 4px solid #9bc1e2;
    /* border-image: conic-gradient(#7f7fff, #7fff7f, #ffff7f, #ff7f7f, #ff7fff, #7f7fff) 1; */
    border-radius: 8px;
    width: 100%;
    height: 95px;
    margin: 8px;
    padding: 8px;
    /* background-color: #fdffff; */
    background: linear-gradient(135deg, rgb(255, 255, 255),83%, rgb(162, 215, 255));
}

@media screen and (max-width:940px){
    .one-item{
        width: 90%;
    }

    .one-item > .route-btn{
        margin-right: 1px;
        font-size: 13px;
    }

    .one-item > .info-txt{
        margin-left: 0;
    }

    .one-item > .route-btn{
        max-width: 52px;
        margin-right: 1px;
        margin-left: 1px;
    }
}

.on2{
    background: linear-gradient(135deg, rgb(255, 255, 255),83%, rgb(253, 255, 162));
    border: 4px solid #ffb294;
}

.one-item-n {
    display: flex;
    flex-direction: row;
    align-self: center;
    border: 4px solid #afafaf;
    border-radius: 8px;
    width: 100%;
    height: 95px;
    margin: 8px;
    padding: 8px;
    background-color: #efefef;
}

@media screen and (max-width:940px){
    .one-item-n{
        width: 90%;
    }

    .one-item-n > .route-btn{
        margin-right: 1px;
        font-size: 13px;
    }

    .one-item-n > .info-txt{
        margin-left: 0;
    }

    .one-item-n > .route-btn{
        max-width: 52px;
        margin-right: 1px;
        margin-left: 1px;
    }
}

.info-img {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 6px;

    border: 2px solid #5a5a5a;
    object-fit: contain;
}
@media screen and (max-width:700px){/*スマホ用レイアウト（コート画像非表示）*/
    .info-img{
        display:none;
    }
}

.info-imgA {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 6px;

    border: 2px solid #5a5a5a;
}
@media screen and (max-width:300px){/*スマホ用レイアウト（コート画像非表示）*/
    .info-imgA{
        display:none;
    }
}

.info-txt {
    width: auto;
    height: auto;
    margin-left: 8px;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    padding: 0px;
}

.warn{
    width: 95%;
    background-color: rgb(241, 115, 115);
    padding:16px 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
}
@media screen and (max-width:940px){
    .warn{
        font-size: 22px;
    }
}

.info{
    width: 100%;
    background-color: rgb(112, 227, 118);
    padding:16px 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
}
@media screen and (max-width:940px){
    .info{
        font-size: 22px;
    }
}

/*///////////////////////////////////////////////////////////////////////////////////////////*/

/*ルート案内*/

.one-item-R {
    display: flex;
    flex-direction: row;
    align-self: center;
    border: 4px solid #868686;
    border-radius: 8px;
    width: 100%;
    height: auto;
    margin: 0px 8px;
    padding: 8px;
    background-color: #fafafa;
}

.info-img-R {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    margin-bottom: auto;

    width: 40%;/*162*/
    height: auto;/*122*/
    border: 4px solid #858585;
}

.info-txt-R {
    font-size: 20px;
    width: auto;
    height: auto;
    margin-left: 8px;
    margin-right: 8px;
    margin-top: auto;
    margin-bottom: auto;
    padding: 0px;
    
}
/**/

.box{
    opacity: 0;
}

.fadeUp {
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}
  
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blue { border: 4px solid #3bb8eb; background-color: #f0fbff; }
.green { border: 4px solid #aacd06; background-color: #fcfff0; }
.pink { border: 4px solid #e25f9e; background-color: #fff6fb; }


/*///////////////////////////////////////////////////////////////////////////////////////////*/

/*タグ表示部分*/

.tag-container{
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    background-color: #ebf5ff;
    padding: 6px;
    margin: 8px;
}

.tag-info-container{
    background-color: #ffffff;
    padding: 6px;
    margin: 8px;
    border: 4px dashed #385ba1;
}

.tag{
    color: #0b3966;
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 5px;
}

.tag-info{
    color: #0b3966;
    margin-top: 5px;
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 600;
}

/*///////////////////////////////////////////////////////////////////////////////////////////*/

.blue-table {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.blue-table tr {
    background-color: #fff;
    border-bottom: 2px solid #fff;
}
.blue-table tr:nth-child(even){
    background-color: #eee;
}
.blue-table th,.blue-table td {
    padding: .35em 1em;
}
.blue-table thead th {
    font-size: .85em;
    padding: 1em;
}
.blue-table thead tr{
    background-color: #89d0ff;
    color:#4b4b4b;
}
.blue-table tbody th {
    font-size: .8em;
}

/*----------*/

.rank-table{
    width: 100%;
    border-collapse: collapse;
    font-weight: bold;
}

.rank-table tr{
    border-bottom: solid 2px rgb(255, 255, 255);
}

.rank-table tr:last-child{
    border-bottom: none;
}

.rank-table th{
    position: relative;
    text-align: left;
    /*width: 30%;*/
    background-color: #fff780;
    color: rgb(58, 58, 58);
    text-align: center;
    padding: 10px 0;
}

.rank-table thead td{/**/
    background-color: #89d0ff;
    color: rgb(46, 46, 46);
    font-weight: bold;
    border-bottom: solid 2px rgb(255, 255, 255);
}

.rank-table th:after{
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top:calc(50% - 10px);
    right:-10px;
    border-left: 10px solid #fff780;/*三角形*/
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.rank-table td{
    text-align: left;
    /*width: 70%;*/
    text-align: center;
    background-color: #ffffff;
    padding: 10px 0;
}

/*----------*/

.call-table{
    width: 100%;
    border-collapse: collapse;
    font-weight: bold;
}

.call-table tr{
    border-bottom: solid 2px rgb(255, 255, 255);
    overflow: hidden;
    font-size: 24px;
}

.call-table tr th{
    font-size: 38px;
}

.call-table thead td{
    font-size: 30px;
}

.call-table tr:last-child{
    border-bottom: none;
}

.call-table th{
    position: relative;
    text-align: left;
    /*width: 30%;*/
    background-color: #fff780;
    color: rgb(58, 58, 58);
    text-align: center;
    padding: 10px 0;
}

.call-table thead td{/**/
    background-color: #89d0ff;
    color: rgb(46, 46, 46);
    font-weight: bold;
    border-bottom: solid 2px rgb(255, 255, 255);
}

.call-table th:after{
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top:calc(50% - 10px);
    right:-10px;
    border-left: 10px solid #fff780;/*三角形*/
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.call-table td{
    text-align: left;
    /*width: 70%;*/
    text-align: center;
    background-color: #ffffff;
    padding: 10px 0;
    height: 55px;

}

.call-table td p{
    margin: 0 30px;
    padding: 5px;
    border-radius: 10px;
    width: auto;

    font-size: 26px;/*ここでチーム名のフォント大きさ調整*/
}

/*----------*/

.bar-chart-002 {
    font-size: .9em;
}

.bar-chart-002 > div {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.bar-chart-002 dt {
    width: 70px;
    font-size: 20px;
    text-align: center;
    margin-right: 10px;
}

.bar-chart-002 dd {
    width: 100%;
    margin: 0;
    border-radius: 3px;
    background-color: #e6edf3;
}

.bar-chart-002 span {
    display: inline-block;
    padding-right: 15px;
    border-radius: inherit;
    background-color: #2589d0;
    color: #fff;
    font-weight: 600;
    line-height: 35px;
    text-align: right;
    white-space: nowrap;
    animation: anima-bar-chart-002 1.2s ease;
}

@keyframes anima-bar-chart-002 {
    from {
        width: 0;
    }
}

.mail_form{
    border: 2px solid rgb(85, 85, 85);
    padding: 10px 10px 30px 10px;
    overflow: hidden;

    width: 80%;
    margin: 40px auto;

    background-color: #fff;

    text-align: center;
}

@media screen and (max-width:940px){/*繧ｹ繝槭�*/
    .mail_form{
        width: 90%;
    }
}

.select_confirm_area p{
    padding: 5px 8px;
    margin: 0 auto 10px auto;
    background-color: #2589d0;
    color: #fafafa;
    width: fit-content;
    border-radius: 8px;
}

/*==================== プルダウンメニュー ====================*/

.selector{
    margin:  15px 8px;
}

.selector select{
    width: 250px;
    height: 35px;
    border-radius: 4px;
    border: 1px solid #000000;
    font: 15px/24px sans-serif;
    transition: 0.3s;
}

.selector select:focus{
    border: 2px solid #2491ff;
    outline: none;
    box-shadow: 0 0 5px 1px #0079f1;
}

/*==================== チェックボックス ====================*/

.checkbox{
    font-family: 'Titillium Web','M PLUS 2', sans-serif;
}

.checkbox .checkbox_inner{
    top: 8px;
    position: relative;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    border-radius: 5px;
    background: rgb(214, 214, 214);
    -webkit-appearance: none;
    outline: none;
    border: black solid 2px;
}

.checkbox .checkbox_inner:checked{
    border: 0px;
}

.checkbox .checkbox_inner:checked::after{
    width: 18px;
    height: 18px;
    border-radius: 5px;
    position: absolute;
    background: #0079f1;
    text-align: center;
    font-size: 13.5px;
    color: white;
    content: "✓";
    border: black solid 2px;
}

.checkbox .checkbox_inner:checked:disabled:after{
    width: 18px;
    height: 18px;
    border-radius: 5px;
    position: absolute;
    background: #9cceff;
    text-align: center;
    font-size: 13.5px;
    color: white;
    content: "✓";
    border: black solid 2px;
}

.mission_checkbox_ja{
    font-size: 15px;
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 700;
    color: black;
    display: inline-block;
    margin: 10px 0;
}

.submit-btn { /* 送信ボタン（黄ver） */
    display: inline-block;
    padding: 0px 0px;
    text-decoration: none;
    background: #ffe78f; /* ボタン色 */
    color: rgb(0, 0, 0);
    border: 2px solid black;
    border-bottom: solid 4px #54472f;
    border-radius: 8px;
    font-weight: bold;
    font-size: 17px;
    width: 30%;
    height: 46px;
    margin-left: 0px;
    margin-right: 12px;
    margin-top: 15px;
    margin-bottom: auto;
    transition: background 0.3s ease;
}
.submit-btn:hover {
    background: #fff1ac; /* ホバー時の色 */
}
.submit-btn:active {/*ボタンを押したとき*/
    -webkit-transform: translateY(2px);
    transform: translateY(2px);/*下に動く*/
}

.update-btn { /* 更新ボタン（黄ver） */
    display: inline-block;
    padding: 0px 0px;
    text-decoration: none;
    background: #ffe78f; /* ボタン色 */
    color: rgb(0, 0, 0);
    border: 2px solid black;
    border-bottom: solid 4px #54472f;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    width: 100%;
    max-width: 100px;
    height: 35px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 5px;
    margin-bottom: 5px;
    transition: background 0.3s ease;
}
.update-btn:hover {
    background: #fff1ac; /* ホバー時の色 */
}
.update-btn:active {/*ボタンを押したとき*/
    -webkit-transform: translateY(2px);
    transform: translateY(2px);/*下に動く*/
}

.warning-btn { /* 警告ボタン（赤ver） */
    display: inline-block;
    padding: 0px 0px;
    text-decoration: none;
    background: #ff8f8f; /* ボタン色 */
    color: rgb(0, 0, 0);
    border: 2px solid black;
    border-bottom: solid 4px #54472f;
    border-radius: 8px;
    font-weight: bold;
    font-size: 17px;
    width: 30%;
    height: 46px;
    margin-left: 0px;
    margin-right: 12px;
    margin-top: 15px;
    margin-bottom: auto;
    transition: background 0.3s ease;
}
.warning-btn:hover {
    background: #ffb4b4; /* ホバー時の色 */
}
.warning-btn:active {/*ボタンを押したとき*/
    -webkit-transform: translateY(2px);
    transform: translateY(2px);/*下に動く*/
}

.search_box{
    border: gray solid 1px;
    margin: 20px 0;
    background-color: #f7f7f7;
    min-width: 850px;
}

.search_box p{
    margin: 0;
    padding: 10px;
    background-color: #d8edff;
}

.search_box table{
    width: 100%;
    margin: 0;
    padding: 0 15px;
}

.search_box table{
    text-align: center;
}

.search_textbox{
    font: 15px/24px sans-serif;
    box-sizing: border-box;
    width: 100px;
    padding: 0.3em;
    transition: 0.3s;
    letter-spacing: 1px;
    color: #000000;
    border: 1px solid #000;
    border-radius: 4px;
    margin: 10px 0;
}

.search_textbox:focus{
    border: 2px solid #2491ff;
    outline: none;
    box-shadow: 0 0 5px 1px #0079f1;
}

.search_box_btn {/*青ボタン*/
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #6496c5;/*ボタン色*/
    color: rgb(255, 255, 255);
    border: 2px solid black;
    border-bottom: solid 4px #2f3854;
    border-radius: 8px;
    margin: 10px;
    font-weight: bold;
    width: 100px;
    transition: background 0.3s ease;
}
.search_box_btn:hover {
    background: #7fb0e0;/*ホバー時の色*/
}
.search_box_btn:active {/*ボタンを押したとき*/
    -webkit-transform: translateY(2px);
    transform: translateY(2px);/*下に動く*/
}

.file_upload{
    margin: 20px 0 0 20px;
}

.file_upload input[type="file"]{
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
}

.csvPreviewWrapper{
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    margin: 15px;
}

.csvPreviewTable{
    width: 2000px;
    border-collapse: collapse;
    margin: 0 15px;
}

.csvPreviewTable th{
    background-color: #e0e0e0;
    color: #000;
}

.csv_check_title{
    display: none;
    margin-left: 20px;
    border-bottom: 1px #000 solid;
    width: fit-content;
}

.user_manage_table{
    width: 100%;
}















/*--ローディング画面（券売機風）-------------------------------------------------------------*/

.spinner-box {
	width: 120px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;

	margin-top: 10px;
}

.pulse-container {
	width: 120px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
  
.pulse-bubble {
	width: 0;
  	height: 0;
	margin: 0px 10px;
  	border-left: 18px solid black;
  	border-top: 12px solid transparent;
  	border-bottom: 12px solid transparent;
}
  
.pulse-bubble-1 {
	animation: pulse .4s ease 0s infinite alternate;
}
.pulse-bubble-2 {
	animation: pulse .4s ease .2s infinite alternate;
}
.pulse-bubble-3 {
	animation: pulse .4s ease .4s infinite alternate;
}

@keyframes pulse {
	from {
	  opacity: 1;
	  /*transform: scale(1);*/
	}
	to {
	  opacity: 0;
	  /*transform: scale(.75);*/
	}
  }






/*ローディング画面---------------------------------------------------------------*/

.openL {
	cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up {
	display: none; /* label でコントロールするので input は非表示に */
}
.overlay {
	display: none; /* input にチェックが入るまでは非表示に */
}
#pop-up:checked + .overlay {/*「+」で同じ階層のすぐ後の要素にのみ適用*/
	display: block;
	z-index: 9999;
	background-color: #00000070;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}
.window {
	width: 90vw;
	max-width: 380px;
	height: 240px;
	background-color: #ffffff;
	border-radius: 6px;
	
	display: flex;
	flex-direction: column;/**/
	justify-content: center;
	align-items: center;

	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 100;
	transform: translate(-50%, -50%);
}
.textL {
	font-size: 18px;
	margin: 0;
}

.table-wrapper{
    scroll-snap-type: x mandatory;
    overflow-x: auto;
}

.record_view_data_dl{
    margin-top: 0;
    font-weight: 500;
    width: fit-content;
    border-bottom: 2px solid #000;
    padding-bottom: 2px;
}
.record_view_data_dl svg{
    bottom: -5px;
    position: relative;
}
