@import
    url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700&display=swap');

.fh5co-nav ul {
    text-align: center;
    padding: 0;
    margin: 0;
}
.fh5co-nav ul li a {
    position: relative;
    border-left: 1px solid #CDFD03;
    background: rgba(0,0,0, 0.4);
}
.fh5co-nav ul li a span {
    font-size: 0.9em;
}

header {
    height: 100%;
    overflow: hidden;  
}

.main_imgBox {
    height: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
}

  .main_img {
    z-index:10;
    opacity: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 36s 0s infinite;
    animation: anime 36s 0s infinite; }

    .main_img:nth-of-type(2) {
      -webkit-animation-delay: 6s;
      animation-delay: 6s; }

    .main_img:nth-of-type(3) {
      -webkit-animation-delay: 12s;
      animation-delay: 12s; }

    .main_img:nth-of-type(4) {
      -webkit-animation-delay: 18s;
      animation-delay: 18s; }

    .main_img:nth-of-type(5) {
      -webkit-animation-delay: 24s;
      animation-delay: 24s; }

    .main_img:nth-of-type(6) {
      -webkit-animation-delay: 30s;
      animation-delay: 30s; }

  .main_imgM {
    opacity: 0;
    width:100%;
    height:100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 36s 0s infinite;
    animation: anime 36s 0s infinite; }

    .main_imgM:nth-of-type(2) {
      -webkit-animation-delay: 6s;
      animation-delay: 6s; }

    .main_imgM:nth-of-type(3) {
      -webkit-animation-delay: 12s;
      animation-delay: 12s; }

    .main_imgM:nth-of-type(4) {
      -webkit-animation-delay: 18s;
      animation-delay: 18s; }

    .main_imgM:nth-of-type(5) {
      -webkit-animation-delay: 24s;
      animation-delay: 24s; }

    .main_imgM:nth-of-type(6) {
      -webkit-animation-delay: 30s;
      animation-delay: 30s; }

@keyframes anime {
    0% { opacity: 0;}
    8% { opacity: 1;}
    17% { opacity: 1;}
    25% { opacity: 0; transform: scale(1.2); z-index:9;}
    100% { opacity: 0 }
}
@-webkit-keyframes anime {
    0% { opacity: 0;}
    8% { opacity: 1;}
    17% { opacity: 1;}
    25% { opacity: 0; transform: scale(1.2); z-index:9;}
    100% { opacity: 0 }
}


/* --------------------
  Menu - Navi
-------------------- */

.dropmenu{
  *zoom: 1;
  list-style-type: none;
  width: 100%;
  margin: 5px auto 30px;
  padding: 0;
}
.dropmenu:before, .dropmenu:after{
  content: "";
  display: table;
}
.dropmenu:after{
  clear: both;
}
.dropmenu li{
  position: relative;
  width: 25%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}
.dropmenu li a{
  display: block;
  margin: 0;
  padding: 20px 0 20px;
  background: #8a9b0f;
  color: #fff;
  font-size: 14px;
  line-height: 1.4em;
  text-decoration: none;
}
.dropmenu li:hover > a{
  background: #6e7c0c;
}
.dropmenu li a:hover{
  background: #616d0b;
}
.dropmenu li ul{
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
#dropmenu li ul li{
  width: 100%;
  overflow: hidden;
/*	height: 0;
	transition: .2s;	*/
  max-height: 0;
  -webkit-transition: max-height 500ms;
}
.dropmenu li ul li a{
  padding: 12px 20px;
  border-top: 1px solid #7c8c0e;
  background: #6e7c0c;
  text-align: left;
}
#dropmenu li:hover ul li{
  overflow: visible;
  height: auto;
  max-height: 90px; /* 十分でかい数字 */
}


/* --------------------
  Menu - Img
-------------------- */

.img_wrap {
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.img_wrap ul {
  padding: 0;
  margin: 0;
}
.img_wrap ul li {
    padding: 0;
    margin: 0;
    display:inline-block;
    overflow: hidden;
    background: #000;
}
.img_wrap img {
    border: none;
    width: 100%;
    transition-duration: 0.5s;
}
.img_wrap img:hover {
    transform: scale(1.1);
    opacity: 0.6;
    transition-duration: 0.5s;
}


/* --------------------
  Staff Voice
-------------------- */

.popup_wrap input {
  display: none;
}

.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.popup_content {
  position: relative;
  z-index: 99999;
  align-self: center;
  width: 90%;
  max-width: 800px;
  padding: 30px 30px 15px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
}

.close_btn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  cursor: pointer;
}

.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
  width:100%;
}


/* --------------------
  Table
-------------------- */

table.table_bk {
    width:100%;
}
table.table_bk,
table.table_bk td,
table.table_bk tr {
    padding: 10px;
    margin:  10px;
    color:#fff;
    border: #fff solid 1px;
}

table.table_wh {
    width:100%;
    margin: 30px 0;
}
table.table_wh,
table.table_wh td,
table.table_wh tr {
    padding: 10px;
    color: #333;
    border: #333 solid 1px;
}
table.table_wh tr td:first-of-type {
    width: 20%;
}



/* --------------------
  Font Style
-------------------- */

#topCopy h1 img {
    width: 80%;
}
#topCopy h1 {
    font-size:4em;
    color:#FFF;
    position: relative;
    top:150px;
}
#topCopy h2 {
    font-size:2em;
    color:#FFF;
    position: relative;
    top:150px;
}

.midashi {
    width:60%;
    border-radius: 20px;
    background: #fff;
    text-align: center;
    padding:auto 20px;
    margin:auto 0;
}
.fuchidori_1 {
    font-weight: bold;
    font-size: 3em;
    line-height: 1em;
    color: rgba(0, 0, 0, 0);
    text-shadow: 3px 3px 0 #cd5;
    -webkit-text-stroke: 1px #888;
    text-stroke: 1px #888;
    padding: 10px 0;
}
.fuchidori_2 {
    font-weight: bold;
    font-size: 4em;
    line-height: 1em;
    color: rgba(0, 0, 0, 0);
    text-shadow: 3px 3px 0 #9db;
    -webkit-text-stroke: 1px #888;
    text-stroke: 1px #888;
    padding: 10px 0;
}
.underLine {
    background:linear-gradient( transparent 60%, #FFFF66 0%);
}

h3.Headword {
    position: relative;
    padding: 0.5em 1em;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
    width:60%;
    margin: 0 auto;
}
h3.Headword:before, h3.Headword:after {
  content: '';
  position: absolute;
  top: -6px;
  width: 2px;
  height: -webkit-calc(100% + 12px);
  height: calc(100% + 12px);
  background-color: black;
}
h3.Headword:before {
  left: 6px;
}
h3.Headword:after {
  right: 6px;
}