@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  color: #944201;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* フォントサイズ */
h1 {
  font-size: 5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1rem;
}

/* color変数 */
/* フォント変数 */
/* コンポーネント */
.el_bgGray {
  background-color: #ececec;
  position: absolute;
  z-index: -999;
}

.el_bgWord {
  position: absolute;
  font-family: milonguita, sans-serif;
  font-size: 12rem;
  color: #fcd89e;
  z-index: -99;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

/* ヘッダー */
header {
  position: fixed;
  width: 60px;
  height: 100%;
  right: 0;
}

/* SNS */
.el_sns {
  position: fixed;
  right: 13px;
  margin-top: 216px;
  z-index: 999;
}

.el_sns a {
  color: #64ad4d;
  font-size: 3rem;
}

.el_sns a .fa-instagram {
  font-size: 3.5rem;
}

.el_sns a .fab {
  margin-top: 10px;
}

/* ドロワーメニュー */
body.noscroll {
  overflow: hidden;
}

.bl_drawer {
  position: fixed;
  top: 0;
  right: -25px;
  width: 500px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 100px 10px;
  -webkit-transform: translateX(500px);
  transform: translateX(500px);
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 9999;
  text-align: center;
  font-family: jaf-domus-titling-web, sans-serif;
}

.bl_drawer_list {
  margin-left: -20px;
}

.bl_drawer_item {
  margin-bottom: 50px;
}

.bl_drawer_item a {
  color: White;
  font-size: 3rem;
  font-weight: bold;
}

.bl_drawerBtn {
  position: fixed;
  top: 0px;
  left: -67px;
  width: 60px;
  height: 60px;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  cursor: pointer;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  padding-bottom: 2px;
  z-index: 10000;
}

.hambarg {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 2px;
  width: 40px;
  background: #64ad4d;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.hambarg:nth-child(1) {
  top: 30%;
  left: 50%;
}

.hambarg:nth-child(2) {
  top: 50%;
  left: 50%;
}

.hambarg:nth-child(3) {
  top: 70%;
  left: 50%;
}

.bl_drawer.action {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.bl_drawerBtn.action {
  left: 0;
}

.bl_drawerBtn.action .hambarg:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.bl_drawerBtn.action .hambarg:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.bl_drawerBtn.action .hambarg:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*=== 9-1-2 丸が動いてスクロールを促す ====*/
/*スクロールダウン全体の場所*/
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: fixed;
  bottom: 10px;
  right: 32px;
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: #64ad4d;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #64ad4d;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@-webkit-keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 50px;
  background: #64ad4d;
}

/* ファーストビュー */
.ly_fv {
  height: 700px;
  position: relative;
}

.ly_fv .el_telBtn {
  margin-left: auto;
  color: #64ad4d;
  font-weight: bold;
  width: 340px;
  display: block;
  font-size: 2rem;
  line-height: 3;
  letter-spacing: 0.3rem;
  font-family: mendl-sans-dawn, sans-serif;
}

.ly_fv .el_telBtn .fas {
  margin-right: 10px;
}

.ly_fv .bl_fv_logo {
  text-align: center;
  position: absolute;
  top: 220px;
  right: 70vw;
  z-index: 999;
}

.ly_fv .bl_fv_logo_main {
  font-family: modula-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10rem;
  color: #944201;
  text-shadow: 0px 0px 10px White;
  line-height: normal;
}

.ly_fv .bl_fv_logo_sub {
  color: #944201;
  letter-spacing: 0.15rem;
  text-shadow: 0px 0px 10px #ffffff;
  font-family: serif;
}

.ly_fv .el_fv_img {
  background: url(../img/fv.jpg);
  background-position: center;
  background-size: cover;
  width: 55vw;
  height: 600px;
  position: absolute;
  top: 70px;
  right: 62px;
  z-index: -1;
}

.ly_fv .el_bgGray {
  width: 50vw;
  height: 720px;
  top: 0px;
  right: 0px;
}

/* ここからセクション */
.ly_section {
  padding: 150px 60px 150px 4vw;
}

.ly_inner {
  max-width: 1180px;
  margin: 0 auto;
}

.el_section_ttl {
  text-align: center;
  color: #64ad4d;
  font-family: jaf-domus-titling-web, sans-serif;
  letter-spacing: 0.2rem;
}

.ly_container {
  margin-top: 100px;
  margin-bottom: 100px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#greeting .bl_section_cont {
  padding-left: 50px;
  width: 40%;
}

#greeting .bl_section_cont_ttl {
  margin-bottom: 20px;
  font-family: serif;
}

