@charset "utf-8";

/*
Theme Name: syeahagu
Description: syeahagu用のテンプレートです
Version: 1.0
Author: amelab
*/

/*=====common====== */
html {
  font-size: 16px;
}

html, body {
  overflow-x: hidden;
  background-color: var(--main-color)!important;
}

/* ====font======= */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

/* ===========header================ */



.standard-pc-nav {
  
  background-color: var(--header-color)!important;
  display: flex;
  padding: 10px 35px;
  justify-content: space-between;
  align-items: center;
}

.header-sns-box {
  display: flex;
  gap: 20px;
}

/* .store-top_logo img {
  width: 150px;
} */

.store-top_sns img {
   width: 40px;   /* ← 大きすぎたらここを調整 */
  height: auto;
}

#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--header-color); /* 背景色を維持 */
  opacity: 0.8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 少し浮き上がるように */
}




/* ========== 店舗ページ専用CSS ========== */
.store-hero {
  position: relative;
}

.mv img {
  width: 100vw;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
  display: block;
}

.mv_title {
  background-color: #fff;
  color: #000;
  position: absolute;
  right: 5%;
  bottom: 3%;
  opacity: 70%;
  width: fit-content;
  padding: 20px;
  font-size: 4rem;
}


/* about================================ */
.about {
  margin-top: 80px;
}

.store_h2_ps {
  color: var(--about-title-color-ps, #000000);
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
}

.about-box {
  width: 85%;
  margin: 0 auto;
}

.about-text_ps {
  color: var(--about-text-color-ps, #333333);
  text-align: center;
  margin-top: 30px;
  font-size: 1.2rem;
  line-height: 1.5;
}

/* menu==================================== */


/* a */
.menu-section.pattern-a {
  background-color: var(--menu-a-bg);
  color: var(--menu-a-text);
  padding: 60px 20px;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 80px;
}

.menu-section.pattern-a .menu-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: inherit;
}

.menu-section.pattern-a .menu-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.menu-section.pattern-a .menu-card {
  width: 330px;
  background-color: var(--menu-a-card-bg);
  color: var(--menu-a-card-text);
  border-radius: var(--menu-a-card-radius);
  box-shadow: var(--menu-a-card-shadow);
  overflow: hidden;
  text-align: center;
  padding: 20px;
  line-height: 1.5;
}

.menu-section.pattern-a .menu-card h3 {
  font-size: 1.5rem;
  margin-top: 10px;
}

.menu-section.pattern-a .menu-card .price {
  font-size: 1.4rem;
  margin-top: 8px;
  margin-bottom: 8px;
}

.menu-section.pattern-a .menu-card p {
  font-size: 1.1rem;
  margin-top: 10px;
}


.menu-section.pattern-a .menu-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3; /* 画像比率に合わせて調整（正方形なら 1/1） */
  object-fit: cover;   /* トリミングしつつ中央寄せ */
  display: block;
  border-radius: var(--menu-a-image-radius);
  
}

/* b */
.menu-section.pattern-b {
  background-color: var(--menu-b-bg);
  padding: 60px 50px;
  font-family: "Noto Sans JP", sans-serif;
}

.menu-section.pattern-b .menu-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: var(--menu-b-heading-color);
}

.menu-section.pattern-b .menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.menu-section.pattern-b .menu-item {
  background: var(--menu-b-box);
  border-left: 6px solid var(--menu-b-border);
  padding: 15px 20px;
}

.menu-section.pattern-b .menu-item h4,
.menu-section.pattern-b .menu-item .price {
  color: var(--menu-b-item-color); 
}

.menu-section.pattern-b .menu-item h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.menu-section.pattern-b .menu-item .price {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.menu-section.pattern-b .menu-item p {
  font-size: 0.95rem;
  color: var(--menu-b-text);
}

/* c */

.menu-section.pattern-c {
  background-color: var(--menu-c-bg);
  padding: 80px;
  font-family: "Noto Sans JP", sans-serif;
}

.menu-section.pattern-c .menu-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: var(--menu-c-heading-color);

}

.menu-section.pattern-c .menu-block {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  align-items: center;
  justify-content: center;
}

.menu-section.pattern-c .menu-block:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: center;
}

.menu-section.pattern-c .menu-image {
  width: 30%;
  min-width: 280px;
}

