@charset "UTF-8";
body {
  font-family: "Helvetica Neue", "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.7;
}
html {
  font-size: 100%;
}
img {
  max-width: 100%;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  
}
.sec-title {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 4.5rem;
  filter: drop-shadow(1px 1px 10px #c0c0c0);
  position: absolute;
  top: 30%;
}
.wrapper {
  max-width: 1000px;
  padding: 90px 16px 150px 16px;
  margin: 0 auto;
  text-align: center;
}
.fixed-bg {
  height: 300px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
/*-------------------------------
header
--------------------------------*/
.header {
  background-image: url(img/mainvisual.jpeg);
  width: 100%;
  height: 100vh;
  display: block;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 20px 40px;
}
.nav__list {
  display: flex;
  justify-content: flex-end;

}
.nav a {
  margin-left: 24px;
  margin-top: 24px;
  text-shadow: 1px 2px 3px #808080 ;
  color: #FFF;
  font-weight: bold;
  transition: all  0.3s ease;
} 
.nav a:hover {
  color: #e03131;
}
.main-title {
  color: #FFF;
  font-size: 7.18rem;
  text-align: center;
  position: absolute;
  top: 45%;
  right: 0;
  left: 0;
  padding: 0 16px;
}
/*-------------------------------
menu
--------------------------------*/
#menu {
  margin-top: 20px;
}
#menu .title {
  position: relative;
  background-image: url(img/menu.jpg);
}
.subtitle {
  font-size: 2.5rem;
  display: inline-block;
  border-bottom: solid 6px #e03131;
  margin-bottom: 70px;
}
#menu .menu-content {
  display: flex;
}
#menu .left {
  width: 50%;
  border-right: #000 1px solid;
  padding: 0 45px;
}
#menu .right {
  width: 50%;
  padding: 0 45px;
}
#menu dl {
  display: flex;
  flex-wrap: wrap;
}
#menu dt {
  width: 87%;
  text-align: left;
  border-bottom: dashed 1px #000;
  margin-bottom: 25px;
}
#menu dd {
  width: 13%;
  text-align: right;
}
/*-------------------------------
about
--------------------------------*/
#about .title {
  position: relative;
  background-image: url(img/about.jpg);
}
#about .textbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
#about .textbox p {
  display: block;
  width: 50%;
  line-height: 2;
  text-align: left;
  padding: 2%;
}
#about .btn {
  color: #000;
  width: 160px;
  height: 50px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  line-height: 3.5;
}
#about .btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
#about .btn::before,
#about .btn::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: #e03131;
  transition: all 0.3s ease;

}
#about .btn span::before,
#about .btn span::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #e03131;
  transition: all 0.3s ease;
}
#about .btn::before,
#about .btn span::before {
  width: 2px;
  height: 50%;
}
#about .btn::after,
#about .btn span::after {
  width: 20%;
  height: 2px;
}
/*
ホバー時の縦の動作
右の赤線と左の赤線の高さを100%にする
*/
#about .btn:hover::before,
#about .btn span:hover::before {
  height: 100%;
}
/*
ホバー時の横の動作
下の赤線と上の赤線の横幅を100%にする
*/
#about .btn:hover::after,
#about .btn span:hover::after {
  width: 100%;
}
/*-------------------------------
location
--------------------------------*/
#location .title {
  position: relative;
  background-image: url(img/location.jpg);
}
#location .item-map {
  filter: grayscale(1);
  margin-bottom: 20px;
  border: 0;
}
#location .item-map iframe {
  width: 100%;
  height: 400px;
}
#location .item-info {
  text-align: left;
}
#location .item-info p {
  margin-bottom: 10px;
}
/*-------------------------------
footer
--------------------------------*/
footer {
  text-align: center;
}

/*-------------------------------
レスポンシブ対応
--------------------------------*/
@media screen and (max-width: 767px) {
  .main-title {
    top: 40%;
  }
  .sec-title {
    font-size: 2rem;
    top: 26%;
  }
  .subtitle {
    font-size: 1.25rem;
    margin-bottom: 25px;
  }
  .fixed-bg {
    height: 94px;
    background-attachment: scroll;
    margin-bottom: -50px;
  }
  
  /*menu*/
  #menu {
    margin-top: 10px;
  }
  #menu .menu-content {
    flex-direction: column;
  }
  #menu .left {
    border-right: none;
    width: 100%;
  }
  #menu .right {
    width: 100%;
  }
  #menu dl {
  }
  #about .textbox {
    flex-direction: column;
  }
  #about .textbox p {
    width: 100%;
  }
}