@charset "UTF-8";

.preparation {
  font-size: max(20px, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

/*============================
	hero
============================*/
.hero {
  background: url("../img/mv_1.jpg") no-repeat center / cover;
  width: 100%;
  height: 40rem;
  color: var(--white);
  display: grid;
  place-content: center;
  padding-top: max(60px, 10rem);
  position: relative;
}

.hero::before {
  content: "";
  background-color: var(--green);
  opacity: 0.8;
  position: absolute;
  inset: 0;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding-top: max(60px, 8rem);
  }
}

.hero__ttl {
  font-size: max(14px, 2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem 2rem;
}

.hero__ttl span {
  font-size: max(24px, 4rem);
  letter-spacing: 0.1em;
}

/*-------------------------
  lower_sec
---------------------------*/
.lower_sec {
  padding: 12rem 0;
}

.lower_sec-inner {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .lower_sec-inner {
    width: 90%;
  }
}

/*-------------------------
  about
---------------------------*/
.about__contents:not(:last-of-type) {
  margin-bottom: 8rem;
}

.about__ttl {
  border-bottom: solid 1px rgba(55, 48, 50, 0.4);
  font-size: max(14px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1rem 0 1.5rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.about__ttl::before {
  content: "";
  width: 20%;
  border-bottom: solid 3px var(--green);
  position: absolute;
  bottom: -3px;
}

.about__wrapper {
  display: flex;
  gap: 2rem 5%;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .about__wrapper {
    flex-direction: column;
  }
}

.about__img {
  width: 35%;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
  }
}

.about__txt {
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 2;
}

/*-------------------------
  others
---------------------------*/
.others__ttl {
  border-bottom: solid 1px rgba(55, 48, 50, 0.4);
  font-size: max(14px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1rem 0 1.5rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.others__ttl::before {
  content: "";
  width: 20%;
  border-bottom: solid 3px var(--green);
  position: absolute;
  bottom: -3px;
}

.others_ttl-2 {
  background: #f1efe9;
  width: 100%;
  border-radius: 4px;
  font-size: max(14px, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.1rem;
  padding: 15px 0 15px 15px;
  margin: 8rem 0 3rem;
  position: relative;
}

.others__ttl-2::before {
  content: "";
  display: block;
  background: var(--black);
  width: 4px;
  height: 14px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}

.others_inner .common__btn{
  margin-top: 15rem;
 
}

.menu__list {
  margin-bottom: 8rem;
}

.menu__list-item {
  border-bottom: solid 1px #dcdcdc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem;
}

.menu__list-name {
  width: 65%;
  flex-shrink: 0;
}

.menu__list-name ul {
  display: flex;
  gap: 5px;
  margin-bottom: 1rem;
}

.menu__list-name ul li {
  background: #e0bcc0;
  border-radius: 2px;
  font-size: max(10px, 1.2rem);
  color: var(--white);
  padding: 5px 10px;
}

.menu__list-name p {
  font-size: max(14px, 1.8rem);
  font-weight: 600;
}

.menu__price {
  width: 100%;
  font-size: max(14px, 1.8rem);
  font-weight: 600;
  text-align: right;
}

.menu__txt {
  text-align: right;
}

/*-------------------------
  Blog
---------------------------*/

@media (max-width: 767px) {

}



@media (max-width: 767px) {


}


.CMS-Blog-MORE-READ {
  background-color: var(--green);
  width: 38rem;
  height: 7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  display: grid;
  place-content: center;
  position: absolute;
  transform: translateX(-50%);
  bottom: 0;
  left: 50%;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-Blog-MORE-READ:hover {
    opacity: 0.6;
  }
}

@media (max-width: 767px) {
  .CMS-Blog-MORE-READ {
    width: 100%;
    height: 8rem;
  }
}

/*-------------------------
  Blogdetail
---------------------------*/


/*-------------------------
  gallery
---------------------------*/
.gallery__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.gallery__list li {
  margin: 0 1rem 2rem;
}

.gallery__list a {
  display: block;
  width: 14vw;
  height: 14vw;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .gallery__list a {
    width: 19vw;
    height: 19vw;
  }
}

#swipebox-close {
  right: auto;
  left: 0;
}

@media (min-width: 800px) {
  #swipebox-close {
    right: auto;
    left: 10px;
  }
}

/*-------------------------
  shop
---------------------------*/
.map {
  margin: 0 auto 4rem;
}

.shop__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.shop__list dt,
.shop__list dd {
  border-bottom: solid 1px var(--black);
  letter-spacing: 0.08em;
  line-height: 2;
  padding: 2rem;
}

.shop__list dt {
  width: 30%;
  font-weight: 700;
  white-space: nowrap;
}

.shop__list dd {
  width: 70%;
}

@media (max-width: 767px) {
  .shop__list dt,
  .shop__list dd {
    width: 100%;
  }

  .shop__list dt {
    border-bottom: none;
    padding: 2rem 2rem 0;
  }

  .shop__list dd {
    padding: 0 2rem 2rem;
  }
}

.underline {
  text-decoration: underline;
}

/* 下層ブログページ */

#blog-list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5rem;
  width: 100%;
}

.blog-img{
  height: 20rem;
  width: 30rem;
  object-fit: cover;
}


/* blogdetailページ */
#blog-content p:nth-child(1){
  font-size: 1.4rem;
}

#blog-content h1{
  font-size: 2.3rem;
  font-weight: 500;
}



#blog-content .blog-content-title{
  padding-bottom: 3rem;
  text-align: center;
}

#blog-content .blog-content-icon{
 margin-bottom: 5rem;
}

#blog-content .blog-content-inner{
  width: 80rem;
  margin: 0 auto;
}

#blog-content .blog_details_img{
width: 80%;
margin: 3rem auto;
}

@media (max-width: 767px) {
  #blog-content .blog-content-inner{
    width: 100%;
  }

  #blog-list{
    grid-template-columns: 1fr;
    place-items: center;

  }

  .blog-img{
    height: 20rem;
    width: 40rem;
    object-fit: cover;
  }

  .inner_blog h2{
    width: 40rem;
  }


}

/* contact info */
.contact__contents{
  margin: 0 auto;
  width:110rem ;
  /* background-color: pink; */
}


.contact__list{
  display: flex;
  /* gap: 5rem; */
  padding: 5rem 0;
  width: 46%;
  flex-wrap: wrap;
  margin: 0 auto;
  /* text-decoration: underline solid 2px rgb(218, 124, 140); */

}

.contact__list dt,.contact__list dd{
  width: 25rem;
  /* border:solid salmon; */
  line-height: 5rem;
  

}
.contact__list dd{
  width: 25rem;
}

@media (max-width: 767px) {
  .contact__list{
    width:40%;
  }

  .contact__contents{
    margin: 0 auto;
    width:100%;
  }
  .contact__list dt,.contact__list dd{
    width: 100%;
  }
  
}



