body {
  margin: 0;
  font-family: serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
}

h2 {
  font-size: 30px;
}

@media screen and (max-width: 840px) {
  h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.menu-area__around {
  padding: 10px 0;
  background-color: #000;
  position: fixed;
  z-index: 200;
  width: 100%;
}

@media screen and (min-width: 840px) {
  .menu-area {
    display: flex;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.menu-area {
  z-index: 100;
  width: 100%;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 840px) {
  .menu-area {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.9);
  }
}

.logo span {
  font-size: 11px;
}

@media screen and (max-width: 840px) {
  .logo__pc {
    display: none;
  }
}

@media screen and (min-width: 840px) {
  .logo__sp {
    display: none;
  }
}

.menu {
  display: flex;
  list-style: none;
}

.menu a {
  color: #fff;
  padding: 0 20px;
}

h1 {
  border-bottom: solid 1px #fff;
  width: 270px;
  margin: 0 auto;
}

h1 img {
  width: 229px;
}

.copy {
  font-size: 14px;
}


.video-container {
  margin: 0 auto;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.video-wrap::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: radial-gradient(#333 20%, transparent 0), radial-gradient(#333 20%, transparent 0);
  background-position: 0 0, 5px 5px;
  background-size: 3px 3px;
}

video {
  min-width: 100%;
  min-height: 100vh;
  position: absolute;
}



/*画面サイズが変わっても常に動画の中央が表示されるようにする*/

/*動画よりも画面が横に長くなるとき用*/

@media (aspect-ratio: 16/9), (min-aspect-ratio: 16/9) {
  video {
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}

/*動画よりも画面が縦に長くなるとき用*/

@media (max-aspect-ratio: 16/9) {
  video {
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}


.text-area {
  position: absolute;
  text-align: center;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
}

.news_area{
  width: 100%;
  max-width: 750px;
  background: hsl(50, 15%, 50%);
  color: white;
  padding: 10px;
  border-radius: 1px;
  margin:0 auto;
  line-height: 1.7;
}
.news_area h3{
  font-size: 16px;
}
.news_area p{
  font-size: 12px;
  text-align: left;
  text-align: center;
}

.news_area a{
  color: white;
  text-decoration: underline;
}

@media screen and (max-width: 840px) {

.news_area{
  width: 100%;
  max-width: 100%;
  background: hsl(50, 15%, 50%);
    color: white;
  padding: 5px;
  border-radius: 1px;
  margin:0 auto;
  box-sizing: border-box;
}
.news_area h3{
  font-size: 14px;
}
.news_area p{
  font-size: 10px;
  text-align: center;
}

  
}

.line-area {
  position: fixed;
  top: 100px;
  right: 40px;
  z-index: 100;
  text-align: center;
}

.line-btn {
  background-color: #43D111;
  color: #FFF;
  padding: 10px 65px;
  border-radius: 5px;
}

.line-arrow {
  padding: 20px 0;
}

@media screen and (max-width: 840px) {
  .line-area {
    display: none;
  }
}

.normal-contents {
  padding-top: 200px;
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 840px) {
  .normal-contents {
    padding-top: 130px;
    width: 100%;
    overflow-x: hidden;
  }
}

.normal-contents__h1 {
  text-align: center;
  padding-bottom: 100px;
}

@media screen and (max-width: 840px) {
  .normal-contents__h1 {
    font-size: 22px;
    padding-bottom: 40px;
  }
}

.normal-contents__h1 span {
  font-size: 13px;
}

.normal-contents__h2 {
  margin: 0;
  padding: 50px 0;
}

@media screen and (max-width: 840px) {
  .normal-contents__h2 {
    font-size: 20px;
  }
}

.normal-contents__h2-border {
  padding-bottom: 20px;
}

.normal-contents__h2 span {
  font-size: 13px;
  margin: 0;
}

.vertical-line {
  width: 50%;
  height: 60px;
  border-right: solid 1px #000;
}

.normal-contents__first {
  margin: 0 auto;
  text-align: center;
}

.normal-contents-introduction__first {
  background-color: #F4F4F4;
}

@media screen and (max-width: 840px) {
  .normal-contents-introduction__first {
    padding: 20px;
  }
}

.normal-contents-introduction__first p {
  line-height: 300%;
  padding-bottom: 50px;
  font-size: 14px;
}

.first__flaw {
  text-align: left;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.first__flaw li {
  width: 50%;
}

@media screen and (max-width: 840px) {
  .first__flaw li {
    width: 100%;
  }
  .first__flaw-box img {
    width: 100%;
  }
}

.first__flaw-box {
  margin: 10px;
  padding: 15px;
  box-shadow: 0px 3px 6px #00000029;
}

.normal-contents__btn {
  padding: 20px 0;
}

.normal-contents__btn a {
  background-color: #433924;
  color: #fff;
  padding: 10px 30px;
}

.first__voice {
  text-align: left;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.first__voice li {
  width: 33.3%;
}

@media screen and (max-width: 840px) {
  .first__voice li {
    width: 100%;
  }
}

.first__voice-box {
  margin: 10px;
  padding: 15px;
  border: solid #707070 1px;
  border-radius: 10px;
  border-bottom: solid #433924 5px;
}

.first__voice-box-head {
  display: flex;
}

.first__voice-box-head-text {
  padding-left: 10px;
}

.normal-contents__menu {
  width: 100%;
}

.normal-contents-introduction__menu {
  color: #fff;
  text-align: center;
  background-image: url(../img/menu/menu01.png);
  padding: 60px 0 90px 0;
}

.normal-contents-introduction__menu h2 {
  font-size: 45px;
  padding-bottom: 10px;
}

.normal-contents-introduction__menu span {
  font-size: 16px;
}

@media screen and (max-width: 840px) {
  .normal-contents-introduction__menu p {
    padding: 0 20px;
  }
}

.normal-contents__menu-text-area {
  width: 800px;
  margin: 0 auto;
  padding: 80px 0;
}

@media screen and (max-width: 840px) {
  .normal-contents__menu-text-area {
    width: 85%;
  }
  .normal-contents__menu-text-area h3 {
    text-align: center;
  }
}

.normal-contents__menu-menu-area {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 840px) {
  .normal-contents__menu-menu-area {
    width: 100%;
    margin: 0 auto;
  }
}

.normal-contents__annotation {
  text-align: right;
  font-size: 14px;
}

.normal-contents__table-grey-around {
  padding-bottom: 200px;
}

@media screen and (max-width: 840px) {
  .normal-contents__table-grey-around {
    padding-bottom: 100px;
  }
}

.normal-contents__table-grey {
  width: 700px;
  margin: 0 auto;
  border: solid #433924 1px;
  text-align: left;
}

.normal-contents__table-grey-group {
  display: flex;
  line-height: 300%;
  border-bottom: solid #433924 1px;
}

.normal-contents__table-grey-group:last-child {
  border-bottom: none;
}

.normal-contents__table-grey dt {
  background-color: #F4F4F4;
  width: 200px;
  padding-left: 20px;
  border-right: solid #433924 1px;
}

.normal-contents__table-grey dd {
  margin-left: 0;
  padding-left: 20px;
}

@media screen and (max-width: 840px) {
  .normal-contents__table-grey {
    width: 100%;
    border: none;
    text-align: center;
  }
  .normal-contents__table-grey-group {
    border-bottom: none;
    display: block;
  }
  .normal-contents__table-grey dt {
    border-right: none;
    width: 100%;
    padding-left: 0;
  }
  .normal-contents__table-grey dd {
    width: 100%;
    padding: 0;
    padding-bottom: 40px;
    line-height: 150%;
    padding-top: 20px;
  }
  .normal-contents__table-grey dd .dd-in-sp {
    padding: 0 10px;
  }
}

.normal-contents__table-border-around {
  padding-bottom: 80px;
}

.normal-contents__table-border-group {
  display: flex;
  text-align: center;
  border-bottom: solid #ccc 1px;
  line-height: 300%;
}

@media screen and (max-width: 840px) {
  .normal-contents__table-border-around {
    padding: 0 10px 80px 10px;
  }
  .normal-contents__table-border-group {
    padding: 0 10px;
    display: table;
    width: 100%;
    padding: 10px 0;
  }
}

.normal-contents__table-border-group dt {
  text-align: left;
}

.normal-contents__table-border-group dd:last-child {
  text-align: right;
}

.normal-contents__table-border-group dt, .normal-contents__table-border-group dd {
  width: 33.3%;
  margin: 0;
}

@media screen and (max-width: 840px) {
  .normal-contents__menu-menu-area-images-in {
    margin: 5px;
  }
  .normal-contents__menu-menu-area-images-in img {
    width: 100%;
    padding-bottom: 10px;
  }
  .normal-contents__table-border-group dd {
    text-align: right;
    display: table-cell;
  }
  .normal-contents__table-border-group dt {
    vertical-align: middle;
    display: table-cell;
    line-height: 150%;
  }
}

.normal-contents__menu-menu-area-title {
  text-align: center;
  padding: 40px 0;
}

.normal-contents__menu-menu-area-title img {}

@media screen and (max-width: 840px) {
  .normal-contents__menu-menu-area-title img {
    max-width: 80%;
  }
}

.normal-contents__menu-menu-area-title p {
  margin-top: -10px;
}

.normal-contents__menu-menu-area-image .sp {
  display: none;
}

@media screen and (max-width: 840px) {
  .normal-contents__menu-menu-area-image .sp {
    display: block;
    width: 100%;
  }
  .normal-contents__menu-menu-area-image .pc {
    display: none;
  }
}

.normal-contents__footer-map iframe {
  width: 100%;
  height: 176px;
}

@media screen and (max-width: 840px) {
  .normal-contents__footer-map iframe {
    height: 300px;
  }
}

.normal-contents__footer-band {
  background-color: #433924;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.normal-contents__footer-band p {
  padding: 0;
  margin: 0;
  font-size: 22px;
}

.normal-contents__reserve-headerimage {
  background-image: url(../img/reserve/reserve01.png);
  height: 450px;
  background-position: center;
}

@media screen and (max-width: 840px) {
  .normal-contents__reserve-headerimage {
    background-image: url(../img/reserve/reserve_sp.png);
    background-size: cover;
    height: 320px;
  }
}

.normal-contents__reserve-main {
  padding-top: 80px;
  text-align: center;
}

.normal-contents__reserve-main-text {
  padding-bottom: 80px;
}

@media screen and (max-width: 840px) {
  .normal-contents__reserve-main-text {
    width: 85%;
    margin: 0 auto;
  }
}

.normal-contents__reserve-btn {
  padding-bottom: 20px;
}

.normal-contents__reserve-btn a {
  padding: 20px 100px;
  font-size: 30px;
}

@media screen and (max-width: 840px) {
  .normal-contents__reserve-btn a {
    padding: 10px 50px;
    font-size: 20px;
  }
}

.normal-contents__reserve-btn a i {
  padding-right: 10px;
}

.normal-contents__reserve-btn p {
  font-size: 14px;
  padding-top: 10px;
}

@media screen and (max-width: 840px) {
  .normal-contents__reserve-btn p {
    padding-top: 5px;
  }
}

.normal-contents__reserve-btn-tel a {
  border: solid #402E2E 1px;
  color: #402E2E;
  font-weight: bold;
  border-radius: 77px;
}

.normal-contents__reserve-btn-line a {
  background-color: #43D111;
  color: #fff;
  font-weight: bold;
  border-radius: 77px;
}

.payment {
  display: inline-block;
  width: 100%;
  max-width: 100px;
  vertical-align: middle;
  backface-visibility: hidden;
}

.menu_contact_area{
  text-align: center;
  font-size: 30px;
}