@charset "utf-8";

/* ヘッダーロゴ */
.header {
  background-color: rgba(116, 94, 74, 0.65);
  padding-top: 58px;
}

.header_logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header_logo1 {
  width: 183px;
  height: 186px;
}

.header_logo2 {
  margin-top: 15px;
  width: 267px;
  height: 54px;
}

.header_box_text {
  display: flex;
  justify-content: center;

  margin-top: 54px;
}

.header_text {
  font-size: 20px;
  line-height: 165%;
  color: #24190e;
}

/* インスタグラムリンクロゴ */

.instagram_link_area {
  position: absolute;
  position: fixed;
  top: 35%;
  left: 90%;

  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

.instagram_link_area a:hover {
  opacity: 0.6;
}

.instagram_text {
  writing-mode: vertical-rl;
  font-size: 24px;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #24190e;

  color: #24190e;
}

.instagram_image {
  width: 25px;
  height: 25px;

  writing-mode: vertical-rl;
  color: #54371c;
}

/* メインビジュアル */

.jp_slide_img_wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../image/jp_slide_img.png");
  background-repeat: repeat-x;
  background-size: cover;
  background-position: 0 0;
  animation-name: slide_img;
  animation-duration: 200s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;

  margin-top: 40px;
}

@keyframes slide_img {
  0% {
    background-position: -10000px 0;
  }

  100% {
    background-position: 0 0;
  }
}

.jp_slide_img_overlay {
  position: absolute;
  top: 0%;
  right: 0%;
  left: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 36, 100, 0.4);
}

/* ナビゲーションボタン */

.header_nav_wrapper {
  max-width: 960px;
  width: 100%;
  margin: auto;
}

.header_nav_list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: unset;

  margin-top: 116px;
  padding-bottom: 160px;
}

.header_nav_list li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_nav_item {
  width: 145px;
  height: 137px;
  background-color: #d0c4b9;
  border-radius: 31px 31px 0px 0px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5), inset 0px -1px 5px -4px;
}

