@charset "UTF-8";
html, body, header, footer, article, div, main, p, figure, figcaption {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: 0.5;
}

li {
  list-style-type: none;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* =======================================
ナビゲーション
======================================= */
input[type=checkbox]#menu-btn-check {
  display: none;
}

@media screen and (max-width: 1360px) {
  .menu-btn {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .menu-btn {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  .menu-btn {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .menu-btn {
    display: block;
  }
}

#navigation {
  width: 45%;
  height: 100%;
  padding-top: 20px;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ */
  z-index: 80;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.5s; /*アニメーション設定*/
  overflow: auto;
}

#navigation a,
#navigation a:link,
#navigation a:active,
#navigation a:visited,
#navigation a:hover {
  color: #000;
  text-decoration: none;
}

#navigation ul {
  display: block;
  width: 90%;
  text-align: center;
  padding: 10px;
  margin-top: 80px;
  font-size: 1.5rem;
}

#navigation ul li {
  padding: 1em 0.5em;
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
#navigation ul li a {
  color: #000;
}

/* =======================================
　MENUが☓に変化
======================================= */
.menu-btn {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 15px;
  right: 15px;
  height: 40px;
  width: 40px;
  z-index: 90;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 98%;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
}

.menu-btn span:before {
  bottom: 17px;
  background: #fff;
}

.menu-btn span:after {
  top: 17px;
  background: #fff;
}

/* ---　ボタンをクリックした時の動作 --- */
#menu-btn-check:checked ~ #navigation {
  left: 52%; /*メニューを画面内へ*/
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #000;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #000;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  max-width: 1480px;
  margin: auto;
  background: #000;
  position: relative;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  position: relative;
}
@media screen and (max-width: 960px) {
  body {
    width: 100vw;
  }
}
@media screen and (max-width: 560px) {
  body {
    width: 100vw;
  }
}

header {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  width: 1200px;
  height: 130px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 20px 60px 20px 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  header {
    width: 100vw;
  }
}
@media screen and (max-width: 560px) {
  header {
    width: 100vw;
  }
}
header #logo {
  width: 280px;
  height: auto;
  position: relative;
}
@media screen and (max-width: 560px) {
  header #logo {
    width: 188px;
    height: 45px;
    position: relative;
  }
  header #logo:after {
    content: "あなたの街の電気屋さん";
    position: absolute;
  }
}
header #logo a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
header #logo a img {
  width: 100%;
  height: auto;
  display: inline-block;
  animation-name: logo;
  animation-duration: 6s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
header #comment {
  width: 400px;
}
@media screen and (max-width: 560px) {
  header #comment {
    display: none;
  }
}
header #comment p.about {
  font-size: 2.2rem;
  text-align: right;
  font-weight: bold;
  color: #fff;
  position: relative;
  margin: 0;
}
header #comment p.about::after {
  content: "オーセンティックバー　タートヴァン";
  position: absolute;
  width: 100%;
  top: 180%;
  left: 46%;
  letter-spacing: 1px;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
}

nav {
  box-sizing: border-box;
  padding: 5px 60px;
  width: 1210px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  nav {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  nav {
    display: none;
  }
}
nav ul {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  margin: 18px 0 18px;
}
nav ul li {
  font-style: italic;
  text-align: center;
  list-style-type: none;
  font-size: 2rem;
  color: #fff;
  transition: all 0.8s ease;
}
nav ul li:after {
  position: absolute;
  bottom: -10px;
  width: 0px;
  height: 2px;
  color: #000;
  transition: all 1s ease;
}
nav ul li:after:hover {
  width: 100%;
  color: #fff;
}
nav ul li a {
  color: #fff;
}

article {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto;
}
article main#contents {
  width: 1200px;
  max-width: 1280px;
  margin: auto;
  height: auto;
}
@media screen and (max-width: 560px) {
  article main#contents {
    width: 100vw;
  }
}
article main#contents #mainpanel {
  width: 100vw;
  height: 390PX;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 560px) {
  article main#contents #mainpanel {
    height: 135px;
  }
}
article main#contents #mainpanel img#img1 {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transform: translateX(-80px);
  animation-name: img1;
  animation-duration: 9s;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
