* {
  margin: 0;
  padding: 0;
}
body {
  background-image: url(../img/background.jpg);
  background-repeat: repeat;
  background-size: 70%;
  font-family: YuMincho, 'Yu Mincho', 'Hiragino Mincho ProN', 'serif';
  font-size: 14px;
  color: #222;
}
@media screen and (min-width: 960px) {
  body {
    font-size: 16px;
  }
}
ul {
  padding-left: 0;
  list-style: none;
}
li {
  font-weight: 500;
}
a {
  text-decoration: none;
  color: inherit;
  display: block;
  font-weight: bold;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
p {
  line-height: 2;
  font-weight: 500;
}
h2 {
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
h3 {
  line-height: 1.5;
  font-weight: bold;
}
dt,
dd {
  font-weight: 500;
}
.wrapper {
  padding: 0 8%;
}
@media screen and (min-width: 960px) {
  .wrapper {
    padding: 0 10%;
  }
}
/*フェードインの設定*/
.fadein {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 500ms;
}
/* 画面内に入った状態 */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/* ヘッダー */
.header {
  background-color: #231f20;
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media screen and (min-width: 960px) {
  .header {
    height: 90px;
  }
}
.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  position: relative;
}
@media screen and (min-width: 960px) {
  .header__inner {
    justify-content: space-between;
    padding: 0 8%;
  }
}
.header__title {
  width: 120px;
}
@media screen and (min-width: 960px) {
  .header__title {
    width: 12%;
  }
}
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}
/*ヘッダーのナビ部分*/
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #231f20;
  transition: ease 0.4s;
}
@media screen and (min-width: 960px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    max-width: 80%;
  }
}
@media screen and (min-width: 960px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}
.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}
@media screen and (min-width: 960px) {
  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}
.nav-items__item a {
  color: #fff;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 65px;
}
.nav-items__item:last-child a {
  border: 1px solid #fff;
  padding: 10px 5px;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .nav-items__item a {
    margin-bottom: 0;
    font-size: clamp(13px, 1vw, 20px);
  }
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 30px;
  height: 100%;
  position: absolute;
  right: 0;
  margin-right: 20px;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: ease 0.4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}
