:root{
    
    --color-info1 : rgba(10,80,100,1);
    --color-info2 : rgba(10,80,100,.8);
    
}

rgba(10,80,100,.8);

/* Fonts */
@font-face {
    font-family: 'kh';
    src: url(./fonts/KaiseiHarunoUmi-Bold.ttf) format('truetype');
    src: url(./fonts/KaiseiHarunoUmi-Medium.ttf) format('truetype');
    src: url(./fonts/KaiseiHarunoUmi-Regular.ttf) format('truetype');
}
@font-face {
    font-family: 'ns';
    src: url(./fonts/NotoSansJP-Medium.otf) format('opentype');
}
    

/* Simple Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    color: #fff;
/*    font-family: 'kh';*/

    width: 100vw;
    height: 100vh;

/*    background-image: url(./img/printing_gravure_01.jpg);*/
    background-image: url(../../data/interior/topimage.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #eeeeef;
    
    position: relative;
}
main{
    width: 100%;
    height: inherit;
    padding-top: 5vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.logo{
    width: 240px;
    height: auto;
    margin-bottom: 2vw;
}
.title{
}
.title h1{
    font-family: 'ns';
/*    font-size: clamp(60px , 16vw , 80px);*/
    font-size: clamp(22px , 11vw , 40px);
    font-weight: bolder;
/*    text-shadow: 1px 1px 4px rgba(0,0,0,.5);*/
    text-align: center;
}
.title h2{
    font-family: 'ns';
    font-size: clamp(18px , 6vw , 30px);
    font-weight: bolder;
/*    text-shadow: 1px 1px 2px rgba(0,0,0,.5);*/
    text-align: center;
    margin-bottom: 3vw;
}

.form_wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form_item , .button_panel{
    
    border: none;
    border-bottom: solid 2px #fff;
    background-color: rgba(0,0,0,.7) !important;
    color: #fff  !important;
    font-family: 'kh';
    
    height: 36px;
    padding: 5px;
}


.form_item{
    width: 200px;
    padding: 5px;
    appearance: none;    
}
.form_item:first-of-type{
    margin-bottom: 10px;
}
.form_item:focus {
    outline: none;
    border: solid 2px #fff;
}

.button_panel{
    border: solid 2px #fff;
    position: absolute;
    bottom: 0;
    right: -75px;
}
.button_panel:hover {
}

.err_mes{
    width: auto;
    height: auto;
    min-height: 30px;
    color: red;
    font-size: 14px;
    font-weight: bold;
}

.info_wrap{
    width: clamp(340px,40%,500px);
}
.info_box{
    border: solid 2px var(--color-info1);
    padding: 2px;
    position: relative;
    width: 100%;
}

.info_box h3{
    position: absolute;
    top: -20px;
    left: 0;
    margin: 0;
    color: rgba(0,0,0,.7);
    font-size: 12px;
    font-weight: bold;
}

.info_text{
    width: 100%;
    height: 20vh;
    overflow-y: scroll;
/*    background-color: rgba(0,0,0,.7);*/
    background-color: var(--color-info2);
    backdrop-filter: blur(5px);

    padding: 3px 5px 3px 7px;
    
}
.info_text dt{
    color: #ccf;
    font-size: 12px;
    margin-bottom: 4px;
}
.info_text .info_mes{
    color: #fff;
    font-size: 14px;
    padding: 5px;
    border-bottom: solid 1px #555;
    margin-bottom: 5px;
    margin-left: 9px;
}
.info_text .info_title{
    color: #eef;
    font-size: 16px;
    margin-bottom: 4px;
    margin-left: 10px;
}

.info_text::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.info_text::-webkit-scrollbar-track {
    border-radius: 5px;
}
.info_text::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(70,70,100,.8);
}


@media screen and (max-width: 768px){
}

.contact{
    font-size: 16px;
    font-weight: bold;
    color: #272626;
    margin-bottom: 3vw;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
    
.contact span{
        padding: 0 5px 0 10px;
        font-size: 26px;
}

