﻿@charset "utf-8";
@font-face {
  font-family: YuGothicM;
  font-weight: normal;
  src: local('YuGothic-Medium'),  /* Mediumを明示的に指定 */
       local('Yu Gothic Medium'), /* Chrome用 */
       local('YuGothic-Regular'); /* Windows8.1ではMediumがないのでRegularを指定 */
}
body{
    margin: 0;
    padding: 0;
    font-family: -apple-system, blinkMacSystemFont, /* Macの欧文はSan Francisco (OS X 10.11以降) */
               'Helvetica Neue', /* Macの欧文 (OS X 10.10以前) */
               'Segoe UI',       /* Windowsの欧文 */
               YuGothicM,        /* Windows8.1以上は游ゴシック */
               YuGothic,         /* Macの游ゴシック */
               Meiryo,           /* 游ゴシックが入っていないWindows */
               sans-serif;
}
h1,h2,h3,h4,h5,h6{
    margin-top: 0;
    line-height: 1.6;
}
h1{
    color: #0A122A;
}
a img{
    border-style: none;
}
header h1{
    display: block;
    width: 225px;
    height: 45px;
    margin: 0;
}
header{
    width: 960px;
    margin: 0 auto;
}
#main_title h1{
    width: auto;
    height: auto;
    text-align: center;
}
#global_navi{
    width: 960px;
    margin: 0 auto;
}
#global_navi ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
#global_navi ul li{
    width: 159px;
    float: left;
    margin-right: 1px;
    margin-bottom: 1px;
    text-align: center;
    font-size: 0.75em;
}
#global_navi ul li a{
    background-color: white;
    border: 1px solid;
    color: black;
    display: block;
    padding: 5px;
    text-decoration: none;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cedbe9+0,aac5de+17,6199c7+50,3a84c3+51,419ad6+59,4bb8f0+71,3a8bc2+84,26558b+100;Blue+Gloss */
/*background: #cedbe9;*/ /* Old browsers */
/*background: -moz-linear-gradient(top, #cedbe9 0%, #aac5de 17%, #6199c7 50%, #3a84c3 51%, #419ad6 59%, #4bb8f0 71%, #3a8bc2 84%, #26558b 100%);*/ /* FF3.6-15 */
/*background: -webkit-linear-gradient(top, #cedbe9 0%,#aac5de 17%,#6199c7 50%,#3a84c3 51%,#419ad6 59%,#4bb8f0 71%,#3a8bc2 84%,#26558b 100%);*/ /* Chrome10-25,Safari5.1-6 */
/*background: linear-gradient(to bottom, #cedbe9 0%,#aac5de 17%,#6199c7 50%,#3a84c3 51%,#419ad6 59%,#4bb8f0 71%,#3a8bc2 84%,#26558b 100%);*/ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cedbe9', endColorstr='#26558b',GradientType=0 );*/ /* IE6-9 */
}
#global_navi ul li a:visited{
    color: black;
}
#global_navi ul li a:hover{
    /*background-color: crimson;
    font-weight: bold;
    transition-property: background-color;
    transition-timing-function:ease-in;
    transition-duration: 0.5s;
    transition-delay: 0.1s;*/
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f3c5bd+0,e86c57+50,ea2803+51,ff6600+75,c72200+100;Red+Gloss */
background: #f3c5bd; /* Old browsers */
background: -moz-linear-gradient(top, #f3c5bd 0%, #e86c57 50%, #ea2803 51%, #ff6600 75%, #c72200 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #f3c5bd 0%,#e86c57 50%,#ea2803 51%,#ff6600 75%,#c72200 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #f3c5bd 0%,#e86c57 50%,#ea2803 51%,#ff6600 75%,#c72200 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3c5bd', endColorstr='#c72200',GradientType=0 ); /* IE6-9 */
/*  transition: opacity 0.5s linear;
    opacity: 0.3;
*/
color: white;
}
#main_visual{
    clear: both;
    width: 960px;
    height: 243px;
    overflow: hidden;
    margin: 0 auto;
}
/*
.slider_item{
    width: 960px;
    height: 256px;
    float: left;
    position: relative;
    left: 0;
}
.visual_slider{
    width: 400%;
    position: relative;
    animation: slider 20s infinite ease alternate;
}
@keyframes slider{
    0%{transform: translateX(0px);}
    33%{transform: translateX(-960px);}
    66%{transform: translateX(-1920px);}
    100%{transform: translateX(-2880px);}
}
*/

