@charset "utf-8";

/* 共通 */
body{
  font-family: 'Noto Sans JP', sans-serif;
  color: #0D0D0D;
}
img{
  width: 100%;
  height: auto;
  display: block;
}
a{
  color: #0D0D0D;
}
.pc-on{
  display: block;
}
.sp-on{
  display: none;
}
.shippori{
  font-family: 'Shippori Mincho', sans-serif;
}
.yuji{
  font-family: 'Yuji Syuku', sans-serif;
}
.highlight{
  color: #9E3E3F;
}
/* セクションタイトル */
.section-title .section-title-logo{
  margin: 0 auto;
  width: 64px;
}
.section-title .section-title-text{
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 24px;
  letter-spacing: 8px;
}
.section-title.top{
padding: 60px 0;
}
.section-title .section-title-text{
  margin: 8px auto 0;
}
.section-title.sub{
  position: absolute;
  top: 0;
  left: calc(-64px - 72px);
}



/* ボタン */
.btn{
  width: 200px;
  height: 50px;
  text-align: center;
  position: relative;
}
#sub-page .btn{
  width: 180px;
}
.btn.primary{
  background-color: #9E3E3F;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid rgba(158, 62, 63, 0);
  transition: all 2s;
}
.btn.primary::before{
  content: "";
  width: 196px;
  height: 46px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  transition: all 2s;
}
#sub-page .btn.primary::before{
  width: 176px;
}
.btn.primary::after{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(5%, 5%);
  background-color: #fff;
  transition: all 2s;
}
.btn a{
  display: block;
  width: 200px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  position: absolute;
  z-index: 1;
}
#sub-page .btn a{
  width: 180px;
}
.btn.primary a{
  color: #fff;
  transition: all 2s;
}
.btn.primary:hover{
  border: 1px solid #9E3E3F;
}
.btn.primary:hover::before{
  width: 200px;
  height: 50px;
  border: 2px solid #9E3E3F;
}
.btn.primary:hover::after{
  transform: translate(-50%, -25%);
}
.btn.primary:hover a{
  color: #9E3E3F;
}
.btn.secondary{
  border: 2px solid #fff;
  margin: 0 auto;
}
.btn.secondary a{
  color: #fff;
}

/* ページネーション */
.pagination ol{
  display: flex;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
}
.pagination li{
  border: 1px solid #909090;
  background-color: #fff;
  transition: all .8s;
}
.pagination li:hover,
.pagination li.is-active{
  background-color: #909090;
}
.pagination a,
.pagination span{
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  line-height: 14px;
  transition: all .4s;
}
.pagination li:hover a,
.pagination li.is-active a{
  color: #fff;
}

/* ヘッダー */
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  padding: 0 48px;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  opacity: .8;
  z-index: 1000;
  transition: all .7s;
}
body.admin-bar .header {
  top: 32px !important; /* WordPress管理バーの高さ */
}
.header-logo{
  width: 200px;
}
.header-nav-list{
  display: flex;
  align-items: center;
}
.header-nav-item{
  margin-right: 80px;
}
.header-nav-item a{
  color: #0D0D0D;
  transition: all .4s;
  position: relative;
}
.header-nav-item a::before{
  position: absolute;
  content: "";
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #0D0D0D;
  opacity: 1;
  transition: all .4s;
}
.header-nav-item a:hover{
  opacity: .7;
}
.header-nav-item a:hover::before{
  width: 100%;
  opacity: .7;
}
.header-nav-item:last-child{
  margin-right: 0;
}
.header-nav-item:last-child a{
  display: flex;
  align-items: center;
  height: 100%;
}
.header-logo-wrap{
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  line-height: 24px;
}

