@charset "utf-8";

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*   Text Setting [Common]                          */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */

.DefaultText{
  font-size: 87.5%;
  line-height: 1.5;
  text-align: justify;
  text-justify: auto;
  margin: 0 0 1em;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*   Link Setting [Common]                          */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
a{
  color: inherit;
  text-decoration: none;
  transition: color           0.3s ease 0s,
              text-decoration 0.3s ease 0s;
}
a:link {
}
a:visited {
}
a:active{
}
p a:hover {
  text-decoration: underline;
}
.MainContentsArea p a,
.MainContentsArea li a{
  text-decoration: underline;
}
.MainContentsArea p a:hover,
.MainContentsArea li a:hover{
  color: #7F3D3D;
}

.Button{
  text-align: center;
}
.Button a{
  text-decoration: none!important;
  display: inline-block;
  border-radius: 15px;
  background: #FFCE58 url(../img/common/icon/cursor_right_black.png) no-repeat 13px center;
  padding: 4px 10px 6px 25px;
  font-weight: bold;
  line-height: 1;
  color: #222!important;
}
p.Button a{
  text-decoration: none;
  font-size: 87.5%;
}
.Button a:hover{
  opacity: 0.8;
  text-decoration: none;
}

.Button.PageTop{
  text-align: right;
  margin-top: 30px;
}
.Button.PageTop a{
  font-size: 75%;
  background: #ededed url(../img/common/icon/cursor_top_black.png) no-repeat 7px center;
  padding: 3px 8px 3px 25px;
  line-height: 1;
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*   List Setting [Common]                          */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */


/* ul,ol */
#MainContentsArea ul,#MainContentsArea ol{
}
#MainContentsArea li{
  font-size: 87.5%;
  line-height: 1.5;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
#MainContentsArea table li{
  font-size: 100%;
}
/* dl */
dl{}
    dl dt{
    }
    dl dd{
    }

/* LinkList */
.LinkList{
  list-style: none;
  margin: 0;
  line-height: 1.25;
}
    .LinkList li{
      padding: 5px 0;
    }
        .LinkList li a{
          padding: 0 0 0 15px;
        }
    .LinkList li .ChildList{
      font-size: 85%;
      margin: 5px 0 5px 30px;
    }
        .LinkList li .ChildList li{
          padding: 2px;
        }
            .LinkList li .ChildList li a{
              padding: 0 0 0 10px;
            }


/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*   Table Setting [Common]                         */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */


