@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;400;600&display=swap");
a {
  color: #333;
  transition: color 0.3s ease; /* ホバー時のアニメーション */
  text-decoration: underline;
}
a:hover {
  color: #000; /* ホバー時の色変更 */
  text-decoration: none;
}

.color {
  color: #333;
}

/* その他のリセットスタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

/* -------------------------------------
  基本見出しスタイル（横書き用）
------------------------------------- */
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* モバイル（〜575px） */
h1 {
  font-size: 24px;
  font-weight: 400;
}

h2 {
  font-size: 20px;
  font-weight: 400;
}

h3 {
  font-size: 18px;
  font-weight: 400;
}

h4 {
  font-size: 16px;
  font-weight: 300;
}

/* タブレット以上（576px〜） */
@media (min-width: 576px) {
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
}
/* PC（768px〜） */
@media (min-width: 768px) {
  h1 {
    font-size: 30px;
    font-weight: 400;
  }
  h2 {
    font-size: 26px;
    font-weight: 400;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
}
img {
  max-width: 100%;
}

input, button, textarea, select {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container {
  width: 100%;
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: relative;
  padding: 1rem 0;
}
.site-header .site-logo img {
  display: block;
  margin: 0 auto;
}

.logo {
  height: 90px;
}

.menu-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}
.menu-toggle button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.menu-toggle button span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  border-radius: 2px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}
.menu-toggle button.open {
  transform: translateX(4px);
}
.menu-toggle button.open span {
  background-color: #000;
}
.menu-toggle button.open span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}
.menu-toggle button.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle button.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

.overlay-menu {
  position: fixed;
  inset: 0;
  background-color: rgb(240, 240, 240);
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  padding-top: 16px;
}
.overlay-menu.active {
  opacity: 1;
  visibility: visible;
}
.overlay-menu .overlay-nav {
  text-align: center;
}
.overlay-menu .overlay-nav .overlay-logo {
  margin-bottom: 60px;
}
.overlay-menu .overlay-nav .overlay-logo .logo {
  height: 90px;
  display: inline-block;
}
.overlay-menu .overlay-nav .overlay-menu-list li {
  position: relative;
  overflow: hidden;
  text-align: left;
  border-bottom: solid 1px #ccc;
}
.overlay-menu .overlay-nav .overlay-menu-list li a {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
  padding: 10px 20px;
}
.overlay-menu .overlay-nav .overlay-menu-list li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(23, 35, 70), rgba(23, 35, 70, 0.8));
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.overlay-menu .overlay-nav .overlay-menu-list li:hover::before {
  transform: translateX(0);
}
.overlay-menu .overlay-nav .overlay-menu-list li:hover a {
  color: #fff;
}
.overlay-menu .overlay-nav .overlay-menu-list2 {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
}
.overlay-menu .overlay-nav .overlay-menu-list2 li {
  margin: 5px 20px;
}
.overlay-menu .overlay-nav .overlay-menu-list2 li a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}
.overlay-menu .overlay-nav .overlay-menu-list2 li a:hover {
  color: #000;
}

.fadeup {
  opacity: 0.1;
  transition: all 1.2s ease-out;
}

.fadeup.active {
  opacity: 1;
}

@media print {
  .fadeup {
    opacity: 1 !important;
    transform: none !important;
  }
}
.concept-page .concept-visual {
  margin-bottom: 60px;
}
.concept-page .concept-visual img {
  display: block;
  width: 100%;
  height: 60vh;
  object-fit: cover;
}
.concept-page .about-title {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.2em;
  margin: 30px auto 150px auto;
  text-align: center;
}
.concept-page .about-title h1 {
  margin: 0;
  font-weight: 200;
}
@media (max-width: 1024px) {
  .concept-page .about-title {
    margin: 20px auto;
  }
}
@media (max-width: 743px) {
  .concept-page .about-title {
    margin: 20px auto;
    writing-mode: horizontal-tb; /* モバイルで横書き */
    text-orientation: mixed;
    height: auto; /* 高さを自動に */
  }
}
.concept-page .about-section {
  margin-bottom: 120px;
}
.concept-page .about-section .about-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 743px) {
  .concept-page .about-section .about-inner {
    flex-direction: column;
    gap: 30px;
  }
}
.concept-page .about-section .about-text {
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 18px;
  line-height: 3;
  letter-spacing: 0.1em;
  margin: 0 auto 60px auto;
  text-align: left;
  max-width: 600px;
}
@media (max-width: 1024px) {
  .concept-page .about-section .about-text {
    line-height: 2;
  }
}
@media (max-width: 743px) {
  .concept-page .about-section .about-text {
    writing-mode: horizontal-tb; /* モバイルで横書き */
    text-orientation: mixed;
    height: auto; /* 高さ自動 */
    text-align: left;
    line-height: 1.8;
    font-size: 16px;
  }
}
.concept-page .detail-section {
  margin-bottom: 240px;
}
.concept-page .detail-section .detail-item {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 90px;
}
.concept-page .detail-section .detail-item__image {
  width: 100%;
  margin-bottom: 30px;
}
.concept-page .detail-section .detail-item__image img {
  display: block;
  width: 100%;
  height: auto;
}
.concept-page .detail-section .detail-item__info {
  width: 100%;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: left;
  padding: 0 10%;
}
.concept-page .detail-section .detail-item__info h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  .concept-page .detail-section .detail-item__image, .concept-page .detail-section .detail-item__info {
    width: 100%;
    padding: 0;
  }
}