.menu-section.pattern-c .menu-image img {
  width: 100%;
  border-radius: 10px;
}

.menu-section.pattern-c .menu-content {
  width: 55%;
  padding: 0 30px;
}

.menu-section.pattern-c .menu-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--menu-c-item-color);
}

.menu-section.pattern-c .menu-content p {
  font-size: 1rem;
  color: var(--menu-c-text);

}

.menu-section.pattern-c .menu-block .price {
  color: var(--menu-c-price-color);
  margin-top: 10px;
  font-weight: 500;
  
}

/* d */
.menu-section.pattern-d {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--menu-d-bg);
}

.menu-section.pattern-d .menu-title {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: var(--menu-d-heading-color);
}

.menu-section.pattern-d .menu-items {
  max-width: 600px;
  margin: 0 auto;
}

.menu-section.pattern-d .menu-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--menu-d-border);
  font-size: 1.2rem;
}

.menu-section.pattern-d .menu-left {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.menu-section.pattern-d .menu-left .main {
  font-weight: bold;
}

.menu-section.pattern-d .menu-left .sub {
  font-size: 0.8rem;
  color: var(--menu-d-sub-text);
}

.menu-section.pattern-d .menu-right {
  font-weight: bold;
}

.menu-section.pattern-d .menu-card,
.menu-section.pattern-d .menu-right,
.menu-section.pattern-d .menu-left .main {
  color: var(--menu-d-text);
}

@media screen and (max-width: 768px) {

  /* a */
.menu-section.pattern-a .menu-title {
    font-size: 2rem;
  }

  .menu-section.pattern-a .menu-items {
    flex-direction: column;
    align-items: center;
  }

  .menu-section.pattern-a .menu-card {
    width: 90%;
    font-size: 1rem;
  }

  .menu-section.pattern-a .menu-card h3 {
    font-size: 1.4rem;
  }

  .menu-section.pattern-a .menu-card .price {
    font-size: 1.3rem;
  }

  .menu-section.pattern-a .menu-card p {
    font-size: 1rem;
  }

  .menu-section.pattern-a .menu-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;  /* 比率は必要に応じて調整 */
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
}


/* b */
  .menu-section.pattern-b {
    padding: 40px 20px;
  }

  .menu-section.pattern-b .menu-title {
    font-size: 2rem;
    text-align: center;
  }

  .menu-section.pattern-b .menu-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .menu-section.pattern-b .menu-item {
    padding: 12px 16px;
  }

  .menu-section.pattern-b .menu-item h4 {
    font-size: 1.3rem;
  }

  .menu-section.pattern-b .menu-item .price {
    font-size: 1.1rem;
  }

  .menu-section.pattern-b .menu-item p {
    font-size: 0.9rem;
  }


/* c */

.menu-section.pattern-c {
    padding: 50px 20px;
  }

  .menu-section.pattern-c .menu-title {
    font-size: 2rem;
  }

  .menu-section.pattern-c .menu-block {
    flex-direction: column !important;
    text-align: center;
  }

  .menu-section.pattern-c .menu-image,
  .menu-section.pattern-c .menu-content {
    width: 70%;
    min-width: 280px;
    padding: 0;
  }

  .menu-section.pattern-c .menu-content {
    margin-top: 20px;
  }

  .menu-section.pattern-c .menu-content h3 {
    font-size: 1.3rem;
  }

  .menu-section.pattern-c .menu-content p {
    font-size: 0.95rem;
  }

  .menu-section.pattern-c .menu-image {
  width: 70%;
  min-width: 280px;
}


  /* d */
  .menu-section.pattern-d .menu-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }

  .menu-section.pattern-d .menu-left {
    flex-direction: row;
  }

  .menu-section.pattern-d .menu-right {
    align-self: flex-end;
  }

  .menu-section.pattern-d .menu-title {
    font-size: 1.5rem;
  }

  .menu-section.pattern-d .menu-items {
    width: 100%;
  }
}


/* message================================= */

.message-section {
  margin: 80px auto;
  max-width: 1100px;
  padding: 40px 20px;
  font-family: "Noto Sans JP", sans-serif;
  width: 90%;
}

.message-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