/* DefaultTable
--------------------------------------------------- */
.DefaultTable{
  margin: 0 auto 15px 15px;
  max-width: 95%;
  border-collapse: collapse;
}
    /* caption */
    .DefaultTable caption{
    }
    /* common */
    .DefaultTable th,
    .DefaultTable td{
      padding: 10px;
      font-size: 85%;
      line-height: 1.5;
      border-bottom: 1px solid #aaa;
    }
    .DefaultTable th{
      background: #FFF9E6;
      background: -moz-linear-gradient(left, #FFF9E6, #ffffff);
      background: -webkit-linear-gradient(left, #FFF9E6, #ffffff);
      background: linear-gradient(to right, #FFF9E6, #ffffff);
      font-weight: normal;
    }
    .DefaultTable td{
      background: #fff;
    }
    .DefaultTable tr.Necessary th{
    }
    .DefaultTable tr.Necessary .FormItem{
      padding-left: 34px;
    
    }
    
    /* thead */
    .DefaultTable thead{
    
    }
        .DefaultTable thead th{
          font-size: 80%;
          padding: 5px 10px;
          background: #E6E0CF;
          text-align: center;
          border-left: 1px solid #cec5ad;
          white-space: nowrap;
        }
        .DefaultTable thead th:first-child{
          border-left: none;
        }
    /* tfoot */
    .DefaultTable tfoot{
    
    }
        .DefaultTable tfoot th,
        .DefaultTable tfoot td{
        }
        .DefaultTable tfoot th{
        }
        .DefaultTable tfoot td{
        }
    /* tbody */
    .DefaultTable tbody{
    }
        .DefaultTable tbody th,
        .DefaultTable tbody td{
        }
        .DefaultTable tbody th{
          width: 20%;
          text-align: left;
          white-space: nowrap;
        }
        .DefaultTable tbody td{
          background: #fff;
          border-left: 1px dotted #cec5ad;
        }

.TdAlignRight td{
  text-align: right;
}
/* InnerTable
--------------------------------------------------- */
.InnerTable,
.InnerTable th,
.InnerTable td{
}
    .InnerTable th,
    .InnerTable td{
      padding: 5px 10px!important;
      font-size: 100%!important;
      border-bottom: none;
    }
    .InnerTable th{
      font-weight: bold!important;
    }
    tr.Necessary .InnerTable .FormItem{
      background: none;
      padding-left: 0px;
    
    }

/* NoDecorationTable
--------------------------------------------------- */
.NoDecorationTable,
.NoDecorationTable th,
.NoDecorationTable td{
  border: none!important;
  background: none!important;
  margin: 0!important;
  padding: 0!important;
  text-align: left;
}
.NoDecorationTable th,
.NoDecorationTable td{
  padding: 5px 10px!important;
  font-size: 100%!important;
}


iframe{
  border: none;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*   Option Class [Common]                          */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Float
--------------------------------------------------- */
.FloatLeft { float: left; }
.FloatRight{ float: right; }
.FloatNone { float: none; }

/* Align
--------------------------------------------------- */
.AlignCenter{ text-align: center; }
.AlignLeft  { text-align: left; }
.AlignRight { text-align: right; }

/* Bold
--------------------------------------------------- */
.Bold{ font-weight: bold; }

/* Clear
--------------------------------------------------- */
.ClearBoth { clear: both;}
.ClearLeft { clear: left;}
.ClearRight{ clear: right;}
.ClearNone { clear: none;}

/* TextOverFlowNone
--------------------------------------------------- */
.TextOverFlowNone{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* InlineBlock
--------------------------------------------------- */
.InlineBlock{
  display: inline-block;
}

/* RoundCorner(DefaultValue)
--------------------------------------------------- */
.RoundCorner{
  border-radius: 10px;
}
.RoundCornerS{
  border-radius: 5px;
}

/* DropShadow (DefaultValue)
--------------------------------------------------- */
.DropShadow{
  box-shadow: 0px 0px 5px #ccc;
}

/* NoDisplay
--------------------------------------------------- */
.NoDislay{
  display: none;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Default Box Style                             */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */

/* ButtonBox
--------------------------------------------------- */
.ButtonBox{
}
    .ButtonBox p{
      text-align: center;
    }
        .ButtonBox p a{
          margin-left: 4px;
        }
        .ButtonBox p a:first-child{
          margin-left: 0;
        }


/* ImageBox
--------------------------------------------------- */
.ImageBox{
}
    .ImageBox p{
      margin: 0 0 10px;
    }
            .ImageBox p.Image img{
              width: 100%;
            }

.TwoImageBox{
  margin: 15px 0;
}
    .TwoImageBox p.Image{
      width: 50%;
      float: left;
    }
        .TwoImageBox p.Image span{
          display: block;
          padding: 0 4px;
        }
            .TwoImageBox p.Image img{
              width: 100%;
            }
/* RigntImageBox
--------------------------------------------------- */
.RightImageBlock{
}
    .RightImageBlock .ImageBox{
      float: right;
      width: 32%;
      text-align: center;
    }
    .RightImageBlock .TextBox{
      float: left;
      width: 65%;
    }
.RightTwoImageBlock{
}
    .RightTwoImageBlock .ImageBox{
      float: right;
      width: 52%;
      text-align: center;
    }
        .RightTwoImageBlock .ImageBox p.Image{
          width: 50%;
          float: left;
        }
          .RightTwoImageBlock .ImageBox p.Image span{
            display: block;
            padding: 0 4px;
          }
    .RightTwoImageBlock .TextBox{
      float: left;
      width: 45%;
    }

/* PageNavigationBox
--------------------------------------------------- */
.PageNavigationBox {
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  background: #fff;
  padding: 1px;
  margin: 0 0 30px;
}
    .PageNavigationBox p{
      display: block;
      font-size: 12px;
      background: #f5f5f5;
    }
        .PageNavigationBox p .Unit{
          display: block;
          float: left;
          margin: -1px 0;
        }
        .PageNavigationBox p .Unit a,
        .PageNavigationBox p .Unit .NoLink{
          color: #3f3f3f;
          display: block;
          padding: 10px 5px 10px 25px;
          max-width: 300px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
        }
        .PageNavigationBox p .Unit.No01 a{
          padding-left: 25px;
        }
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Original Style [Base Design]                  */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */


/* set Background Image
--------------------------------------------------- */
html{
}
body{
  text-align: center;
}
#World{
}

/* DivisionSize */
#ContentsDivision,
#FooterDivision {
  width: 960px;
  margin: 0 auto;
  text-align: left;
}
/* HeaderDivision
--------------------------------------------------- */
#HeaderDivision{
  border-top: 5px solid #FFC801;
  background: url(../img/decoration/shadow_header.png) repeat-x bottom left;
  padding-bottom: 7px;
}

    /* HeaderContentsArea */
    #HeaderContentsArea{
      width: 950px;
      margin: 13px auto;
      display: table;
    }
        #HeaderContentsArea > div{
          display: table-cell;
          vertical-align: middle;
        }
        #HeaderContentsArea .SiteTitleBlock{
          width: 372px;
        }
        #HeaderContentsArea .SubMenuBlock{
          text-align: right;
        }
        
            #HeaderContentsArea .SubMenuBlock ul{
              list-style: none;
              margin-right: 30px;
            }
                #HeaderContentsArea .SubMenuBlock ul li{
                  display: inline-block;
                }
                    #HeaderContentsArea .SubMenuBlock ul li a :hover{
                      opacity: 0.9;
                    }

        #HeaderContentsArea .ContactBlock{
          width: 195px;
        }
            #HeaderContentsArea .ContactBlock ul{
              list-style: none;
            }
                #HeaderContentsArea .ContactBlock ul li:first-child{
                  margin-bottom: 5px;
                }
        
    
    /* HeaderMenuArea */
    #HeaderMenuArea{
      background: #FFD900;
    }
        #HeaderMenuArea ul{
          width: 950px;
          margin: 0 auto;
          list-style: none;
          display: table;
        }
            #HeaderMenuArea ul li{
              display: table-cell;
              width: 16.7%;
              border-right: 1px solid #fff;
            }
            #HeaderMenuArea ul li:first-child{
              border-left: 1px solid #fff;
            }
                #HeaderMenuArea ul li a{
                  display: block;
                  padding: 12px 0;
                  line-height: 17px;
                  background: url(../img/common/icon/cursor_right_black.png) no-repeat 15px center;
                }
                #HeaderMenuArea ul li a:hover{
                  background-color: #FFEA00;
                }
               .FacilityPage        #HeaderMenuArea ul li.Menu1 a{
                  background-color: #FFB640;
               }
               .FacilityServicePage #HeaderMenuArea ul li.Menu2 a{
                  background-color: #FFB640;
               }
               .LocalServicePage    #HeaderMenuArea ul li.Menu3 a{
                  background-color: #FFB640;
               }
               .ProcedurePage       #HeaderMenuArea ul li.Menu4 a{
                  background-color: #FFB640;
               }
               .AccessPage          #HeaderMenuArea ul li.Menu5 a{
                  background-color: #FFB640;
               }
               .TopicsPage          #HeaderMenuArea ul li.Menu6 a{
                  background-color: #FFB640;
               }

    /* MainImageArea */
    .MainImageArea{
      background: url(../img/decoration/bg_mainimage.png);
    }
        .MainImageArea p{
          background: url(../img/decoration/shadow_header.png) repeat-x top left;
          padding: 8px 0;
        }

