@charset "UTF-8";

/* top-loading-animation */
.top-loading-animation {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background-color: var(--color-base);
  z-index: 9999;
  pointer-events: none;
}
.top-loading-animation__inner {
  text-align: center;
  font-size: clamp(1rem, 5vw, 2.5rem);
  font-family: serif;
  font-weight: 700;
}
.top-loading-animation img {
  width: min(40vw,600px);
  margin-inline: auto;
  padding: 1em 0;
}

.top-loading-animation.-active {
  animation: loading 1.5s 0.5s forwards linear;
}
.top-loading-animation.-hidden {
  display: none;
}

@keyframes loading {
  0%{
    clip-path: circle(100% at 50% 50%);
  }
  30% {
    clip-path: circle(100% at 50% 50%);
  }
  100%{
    clip-path: circle(0% at 50% 50%);
  }
}

/* --------------------
mv 
--------------------*/
.mv {
  position: relative;
  overflow: hidden;
  margin-top: var(--headerHeight);
}

.mv__top-picture {
  position: absolute;
  top: 0;
  z-index: 1;
  overflow: hidden;
}

.mv__top-picture img {
  scale: 1.05 1;
}

.mv__food-picture {
  position: absolute;
  z-index: 1;
  width: min(40%, 600px);
}

.mv__food-picture.-food01 {
  top: 5%;
  left: -2%;
  rotate: -10deg;
}

.mv__food-picture.-food02 {
  top: 0;
  right: -2%;
  rotate: 10deg;
  max-width: 550px;
}

.mv__food-picture.-food03 {
  bottom: 0;
  left: -5%;
}

.mv__food-picture.-food04 {
  bottom: 0;
  right: -2%;
  rotate: -10deg;
}

.mv__bottom-picture {
  position: absolute;
  bottom: -1px;
  z-index: 0;
  overflow: hidden;
}

.mv-slide .mv__item {
  min-height: 350px;
  max-height: 90dvh;
}

.mv-slide2-area {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: min(100%, 1200px);
  z-index: 1;
}

.mv-slide2__inner {
  position: relative;
}

.mv-read-text {
  color: var(--color-main);
  position: absolute;
  font-weight: 900;
  font-size: clamp(1.5rem, 8vw, 4.5rem);
  text-align: center;
  text-shadow: 0 0 4px var(--color-text);
  line-height: 1.1;
  padding-left: var(--letter-spacing);
  z-index: 1;
}

.mv-read-text em {
  color: var(--color-accent);
}

.mv-read-text.-top {
  top: -1.8em;
  width: 100%;
}

.mv-read-text.-bottom {
  bottom: -1.8em;
  width: 100%;
}

@media screen and (min-width: 1350px) {
  .mv-read-text.-top {
    top: -0.6em;
  }

  .mv-read-text.-bottom {
    bottom: -0.6em;
  }

  .mv-read-text .u-line-break {
    display: inline;
  }
}

.mv-plate-wrap {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.fork-picture {
  width: 7%;
}

.knife-picture {
  width: 8%;
}

.mv-knife-img {
  rotate: 5deg;
  translate: -20% 0;
}

.mv-fork-img {
  translate: -5% 0;
  rotate: 2deg;
}

.mv-slide2-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  aspect-ratio: 1.75;
  width: 60%;
}

.mv-slide2,
.mv-slide2 .splide__track {
  height: 100%;
}

.mv__list-wrap {
  filter: brightness(60%);
}

.mv-slide__picture {
  height: 100%;
}

.mv-img {
  object-fit: cover;
  height: 100%;
  transition: scale 8s linear;
}

.mv-slide .mv__item.is-active .mv-img {
  scale: 1.2;
  transition-delay: 0s;
}
.mv-slide2 .mv__item.is-active .mv-img {
  scale: 1.3;
  transition-delay: 0s;
}

/* --------------------
latest-news
--------------------*/
.latest-news-wrap {
  background-color: var(--color-base);
}

.latest-news {
  background-color: var(--color-accent);
  border: 1px solid var(--color-main);
  padding: 8px 24px;
  translate: 0 0;
  max-width: 700px;
  margin-inline: auto;
  width: 85%;
}