article main#contents #mainpanel img#img2 {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
  position: absolute;
  opacity: 0;
  z-index: 2;
  top: 0;
  right: 0;
  transform: translateX(80px);
  animation-name: img2;
  animation-duration: 9s;
  animation-delay: 6s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
article main#contents #mainpanel img#img3 {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
  opacity: 0;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  transform: translateX(-80px);
  animation-name: img3;
  animation-duration: 9s;
  animation-delay: 13s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
article main#contents #mainpanel img#img4 {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
  position: absolute;
  opacity: 0;
  z-index: 4;
  top: 0;
  right: 0;
  transform: translateX(80px);
  animation-name: img4;
  animation-duration: 9s;
  animation-delay: 20s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
article main#contents #mainpanel img#img7 {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  opacity: 0;
  z-index: 7;
  top: 0;
  left: 0;
  animation-name: img7;
  animation-delay: 27s;
  animation-duration: 2.6s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
article main#contents #mainpanel img#img_logo {
  width: 29%;
  height: auto;
  position: absolute;
  bottom: 15px;
  right: 70px;
  opacity: 0;
  z-index: 8;
  animation-name: img_logo;
  animation-duration: 4s;
  animation-delay: 28.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes logo {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes img1 {
  0% {
    transform: translateX(-80px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
@keyframes img2 {
  0% {
    transform: translateX(80px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
@keyframes img3 {
  0% {
    transform: translateX(-80px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
@keyframes img4 {
  0% {
    transform: translateX(80px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
@keyframes img5 {
  0% {
    transform: translateX(-80px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
@keyframes img6 {
  0% {
    transform: translateX(80px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
@keyframes img7 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes img_logo {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
  }
}
article {
  width: 100%;
  color: #fff;
}
article main#contents {
  width: 980px;
  margin: auto;
}
@media screen and (max-width: 960px) {
  article main#contents {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  article main#contents {
    width: 100%;
  }
}
article main#contents #mainH2 h2 {
  font-size: 3rem;
  font-weight: bold;
  font-weight: 500;
  padding-left: 57px;
  color: #fff;
  letter-spacing: 3px;
  font-style: italic;
}
article main#contents section#access {
  width: 100%;
}
article main#contents section#access .inner {
  width: 100%;
}
article main#contents section#access .inner iframe#googleMap {
  width: 100%;
  height: 400px;
  display: block;
  margin: 50px auto;
}
article main#contents section#access .inner #address {
  width: 100%;
}
article main#contents section#access .inner #address ul li {
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-height: 4rem;
}
@media screen and (max-width: 560px) {
  article main#contents section#access .inner #address {
    width: 100%;
  }
}
article main#contents section#access .inner .root {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #fff;
  margin-bottom: 150px;
  position: relative;
}
@media screen and (max-width: 560px) {
  article main#contents section#access .inner .root {
    display: block;
    width: 99.6%;
    margin: 0 auto auto;
  }
}
article main#contents section#access .inner .root img {
  width: 240px;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 560px) {
  article main#contents section#access .inner .root img {
    width: 99.8%;
    display: block;
    margin: 0 auto 20px;
  }
}
article main#contents section#access .inner .root .center_content h4 {
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  border-bottom: 1.8px solid #fff;
  padding-bottom: 10px;
  letter-spacing: 3px;
  margin: 20px;
  text-align: left;
}
article main#contents section#access .inner .root .center_content p {
  margin: 25px;
  font-size: 1.4rem;
  text-align: left;
}
article main#contents section#access .inner .root:before {
  position: absolute;
  content: "";
  background: #fff;
  height: 50px;
  width: 20px;
  bottom: -115px;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 560px) {
  article main#contents section#access .inner .root:before {
    height: 35px;
    bottom: 17px;
  }
}
article main#contents section#access .inner .root:after {
  position: absolute;
  content: "";
  bottom: -135px;
  left: 50%;
  border-right: 20px solid #fff;
  border-bottom: 20px solid #000;
  border-left: 20px solid #000;
  border-top: 20px solid #000;
  transform: translate(-50%, -50%) rotate(-90deg);
}
@media screen and (max-width: 560px) {
  article main#contents section#access .inner .root:after {
    bottom: -13px;
  }
}
article main#contents section#access .inner .root:last-child:before {
  content: none;
}
article main#contents section#access .inner .root:last-child:after {
  content: none;
}
article main#contents section#contact .inner {
  width: 100%;
}
article main#contents section#contact .inner h3 {
  font-size: 2rem;
  padding-left: 30px;
  width: 100%;
}
article main#contents section#contact .inner h3 span {
  font-style: italic;
  font-size: 3rem;
  margin-right: 20px;
  margin-bottom: 20px;
}
article main#contents section#contact .inner a#line {
  margin: 30px 0 30px 40px;
  display: none;
}
@media screen and (max-width: 960px) {
  article main#contents section#contact .inner a#line {
    display: block;
  }
}
@media screen and (max-width: 840px) {
  article main#contents section#contact .inner a#line {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  article main#contents section#contact .inner a#line {
    display: inline-block;
  }
}
article main#contents section#contact .inner a#line img {
  display: none;
}
@media screen and (max-width: 960px) {
  article main#contents section#contact .inner a#line img {
    display: block;
    margin: 30px auto;
  }
}
@media screen and (max-width: 960px) and (max-width: 840px) {
  article main#contents section#contact .inner a#line img {
    display: block;
    margin: 30px auto;
  }
}
@media screen and (max-width: 960px) and (max-width: 560px) {
  article main#contents section#contact .inner a#line img {
    display: block;
    margin: 30px auto;
  }
}
article main#contents section#contact .inner a#line img img#pc {
  display: block;
  margin: 20px auto;
  width: 50%;
}
@media screen and (max-width: 960px) {
  article main#contents section#contact .inner a#line img img#pc {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  article main#contents section#contact .inner a#line img img#pc {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  article main#contents section#contact .inner a#line img img#pc {
    display: none;
  }
}
article main#contents section#contact .inner img#pc {
  width: 55%;
  height: auto;
  margin: 30px auto;
  display: block;
}
@media screen and (max-width: 840px) {
  article main#contents section#contact .inner img#pc {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  article main#contents section#contact .inner img#pc {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  article main#contents section#contact .inner img#pc {
    display: none;
  }
}
article main#contents section#contact .inner p.contact_buy {
  font-size: 4rem;
  padding-left: 40px;
  text-align: left;
  letter-spacing: 5px;
  margin: 50px 0;
}
@media screen and (max-width: 560px) {
  article main#contents section#contact .inner p.contact_buy {
    font-size: 2.8rem;
  }
}
article main#contents section#contact .inner p.contact_buy a {
  color: #fff;
  transition: all 0.8s ease;
  position: relative;
  font-size: 2.4rem;
  font-style: italic;
}
@media screen and (max-width: 560px) {
  article main#contents section#contact .inner p.contact_buy a {
    color: #fff;
  }
}
article main#contents section#contact .inner p.contact_buy a:after {
  position: absolute;
  width: 0%;
  height: 3px;
  color: #000;
}
article main#contents section#contact .inner p.contact_buy a:hover + :after {
  width: 100%;
  color: #fff;
}
article main#contents section#drinkmenu p#note {
  margin: 20px 0 40px;
  padding: 0 60px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.2rem;
}
@media screen and (max-width: 560px) {
  article main#contents section#drinkmenu p#note {
    width: 100%;
    margin: auto;
    padding: 10px;
  }
}
article main#contents section#drinkmenu .inner {
  margin: 0 auto 30px;
  width: 960px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 560px) {
  article main#contents section#drinkmenu .inner {
    width: 100%;
    display: block;
  }
}
article main#contents section#drinkmenu figure {
  box-sizing: border-box;
  width: 48.125%;
  height: 365px;
  border: 2.5px solid #fff;
  margin-bottom: 30px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center bottom;
  overflow: hidden;
  transition: all 0.8s ease;
}
@media screen and (max-width: 560px) {
  article main#contents section#drinkmenu figure {
    width: 98%;
    margin: auto;
  }
}
article main#contents section#drinkmenu figure:hover {
  transform: scale(1.08);
}
article main#contents section#drinkmenu figure h4 {
  margin: 0;
  background-color: #fff;
  font-size: 1.6rem;
  letter-spacing: 3px;
  padding: 10px 20px;
  color: #000;
}
article main#contents section#drinkmenu figure h4 span {
  font-size: 1.3rem;
  margin-left: 25px;
  transform: scaleY(1.16);
}
article main#contents section#drinkmenu figure figcaption {
  box-sizing: border-box;
  display: flex;
  height: 82%;
  justify-content: center;
  align-items: end;
  padding: 15px;
  padding-bottom: 0;
  position: absolute;
}
article main#contents section#drinkmenu figure figcaption p {
  font-size: 1.3rem;
  line-height: 2.2rem;
}
article main#contents section#drinkmenu figure a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
article main#contents section#drinkmenu figure:first-child {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Blended_Scotch.webp);
}
article main#contents section#drinkmenu figure:nth-child(2) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Islay.webp);
}
article main#contents section#drinkmenu figure:nth-child(3) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Islands.webp);
}
article main#contents section#drinkmenu figure:nth-child(4) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Campbeltown.webp);
}
article main#contents section#drinkmenu figure:nth-child(5) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Speyside.webp);
}
article main#contents section#drinkmenu figure:nth-child(6) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Highland.webp);
}
article main#contents section#drinkmenu figure:nth-child(7) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Lowland.webp);
}
article main#contents section#drinkmenu figure:nth-child(8) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Grain_Scotch.webp);
}
article main#contents section#drinkmenu figure:nth-child(9) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/American.webp);
}
article main#contents section#drinkmenu figure:nth-child(10) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Irish.webp);
}
article main#contents section#drinkmenu figure:nth-child(11) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Canadian.webp);
}
article main#contents section#drinkmenu figure:nth-child(12) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Japanese.webp);
}
article main#contents section#drinkmenu figure:nth-child(13) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Other_Whisky.webp);
}
article main#contents section#drinkmenu figure:nth-child(14) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Brandy.webp);
}
article main#contents section#drinkmenu figure:nth-child(15) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Spirits.webp);
}
article main#contents section#drinkmenu figure:nth-child(16) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Other.webp);
}
article main#contents section#drinkmenu figure:nth-child(17) {
  background-image: url(https:///tate-vin.jp/wp-content/themes/omcthemes/images/drink_menu/Cocktails.webp);
}

footer {
  background: #0d0015;
  padding: 20px 100px;
  box-sizing: border-box;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 560px) {
  footer {
    padding: 20px 5px;
  }
}
footer ul {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  box-sizing: border-box;
}
footer ul li {
  text-align: center;
  margin-right: 25px;
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: 2px;
}
footer ul li a {
  color: #fff;
  font-style: italic;
}
footer p.copyLight {
  text-align: center;
  padding: 20px;
  margin: 0;
  background: #1c4593;
  color: #fff;
}
footer a#topback {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
footer a#topback a:hover {
  opacity: 0.6;
}
footer a#topback span {
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}/*# sourceMappingURL=page.css.map */