body{
  margin: 0px;
  font-family: garamond;
  background: #f6f1ed;
  color: rgb(68, 68, 68);
  margin-top: 0;
}

.toggle-menu{
  color: #f6f1ed;
  float: left;
}
.dropmenu{
  *zoom: 1;
  list-style-type: none;
  width: 960px;
  margin: 0 auto ;
  padding: 0;
  font-size: 1.2vw;
}
.dropmenu:before, .dropmenu:after{
  content: "";
  display: table;
  font-size: 1.2vw;
}
.dropmenu:after{
  font-size: 1.2vw;
  clear: both;
}
.dropmenu li{
  position: relative;
  font-size: 1.2vw;
  text-align: center;
}
.dropmenu li a{
  font-size: 1.2vw;
  display: block;
  margin: 0;
  padding: 15px 0 11px;
  background: #f6f1ed;
  color: rgb(68, 68, 68);
  line-height: 1;
  text-decoration: none;
}
.dropmenu li ul{
  font-size: 1.1vw;
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
.dropmenu li ul li{
  font-size: 1.2vw;
  width: 100%;
}
.dropmenu li ul li a{
  padding: 13px 15px;
  font-size: 1.2vw;
  border-top: 1px solid rgb(68, 68, 68);
  border-bottom: 1px solid rgb(68, 68, 68);
  border-left: 1px solid rgb(68, 68, 68);
  border-right: 1px solid rgb(68, 68, 68);
  background: #f6f1ed;
  text-align: left;
}
.dropmenu li:hover > a{
  background: #f6f1ed;
}
.dropmenu li a:hover{
  background: #f6f1ed;
}


#normal li ul{
  display: none;
  font-size: 1.2vw;
}
#normal li:hover ul{
  display: block;
}


.hero h1{
  word-wrap: break-word;
}
.lead p{
  word-wrap: break-word;
}
.header{
  color: rgb(68, 68, 68);
}
.navbar{
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2vw;
  padding-right:32.6%;
  padding-left:9.9%;

}

.navbar ul{
  display: flex;
  list-style: none;


}
.global-nav {
  color: rgb(68, 68, 68);
}
.navbar li{
  padding-left:  5rem;

}



a {
  color: rgb(68,68,68);
  text-decoration: none;
}

.display{


}
.news{
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding-right:10.5%;
  padding-left: 10.5%;
  display: flex;
  justify-content: center;
  font-size: 1.2vw;
  margin-bottom: 5rem;
}

.news h1{
  font-size: 40px;
    margin-top: 5rem;
  margin-left: 1rem;
}

.news p{
  font-size: 15pt;
}
.news img{

  width: 500px;
  max-width: 100%;
    margin-top: 5rem
}
.news video{

  width: 500px;
  max-width: 100%;
    margin-top: 5rem
}
.news2{
  max-width: 1500px;
  margin: 0 auto;
}

table.news-table{

  margin-right: auto;

}


@media(min-width: 1201px){
  .media{
    display: none;
  }
}


@media (max-width: 1200px) {

  nav.globalMenuSp {
    position: fixed;
    overflow-y: scroll;
    z-index: 2;
    top: 0;
    left: 0;
    -webkit-overflow-scrolling: touch;
    background: #f6f1ed;
    color: rgb(68, 68, 68);
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
}


nav.globalMenuSp ul {
    background: #f6f1ed;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

nav.globalMenuSp ul li {
    font-size: 16px;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted rgb(68, 68, 68);
}

/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

nav.globalMenuSp ul li a {
    display: block;
    color: rgb(68, 68, 68);
    padding: 6px 0;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}

.navToggle {
  display: block;
  position: fixed;    /* bodyに対しての絶対位置指定 */
  right: 13px;
  top: 30px;
  width: 42px;
  height: 51px;
  cursor: pointer;
  z-index: 3;
  background: #f6f1ed;
  text-align: center;
}

.navToggle span {
  display: block;
  position: absolute;    /* .navToggleに対して */
  width: 30px;
  border-bottom: solid 3px rgb(68, 68, 68);
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 6px;
}

.navToggle span:nth-child(1) {
  top: 9px;
}

.navToggle span:nth-child(2) {
  top: 18px;
}

.navToggle span:nth-child(3) {
  top: 27px;
}

.navToggle span:nth-child(4) {
  border: none;
  color: #eee;
  font-size: 9px;
  font-weight: bold;
  top: 34px;
}

/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
  top: 18px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}


  .navbar {
    padding-left: 0px;

  }
.news{
  display: flex;
  flex-direction: column;
}
  .news img{
    flex-direction: column;
  }
  .news video{
    flex-direction: column;
  }
  .logo img{
    text-align: left;
  }
  .global-nav{
    display: none;
  }
  .main {
    display: relative;
    flex-direction: column;
    margin: 1rem auto;
    max-width: 1124px
  }

  ul {
    font-size: 13px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  li {
    margin-bottom: 2rem;
    margin-right: 3;
  }
  .navbar img {
    margin: 0 auto;
  }

  .hero {
    flex-direction: column;
    font-size: 80%;
  }

  .top-img {
    justify-content: center;
    flex-direction: column;
    margin: 1rem auto;
  }

  .top-img img {
    width: 700px;
    max-width: 100%;
  }

.news{
  text-align: center;
  font-size: 10px;
}


  .heritage1-pic img{
    width: 100%;
  }

  .news2{
    text-align: center;
  }
  .news-table{

    margin-left: auto;
    margin-right: auto;
  }
  .news-table th,.news-table td{
    width:100%;

  display:block;

  }
}