.visual_cycle{
    width: 960px;
    height: 243px;
    position: relative;
    overflow: hidden;
}

.cycle_item1{
    width: 960px;
    height: 243px;
    position: absolute;
    left: 0px;
    top: 0px;
    animation: cycle1 30s infinite ease;
}
.cycle_item2{
    width: 960px;
    height: 243px;
    position: absolute;
    left: 960px;
    top: 0px;
    animation: cycle2 30s infinite ease;
}
.cycle_item3{
    width: 960px;
    height: 243px;
    position: absolute;
    left: 960px;
    top: 0px;
    animation: cycle3 30s infinite ease;
}
.cycle_item4{
    width: 960px;
    height: 243px;
    position: absolute;
    left: 960px;
    top: 0px;
    animation: cycle4 30s infinite ease;
}

@keyframes cycle1{
    0%{left: 0px;}
    20%{left: 0px; opacity: 1;}
    25%{left: -960px; opacity: 0;}
    30%{left: 960px; opacity: 0;}
    95%{left: 960px; opacity: 0;}
    100%{left: 0px; opacity: 1;}
}
@keyframes cycle2{
    0%{left: 960px; opacity: 0; z-index: 1;}
    20%{left: 960px; opacity: 0; z-index: 1;}
    25%{left: 0px; opacity: 1; z-index: 1;}
    45%{left: 0px; opacity: 1; z-index: 1;}
    50%{left: -960px; opacity: 0;z-index: 1;}
    55%{left: 960px; opacity: 0; z-index: 1;}
}
@keyframes cycle3{
    0%{left: 960px; opacity: 0; z-index: 2;}
    45%{left: 960px; opacity: 0; z-index: 2;}
    50%{left: 0px; opacity: 1; z-index: 2;}
    70%{left: 0px; opacity: 1; z-index: 2;}
    75%{left: -960px; opacity: 0; z-index: 2;}
    80%{left: 960px; opacity: 0;z-index: 2;}
}
@keyframes cycle4{
    0%{left: 960px; opacity: 0; z-index: 3;}
    70%{left: 960px; opacity: 0; z-index: 3;}
    75%{left: 0px; opacity: 1; z-index: 3;}
    95%{left: 0px; opacity: 1; z-index: 3;}
    100%{left: -960px; opacity: 0; z-index: 3;}
}

#wrapper{
    clear: both;
    overflow: hidden;
    width: 960px;
    margin: auto;
}
/*.menu_4 ul{
    overflow: hidden;
    width: 960px;
    margin: 5px 0 ;
    padding-left: 0;
    padding-bottom: 5px;
}
.menu_4 ul li{
    width: 25%;
    list-style: none;
    float: left;
    text-align: center;
} 
.menu_4_icon{
    overflow: hidden;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 5px 5px 2px #000000;
}

.menu_4 ul li img{
    width: 200px;
    height: 200px;
    object-fit: cover;
}
.menu_4 ul li img:hover{
    border-radius: 10px;
    box-shadow: 5px 5px 5px #000000;
    transition-duration: 0.5s;
    transform:scale(1.33,1.33);
}*/

.menu_4 ul{
    overflow: hidden;
    width: 100%;
    margin: 5px 0 ;
    padding-left: 0;
/*    padding-bottom: 5px;*/
}
.menu_4 ul li{
    overflow: hidden;
    box-sizing: border-box;
    border: solid 5px #ffffff;
    width: 25%;
    border-radius: 10px;
    list-style: none;
    text-align: center;
    float: left;
} 
.menu_4_icon img{
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
}
.menu_4_icon img:hover{
    border-radius: 10px;
    transition-duration: 0.5s;
    transform:scale(1.33,1.33);
}
#main{
    width: 700px;
    float: left;
}
#sidebar{
    width: 260px;
    float: right;
}
#breadcrumb ol{
    clear: both;
    display: block;
    width: 960px;
    margin: auto;
    padding: 0;
    list-style: none;
}
#breadcrumb ol li{
    display: inline;
    margin: 0;
    padding: 0;
    font-size: 12px;
}
#breadcrumb ol li a{text-decoration: none;}
#breadcrumb ol li::after{content: "＞"}
#breadcrumb ol li:last-child::after{content: none;}
#input_jyoken h2,#output_dryer h2{
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 1.5em;
    color: #333333;
}
#info h1{
    width: 692px;
    border: 1px solid;
    border-radius: 2px;
    box-shadow: 2px 2px 5px;
    font-size: 15px;
}
#info h1::before{content:"【"}
#info h1::after{content: "】"}
#info dl,#info ul li{font-size: 12px;}
#infowrapper dl{width: 700px; height: 100px; overflow: auto;}
#infowrapper dt{float: left; clear: left; margin-right: 0.5em;}
#infowrapper dd{float: left; margin-left: 1em;}


