@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Sawarabi Mincho", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  background: #FFFFFF;
  color: #252525;
}
figure {
  margin: 0;
}
/*========= 背景動画設定のCSS ===============*/
/*header設定*/
#header {
  position: relative; /*h1の中央寄せ配置の起点とするためのrelative*/
  height: 100vh; /*高さを全画面にあわせる*/
}
#video-area {
  position: fixed;
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}
/*見出し設定*/
.headerText {
  /*要素の配置*/
  position: absolute;
  /*要素を天地中央寄せ*/
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  /*見た目の調整*/
  color: #000000;
  background-color: rgba(255, 255, 255, 0.70);
  padding: 20px;
  width: 90%;
  text-align: center;
}
h1 {
  font-size: 1.5rem;
}
.headerText p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.headerText img {
  width: 40%;
  height: auto;
}
.info {
  background-color: #312928;
  color: #DECEAE;
  width: 100%;
  padding: 20px;
}
.info p {
  font-size: 0.9rem;
}
.info img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
/*//////// アイテム //////*/
.item {
  width: 100%;
  padding: 20px 15px;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}
.itemBox {
  background-color: rgba(49, 41, 40, 0.90);
  padding: 15px;
}
.item img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.item h3 {
  text-align: center;
  font-size: 1.5rem;
  color: #DECEAE
}
.item p {
  font-size: 0.9rem;
  color: #DECEAE
}
.item01 {
  background-image: url("../img/item01_bg.jpg");
  z-index: 1;
  position: relative;
}
.item02 {
  background-image: url("../img/item02_bg.jpg");
  z-index: 1;
  position: relative;
}
.item03 {
  background-image: url("../img/item03_bg.jpg");
  z-index: 1;
  position: relative;
}
.item04 {
  background-image: url("../img/item04_bg.jpg");
  z-index: 1;
  position: relative;
}
.item05 {
  background-image: url(../img/item05_bg.jpg);
  z-index: 1;
  position: relative;
}
.item06 {
  background-image: url(../img/item06_bg.jpg);
  z-index: 1;
  position: relative;
}
.item07 {
  background-image: url("../img/item07_bg.jpg");
  z-index: 1;
  position: relative;
}
.item08 {
  background-image: url("../img/item08_bg.jpg");
  z-index: 1;
  position: relative;
}
.item01::before, .item02::before, .item03::before, .item04::before, .item05::before, .item06::before, .item07::before, .item08::before {
  background: inherit;
  content: '';
  position: absolute;
  filter: blur(20px);
  z-index: -1;
}
.btn {
  text-align: center;
  background: rgba(255, 180, 0, 1.00);
  border-radius: 5px;
}
.btn:hover {
  background: rgba(255, 180, 0, 0.67);
}
.btn a {
  display: block;
  padding: 10px;
}
/*//////// お問い合わせ //////*/
.inquiry {
  width: 100%;
  background-color: #3B312D;
  margin: 0;
  padding: 20px;
}
.inquiry dt {
  color: #FFFFFF
}
.inquiry dt span {
  color: #FF0004;
  font-size: 0.9rem;
  padding-left: 1rem;
}
.inquiry h3 {
  text-align: center;
  font-size: 1.5rem;
  color: #DECEAE
}
.m-form-text {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.m-form-text:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
.m-form-item-textarea textarea {
  height: 300px;
}
.m-form-textarea {
  display: block;
  width: 100%;
  padding: 4px 16px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  resize: vertical;
}
.m-form-textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
.m-form-submit-button {
  display: inline-block;
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 4px;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border: 2px solid transparent;
}
.m-form-submit-button:hover {
  background-color: #000;
}
.m-form-submit-button:focus {
  outline: 0;
  background-color: #000;
  border: 2px solid rgb(33, 150, 243);
}
/*//////// フッター //////*/
footer {
  text-align: center;
  padding: 10px;
  background: #000000;
  color: #FFFFFF
}
small {
  border-top: solid 1px rgba(199, 199, 199, 1.00);
  padding-top: 10px;
}
/*//////// 非表示 //////*/
.sp {
  display: none;
}
.pc {
  display: none;
}
@media (min-width: 1024px) {
  /* 横幅が1024px以上の場合に適用するスタイル */
  .headerText {
    width: 1024px;
    display: flex;
  }
  .headerText .mainPic img {
    height: 460px;
    width: auto;
  }
  .headerText .mainlogo img {
    height: 160px;
    width: auto;
  }
  .headerText .headerInfo {
    margin-left: 10px;
  }
  .headerText p {
    margin-bottom: 0;
  }
  h1 {
    font-size: 1.8rem;
  }
  .headerText p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .wideInfo {
    width: 1024px;
    margin: 0 auto;
    background: #4A3D3C;
    padding: 20px;
  }
  .wideInfo h2 {
    border-bottom: solid #DECEAE 1px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .wideInfo p {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
  .itemBox {
    width: 1024px;
    background-color: #000000;
    margin: 0px auto;
  }
  .itemBox {
    display: flex;
  }
  .item img {
    width: 500px;
    height: auto;
  }
  .item h3 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 15px;
  }
  .item p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .itemInfoBox {
    padding-left: 20px;
  }
  .inqWide {
    width: 1024px;
    margin: 0 auto;
    padding-top: 20px;
  }
  .inquiry h3 {
    text-align: left;
    margin-bottom: 30px;
  }
  .pc {
    display: inline;
  }
}