*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Yu Gothic Medium", "游ゴシック Medium";
}
@media screen and (min-width: 767px){
/* ヘッダー */
header {
  padding: 30px 4% 10px;
  position: fixed;
  top: 0; /* 上部から配置の基準位置を決める */
  left: 0; /* 左から配置の基準位置を決める */
  width: 100%;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  z-index: 10;
}
#logo {
  width: 50px;
  height: auto;
}
ul {
   list-style: none;
   margin: 0;
   display: flex;
}
li {margin-right: 20px;}
.a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.a::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #7acbe1;
  transition: all 0.3s ease 0s;
}
.a:hover {cursor: pointer;}
.a:hover::after {width: 100%;}
/* ヘッダー */
/*PCメニュー*/
#header {
  display: flex;
  flex-flow: row wrap;
}
#header h1 {
  margin-left: auto;
}
#header #navi {
  margin-top: 10px;
  display: flex;
  flex-flow: row wrap;
  align-items: right;
  list-style: none;
  position: absolute;
  right: 2%;
}
#header #navi li {
  margin: 0 15px;
  line-height: 100%;
}
#header #navi li a {
  color: #333;
  text-decoration: none;
}
/*PCメニュー*/
#width {
  width: 800px;
  margin: 0 auto;
}

/* main */
main{
  color: #333;
  text-align: center;
}
p {display: inline-block;}

#caption {
  margin-bottom: 100px;
}
#caption h1 {
  color: #333;
  font-weight: normal;
}
#caption span {
  font-size: 40%;
  padding-top: -10px;
}


#h1 {margin-top: 10%;}
h2{
  text-align: center;
  font-weight: normal;
  display: block;
  margin: 80px 0 50px;
}

.location-info {
  text-align: center;
}
.location-info p {
  display: inline-block;
  text-align: left;
}

.location-info {
  width: 800px;
  margin-top: 50px;
  margin-bottom: 150px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

iframe {
   width: 100%;
}

/* フッター */
footer {
  padding: 30px 4% 10px;
  width: 100%;
  background-color: #3E3E3F;
}
.write{
  color: #fff;
  text-align: center;
  font-size: 80%;
  margin-top: 1%;
  margin-bottom: 2%;
}
}