#input_jyoken table,#output_dryer table{
    width: 680px;
    margin: 0 0 10px 10px;
}
#input_jyoken td,#output_dryer td{
    padding: 5px;
    font-size: 0.7em;
    background-color: #CECEF6;
}
#input_jyoken th,#output_dryer th{
    padding: 5px;
    font-size: 0.7em;
    background-color: #8181F7;
}
#cortion1{
    font-size: 0.6em;
    line-height: 0.7em;
    margin: 10px 15px;
}
table{
    width: 680px;
    margin: 0 0 10px 10px;
}
table th{
    padding: 5px;
    font-size: 0.7em;
    background-color: #8181f7;
}
table td{
    padding: 5px;
    font-size: 0.7em;
    background-color: #cecef6;
}
h2{
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 1.5em;
    color: #333333;
}
table.conditions th{
    width: 100px;
}
table.conditions td.length1{
    width: 400px
}
th.th1{width: 35px;}
th.th2{width: 565px;}
th.th3,th.th4,th.th5{width: 80px;}
td.td1{text-align: right;}
#button{
    margin: 5px auto;
    padding: 0;
    text-align: center;
}
#comment{
    width: 100%;
    height: 15em;
}
#side_banner{
    width: 260px;
    margin: 0;
    padding: 0;
}
#side_banner ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
#side_banner ul li{
    margin: 5px auto;
}
#side_banner ul li a{
    display: block;
    background-color: gainsboro;
    text-align: center;
    padding: 5px 0;
    font-size: 0.9em;
    color: darkgreen;
    text-decoration: none;
}
#side_banner ul li a:visited{
    color: darkgreen;
}
#side_banner ul li a:hover{
    background-color: cornflowerblue;
    font-weight: bold;
    color: red;
    transition-property: background-color,color;
    transition-timing-function:ease-in;
    transition-duration: 0.5s;
    transition-delay: 0.1s;
}
#side_banner h2{
    margin-top: 0.7em;
}
#face p{
    line-height: 0.6em;
    text-align: right;
    font-size: 0.8em;
}
#face .email p a{
    display: block;
    font-size: 1em;
    text-decoration: none;
    color: darkgreen;
    background-color: gainsboro;
    padding: 10px 0;
    text-align: center;
}
#face .email h3{text-align: center;}
#face .email p a:visited{color: darkgreen;}
#face .email p a:hover{
    background-color: cornflowerblue;
    color: red;
    font-weight: bold;
}
#tank_input{
    width: 300px;
    float: left;
    overflow: hidden;
    background-color: #CCFFBB;
}
#tank_condition{
    width: 100%;
    margin: 0px;
}
#tank_input h2{
    font-size: 1.1em;
}
#tank_condition tr th{
    width: 50%;
}
#tank_condition tr td{
    width: 50%;
    text-align: right;
}
#tank_size{
    width: 100%;
    margin: 0px;
}
#tank_size tr th{
    width: 50%;
}
#tank_size tr td{
    width: 50%;
    text-align: right;
}
#tank_img{
    float: left;
    width: 400px;
    text-align: center;
    box-sizing: border-box;
    display: block;
    object-fit: contain;
}
#tank_img img{
    margin-left: auto;
    margin-right: auto;
}
#tank_img p{
    text-align: left;
    font-size: 0.8em;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    vertical-align: middle;
}
#tank_img p::before{
    content: '●';
}
#tank_capacity{
    clear: both;
}
#tank_capacity table,table#total{
    width: 70%;
    margin: auto;
    border-collapse: collapse;
}
#tank_capacity table tr th,table#total tr th{
    width: 70%;
    border-bottom: solid 1px;
    background-color: white;
    text-align: left;
    font-size: 20px;
}
#tank_capacity table tr td,table#total tr td{
    font-size: 35px;
    text-align: right;
    font-style: italic;
    border-bottom: solid 1px;
    background-color: white;
}
#tank_capacity table tr td.credit,table#total tr td.credit{
    width: 10%;
    text-align: center;
    font-size: 20px;
    border-bottom: solid 1px;
    background-color: white;
}
p.annotation{
    width: 50%;
    font-size: 0.5em;
    margin-left: auto;
    margin-right: auto;
    line-height: 0.7;
}
footer{
    display: block;
    width: 960px;
    color: azure;
    background-color: chocolate;
    margin: auto;
    text-align: center;
}
.position{
    text-align: center;
    margin: 0 auto;
    padding: 0;
}
.qrcode img{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
}
@media screen and (max-width : 960px){
    img{
        max-width: 100%;
        object-fit: contain;
    }
    header,#global_navi,#sidebar,#wrapper,#main_visual{
        width: 100%;
    }
    header h1 img{
        width: 50%;
    }
    header #main_title h1 img{
        width: 50%;
    }
    #global_navi ul li{
        width: 50%;
        padding: 0.5px;
        margin: 0;
        box-sizing: border-box;
    }
    #global_navi ul li a{
        margin: 0;
    }
    #breadcrumb ol li{
    font-size: 8px;
    }
    #main{
        width: 100%;
        padding: 0 5%;
        box-sizing: border-box;
        float: none;
    }
    #sidebar{
        float: none;
        width: auto;
    }
    #main_visual{
        position: relative;
        width: 100%;
        height: 100%;
    }
    #main_visual:before{
        content: "";
        display: block;
        padding-top: 25.3125%;
    }
    #main_visual img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    .visual_cycle{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .cycle_item1,.cycle_item2,.cycle_item3,.cycle_item4{
        width: 100%;
    }
    #info dl,#info ul li{font-size: 7px;}
    #info h1{width: 100%;}
    #infowrapper dl{width: 100%;}
    #side_banner{
        width: auto;
        text-align: center;
    }
    #side_banner ul li{
        width: 50%;
        text-align: center;
        font-size: 0.7em;
    }
    footer{
        width: 100%;
    }
    table{
        width: 100%;
    }
    table th,table td{
        font-size: 0.5em;
    }
    #input_jyoken table,#output_dryer table{
    width: auto;
    }
    select,input{
        font-size: 0.7em;
    }
    
    
    #tank_input{
        width: 100%;
        float: none;
    }
    #tank_img{
        width: 50%;
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
    #tank_capacity table{
        width: 80%;
    }
    #tank_capacity table tr th{
        font-size: 1em;
    }
    #tank_capacity table tr td{
        font-size: 1.5em;
    }
    #tank_capacity table tr td.credit{
        font-size: 1em;
    }
    p.annotation{
    width: 80%;
    }
   .menu_4{
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 25.3125%;
    }
    .menu_4_position {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left 0;
    }
    .menu_4_icon{
    width: 100%;
    height: 100%;
    }
    .qrcode{
        visibility: hidden;
    }