#greeting .bl_section_cont_txt {
  color: #000000;
}

#greeting .bl_section_img {
  width: 50%;
}

#greeting .el_bgGray {
  width: 40vw;
  height: 40vw;
  top: -20px;
  right: 0px;
}

#greeting .el_bgWord {
  left: 50px;
  top: -30px;
}

#first.el_decoImg {
  width: 55%;
}

#second.el_decoImg {
  padding-left: 70vw;
  padding-top: -60px;
}

#second.el_decoImg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 200px;
  height: 200px;
}

/* メニュー */
#menu .ly_container {
  margin-top: 200px;
  margin-bottom: 200px;
}

#menu .bl_section_cont {
  padding-left: 50px;
  width: 40%;
}

#menu .bl_section_cont_sub {
  font-weight: lighter;
}

#menu .bl_section_cont_ttl {
  margin-bottom: 20px;
  font-family: serif;
}

#menu .bl_section_cont_txt {
  color: #000000;
}

#menu .bl_section_img {
  width: 47%;
}

#menu .bl_section_effect {
  margin-top: 50px;
}

#menu .bl_section_effect_ttl {
  margin-bottom: 20px;
}

#menu .bl_section_effect_detail {
  color: #000000;
}

#menu .el_bgGray.hp_left {
  width: 47vw;
  height: 55vw;
  max-height: 690px;
  top: -20px;
  left: -100px;
}

#menu .el_bgGray.hp_right {
  width: 47vw;
  height: 55vw;
  max-height: 690px;
  top: -20px;
  right: 0px;
}

#menu .el_bgWord {
  position: absolute;
  font-family: milonguita, sans-serif;
  font-size: 12rem;
  color: #fcd89e;
  z-index: -99;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  top: -30px;
}

#third.el_decoImg {
  margin-top: -80px;
  padding-left: 70vw;
}

#third.el_decoImg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 200px;
  height: 200px;
}

#fourth.el_decoImg {
  margin-top: -60px;
  width: 55%;
}

#fifth.el_decoImg {
  margin-top: -100px;
  padding-left: 70vw;
}

#fifth.el_decoImg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 200px;
  height: 300px;
}

/* リザーブ */
.bl_reserved_box {
  background-color: #ececec;
  padding: 30px 20px;
  margin-top: 100px;
  position: relative;
  z-index: 99;
}

.bl_reserved_box h3 {
  text-align: center;
  margin-bottom: 20px;
}

.bl_reserved_box .el_telBtn {
  margin: 0 auto;
  text-align: center;
  color: #64ad4d;
  font-weight: bold;
  width: 320px;
  display: block;
  font-size: 2rem;
  line-height: 3;
  letter-spacing: 0.3rem;
  font-family: mendl-sans-dawn, sans-serif;
}

.bl_reserved_box .el_telBtn .fas {
  margin-right: 10px;
}

.bl_reserved_box table {
  margin: 0 auto;
}

.bl_reserved_box th {
  padding-right: 50px;
  font-weight: bold;
}

.bl_reserved_box .el_bgWord {
  top: -100px;
  z-index: -1;
}

iframe {
  width: 100%;
  height: 300px;
  margin-bottom: 50px;
}

#sixth.el_decoImg {
  margin-top: 100px;
  margin-bottom: 50px;
  padding-left: 60vw;
}

#sixth.el_decoImg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 300px;
  height: 200px;
}

/* フッター */
footer {
  text-align: center;
}

/* ヘルパークラス */
.hp_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hp_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.hp_spOnly {
  display: none;
}
/*# sourceMappingURL=style.css.map */