/* a */
.pattern-a .message-content {
  font-size: 1.1rem;
  line-height: 1.9;
  text-align: center;
  color: var(--message-a-maintext);
}

.message-section.pattern-a {
  background-color: var(--message-a-bg);
  color: var(--message-a-text);
}

/* b */
.pattern-b .message-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.message-title2 {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
}

.pattern-b .message-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--message-b-radius);
  object-fit: cover;
  width: 300px;
}

.pattern-b .message-text {
  flex: 1;
  min-width: 300px;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--message-b-text);
  margin-bottom: 10px;
}

.message-section.pattern-b {
  background-color: var(--message-b-bg);
  color: var(--message-b-text);
}

.message-section.pattern-b .message-title2 {
  color: var(--message-b-heading);
}

.message-main {
  margin-top: 10px;
  line-height: 1.5;
}

/* c */
.pattern-c .message-box {
  background-color: var(--message-c-boxbg);
  border-left: 6px solid var(--message-c-border);
  padding: 30px 25px;
  border-radius: var(--message-c-radius);
  font-size: 1.1rem;
  color: var(--message-c-text);
  line-height: 1.9;
  max-width: 800px;
  margin: 0 auto;
}

.pattern-c .message-box .lead {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--message-c-lead);
  margin-bottom: 20px;
}

.message-section.pattern-c {
  background-color: var(--message-c-bg);
}

.message-section.pattern-c .lead {
  color: var(--message-c-lead);
}

.message-section.pattern-c p {
  color: var(--message-c-text);
}

.pattern-c .message-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--message-c-heading); /* ← 追加 */
}

@media screen and (max-width: 768px) {
  .message-section {
    padding: 30px 15px;
  }

  .message-title {
    font-size: 1.6rem;
  }

  .message-title2 {
    text-align: center;
    font-size: 1.5rem;
  }

  .pattern-b .message-inner {
    flex-direction: column;
    gap: 20px;
  }

  .pattern-b .message-text {
    text-align: center;
  }

  .pattern-c .message-box {
    padding: 25px 15px;
    font-size: 1rem;
  }

  .pattern-c .message-box .lead {
    font-size: 1.2rem;
    text-align: center;
  }
}




/* gallery============================== */

/* a */