/*@media screen and (max-width : 767px){
    img{
        max-width: 100%;
    }
    header,#global_navi,#sidebar,#wrapper,#main_visual{
        width: 100%;
    }
    header h1 img{
        width: 50%;
    }
    header #main_title h1 img{
        width: 50%;
    }
    #global_navi ul li{
        width: 50%;
        padding: 0.5px;
        margin: 0;
        box-sizing: border-box;
    }
    #global_navi ul li a{
        margin: 0;
    }
    #breadcrumb ol li{
    font-size: 8px;
    }
    #main{
        width: 100%;
        padding: 0 5%;
        box-sizing: border-box;
        float: none;
    }
    #sidebar{
        float: none;
        width: auto;
    }
    #main_visual,.visual_cycle,.cycle_item1,.cycle_item2,.cycle_item3,.cycle_item4{width: 100%; }
    #info dl,#info ul li{font-size: 7px;}
    #info h1{width: 100%;}
    #infowrapper dl{width: 100%;}
    #side_banner{
        width: auto;
        text-align: center;
    }
    #side_banner ul li{
        width: 50%;
        text-align: center;
        font-size: 0.7em;
    }
    footer{
        width: 100%;
    }
    table{
        width: 100%;
    }
    table th,table td{
        font-size: 0.5em;
    }
    #input_jyoken table,#output_dryer table{
    width: auto;
    }
    select,input{
        font-size: 0.7em;
    }
    #tank_input{
    float: none;
    }
    #tank_img img{
    margin: 0 auto;
    }
    #tank_condition,#tank_condition tr th,#tank_condition tr td,#tank_size,#tank_size tr th,#tank_size tr td{
    margin: 0 auto;
    }
    .qrcode{
    visibility: hidden;
    }
}*/