.latest-news__title {
  line-height: 2;
  color: var(--color-main);
  position: relative;
  overflow: hidden;
  font-size: clamp(1rem,3vw,1.25rem);
}

.latest-news__title::after,
.latest-news__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
}

.latest-news__title::after {
  border-bottom: 1px solid var(--color-text);
  width: 100%;
  animation: latestLine 5s infinite linear;
}

@keyframes latestLine {
  0% {
    translate: -100% 0;
  }
  100% {
    translate: 100% 0;
  }
}

.latest-news__title::before {
  width: 100%;
  border-bottom: 1px solid var(--color-white);
}

.latest-news__content {
  display: flex;
  flex-direction: column;
  font-size: clamp(0.875rem,3vw,1rem);
  padding: 8px 0;
}

.latest-news__content-date {
  line-height: 1.2;
}

.latest-news__content-title {
  font-size: clamp(0.875rem,3vw,1rem);
  margin-top: 4px;
}

.latest-news__content-text {
  margin-top: 0.7em;
}

.latest-news__content-text span {
  font-weight: 700;
}

@media screen and (min-width: 475px) {
  .latest-news {
    padding: 16px 32px;
  }
}

/* --------------------
information
--------------------*/
.information {
  position: relative;
  background-color: var(--color-base);
}

.infomation-sihouette-img {
  position: absolute;
  width: min(30vw, 250px);
}

.infomation-sihouette-img.-pork {
  top: -0.3%;
}
.infomation-sihouette-img.-omurice {
  top: -0.5%;
  right: 0;
}
.infomation-sihouette-img.-rice {
  left: 0;
  bottom: 0;
}
.infomation-sihouette-img.-deluxe {
  bottom: 5%;
  right: 0;
}

.information__content {
  border-top: 5px solid var(--color-main);
  border-bottom: 5px solid var(--color-main);
  padding: 16px 4px;
}

@media screen and (min-width: 768px) {
  .information__content {
    padding: 48px 32px;
  }
}

.information__tel {
  font-size: clamp(1.125rem, 3vw, 2rem);
  font-weight: 900;
  text-align: center;
  padding-left: var(--letter-spacing);
}

.information__tel-number img {
  display: inline-block;
  width: 1.1em;
  margin-right: 0.2em;
}

@media screen and (min-width: 768px) {
  .information__tel .u-line-break {
    display: inline;
  }
}

.information__tel-number {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-family: var(--font-number);
  font-weight: 900;
  text-align: center;
  padding-left: var(--letter-spacing);
}

.information__table {
  border-collapse: collapse;
  font-size: clamp(0.875rem, 3vw, 1.5rem);
  width: 100%;
}

.information__table img {
  display: inline-block;
  width: 1.3em;
  margin-right: 0.2em;
}

.information__table-row {
  border-bottom: 1px solid var(--color-main);
}

.information__table-category {
  display: block;
  font-weight: 700;
  text-align: left;
  padding-top: 8px;
}
.information__table-category-inner {
  align-items: center;
  display: flex;
}
.information__table-text {
  display: block;
  line-height: 1.3;
  font-size: 0.9em;
  padding-bottom: 4px;
}

@media screen and (min-width: 475px) {
  .information__table-category {
    display: table-cell;
    padding-top: 32px;
    padding-bottom: 8px;
    width: 40%;
  }

  .information__table-text {
    display: table-cell;
    padding-top: 32px;
    padding-bottom: 8px;
  }

  .information__table-text .u-line-break {
    display: inline;
  }
}
/* --------------------
sub-information
--------------------*/
.sub-information {
  position: relative;
  color: var(--color-base);
  text-align: center;
}

.sub-information em {
  color: var(--color-accent);
}

.sub-information__title {
  font-size: clamp(1.25rem, 5vw, 2.5rem);
  position: absolute;
  top: 1.5em;
  padding: 0 8px 0 calc(8px + 0.08em);
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .sub-information__title .u-line-break {
    display: inline;
  }
}

.sub-information__picture img {
  filter: brightness(60%);
  object-fit: cover;
  max-height: 300px;
}

