@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=Limelight&family=Noto+Sans+JP:wght@100..900&display=swap');





/*============================
	header
============================*/
.header {
  width: 100%;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header__logo {
  width: 16.7rem;
  position: absolute;
  top: 3rem;
  left: 4rem;
}



.header__hamburger-sp {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}



.header__contents {
  display: flex;
  align-items: center;
  gap: 7.5rem 6rem;
  position: absolute;
  right: 10rem;
}


.header__nav-list {
  display: flex;
  gap: 2rem 4rem;
  padding: 4rem 0;
 color: #fff;
}



.header__nav-list a {
  font-size: 10px;
  font-weight: 900;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
}

.header__contents .header__nav-list li span{
  text-align: center;
}


.header__nav-list a span {
  font-family: "Kosugi Maru", sans-serif;
  font-size: max(18px, 3.3rem);
  font-weight: 400;
}

.header__sns li {
  width: max(24px, 4.2rem);
  height: max(24px, 4.2rem);
  padding-top: 0rem;
}

.header__nav-list li{
  position: relative;
}

  .header__nav-list li::before{
    content: "";
    background: url(../img/bee-y.svg);
    background-repeat: no-repeat;
    width: 3rem;
    height: 3rem;
    opacity: 0;
    position: absolute;
    top:-3rem;
    left: 20%;
    transition: 0.3s ease-in-out;
  }


   .header__sns li{
    position: relative;
   }

  .header__sns li::before{
    content: "";
    background: url(../img/bee-y.svg);
    background-repeat: no-repeat;
    width: 3rem;
    height: 3rem;
    opacity: 0;
    position: absolute;
    top:-3.4rem;
    left: 20%;
    transition: 0.3s ease-in-out;
  }





@media (max-width: 767px) {

.header__contents {
position: fixed;
gap: 0;
}

.header__nav-list{
  color: #000;
  gap: 8rem;
}

.header__sns li {
  margin: 0 auto;
}

.header__sns li {
  margin: 0 auto;

}



}

/*============================
	hero
============================*/
.hero {
  background: url("../img/mv1.jpg") no-repeat center / cover;
  width: 100%;
  height: 40rem;
  color: #fff;
  display: grid;
  place-content: center;
  padding-top: 6rem;
  position: relative;
}

.hero::before {
  content: "";
  background-color:#000;
  opacity: 0.6;
  position: absolute;
  inset: 0;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero__ttl {
  color:#fff;
  font-size: max(32px, 8rem);
  font-weight: 400;
  z-index: 1;
}

/*-------------------------
  lower_sec
---------------------------*/
.lower_sec {
  padding: 12rem 0 15rem;
  background: url(../img/main-bg.jpg);
}

.lower_sec-inner {
  color: #fff;
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .lower_sec-inner {
    width: 90%;
  }
}

/*-------------------------
  concept
---------------------------*/
.concept__contents:not(:last-of-type) {
  margin-bottom: 8rem;
}

.concept__ttl {
  border-bottom: solid 2px rgba(255, 255, 255, 0.8);
  font-size: max(14px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1rem 0 1.5rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.concept__ttl::before {
  content: "";
  width: 20%;
  border-bottom: solid 3px #e69c2f;
  position: absolute;
  bottom: -3px;
}

.concept__wrapper {
  display: flex;
  gap: 2rem 5%;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .concept__wrapper {
    flex-direction: column;
  }
}

.concept__img {
  width: 35%;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__txt {
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 2;
}

/*-------------------------
  menu
---------------------------*/
.menu__btn-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.menu__btn {
  width: 100%;
  height: max(50px, 7rem);
  font-size: max(12px, 2rem);
  letter-spacing: 0.3em;
  display: grid;
  place-content: center;
  background-color: var(--sub-color);
  color: #000;
}

@media (max-width: 767px) {
  .menu__btn {
    height: max(40px, 7rem);
  }
}

.current .menu__btn {
  background-color: var(--sub-color2);
  color: #000;
}

/*-------------------------
  news
---------------------------*/

.lower_sec .CMS-NEWS-INDEX {
  display: flex;
  gap: 4rem;
  color: #fff;
  flex-wrap: wrap;

}

.lower_sec .CMS-NEWS-ITEM{
  width: 30%;

}


 @media (max-width: 768px) {

.CMS-NEWS-INDEX{
  width: 100%;
  flex-direction: column;
}

.lower_sec .CMS-NEWS-ITEM{
  width: 100%;
}

 }


.CMS-NEWS-MORE-READ {
  background-color: var(--sub-color);
  width: 38rem;
  height: 7rem;
  color: #000;
  text-align: center;
  transition: 0.3s ease-in-out;
  margin: 0 auto;
  display: block;
  position: absolute;
  bottom: -10rem;
  left: 50%;
  transform: translate(-50%, 0);
}

@media (min-width: 768px) {
  .CMS-NEWS-MORE-READ:hover {
    opacity: 0.6;
  }
}

@media (max-width: 767px) {
  .CMS-NEWS-MORE-READ {
    width: 100%;
    height: 8rem;
  }
}

/*-------------------------
  newsdetail
---------------------------*/
.CMS-NEWS-DETAIL {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.CMS-NEWS-TITLE {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: solid 1px rgba(255, 255, 255);
  padding: 1rem 0 1.2rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.CMS-NEWS-TITLE:after {
  content: "";
  display: block;
  width: 25%;
  border-bottom: solid 3px var(--red);
  position: absolute;
  bottom: -3px;
}

.CMS-NEWS-CONTENT img {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto 2rem auto;
}

/*-------------------------
  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;
  }
}

.lower_sec .lower_sec-inner ul li a img{
  height: 100%;
  object-fit: cover;
}


/*-------------------------
  shop
---------------------------*/
.map {
  margin: 0 auto 4rem;
}

.shop__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 4rem;
  border-radius: 2rem;
}

.shop__list dt,
.shop__list dd {
  /* border-bottom: solid 1px #fff; */
  letter-spacing: 0.08em;
  line-height: 2;
  padding: 2rem;
  border: solid 1px #fff;
}

.shop__list dt {
  width: 30%;
  font-weight: 700;
  white-space: nowrap;
  background-color: #e69c2f;
}

.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;
  }
}

.shop__underline {
  text-decoration: underline;
}