/*フッターメニュー*/
.footer__inner {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  height: 350px;
  background-color: #231f20;
}
@media screen and (min-width: 960px) {
  .footer__inner {
    flex-direction: row;
  }
}
.footer-logo {
  width: 30%;
  margin-top: 25px;
}
.footer-menu {
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-menu li {
  white-space: nowrap;
  text-align: center;
  padding: 20px 0;
  color: #dec062;
}
.footer-menu li:nth-child(1) {
  width: 25%;
}
.footer-menu li:nth-child(2) {
  width: 25%;
}
.footer-menu li:nth-child(3) {
  width: 25%;
}
.footer-menu li:nth-child(4) {
  width: 25%;
}
.footer-menu li:nth-child(5) {
  width: 50%;
}
.footer-menu li:nth-child(6) {
  width: 50%;
}
.copy {
  margin: 0;
  background-color: #dec062;
  width: 100%;
  height: 40px;
  padding-bottom: 55px;
}
@media screen and (min-width: 960px) {
  .copy {
    padding-bottom: 0;
  }
}
.copy p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  padding-top: 6px;
}
/*追従メニュー*/
/*メニューをページ下部に固定*/
#sp-fixed-menu {
  position: fixed;
  width: 100%;
  bottom: 0px;
  font-size: 0;
  z-index: 99;
}
/*メニューを横並びにする*/
#sp-fixed-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
#sp-fixed-menu li {
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 14px;
  border-right: 1px solid #fff;
  width: 100%;
}
#sp-fixed-menu li:nth-child(1) {
  background: #892323;
  width: 40%;
}
#sp-fixed-menu li:nth-child(2) {
  background: #231f20;
  width: 40%;
}
#sp-fixed-menu li:nth-child(3) {
  background-color: #dec062;
  width: 20%;
}
.fa-instagram {
  margin-left: 3px;
}
/*ボタンを調整*/
#sp-fixed-menu li a {
  color: #fff;
  text-align: center;
  display: block;
  padding: 20px;
}
.for-pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .for-pc {
    display: block;
  }
  .for-sp {
    display: none;
  }
  .fa-instagram {
    margin: 0;
  }
}
/*パソコン時のメニュー*/
#pc-fixed-menu {
  position: fixed;
  bottom: 4vh;
  right: 0;
  z-index: 99;
  font-size: 0;
  width: 70px;
}
#pc-fixed-menu li a {
  writing-mode: vertical-rl;
  font-size: 20px;
  padding: 25px 25px;
  color: #fff;
}
#pc-fixed-menu li:nth-child(1) a {
  background-color: #892323;
}
#pc-fixed-menu li:nth-child(2) a {
  background-color: #231f20;
}
#pc-fixed-menu li:nth-child(3) a {
  background-color: #dec062;
}
main {
  margin: 70px auto 0;
}
@media screen and (min-width: 960px) {
  main {
    margin-top: 90px;
  }
}
/*index.htmlここから*/
.slider {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-top: -20px;
}
@media screen and (min-width: 960px) {
  .slider {
    height: 600px;
  }
}
.slider-item1,
.slider-item2,
.slider-item3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.slider-item1 {
  background-image: url('../img/slide1.jpg');
  background-position: center 80%;
  animation: slide-animation-01 24s infinite;
}
.slider-item2 {
  background-image: url('../img/slide2.jpg');
  background-position: center 70%;
  animation: slide-animation-02 24s infinite;
}
.slider-item3 {
  background-image: url('../img/slide3.jpg');
  background-position: center 40%;
  animation: slide-animation-03 24s infinite;
}
@media screen and (min-width: 485px) {
  .slider-item1 {
    background-position: center 85%;
  }
}
@keyframes slide-animation-01 {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*セクション・こだわり*/
.commitment {
  background-color: #1e1e1e;
  height: auto;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 50px 0;
}
@media screen and (min-width: 960px) {
  .commitment {
    padding: 100px 0;
  }
}
.commitment .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.commitment h2 {
  color: #fff;
  text-align: center;
}
.commitment p {
  color: #fff;
  margin-top: 40px;
}
.btn a {
  display: inline-block;
  background-color: #dec062;
  padding: 20px 60px;
  margin-top: 50px;
}
.btn a:hover {
  background-color: #977b22;
  color: #fff;
}
/*セクション・おすすめメニュー*/
.r-menu {
  display: block;
  padding-top: 50px;
  padding-bottom: 50px;
}
/*ランチ復活したらここから削除*/
.r-menu2 {
  display: none;
}
/*ここまで削除*/
@media screen and (min-width: 960px) {
  .r-menu {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  /*ランチ復活したら削除*/
  .r-menu1 {
    width: 40%;
    margin: 0 auto;
  }
  /*ランチ復活したらコメント解除
  .r-menu h2 {
    margin-bottom: 15px;
  }
	*/
}
.r-menu__flex {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 485px) {
  .r-menu__flex {
    flex-direction: row;
    gap: 10%;
  }
  /*ランチ復活したらコメント解除
  .r-menu1 {
    flex: 1;
  }
  .r-menu2 {
    flex: 1;
  }
	*/
}
.r-menu img {
  width: 100%;
  margin: 35px 0 25px 0;
}
.r-menu p {
  font-size: 14px;
  line-height: 1.8;
}
.r-menu ul {
  margin-top: 10px;
}
.r-menu li {
  margin-top: 10px;
}
.r-menu .price {
  font-size: 16px;
  margin-top: 10px;
  text-align: right;
}
.price h3 {
  text-align: left;
}
.lunchi1 {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.lunchi2 {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.r-menu2 .price p {
  font-size: 1em;
}
.r-menu .btn {
  text-align: center;
}
/*セクション・ニュース*/
.news {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fff;
}
@media screen and (min-width: 960px) {
  .news {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.news-list {
  width: 100%;
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .news-list {
    width: 70%;
  }
}
.news-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5%;
  border-bottom: 1px dashed #222;
  padding: 0 20px 20px 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0);
}
.news-list time {
  width: 25%;
}
.news-list .news-title {
  width: 70%;
  margin-top: -7px;
  margin-bottom: -7px;
}
@media screen and (min-width: 485px) {
  .news-list time {
    width: 15%;
  }
  .news-list .news-title {
    width: 75%;
  }
}
@media screen and (min-width: 960px) {
  .news-list time {
    width: 10%;
  }
  .news-list .news-title {
    width: 80%;
  }
}
/*セクション・店舗情報*/
.store-info {
  display: block;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 960px) {
  .store-info {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.store-info img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: 0 75%;
  margin-top: 50px;
}
.store-info h3 {
  margin-top: 20px;
}
.store-date {
  margin-top: 10px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}
.store-date dt {
  width: 20%;
  margin-top: 20px;
}
.store-date dd {
  width: 80%;
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .store-date dt {
    width: 10%;
  }
  .store-date dd {
    width: 90%;
  }
}
.store-info iframe {
  margin-top: 30px;
}
.store-info .btn {
  text-align: center;
}
/*commitmentページここから*/
.title {
  padding-bottom: 20px;
  border-bottom: 2px solid #222;
}
.commit {
  padding-top: 100px;
  padding-bottom: 50px;
  font-size: 16px;
  text-align: justify;
}
.commit1 {
  margin-top: 70px;
  border-top: 1px solid rgba(0, 0, 0, 0); /*追加*/
  border-bottom: 1px solid rgba(0, 0, 0, 0); /*追加*/
}
.commit1 figure {
  float: left;
  width: 50%;
  margin: 0 15px 15px 0;
}
.commit1 p {
  margin-top: -6.5px;
  margin-bottom: -6.5;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 485px) {
  .commit1 {
    display: flex;
    align-items: center;
    gap: 5%;
  }
  .commit1 figure {
    float: none;
    max-width: 500px;
    margin: 0;
  }
  .commit1 p {
    width: 70%;
    font-size: 16px;
    line-height: 2;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.commit2 {
  margin-top: 70px;
  border-top: 1px solid rgba(0, 0, 0, 0); /*追加*/
  border-bottom: 1px solid rgba(0, 0, 0, 0); /*追加*/
}
.commit2 figure {
  float: right;
  width: 50%;
  margin: 0 0 15px 15px;
}
.commit2 p {
  margin-top: -6.5px;
  margin-bottom: -6.5px;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 485px) {
  .commit2 {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 5%;
  }
  .commit2 figure {
    float: none;
    max-width: 500px;
    margin: 0;
  }
  .commit2 p {
    width: 70%;
    font-size: 16px;
    line-height: 2;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.commit3 {
  margin-top: 70px;
}
.commit3 p {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 485px) {
  .commit3 p {
    font-size: 16px;
    line-height: 2;
  }
}
/*メニューページ*/

/*ランチ復活したら削除*/
#lunch {
  display: none;
}
.menu {
  padding-top: 100px;
  padding-bottom: 50px;
}
.menu-jamp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5%;
}
.menu-jamp li {
  margin-top: 30px;
}
.menu-container {
  display: flex;
  flex-direction: column;
}
.menu-content-course {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .menu-content-course {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
  }
  .kiwami {
    width: 45%;
  }
  .course {
    width: 45%;
  }
  .course.shrink {
    width: 100%;
  }
}
.kiwami {
  display: flex;
  gap: 3%;
  margin-top: 30px;
  margin-bottom: 15px;
}
.left {
  width: 50%;
}
.left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.right {
  width: 50%;
}
.right h4 {
  font-size: 18px;
}
.right ul {
  margin-top: 20px;
}
.right li {
  padding-top: 8px;
}
.right p {
  margin-top: 10px;
  font-size: 16px;
  text-align: right;
}
.course {
  margin-top: 10px;
  padding-top: 30px;
  border-top: 1px dashed #222;
}
.rsv {
  border-top: none;
}
.course h4 {
  font-size: 18px;
}
.course ul {
  margin-top: 20px;
}
.course li {
  padding-top: 8px;
}
.course p {
  margin-top: 10px;
  font-size: 16px;
  text-align: right;
}
.discount {
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .menu-content-course .course:nth-of-type(2) {
    border: none;
  }
  .menu-content-course .course:nth-of-type(n + 3):nth-of-type(-n + 4) {
    margin-top: 40px;
  }
}
.menu-content-lunch {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media screen and (min-width: 485px) {
  .menu-content-lunch {
    flex-direction: row;
    justify-content: space-between;
  }
}
.lunch-menu {
  display: flex;
  gap: 3%;
  margin-top: 30px;
  align-items: flex-start;
}
@media screen and (min-width: 485px) {
  .lunch-menu {
    width: 45%;
  }
}
.menu-box {
  margin-top: 70px;
}
.menu-category {
  display: flex;
  align-items: center;
  gap: 3%;
  padding-bottom: 5px;
  border-bottom: 2px solid #222;
}
/*コースのみの営業が修了したら消す↓*/
.attention {
  border-bottom: 2px solid #ff0000;
}
.attention-text {
  margin-top: 20px;
  font-weight: bold;
}
#attention {
  color: #ff0000;
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
}
/*コースのみの営業が修了したら消す↑*/
.menu-content {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (min-width: 485px) {
  .menu-content {
    align-items: flex-end;
  }
}
@media screen and (min-width: 960px) {
  .menu-content {
    align-items: flex-start;
  }
}
.menu-content img {
  object-fit: cover;
}
.menu-content h4 {
  font-size: 20px;
  margin-top: 10px;
}
.menu-list {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 100%;
}
.menu-list dt {
  width: 65%;
  margin-top: 15px;
  padding-bottom: 3px;
  border-bottom: 1px dashed #222;
  line-height: 1.8;
}
.menu-list dd {
  width: 35%;
  text-align: right;
  margin-top: 15px;
  padding-bottom: 3px;
  border-bottom: 1px dashed #222;
  line-height: 1.8;
  white-space: nowrap;
}
@media screen and (min-width: 960px) {
  .menu-list dt {
    width: 32%;
  }
  .menu-list dt:nth-of-type(2n) {
    margin-left: 5%;
  }
  .menu-list dd {
    width: 15%;
  }
}
.menu-list-long {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 100%;
}
.menu-list-long dt {
  width: 45%;
  margin-top: 15px;
  padding-bottom: 3px;
  border-bottom: 1px dashed #222;
  line-height: 1.8;
}
.menu-list-long dd {
  width: 55%;
  text-align: right;
  margin-top: 15px;
  padding-bottom: 3px;
  border-bottom: 1px dashed #222;
  line-height: 1.8;
  white-space: nowrap;
}
@media screen and (min-width: 960px) {
  .menu-list-long dt {
    width: 30%;
  }
  .menu-list-long dt:nth-of-type(2n) {
    margin-left: 5%;
  }
  .menu-list-long dd {
    width: 17%;
  }
}
.menu-photo {
  display: flex;
  width: 100%;
  height: 70px;
  gap: 2%;
  margin-top: 30px;
}
@media screen and (min-width: 485px) {
  .menu-photo {
    height: 20vh;
  }
  .menu-photo img:nth-of-type(1) {
    object-position: 25% 35%;
  }
}
.menu-photo img {
  width: 49%;
  object-fit: cover;
}
/*ニュースページここから*/
.news-summary {
  padding-top: 100px;
  padding-bottom: 50px;
}
.accordion-area {
  width: 96%;
  max-width: 900px;
  margin: 70px auto 0;
}
.accordion-area li {
  margin: 30px 0;
}
.news-section {
  border: 1px solid #ccc;
  background-color: #fff;
}
/*アコーディオンタイトル*/
.news-s-title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}
/*アイコンの＋と×*/
.news-s-title::before,
.news-s-title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;
}
.news-s-title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.news-s-title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.news-s-title.close::before {
  transform: rotate(45deg);
}
.news-s-title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #d9d9d9;
  margin: 0 3% 3% 3%;
  padding: 3%;
}
/*店舗情報ページ*/
.store-photo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  width: 100%;
}
.store-photo img {
  height: auto;
  width: 40%;
  margin: 0;
  padding: 0;
}
.access iframe {
  margin-top: 50px;
}
.car {
  margin-top: 30px;
}
.train {
  margin-top: 30px;
}
.reservation {
  padding-top: 100px;
  padding-bottom: 50px;
  text-align: center;
}
.reservation h3 {
  font-size: 35px;
  margin: 20px 0 0;
}
.reservation span {
  font-size: 0.5em;
}
.reservation-content {
  margin-top: 30px;
}
.flower {
  background-color: #ffffff;
  margin: 1em;
  padding-top: 2em;
  padding-bottom: 2em;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .flower {
    width: 30%;
    margin: 0 auto;
    padding-left: 2em;
    padding-right: 2em;
  }
}
.flower-image__wrap {
  display: flex;
  justify-content: space-between;
  gap: 0.5em;
  width: 100%;
  margin-top: 1em;
}
.flower-image__wrap img {
  width: calc(100% / 3 - 0.5em);
}
.flower-price {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 1rem;
}

.flower-price dt {
  width: 60%;
  margin-top: 0.5em;
}
.flower-price dd {
  width: 40%;
  margin-top: 0.5em;
}

.flower-price dd {
  text-align: right;
}
.flower p {
  text-align: center;
  font-size: 1.25em;
  margin-top: 1em;
}