/* ContentsDivision
--------------------------------------------------- */
#ContentsDivision {
  border-width: 0 1px;
  border-color: #ddd;
  border-style: solid;
  margin-top: 25px;
}
    /* Container
    --------------------------------------------------- */
    .Container{
      padding: 0px 14px;
    }
    /* MainImageArea */
    #MainImageArea{
    }
        #MainImageArea .MainImageBlock{
        }
        
    /* MainContentsArea
    --------------------------------------------------- */
    #MainContentsArea{
      width: 625px;
      float: left;
    }
        #MainContentsArea > h2.Heading{
          font-size: 150%;
          letter-spacing: 1px;
          background: url(../img/common/decoration/bg_h2heading.jpg) no-repeat left center;
          padding: 10px 40px;
          margin-bottom: 20px;
          color: #3B2323;
        }
        #MainContentsArea h3.Heading{
          padding: 6px 40px;
          background: #FFF4CC url(../img/common/icon/leaf_orange.png) no-repeat 10px center;
          margin: 50px 0 10px;
          color: #321414;
        }
        #MainContentsArea h4.Heading{
          display: inline-block;
          border-radius: 15px;
          padding: 2px 20px 2px 10px;
          margin: 10px 0 15px;
          background: #FBE1A4;
          color: #321414;
          font-size: 90%;
        }
        #MainContentsArea h4.Heading:before{
          content: "●";
          color: #FFF;
          margin-right: 3px;
          font-size: 150%;
          line-height: 0.5;
        }
        #MainContentsArea h5.Heading{
          border-bottom: 3px double #aaa;
          padding: 2px 20px 2px 5px;
          margin: 5px 0 10px;
          color: #321414;
          font-size: 87.5%;
        }
         #MainContentsArea .ContactBlock{
           width: 90%;
           margin-left: 15px;
         }
             #MainContentsArea .ContactBlock .Heading{
               border-radius: 5px;
               padding: 4px 15px;
               font-size: 90%;
               background: #ededed;
               border-bottom: none;
               margin: 50px 0 10px;
               display: block;
             }
             #MainContentsArea .ContactBlock .Heading:before{
               display: none;
             }
             #MainContentsArea .ContactBlock table{
               width: 100%;
               margin: 0;
             }
        
        
    /* SideBarArea
    --------------------------------------------------- */
    #SideBarArea{
      width: 276px;
      float: right;
    }
    #SideBarArea ul{
     list-style: none;
    }
    #SideBarArea a:hover{
      opacity: 0.8;
    }
        #SideBarArea > div{
          margin-bottom: 20px;
        }
        #SideBarArea .PageContentsBlock{
          background: #fffcd3;
          padding-bottom: 13px;
          border-top: 10px solid #fff35f;
        }
            #SideBarArea .PageContentsBlock h5{
              background: #fff35f;
              text-align: center;
              padding: 5px 0;
              font-size: 87.5%;
              color: #333;
            }
            #SideBarArea .PageContentsBlock ul{
              text-align: center;
              padding-top: 6px;
            }
                #SideBarArea .PageContentsBlock ul li{
                  margin: 5px auto 0;
                  background: #efffff;
                  display: block;
                  width: 252px;
                  height: 57px;
                }
                #SideBarArea .PageContentsBlock ul li span{
                  background: #fff;
                }
        #SideBarArea .IncludeLinkBlock{
        }
            #SideBarArea .IncludeLinkBlock p{
              position: relative;
              width: 276px;
              height: 255px;
            }
                #SideBarArea .IncludeLinkBlock p.Link1 span.Base{
                }
                #SideBarArea .IncludeLinkBlock p.Link1 span.Btn{
                  position: absolute;
                  bottom: 8px;
                  left: 6px;
                }
        #SideBarArea .BannerBlock{
        }
                #SideBarArea .BannerBlock ul li{
                  margin-bottom: 5px;
                }

        #SideBarArea .ContactBlock{
          background: url(../img/common/decoration/bg_side_contact.png) repeat-y top center;
          border-radius: 10px;
          padding: 8px 18px 15px;
        }
            #SideBarArea .ContactBlock .Heading{
              border-bottom: 2px solid #888;
              padding-bottom: 3px;
              margin-bottom: 12px;
              position: relative;
            }
            #SideBarArea .ContactBlock .Heading:before{
              content: "●";
              color: #888;
              position: absolute;
              bottom: -9px;
              left: -3px;
              font-size: 90%;
            }
            #SideBarArea .ContactBlock .Heading:after{
              content: "●";
              color: #888;
              position: absolute;
              bottom: -9px;
              right: -3px;
              font-size: 90%;
            }
            #SideBarArea .ContactBlock p{
              font-size: 87.5%;
              margin-top: 4px;
              margin-left: 5px;
            }
            #SideBarArea .ContactBlock p:before{
              margin-right: 3px;
            }
            #SideBarArea .ContactBlock p.Tel:before{
              content: "TEL:";
            }
            #SideBarArea .ContactBlock p.Fax:before{
              content: "FAX:";
            }
            #SideBarArea .ContactBlock p.Mail:before{
              content: "Mail:";
            }
                #SideBarArea .ContactBlock p a{
                  text-decoration: underline;
                }

        #SideBarArea .RelationLink{
          background: #F3F4F6;
          border-radius: 10px;
          padding: 15px 18px;
        }
            #SideBarArea .RelationLink .Heading{
              text-align: center;
              border-bottom: 2px solid #17BCFE;
              padding-bottom: 5px;
              margin-bottom: 12px;
              position: relative;
            }
            #SideBarArea .RelationLink .Heading:before{
              content: "●";
              color: #17BCFE;
              position: absolute;
              bottom: -9px;
              left: -3px;
              font-size: 90%;
            }
            #SideBarArea .RelationLink .Heading:after{
              content: "●";
              color: #17BCFE;
              position: absolute;
              bottom: -9px;
              right: -3px;
              font-size: 90%;
            }
            #SideBarArea .RelationLink ul{
            }
                #SideBarArea .RelationLink ul li{
                  margin-top: 7px;
                }

/* FooterDivision
--------------------------------------------------- */
#FooterDivision {
  margin: 80px auto 10px;
}

    
    /* FooterMenuBlock */
    .FooterMenuBlock{
      background: #FFC801;
      border-radius: 15px;
      font-size: 87.5%;
      font-weight: bold;
    }
        .FooterMenuBlock ul{
          display: table;
          margin: 0 auto;
          padding: 5px 0;
        }
            .FooterMenuBlock ul li{
              display: table-cell;
              border-right: 1px solid #000;
            }
            .FooterMenuBlock ul li:first-child{
              border-left: 1px solid #000;
            }
                .FooterMenuBlock ul li a{
                  display: block;
                  padding: 0 10px;
                }
                .FooterMenuBlock ul li a:hover{
                  opacity: 0.9;
                }

    /* GoPageTop */
    .CopyrightBlock{
      text-align: center;
      margin: 15px 0;
    }
        .CopyrightBlock .Text1{
          font-size: 70%;
        }
        .CopyrightBlock .Copyright{
          font-size: 87.5%;
        }


/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Default Block Style                           */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */





