/*//*/ @charset "utf-8";
body {
  font-family: "BIZ UDMincho";
  background-color: #121210;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
h2 {
  font-size: 20px;
}
h3 {
  font-size: 18px;
}
@media screen and (min-width:960px) {
  body {
    font-size: 16px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 20px;
  }
}
/*ヘッダーここから*/
.header {
  background-color: #121210;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}
/* ヘッダーのロゴ部分 */
.header__title {
  width: 100px;
  margin: 0 auto;
}
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}
/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateY(-100%);
  background-color: #717815; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s;
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 30px;
  height: 100%;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
.hamburger span {
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/*ハンバーガーメニュークリック後のスタイル*/
.header__nav.active {
  transform: translateY(0);
}
.hamburger.active span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -14px;
  transform: rotate(-45deg);
}
.nav-items {
  padding-top: 250px;
  padding-bottom: 200px;
}
/* ナビのリンク */
.nav-items__item a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 70px;
}
.nav-items__item:nth-of-type(3) {
  display: none;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}
@media screen and (min-width:960px) {
  .header-title {
    display: none;
  }
  .hamburger {
    display: none;
  }
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin: 0 auto;
  }
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
  }
  .pc-title {
    width: 100px;
  }
  .nav-items__item a {
    margin-bottom: 0;
    font-size: 18px;
  }
  .nav-items__item:nth-of-type(3) {
    display: block;
  }
}
/*フッターここから*/
.footer {
  width: 100%;
  margin-top: 80px;
}
.footer-content {
  padding: 30px;
  background-color: #717815;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #fff;
}
.footer-content img {
  width: 60px;
}
.footer-content p {
  text-align: center;
  line-height: 1.5;
  font-family: "BIZ UDGothic";
  color: #fff;
}
.address {
  width: 100%;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  font-size: 14px;
}
.copy {
  background-color: #717815;
  font-size: 12px;
}
@media screen and (min-width:960px) {
  .address {
    width: 50%;
  }
  iframe {
    height: 400px;
  }
}
.wrapper {
  padding: 0 6%;
}
.slide {
  position   : relative;
  max-width  : 100%;
  height     : 100vh;
  margin     : auto;
  overflow   : hidden;
}
/* スライドショー背景の設定 */
.slide .bgImg {
  position   : absolute;
  top        : 0;
  left       : 0;
  bottom     : 0;
  right      : 0;
  opacity    : 0;
  background-size:cover;
  animation  : pseudoAnimation 20s infinite; /* infiniteで繰り返す */ 
}

/* 時間差で背景画像のアニメーションを開始 */
.slide .srcImage1 {
  background-image : url( "../img/slide1.jpg");   /* 背景の画像を指定 */
}
.slide .srcImage2 {
  background-image : url( "../img/slide2.jpg");   /* 背景の画像を指定 */
  animation-delay  : 5s;
}
.slide .srcImage3 {
  background-image : url( "../img/slide3.jpg");   /* 背景の画像を指定 */
  animation-delay  : 10s;
}
.slide .srcImage4 {
  background-image : url( "../img/slide4.jpg");   /* 背景の画像を指定 */
  animation-delay  : 15s;
}

