@charset "utf-8";
/* CSS Document */

.news-block { 
    width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 50px;
 }

.news-block_tittle{
	font-size:13px !important;
	padding-bottom:5px !important;
	background:#fff;
	color:#4d4d4d;
        text-align:center;
	margin:15px 5% 10px 0;
	font-size:110%;
	font-weight:bold !important;
        font-family: "Noto Sans JP", sans-serif;
        text-align: left;
}

.main-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.main-container div {
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
}

.main-inner1 { background-color: #ae7d8b; }
.main-inner2 { background-color: #937287; }
.main-inner3 { background-color: #abae4c; }
.main-inner4 { background-color: #5385b0; }
.main-inner5 { background-color: #b8747e; }
.main-inner6 { background-color: #ac7e53; }

.main-container div img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.main-container div:hover {
  transform: scale(1.01); /* 少し拡大 */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* 影を追加 */
  transition: 0.5s;
}

.back-to-top {
  text-align: center;
  margin: 50px 0 50px 0; 
}

.back-to-top a {
  text-decoration: none;
  display: inline-block;
  color: #ffffff;
  font-family: "Sawarabi Mincho";
  background-color: #bccad0;
  padding: 22px 80px;
  font-size: 1.5rem;
  font-weight: 500;
  transition: 0.3s;
}

.back-to-top a:hover {
  background-color: #d8e2e6;
  transform: translateY(-2px);
}

.back-to-top a p {
  margin: 0;
}

.shop-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.shop-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.shop-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  padding: 25px 20px 10px;
  flex: 1 1 400px;
  max-width: 420px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.shop-card h3 {
  font-size: 1.3rem;
  color: #503b2a;
  margin-bottom: 12px;
  border-bottom: 2px solid #bccad0;
  display: inline-block;
  padding-bottom: 4px;
}

.shop-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 6px 0;
}


/* マップ部分 */
.map {
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
}



/* SP START */
@media (max-width: 768px){
  #header_logo{
    width:100%;
    text-align: center;
  }

.news-block { 
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
 }

.back-to-top a {
    padding: 15px 40px;
    font-size: 1.1rem;
  }

.main-container {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
  }

  .main-container div {
    padding: 0;
    border-radius: 0;
  }

  .main-container div img {
    border-radius: 0;
  }

.shop-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .shop-card {
    max-width: 90%;
    margin: 0 auto;
  }
}


} 
/* SP FIN */

@media (min-width: 768px) {
   .for-sp{
      display:none;
    }
}