.header_nav_item2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header_nav_item2 {
  font-size: 12px;
  /*アニメーションの速度設定*/
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

/*ホバーエフェクト*/
.header_nav_item2:hover {
  /*1.25倍に拡大*/
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.header_nav_item {
  align-items: center;
}

.header_nav_image1 {
  width: 60px;
  height: 71px;

  margin-bottom: 10px;
}

.header_nav_image2 {
  width: 68px;
  height: 56px;

  margin-bottom: 5px;
  margin-top: 20px;
}

.header_nav_image3 {
  width: 36px;
  height: 62px;

  margin-bottom: 3px;
  margin-top: 16px;
}

.header_nav_image4 {
  width: 48px;
  height: 58px;

  margin-bottom: 5px;
  margin-top: 19px;
}

.header_nav_image5 {
  width: 51px;
  height: 54px;

  margin-bottom: 6px;
  margin-top: 21px;
}

.header_nav_image6 {
  width: 30px;
  height: 51px;

  margin-bottom: 7px;
  margin-top: 21px;
}

.nav_button {
  display: none;
}

.header_nav_logo {
  display: none;
}

/* 喫茶ドニエについて */

.history_container {
  display: flex;
  justify-content: center;

  background-color: rgba(116, 94, 74, 0.65);

  padding-bottom: 130px;
}

.history_img1 {
  position: absolute;

  width: 81px;
  height: 92px;
  bottom: 88%;
  left: 90%;
  transform: rotate(10deg);
}

.history_img2 {
  position: absolute;

  width: 76px;
  height: 84px;

  top: 86%;
  right: 93%;
  transform: rotate(-22deg) scale(-1, 1);
}

.history_box {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 2.5;

  width: 716px;
  height: 494px;
  border-radius: 10px 10px 10px 10px;

  background-image: url(../image/rekisi_bgimg.jpg);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  position: relative;
}

.history_box_tittle {
  font-size: 24px;
  letter-spacing: 0.5em;
  display: inline-block;
  margin-left: 68px;
}

.history_box_text {
  -webkit-text-orientation: upright;
  text-orientation: upright;
  letter-spacing: 0.5em;
  display: inline-block;
}

/* サブビジュアル */

.sab_catch {
  background-image: url(../image/sav_catch_img.png);
  width: 100%;
  height: 610px;
  object-fit: cover;
  /* margin: 0 auto; */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #eee;
  /* display: flex;
    align-items: center; */
  /* position: relative; */
  /* position: relative; */
}

.aboutus_button_area {
  display: flex;
  justify-content: flex-end;

  padding-right: 150px;
  padding-top: 435px;
}

.aboutus_link_button {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 47px;
  padding-left: 47px;
  color: #54371c;
  display: inline-block;

  background-color: rgba(246, 241, 236, 0.8);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5), inset 0px -1px 5px -4px;
  margin-top: 60px;
  width: 22em;
  position: relative;

  display: inline-block;
  text-decoration: none;
  transition: color 0.3s;
}

.aboutus_link_button:hover {
  color: rgba(84, 55, 28, 0.6);
}

.aboutus_link_button::after {
  /* くの字の表示設定 */
  position: absolute;
  top: 0;
  bottom: 0;
  right: 45px;
  margin: auto;
  content: "";
  vertical-align: middle;

  /* くの字を山なりに見た時、左側の長さ */
  width: 0.4em;
  /* くの字を山なりに見た時、右側の長さ */
  height: 0.4em;
  /* くの字を山なりに見た時、左側の太さと色 */
  border-top: 1px solid #54371c;
  /* くの字を山なりに見た時、右側の太さと色 */
  border-right: 1px solid #54371c;
  /* くの字の向き */
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* メニュー */
.menu {
  background-color: rgba(155, 128, 103, 0.6);
}

.menu_container_wrapper {
  max-width: 960px;
  width: 100%;
  margin: auto;

  padding-top: 100px;
  padding-bottom: 130px;
}

.m_box {
  display: flex;
  flex-direction: row;
  text-align: center;
}

.m_box+.m_box {
  margin-top: 67px;
}

a {
  text-decoration: none;
}

.link_box {
  display: flex;
  justify-content: center;
  width: 80%;
}

.menu_box_image {
  width: 442px;
  height: 268px;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #faf2eb;
}

.menu_box_tittle {
  width: 442px;
  height: 92px;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #dbc1a8;

  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5), inset 0px -1px 5px -4px;
}

.menu_image1 {
  width: 292px;
  height: 187px;

  transition-duration: 0.4s;
}

.menu_image1:hover {
  transform: scale(1.1);
}

.menu_image2 {
  width: 265px;
  height: 174px;

  transition-duration: 0.4s;
}

.menu_image2:hover {
  transform: scale(1.1);
}

.menu_image_g {
  transition-duration: 0.4s;
}

.menu_image_g:hover {
  transform: scale(1.1);
}

.menu_image3 {
  width: 103px;
  height: 174px;
}

.menu_image4 {
  width: 135px;
  height: 135px;
}

.menu_image5 {
  width: 174px;
  height: 222px;
}

.menu_image6 {
  width: 152px;
  height: 104px;
  margin-bottom: 41px;
}

.menu_tittle {
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* お席のご案内 */

.seatinformation {
  background-color: rgba(116, 94, 74, 0.65);
}

.seatinformation_wrapper {
  max-width: 960px;
  width: 100%;
  margin: auto;
  padding-bottom: 100px;
}

.seatinformation_box {
  display: flex;
  justify-content: space-between;

  margin-top: 100px;
}

.seatinformation_box+.seatinformation_box {
  margin-top: 140px;
}

.seatinformation_box_image {
  width: 45%;
}

.seatinformation_image {
  width: 406px;
  height: 293px;
}

.seatinformation_box_text {
  width: 55%;

  margin: auto;
}

.seatinformation_tittle {
  font-size: 24px;
  margin-bottom: 18px;
  color: #54371c;
}

.seatinformation_text {
  margin-bottom: 28px;
  color: #54371c;

  line-height: 170%;
}

.seatinformation_button {
  /* position: relative; */
  /* padding-left: 25px; */
}

.seatinformation_button {
  /* width: 30.7em; */
  position: relative;
  display: inline-block;
  color: #54371c;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1em;
  padding-left: 315px;
}

.seatinformation_button_area {
  /* border-bottom: solid 1px #54371C; */

  padding-bottom: 5px;
  position: relative;
}

/* ラインが引かれる */
.seatinformation_button_area::before {
  background: #54371c;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.seatinformation_button_area:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* 丸く矢印 */
.seatinformation_button::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #54371c;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 101%;
  margin-top: -9px;
}

.seatinformation_button::after {
  /* くの字の表示設定 */
  position: absolute;
  top: 0;
  bottom: 0;
  /* right: 38px; */
  left: 101.7%;
  margin: auto;
  content: "";
  vertical-align: middle;

  /* くの字を山なりに見た時、左側の長さ */
  width: 0.4em;
  /* くの字を山なりに見た時、右側の長さ */
  height: 0.4em;
  /* くの字を山なりに見た時、左側の太さと色 */
  border-top: 1px solid #f5f5f5;
  /* くの字を山なりに見た時、右側の太さと色 */
  border-right: 1px solid #f5f5f5;
  /* くの字の向き */
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* 最新の情報について */
.news {
  background-color: rgba(231, 220, 211, 0.6);
}

.news_box_text {
  display: flex;
  justify-content: center;
}

.news_text {
  margin-top: 100px;
  line-height: 170%;
}

.news_box_item {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* 押下 */
.news_item {
  display: flex;
  justify-content: center;

  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5), inset 0px -1px 5px -4px; // ボタンの影
}

.news_item:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.news_item_tittle {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 58px;
  padding-left: 58px;

  background-color: #f5f5f5;
  /* background-color: rgba(255, 255, 255, 0.45); */
  border: 1px solid #54371c;
}

.news_item_text {
  font-size: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;

  background-color: #54371c;
  border: 1px solid #54371c;
  color: #f5f5f5;
}

.instagram_wrapper {
  max-width: 960px;
  width: 100%;
  margin: auto;
}

.instagram_container {
  display: flex;
  justify-content: center;

  padding-top: 65px;

  /* 余白設定 */
  gap: 20px;
}

@media screen and (max-width: 1200px) {
  .instagram_container {
    /* 縦に並べる */
    /* flex-direction: column; */
    align-items: center;
  }

  .instagram_box {
    width: 100%;
  }
}

.instagram_button {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 58px;
  padding-left: 58px;

  display: inline-block;
  border: 1px solid #54371c;
  background-color: #f5f5f5;
  /* background-color: rgba(255, 255, 255, 0.45); */
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5), inset 0px -1px 5px -4px;
  margin-top: 40px;

  display: inline-block;
  text-decoration: none;
  transition: color 0.3s;
}

.instagram_button:hover {
  color: rgba(84, 55, 28, 0.6);
}

.instagram_button_area {
  display: flex;
  justify-content: center;

  background-color: rgba(231, 220, 211, 0.6);
  padding-bottom: 160px;
}

/* 写真４枚 */
.news_pic_box {
  display: flex;
}

.news_pic {
  width: 25%;
}

/* sp化 */
@media screen and (max-width: 768px) {

  /* SPヘッダーロゴ */
  .header {
    padding-top: 32px;
  }

  .header_logo1 {
    width: 120px;
    height: 120px;
  }

  .header_logo2 {
    margin-top: 12px;
    width: 175px;
    height: 34px;
  }

  .header_box_text {
    margin-top: 35px;
  }

  .header_text {
    font-size: 12px;
    line-height: 165%;
    color: #24190e;
    width: 58%;
  }

  /* SPインスタグラムリンクロゴ */

  .instagram_link_area {
    position: absolute;
    position: fixed;
    top: 18%;
    left: 88%;
  }

  .instagram_text {
    padding-bottom: 0.8em;
    margin-bottom: 0.8em;
    font-size: 16px;
  }

  .instagram_image {
    width: 15px;
    height: 15px;
  }

  /* SPメインビジュアル */

  .jp_slide_img_wrapper {
    height: 60vh;
    background-image: url("../image/sp_jp_slide_img.png");

    margin-top: 20px;
  }

  /* SPナビゲーションボタン */
  .header_nav_list {
    list-style: none;
    padding: unset;
    margin-top: 205px;
    padding-bottom: 28px;
  }

  .header_nav_list li {
    width: 174px;
    height: 60px;
    background-color: transparent;
    border-radius: none;
    box-shadow: none;
    display: flex;
    justify-content: start;
  }

  .header_nav_item2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 12px;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;

    font-size: 10px;
    color: #644229;
  }

  .header_nav_wrapper ul {
    position: absolute;
    z-index: 11;
    top: 80%;
    left: 0%;
    background-color: #d0c4b9;
    width: 100%;
    height: 110%;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    transform: translateY(100%);
    background-image: url(../image/bgimg_l.png);
    opacity: 0;
    visibility: hidden;
  }

  .header_nav_wrapper ul::after {
    background-color: rgba(208, 196, 185, 0.65);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
  }

  .header_nav_wrapper ul a {
    position: relative;
    z-index: 12;
  }

  /* ハンバーガーメニュー */

  .nav_open .header_nav_wrapper ul {
    transform: translateY(-100%);
    opacity: 1;
    visibility: visible;
  }

  .nav_button_open {
    display: block;
    width: 77px;
    height: 24px;
    background-image: url(../image/nav-open.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* position: fixed; */
    position: absolute;
    left: 41%;
    top: 112%;
    /* margin-top: 38px; */
    /* margin-left: 38px; */
    padding-top: 32px;
  }

  .nav_open.nav_button_open {
    position: absolute;
    top: 134%;
    left: 43%;
    z-index: 12;
  }

  .nav_button_close {
    display: block;
    background-image: url(../image/nav-close.svg);
    bottom: 140px;
    top: auto;
    left: 40%;
    bottom: 10%;
    z-index: 999;
    padding-top: 32px;
  }

  .nav_open.nav_button_close {
    position: relative;
    top: 134%;
    left: 43%;
    z-index: 12;
  }

  .header_nav_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 110px;
    padding-left: 43px;

    transition: 0.3s;
  }

  .header_nav_logo:hover {
    opacity: 0.6;
  }

  .header_nav_logo1 {
    width: 59px;
    height: 59px;
  }

  .header_nav_logo2 {
    width: 85px;
    height: 17px;
    margin-top: 6px;
  }

  .header_instagram_icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(19%) saturate(1347%) hue-rotate(343deg) brightness(97%) contrast(86%);
    margin-top: 25px;
    margin-left: 67px;
    transition: 0.3s;
  }

  .header_instagram_icon:hover {
    opacity: 0.6;
  }

  .header_nav_image1 {
    width: 31px;
    height: 37px;
    margin-right: 27px;
  }

  .header_nav_image2 {
    width: 33px;
    height: 27px;
    margin-right: 25px;
  }

  .header_nav_image3 {
    width: 19px;
    height: 33px;
    margin-right: 33px;
    margin-left: 5px;
  }

  .header_nav_image4 {
    width: 26px;
    height: 31px;
    margin-right: 29px;
    margin-left: 2px;
  }

  .header_nav_image5 {
    width: 26px;
    height: 28px;
    margin-right: 29px;
    margin-left: 2px;
  }

  .header_nav_image6 {
    width: 18px;
    height: 31px;
    margin-right: 34px;
    margin-left: 4px;
  }

  /* SP喫茶ドニエについて */

  .history_container {
    padding-top: 136px;
    padding-bottom: 80px;
  }

  .history_img1 {
    width: 32px;
    height: 36px;
    bottom: 88%;
    left: 90%;
  }

  .history_img2 {
    width: 36px;
    height: 40px;
    top: 86%;
    right: 93%;
  }

  .history_box {
    line-height: 2;
    width: 320px;
    height: 218px;

    background-image: url(../image/sp_rekisi_bgimg.jpg);
  }

  .history_box_tittle {
    font-size: 12px;
    margin-left: 25px;
  }

  .history_box_text {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  /* SPサブビジュアル */

  .sab_catch {
    background-image: url(../image/sp_sav_catch_img.png);
    height: 233px;
  }

  .aboutus_button_area {
    display: flex;
    align-items: center;
    margin: auto;
    padding-right: 0px;
    padding-top: 163px;
    padding-right: 61px;
  }

  .aboutus_link_button {
    font-size: 12px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 20px;
    padding-left: 20px;

    margin-top: 0px;
    width: 20em;
  }

  .aboutus_link_button::after {
    /* くの字の表示設定 */
    right: 19px;
  }

  /* SPメニュー */

  .menu_container_wrapper {
    max-width: 0px;
    width: 100%;
    margin: auto;

    padding-top: 0px;
    padding-bottom: 60px;
  }

  .m_box {
    display: flex;
    flex-direction: column;
  }

  .m_box+.m_box {
    margin-top: 0px;
  }

  .link_box {
    margin-top: 50px;
  }

  .menu_box_image {
    width: 320px;
    height: 194px;
  }

  .menu_box_tittle {
    width: 320px;
    height: 56px;
  }

  .menu_image1 {
    width: 194px;
    height: 126px;
  }

  .menu_image2 {
    width: 191px;
    height: 125px;
  }

  .menu_image3 {
    width: 74px;
    height: 126px;
  }

  .menu_image4 {
    width: 97px;
    height: 97px;
  }

  .menu_image5 {
    width: 126px;
    height: 160px;
  }

  .menu_image6 {
    width: 102px;
    height: 70px;
  }

  .menu_tittle {
    font-size: 16px;
  }

  /* SPお席のご案内 */

  .seatinformation {
    background-color: rgba(116, 94, 74, 0.65);
  }

  .seatinformation_wrapper {
    max-width: 280px;
    width: 100%;
    margin: auto;
    padding-bottom: 60px;
  }

  .s_tittle_text1 {
    font-size: 21px;
    font-weight: bold;

    border-top: solid 2px #f5f5f5;
    border-bottom: solid 2px #f5f5f5;
  }

  .s_tittle_text2 {
    font-size: 16px;
    margin-top: 2px;
  }

  .seatinformation_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
  }

  .seatinformation_box+.seatinformation_box {
    margin-top: 90px;
  }

  .seatinformation_box_image {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .seatinformation_image {
    width: 280px;
    height: 202px;
  }

  .seatinformation_box_text {
    width: 100%;
    margin-top: 30px;
  }

  .seatinformation_tittle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .seatinformation_text {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .seatinformation_button {
    position: relative;
    padding-left: 25px;
  }

  .seatinformation_button {
    padding-left: 128px;
  }

  .seatinformation_button_area {
    font-size: 12px;
  }

  .seatinformation_button::before {
    left: 100%;
  }

  .seatinformation_button::after {
    /* くの字の表示設定 */
    right: 287px;
  }

  /* SP最新の情報について */

  .news_text {
    font-size: 12px;
    margin-top: 60px;
  }

  .news_box_item {
    margin-top: 0px;
  }

  .news_item_tittle {
    font-size: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-right: 34px;
    padding-left: 34px;
  }

  .news_item_text {
    font-size: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .news_item {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }

  .instagram_wrapper {
    max-width: 280px;
    width: 100%;
    margin: auto;
  }


  .instagram_container {
    /* 縦に並べる */
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
  }

  .instagram_box {
    width: 100%;
  }

  /* .instagram_container {
    display: flex;
    flex-direction: column;
    padding-top: 40px;
  }

  .instagram-media {
    width: 25%;
  } */

  .instagram_button {
    font-size: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-right: 56px;
    padding-left: 56px;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5), inset 0px -1px 5px -4px;
    margin-top: 40px;
  }

  .instagram_button_area {
    padding-bottom: 100px;
  }

  /* 写真４枚 */
  .news_pic_box {
    display: flex;
  }

  .news_pic {
    width: 25%;
  }

  /* 終わり */
}