.gallery-a {
  margin-top: 80px;
  background-color: var(--gallery-bg-color, #F4FCFD);
  padding: 40px 40px 70px;
}

.gallery-a .gallery-title{
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 30px;
  color: var(--gallery-title-color, #000000);
}


.gallery-a .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.gallery-a .gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.gallery-a .gallery-item:hover img {
  transform: scale(1.05);
}


/* b */


.gallery-b {
  margin-top: 80px;
  background-color: var(--gallery-bg-color, #F4FCFD);
  padding: 40px 40px 70px;
}

.gallery-b .gallery-title {
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 30px;
  color: var(--gallery-title-color, #000000);
}

.gallery-b .swiper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 0;
}

.gallery-b .swiper-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* ★比率を統一（16:9なら 16 / 9） */
  overflow: hidden;
  border-radius: 10px;
}

.gallery-b .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ★切り抜いて全体表示 */
  border-radius: 10px;
}




/* c */

.gallery-c {
  margin-top: 80px;
  background-color: var(--gallery-bg-color, #F4FCFD);
  padding: 40px 40px 70px;
}

.gallery-c .gallery-title{
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 30px;
  color: var(--gallery-title-color, #000000);
}


.gallery-c-wrap {
  display: flex;
  gap: 20px;
}

.left-image,
.right-images {
  flex: 1;
  margin-top: 40px;
}

.left-image img,
.right-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.right-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.right-images img {
  height: calc(50% - 10px); /* 2つで縦分割 */
}

/* d */

.gallery-d {
  margin-top: 80px;
  background-color: var(--gallery-bg-color, #F4FCFD);
  padding: 40px 40px 70px;
}



.gallery-d .gallery-title{
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 30px;
  color: var(--gallery-title-color, #000000);
}

.slider {
  margin-top: 40px;
}

.slider img {
  width:100%;
  height: 100%;
}

.slider .slick-slide {
  margin:0 10px;
}


@media screen and (max-width: 768px) {

 .gallery-a {
    padding: 30px 20px 50px;
  }

  .gallery-a .gallery-title {
    font-size: 1.8rem;
    margin-top: 20px;
  }

   .gallery-b {
    padding: 30px 20px 50px;
  }

  .gallery-b .gallery-title {
    font-size: 1.8rem;
    margin-top: 20px;
  }

   .gallery-c {
    padding: 30px 20px 50px;
  }

  .gallery-c .gallery-title {
    font-size: 1.8rem;
    margin-top: 20px;
  }

   .gallery-d {
    padding: 30px 20px 50px;
  }

  .gallery-d .gallery-title {
    font-size: 1.8rem;
    margin-top: 20px;
  }


  .gallery-c-wrap {
    flex-direction: column;
  }

  .right-images {
    flex-direction: row;
  }

  .right-images img {
    height: auto;
    width: 50%;
  }

  .left-image img,
  .right-images img {
    aspect-ratio: 4 / 3;
  }

  .gallery-a .gallery-grid {
    grid-template-columns: 1fr;
  }

  .slider .slick-slide {
    margin: 0 5px;
  }
}




/* ========= Gallery: 安定表示のための共通リセット ========= */
/* 画像はすべて「枠を満たす＝cover」。余白で見せたい時は .gallery--contain を親に付与 */
.gallery-a .gallery-item,
.gallery-b .swiper-slide,
.gallery-c .left-image,
.gallery-c .right-images img,
.gallery-d .slider li {
  position: relative;
  overflow: hidden;
  /* border-radius: 10px; */
}

/* 画像を枠にフィット。デフォルトは cover（トリミングあり）。可変にしたいのでCSS変数を使う */
.gallery-a .gallery-item img,
.gallery-b .swiper-slide img,
.gallery-c img,
.gallery-d .slider img {
  width: 100%;
  height: 100%;
  object-fit: var(--gallery-fit, cover);
  display: block;
  background: var(--gallery-pad, transparent); /* contain時の余白色 */
}

/* 統一のアスペクト比（必要に応じて 16/9, 1/1 に変更OK） */
.gallery-a .gallery-item      { aspect-ratio: var(--gallery-ratio, 4 / 3); }
.gallery-b .swiper-slide      { aspect-ratio: var(--gallery-ratio, 4 / 3); } /* 既存と同じ */
.gallery-c .left-image        { aspect-ratio: var(--gallery-left-ratio, 4 / 3); }
.gallery-c .right-images img  { aspect-ratio: var(--gallery-right-ratio, 4 / 3); }
.gallery-d .slider li         { aspect-ratio: var(--gallery-ratio, 4 / 3); }

/* 既存の gallery-a で img に height:auto を当てている場合は上記で上書きされます */

/* ========= レイアウト調整（cの右側を安定2分割） ========= */
.gallery-c .right-images{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

/* ========= Slick用の安定化（d） ========= */
.gallery-d .slider .slick-slide { margin: 0 10px; } /* 既存維持 */
.gallery-d .slider .slick-list  { overflow: visible; } /* 角丸や影が切れないように */

/* ========= モバイル調整 ========= */
@media screen and (max-width: 768px){
  /* 必要ならモバイルだけ比率を変えたい場合（例：1:1に） */
  /* .gallery-a .gallery-item,
     .gallery-b .swiper-slide,
     .gallery-c .left-image,
     .gallery-c .right-images img,
     .gallery-d .slider li { aspect-ratio: 1 / 1; } */

  /* 既存のc用指定は不要（上のaspect-ratioで統一管理） */
}


/* link=================================== */

.acf-link-item {
  background-color: var(--link-bg, #266C47);
  color: var(--link-text, #ffffff);
  border: var(--link-border-width, 0px) solid var(--link-border-color, transparent);
  border-radius: var(--link-border-radius, 8px);
  width: fit-content;
  min-width: 350px;
  padding: 20px;
  margin: 60px auto;
  text-align: center;
  font-size: 1.5rem;
  transition: 0.3s;
}

.acf-link-item:hover {
  background-color: var(--link-bg-hover, #1c5135);
  color: var(--link-text-hover, #ffffff);
}



/* info============================= */

.store-info-psver {
  margin: 80px auto;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 1100px;
}

.store-info-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--info-title-color, #000);
}

.store-info-all {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.map {
  flex: 1 1 48%;
  min-width: 300px;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.store-info_box {
  flex: 1 1 48%;
  color: var(--info-text-color, #333);
  background: var(--info-box-bg, transparent);
}

.info-item {
  display: flex;
  border-bottom: 1px solid var(--info-border-color, #ccc);
  padding: 15px 0;
  align-items: flex-start;
}

.info-item_title {
  width: 6em;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--info-label-color, #000);
}

.info-item_text {
  font-size: 1.1rem;
  line-height: 1.6;
  flex: 1;
  color: var(--info-text-color, #333);
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .store-info-all {
    flex-direction: column-reverse;
    align-items: center;
  }

  .map,
  .store-info_box {
    flex: 1 1 100%;
    width: 95%;
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .info-item_title {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .info-item_text {
    width: 100%;
    font-size: 1rem;
  }

  .map iframe {
    height: 250px;
  }
}





/* footer======================================= */
.store-footer {
  margin-top: 80px;
}

.footer_all {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--footer-bg-color)!important;
}

.footer_all img {
  width: 250px;
}


.footer-syeatop a {
  font-size: 16px;
  color: var(--footer-text-color);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-syeatop a:hover {
  opacity: 0.8;
}

.footer-syeatop {
  margin-top: 15px;
}

.store-footer-copy {
  margin-top: 10px;
}

.store-footer-copy small {
  font-size: 14px;
  color: var(--footer-copy-color);
}

/* .footer_all {
  background-color: #E2CDA6;
  padding: 30px 20px;
  text-align: center;
}

.footer_all img {
  max-height: 60px;
  margin-bottom: 10px;
  width: 150px;
}

.footer-syeatop {
  margin-top: 10px;
}

.store-footer-copy {
  color: #000;
  margin-top: 15px;
} */

.sp_br {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp_br {
    display: block;
  }

  .store-top_sns img {
    width: 45px;
  }

  .sp_store-toplogo {
    background-color: var(--header-color)!important;
    display: block;
    text-align: center;
    padding: 10px 0;
  }

  /* .store-top_logo img {
    width: 100px;
  } */

  .mv_title {
    font-size: 2rem;
    right: 2%;
    bottom: 2%;
    padding: 10px;
  }

  .about-box {
    width: 95%;
  }

  .about-text {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  h2 {
    font-size: 2rem;
    margin: 0 auto;
  }

  .link-item {
    min-width: auto;
    width: 80%;
    font-size: 1.3rem;
    padding: 15px;
  }

  .store-info {
    width: 95%;
  }



  .info-item {
    flex-direction: column;
    padding: 15px;
    text-align: center;
  }

  .info-item_title {
    width: 100%;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .info-item_text {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .map iframe {
    width: 100%;
    height: 250px;
    padding: 20px;
  }

  

  .store-footer-copy {
    font-size: 0.75rem;
  }
}



/*========= ページトップのためのCSS ===============*/

#page-top a#page-top2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--page-top-bg);
  border-radius: var(--page-top-radius);
  height: 60px;
  width: 60px;
  color: var(--page-top-color);
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.7rem;
  font-family: "Oswald", sans-serif;
  transition: all 0.3s;
  padding-bottom: 10px;
  box-sizing: border-box;     /* 追加：パディングを内側に */
  line-height: 1.2;           /* 追加：複数行の行間を適度に */
  white-space: normal;        /* 追加：改行・折返しを許可（nl2brや<br>を反映） */
  word-break: break-word;     /* 追加：長い単語でも折返し */
  writing-mode: horizontal-tb;/* 追加：縦書き指定があっても打ち消す保険 */
}

#page-top a#page-top2:hover {
  background: var(--page-top-bg-hover);
}

/* リンクを右下に固定 */
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;               /* 追加：デフォルト位置（JSが上書きしてもOK） */
  z-index: 2;
  /* はじめは非表示 */
  opacity: 0;
  transform: translateY(100px);
}

/* 上に上がる動き */
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from { opacity: 0; transform: translateY(100px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 下に下がる動き */
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 1; transform: translateY(500px); }
}




@media screen and (max-width: 1024px) {
  header,
  #header {
    display: block !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .pc-nav {
    display: flex !important;
  }

.standard-pc-nav .store-top_logo .top_logo {
  margin: initial;
}

}