@keyframes pseudoAnimation {
   0% { opacity: 0; }
   5% { opacity: 1; } /* 表示タイミングをずらしてフェードイン風に */
  25% { opacity: 1; }
  30% { opacity: 0; }
 100% { opacity: 0; }
}
.parallax {
/* パララックスをつくる部分 */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width:960px) {
  .wrapper {
    padding: 0 15%;
  }
}
.message {
  height: 60vh;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
  background-image: url("../img/51311483.jpg");
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  background-color: #080906;
}
.message p {
  writing-mode: vertical-rl;
  width: 100%;
  text-align: justify;
  line-height: 2;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (min-width:960px) {
  .message {
    height: 80vh;
    background-size: 110%;
    background-position: 200% 60%;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .message p {
    align-items: flex-start;
    margin-right: 500px;
    line-height: 3;
    font-size: 20px;
  }
}
.section-title__1 {
  writing-mode: vertical-rl;
  margin-bottom: 35px;
  margin-top: 100px;
}
.section-title__1 h2 {
  border-left: 1px solid #fff;
  padding-left: 3px;
  margin-left: 3px;
}
.section-title__2 {
  writing-mode: vertical-rl;
  margin: 0 0 35px auto;
  display: flex;
  flex-direction: column-reverse;
  padding-right: 4%;
}
.section-title__2 h2 {
  border-right: 1px solid #fff;
  padding-right: 3px;
  margin-right: 3px;
}
@media screen and (min-width:960px) {
  .section-title__2 {
    padding-right: 15%;
  }
}
.section__news ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-list div {
  display: flex;
  gap: 10px;
  font-size: 12px;
  width: 100%;
}
.news-list li {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #707070;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-list li:nth-child(1) {
  padding: 15px 0;
  border-top: 1px solid #707070;
}
@media screen and (min-width:960px) {
  .news-list div {
    font-size: 15px;
    width: 25%;
    gap: 10%;
  }
  .news-list li {
    padding: 30px 0;
    flex-direction: row;
    align-items: center;
    width: 80%;
  }
  .news-list li:nth-child(1) {
    padding: 30px 0;
  }
}
.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 170px;
  height: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  background-color: #717815;
  margin: 50px auto 0;
}
@media screen and (min-width:960px) {
  .btn a {
    font-size: 18px;
    margin: 100px auto 0;
    width: 255px;
    height: 75px;
  }
}
.btn a:before {
  content: '';
  position: absolute;
  top: calc(50% - 4.5px);
  right: -26px;
  transform: rotate(40deg);
  width: 12px;
  height: 1px;
  background-color: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.btn a:hover::before {
  right: -36px;
}
.btn a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.btn a:hover::after {
  right: -36px;
}
.section__flex {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 20px;
  height: 30vh;
  margin-top: 100px;
}
@media screen and (min-width:960px) {
  .section__flex {
    height: 60vh;
    gap: 100px;
  }
}
.section__flex img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/*カルーセルスライダー*/
.carousel {
  text-align: center;
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
}
.carousel img {
  width: 100%;
  object-fit: cover;
}
.carousel div {
  margin: 0 10px;
}
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width:960px) {
  .carousel div {
    margin: 0 60px 0 30px;
  }
  .slick-dots li button:before {
    font-size: 20px; /*初期値は6px*/
    margin-top: 30px;
  }
}
.store-date {
  margin-top: 30px;
}
.slick-dots li.slick-active button:before {
  opacity: .75;
  color: red;
}
table {
  margin-top: 20px;
}
th, td {
  padding: 10px 20px 10px 0;
}
th {
  width: 30%;
  text-align: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
  font-weight: normal;
}
td {
  width: 70%;
}
@media screen and (min-width:960px) {
  th {
    width: 10%;
  }
  td {
    width: 90%;
  }
}
.container {
  margin-top: 80px;
}
.accordion {
  max-width: 700px;
  margin: 0 auto 7px auto;
  border-bottom: 1px solid #707070;
  font-size: 14px;
}
.accordion summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 0.5em;
  color: #fff;
  cursor: pointer;
}
.accordion summary div {
  width: 100%;
  font-size: 12px;
  display: flex;
  gap: 5%;
  margin-bottom: 5px;
}
@media screen and (min-width:960px) {
  .accordion {
    font-size: 18px;
  }
  .accordion summary div {
    width: 30%;
    gap: 10%;
    font-size: 14px;
  }
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 2px solid #707070;
  border-right: 2px solid #707070;
  content: '';
  transition: transform .3s;
}
.accordion[open] summary::after {
  transform: rotate(225deg);
}
.accordion p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 0.5em 1.5em;
  color: #fff;
  transition: transform .5s, opacity .5s;
}
.accordion[open] p {
  transform: none;
  opacity: 1;
  font-size: 0.8em;
}
.page-title {
  position: relative;
  margin-top: 80px;
  height: 40vh;
  width: 100%;
  background-attachment: fixed;
}
.page-title h2 {
  position: absolute;
  writing-mode: vertical-rl;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}
.page-title__news {
  background-image: url("../img/gate.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  width: 100%;
}
.page-title__menu {
  background-image: url("../img/63632563.jpg");
  background-size: cover;
  background-position: center;
}
.page-title__about {
  background-image: url("../img/bonsai.jpg");
  background-size: cover;
  background-position: center 600px;
}
@media screen and (min-width:960px) {
  /*.page-title__news{
		background-position: center 700px;
	}*/
}
.about-box {
  display: flex;
  flex-direction: column;
  gap: 30px
}
.text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.5;
}
.box2 {
  margin-top: 50px;
}
.image img {
  filter: blur(10px);
  animation: blur-anim2 2s linear forwards;
}
@keyframes blur-anim2 {
  100% {
    filter: blur(0);
  }
}
@media screen and (min-width:960px) {
  .about-box {
    flex-direction: row;
    align-items: center;
  }
  .text {
    width: 40%;
  }
  .image {
    width: 60%;
  }
  .image img {
    object-fit: cover;
  }
  .box2 {
    margin-top: 100px;
    flex-direction: row-reverse;
  }
}
.set {
  padding-top: 0;
}
.menu {
  margin-top: 100px;
  width: 100%;
}
@media screen and (min-width:960px) {
  .menu {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
}
.menu h3 {
  text-align: center;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 0;
  margin-top: 30px;
  width: 100%;
}
.image_box {
  overflow: hidden;
  max-height: 300px
}
.item img {
  margin-bottom: 30px;
  width: 100%;
  display: block;
  transition-duration: 0.3s;
  object-fit: cover;
  object-position: center center;
}
.item img:hover {
  transform: scale(1.1); /*画像の拡大率*/
  transition-duration: 0.3s; /*変化に掛かる時間*/
}
.item p {
  padding: 2% 5%;
}
.addition {
  padding: 0 6%;
}
.addition dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 30px;
}
.addition dt {
  width: 50%;
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #707070;
  font-weight: normal;
}
.addition dd {
  width: 50%;
  text-align: right;
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #707070;
}
.addition span {
  font-size: 0.8em;
}
.remarks {
  text-align: right;
  font-size: 0.8em;
  margin-top: 30px;
  padding-right: 6%;
}
.remarks p {
  margin-top: 10px;
}
.sweets__text {
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
  padding: 0 6%;
}
.sweets__text span {
  font-size: 0.8em;
}
/*フェードインの設定*/
.fadein {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 500ms;
}
/* 画面内に入った状態 */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}