.shops-archive {
  margin-bottom: 120px;
}
.shops-archive .shops-title {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.2em;
  margin: 30px auto;
  text-align: center;
}
.shops-archive .shops-title h1 {
  margin: 0;
  font-weight: 200;
  font-size: 28px;
}
@media (max-width: 1024px) {
  .shops-archive .shops-title {
    margin: 20px auto;
  }
}
@media (max-width: 743px) {
  .shops-archive .shops-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    height: auto;
    margin: 20px auto;
  }
}
.shops-archive .notice {
  text-align: center;
  margin-bottom: 100px;
}

.shops-archive .shops-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.shops-archive .shop-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.shops-archive .shop-item__main {
  display: flex;
  gap: 70px;
}
@media (max-width: 767px) {
  .shops-archive .shop-item__main {
    flex-direction: column;
    gap: 30px;
  }
}
.shops-archive .shop-item__main.no-image .shop-item__info {
  width: 100%;
  flex: none;
}
.shops-archive .shop-item__image {
  flex: 0 0 30%;
}
.shops-archive .shop-item__image img {
  width: 100%;
  height: auto;
  display: block;
}
.shops-archive .shop-item__info {
  flex: 1;
  font-size: 14px;
}
.shops-archive .shop-item__info dl {
  display: grid;
  grid-template-columns: 120px 1fr; /* 左120px、右残り全部 */
  width: 100%;
  border-top: 1px solid #f0f0f0;
}
.shops-archive .shop-item__info dl dt, .shops-archive .shop-item__info dl dd {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.shops-archive .shop-item__info dl dt {
  font-weight: 400;
}
.shops-archive .shop-item__info dl dd {
  margin: 0;
  font-weight: 400;
}
.shops-archive .shop-item__info .shopname {
  font-size: 18px;
  margin-bottom: 1rem;
}
.shops-archive .shop-item__map {
  margin-bottom: 60px;
}
.shops-archive .shop-item__map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.main-visual {
  margin-bottom: 60px;
}
.main-visual img {
  display: block;
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

.concept-section {
  margin-bottom: 200px !important;
}
.concept-section .concept-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 743px) {
  .concept-section .concept-inner {
    flex-direction: column;
  }
}
.concept-section .concept-text {
  flex: 1;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
}
.concept-section .concept-title {
  flex: 1;
}
.concept-section .concept-title h1 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
}
@media (max-width: 743px) {
  .concept-section .concept-title h1 {
    font-size: 26px;
  }
}
.concept-section .concept-title .logoname {
  width: 120px;
  margin-bottom: 20px;
}

a.link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit; /* テキスト色を継承 */
  margin: 1rem 0;
  border-bottom: 1px solid #000; /* 初期状態で細い下線 */
}
a.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: currentColor; /* 現在の文字色を使う */
  transition: width 0.3s ease;
}
a.link:hover {
  color: inherit; /* hoverしても色を変えない */
}
a.link:hover::after {
  width: 100%; /* 下線アニメーション */
}

.product-section {
  margin-bottom: 120px;
}
.product-section h2 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-bottom: 30px;
}
.product-section .product-visual {
  margin-bottom: 120px;
}
@media (max-width: 743px) {
  .product-section .product-visual {
    margin-bottom: 60px;
  }
}
.product-section .product-visual img {
  display: block;
  width: 100%;
  height: 20vh;
  object-fit: cover;
}
.product-section .product-item {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 90px;
}
.product-section .product-item__image, .product-section .product-item__info {
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 0;
}
.product-section .product-item__image img, .product-section .product-item__info img {
  display: block;
}
.product-section .product-item__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 70px;
}
@media (max-width: 1024px) {
  .product-section .product-item__info {
    padding-left: 30px;
  }
}
.product-section .product-item__info h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.product-section .product-item__info h3 .product-volume {
  display: block;
  font-size: 14px;
  font-weight: 300;
  margin-top: 0.3em;
}
@media (max-width: 1024px) {
  .product-section .product-item__info h3 {
    font-size: 18px;
  }
  .product-section .product-item__info h3 .product-volume {
    font-size: 13px;
  }
}
@media (max-width: 743px) {
  .product-section .product-item__info h3 {
    font-size: 20px;
  }
  .product-section .product-item__info h3 .product-volume {
    font-size: 14px;
  }
}
.product-section .product-item__info .package-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.product-section .product-item__info .product-meta {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  font-size: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 40px;
}
.product-section .product-item__info .product-meta dt,
.product-section .product-item__info .product-meta dd {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}
.product-section .product-item__info .product-meta dt {
  font-weight: 600;
}
.product-section .product-item__info .product-meta dd {
  margin: 0;
}
.product-section .product-item__info .package-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: auto;
}
.product-section .product-item__info .package-images .package-image {
  width: 100%;
}
.product-section .product-item__info .package-images .package-image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 743px) {
  .product-section .product-item__image, .product-section .product-item__info {
    width: 100%;
    padding-left: 0;
  }
}

