@charset "UTF-8";
body {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  margin: 0;
  padding: 0;
}

.c-header {
  align-items: center;
  background-color: #020202; /* カスタマイズしてください */
  box-sizing: border-box;
  position: fixed;
  justify-content: space-between;
  padding: 1rem 2rem; /* カスタマイズしてください */
  width: 100%;
  z-index: 1;
}

.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-header__list-item {
  list-style: none;
  text-decoration: none;
}

.c-header__list-link {
  color: #000; /* カスタマイズしてください */
  display: block;
  margin-right: 20px; /* カスタマイズしてください */
  text-decoration: none;
  padding: 10px 0px; /* カスタマイズしてください */
}

.c-header__list-link:hover {
  filter: opacity(0.6); /* カスタマイズしてください */
}

.c-hamburger-menu {
  position: relative;
}

@media screen and (max-width: 768px) {
  .c-hamburger-menu__list {
    background-color: #eeeeee; /* カスタマイズしてください */
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; /* カスタマイズしてください */
    top: 100%;
    width: 100%;
  }
  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}
.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #000; /* カスタマイズしてください */
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; /* カスタマイズしてください */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 768px) {
  .c-hamburger-menu__button {
    align-items: center;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; /* カスタマイズしてください */
    height: 32px; /* カスタマイズしてください */
    justify-content: center;
    width: 2px; /* カスタマイズしてください */
  }
}
.c-hamburger-menu__button-mark {
  background-color: #ffffff; /* カスタマイズしてください */
  display: block;
  height: 1px; /* カスタマイズしてください */
  transition: 0.3s; /* カスタマイズしてください */
  width: 20px; /* カスタマイズしてください */
}

@media screen and (max-width: 768px) {
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}
.header {
  background-color: rgb(18, 17, 17);
  color: whitesmoke;
}
.header h1 {
  font-size: 3em;
  font-family: "Satisfy", cursive;
  padding-top: 0.5em;
}
.header a {
  text-decoration: none;
  color: whitesmoke;
}
.header nav ul li {
  margin-left: 3em;
  margin-right: 3em;
  display: inline-block;
}
.header nav ul li a {
  text-decoration: none;
  color: whitesmoke;
}
@media screen and (max-width: 769px) {
  .header nav ul li a {
    font-size: 10px;
  }
}
.header nav ul li a:hover {
  color: rgb(152, 152, 152);
}
.header ul {
  margin-bottom: 0em;
}

@media print, screen and (min-width: 769px) {
  ul {
    position: relative;
    display: flex;
    justify-content: center;
  }
  ul > li:hover {
    transition: all 0.5s;
  }
  li {
    position: relative;
    margin-right: 3em;
  }
  li a {
    position: relative;
    display: block;
    text-align: center;
    line-height: 80px;
  }
  .sub-menu {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    display: block;
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -100px;
    width: 200px;
    transition: all 0.2s ease;
    background-color: rgb(0, 0, 0);
  }
  .sub-menu a {
    padding: 10px;
    display: block;
    border-bottom: none;
    padding: 20px;
    line-height: 1.2em;
    width: 200px;
    margin-left: -65px;
  }
  .sub-menu a:hover:after {
    content: none;
  }
  .sub-menu li {
    display: block;
    font-size: 16px;
    padding: 0;
    margin: -6px;
  }
  .sub-menu li a:hover {
    background: #000000;
  }
  .sub-menu li:last-child {
    border-bottom: none;
  }
  li:hover ul.sub-menu {
    top: 80px;
    visibility: visible;
    opacity: 1;
    z-index: 9999;
  }
  li:hover ul.sub-menu a {
    color: rgb(255, 255, 255);
  }
  li:hover ul.sub-menu a:hover {
    color: #cccfd1;
  }
}
.header h2 {
  font-size: 3em;
  padding-top: 0.5em;
}
.header p {
  font-size: 1em;
}

