/*==================================================
フォント
===================================*/

body {
    font-family: serif;
    font-weight: 400;
    font-size: 10px;
}


@media screen and (max-width: 1080px) {
body {
    font-family: serif;
    font-weight: 400;
    font-size: 20px;
}
}

/*==================================================
グローバルヘッダーメニュー
===================================*/


.menu-container {
  margin: 0;
  
}

.menu-container .menu {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0; 
}

.menu-container .menu .menu-item {
  flex: 1;
}

.menu-container .menu .menu-item a {
  background: #fff;
  border: 1px solid #fff;
  border-right: none;
  color: #888888;
  display: block;
  padding: 0.3em 0.3em;
  text-align: center;
  text-decoration: none;
  font-size: 2.5em;
  font-family: serif;
  letter-spacing: 1.0px;
}

.menu-container .menu .menu-item a:hover {
  background: #fff;
  color: #fff;
}

.menu-container .menu .menu-item:last-child a {
  border-right: 1px solid #fff;
}

@media screen and (max-width: 1080px) {
  .menu-container .menu .menu-item a {
  background: #fff;
  border: 1px solid #fff;
  border-right: none;
  color: #888888;
  display: block;
  padding: 0.3em 0.3em;
  text-align: center;
  text-decoration: none;
  font-size: 3.0em;
  font-family: serif;
  letter-spacing: 1.0px;
  }
  }
 /*==================================================
フッター
===================================*/
.footerFixed{
    min-height: 90vh; /* ←コンテンツの高さの最小値＝ブラウザの高さに指定 */
    position: relative;/* ←相対位置 */
    padding-bottom: 0; /* ←フッターの高さを指定 */
    box-sizing: border-box;
    /* ↑ヘッダーやフッターを含むすべての要素の高さ＝min-height:100vhになるように指定 */
}


footer{
    width: 100%;
    text-align: center;
    padding: 0;

    position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/
}
 /*==================================================
フッター2
===================================*/
footer2{
    width: 100%;
    text-align: center;
    padding: 0;

    position: absolute;/*←絶対位置*/
    bottom: -4em; /*下に固定*/
}
/*==================================================
TOP画像
===================================*/
 
.background-image-cov-res{
  background-color: #ccc;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height:0;
  padding-top: 55%;
  margin-top: 10vh;
  margin-bottom: 10vh;
  background-size: cover;
}


@media screen and (max-width: 1080px) {
.background-image-cov-res{
  background-color: #ccc;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height:0;
  padding-top: 55%;
  margin-top: 25vh;
  margin-bottom: 25vh;
  background-size: cover;
}
}


/* レイアウト用 */
*{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  display:block;
  vertical-align:middle;
}
.wrap{
  max-width:500px;
  margin:auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}


@media screen and (max-width: 1080px) {
.wrap{
  max-width:800px;
  margin:auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
}

.col{
  width:100%;
  padding:0px;
}
p{
  width:100%;
}