.contact-page .contact-title {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.2em;
  margin: 30px auto;
  text-align: center;
}
.contact-page .contact-title h1 {
  margin: 0;
  font-weight: 200;
}
@media (max-width: 1024px) {
  .contact-page .contact-title {
    margin: 20px auto;
  }
}
@media (max-width: 743px) {
  .contact-page .contact-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    height: auto;
    margin: 20px auto;
  }
}
.contact-page .contact-intro {
  margin: 0 auto 60px auto;
  max-width: 743px;
  line-height: 2;
}
.contact-page .contact-form {
  margin: 0 auto 120px auto;
  max-width: 743px;
  width: 100%;
}
.contact-page .contact-form dl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-page .contact-form dl dt {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.contact-page .contact-form dl dd {
  font-family: system-ui, sans-serif;
  font-size: 18px;
  margin: 0 0 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 1rem;
}
.contact-page .contact-form dl dd input[type=text],
.contact-page .contact-form dl dd input[type=email],
.contact-page .contact-form dl dd textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-family: inherit;
}
.contact-page .contact-form dl dd textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-page .contact-form dl dd .mwform-tel-field {
  display: flex;
  gap: 0.5em;
}
.contact-page .contact-form dl dd .mwform-tel-field input[type=text] {
  width: auto;
  flex: 1;
}
.contact-page .contact-form .form-submit {
  margin-top: 40px;
  text-align: center;
}
.contact-page .contact-form .form-submit input[type=submit] {
  background-color: #172346;
  color: #fff;
  font-size: 16px;
  padding: 12px 40px;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.contact-page .contact-thanks {
  margin: 0 auto 60px auto;
  max-width: 743px;
  line-height: 2;
  border: solid 1px #f0f0f0;
  padding: 30px 0 30px;
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.shopinfo {
  background-color: #172346;
  background: url("../images/shop_back.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 120px 0;
}
.shopinfo .shopinfo-inner {
  max-width: 600px;
}
.shopinfo .shopinfo-text {
  font-size: 24px;
  line-height: 1.8;
  margin-bottom: 60px;
  letter-spacing: 0.15em;
}
.shopinfo .shopinfo-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.shopinfo .shopinfo-ul li a {
  display: block;
  padding: 0.75rem 1.5rem;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 0.15em;
  transition: background-color 0.3s, color 0.3s;
}
.shopinfo .shopinfo-ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

@media (max-width: 1024px) {
  .shopinfo {
    padding: 80px 0;
  }
  .shopinfo .shopinfo-inner {
    max-width: 50%;
  }
  .shopinfo .shopinfo-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  .shopinfo .shopinfo-ul li a {
    font-size: 16px;
    padding: 0.75rem 1rem;
  }
}
@media (max-width: 743px) {
  .shopinfo {
    padding: 60px 0;
  }
  .shopinfo .shopinfo-inner {
    max-width: 100%;
  }
  .shopinfo .shopinfo-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .shopinfo .shopinfo-ul {
    gap: 0.75rem;
  }
  .shopinfo .shopinfo-ul li a {
    font-size: 15px;
    padding: 0.6rem 1rem;
  }
}
.site-footer {
  background-color: #f0f0f0;
  padding-top: 60px;
  color: #333;
  font-family: "Noto Serif JP", serif;
}
.site-footer .footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.site-footer .footer-logo img {
  height: 80px;
}
.site-footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}
.site-footer .footer-menu li a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
}

.copyright {
  background-color: #000;
  color: #fff;
  font-size: 12px;
  margin-top: 60px;
  padding: 2rem 0;
}
.copyright .copyright-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.copyright .footer-ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.copyright .footer-ul li a {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
}
.copyright .copy {
  font-size: 10px;
  letter-spacing: 0.2em;
  margin: 0;
}

.link-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.link-underline:hover::after {
  width: 100%;
}

/*# sourceMappingURL=main.css.map */
