/*共通部分*/
html{
  font-size: 100%;
}
body{
  font-family: "Yu Gothic Medium","游ゴシック Medium",YuGothic,"游ゴシック体","ヒラギノ角ゴ Pro W3",sans-serif;
  line-height: 1.7;
  color: #432;
}
a{
  text-decoration: none;
}
img{
  max-width: 100%;
}
.wrapper{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%; /*スマホ向け余白*/
}


/*header*/
.page-header{
  display: flex;
  justify-content: space-between;
}

.logo{
  width: 210px;
  margin-top: 14px;
}

.main-nav{
  display: flex;
  font-size: 1.25em;
  text-transform: uppercase;
  margin-top: 34px;
  list-style: none;
}
.main-nav li{
  margin-left: 36px;
}
.main-nav a{
  color: #432;
}
.main-nav a:hover{
  color: #0bd;
}

/*home*/
#home{
  background-image: url(images/coffee-5037800_1920.jpg);
 /* background-color: rgb(255, 255, 255,.4);*/
  background-blend-mode: overlay;
  min-height: 100vh;
}
.home-content{
  text-align: center;
  margin-top: 10%;
}
.home-content p{
  font-size: 1.125rem;
 /* font-weight: bold;*/
  margin: 10px 0 42px;
  color: #fff;
  text-shadow: 3px 1px 4px #000;
}