/* おせちページ作成 202509 */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
.galculture {
  --color-red: #ff0000;
  --color-pink: #ff00ff;
  --color-yellow: #ffcc00;
  --color-blue: #00ccff;
  --color-purple: purple;
  --color-hotpink: hotpink;
  --bg-black: #220c0c;
  --bg-beige: #F2E6DE;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: "MS UI Gothic", "MS Pゴシック", Arial, sans-serif;  font-optical-sizing: auto; */
  font-style: normal;
  color: #212020;
  margin: 0;
  padding: 0;
}

/* utility */
.ib {
  display: inline-block;
}

.text-center {
  text-align: center;
}

.font-en {
  font-family: "Quattrocento", serif;
  letter-spacing: 1px;
}

b,
.bold {
  font-weight: bold;
}

.opacity08 {
  opacity: 0.8;
}

.color-red {
  color: var(--color-red);
}

.color-pink {
  color: var(--color-pink);
}

.color-yellow {
  color: var(--color-yellow);
}

.color-blue {
  color: var(--color-blue);
}

.color-purple {
  color: var(--color-purple);
}

.color-hotpink {
  color: var(--color-hotpink);
}

.note {
  font-size: 0.9em;
  margin: 1.5em auto 0;
  text-align-last: left;
  width: fit-content;
}

.fz-large15 {
  font-size: 1.5em;
}

.fz-large12 {
  font-size: 1.2em;
}

.fz-small9 {
  font-size: 0.9em;
}

.fz-small8 {
  font-size: 0.8em;
}

.fz-small7 {
  font-size: 0.7em;
}

.fz-small65 {
  font-size: 0.65em;
}

@media (max-width: 767px) {
  .for_pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .for_sp {
    display: none !important;
  }
}

/* bases */
.galculture img {
  max-width: 100%;
  vertical-align: top;
}
.galculture  .main {
  background: url(../images/galculture/bg_pink.jpg) center top / 100% auto repeat;
  background-attachment: fixed;
  color: #444;
  font-style: normal;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  line-height: 1.78;
  min-height: 100vh;
  overflow: hidden;
  padding: 3em 0;
  position: relative;
  text-align: center;
}
.galculture  .mainStart_image {
  max-width: 450px;
  margin: 0 auto;
}
.galculture  .mainStart_title {
  font-family: "Impact", "Arial Black", "MSゴシック", sans-serif;
  font-size: clamp(24px, 2.2vw, 33px);
}
.galculture .contents {
  background: #fff;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 550px;
  margin: auto;
  padding: 3em 15px;
  width: 90%;
}
.galculture .counter {
  border: 1.5px solid var(--color-red);
  color: var(--color-red);
  margin-left: auto;
  margin-right: auto;
  padding: 0.2em 5px;
  width: fit-content;
}

.galculture .counter .text {
  animation: blink 1.5s steps(5, start) infinite;
}
@keyframes blink {
  to {
    visibility: hidden;
  }
}

.galculture .title {
  font-family: "Impact", "Arial Black", "游ゴシック", "MSゴシック", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: bold;
}
.galculture .subtitle {
  font-family: "Impact", "Arial Black", "游ゴシック", "MSゴシック", sans-serif;
  font-size: 23px;
  font-weight: bold;
  margin: 0;
}
.stars {
  display: inline-block;
  max-width: 400px;
  margin: 0 auto 0.5em;
  position: relative;

  text-shadow:0 0 8px var(--color-pink);
}

.spark {
  position: absolute;
  width: 14px;
  height: 14px;
  /* fill: white; */

  /* filter:
    drop-shadow(0 0 5px white)
    drop-shadow(0 0 5px #ff69b4) 
    drop-shadow(0 0 6px #ff66ff) ; */
    /* drop-shadow(0 0 15px #ff00ff); */
  animation: kirakira 2s infinite ease-in-out;
}

.spark polygon,
.spark path {
  transform-origin: center;
  transform: scaleY(1.8) scaleX(0.5);
}

