@charset "UTF-8";
/* CSS Document */
/*ここからトップ画像のCSS*/
.slide-image {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}
.slide-image:nth-child(1) {
  background-image: url("../images/home_img.jpg");
  animation-delay: -2s;
}
.slide-image:nth-child(2) {
  background-image: url("../images/home_img2.jpg");
  animation-delay: 6s;
}
.slide-image:nth-child(3) {
  background-image: url("../images/home_img3.jpg");
  animation-delay: 14s;
}
@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;
  }
}
@media(min-width: 690px) {
  .slide-image {
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slider-1 24s linear infinite;
  }
  .slide-image:nth-child(1) {
    background-image: url("../images/home_img_pc.jpg");
    animation-delay: -2s;
  }
  .slide-image:nth-child(2) {
    background-image: url("../images/home_img2_pc.jpg");
    animation-delay: 6s;
  }
  .slide-image:nth-child(3) {
    background-image: url("../images/home_img3_pc.jpg");
    animation-delay: 14s;
  }
}
/*ここから和洋酒場たむ家についてのCSS*/
.about {
  position: relative;
}
.about h1 {
  padding-top: 350px;
  padding-left: 40px;
  font-size: 1.6rem;
}
.about h1 span {
  font-size: 2.8rem;
  color: #E5653E;
}
.about img {
  position: absolute;
  z-index: 3;
  width: 175px;
  top: 260px;
  right: 20px;
  transform: rotate(10deg)
}
.about p {
  padding: 30px 40px 0;
  z-index: 2;
}
.p2 {
  position: absolute;
  top: 520px;
}
@media(min-width: 690px) {
  .about {
    max-width: 1060px;
    padding-top: 80px;
    margin: 0 auto;
  }
  .about h1 {
    position: relative;
    padding-top: 0;
    padding-left: 30px;
    font-size: 2.4rem;
    line-height: 32px;
  }
  .about h1 span {
    font-size: 3.6rem;
  }
  .about img {
    width: 140px;
    top: 30px;
    left: 270px;
  }
  .about p {
    position: relative;
    z-index: 3;
    top: -140px;
    left: calc(50% - 130px);
    width: 63%;
    height: auto;
    font-size: 1.5rem;
  }
  .p2 {
    bottom: 0;
  }
}
/*ここからたむ家のメニューのCSS*/
.menu {
  position: relative;
  padding: 540px 0 60px;
}
.drink img {
  position: absolute;
  width: 265px;
  height: auto;
  top: 110px;
}
.food img {
  position: absolute;
  width: 245px;
  height: auto;
  top: 300px;
  right: 0;
}
.menu h2 {
  text-align: center;
  padding: 20px;
}
.menu p {
  padding: 10px 40px;
}
.menu_srider {
  padding: 40px 0;
}
.menu_srider p {
  padding: 30px 0;
}
.menu_srider ul {
  list-style: none;
}
.menu_srider a {
  text-decoration: none;
}
.tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tab li a {
  display: block;
  text-align: center;
  line-height: 40px;
  background-color: #fff;
  border: solid 1px #F2F0E7;
  font-size: 1.6rem;
  font-weight: 500;
  width: 78px;
  height: 40px;
  color: #5B5B5B;
}
.tab li.active a {
  background: #E5653E;
  border: solid 1px #E5653E;
  color: #fff;
}
.tab li.active a:hover {
  background: #E5653E;
}
.area {
  display: none;
  opacity: 0;
  width: 312px;
  margin: 0 auto;
  border-top: solid 2px #E5653E;
  text-align: center;
}
.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.area img {
  margin-top: 30px;
  width: 310px;
  height: 260px;
  border-radius: 30px;
}
.tab_img_pc {
  display: none;
}
.area p {
  text-align: left;
}
.menu_btn {
  position: relative;
  background-color: #fff;
  border: solid 2px #E5653E;
  border-radius: 40px;
  padding: 7px 15px 7px 35px;
  line-height: 35px;
  color: #E5653E;
  font-size: 1.8rem;
  font-weight: 400;
}
.menu_btn::before {
  position: absolute;
  display: inline-block;
  content: '';
  top: 50%;
  left: 15px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #E5653E;
  border-right: 2px solid #E5653E;
  transform: translateY(-50%)rotate(45deg);
}
.menu_btn:hover {
  background-color: #E5653E;
  border: solid 2px #E5653E;
  color: #fff;
}
.menu_btn:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media(min-width: 690px) {
  .menu {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 0 60px;
  }
  .drink img {
    width: 25%;
    z-index: 10;
    max-width: 400px;
    top: -90px;
  }
  .food img {
    width: 23%;
    max-width: 330px;
    top: 300px;
  }
  .menu h2 {
    text-align: center;
    padding: 0;
    margin-bottom: 30px;
    font-size: 3.0rem;
  }
  .menu p {
    width: 60%;
    max-width: 640px;
    margin: 0 auto;
  }
  .menu_srider {
    padding: 30px 0;
  }
  .menu_srider p {
    padding: 30px 0;
  }
  .tab li a {
    line-height: 50px;
    font-size: 2.0rem;
    width: 135px;
    height: 50px;
  }
  .tab li a:hover {
    background-color: #F7D1C6;
  }
  .area {
    width: 540px;
    border-top: solid 3px #E5653E;
  }
  .area img {
    width: 540px;
    height: 400px;
  }
  .tab_img_sp {
    display: none;
  }
  .tab_img_pc {
    display: block;
  }
  .area p {
    width: 100%;
  }
}
/*ここから店内紹介写真のCSS*/
.shop {
  position: relative;
  background-image: url("../images/brick.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  height: 967px;
  padding: 74px 0;
  overflow-x: hidden;
}
.shop ul {
  list-style: none;
}
.shop li img {
  position: absolute;
  width: 92%;
  max-width: 320px;
  height: auto;
  border: solid 8px #fff;
  border-radius: 30px;
}
.room1 {
  left: calc(50% - 230px);
}
.room2 {
  top: 352px;
  right: calc(50% - 220px);
}
.room3 {
  top: 630px;
  left: calc(50% - 230px);
}
.ie_logo {
  position: absolute;
  width: 175px;
  height: auto;
  bottom: 40px;
  right: 23px;
  transform: rotate(10deg)
}
@media(min-width: 690px) {
  .shop {
    background-image: url("../images/brick_pc.jpg");
    width: 90%;
    max-width: 1100px;
    height: auto;
    padding: 60px 0;
    margin: 0 auto;
  }
  .shop ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .shop ul li {
    margin-left: 30px;
  }
  .shop li img {
    position: static;
    margin-bottom: 20px;
  }
  .room1 {
    left: 0;
  }
  .room2 {
    top: 0;
    right: 0;
  }
  .room3 {
    top: 0;
    left: 0;
  }
  .ie_logo {
    width: 175px;
    height: auto;
    top: 194px;
    right: 40px;
    transform: rotate(10deg)
  }
}
/*ここからアピールポイントのCSS*/
.info {
  padding: 100px 0 50px;
}
.info h2 {
  color: #E5653E;
  margin-bottom: 20px;
  text-align: center;
}
.info h2:before {
  content: url("../images/left.png");
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.5);
}
.info h2:after {
  content: url("../images/right.png");
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.5);
}
.info ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.info ul li {
  list-style: none;
  margin-bottom: 60px;
}
.info img {
  width: 320px;
  height: auto;
}
.bg {
  width: 220px;
  height: 276px;
  background-color: #fff;
  margin: 0 auto;
}
.info1 {
  position: relative;
  width: 337px;
  height: 500px;
}
.info1 p {
  position: absolute;
  padding: 0 20px;
  z-index: 2;
  top: 100px;
}
.info1 img {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 13px;
}
.info2 {
  position: relative;
  width: 337px;
  height: 550px;
}
.info2 p {
  position: absolute;
  padding: 0 15px;
  z-index: 2;
  top: 100px;
}
.info2 img {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 4px;
  border-radius: 30px;
}
.info3 {
  position: relative;
  width: 350px;
  height: 550px;
}
.info3 p {
  position: absolute;
  padding: 0 20px;
  z-index: 2;
  top: 100px;
}
.info3 img {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 10px;
  border-radius: 30px;
}
.animation {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(100px);
}
.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 690px) {
  .info {
    padding: 130px 30px 50px 40px;
  }
  .info ul li {
    margin-right: 40px;
  }
}
/*ここから店舗情報のCSS*/
.access {
  position: relative;
  width: 100%;
  height: 1180px;
  background-color: #005C4A;
  color: #fff;
  padding-top: 130px;
}
#access {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: -60px auto 0;
  
}
.access_exterior {
  display: block;
  width: 330px;
  height: auto;
  margin: 0 auto;
}
.access h2 {
  text-align: center;
  margin: 50px 0;
}
.access p {
  width: 290px;
  margin: 0 auto;
}
.access_p1 {
  padding-left: 80px;
}
.access_p2 {
  padding-left: 138px;
}
.access span {
  font-size: 1.8rem;
  font-weight: 600;
}
.access adress {
  display: block;
  width: 290px;
  margin: 20px auto 50px;
}
.access_map {
  display: block;
  width: 330px;
  height: 300px;
  margin: 0 auto;
}
@media(min-width: 690px) {
  .access {
    position: static;
    height: auto;
    padding: 80px 0 50px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #access {
    position: static;
    width: 180px;
    height: auto;
    margin: -35px 0 10px 80px;
  }
  .access_exterior {
    position: static;
  }
  .access_info {
    padding: 0 50px 0 60px;
  }
  .access h2 {
    margin: 0 0 60px;
  }
  .access p {
    margin: 0 auto;
  }
  .access_map {
    width: 460px;
    height: 370px;
  }
}