/* KV */
.kv{
  height: 100vh;
  overflow: hidden;
  position: relative;
  margin-bottom: 120px;
}
.kv-img{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.1);
  transition: opacity 2s ease-in-out, transform 2s ease-in-out, filter 2s ease-in-out;
  opacity: 0;
  filter: blur(0px);
  transform: scale(1);
}
.kv-img.active {
  opacity: 1;
  z-index: 2;
  filter: blur(0px);
  transform: scale(1);
}
.kv-img.inactive {
  opacity: 0;
  z-index: 1;
  filter: blur(1px);
  transform: scale(1.01);
}
.kv-catch{
  position: absolute;
  width: 150px;
  top: 55%;
  left: 6.25%;
  transform: translateY(-50%);
  z-index: 10;
}
.kv-wrap{
  position: absolute;
  width: 100%;
  z-index: 10;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.kv-logo{
  width: 360px;
  margin: 0 auto 16px;
}
.fade-in-logo{
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 5s ease forwards;
}
@keyframes fadeIn{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
.kv-scroll{
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}
.kv-scroll1,.kv-scroll2{
  opacity: 0;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}
.kv-scroll1{
  animation-name: scroll1;
  animation-delay: 0.5s;
}
.kv-scroll2{
  animation-name: scroll2;
  animation-delay: 0s;
}
@keyframes scroll1{
  0%{
    transform: translateY(-120px);
    opacity: 0;
  }
  25%{
    opacity: 1;
  }
  50%{
    transform: translateY(0);
    opacity: 1;
  }
  65%{
    transform: translateY(0);
    opacity: 1;
  }
  90%{
    transform: translateY(0);
    opacity: 0;
  }
}
@keyframes scroll2{
  0%{
    transform: translateY(-120px);
    opacity: 0;
  }
  25%{
    opacity: 1;
  }
  50%{
    transform: translateY(0);
    opacity: 1;
  }
  75%{
    transform: translateY(0);
    opacity: 1;
  }
  100%{
    transform: translateY(0);
    opacity: 0;
  }
}

/* About */
.about{
  margin-bottom: 120px;
}
.about-inner{
  width: 1240px;
  margin: 0 auto;
  position: relative;
}
.about-bg{
  background-image: url(../img/about.png);
  aspect-ratio: 800 / 690;
  max-width: 800px;
  background-size: cover;
  background-position: center;
  margin-left: 60px;
}
.about-vertical-text{
  position: absolute;
  top: 80px;
  left: 10px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}
.about-vertical-text p{
  line-height: 24px;
  margin-left: 16px;
}
.about-vertical-text p:last-child{
  margin-left: 0;
}
.about-horizontal-text{
  position: absolute;
  top: 210px;
  right: 10px;
}
.about-horizontal-text p{
  line-height: 48px;
}

/* Sweets */
.sweets{
  background-image: url(../img/washi.png);
  background-size: cover;
  background-position: center;
  padding-bottom: 120px;
}
.sweets-inner{
  width: 880px;
  margin: 0 auto;
}
.sweets-wrap-standard,
.sweets-wrap-season{
  display: flex;
  justify-content: space-between;
}
.sweets-wrap-standard{
  margin-bottom: 120px;
}
.sweets-content{
  margin-top: 30px;
}
.sweets-info{
  writing-mode: vertical-lr;
  text-orientation: upright;
  margin-bottom: 90px;
}
.sweets-info-title{
  font-size: 28px;
  letter-spacing: 8px;
}
.sweets-list{
  padding: 38px 0 0 24px;
}
.sweets-text{
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 0 20px;
  cursor: pointer;
}
.sweets-text.is-active{
  color: #9E3E3F;
}
.sweets-wrap-season .sweets-content{
  order: 1;
}
.sweets-wrap-season .sweets-list{
  padding: 38px 24px 0 0;
}
.sweets-wrap-season .sweets-text{
  margin: 0 24px 0 0;
}
.sweets-img-wrap{
  position: relative;
  aspect-ratio: 3 / 2;
  width: 600px;
}
.sweets-img{
  aspect-ratio: 3 / 2;
  width: 600px;
  box-shadow: 2px 2px 8px 2px rgba(51,51,51,0.25);
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 1s;
}
.sweets-img.is-visible{
  visibility: visible;
  opacity: 1;
}
.sweets-img img{
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* News */
.news{
  margin-bottom: 120px;
}
.news-inner{
  width: 960px;
  margin: 0 auto;
}
.news-list{
  margin-bottom: 60px;
}
.news-wrap a{
  display: flex;
  padding: 24px 36px;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}
.news-wrap a::after{
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: rgba(51,51,51,0.25);
  opacity: 0;
  transition: all .4s;
  z-index: 1;
}
.news-wrap a:hover::after{
  opacity: 1;
}
.news-wrap:nth-child(odd){
  background-color: #f0f0f0;
}
.news-wrap:nth-child(even){
  background-color: #fefefe;
}
.news-content{
  width: calc(100% - 32px - 200px);
  position: relative;
  z-index: 2;
}
.news-content time{
  display: block;
  font-size: 14px;
  line-height: 18px;
  color: #0d0d0d;
  margin-bottom: 16px;
}
.news-content h3{
  line-height: 18px;
  margin-bottom: 16px;
  font-weight: bold;
}
.news-content p{
  line-height: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-img{
  aspect-ratio: 3 / 2;
  width: 200px;
  box-shadow: 2px 2px 8px 2px rgba(51,51,51,0.25);
  position: relative;
  z-index: 2;
}
.news-img::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(51,51,51,0);
  z-index: 2;
  transition: all .4s;
}
.news-img::after{
  content: "続きをみる";
  width: 100%;
  text-align: center;
  color: rgba(255,255,255, 0);
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: all .4s;
}
.news-wrap a:hover .news-img::before{
  background-color: rgba(51,51,51,0.5);
}
.news-wrap a:hover .news-img::after{
  color: rgba(255,255,255, 1);
}
.news-img img{
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news .btn{
  margin: 0 auto;
}

/* Access */
.access{
  padding: 200px 0;
  background-image: url(../img/access_bg.png);
  background-size: cover;
  background-position: center;
}
.access-inner{
  width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.access-map{
  aspect-ratio: 3 / 2;
  width: 600px;
}
.access-content{
  width: 460px;
  padding: 20px;
  color: #fff;
  border: 2px solid #fff;
  margin-bottom: 30px;
}
.access-content p{
  line-height: 24px;
  margin-bottom: 20px;
}
.access-content p:last-child{
  margin-bottom: 0;
}

/* モーダル */
.header.is-active{
  background-color: #0D0D0D;
  opacity: 1;
}
.header.is-active .header-logo{
  visibility: hidden;
}
.modal{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all .4s;
  background-color: #fff;
}
.modal.is-active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-nav{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}
.modal-nav-item{
  margin: 0 auto 48px;
  width: fit-content;
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s;
}
.modal.is-active .modal-nav-item{
  opacity: 1;
  transform: translateY(0);
}
.modal-nav-item a{
  color: #0D0D0D;
  transition: all .4s;
  position: relative;
  font-size: 20px;
  line-height: 1;
}
.modal-nav-item a::before{
  position: absolute;
  content: "";
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #0D0D0D;
  opacity: 1;
  transition: all .4s;
}
.modal-nav-item a:hover{
  opacity: .7;
}
.modal-nav-item a:hover::before{
  width: 100%;
  opacity: .7;
}
.modal-nav-item:last-child{
  margin-bottom: 0;
}
.modal-nav-item:last-child a{
  display: flex;
  align-items: center;
  height: 100%;
}
.modal-logo-wrap{
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.modal-footer-wrap{
  position: fixed;
  bottom: 0;
  width: 100%;
}
.modal-img{
  width: 250px;
  margin: 0 auto 32px;
}
.modal-content{
  width: fit-content;
  margin: 0 auto 36px;
}
.modal-content p:first-child{
  margin-bottom: 12px;
}
.modal-content span{
  margin: 0 2px;
}

/* フッター */
.footer{
  margin-top: 80px;
}
.footer.is-active{
  display: none;
}
.footer-nav{
  margin-bottom: 36px;
}
.footer-nav-list{
  display: flex;
  justify-content: center;
}
.footer-nav-item{
  margin-right: 30px;
}
.footer-nav-item a{
  opacity: 1;
  transition: .4s;
}
.footer-nav-item a:hover{
  opacity: .7;
}
.footer-nav-item:last-child{
  margin-right: 0;
}
.footer-nav-item:last-child a{
  display: flex;
  align-items: center;
  height: 100%;
}
.footer-logo-wrap{
  width: 20px;
  height: 20px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  line-height: 24px;
}
.footer-logo{
  width: 180px;
  margin: 0 auto 24px;
}
.footer-content{
  width: fit-content;
  margin: 0 auto 48px;
}
.footer-tel{
  margin-bottom: 12px;
}
.footer-tel span{
  margin: 0 2px;
}
.coryRight{
  background-color: #0D0D0D;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* フェードイン */
.fade-in,
.fade-in-late,
.fade-in-line p,
.fade-in-news .news-wrap,
.fade-in-news .news-item{
  opacity: 0;
  filter: blur(2px);
  transform: translateY(20px);
}
.fade-in{
  transition: all 1s ease;
}
.fade-in-line p{
  transition: all 3s ease;
}
.fade-in-late,
.fade-in-news .news-wrap,
.fade-in-news .news-item{
  transition: all 2s ease;
}
.fade-in.show,
.fade-in-late.show,
.fade-in-news .news-wrap.show,
.fade-in-news .news-item.show,
.fade-in-line p.show{
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* News-list */
.news-list-inner{
  margin: 120px auto 0;
  width: 90%;
  max-width: 880px;
  position: relative;
}
.news-list-wrap{
  margin-bottom: 60px;
}
.news-item{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #909090;
  margin-bottom: 20px;
}
.news-item:last-child{
  margin-bottom: 0;
}
.news-item-wrap{
  width: calc(100% - 240px - 80px);
  margin-bottom: 30px;
}
.news-item-date{
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 3%;
  display: block;
  margin-bottom: 12px;
  color: #909090;
}
.news-item-article{
  margin-bottom: 20px;
}
.news-item-title{
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 12px;
  font-weight: bold;
}
.news-item-text{
  height: 54px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 18px;
}
.news-item-img{
  aspect-ratio: 3 / 2;
  width: 240px;
}

/* Sweets-list */
.sweets-list-inner{
  width: 90%;
  max-width: 900px;
  margin: 120px auto 0;
  position: relative;
}
.sweets-nav{
  margin: 32px 0 48px;
  font-size: 20px;
  line-height: 36px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sweets-nav-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.sweets-nav-wrap a{
  position: relative;
  padding: 5px 10px;
  color: #0D0D0D;
  transition: all .6s;
}
.sweets-nav-wrap a.selected{
  color: #9E3E3F;
}
.sweets-nav-wrap a::after{
  content: "";
  width: 0px;
  height: 1px;
  position: absolute;
  background-color: #9E3E3F;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all .6s;
}
.sweets-nav-wrap a:hover{
  color: #9E3E3F;
}
.sweets-nav-wrap a:hover::after{
  width: 50%;
}
.sweets-nav-wrap span{
  color: #909090;
}
.sweets-list-title{
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid #0D0D0D;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.sweets-list-title p{
  font-size: 24px;
  line-height: 36px;
}
.sweets-search-icon{
  width: 20px;
  margin: 0 16px;
  display: none;
}
.sweets-list-title-dummy{
  display: none;
  height: 53px;
  margin-bottom: 20px;
}
.sweets-list-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}
.sweets-item-wrap{
  width: calc( ( 100% - 48px ) / 3);
}
.sweets-item-wrap:hover a{
  filter: brightness(0.9);
}
.sweets-item-img{
  aspect-ratio: 3 / 2;
  width: 100%;
  overflow: hidden;
}
.sweets-item-img img{
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all .4s;
}
.sweets-item-wrap:hover img{
  transform: scale(1.1);
}
.sweets-item-title{
  font-size: 20px;
  line-height: 36px;
}
.sweets-item-price{
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 8px;
  text-align: right;
  font-weight: bold;
  padding-right: 8px;
}
.sweets-item-price span{
  font-size: 16px;
  margin-left: 2px;
  font-weight: normal;
}
.sweets-tag-wrap{
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.sweets-tag-wrap span{
  color: #9E3E3F;
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #9E3E3F;
}

/* 検索モーダル */
.search-modal{
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 1s;
}
.search-modal.is-active{
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.search-sweets-nav{
  margin-top: 132px;
}
.search-sweets-nav ul{
  display: flex;
  flex-direction: column;
  gap: 0;
}
.search-sweets-nav a{
  font-size: 20px;
  line-height: 32px;
  display: block;
  padding: 5px 10px;
  text-align: center;
  color: #0D0D0D;
  transition: all .4s;
}
.search-sweets-nav a.selected{
  color: #9E3E3F;
}
.search-footer{
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* News-article */
.news-article-inner{
  width: 90%;
  max-width: 940px;
  margin: 120px auto 0;
  position: relative;
}
.news-article-wrap{
  display: flex;
  gap: 30px;
}
.news-article{
  width: 75%;
}
.news-article-date{
  line-height: 18px;
  color: #909090;
  margin-bottom: 12px;
  display: block;
}
.news-article-title{
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: bold;
}
.news-article-img{
  aspect-ratio: 3 / 2;
  margin-bottom: 16px;
}
.news-article-img img{
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news-article-text{
  padding: 0 8px;
  line-height: 18px;
  margin-bottom: 32px;
}
.news-article-text img{
  max-width: 300px !important;
  width: 100%;
  height: auto;
}
.news-article-text p{
  margin-bottom: 8px;
  line-height: 20px;
}
.news-article-text p:empty{
  height: 8px;
}
.article-back{
  color: #0D0D0D;
  transition: all .4s;
}
.news-article-back:hover{
  color: #9E3E3F;
}
.news-latest-wrap{
  width: calc(25% - 30px);
}
.news-latest-title{
  padding: 8px 0;
  font-size: 20px;
  line-height: 32px;
  border-bottom: 1px solid #0D0D0D;
  margin-bottom: 12px;
}
.news-latest-item{
  margin-bottom: 24px;
}
.news-latest-img{
  aspect-ratio: 3 / 2;
  margin-bottom: 8px;
  overflow: hidden;
}
.news-latest-img img{
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all .4s;
}
.news-latest-item:hover img{
  transform: scale(1.1);
  filter: brightness(0.9);
}
.news-latest-article-time{
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 8px;
  color: #909090;
}
.news-latest-article-title{
  line-height: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sweets-article */
.sweets-article-inner{
  width: 90%;
  max-width: 940px;
  margin: 120px auto 0;
  position: relative;
}
.sweets-article-img-wrap{
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.sweets-article-wrap{
  width: 85%;
}
.sweets-article-img{
  position: relative;
  top: 0;
  left: 0;
  aspect-ratio: 3 / 2;
  width: 85%;
  margin-bottom: 24px;
  z-index: 0;
}
.sweets-article-img img{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: all .8s;
}
.sweets-article-img .is-active{
  opacity: 1;
  z-index: 1;
}
.sweets-article{
  padding: 0 24px;
  width: 85%;
}
.sweets-article-title{
  font-size: 24px;
  line-height: 36px;
}
.sweets-article-price{
  font-size: 24px;
  line-height: 24px;
  text-align: right;
}
.sweets-article-price span{
  font-size: 16px;
  letter-spacing: 0.8px;
}
.sweets-article-text{
  line-height: 24px;
  margin-bottom: 24px;
}
.sweets-article-text p{
  margin-bottom: 8px;
  line-height: 20px;
}
.sweets-article-text p:empty{
  height: 8px;
}
.sweets-allergen-wrap{
  padding: 0 24px;
}
.sweets-allergen-title{
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 8px;
}
.sweets-allergen-list{
  display: flex;
  gap: 12px;
  margin-bottom: 50px;
}
.sweets-allergen-icon{
  aspect-ratio: 1 / 1;
  width: 50px;
}
.sweets-allergen-text{
  font-size: 12px;
  line-height: 20px;
  color: #9E3E3F;
  text-align: center;
}
.sweets-thumbnail-wrap{
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: calc(15% - 20px);
}
.sweets-thumbnail-img{
  aspect-ratio: 3 / 2;
  width: 100%;
  overflow: hidden;
}
.sweets-thumbnail-img img{
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all .4s;
}
.sweets-thumbnail-img:hover img{
  transform: scale(1.1);
  filter: brightness(0.8);
}

/* 固定ページ（shop-info） */
#sub-page .about-inner{
  margin-top: 100px;
}
.shop-info{
  margin-bottom: 120px;
}
.shop-info-inner{
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.shop-info-img-wrap{
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.shop-info-img{
  width: 85%;
}
.shop-info-img{
  position: relative;
  top: 0;
  left: 0;
  aspect-ratio: 3 / 2;
  width: 85%;
  margin-bottom: 30px;
  z-index: 0;
}
.shop-info-img img{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: all .8s;
}
.shop-info-img .is-active{
  opacity: 1;
  z-index: 1;
}
.shop-info-thumbnail-wrap{
  width: calc(15% - 20px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shop-info-thumbnail-img{
  aspect-ratio: 3 / 2;
  width: 100%;
  overflow: hidden;
}
.shop-info-thumbnail-img img{
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all .4s;
}
.shop-info-thumbnail-img:hover img{
  transform: scale(1.1);
  filter: brightness(0.8);
}
.shop-info-logo{
  width: 180px;
  margin-bottom: 30px;
}
.shop-info-text-wrap{
  display: flex;
  gap: 56px;
  padding-left: 32px;
}
.shop-info-text{
  font-size: 20px;
  line-height: 36px;
}
.shop-info-text:not(:last-child){
  margin-bottom: 12px;
}
.shop-access-inner{
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.shop-access-map{
  aspect-ratio: 3 / 2;
  width: 100%;
  margin-bottom: 20px;
}
.shop-access-text-wrap{
  padding-left: 40px;
  display: flex;
  margin-bottom: 8px;
}
.shop-access-text-wrap:last-child{
  margin-bottom: 0;
}
.shop-access-text{
  font-size: 20px;
  line-height: 36px;
  margin-right: 6px;
}
.shop-access-text.last{
  margin-right: 0;
}
.shop-access-text span{
  letter-spacing: -10px;
  margin: 0 4px;
  display: inline-block;
}
.shop-access-sp{
  display: none;
}



/* レスポンシブ(<=1280px) */
@media screen and (max-width: 1280px){
  .pc-on{
    display: none;
  }
  .sp-on{
    display: block;
  }

  /* ヘッダー */
  .header{
    height: 60px;
    padding:  0 48px 0 24px;
  }
  .header-logo{
    width: 150px;
  }
  .header-nav{
    position: absolute;
    bottom: 20px;
    right: 44px;
  }

  /* ハンバーガーメニュー */
  .hamburger{
    display: flex;
    flex-direction: column;
    position: relative;
    height: 16px;
  }
  .line{
    width: 24px;
    height: 2px;
    background-color: #0D0D0D;
    position: absolute;
    opacity: 1;
    transition: all .7s;
  }
  .line_1{
    top: 0;
  }
  .line_2{
    top: 50%;
    transform: translateY(-50%);
  }
  .line_3{
    bottom: 0;
  }
  .header.is-active .line{
    background-color: #fff;
  }
  .header.is-active .line_1{
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header.is-active .line_2{
    opacity: 0;
  }
  .header.is-active .line_3{
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

  /* KV */
  .kv{
    margin-bottom: 180px;
  }
  .kv-catch{
    width: 12vw;
    min-width: 120px;
  }
  .kv-logo{
    width: 30vw;
    min-width: 280px;
  }

  /* About */
  .about-inner{
    width: auto;
    margin: 0 48px;
  }
  .about-bg{
    width: calc(100% - 48px);
    margin: 0 auto;
  }
  .about-vertical-text{
    top: -100px;
  }
  .about-horizontal-text{
    position: static;
    margin: 0 0 0 auto;
    width: 400px;
  }

  /* Sweets */
  .sweets-inner{
    width: auto;
    margin: 0 24px;
    
  }
  .sweets-wrap-standard, .sweets-wrap-season{
    flex-direction: column;
  }
  .sweets-img-wrap{
    order: -1;
    width: 80%;
    margin: 0 auto;
  }
  .sweets-img{
    width: 100%;
  }
  .sweets-content{
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    margin-top: 50px;
  }
  .sweets-info{
    margin-bottom: 60px;
  }
  .sweets-wrap-season .sweets-info{
    order: 1;
  }


  /* News */
  .news-inner{
    width: auto;
    margin: 0 24px;
  }


  /* Access */
  .access{
    padding: 0;
    background-image: none;
  }
  .access-bg{
    width: 100%;
    height: 30vw;
    background-image: url(../img/access_bg.png);
    background-position: center;
    background-size: cover;
    margin-bottom: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .access-bg h2{
    color: #fff;
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-size: 24px;
    letter-spacing: 8px;
  }
  .access-inner{
    width: auto;
    display: block;
    margin: 0 24px;
  }
  .access-map{
    display: block;
    width: 80%;
    margin: 0 auto 36px;
  }
  .access-content{
    color: #0D0D0D;
    border: 2px solid #0D0D0D;
    margin: 0 auto 30px;
    width: 100%;
    max-width: 460px;
  }
  .btn.secondary{
    border: 2px solid #0D0D0D;
  }
  .btn.secondary a{
    color: #0D0D0D;
  }

  /* セクションタイトル */
  .section-title.sub{
    position: static;
    display: flex;
    margin-bottom: 32px;
    align-items: center;
  }
  .section-title.sub .section-title-logo{
    margin: 0 8px 0 0;
  }
  .section-title.sub .section-title-text{
    margin: 0;
    writing-mode: horizontal-tb;
    letter-spacing: 0px;
    line-height: 32px;
  }

  /* News-list */
  .news-list-inner{
    margin: 100px auto 0;
  }

  /* Sweets-list */
  .sweets-list-inner{
    margin: 64px auto 0;
  }

  /* 固定ページ(shop-info) */
  #sub-page .about-inner{
    margin-top: 210px;
  }
  .shop-info-text-wrap{
    padding-left: 20px;
  }
  .shop-info-img{
    margin-bottom: 24px;
  }
  .shop-info-logo{
    width: 160px;
    margin-bottom: 24px;
  }
  .shop-info-text-wrap{
    gap: 28px;
  }
  .shop-info-text{
    font-size: 18px;
    line-height: 28px;
  }
  .shop-access-text-wrap{
    padding-left: 24px;
  }
  .shop-access-text{
    font-size: 18px;
    line-height: 36px;
  }

  /* モーダル */
  .modal-nav{
    top: 160px;
  }


}





/* レスポンシブ(<=768px) */
@media screen and (max-width: 768px){
  /* KV */
  .kv{
    margin-bottom: 210px;
  }
  .kv-catch{
    top: 35%;
    min-width: 112px;
  }
  .kv-logo{
    min-width: 230px;
  }

  /* About */
  .about-inner{
    margin: 0 12px;
  }
  .about-vertical-text{
    top: -140px;
  }
  .about-vertical-text p{
    font-size: 16px;
    margin-left: 8px;
    line-height: 20px;
  }
  .about-horizontal-text{
    width: calc(375px - 24px);
    letter-spacing: -2px;
  }
  .about-horizontal-text p{
    line-height: 42px;
  }

  /* Sweets */
  .sweets-img-wrap{
    width: 100%;
  }
  .sweets-content{
    flex-direction: column;
    align-items: center;
  }
  .sweets-wrap-season .sweets-info{
    order: -1;
  }

  /* News */
  .news-inner{
    margin: 0 12px;
  }
  .news-wrap a{
    padding: 12px;
  }
  .news-img{
    width: 30%;
  }
  .news-content{
    width: calc(70% - 16px);
    padding: 4px 0;
  }
  .news-content time,
  .news-content h3{
    margin-bottom: 8px;
  }
  .news-content p{
    display: none;
  }

  /* Access */
  .access-bg{
    height: 35vw;
  }
  .access-bg h2{
    letter-spacing: 4px;
  }
  .access-inner{
    margin: 0 12px;
  }
  .access-map{
    width: 100%;
    max-width: 540px;
  }
  .access-content p{
    margin-bottom: 12px;
  }

  /* フッター */
  .footer{
    margin-top: 80px;
  }
  .footer-nav-list{
    flex-direction: column;
    align-items: center;
  }
  .footer-nav-item:not(:last-child){
    margin-right: 0;
    margin-bottom: 24px;
  }
  .footer-content{
    margin-bottom: 36px;
  }

  /* セクションタイトル */
  .section-title.sub .section-title-logo{
    display: none;
  }
  .section-title.sub{
    padding: 8px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid #0D0D0D;
  }
  .sweets-list-inner .section-title{
    display: none;
  }

  /* News-list */
  .news-list-inner{
    margin: 60px 20px 0;
  }
  .news-list-wrap{
    margin-bottom: 40px;
  }
  .news-item{
    flex-direction: column;
  }
  .news-item-img{
    order: -1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 24px;
  }
  .news-item-wrap{
    width: 100%;
    max-width: 600px;
    margin: 0 auto 24px;
  }

  /* Sweets-list */
  .sweets-nav{
    display: none;
  }
  .sweets-list-title{
    position: fixed;
    top: 0;
    margin-bottom: 8px;
    padding: 72px 0 8px;
    width: 90%;
    z-index: 100;
    background-color: #fff;
  }
  .sweets-list-title-dummy{
    display: block;
  }
  .sweets-list-title.is-active{
    position: fixed;
    z-index: 55;
    width: 90%;
  }
  .sweets-list-title p{
    font-size: 20px;
  }
  .sweets-search-icon{
    display: block;
    padding: 8px 0;
    cursor: pointer;
  }
  .sweets-search-icon img{
    opacity: 1;
    transition: all .4s;
  }
  .sweets-search-icon img.fade-out{
    opacity: 0;
  }
  .sweets-list-wrap{
    display: block;
  }
  .sweets-item-wrap{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* News-article */
  .news-article-inner{
    width: 100%;
    margin: 100px auto 0;
    padding: 0 16px;
  }
  .news-article-wrap{
    display: block;
  }
  .news-article{
    width: 100%;
    margin-bottom: 64px;
  }
  .news-latest-wrap{
    width: 100%;
  }
  .news-latest-item{
    margin-bottom: 40px;
  }

  /* Sweets-article */
  .sweets-article-inner{
    width: 100%;
    margin: 100px auto 0;
    padding: 0 16px;
  }
  .sweets-article-img-wrap{
    gap: 8px;
  }
  .sweets-article-img{
    margin-bottom: 8px;
  }
  .sweets-thumbnail-wrap{
    width: calc(15% - 8px);
    gap: 4px;
  }
  .sweets-article{
    width: 100%;
    padding: 0 8px;
  }
  .sweets-article-price{
    margin-bottom: 24px;
  }
  .sweets-allergen-wrap{
    padding: 0;
  }
  .sweets-allergen-list{
    margin-bottom: 32px;
    flex-wrap: wrap;
  }

  /* 固定ページ（shop-info） */
  #sub-page .about-inner{
    margin-top: 220px;
  }
  #sub-page .about{
    margin-bottom: 60px;
  }
  .shop-info{
    margin-bottom: 60px;
  }
  .shop-info-inner{
    width: 100%;
    padding: 0 16px;
  }
  .shop-info-img-wrap{
    gap: 8px;
  }
  .shop-info-img{
    margin-bottom: 12px;
  }
  .shop-info-thumbnail-wrap{
    width: calc(15% - 8px);
    gap: 4px;
  }
  .shop-info-logo{
    width: 120px;
    margin-bottom: 8px;
  }
  .shop-info-text-wrap{
    display: block;
    padding-left: 12px;
  }
  .shop-info-text-wrap-1{
    margin-bottom: 12px;
  }
  .shop-info-text{
    font-size: 16px;
    line-height: 24px;
  }
  .shop-access-inner{
    width: 100%;
    padding: 0 16px;
  }
  .shop-access-text-wrap{
    padding-left: 0;
  }
  .shop-access-text{
    font-size: 16px;
    line-height: 24px;
  }
  .shop-access-sp{
    display: block;
  }

  /* モーダル */
  .modal-nav{
    top: 112px;
  }

}