@charset "UTF-8";

html {
  font-size: 100%;
}
body {
  background-color: #090909;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.7;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "MS PMincho", serif;
}
a {
  color: #cecece;
  text-decoration: none;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}

.section-title {
  margin: 0 auto;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 30px;
  font-size: 36px;
}

/*------------------------------------
header
------------------------------------*/
#header {
  width: 100%;
}
.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2em;
}
.nav-menu {
  display: flex;
  gap: 2em;
  margin-right: 30px;
  margin-top: 30px;
  padding: 0;
  font-size: 16px;
  z-index: 10;
}
.nav-menu li:hover {
  opacity: 0.5;
}
.toggle-btn {
  display: none;
  position: fixed;
  top: 35px;
  right: 25px;
  width: 30px;
  height: 12px;
  transition: all .5s;
  cursor: pointer;
  z-index: 20;   /*ヘッダー部分よりも手前ににするために20 */
}
.toggle-btn span {
  display: block;
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: #d9d9d9;
  transition: all .5s;
}
.toggle-btn span:nth-child(1) {
  top: 0px;
}
.toggle-btn span:nth-child(2) {
  top: 5px;
  width: 23px;
}
.toggle-btn span:nth-child(3) {
  bottom: 0px;
  width: 16px;
}

/*-------SP header -------*/
@media screen and (max-width:768px){
  /*  ハンバーガーメニュー閉じているとき  */
  .nav {
    flex-direction: column;
    justify-content: center;
  }
  .nav-menu {
    position: fixed;
    max-width: 768px;
    width: 100%;
    left: -600px;
    top: 0;
    bottom: 0;
    flex-direction: column;
    text-align: center;
    margin: 90px auto;
    padding: 60px 25px;
    z-index: 20;
    opacity: 0;
    transition: all 1s;
  }
  .toggle-btn {
    display: block;
  }
  /*  ハンバーガーメニュー開いているとき  */
  .open .toggle-btn span {
    background-color: #d9d9d9;
  }
  .open .toggle-btn span:nth-child(1) {
    -webkit-transform: translateY(4px) rotate(-45deg);
    transform: translateY(5px) rotate(-45deg);
  }
  .open .toggle-btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle-btn span:nth-child(3) {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-5px) rotate(45deg);
    width: 100%;
  }
  .open .nav-menu {
    left: 0;
    opacity: 1;
  }

  /*  クリックされていない時は非表示  */
#mask {
  display: none;
  transition: all 1s;
}

/*  クリックされた時に表示  */
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  z-index: 10;  /*  nav-menuよりは背面になる  */
  }
}

/*------------------------------------
Main
------------------------------------*/
#main {
  position: relative;
  width: 100%;
  height: 100vh;
  text-align: center;
}
.mainvisual-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vertical-text {
  writing-mode: vertical-lr;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vertical-text p {
  font-size: 2vw;
  margin-top: 2vw;
  letter-spacing: 0.3em;
}
.vertical-text h1 {
  font-size: 6vw;
  margin-left: 5vw;
  letter-spacing: 0.2em;
}

@media screen and (max-width:768px){
  #main {
    height: 60vh;
  }
  .container {
    height: 60vh;
  }
}

.scroll-down {
  width: scale(100vw - 40px);
  position: absolute;
  bottom: 0;
  right: 5%;
}
.scroll-btn {
  width: 160px;
  height: 160px;
  background-color: #D9D9D91A;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.scroll-btn span {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.scroll-btn:hover {
  opacity: 0.2;
}
@media screen and (max-width:768px){
  .scroll-down {
    bottom: -5%;
  }
  .scroll-btn {
    width: 120px;
    height: 120px;
  }
  .scroll-btn span {
  font-size: 12px;
  }
}

/*----------------------------------------
#news
-----------------------------------------*/
#news {
  width: 100%;
  margin-top: 100px;
}
.news-list {
  width: calc(100vw - 40px);
  max-width: 600px;
  margin-left: 50px;
  border-radius: 30px;
  background-color: #919294;
  padding: 40px;
  box-shadow: 0 2px 9px 2px rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.news-list h2 {
  font-size: 26px;
  letter-spacing: 0.2em;
  padding-bottom: 20px;
}
.news-list p {
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: justify;
}

@media screen and (max-width:768px){
  #news {
    width: 100%;
    margin-top: 120px;
  }
  .news-list {
    margin: 0 auto;
  }
}

/*----------------------------------------
#about
-----------------------------------------*/
#about {
  margin: 100px 50px 0px 50px;
  padding-top: 50px;
}
.about__wrapper {
  width: calc(100vw - 40px);
  width: 100%;
  position: relative;
  aspect-ratio: 16/ 9;
  overflow: hidden;
}
.about__img {
  position: absolute;
  width: 50%;
  height: auto;
  object-fit: cover;
  transform: translateY(-18%) ;
  top: 0;
  right: 0;

}
.about__description {
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateY(-20%);
  width: 75%;
  height: auto;
  color: #090909;
  background-color: rgba(225, 225, 225, 1);
}
.about__text {
  width: 60%;
  height: 100%;
  padding: 5%;
  margin-left: 25px;
}
.about__text h2 {
  padding-bottom: 15px;
  font-size: clamp(1.125rem, -0.046rem + 2.44vw, 3rem);
}
.about__text p {
  font-size: clamp(0.875rem, 0.485rem + 0.81vw, 1.5rem);
  line-height: 1.8;
  letter-spacing: 0.08rem;
}

