@charset "utf-8";
/* --------------
reset
-------------- */
* {
  margin: 0;
  padding: 0;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}

img {
  max-width: 100% !important;
  height: auto;
  vertical-align: bottom;
}
iframe {
  max-width: 100% !important;
  border: 0;
}
iframe img {
  max-width: none !important;
  border: 0;
}

body * {
  box-sizing: border-box;
}

/* --------------
base
-------------- */
main {
  color: #fafafa;
}

a {
  text-decoration: none;
  color: #fafafa;
}

.in {
  max-width: 1400px;
  padding: 0 35px;
  margin: 0 auto;
}

/* ---------- font size */

.fs05 { font-size: 0.5em; }
.fs06 { font-size: 0.6em; }
.fs07 { font-size: 0.7em; }
.fs08 { font-size: 0.8em; }
.fs09 { font-size: 0.9em; }
.fs10 { font-size: 1.0em; }
.fs11 { font-size: 1.1em; }
.fs12 { font-size: 1.2em; }
.fs13 { font-size: 1.3em; }
.fs14 { font-size: 1.4em; }
.fs15 { font-size: 1.5em; }
.fs16 { font-size: 1.6em; }
.fs17 { font-size: 1.7em; }
.fs18 { font-size: 1.8em; }
.fs19 { font-size: 1.9em; }
.fs20 { font-size: 2.0em; }
.fs21 { font-size: 2.1em; }
.fs22 { font-size: 2.2em; }
.fs23 { font-size: 2.3em; }
.fs24 { font-size: 2.4em; }
.fs25 { font-size: 2.5em; }
.fs30 { font-size: 3.0em; }

/* header {
  position: relative;
  z-index: 1000; 
} */

header nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #3a3a3a;
  padding-top: 100px;
  transition: 0.5s;
  z-index: 49;
}

.menu-open nav {
  left: 0;
  z-index: 50;
}

header nav ul {
  display: block;
  height: 100%;
  padding-bottom: 50px;
  list-style: none;
  margin: 0;
  padding-left: 0;
  text-align: center;
}

header nav a {
  font-size: 30px;
  margin: 30px 0;
  text-decoration: none;
  display: block;
  color: #fafafa;
}

header .nav-button {
  width: 70px;
  height: 50px;
  margin-left: auto;
  position: relative;
  cursor: pointer;
  z-index: 999;
}

header .nav-button span {
  width: 30px;
  height: 2px;
  background: #fafafa;
  position: absolute;
  left: 20px;
  transition: 0.5s;
  z-index: 9999;
}

header .nav-button span:nth-child(1) {
  top: 12px;
}
header .nav-button span:nth-child(2) {
  top: 23px;
}
header .nav-button span:nth-child(3) {
  top: 34px;
}

/* ハンバーガーメニュー開閉時のアニメーション */
.menu-open .nav-button span:nth-child(1) {
  top: 23px;
  transform: rotate(315deg);
}
.menu-open .nav-button span:nth-child(2) {
  width: 0;
  left: 50%;
}
.menu-open .nav-button span:nth-child(3) {
  top: 23px;
  transform: rotate(-315deg);
}

/* 銀座店オープンのテキスト */
.move-updown {
  color: #ffee00;
  margin-top: 30px;
  animation: updown 1.5s ease-in-out infinite;
}

@keyframes updown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* 上に10px移動 */
  }
}

section {
  margin-top: 150px;
}

h2 {
  position: relative;
  padding: 8px 8px;
  font-family: "Noto Sans JP", serif;
  font-size: 2.8em;
  letter-spacing: 0.1em;
  display: block;
  max-width: 260px;
  text-align: center;
  margin: 20px;
  margin-inline: auto;
  color: #fafafa;
}

h2::before {
  content: "";
  position: absolute;
  left: 0;
  width: 80px;
  height: 80px;
  display: inline-block;
  top: 0;
  rotate: 45deg;
  border-bottom: solid 1px #fafafa;
  border-left: solid 3px #fafafa;
}

h2 span::before,
h2 span::after {
  content: "";
  position: absolute;
  background: #fafafa;
  width: 50px;
  height: 1px;
  display: inline-block;
}

h2 span::before {
  left: 33px;
  top: 0;
  rotate: 45deg;
}

h2 span::after {
  left: 33px;
  bottom: 1px;
  rotate: -45deg;
}

.alc {
  text-align: center;
}

header {
  z-index: 100;
  color: #fafafa;
  background: rgba(58, 58, 58, 0.7);
  height: 80px;
  padding: 15px;
}

header .header-in {
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  width: 42px;
}

header p {
  font-size: 2em;
}

header a:hover {
  opacity: 0.7;
}

header ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.mv {
  padding: 24px 32px;
  letter-spacing: 0.1em;
  color: #fafafa;
  font-weight: 400;
  text-align: center;
  margin-inline: auto;
  align-items: baseline;
  position: relative;
  background-image: url(../img/mv_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 750px;
  width: 100%;
}

.mv-bnr {
  width: 30%;
  position: absolute;
  right: 0;
  bottom: 12px;
  display: grid;
  gap: 12px;
}

.mv-bnr a:hover {
  opacity: 0.7;
}

h1 {
  font-size: 5em;
  position: relative;
  z-index: 1;
  margin-top: 7%;
}

.title-text {
  font-size: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

h1::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #fafafa;
  width: 50px;
  height: 1px;
  display: inline-block;
}

/* お知らせ */
.news-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.news-item {
  border-bottom: 1px solid #ccc;
  padding: 1em 0;
}

.news-date {
  font-size: 0.9em;
  color: #999;
}

.news-category span {
  background-color: #007acc;
  color: #fff;
  padding: 0.2em 0.6em;
  border-radius: 4px;
  font-size: 0.8em;
}

.news-text {
  margin-top: 0.5em;
}

.news-header {
  display: flex;
  align-items: center;
  gap: 1em;
}

.news-date,
.news-category {
  margin: 0;
}

#news .btn {
  margin-top: 30px;
}

/* 店舗 */
.store1,
.store2,
.store3 {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 7em;
}

.store1 {
  margin-top: 70px;
}

.store1,
.store2 {
  border-bottom: 1px solid #fafafa;
  margin-bottom: 7em;
}

.logo-bnr {
  display: block;
  width: 90%;
}

.store-boxarea {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.store-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
}

h3 {
  margin: 0;
  font-size: 2em;
}

.store-box p {
  margin: 0;
  line-height: 1.4;
}

.address {
  padding-top: 30px;
  border-bottom: 1px solid #fafafa;
  width: fit-content;
  padding-bottom: 2px;
}

.address:hover {
  opacity: 0.7;
}

.btn a {
  background: #ffdefc;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 10px 25px;
  color: #884898;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.btn a:before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #884898;
  transition: 0.3s;
}
.btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background-color: #884898;
  transition: 0.3s;
}
.btn a:hover:before,
.btn a:hover:after {
  right: -2.5em;
}
.btn a:hover {
  opacity: 0.7;
}

/* フッター */
#management {
  padding: 7px 0;
  text-align: center;
  font-size: 0.7em;
  color: #fff;
  background: #777;
}

#management a {
  color: #fff;
  text-decoration: none;
}

#copyright {
  padding: 7px 0;
  text-align: center;
  font-size: 0.7em;
  color: #fff;
  background: #111;
}

#footer,
.bg-pattern {
  position: relative;
}

/* お知らせ一覧 */
article#main {
  position: relative;
  padding: 0 7px;
}

#news a:hover {
  opacity: 0.7;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  list-style-type: none;
  padding: 0;
}

.pagination a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-radius: 1px;
  background-color: #f2f2f2;
  color: #d08925;
}

.pagination a:not(:hover) {
  text-decoration: none;
}

.pagination .current {
  background-color: #d08925;
  color: #fff;
  pointer-events: none;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-radius: 1px;
}

/* お知らせ詳細 */
.news-detail {
  max-width: 1200px;
  padding: 0 15px;
  margin: 50px auto 0 auto;
  color: #fafafa;
}

.news-detail h3 {
  font-size: 2.4em;
  margin-bottom: 7px;
}

.news-detail .body {
  margin: 50px 0;
}

.news-detail .btn-link,
.news-detail .btn-news {
  text-align: center;
  margin: 15px 0;
}

.news-detail .btn-link a,
.news-detail .btn-news a {
  display: block;
  width: 350px;
  padding: 15px 0;
  text-decoration: none;
  margin: 0 auto;
}

.news-detail .btn-link a {
  background: #fafafa;
  color: #cf872e;
}

.news-detail .btn-news a {
  background: #cf872e;
  color: #fafafa;
}

.news-detail .btn-link a:hover,
.news-detail .btn-news a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .nav-button {
    display: none;
  }

  header nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding-top: 0;
    left: auto;
    transition: none;
  }

  .menu-open nav {
    left: auto;
  }

  header nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: auto;
    padding: 0;
    margin: 0;
  }

  header nav a {
    font-size: 18px;
    margin: 0 15px;
    color: #fafafa;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 4em;
  }
  .mv {
    height: 450px;
  }
  .mv-bnr {
    width: 60%;
    gap: 7px;
    bottom: 7px;
  }
  .in {
    padding: 0 15px;
  }
  .store-boxarea {
    grid-template-columns: repeat(1, 1fr);
  }
  .logo-bnr {
    margin: 0 auto;
  }
}
