@charset "UTF-8";
/*----------------------------------------------------------------------------

*************************************PC**************************************

----------------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  /*----------------------------------------------------------------------------

******************************************************************************

Layout

******************************************************************************

----------------------------------------------------------------------------*/
  /* ==== Base === */
  html,
  body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body {
    min-height: 100vh;
  }
  .layout {
    max-width: 960px;
    margin: 0 auto;
  }
  /* ==== Backgraund === */
  #wrap {
    background: #fff;
    border-top: 3px solid #98CF37;
  }
  /* ==== Header === */
  #hd {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100px;
  }
  /* ==== Navigation === */
  #nav_bg {
    background: url(/~umeki/images/common/nav_bg.png) top center #98CF37;
  }
  #nav_bg #nav {
    height: 50px;
  }
  #nav_bg #nav nav {
    height: 100%;
  }
  #nav_bg #nav nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  #nav_bg #nav nav ul li {
    width: 100%;
    height: 100%;
  }
  #nav_bg #nav nav ul li:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.8);
  }
  #nav_bg #nav nav ul li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.8);
  }
  #nav_bg #nav nav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    background: url(/~umeki/images/common/nav_bg.png) top center #98CF37;
    color: #fff;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    border-right: 1px solid rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    -webkit-transition: All 0.5s ease;
    transition: All 0.5s ease;
  }
  #nav_bg #nav nav ul li a:hover {
    background: url(/~umeki/images/common/nav_bg.png) top center #b9de74;
  }
  #nav_bg #nav nav ul li a.current {
    background: url(/~umeki/images/common/nav_bg.png) top center #b9de74 !important;
  }
  #menu {
    display: none;
  }
  /* ==== Content === */
  #con_bg {
    background: url(/~umeki/images/common/con_bg.jpg) repeat-x top center;
  }
  #con_bg #con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /* ol,ul */
    /* table */
    /* img */
  }
  #con_bg #con #sidenav {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    width: 23%;
    max-width: 220px;
    height: 100%;
    margin-top: 20px;
    border: 1px solid #98CF37;
  }
  #con_bg #con #sidenav ul {
    padding: 0px;
  }
  #con_bg #con #sidenav ul li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    padding: 12px 5px 12px 23px;
    text-decoration: none;
    font-size: 13px;
    color: #111;
    border-bottom: dotted 1px #CCC;
  }
  #con_bg #con #sidenav ul li a::before {
    position: absolute;
    top: 50%;
    left: 8px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 6px;
    height: 8px;
    background: url(/~umeki/images/common/sidenav_icon.png) left center no-repeat;
  }
  #con_bg #con #sidenav ul li:last-of-type a {
    border-bottom: 0;
  }
  #con_bg #con #main {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 75%;
    max-width: 720px;
    margin-top: 20px;
  }
  #con_bg #con #main ol {
    padding: 5px 0px 5px 25px;
  }
  #con_bg #con #main ul {
    padding: 5px 0px 5px 25px;
    list-style-type: disc;
  }
  #con_bg #con #main ol li,
  #con_bg #con #main ul li {
    padding: 5px 0px;
  }
  #con_bg #con #main table {
    margin: 10px 0px;
  }
  #con_bg #con #main table th,
  #con_bg #con #main table td {
    padding: 5px;
  }
  #con_bg #con #main img {
    max-width: 100%;
    height: auto;
  }
  #con_bg #con #main a img {
    display: inline-block;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
            box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  }
  #con_bg #con #main a img:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  #con_bg #con .shrink:focus, #con_bg #con .shrink:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  /* ==== Footer === */
  #ft {
    margin-top: auto;
    padding-top: 35px;
    padding-bottom: 35px;
    text-align: center;
    color: #fff;
    background: #98CF37;
  }
  /*----------------------------------------------------------------------------

******************************************************************************

Head

******************************************************************************

----------------------------------------------------------------------------*/
  h1 a {
    color: #111;
    font-size: 1.8rem;
    font-weight: normal;
    text-decoration: none;
  }
  h1 a span {
    display: block;
    font-size: 0.65em;
  }
  h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 80px;
    padding: 0 0.5em;
    background: url(/~umeki/images/i_img_01.jpg) center center no-repeat;
    color: #fff;
    font-size: 34px;
    font-weight: normal;
    border: 1px solid #98CF37;
    text-shadow: 0px 0px 5px black, 2px 2px 2px rgba(255, 255, 255, 0.5);
  }
  #sidenav h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 50px;
    padding: 10px;
    background: url(/~umeki/images/nav_bag.png) top center #98CF37;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #98CF37;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.9), 2px 2px 2px rgba(255, 255, 255, 0.5);
  }
  h3 {
    min-height: 40px;
    margin: 0.8em 0;
    padding: 0.4em 0 0.3em 1.5em;
    background: url(/~umeki/images/common/h3_bg.png) left bottom no-repeat;
    font-size: 1.4em;
    font-weight: normal;
  }
  h4 {
    margin: 0.6em 0;
    padding: 0.0em 0 0.0em 0.4em;
    font-size: 1.2em;
    font-weight: normal;
    border-left: 5px double #286b46;
  }
  h1.img,
  h2.img,
  h3.img,
  h4.img,
  h5.img,
  h6.img {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
  }
  /*----------------------------------------------------------------------------

******************************************************************************

Original

******************************************************************************

----------------------------------------------------------------------------*/
  /* ==== Index === */
  #i_img img {
    width: 100%;
  }
  #i_main {
    width: 75%;
    max-width: 720px;
    margin: 20px 0 40px;
  }
  #i_main #i_news {
    height: 300px;
    overflow: auto;
    border: none;
  }
  #i_main #i_news table tr {
    border-bottom: 1px dotted #CCC;
  }
  #i_main #i_news table tr td {
    padding: 10px;
    font-size: 0.8em;
    vertical-align: top;
  }
  #i_main #i_news table tr td.date {
    position: relative;
    width: 125px;
    padding-left: 20px;
  }
  #i_main #i_news table tr td.date::before {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: url(/~umeki/images/common/news_icon.gif) center center no-repeat;
  }
  #i_main #i_news table tr td > .new {
    color: #f00;
    font-weight: 700;
  }
  #i_bnr {
    width: 23%;
    max-width: 220px;
    margin-top: 20px;
  }
  #i_bnr ul li {
    float: left;
    margin-bottom: 4px;
    width: 100%;
  }
  #i_bnr ul li a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #000;
    padding: 15px 5px 15px 30px;
    letter-spacing: -0.03em;
    border: 1px solid #98CF37;
    border-radius: 3px;
    background: url(/~umeki/images/common/bnr_bg.png) 8px center no-repeat;
    -webkit-transition: All 0.5s ease;
    transition: All 0.5s ease;
  }
  #i_bnr ul li a:hover {
    color: #fff;
    background: url(/~umeki/images/common/bnr_bg_hover.png) 8px center no-repeat #98CF37;
  }
  /*----pagetop----*/
  #page-top {
    position: fixed;
    bottom: 10px;
    right: 20px;
    font-size: 77%;
  }
  #page-top a {
    background: #98CF37;
    border: #fff 1px solid;
    text-decoration: none;
    color: #fff;
    width: 120px;
    padding: 20px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
  }
  #page-top a:hover {
    text-decoration: none;
  }
  /* ==== Theme === */
  .movie_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .movie_list .movie_list_item {
    width: calc((100% - 20px * 1) / 2);
    overflow: hidden;
  }
  .movie_list .movie_list_item a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 40px;
    color: #111;
    text-decoration: none;
  }
  .movie_list .movie_list_item a .movie_list_item_box {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 20px 10px;
    background: #fff;
    -webkit-box-shadow: 0 0 3px #999;
            box-shadow: 0 0 3px #999;
  }
  .movie_list .movie_list_item a .movie_list_item_box .number {
    margin: 0 0 10px;
  }
  .movie_list .movie_list_item a .movie_list_item_box .title {
    margin: 0 0 10px;
    font-size: 16px;
  }
  .movie_list .movie_list_item a::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    opacity: .7;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }
  .movie_list .movie_list_item a:hover .movie_list_item_box {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .movie_list .movie_list_item a:hover::before {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .movie_list .movie_list_item:first-of-type a::before {
    background: url(/~umeki/images/movie_bg_01.jpg) no-repeat center center;
    background-size: cover;
  }
  .movie_list .movie_list_item:nth-of-type(2) a::before {
    background: url(/~umeki/images/movie_bg_02.jpg) no-repeat center center;
    background-size: cover;
  }
  .movie_list .movie_list_item:nth-of-type(3) a::before {
    background: url(/~umeki/images/movie_bg_03.jpg) no-repeat center center;
    background-size: cover;
  }
  .movie_list .movie_list_item:nth-of-type(4) a::before {
    background: url(/~umeki/images/movie_bg_04.jpg) no-repeat center center;
    background-size: cover;
  }
  .movie_list .movie_list_item:nth-of-type(5) a::before {
    background: url(/~umeki/images/movie_bg_05.jpg) no-repeat center center;
    background-size: cover;
  }
  .movie_box {
    width: 100%;
    height: 405px;
    margin: 30px 0 0;
  }
  .movie_box iframe {
    width: 100%;
    height: 100%;
  }
  /* ==== tbl_bdr_bmi === */
  .tbl_bdr_bmi {
    border-top: 1px solid #98CF37;
    border-left: 1px solid #98CF37;
    margin: 1.4em 0;
  }
  .tbl_bdr_bmi td {
    border-right: 1px solid #98CF37;
    border-bottom: 1px solid #98CF37;
  }
  .tbl_bdr_bmi th {
    border-right: 1px solid #98CF37;
    border-bottom: 1px solid #98CF37;
    background-color: #d1ff80;
    font-weight: bold;
    text-align: center;
  }
  .tbl_bdr_bmi.ta_c td, .tbl_bdr_bmi.ta_c th {
    text-align: center;
  }
  .tbl_bdr_bmi tr.ta_c td, .tbl_bdr_bmi tr.ta_c th {
    text-align: center;
  }
  .tbl_bdr_bmi.ta_l td {
    text-align: left;
  }
  /* tbl_bdr_btm align */
  .tbl_bdr.ta_l th {
    text-align: left;
  }
  .tbl_bdr_bmi tr.ta_l td, .tbl_bdr_bmi tr.ta_l th {
    text-align: left;
  }
  .tbl_bdr_bmi.ta_r td, .tbl_bdr_bmi.ta_r th {
    text-align: right;
  }
  .tbl_bdr_bmi tr.ta_r td, .tbl_bdr_bmi tr.ta_r th {
    text-align: right;
  }
  .tbl_bdr_bmi.va_top td, .tbl_bdr_bmi.va_top th {
    vertical-align: top;
  }
  .tbl_bdr_bmi tr.va_top td, .tbl_bdr_bmi tr.va_top th {
    vertical-align: top;
  }
  .tbl_bdr_bmi.va_mdl td, .tbl_bdr_bmi.va_mdl th {
    vertical-align: middle;
  }
  .tbl_bdr_bmi tr.va_mdl td, .tbl_bdr_bmi tr.va_mdl th {
    vertical-align: middle;
  }
  .tbl_bdr_bmi.va_btm td, .tbl_bdr_bmi.va_btm th {
    vertical-align: bottom;
  }
  .tbl_bdr_bmi tr.va_btm td, .tbl_bdr_bmi tr.va_btm th {
    vertical-align: bottom;
  }
  .tbl_bdr_bmi tr.bg_green {
    background-color: #d1ff80;
  }
  .tbl_bdr_bmi td.bg_green, .tbl_bdr_bmi th.bg_green {
    background-color: #d1ff80;
  }
  /* tbl_bdr_bmi bg color */
}

/*----------------------------------------------------------------------------


******************************スマートフォン***********************************

----------------------------------------------------------------------------*/
@media screen and (max-width: 769px) {
  /*----------------------------------------------------------------------------

******************************************************************************

Layout

******************************************************************************

----------------------------------------------------------------------------*/
  /* ==== Base === */
  body {
    background: url(/~umeki/images/body_bg.jpg);
  }
  .layout {
    width: 100%;
    padding: 0 2%;
  }
  /* ==== Backgraund === */
  #wrap {
    background: #fff;
    border-top: 3px solid #98CF37;
  }
  /* ==== Header === */
  #hd {
    position: relative;
    padding: 10px;
  }
  /* ==== Navigation === */
  #nav {
    position: fixed;
    top: 0px;
    right: -70%;
    z-index: 100;
    width: 70%;
    height: calc(100% + 500px);
    padding-bottom: 500px;
    background: url(/~umeki/images/common/nav_bg.png) top center #98CF37;
    color: #fff;
    overflow-x: none;
    overflow-y: auto;
    -webkit-transition: All 0.5s ease;
    transition: All 0.5s ease;
  }
  #nav.layout {
    padding: 0;
  }
  #nav ul {
    display: block;
    margin: 0 0 15px;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
  #nav ul li {
    display: block;
    margin: 0;
  }
  #nav ul li a {
    display: block;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  }
  #nav ul li a:hover {
    border-top: none;
  }
  #nav ul li ul {
    margin: 0;
    border-bottom: none;
  }
  #nav ul li ul li {
    font-size: 13px;
  }
  #nav ul li ul li:last-child {
    border-bottom: none;
  }
  .sp_nav_open {
    right: 0 !important;
  }
  .sp_nav_trigger {
    cursor: pointer;
    z-index: 1000;
    position: fixed !important;
    top: 25px;
    right: 15px;
    margin-top: -5px;
    width: 36px;
    height: 24px;
  }
  .sp_nav_trigger span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sp_nav_trigger span:nth-of-type(1) {
    top: 0;
  }
  .sp_nav_trigger span:nth-of-type(2) {
    top: 10px;
  }
  .sp_nav_trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .sp_nav_trigger::after {
    position: absolute;
    left: 0;
    bottom: -20px;
    content: 'MENU';
    display: block;
    width: 100%;
    padding-top: 20px;
    color: #000;
    font-size: 10px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sp_nav_trigger.sp_active::after {
    content: 'CLOSE';
    bottom: -25px;
    color: #fff;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
            transform: translateY(10px) rotate(-45deg);
    background: #fff;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(2) {
    opacity: 0;
    background: #fff;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
            transform: translateY(-10px) rotate(45deg);
    background: #fff;
  }
  #menu {
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
  }
  /* ==== Content === */
  #sidenav {
    display: none;
  }
  #main {
    width: 100%;
    margin-top: 20px;
  }
  #main ol {
    padding: 5px 0px 5px 25px;
  }
  #main ul {
    padding: 5px 0px 5px 25px;
    list-style-type: disc;
  }
  #main ol li,
  #main ul li {
    padding: 5px 0px;
  }
  #main table {
    margin: 10px 0px;
  }
  #main table th,
  #main table td {
    padding: 5px;
  }
  #main img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 5px auto;
  }
  #main a img {
    display: inline-block;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
            box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  }
  #main a img:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  /* ol,ul */
  /* table */
  /* img */
  .shrink:focus, .shrink:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  /* ==== Footer === */
  #ft {
    margin-top: 0px;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: center;
    color: #fff;
    background: #98CF37;
  }
  /*----------------------------------------------------------------------------

    ******************************************************************************

    Head

    ******************************************************************************

    ----------------------------------------------------------------------------*/
  h1 {
    width: calc(100% - 13vw);
  }
  h1 a {
    color: #111;
    font-size: 1.5rem;
    font-weight: normal;
    text-decoration: none;
    letter-spacing: -0.03em;
  }
  h1 a span {
    display: block;
    font-size: 0.65em;
  }
  h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 80px;
    padding: 0 0.5em;
    background: url(/~umeki/images/i_img_01.jpg) -450px center no-repeat;
    color: #fff;
    font-size: 34px;
    font-weight: normal;
    border: 1px solid #98CF37;
    text-shadow: 0px 0px 5px black, 2px 2px 2px rgba(255, 255, 255, 0.5);
  }
  #sidenav h2 {
    color: #fff;
    border: 1px solid #003166;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    height: 50px;
    text-shadow: 1px 2px 0px black, 2px 2px 2px rgba(255, 255, 255, 0.5);
    background: url(/~umeki/images/nav_bag.png) top center #003166;
  }
  h3 {
    min-height: 40px;
    margin: 0.8em 0 0.4em 0;
    padding: 0.4em 0 0.3em 1.5em;
    background: url(/~umeki/images/common/h3_bg.png) left bottom no-repeat;
    font-size: 1.4em;
    font-weight: normal;
  }
  h4 {
    margin: 0.6em 0;
    padding: 0 0 0 0.4em;
    font-size: 1.2em;
    font-weight: normal;
    border-left: 5px double #286b46;
  }
  h1.img,
  h2.img,
  h3.img,
  h4.img,
  h5.img,
  h6.img {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
  }
  /*----------------------------------------------------------------------------

    ******************************************************************************

    Original

    ******************************************************************************

    ----------------------------------------------------------------------------*/
  /* ==== Index === */
  #i_img img {
    width: 100%;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #i_main {
    width: 100%;
    margin-top: 20px;
  }
  #i_main #i_news {
    height: 300px;
    overflow: auto;
    border: none;
  }
  #i_main #i_news table tr {
    border-bottom: 1px dotted #CCC;
  }
  #i_main #i_news table tr td {
    vertical-align: top;
    font-size: 0.9em;
    padding: 10px;
    display: block;
  }
  #i_main #i_news table tr td.date {
    background: url(/~umeki/images/common/news_icon.gif) 4px 14px no-repeat;
    padding-left: 20px;
  }
  #i_main #i_news table tr td > .new {
    color: #f00;
    font-weight: 700;
  }
  #i_bnr {
    margin-top: 20px;
    width: 100%;
  }
  #i_bnr ul li {
    width: 100%;
    margin-bottom: 4px;
  }
  #i_bnr ul li a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #000;
    padding: 15px 0 15px 30px;
    letter-spacing: -0.03em;
    border: 1px solid #98CF37;
    border-radius: 0px;
    background: url(/~umeki/images/common/bnr_bg.png) 8px center no-repeat;
    -webkit-transition: All 0.5s ease;
    transition: All 0.5s ease;
  }
  #i_bnr ul li a:hover {
    color: #fff;
    background: url(/~umeki/images/common/bnr_bg_hover.png) 8px center no-repeat #98CF37;
  }
  /*----pagetop----*/
  #page-top {
    width: 100%;
    margin-top: 40px;
  }
  #page-top a {
    display: block;
    width: 100%;
    padding: 20px 0;
    background: #666;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: none;
  }
  #page-top a:hover {
    text-decoration: none;
  }
  /* ==== Theme === */
  .movie_list .movie_list_item {
    width: 100%;
    margin-bottom: 1em;
    overflow: hidden;
  }
  .movie_list .movie_list_item a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 40px;
    color: #111;
    text-decoration: none;
  }
  .movie_list .movie_list_item a .movie_list_item_box {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 20px 10px;
    background: #fff;
    -webkit-box-shadow: 0 0 3px #999;
            box-shadow: 0 0 3px #999;
  }
  .movie_list .movie_list_item a .movie_list_item_box .number {
    margin: 0 0 10px;
  }
  .movie_list .movie_list_item a .movie_list_item_box .title {
    margin: 0 0 10px;
    font-size: 16px;
  }
  .movie_list .movie_list_item a::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    opacity: .7;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }
  .movie_list .movie_list_item a:hover .movie_list_item_box {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .movie_list .movie_list_item a:hover::before {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .movie_list .movie_list_item:first-of-type a::before {
    background: url(/~umeki/images/movie_bg_01.jpg) no-repeat center center;
    background-size: cover;
  }
  .movie_list .movie_list_item:nth-of-type(2) a::before {
    background: url(/~umeki/images/movie_bg_02.jpg) no-repeat center center;
    background-size: cover;
  }
  .movie_list .movie_list_item:nth-of-type(3) a::before {
    background: url(/~umeki/images/movie_bg_03.jpg) no-repeat center center;
    background-size: cover;
  }
  .movie_list .movie_list_item:nth-of-type(4) a::before {
    background: url(/~umeki/images/movie_bg_04.jpg) no-repeat center center;
    background-size: cover;
  }
  .movie_list .movie_list_item:nth-of-type(5) a::before {
    background: url(/~umeki/images/movie_bg_05.jpg) no-repeat center center;
    background-size: cover;
  }
  .movie_box {
    position: relative;
    height: 0;
    margin: 30px 0;
    padding-bottom: 56.25%;
    overflow: hidden;
  }
  .movie_box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* ==== tbl_bdr_bmi === */
  .tbl_bdr_bmi {
    border-top: 1px solid #98CF37;
    border-left: 1px solid #98CF37;
    margin: 1.4em 0;
  }
  .tbl_bdr_bmi td {
    border-right: 1px solid #98CF37;
    border-bottom: 1px solid #98CF37;
  }
  .tbl_bdr_bmi th {
    border-right: 1px solid #98CF37;
    border-bottom: 1px solid #98CF37;
    background-color: #d1ff80;
    font-weight: bold;
    text-align: center;
  }
  .tbl_bdr_bmi.ta_c td, .tbl_bdr_bmi.ta_c th {
    text-align: center;
  }
  .tbl_bdr_bmi tr.ta_c td, .tbl_bdr_bmi tr.ta_c th {
    text-align: center;
  }
  .tbl_bdr_bmi.ta_l td {
    text-align: left;
  }
  /* tbl_bdr_btm align */
  .tbl_bdr.ta_l th {
    text-align: left;
  }
  .tbl_bdr_bmi tr.ta_l td, .tbl_bdr_bmi tr.ta_l th {
    text-align: left;
  }
  .tbl_bdr_bmi.ta_r td, .tbl_bdr_bmi.ta_r th {
    text-align: right;
  }
  .tbl_bdr_bmi tr.ta_r td, .tbl_bdr_bmi tr.ta_r th {
    text-align: right;
  }
  .tbl_bdr_bmi.va_top td, .tbl_bdr_bmi.va_top th {
    vertical-align: top;
  }
  .tbl_bdr_bmi tr.va_top td, .tbl_bdr_bmi tr.va_top th {
    vertical-align: top;
  }
  .tbl_bdr_bmi.va_mdl td, .tbl_bdr_bmi.va_mdl th {
    vertical-align: middle;
  }
  .tbl_bdr_bmi tr.va_mdl td, .tbl_bdr_bmi tr.va_mdl th {
    vertical-align: middle;
  }
  .tbl_bdr_bmi.va_btm td, .tbl_bdr_bmi.va_btm th {
    vertical-align: bottom;
  }
  .tbl_bdr_bmi tr.va_btm td, .tbl_bdr_bmi tr.va_btm th {
    vertical-align: bottom;
  }
  .tbl_bdr_bmi tr.bg_green {
    background-color: #d1ff80;
  }
  .tbl_bdr_bmi td.bg_green,
  .tbl_bdr_bmi th.bg_green {
    background-color: #d1ff80;
  }
  /* tbl_bdr_bmi bg color */
}
/*# sourceMappingURL=style.css.map */