/*  about-sp  */
@media screen and (max-width:768px) {
  #about {
    margin: 0;
    padding-top: 80px;
  }
  .about__wrapper {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    width: 100%;
    gap: 0;
  }
  .about__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: static;
    order: 1;
    transform: none;
  }
  .about__description {
    position: static;
    order: 2;
    width: 90%;
    height: auto;
    transform: none;
    padding: 20px;
    background-color: rgba(225, 225, 225, 1);
  }
  .about__text {
    width: 100%;
    margin: 0;
    padding: 20px;
  }
  .about__text h2, .about__text p {
    margin: 0; 
  }
  .about__text h2 {
    padding-bottom: 20px;
  }
  .about__text p {
    width: 100%;
  }
}

/*----------------------------------------
background(玉ねぎとマッシュルーム)
-----------------------------------------*/
.background-img {
  width: 100%;
  height: auto;
  position: relative;
  border: none;
  padding: 0;
  background: transparent;
  overflow: hidden;
  box-sizing: border-box;
}
.background-img img {
  line-height: 1;
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
  border: none;
}
.background-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1)0%,
    rgba(0,0,0,0.5)50%,
    rgba(0,0,0,0.7)70%,
    rgba(0,0,0,1)100%
  );
  z-index: 1;
}
@media screen and (max-width:768px){
  .background-img {
    padding-top: 80px;
  }
}

/*----------------------------------------
#work
-----------------------------------------*/
#work .work__content {
  display: flex;
  gap: 80px;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  width: 100%;
}
#work .work__item {
  width: 40%;
}
#work .item__title {
  text-align: center;
  padding-bottom: 20px;
  font-size: clamp(1.125rem, 0.846rem + 0.66vw, 1.75rem);
}
#work .work__img {
  padding-bottom: 10px;
  width: 100%;
  max-width: 1800px;
}
#work .work__description {
  font-size: clamp(0.875rem, 0.596rem + 0.66vw, 1.5rem);
  padding: 15px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
/*  work-sp  */
@media screen and (max-width:768px) {
  #work .section-title {
    font-size: 24px;
  }
  #work .work__content {
    flex-direction: column;
    max-width: 100%;
  }
  #work .work__item {
    width: 100%;
  }
  #work .work__description {
    padding: 20px;
    margin-bottom: 20px;
  }
}

/*----------------------------------------
#merchandise
-----------------------------------------*/
#merchandise {
  margin: 0 auto;
  padding-bottom: 50px;
  background-image: url(../img/Vector.png);
  background-size: 140% 76%;
  background-position: center 98%;
}
.merchandise__container {
  margin: 2rem;
}
.merchandise__inner {
  display: flex;
  margin: 2rem auto;
  padding: 20px 30px;
}
.inner__text,.inner__item {
  width: 50%;
}
.inner__text {
  margin: auto 3rem;
}
.inner__title {
  font-size: clamp(1.125rem, 0.422rem + 1.46vw, 2.25rem);
  padding-bottom: 30px;
}
.inner__description {
  font-size: clamp(0.875rem, 0.405rem + 0.98vw, 1.75rem);
}
.merchandise__inner:nth-child(even) {
  flex-direction: row-reverse;
}

/*  merchandise sp  */
@media screen and (max-width:768px){
  #merchandise {
    background-image: none;
  }
  .merchandise__inner {
    flex-direction: column;
  }
  .merchandise__inner:nth-child(even) {
    flex-direction: column;
  }
  .merchandise__inner img {
    width: 100%;
    margin-bottom: 25px;
  }
  .inner__title {
    padding-bottom: 30px;
  }
  .inner__text {
    margin: 0;
    padding-bottom: 20px;
    width: 100%;
  }
}


/*----------------------------------------
#contact
-----------------------------------------*/
#contact {
  text-align: center;
}
.contact__btn {
  background-color: #fff;
  border-radius: 100vh;
  padding: 20px;
  color: rgba(0, 0, 0, 1);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
  max-width: 460px;
  font-size: clamp(0.875rem, 0.405rem + 0.98vw, 1.75rem);
}
.arrow {
  width: 46px;
  height: 46px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.contact__btn:hover .arrow {
  transform: translateX(5px);
}

/*----------------------------------------
#instagram
-----------------------------------------*/
#instagram {
  width: 100%;
  padding: 100px 0 50px 0;
}
.slick-area li {
  padding-right: 3px;
}

/*  instagram sp  */
@media screen and (max-width:768px){
  #instagram {
    margin-bottom: 100px;
  }
}

/*----------------------------------------
#footer
-----------------------------------------*/
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__text-area {
  margin-left: 80px;
  line-height: 1.7;
  letter-spacing: 0.15rem;
}
.site-title {
  font-size: 24px;
  padding-bottom: 10px;
}
.address {
  font-size: 16px;
}
.footer__sns {
  display: flex;
  justify-content: center;
  max-width: 200px;
  margin: 0 50px;
}
.footer__sns img {
  padding-left: 30px;
  cursor: pointer;
}
.footer__sns img:hover {
  opacity: 0.8;
}
.footer__sns ul {
  display: flex;
}
.footer__sns li:nth-child(3) {
  margin-top: 3px;
}
.copyright {
  text-align: center;
  font-size: 0.75rem;
  margin: 30px;
}

/*  footer sp  */
@media screen and (max-width:768px) {
  .footer__wrapper {
    flex-direction: column;
    text-align: center;
  }
  .site-title {
  padding-bottom: 35px;
}
  .footer__text-area {
    margin-left: 0;
    margin-bottom: 40px;
  }
  .footer__sns {
    margin-left: 20px;
  }
  .footer__sns li {
    padding-left: 20px;
  }
  .footer__sns img {
    padding-left: 0;
  }
}