/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 25 2025 | 03:15:31 */
/* Navigation */
.site-nav {
  width: 100%;
  padding: 20px;
	background-color: #ffffff;
}
.site-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #ff7f50;
}

/* Masonry Layout */
.masonry-gallery {
  column-count: 3;
  column-gap: 18px;
  padding: 25px 0;
}
.masonry-gallery img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 6px;
  display: block;
  break-inside: avoid;
}

/* Responsive */
@media (max-width: 900px) {
  .masonry-gallery {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .masonry-gallery {
    column-count: 1;
  }
}
.hero-parallax {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  background-image: url("https://umako.shop/wp-content/uploads/2025/11/top001.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  box-sizing: border-box;
  color: #fff;
}

/* テキストやボタンの配置 */
.hero-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-title {
  font-size: 6rem !important;
  font-weight: 700 !important;
  margin: 1rem !important;
color: #fffacd !important;
	opacity: 0.8;
}

.hero-btn {
  padding: 14px 28px;
  font-size: 2rem;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block; /* 改行や整列が安定します */
	line-height: 0.9;
}

.hero-btn small {
  font-size: 1rem; /* 小さくしたいサイズをここで調整 */
  font-weight: 400; /* 少し軽くすると見栄えが良い */
  opacity: 0.9;
line-height: 0.9;
  display: inline-block;
  margin-top: -2px;
}

.hero-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* スマホ切り替え */
@media (max-width: 768px) {
  .hero-parallax {
    height: 90vh;
    background-attachment: scroll; /* スマホはfixed非対応が多い */
    padding: 0 5%;
  }

  .hero-inner {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 6rem !important;
  }

  .hero-btn {
    font-size: 2rem;
    padding: 12px 24px;
	 margin-bottom:1em;
  }
}