@media screen and (min-width: 475px) {
  .sub-information__picture img {
    max-height: 500px;
  }
}
@media screen and (min-width:1027px) {
  .sub-information__picture img {
    max-height: 600px;
  }
}
.sub-information__text {
  font-size: clamp(1rem, 5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.5;
  padding: 0 16px;
  position: absolute;
  bottom: 1.5em;
  width: 100%;
}

.sub-information__text p {
  padding-left: var(--letter-spacing);
  max-width: 800px;
  margin-inline: auto;
}

/* --------------------
top-about
--------------------*/
.top-about {
  overflow: hidden;
}

.top-about__inner {
  background-color: var(--color-base);
}

.top-about__fork-img,
.top-about__knife-img {
  width: min(80%, 800px);
  margin-inline: auto;
}

.top-about__fork-img {
  animation: topAboutFork 5s infinite linear;
}
.top-about__knife-img {
  animation: topAboutKnife 5s infinite linear;
}

@keyframes topAboutFork {
  0% {
    rotate: 0;
  }
  50% {
    rotate: 15deg;
  }
  100% {
    rotate: 0;
  }
}
@keyframes topAboutKnife {
  0% {
    rotate: 0;
  }
  50% {
    rotate: -15deg;
  }
  100% {
    rotate: 0;
  }
}
.top-about__top-img,
.top-about__knife-img {
  margin-top: 2em;
}

.top-about__picture-wrap {
  display: flex;
  gap: 8px;
}

.top-about__content-picture {
  max-width: 540px;
}

.top-about__picture img {
  box-shadow: 0 0 4px var(--color-text);
}

.top-about__picture-wrap.-wrap01 {
  justify-content: space-between;
}

.top-about__picture.-picture01 {
  translate: 0 25%;
  max-width: 450px;
}

.top-about__picture.-picture02 {
  max-width: 450px;
  margin-bottom: -1em;
}

.top-about__picture-wrap.-wrap02 {
  flex-direction: column;
  gap: 32px;
}

.top-about__picture-wrap.-wrap02 .top-about__picture {
  width: 85%;
}

.top-about__picture.-picture03 {
  margin-top: -0.5em;
  max-width: 650px;
}

.top-about__picture.-picture04 {
  align-self: end;
  max-width: 650px;
}

.top-about__picture.-picture05 {
  align-self: center;
}

.top-about__picture.-picture05 img {
  height: min(80vw, 650px);
  object-fit: cover;
}

.top-about__picture-wrap.-wrap03 {
  /* justify-content: center; */
}

.top-about__picture.-picture06 {
  max-width: 750px;
}

@media screen and (min-width: 1376px) {
  .top-about__picture-wrap.-wrap02 {
    flex-direction: row;
  }

  .top-about__picture.-picture03 {
    margin-top: 4em;
  }
  .top-about__picture.-picture03 img {
    scale: 1.4;
  }

  .top-about__picture.-picture04 {
    align-self: center;
  }

  .top-about__picture.-picture04 img {
    translate: -20% 95%;
    scale: 1.35;
  }

  .top-about__picture.-picture05 {
    translate: 25% -5%;
  }
}

.top-about__description {
  background-color: var(--color-main);
  box-shadow: -24px 24px var(--color-main-light);
  padding: 24px 16px;
  margin-inline: auto;
  width: min(90%, 767px);
}

@media screen and (min-width: 768px) {
  .top-about__description {
    box-shadow: -48px 48px var(--color-main-light);
    padding: 48px 32px;
  }
}

.top-about__description-title {
  color: var(--color-accent);
  font-size: clamp(1.35rem, 5vw, 2.25rem);
  font-weight: 900;
}

@media screen and (min-width: 768px) {
  .top-about__description-title .u-line-break {
    display: inline;
  }
}

.top-about__description-text {
  color: var(--color-white);
  font-size: clamp(0.875rem, 3vw, 1.25rem);
  letter-spacing: 0.1em;
}

.top-about__description-text + .top-about__description-text {
  margin-top: 12px;
}

.top-about__bottom-img {
  margin-top: -2px;
}
/* --------------------
top-menu
--------------------*/
.top-menu {
  overflow: hidden;
}

.top-menu__top-spoon-img,
.top-menu__bottom-spoon-img {
  max-width: 1376px;
  min-height: 70px;
  margin-inline: auto;
  object-fit: cover;
}

.top-menu__top-img,
.top-menu__bottom-img {
  scale: 1.05 1.08;
}

.top-menu__top-img {
  margin-top: 1em;
}

.top-menu__inner {
  background-color: var(--color-base);
}

.top-menu-slide .splide__list,
.top-menu-slide02 .splide__list {
  align-items: center;
}

.top-menu-slide-img {
  width: auto;
  max-height: 350px;
  margin-inline: auto;
}

.top-menu-slide-text {
  color: var(--color-main-light);
  font-size: clamp(1.375rem, 4vw, 3rem);
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
}

.top-menu-slide-text:first-letter {
  color: var(--color-accent);
}

.top-menu__read-text {
  font-weight: 700;
  font-size: clamp(1.125rem, 5vw, 2rem);
  width: min(90%, 1376px);
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .top-menu__read-text {
    font-weight: 900;
  }
}

.top-menu__content-list {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.top-menu__content-title {
  font-size: clamp(1.25rem, 5vw, 2.25rem);
  z-index: 1;
  /* z-index調整 */
  position: relative;
}

.top-menu__content-title span {
  display: inline-block;
  padding: 0.5em;
  background-color: var(--color-accent);
  clip-path: polygon(3% 11%, 6% 1%, 15% 6%, 26% 7%, 39% 7%, 52% 2%, 67% 5%, 81% 4%, 83% 9%, 92% 21%, 97% 32%, 87% 39%, 95% 50%, 91% 62%, 94% 73%, 90% 80%, 88% 90%, 75% 88%, 75% 94%, 71% 98%, 57% 92%, 46% 99%, 36% 94%, 23% 100%, 11% 95%, 3% 95%, 0% 86%, 2% 77%, 5% 70%, 3% 57%, 4% 47%, 1% 38%, 7% 30%, 3% 25%, 1% 19%);
}

.top-menu__content-title.-rotate span {
  rotate: -15deg;
}

.top-menu__content-title.-rotate-reverse {
  text-align: right;
}

.top-menu__content-title.-rotate-reverse span {
  rotate: 15deg;
}

.top-menu__content-img-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.top-menu__content-img {
  width: min(100vw,600px);
  margin-inline: auto;
}

.top-menu__content-img.-img04{
  rotate: 10deg;
}

.top-menu__content-img.-img05{
  translate: 0 -15%;
  rotate: -15deg;
}

.top-menu__content-img.-img06{
  translate: 0 -30%;
  rotate: -10deg;
  width: 50%;
}

.top-menu__content-img.-img07{
  rotate: 10deg;
  width: 50%;
}

.top-menu__content-name {
  font-weight: 700;
  color: var(--color-main);
  font-size: clamp(2rem, 5vw, 4rem);
  rotate: -5deg;
  line-height: 1.2;
}

.top-menu__content-name.-img05 {
  text-align: right;
  rotate: 5deg;
}

.top-menu__content-name.-img07 {
  rotate: 0deg;
  translate: 0 -30%;
  text-align: center;
}

.top-menu__content-name:first-letter {
  color: var(--color-accent);
}

@media screen and (min-width: 992px) {
  .top-menu__content-list {
    grid-template-columns: 1fr 1fr;
    gap: 128px 64px;
  }
  .top-menu__content-item.-col2 {
    grid-column: span 2;
  }
  .top-menu__content-img-wrap {
    gap: 64px;
  }
  .top-menu__content-img.-img06{
    max-width: 350px;
  }
  .top-menu__content-img.-img07{
    max-width: 350px;
  }
  .top-menu__content-name.-img07 .u-line-break {
    display: inline;
  }
}
/* --------------------
question
--------------------*/
.question__inner {
  background-color: var(--color-base);
  margin-top: -2px;
}

.details {
  background-color: var(--color-white);
  border-radius: 1em;
  font-size: clamp(1rem, 3vw, 2rem);
  margin: 1.5em auto 0;
  width: min(90%, 854px);
}

.details-title {
  align-items: center;
  display: flex;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  gap: 0.7em;
  padding: 1em;
  position: relative;
}

.details-title::before {
  content: "q";
  color: var(--color-main);
  text-transform: uppercase;
  font-family: var(--font-number);
  font-weight: 900;
  font-size: 1.2em;
}

.details[open] .details-title::after {
  content: "";
  background-color: var(--color-main);
  position: absolute;
  bottom: 0;
  right: 1em;
  left: 1em;
  height: 1px;
}

.question-icon {
  position: relative;
  margin-left: auto;
  margin-right: 0.5em;
  flex-shrink: 0;
  width: 1em;
}

.question-fork-img,
.question-knife-img {
  height: 1.5em;
  transition: translate 0.3s, rotate 0.3s;
}

.question-knife-img {
  position: absolute;
  inset: 0;
  rotate: 90deg;
}

.question-icon.-active .question-knife-img {
  translate: 0.5em 0;
  rotate: 0deg;
}

.question-icon.-active .question-fork-img {
  translate: -0.5em 0;
  rotate: 360deg;
}

@media (any-hover: hover) {
  .details-title:hover {
    color: var(--color-main);
  }
}

.details-content {
  overflow: hidden;
}

.details-content-inner {
  display: flex;
  gap: 0.7em;
  font-size: 0.9em;
  padding: 1em;
}

.details-content-inner::before {
  content: "a";
  color: var(--color-main);
  text-transform: uppercase;
  font-family: var(--font-number);
  font-weight: 900;
  font-size: 1.2em;
}

/* --------------------
news
--------------------*/
.news {
  font-size: clamp(0.875rem, 3vw, 1.25rem);
  line-height: 1.5;
  margin-top: -1px;
}

.news__inner {
  background-color: var(--color-base);
  margin-inline: auto;
  margin-top: -2px;
}

.news__scroll-guide-text {
  text-align: center;
  display: block;
  line-height: 1;
}

.news-article-category {
  color: var(--color-main);
  background-color: var(--color-white);
  padding: 0.8em;
  cursor: pointer;
  flex: 1;
}

.news__content {
  background-color: var(--color-white);
  border-radius: 1em;
  padding: 16px;
  position: relative;
  height: 70vh;
  width: 80%;
  overflow-y: auto;
}

@media screen and (min-width: 768px) {
  .news__content {
    padding: 32px;
  }
}

.news-article {
  border-bottom: 1px solid var(--color-main);
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}

.news-article-date {
  line-height: 1.2;
}

.news-article-title {
  font-size: 1em;
}

.news-article-text span {
  font-weight: 500;
}

.news-article-text {
  margin-top: 0.7em;
}

@media screen and (min-width: 768px) {
  .news-article {
    padding: 16px 0;
  }
}

/* --------------------
access
--------------------*/

.access__inner {
  background-color: var(--color-base);
  overflow: hidden;
}

.access__images {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  padding: 2em;
  margin-inline: auto;
  max-width: 600px;
}

.access__img {
  overflow: hidden;
}

.access__img img {
  border-radius: 1em;
  object-fit: cover;
  height: min(300px, 35vw);
}

.access__img.-img01 {
  translate: -15% 0;
}

.access__img.-img02 {
  translate: -5% -15%;
}

.access__img.-img03{
  translate: 5% 15%;
}

.access__img.-img04{
  translate: 15% 0;
}

@media screen and (min-width: 992px) {
  .access__images {
    gap: 32px;
    padding: 6em 0;
    max-width: 1028px;
  }
  .access__img img {
    height: min(400px, 35vw);
  }
}

.access__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: clamp(1rem, 5vw, 1.5rem);
}

.access__table-category {
  white-space: nowrap;
  padding: 2em 1em 0 0;
  text-align: left;
  vertical-align: top;
}

.access__table-text {
  padding: 2em 0 0;
  line-height: 1.5;
}

@media screen and (min-width: 530px) {
  .access__table-category {
    padding: 3em 2em 0 0;
  }
  .access__table-text {
    padding: 3em 0 0;
  }
}

@media screen and (min-width: 670px) {
  .access__table-text .u-line-break {
    display: inline;
  }
}

@media screen and (min-width: 1050px) {
  .access__content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.access__map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

.access__map-img {
  max-width: 700px;
}

.access__google-map-link {
  border: 1px solid currentColor;
  background-color: var(--color-white);
  border-radius: 99px;
  padding: 0.3em 1em;
  transition: background-color 0.3s, color 0.3s;
}

@media (any-hover: hover) {
  .access__google-map-link:hover {
    background-color: var(--color-text);
    color: var(--color-white);
  }
}


