body,p{
    padding:0px;
    margin:0px;
}
.mainheader{
    width:100%;
    height:50px;
    display: flex;
    justify-content: space-between;
    border-bottom:double 5px #FCC800;
}
.header_left{
    width:266px;
    padding:10px 0px 10px 10px;
}

.header_right{
    font-size:30px;
    padding:5px 10px 10px 0px;    
}

.subheader{
    width:100%;
    background-color: #DFDFDF;
    height:50px;
}
.subheader p{
    padding-top:17px;
    padding-left:10px;
    font-weight: bold;
    font-size:18px;
    color:#6A6A6A;

    
}
.place_area{
    width:100%;
    height:50px;
    text-align:left;
}
.place_box{
    display: flex;
    justify-content: left;
}
.place_box p{
    float:left;
    display: block;
    font-size:10px;
    color:#6A6A6A;    
    margin-right:5px;
    margin-left:10px;
    margin-top:18px
}

.placeoption{
    margin-top:8px;
    line-height: 20px;
    height:32px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    /* 👇スタイル */
    font-size:14px;
    width:80%;
    max-width:500px;
    padding: 2px 30px 2px 20px; /* 文字周りの余白 */
    cursor: pointer; /* カーソルを指に */
    color: #6A6A6A; /* 文字色 */
    border-radius: 4px; /* 角丸 */
    background-color: #f7f9fb; /* 背景色 */
    border: solid 1px #e1e8ef; /* 枠線 */
    box-shadow: 0 3px 3px -2px rgba(3, 29, 41, 0.15); /* 影 */
    /* 👇三角マークを作る */
    background-image: linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.4) 50%),  linear-gradient(135deg, rgba(0,0,0,0.4) 50%, transparent 50%);
    background-size: 5px 5px, 5px 5px;
    background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
    background-repeat: no-repeat;
}
.placeoption:hover{
    opacity:0.8
}
.gettypenav{
    background-color: #DFDFDF;
    height:50px;
}
.box_lists{
    display: flex;
    justify-content: center;
    padding:0;
}

.box_list{
    text-align: center;
    list-style: none;
    background-color: #C7C7C7;
    color:#707070;
    height:50px;
    width:30%;
    max-width: 150px;
    line-height: 50px;
    margin-right:1px;
    cursor: pointer; /* カーソルを指に */
}
.box_list:hover{
    opacity:0.8
}
.typeSelected {
    background-color: #6A6A6A;
    color:white;
}
.hide{
    display: none;
}
.date_area{
    height:40px;
    width:100%;
    margin-top:10px;
    text-align: center;
}

.date_li{
    display: inline-block;
}
.triangle{
    cursor: pointer; /* カーソルを指に */
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
    border-radius: 4px; /* 角丸 */
}
.triangle:active{
    transform: translateY(3px);
    transition: 0.005s;
}
.tri_left{
    border-right: 36px solid rgb(180, 180, 180);
    margin-right:13px;
}
.tri_left:hover{
    border-right: 36px solid rgba(180, 180, 180, 0.8);
}

.tri_right{
    border-left: 36px solid rgb(180, 180, 180);
    margin-left:13px;
}
.tri_right:hover{
    border-left: 36px solid rgba(180, 180, 180, 0.8);
}

.input_date{
    vertical-align: top;
    margin-top:6px;
    height:30px;
    /* 👇スタイル */
    width: 200px; /* 幅 */
    padding: 2px 1.5px; /* 文字周りの余白 */
    cursor: pointer; /* カーソルを指に */
    color: #44698E; /* 文字色 */
    border-radius: 4px; /* 角丸 */
    background-color: #f7f9fb; /* 背景色 */
    border: solid 1px #e1e8ef; /* 枠線 */
    box-shadow: 0 3px 3px -2px rgba(3, 29, 41, 0.15); /* 影 */
}
.input_date:hover{
    opacity:0.8
}
.canvas_container{
    width:95%;
    min-height:400px;
    height:60vh;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    
}
.canvas{
    aspect-ratio: unset;
}