@charset "UTF-8";

/*-------------------------------------------
Mainvisual
-------------------------------------------*/
.mainvisual {
  height: 900px;
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}
.mainvisual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 40, 20, 0.2);
  z-index: 1;
}
.mainvisual  .fade-img  img{
  width: 100%;
  height: 100%;
 object-fit: cover;
}
.mainvisual .fade-img li {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  opacity: 0;
  animation: fade 15s infinite;
}
.mainvisual  .fade-img #img2 img{
  object-position: center center;
  filter: brightness(120%)  sepia(15%) contrast(105%) saturate(110%) blur(1px);
}
.mainvisual  .fade-img #img5 img{
  object-position: center center;
  filter: brightness(120%)  sepia(15%) contrast(105%) saturate(110%) blur(1px);
}
.mainvisual  .fade-img #img3 img{ 
  object-position: center center;
  filter: brightness(120%)  sepia(15%) contrast(105%) saturate(110%) blur(1px);
}
.mainvisual .fade-img li:nth-child(1) {
  animation-delay: 0s;
}
.mainvisual .fade-img li:nth-child(2) {
  animation-delay: 5s;
}
.mainvisual .fade-img li:nth-child(3) {
  animation-delay: 10s;
}
@keyframes fade {
  0% { opacity: 0; }
  15% { opacity: 1; }
  30% { opacity: 1; }
  45% { opacity: 0; }
  100% { opacity: 0; }
}
.mainvisual .logo {
    position: absolute; 
    left: 50%;          
    transform: translateX(-50%); 
    bottom: 365px; 
    font-family: 'Times New Roman', sans-serif; /* Enzoフォント */
    color: #fff; 
    font-size: 60px; 
    font-weight: 700;
    letter-spacing: 0.1em;
    z-index: 10; 
}
/*-------------------------------------------
Btn
--------------------------------------------*/
.btn {
  width: 100%;
  max-width: 200px;
  border: solid 1px #ccc;
  background-color: #fff;
  color: #1f1f1f;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 60px;
  position: relative;
  text-align: center;
  display: block;
  margin: 0 auto;
  border-radius: 30px;
  white-space: nowrap;
  z-index: 10;
}
.btn:hover {
  background-color: #f5f5f5; 
  color: #1f1f1f; 
  border: solid 1px #888; 
}
/*-------------------------------------------
Information
-------------------------------------------*/
.information,
.shop{
   border-top:1px solid #ccc;
}
.information .text ,
.shop .text {
    width: 90%;
    max-width: 1800px; 
    margin: 0 auto; 
    padding: 0 20px; 
    text-align: left; 
    margin-bottom: 40px;
}
.information .text .section-title ,
.shop .text .section-title{
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 5px;
}
.information .text .title ,
.shop .text .title{
  font-size: 14px;
  margin-bottom: 40px;
}
/*-------------------------------------------
Information (Top Page JS用)
-------------------------------------------*/
/* ulのid　#index-news-list*/
#index-news-list {
  max-width: 1000px; 
  margin: 0 auto 40px; 
  padding: 0 20px;   
  text-align: left;   
}
#index-news-list li {
  border-bottom: 1px solid #ccc; 
  padding: 5px 0px;
}
#index-news-list li .text {
  margin-bottom: 10px;
}
#index-news-list li .text a {
  display: flex;      
  align-items: center;
  text-decoration: none;
}
#index-news-list li .text time {
  font-size: 14px;
  width: 120px;       
  flex-shrink: 0;
}
#index-news-list li .text .title {
  font-size: 16px;
  margin: 0;
}
/*-------------------------------------------
Shop-item 
-------------------------------------------*/
.shop-item-group {
    display: flex;
    width:48%; 
    gap: 20px;
    margin-bottom: 60px;
    padding: 0;
}
.shop-item {
    width: 100%; 
    padding-right: 0;
}
.shop-item-text {
    width: 60%;
    height: 300px;
    overflow: auto;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    padding-left: 0px;
}
.shop-item-text .name {
  font-family: 'Times New Roman', sans-serif; /* Enzoフォント */
  color: #1f1f1f; 
  font-size: 24px;
  margin-bottom: 40px;
}
.shop-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.shop-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    width: 100%; 
}
/*-------------------------------------------
sns-link
--------------------------------------------*/
.shop-sns-links {
  text-align: left;
  margin-top: 20px;
}
.shop-sns-links a {
    width: 30px; 
    height: 30px;
}
.shop-sns-links .instagram-icon {
    font-size: 24px; 
    color: #1f1f1f; 
}
/*-------------------------------------------
スマートフォン767px以下
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .mainvisual{
    height: 400px;
    margin-bottom: 60px;
  }
  .mainvisual .fade-img img {
    height: 400px;
  }
  .mainvisual .fade-img li {
    width: 100%;
  }
  .mainvisual .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 120px;
    width: 30vw;
    margin: 0;
    z-index: 10;

}
/*-------------------------------------------
Information
-------------------------------------------*/
.information ,
.shop {
  margin-bottom: 60px;
}
.information .section-title,
.shop .section-title {
  margin: 0 0 20px;
  text-align:left;
  font-size: 24px;
}
.information .text,
.shop .text {
  flex-direction: column;
}
.information .text .title ,
.shop .text .title {
  font-size: 12px;
  margin-bottom: 40px;
}
/*-------------------------------------------
information News List
-------------------------------------------*/
 #index-news-list li .text a {
   flex-direction: column; 
   align-items: flex-start;
 }
 #index-news-list li .text time {
   margin-bottom: 5px;
 }
/*-------------------------------------------
Shop-item
-------------------------------------------*/

.shop-item-group {
  width: 100%;
  margin-bottom: 40px;
  flex-direction: column;
}
.shop-item {
  width: 100%;
}
.shop-item-text {
  width: 100%;
  height: auto;
  padding-top: 15px;
}
.shop-item img {
  height: 250px;
}
}