.top {
  background-image: url(image/Resized/kuraiba.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 90% 50%;
}
@media screen and (max-width: 767px) {
  .top {
    background-image: url(image/black.jfif);
  }
}
.top .name {
  color: white;
}
.top .name h1 {
  font-size: 2em;
  font-family: "Satisfy", cursive;
  padding-top: 0.5em;
}
.top a {
  text-decoration: none;
}
.top h2 {
  color: whitesmoke;
}
@media screen and (max-width: 767px) {
  .top h2 {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
.top .box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top .box {
    display: block;
  }
}

.slide {
  position: relative;
  width: 100%;
  height: 510px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .slide {
    height: 380px;
  }
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}

.slide-image:nth-child(1) {
  background-image: url(image/rodeo/entrance.jpg);
  animation-delay: -2s;
}

.slide-image:nth-child(2) {
  background-image: url(image/rodeo/waiwai.jpg);
  animation-delay: 2s;
}

.slide-image:nth-child(3) {
  background-image: url(image/rodeo/drink1.jpg);
  animation-delay: 6s;
}

.slide-image:nth-child(4) {
  background-image: url(image/rodeo/taru.jpg);
  animation-delay: 10s;
}

.slide-image:nth-child(5) {
  background-image: url(image/rodeo/taru3.jpg);
  animation-delay: 14s;
}

.slide-image:nth-child(6) {
  background-image: url();
  animation-delay: 18s;
}

@keyframes slider-1 {
  /* 非表示状態からフェードインを開始する */
  0% {
    opacity: 0;
    transform: scale(1); /* ズームのための指定 */
  }
  /* フェードインを完了し完全表示する */
  4.16% {
    opacity: 1;
  }
  /* ここまで完全表示を維持したらフェードアウトを開始する */
  33.33% {
    opacity: 1;
  }
  /* フェードアウトを完了し非表示にする */
  41.66% {
    opacity: 0;
    transform: scale(1.2); /* ズームのための指定 */
  }
  100% {
    opacity: 0;
  }
}
.intro {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(image/bar3.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .intro {
    background-position: 70% 50%;
  }
}
.intro h2 {
  color: whitesmoke;
  padding-top: 60px;
  font-size: 3.5em;
  padding-bottom: 0.5em;
  font-family: "Satisfy", cursive;
}
@media screen and (max-width: 767px) {
  .intro h2 {
    font-size: 2.5em;
  }
}
.intro p {
  color: whitesmoke;
  font-size: 1.5em;
  line-height: 1.6em;
  padding-bottom: 60px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .intro p {
    font-size: 1em;
  }
}

.food {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(image/cheeze2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 10% 10%;
  color: whitesmoke;
}
@media screen and (max-width: 767px) {
  .food {
    background-position: 10% 50%;
  }
}
.food h2 {
  font-size: 3.5em;
  padding-top: 60px;
  font-family: "Satisfy", cursive;
}
@media screen and (max-width: 767px) {
  .food h2 {
    font-size: 2.5em;
  }
}
.food p {
  font-size: 1.5em;
  line-height: 1.6em;
  padding-bottom: 60px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .food p {
    font-size: 1em;
  }
}

.drink {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(image/rodeo/taru2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: whitesmoke;
}
@media screen and (max-width: 767px) {
  .drink {
    background-position: 30% 80%;
  }
}
.drink h2 {
  font-size: 3.5em;
  padding-top: 60px;
  font-family: "Satisfy", cursive;
}
@media screen and (max-width: 767px) {
  .drink h2 {
    font-size: 2.5em;
  }
}
.drink p {
  font-size: 1.5em;
  padding-bottom: 60px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .drink p {
    font-size: 1em;
  }
}

.mouth {
  background-image: url(image/wood.jfif);
  background-repeat: no-repeat;
  background-size: cover;
  color: whitesmoke;
  padding-top: 60px;
  padding-bottom: 60px;
}
.mouth h2 {
  font-size: 3.5em;
}
@media screen and (max-width: 767px) {
  .mouth h2 {
    font-size: 2.5em;
  }
}
.mouth h3 {
  font-size: 1.5em;
  padding-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .mouth h3 {
    font-size: 1.2em;
  }
}
.mouth img {
  width: 30%;
  border-radius: 50%;
}
.mouth .comment {
  text-align: left;
  letter-spacing: 0.05em;
}
.mouth .inner {
  max-width: 1000px;
}

.news {
  background-color: #272626;
  padding-bottom: 60px;
}
.news h2 {
  color: whitesmoke;
  font-size: 3em;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .news h2 {
    font-size: 2em;
  }
}
.news h3 {
  font-size: 1.5em;
  padding-bottom: 2em;
  color: whitesmoke;
}
@media screen and (max-width: 767px) {
  .news h3 {
    font-size: 1.2em;
  }
}
.news p {
  color: whitesmoke;
  font-size: 1.2em;
  text-align: left;
  padding-left: 6em;
}
@media screen and (max-width: 767px) {
  .news p {
    font-size: 1em;
    padding-left: 1em;
  }
}
.news .day {
  font-size: 1.5em;
  color: gray;
}
.news .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.info {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(image/back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: whitesmoke;
  background-position: 0% 80%;
  padding-top: 60px;
  padding-bottom: 60px;
}
.info a {
  text-decoration: none;
  color: whitesmoke;
}
.info h2 {
  font-size: 3em;
}
@media screen and (max-width: 767px) {
  .info h2 {
    font-size: 2em;
  }
}
.info h3 {
  font-size: 1.5em;
  padding-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .info h3 {
    font-size: 1.2em;
  }
}
.info h4 {
  font-size: 1.2em;
  text-align: left;
}
.info p {
  font-size: 1.1em;
  text-align: left;
}
.info .info1 {
  padding-top: 1em;
  padding-bottom: 1em;
}

iframe {
  width: 100%;
  height: 590px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  iframe {
    height: 400px;
  }
}

.booking {
  background-color: #383838;
  color: whitesmoke;
  padding-top: 60px;
  padding-bottom: 60px;
}
.booking h2 {
  font-size: 3em;
}
@media screen and (max-width: 767px) {
  .booking h2 {
    font-size: 2em;
  }
}
.booking h3 {
  font-size: 1.5em;
  padding-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .booking h3 {
    font-size: 1.2em;
  }
}
.booking p {
  font-size: 1.2em;
  padding-bottom: 3em;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .booking p {
    font-size: 1em;
    padding-left: 1em;
    padding-right: 1em;
    text-align: left;
  }
}

.rec {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(image/rodeo/waiwai.jpg);
  color: whitesmoke;
}
.rec h2 {
  font-size: 3em;
}
@media screen and (max-width: 767px) {
  .rec h2 {
    font-size: 2em;
  }
}
.rec h3 {
  font-size: 1.5em;
  padding-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .rec h3 {
    font-size: 1.2em;
  }
}
.rec p {
  font-size: 1.2em;
  padding-bottom: 3em;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .rec p {
    font-size: 1em;
  }
}

a.btn_09 {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 320px;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  background: linear-gradient(to top, rgb(5, 130, 174), #27acd9);
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  a.btn_09 {
    width: 260px;
  }
}

a.btn_09:hover {
  color: #fff;
  opacity: 0.5;
}

.sns {
  padding-bottom: 4em;
}

.btn-social-icon-facebook {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: #4966a0;
  font-size: 25px;
  text-decoration: none;
}

.btn-social-icon-facebook:hover {
  color: #668ad8;
  transition: 0.5s;
}

.btn-social-icon-facebook__square {
  border-radius: 10px;
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 35px;
  line-height: 50px;
  color: #FFF;
  background: #4966a0;
}

.btn-social-icon-facebook__square .fa-facebook {
  position: absolute;
  bottom: -3px;
  right: 6px;
  font-size: 42px;
}

.insta_btn {
  display: inline-block;
  text-align: center; /*中央揃え*/
  color: #2e6ca5; /*文字色*/
  font-size: 20px; /*文字サイズ*/
  text-decoration: none; /*下線消す*/
}

.insta_btn:hover { /*ホバー時*/
  color: #668ad8; /*文字色*/
  transition: 0.5s; /*ゆっくり変化*/
}

.insta_btn .insta { /*アイコンの背景*/
  position: relative; /*相対配置*/
  display: inline-block;
  width: 50px; /*幅*/
  height: 50px; /*高さ*/
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat; /*グラデーション①*/
  overflow: hidden; /*はみ出た部分を隠す*/
  border-radius: 13px; /*角丸に*/
}

.insta_btn .insta:before { /*グラデーションを重ねるため*/
  content: "";
  position: absolute; /*絶対配置*/
  top: 23px; /*ずらす*/
  left: -18px; /*ずらす*/
  width: 60px; /*グラデーションカバーの幅*/
  height: 60px; /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%); /*グラデーション②*/
}

.insta_btn .fa-instagram { /*アイコン*/
  color: #FFF; /*白に*/
  position: relative; /*z-indexを使うため*/
  z-index: 2; /*グラデーションより前に*/
  font-size: 35px; /*アイコンサイズ*/
  line-height: 50px; /*高さと合わせる*/
}

.footer {
  background-color: black;
  padding-top: 3em;
  padding-bottom: 3em;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer a:hover {
  color: rgb(152, 152, 152);
}
.footer ul {
  list-style: none;
  padding-bottom: 0;
}
.footer p {
  font-family: "Dancing Script", cursive;
  font-size: 1.3em;
  padding-top: 3em;
}
.footer .col-4 {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

@media print, screen and (min-width: 990px) {
  .pc-n {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-n {
    display: none;
  }
}
@media print, screen and (min-width: 767px) {
  .pc-n-top {
    display: none;
  }
}
.catch {
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
}

.catch:before, .catch:after {
  border-top: 1px solid;
  content: "";
  width: 50px; /* 線の長さ */
}

.catch:before {
  margin-right: 10px; /* 文字の右隣 */
}

.catch:after {
  margin-left: 10px; /* 文字の左隣 */
}

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