/* 配置 */
.s1 {
  top: 29%;
  left: -1%;
}
.s2 {
  top: 7%;
  right: 25%;
  animation-delay: 0.7s;
}
.s3 {
  bottom: 22%;
  right: 27%;
  animation-delay: 1.2s;
}
.spark-star {
  width: 18px;
  height: 18px;
  fill: white;

  filter:
    drop-shadow(0 0 6px #fff)
    drop-shadow(0 0 12px #ff69b4);

  animation: kirakira 1.8s infinite ease-in-out;
}

/* 縦長にする */
.spark-star polygon {
  transform-origin: center;
  transform: scaleY(1.6) scaleX(0.7);
}
@keyframes kirakira {
  0% {
    opacity: 0;
    /* transform: scale(0.3) rotate(0deg); */
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    /* transform: scale(1.2) rotate(15deg); */
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
    /* transform: scale(0.3) rotate(30deg); */
    transform: scale(0.3);
  }
}

.galculture .line {
  color: var(--color-yellow);
  font-size: 19px;
  margin: 1.5em 0;
}
.galculture .line img {
  display: block;
  width: 100%;
}
.galculture .line img + img {
  margin-top: -12px;
}
.galculture .link_back {
  color: var(--color-hotpink);
  margin-top: auto;
}

.galculture .page_list {
  font-size: 20px;
  font-weight: bold;
  list-style: none;
  margin: 0 0 2em;
  padding: 0;
}
.galculture .page_list li {
  margin: 1em 0;
}
.galculture .page_list li a {
  color: var(--color-red);
}

.btn_resevetion {
  align-items: center;
  background-color: black;
  color: white;
  display: flex;
  height: 60px;
  justify-content: center;
  margin: 1em auto;
  text-decoration: none;
  width: 170px;
}
@media (max-width: 767px) {
  .galculture .line {
    font-size: min(4.5vw, 27px);
  }
}

/* about */
.about_section {
  padding-bottom: 3em;
}
.about_title {
  margin-bottom: 1.5em;
}
.about_title-text {
  margin: 0.2em 0;
}
.about_title-line {
  color: var(--color-purple);
  font-size: 15px;
  margin: 0;
}
.about_title-line span {
  font-size: 22px;
}
.about_image {
  margin: 0 auto;
  width: 90%;
}
.about_gallery {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.about_gallery dl {
  display: flex;
  flex-direction: column;
  margin: 0;
  width: calc(33.3% - 6px);
}
.about_gallery dl dt {
  aspect-ratio: 3 / 5;
  overflow: hidden;
  position: relative;
}
.about_gallery dl dt img {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
}
.about_gallery dl dd {
  background-color: var(--color-pink);
  color: white;
  flex-grow: 1;
  font-size: 12px;
  line-height: 1.2;
  margin: 3px 0 0;
  padding: 5px;
  text-align: left;
  width: 100%;
}
.about_gallery.-foods {
  gap: 8px;
}
.about_gallery.-foods dl {
  width: calc(50% - 4px);
}
.about_gallery.-foods dl dt {
  aspect-ratio: 40 / 26;
}
.about_price {
  display: block;
  margin: 0 auto;
  max-width: 420px;
  text-align: left;
}
.about_price .price {
  display: block;
  text-align: right;
}
.about_price_table {
  line-height: normal;
  margin: 0.5em auto 0;
  max-width: 420px;
  width: 100%;
}
.about_price_table th {
  padding-bottom: 1em;
  text-align: left;
}
.about_price_table td {
  padding-bottom: 1em;
  text-align: right;
  vertical-align: bottom;
  width: 4em;
}
.about_price_table .sub {
  display: inline-block;
  font-size: 0.85em;
  padding-left: 1em;
}
.about_menu {
  max-width: 100%;
  margin: 2em auto;
  text-align: left;
  width: 420px;
}
.about_menu p {
  margin-bottom: 0;
  margin-top: 0.5em;
}
.about_menu ul {
  margin: 0 0 0.7em 0;
  padding-left: 2em;
  margin-top: 0;
}
.about_menu ul li {
  line-height: 1.3;
  margin-bottom: 0.3em;
  margin-left:  1em;
}
@media (hover:hover) {
}
@media (max-width: 767px) {

}


/* price */
.price_section {
  padding-bottom: 3em;
}

/* link */
.link_list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  width: fit-content;
}
.link_list li {
  margin: 2em 0;
}
.link_list a {
  color: blue;
  text-decoration: underline;
}

/* popup（ABOUT ギャラリー画像モーダル） */
.img-popup {
  align-items: center;
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.9);

  align-items: center;
  justify-content: center;
  flex-direction: column;

  padding: 20px;
  box-sizing: border-box;
}

.img-popup img {
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  width: auto;

  border: 4px solid #ff1493;
  box-shadow: 0 0 25px #ff69b4;
}

.img-popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}
#popup-caption {
  text-align: center;
  color: #ff69b4;
  margin-top: 10px;
  font-size: 14px;
  text-shadow: 0 0 5px #ff1493;
}