@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
/*======================================
セッティング
======================================*/
.sp {
  display: none;
}
@media screen and (max-width: 820px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 820px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .spNone {
    display: none !important;
  }
}

.tabOnly {
  display: none !important;
}
@media (min-width: 821px) and (max-width: 1023px) {
  .tabOnly {
    display: block !important;
  }
}

.pcNone {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .pcNone {
    display: none !important;
  }
}

@media (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@-webkit-keyframes zoom-fade {
  0% {
    /*transform: scale(1.05);*/
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    /*transform: scale(1);*/
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
@keyframes zoom-fade {
  0% {
    /*transform: scale(1.05);*/
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    /*transform: scale(1);*/
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  font-family: "Shippori Mincho B1", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ＭＳ 明朝", "MS Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  color: #000;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background-image: url(../img/main_bg.jpg);
  background-repeat: repeat;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

body.fixed {
  position: fixed;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.5;
}

p {
  line-height: 2.1;
}

.l-inner {
  max-width: 122rem;
  width: 100%;
  margin: 0 auto;
  padding-left: clamp(2rem, 4.39238653vw, 6rem);
  padding-right: clamp(2rem, 4.39238653vw, 6rem);
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.l-wrapper {
  overflow: hidden;
}

/*======================================
　共通ボタン
======================================*/
.c-btn {
  max-width: 24rem;
  height: 5.87rem;
}
.c-btn a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url(../img/btn_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  line-height: 1;
}

/*======================================
　アニメーション : fade
======================================*/
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeUp {
  -webkit-animation: fadeUp 0.5s ease;
  animation: fadeUp 0.5s ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(2rem);
  transform: translateY(2rem);
}

.delay-1 {
  animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
  -webkit-animation-delay: 0.35s;
  -o-animation-delay: 0.35s;
}

.delay-3 {
  animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
}

.delay-4 {
  animation-delay: 0.65s;
  -moz-animation-delay: 0.65s;
  -webkit-animation-delay: 0.65s;
  -o-animation-delay: 0.65s;
}

.delay-5 {
  animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
}

/*======================================
フッター
======================================*/
footer {
  background-color: #262634;
  background-size: 100% auto;
  color: #fff;
}

footer .l-inner {
  padding-top: 6rem;
  padding-bottom: 2.8rem;
}

footer .wrap {
  padding-left: clamp(0.1rem, 6.0909090909vw, 6.7rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: clamp(4rem, 8vw, 8.8rem);
  margin-bottom: 4rem;
}
@media screen and (max-width: 1024px) {
  footer .wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* logo */
footer .logo {
  width: clamp(8rem, 9.0909090909vw, 10rem);
}

/* nav */
footer nav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(2rem, 5.8181818182vw, 6.4rem);
}

footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

footer nav .icon .fa-brands {
  font-size: 2.5rem;
  color: #fff;
}

footer nav ul a {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
}

footer small {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  font-family: "Noto Serif JP", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ＭＳ 明朝", "MS Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  footer .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
  footer .logo {
    width: 10rem;
    padding-top: 0;
  }
  /* nav */
  footer nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer nav ul li {
    text-align: center;
  }
  footer nav ul li:not(:last-child) {
    margin-right: 0;
  }
}
/*======================================
　ヘッダー
======================================*/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  height: 12.8rem;
  padding-top: 4.5rem;
  padding-left: clamp(2rem, 5.5555555556vw, 8rem);
  padding-right: clamp(0.2rem, 9.5138888889vw, 13.7rem);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

header h1 {
  width: clamp(8rem, 6.9444444444vw, 10rem);
  line-height: 1;
}

@media screen and (max-width: 768px) {
  header {
    display: block;
    height: auto;
    padding: 1rem;
  }
  header h1 {
    width: 8rem;
    left: 0;
    top: 0;
  }
}
/*  ----------------------------------------------------------

nav

----------------------------------------------------------  */
nav.gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(2rem, 4.7222222222vw, 6.8rem);
}
nav.gnav .icon .fa-brands {
  font-size: 3.4rem;
  color: #fff;
}

ul.gnav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

ul.gnav-menu > li {
  font-size: 1.8rem;
  font-weight: 500;
  white-space: nowrap;
}

ul.gnav-menu > li:not(:last-child) {
  margin-right: clamp(2rem, 4.1666666667vw, 6rem);
}

ul.gnav-menu > li > a {
  display: inline-block;
  position: relative;
  color: #fff;
}

/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
.gnav-sp {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
  background: #000;
}

.gnav-sp .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.gnav-sp-menu li {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
}

.gnav-sp-menu li span {
  display: block;
}

.gnav-sp-menu li a {
  display: block;
  padding: 1.2rem 0;
  white-space: nowrap;
  color: #fff;
}

.gnav-sp .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3rem;
}

.gnav-sp .icon .fa-brands {
  color: #fff;
  font-size: 3rem;
}

/* toggle */
.toggle-btn {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100000;
  background: #000;
}

.toggle-btn span {
  display: block;
  position: absolute;
  left: 2rem;
  width: 2rem;
  height: 0.2rem;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.toggle-btn span:nth-child(1) {
  top: 1.9rem;
}

.toggle-btn span:nth-child(2) {
  top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
  top: 3.5rem;
}

/* open */
.open .gnav-sp {
  top: 0;
  opacity: 1;
  z-index: 99999;
}

.open .toggle-btn span {
  background-color: #fff;
}

.open .toggle-btn span:nth-child(1) {
  -webkit-transform: translateY(0.8rem) rotate(-45deg);
  transform: translateY(0.8rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
  -webkit-transform: translateY(-0.8rem) rotate(45deg);
  transform: translateY(-0.8rem) rotate(45deg);
}

/* mask */
/*
#mask {
	display: none;
	transition: all .5s;
}
.open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
	opacity: 0.8;
	z-index: 2;
	cursor: pointer;
}
*/
.secHeading {
  font-size: clamp(2.5rem, 3.2727272727vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.2em;
  position: relative;
  padding-top: clamp(4.6rem, 5.0909090909vw, 5.6rem);
  text-align: center;
}
.secHeading::before {
  content: "";
  background-image: url(../img/heading_decora.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(3.6rem, 4.1818181818vw, 4.6rem);
  height: clamp(3.6rem, 4.1818181818vw, 4.6rem);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*======================================
　KV : 下層ページタイトル
======================================*/
.pageMv_inner {
  width: 100%;
  height: clamp(25rem, 27.7777777778vw, 40rem);
  background-image: url(../img/page_mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pageMv_inner::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.pageMv h1 {
  font-size: clamp(3rem, 3.6603221083vw, 5rem);
  font-family: "Noto Serif JP", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ＭＳ 明朝", "MS Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  z-index: 3;
}

/*======================================
　KV : TOPページ
======================================*/
.top-kv {
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .top-kv {
    height: initial;
  }
}

.top-kv .wrap {
  position: absolute;
  left: 5rem;
  bottom: 7rem;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #fff;
  font-weight: 900;
}

.top-kv .wrap span {
  background: rgba(0, 0, 0, 0.8);
  padding: 0.9rem 3.2rem 1.8rem 7.5rem;
  font-size: 3.2rem;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 767px) {
  .top-kv .wrap span {
    font-size: 1.8rem;
  }
}

.top-kv .wrap span strong {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .top-kv .wrap span strong {
    font-size: 1.8rem;
  }
}

.top-kv .wrap span:not(:last-child) {
  margin-bottom: 1.2rem;
}

.top-kv-slider > * {
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .top-kv-slider > * {
    height: initial;
  }
}

.top-kv-slider > *:nth-of-type(1) {
  background: url(../img/mv_photo01.jpg) no-repeat center bottom/cover;
}

.top-kv-slider > *:nth-of-type(2) {
  background: url(../img/mv_photo02.jpg) no-repeat center/cover;
}

.top-kv-slider > *:nth-of-type(3) {
  background: url(../img/mv_photo03.jpg) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .top-kv-slider > * {
    height: 48rem;
  }
  .top-kv .wrap {
    left: 2rem;
    bottom: 5.5rem;
  }
  .top-kv .wrap span {
    padding: 1rem 1.5rem 1.2rem 1.5rem;
  }
  .top-kv .wrap span:not(:last-child) {
    margin-bottom: 0.6rem;
  }
  .top-kv .wrap span:nth-child(2),
  .top-kv .wrap span:nth-child(3) {
    font-size: 1.8rem;
  }
  .top-kv .wrap span i {
    font-size: 2rem;
  }
}
/*======================================
店舗情報
======================================*/
.pageSub .information_inner {
  padding: clamp(5rem, 10.4166666667vw, 15rem) clamp(2rem, 2.7777777778vw, 4rem);
  max-width: 106rem;
  margin: 0 auto;
}
.pageSub .information_table {
  margin-bottom: 5rem;
}
.pageSub .information_table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .pageSub .information_table dl {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
}
.pageSub .information_table dl:not(:last-child) {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
.pageSub .information_table dt, .pageSub .information_table dd, .pageSub .information_table a {
  line-height: 1.5;
  color: #000;
}
.pageSub .information_table dt {
  width: 30%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .pageSub .information_table dt {
    width: 100%;
  }
}
.pageSub .information_table dd {
  width: 70%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .pageSub .information_table dd {
    width: 100%;
  }
}
.pageSub .information_map {
  height: 50rem;
}
@media screen and (max-width: 767px) {
  .pageSub .information_map {
    height: 25rem;
  }
}
.pageSub .information_map iframe {
  width: 100%;
  height: 100%;
}

/*======================================
ギャラリー
======================================*/
.pageSub .galleryBox_inner {
  max-width: 100rem;
  padding: clamp(5rem, 10.4166666667vw, 15rem) 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pageSub .galleryBox_inner {
    width: 100%;
  }
}
.pageSub .galleryBox_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 1.3888888889vw, 2rem);
}
.pageSub .galleryBox_item {
  list-style-type: none;
}
.pageSub .galleryBox_item img {
  width: clamp(8rem, 12.1527777778vw, 17.5rem);
  height: clamp(8rem, 12.1527777778vw, 17.5rem);
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .pageSub .galleryBox_item img {
    width: clamp(10rem, 19.556714472vw, 15rem);
    height: clamp(10rem, 19.556714472vw, 15rem);
  }
}

/*======================================
商品一覧
======================================*/
.pageSub .menu_inner {
  padding: clamp(5rem, 10.9090909091vw, 12rem) 2rem;
  max-width: 114rem;
  margin: 0 auto;
}
.pageSub .menu_list span {
  display: block;
}
.pageSub .menu_list span:not(:last-child) {
  margin-bottom: clamp(1rem, 2.7272727273vw, 3rem);
}

/*======================================
TOPページ
======================================*/
.pageTop .topAbout {
  background-image: url(../img/bg_about.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.pageTop .topAbout_inner {
  padding-top: clamp(5rem, 17.2727272727vw, 19rem);
  padding-bottom: clamp(5rem, 19.0909090909vw, 21rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(2rem, 7.5454545455vw, 8.3rem);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .pageTop .topAbout_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.pageTop .topAbout_inner::before, .pageTop .topAbout_inner::after {
  content: "";
  background-image: url(../img/decora01.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.pageTop .topAbout_inner::before {
  width: clamp(16rem, 23.6363636364vw, 26rem);
  height: clamp(4.2rem, 6.5454545455vw, 7.2rem);
  top: 12rem;
  right: -2rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .pageTop .topAbout_inner::before {
    top: -1rem;
    right: -6rem;
  }
}
.pageTop .topAbout_inner::after {
  width: clamp(20rem, 27.2727272727vw, 30rem);
  height: clamp(5.2rem, 7.4545454545vw, 8.2rem);
  bottom: 6rem;
  left: 3rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .pageTop .topAbout_inner::after {
    bottom: 1rem;
    left: -4rem;
  }
}
.pageTop .topAbout_photo {
  width: clamp(40rem, 54.5454545455vw, 60rem);
}
@media screen and (max-width: 767px) {
  .pageTop .topAbout_photo {
    width: 100%;
  }
}
.pageTop .topAbout_detail {
  width: 45rem;
  margin-right: clamp(-3.5rem, -3.1818181818vw, -1rem);
  padding-top: clamp(2rem, 8.1818181818vw, 9rem);
  position: relative;
}
@media screen and (max-width: 1280px) {
  .pageTop .topAbout_detail {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .pageTop .topAbout_detail {
    width: 100%;
    padding-top: 0;
  }
}
.pageTop .topAbout_detail::after {
  content: "";
  background-image: url(../img/about_decora_rice.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(20.8rem, 37.0909090909vw, 40.8rem);
  height: clamp(7.2rem, 24.7272727273vw, 27.2rem);
  position: absolute;
  bottom: clamp(-30.7rem, -27.9090909091vw, -10.7rem);
  right: clamp(-10rem, -9.0909090909vw, -2rem);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .pageTop .topAbout_detail::after {
    width: clamp(10.8rem, 30.078125vw, 30.8rem);
    height: clamp(7.2rem, 16.796875vw, 17.2rem);
    bottom: clamp(-15.7rem, -15.33203125vw, -10.7rem);
  }
}
@media screen and (max-width: 767px) {
  .pageTop .topAbout_detail::after {
    display: none;
  }
}
.pageTop .topAbout_detail h3 {
  font-size: clamp(1.4rem, 1.6363636364vw, 1.8rem);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: clamp(2rem, 5.2727272727vw, 5.8rem);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .pageTop .topAbout_detail h3 {
    font-size: clamp(1.4rem, 2.3468057366vw, 1.8rem);
    white-space: initial;
  }
}
.pageTop .topAbout_detail h3 span {
  display: inline-block;
}
.pageTop .topAbout_detail h3 strong {
  display: block;
  font-size: clamp(2rem, 2.3636363636vw, 2.6rem);
  font-weight: 800;
  margin-top: 1.7rem;
}
@media screen and (max-width: 767px) {
  .pageTop .topAbout_detail h3 strong {
    font-size: clamp(2.5rem, 4.5632333768vw, 3.5rem);
    line-height: 1.3;
  }
}
.pageTop .topAbout_detail .read {
  word-break: break-all;
}
.pageTop .topMenu {
  background-image: url(../img/menu_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.pageTop .topMenu::before, .pageTop .topMenu::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: clamp(27.6rem, 33.0555555556vw, 47.6rem);
  height: clamp(25.8rem, 41.6363636364vw, 45.8rem);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu::before, .pageTop .topMenu::after {
    width: clamp(7.6rem, 35.9843546284vw, 27.6rem);
    height: clamp(5.8rem, 33.6375488918vw, 25.8rem);
  }
}
.pageTop .topMenu::before {
  background-image: url(../img/menu_decora_top.png);
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu::before {
    right: -2rem;
  }
}
.pageTop .topMenu::after {
  background-image: url(../img/menu_decora_bottom.png);
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu::after {
    left: -2rem;
  }
}
.pageTop .topMenu_inner {
  padding-top: clamp(5rem, 11.8181818182vw, 13rem);
  padding-bottom: clamp(5rem, 10vw, 11rem);
}
.pageTop .topMenu .secHeading {
  margin: 0 auto clamp(3rem, 3.6363636364vw, 4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pageTop .topMenu_list {
  margin-bottom: clamp(5rem, 10vw, 11rem);
}
.pageTop .topMenu_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: clamp(2rem, 7.9090909091vw, 8.7rem);
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.pageTop .topMenu_content.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu_content.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5rem;
  }
}
.pageTop .topMenu_photo {
  width: clamp(47.3rem, 70.2727272727vw, 77.3rem);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu_photo {
    width: 100%;
  }
}
.pageTop .topMenu_photo.left {
  margin-left: -17rem;
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu_photo.left {
    margin-left: 0;
  }
}
.pageTop .topMenu_photo.right {
  margin-right: -17rem;
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu_photo.right {
    margin-right: 0;
  }
}
.pageTop .topMenu_detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: clamp(3rem, 15.6363636364vw, 17.2rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu_detail {
    margin-top: 0;
  }
}
.pageTop .topMenu_detail::before, .pageTop .topMenu_detail::after {
  font-size: clamp(10rem, 22.7272727273vw, 25rem);
  font-family: "Shippori Mincho B1", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ＭＳ 明朝", "MS Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #6e3c00;
  white-space: nowrap;
  opacity: 0.1;
  position: absolute;
  top: clamp(-13rem, -11.8181818182vw, -3rem);
}
.pageTop .topMenu_detail.rice::before {
  content: "米";
  right: -2.5rem;
}
.pageTop .topMenu_detail.soup::after {
  content: "出汁";
  left: initial;
  right: -2.5rem;
}
.pageTop .topMenu_detail h3 {
  font-size: clamp(2rem, 2.1818181818vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.026em;
  line-height: 1;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .pageTop .topMenu_detail h3 {
    margin-bottom: 1rem;
  }
}
.pageTop .topMenu_detail .read {
  font-family: "Noto Serif JP", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ＭＳ 明朝", "MS Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 400;
}
.pageTop .topMenu .c-btn {
  margin: 0 auto;
}
.pageTop .topGallery {
  background-image: url(../img/gallery_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}
.pageTop .topGallery_inner {
  padding-top: clamp(5rem, 6.8181818182vw, 7.5rem);
  padding-bottom: clamp(5rem, 7.2727272727vw, 8rem);
}
.pageTop .topGallery .secHeading {
  margin: 0 auto clamp(2rem, 6.0909090909vw, 6.7rem);
}
.pageTop .topGallery_photo {
  margin-bottom: clamp(5rem, 7.7272727273vw, 8.5rem);
}
.pageTop .topGallery #loopslider {
  width: 100%;
  height: clamp(22rem, 23.2727272727vw, 25.6rem);
  text-align: left;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .pageTop .topGallery #loopslider {
    height: 18rem;
  }
}
.pageTop .topGallery #loopslider ul {
  float: left;
  display: inline;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
.pageTop .topGallery #loopslider ul li {
  width: 35.6rem;
  float: left;
  display: inline;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .pageTop .topGallery #loopslider ul li {
    width: 25.6rem;
  }
}
.pageTop .topGallery #loopslider ul li img {
  padding: 0 0.5rem;
}
.pageTop .topGallery #loopslider ul:after {
  content: ".";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}
.pageTop .topGallery #loopslider ul {
  display: inline-block;
  overflow: hidden;
}
.pageTop .topGallery .c-btn {
  margin: 0 auto;
}
.pageTop .topAccess_inner {
  padding-top: clamp(5rem, 7.2727272727vw, 8rem);
  padding-bottom: clamp(5rem, 15.7272727273vw, 17.3rem);
}
.pageTop .topAccess .secHeading {
  margin: 0 auto clamp(2rem, 8.6363636364vw, 9.5rem);
}
.pageTop .topAccess_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: clamp(2rem, 4.8181818182vw, 5.3rem);
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.pageTop .topAccess_content .photo {
  width: clamp(31.4rem, 37.6363636364vw, 41.4rem);
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .photo {
    width: 100%;
  }
}
.pageTop .topAccess_content .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .detail {
    width: 100%;
    padding: 0;
  }
}
.pageTop .topAccess_content .detail .list {
  margin-bottom: clamp(5rem, 6.3636363636vw, 7rem);
}
.pageTop .topAccess_content .detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.8rem;
  padding: 2.2rem 0;
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .detail dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    padding: 2rem 0;
  }
}
.pageTop .topAccess_content .detail dl:first-child {
  padding-top: 0;
}
.pageTop .topAccess_content .detail dl:not(:last-child) {
  border-bottom: solid 0.1rem #000;
}
.pageTop .topAccess_content .detail dt, .pageTop .topAccess_content .detail dd {
  font-family: "Noto Serif JP", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ＭＳ 明朝", "MS Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .detail dt, .pageTop .topAccess_content .detail dd {
    line-height: 1.7;
    padding: 0;
  }
}
.pageTop .topAccess_content .detail dt {
  width: 13rem;
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess_content .detail dt {
    width: 100%;
  }
}
.pageTop .topAccess_content .detail dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pageTop .topAccess_content .detail dd small {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .pageTop .topAccess .c-btn {
    margin: 0 auto;
  }
}
.pageTop .gmap iframe {
  width: 100%;
  height: clamp(25rem, 36.3636363636vw, 40rem);
}
.pageTop .snsInsta {
  background-image: url(../img/instagram_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.pageTop .snsInsta_inner {
  padding-top: clamp(5rem, 6.0909090909vw, 6.7rem);
  padding-bottom: clamp(5rem, 13.1818181818vw, 14.5rem);
  position: relative;
  z-index: 1;
}
.pageTop .snsInsta_inner::before, .pageTop .snsInsta_inner::after {
  content: "";
  background-image: url(../img/decora01.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 2;
}
.pageTop .snsInsta_inner::before {
  width: clamp(19rem, 26.3636363636vw, 29rem);
  height: clamp(4.2rem, 7.2727272727vw, 8rem);
  top: 8.3rem;
  right: -3rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .pageTop .snsInsta_inner::before {
    top: 4rem;
    right: -6rem;
  }
}
.pageTop .snsInsta_inner::after {
  width: clamp(20rem, 27.2727272727vw, 30rem);
  height: clamp(5.2rem, 7.4545454545vw, 8.2rem);
  bottom: 5rem;
  left: -6.7rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .pageTop .snsInsta_inner::after {
    bottom: 1rem;
  }
}
.pageTop .snsInsta .secHeading {
  margin: 0 auto clamp(2rem, 6.3636363636vw, 7rem);
}
.pageTop .snsInsta .CMS-INSTAGRAM-LIST {
  max-width: 87rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: clamp(1rem, 1.3636363636vw, 1.5rem);
}
.pageTop .snsInsta .CMS-INSTAGRAM-LIST > a {
  display: block;
  width: calc((100% - clamp(1rem, 1.3636363636vw, 1.5rem) * 2) / 3);
}
.pageTop .snsInsta .CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}