@charset "UTF-8";
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* スクロールバーを非表示にする */
  -ms-overflow-style: none;
  /* スクロールバーを非表示にする */
  /* スクロールバー全体を非表示にする */
}
html::-webkit-scrollbar {
  display: none;
  /* スクロールバーを表示しない */
  width: 0;
  /* スクロールバーの幅を0にする */
  height: 0;
  /* スクロールバーの高さを0にする (横スクロールバー用) */
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #373737;
  background-color: #EBEBE3;
}

a,
img,
span {
  display: block;
}

a {
  text-decoration: none;
  color: #373737;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
}

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

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

section {
  padding-block: 80px;
}
@media screen and (max-width: 768px) {
  section {
    padding-block: 40px;
  }
}

.py-64 {
  padding-block: 64px;
}
@media screen and (max-width: 768px) {
  .py-64 {
    padding-block: 32px;
  }
}

.pb-64 {
  padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .pb-64 {
    padding-bottom: 32px;
  }
}

.title {
  font-size: 1.75rem;
  line-height: 1.5;
  text-align: center;
  color: #890000;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 1.625rem;
  }
}
.title.cat::before {
  content: "";
  display: block;
  width: 48px;
  height: 45px;
  margin-inline: auto;
  background-image: url(../images/title-cat.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

h4.title {
  font-size: 1.5rem;
}
@media screen and (max-width: 480px) {
  h4.title {
    font-size: 1.25rem;
  }
}

#news {
  background-color: #fff;
  padding-top: 50vh;
}
#news .container {
  max-width: 1000px;
  margin-inline: auto;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  #news .container {
    padding-top: 40px;
  }
}
#news .container .news-item {
  padding-top: 12px;
  border-top: 1px solid #C7C7CC;
}
#news .container .news-item time {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #news .container .news-item time {
    font-size: 1.125rem;
  }
}
#news .container .news-item .news-title {
  padding: 20px;
  font-size: 1.5rem;
  text-decoration: underline;
  color: #0000ee;
}
#news .container .news-item .news-title:visited {
  color: #551a8b;
}
@media screen and (max-width: 768px) {
  #news .container .news-item .news-title {
    font-size: 1.125rem;
  }
}
#news .nav-links {
  padding-block: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  #news .nav-links {
    padding-block: 48px;
    gap: 12px;
  }
}
#news .nav-links .page-numbers {
  width: 40px;
  height: 40px;
  border: 1px solid #373737;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  #news .nav-links .page-numbers {
    width: 35px;
    height: 35px;
  }
}
#news .nav-links .page-numbers.current {
  background-color: #890000;
  color: #F6F7F8;
  border: 1px solid #890000;
}
#news .nav-links .page-numbers.dots, #news .nav-links .page-numbers.next, #news .nav-links .page-numbers.prev {
  border: none;
}
#news .nav-links .page-numbers.dots {
  width: -moz-fit-content;
  width: fit-content;
}

#home .news {
  padding-block: 42px;
}
@media screen and (max-width: 768px) {
  #home .news {
    padding-block: 32px;
  }
}
#home .news .container {
  max-width: 1250px;
}
#home .news-wapper {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  #home .news-wapper {
    flex-direction: column;
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  #home .news-wapper {
    padding-bottom: 8px;
  }
}
#home .news-wapper .news-title {
  min-width: 150px;
  text-align: right;
  color: #890000;
}
#home .news-wapper .news-title h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.75rem;
}
@media screen and (max-width: 768px) {
  #home .news-wapper .news-title h2 {
    font-size: 1.25rem;
  }
}
#home .news-wapper .news-title h2::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background-image: url(../images/front-page/megaphone.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#home .news-wapper .news-content {
  background-color: #F6F7F8;
  padding: 32px 48px;
  border: 2px solid #890000;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #home .news-wapper .news-content {
    padding: 16px 20px;
  }
}
#home .news-wapper .news-content .news-item {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 1.5rem;
  border-bottom: 1px solid #C7C7CC;
}
@media screen and (max-width: 1024px) {
  #home .news-wapper .news-content .news-item {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  #home .news-wapper .news-content .news-item {
    flex-direction: column;
    align-items: start;
    font-size: 1.125rem;
    gap: 0;
  }
}
#home .news-wapper .news-content .news-item time {
  min-width: 200px;
}
@media screen and (max-width: 1024px) {
  #home .news-wapper .news-content .news-item time {
    min-width: 155px;
  }
}
#home .news-wapper .news-content .news-item-title {
  color: #890000;
  transition: -webkit-text-decoration 0.2s;
  transition: text-decoration 0.2s;
  transition: text-decoration 0.2s, -webkit-text-decoration 0.2s;
}
#home .news-wapper .news-content .news-item-title:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
#home .news-link a {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.125rem;
  font-weight: 600;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
#home .news-link a:hover .arrow {
  background-color: #F6F7F8;
  color: #890000;
}
#home .news-link a .arrow {
  position: relative;
  width: 25px;
  height: 25px;
  background-color: #890000;
  color: #F6F7F8;
  border: 1px solid #890000;
  border-radius: 100%;
  transform: rotate(90deg);
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}
#home .news-link a .arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#home .food {
  background-color: #F6F7F8;
}
#home .food-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
#home .food-list .food-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
}
@media screen and (max-width: 768px) {
  #home .food-list .food-item {
    flex-direction: column;
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  #home .food-list .food-item-image {
    order: -1;
  }
}
#home .food-list .food-item-image img {
  max-width: 440px;
}
@media screen and (max-width: 480px) {
  #home .food-list .food-item-image img {
    max-width: 100%;
  }
}
#home .food-list .food-item-text {
  max-width: 440px;
}
#home .food-list .food-item-text h3 {
  padding-bottom: 24px;
  font-size: 1.75rem;
  line-height: 1.5;
  color: #890000;
}
@media screen and (max-width: 768px) {
  #home .food-list .food-item-text h3 {
    font-size: 1.125rem;
  }
}
#home .food-list .food-item-text p {
  line-height: 1.7;
}
#home .food-bg {
  position: relative;
}
#home .food-bg img {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
}
#home .food-bg-text {
  width: 100%;
  max-width: 1080px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(137, 0, 0, 0.8);
  color: #F6F7F8;
  text-align: center;
  font-size: clamp(1.25rem, 1.117rem + 0.57vw, 1.5rem);
  padding-block: 4%;
}
#home .omoi-content {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  #home .omoi-content {
    flex-direction: column;
    gap: 24px;
  }
}
#home .omoi-content .philosophy-youtube {
  width: 100%;
  max-width: 440px;
}
@media screen and (max-width: 1024px) {
  #home .omoi-content .omoi-text {
    max-width: 440px;
  }
}
#home .omoi-content .omoi-text h3 {
  padding-bottom: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #890000;
}
@media screen and (max-width: 768px) {
  #home .omoi-content .omoi-text h3 {
    font-size: 1.125rem;
  }
}
#home .tenpo {
  background-color: #F6F7F8;
}
#home .tenpo-text {
  max-width: 660px;
  margin-inline: auto;
}
#home .tenpo .swiper-wrapper {
  transition-timing-function: linear;
}
#home .tenpo .swiper-slide img {
  width: 100%;
  max-width: 360px;
}
#home .access .map {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
  padding-bottom: 24px;
}
@media screen and (max-width: 480px) {
  #home .access .map {
    padding-inline: 0;
  }
}
#home .access .map iframe {
  height: 400px;
}
#home .access-information {
  padding-bottom: 42px;
}
@media screen and (max-width: 768px) {
  #home .access-information {
    padding-bottom: 32px;
  }
}
#home .access-information h3 {
  padding-bottom: 8px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #home .access-information h3 {
    font-size: 1.125rem;
  }
}
#home .access-information dl div {
  display: flex;
  align-items: center;
}

#access {
  padding-top: 50vh;
}
#access .access {
  background-color: #F6F7F8;
}
#access .access .map {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  #access .access .map {
    padding-inline: 0;
  }
}
#access .access .map iframe {
  height: 400px;
}
#access .access .information h3 {
  padding-bottom: 8px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #access .access .information h3 {
    font-size: 1.125rem;
  }
}
#access .access .information dl div {
  display: flex;
  align-items: center;
}
#access .access-image {
  max-width: 800px;
  margin-inline: auto;
}
#access .access-information-list {
  margin-inline: auto;
  max-width: 1000px;
}
#access .access-information-list .access-information-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #C7C7CC;
}
@media screen and (max-width: 768px) {
  #access .access-information-list .access-information-item {
    flex-direction: column;
    align-items: start;
    padding: 8px 0;
  }
}
#access .access-information-list .access-information-item dt {
  min-width: 250px;
  font-size: 1.25rem;
  font-weight: bold;
}
#access .access-information-list .access-information-item dd {
  font-size: 1.125em;
  font-weight: 600;
}

#food {
  padding-top: 50vh;
}
#food .foods {
  background-color: #F6F7F8;
}
#food .foods-text {
  max-width: 630px;
  margin-inline: auto;
}
#food .foods span {
  display: block;
  text-align: center;
}
#food .foods .food-nav {
  max-width: 496px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #food .foods .food-nav {
    max-width: 272px;
  }
}
#food .foods .food-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
#food .foods .food-nav ul li a:hover {
  text-decoration: underline;
}
#food .foods .food-content {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  #food .foods .food-content {
    gap: 48px;
    flex-direction: column;
    padding-inline: 0;
  }
}
#food .foods .food-content .food-item {
  flex: 1;
  max-width: 470px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#food .foods .food-content .food-item-image img {
  margin-inline: auto;
}
#food .foods .food-content .food-item-text h5 {
  color: #890000;
  font-size: 1.25rem;
  font-weight: bold;
  padding-bottom: 8px;
}
@media screen and (max-width: 480px) {
  #food .foods .food-content .food-item-text h5 {
    font-size: 1.125rem;
  }
}
#food .foods .food-content .food-item-text span {
  text-align: left;
  padding-bottom: 8px;
}
#food .foods .food-content .food-item-text span,
#food .foods .food-content .food-item-text p {
  padding-inline: 8px;
}
@media screen and (max-width: 480px) {
  #food .foods .food-content .food-item-text {
    padding-inline: 20px;
  }
}
#food .foods .food-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 64px;
       column-gap: 64px;
}
@media screen and (max-width: 768px) {
  #food .foods .food-list {
    flex-direction: column;
  }
}
#food .foods .food-list-item {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
  border-top: 1px solid #C7C7CC;
  padding-inline: 24px;
}
@media screen and (max-width: 768px) {
  #food .foods .food-list-item {
    width: 100%;
    max-width: 470px;
  }
}
#food .foods .food-list-item.pc {
  border-top: none;
}
@media screen and (max-width: 768px) {
  #food .foods .food-list-item.pc {
    display: none;
  }
}
#food .foods #kushikatsu-food .text {
  max-width: 830px;
  margin-inline: auto;
}
#food .foods #kushikatsu-food .text span {
  text-align: left;
  padding-bottom: 4px;
}
@media screen and (max-width: 768px) {
  #food .foods #kushikatsu-food .food-list.pc {
    display: none;
  }
}
#food .foods #kushikatsu-food .food-list.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #food .foods #kushikatsu-food .food-list.sp {
    display: flex;
  }
}
#food .foods #kushikatsu-food .food-list.accordion-hidden {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
}
#food .foods #kushikatsu-food .food-list.accordion-hidden.is-open {
  max-height: 2000px;
  opacity: 1;
}
#food .foods #kushikatsu-food .food-list.accordion-hidden .food-list-item {
  margin-inline: auto;
}
#food .foods #kushikatsu-food .accordion-btn {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #890000;
  color: #F6F7F8;
  border: 1px solid #890000;
  border-radius: 100%;
  margin-top: 16px;
  margin-inline: auto;
  cursor: pointer;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}
#food .foods #kushikatsu-food .accordion-btn:hover {
  background-color: #F6F7F8;
  color: #890000;
}
#food .foods #kushikatsu-food .accordion-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  transition: transform 0.3s ease-out;
}
#food .foods #kushikatsu-food .accordion-btn.is-active svg {
  transform: translate(-50%, -50%) rotate(0deg);
}
#food .foods #speed-food {
  background-color: #EBEBE3;
}
#food .foods #speed-food .food-content {
  padding-bottom: 64px;
}
#food .foods #whimsical-food .food-content {
  padding-bottom: 64px;
}
#food .foods #hanquet {
  background-color: #EBEBE3;
}
#food .foods #hanquet .explanation {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 20px;
}
#food .foods #drink {
  padding-inline: 0;
  padding-top: 64px;
}
@media screen and (max-width: 768px) {
  #food .foods #drink {
    padding-bottom: 32px;
  }
}
#food .foods #drink .explanation {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

#omoi {
  padding-top: 50vh;
}
#omoi .omoi-about {
  background-color: #F6F7F8;
}
#omoi .omoi-about .container {
  padding-inline: 0;
}
#omoi .omoi-about-text {
  max-width: 710px;
  margin-inline: auto;
  padding-inline: 20px;
}
#omoi .omoi-about-image {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}
#omoi .commitement {
  background-color: #F6F7F8;
}
#omoi .commitement .container {
  padding-inline: 0;
}
#omoi .commitement-text {
  text-align: center;
  max-width: 674px;
  margin-inline: auto;
  padding-inline: 20px;
}
#omoi .commitement-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  #omoi .commitement-content {
    gap: 32px;
  }
}
#omoi .commitement-item {
  position: relative;
}
#omoi .commitement-item-text {
  max-width: 670px;
  padding: 4%;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1.25rem;
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1024px) {
  #omoi .commitement-item-text {
    margin-inline: auto;
    position: relative;
    padding: 20px 20px 0px;
    background-color: rgba(255, 255, 255, 0);
  }
}
@media screen and (max-width: 768px) {
  #omoi .commitement-item-text {
    font-size: 1rem;
  }
}
#omoi .philosophy-content {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  #omoi .philosophy-content {
    flex-direction: column;
    gap: 24px;
  }
}
#omoi .philosophy-content .philosophy-youtube {
  width: 100%;
  max-width: 440px;
}
@media screen and (max-width: 1024px) {
  #omoi .philosophy-content .philosophy-text {
    max-width: 440px;
  }
}
#omoi .philosophy-content .philosophy-text h3 {
  padding-bottom: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #890000;
}
@media screen and (max-width: 768px) {
  #omoi .philosophy-content .philosophy-text h3 {
    font-size: 1.125rem;
  }
}
#omoi .ranking {
  background-color: #F6F7F8;
}
#omoi .ranking-text {
  text-align: center;
}
#omoi .ranking h4 {
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #omoi .ranking h4 {
    font-size: 1.125rem;
  }
}
#omoi .ranking-content {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  #omoi .ranking-content {
    flex-direction: column;
    align-items: center;
  }
}
#omoi .ranking-item {
  max-width: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#omoi .ranking-item-text h5 {
  color: #890000;
  font-size: 1.125rem;
}
#omoi .ranking-item-text p {
  padding: 8px;
}

#tokushoho {
  background-color: #fff;
  padding-top: 50vh;
}
#tokushoho .tokushoho-content {
  padding-block: 80px;
}
@media screen and (max-width: 768px) {
  #tokushoho .tokushoho-content {
    padding-block: 40px;
  }
}
#tokushoho .tokushoho-content .tokushoho-list-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #C7C7CC;
}
@media screen and (max-width: 768px) {
  #tokushoho .tokushoho-content .tokushoho-list-item {
    flex-direction: column;
    align-items: start;
    padding: 8px 0;
  }
}
#tokushoho .tokushoho-content .tokushoho-list-item dt {
  min-width: 250px;
  font-size: 1.25rem;
  font-weight: bold;
}
#tokushoho .tokushoho-content .tokushoho-list-item dd {
  font-size: 1.125em;
  font-weight: 600;
}
#tokushoho .tokushoho-content .cansel dd {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#tenpo {
  padding-top: 50vh;
}
#tenpo .tenpo-about {
  background-color: #F6F7F8;
  padding-block: 0;
  padding-top: 64px;
}
@media screen and (max-width: 768px) {
  #tenpo .tenpo-about {
    padding-top: 32px;
  }
}
#tenpo .tenpo-about .container {
  max-width: 670px;
}
#tenpo .tenpo-about .container p {
  text-align: left;
}
#tenpo .shop-introduction {
  background-color: #F6F7F8;
}
#tenpo .shop-introduction-text {
  padding-inline: 20px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
#tenpo .shop-introduction-image {
  margin-inline: auto;
  max-width: 750px;
}
#tenpo .shop-introduction-content {
  max-width: 790px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  #tenpo .shop-introduction-content {
    gap: 32px;
  }
}
#tenpo .shop-introduction-content .shop-introduction-item {
  max-width: 340px;
}
#tenpo .shop-introduction-content .shop-introduction-item h4 {
  font-size: 1.125rem;
  text-align: center;
}
#tenpo .shop-introduction-content .shop-introduction-item p {
  padding: 8px;
}
#tenpo .our-sanctuary-text {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
#tenpo .our-sanctuary-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  #tenpo .our-sanctuary-content {
    gap: 32px;
  }
}
#tenpo .our-sanctuary-content .our-sanctuary-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  #tenpo .our-sanctuary-content .our-sanctuary-item {
    flex-direction: column;
    gap: 12px;
  }
}
#tenpo .our-sanctuary-content .our-sanctuary-item-image {
  flex: 1;
  max-width: 470px;
}
#tenpo .our-sanctuary-content .our-sanctuary-item-image img {
  width: 100%;
}
#tenpo .our-sanctuary-content .our-sanctuary-item-text {
  flex: 1;
}
@media screen and (max-width: 768px) {
  #tenpo .our-sanctuary-content .our-sanctuary-item-text {
    max-width: 470px;
  }
}
#tenpo .our-sanctuary-content .our-sanctuary-item-text h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #890000;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  #tenpo .our-sanctuary-content .our-sanctuary-item-text h4 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  #tenpo .our-sanctuary-content .our-sanctuary-item:nth-of-type(2n) .our-sanctuary-item-image {
    order: -1;
  }
}
#tenpo .cat-gallery {
  background-color: #F6F7F8;
}
#tenpo .cat-gallery-text {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
#tenpo .cat-gallery-content {
  padding-inline: 0;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  #tenpo .cat-gallery-content {
    gap: 32px;
  }
}
#tenpo .cat-gallery-content-text {
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  #tenpo .cat-gallery-content-image {
    order: -1;
  }
}

#single {
  background-color: #fff;
  padding-top: 50vh;
}
#single .article {
  max-width: 1080px;
  margin-inline: auto;
}
#single .article-text {
  font-size: 1.25rem;
  border-bottom: 1px solid #C7C7CC;
}
@media screen and (max-width: 768px) {
  #single .article-text {
    font-size: 1.125rem;
  }
}
#single .article-text p {
  padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
  #single .article-text p {
    padding-bottom: 32px;
  }
}

.button a {
  max-width: 440px;
  background-color: #890000;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 12px;
  border-radius: 4px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3019607843);
  box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.1490196078);
  transition: all 0.2s ease-in-out;
}
.button a:hover {
  box-shadow: none;
  transform: translateY(2px);
}
@media screen and (max-width: 768px) {
  .button a {
    max-width: 330px;
  }
}
.button a span {
  position: relative;
  width: 100%;
  max-width: 373px;
  text-align: center;
  background-color: #F6F7F8;
  color: #890000;
  font-size: 1.25rem;
  line-height: 1.7;
  padding-block: 16px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .button a span {
    max-width: 282px;
    padding-block: 12px;
  }
}
.button a span::after, .button a span::before {
  content: "";
  width: 18px;
  height: 14px;
  position: absolute;
  background-image: url(../images/paw-pad.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.button a span::before {
  top: 50%;
  transform: translateY(-50%);
  left: 26px;
}
@media screen and (max-width: 768px) {
  .button a span::before {
    left: 11px;
  }
}
.button a span::after {
  top: 50%;
  transform: translateY(-50%);
  right: 26px;
}
@media screen and (max-width: 768px) {
  .button a span::after {
    right: 11px;
  }
}

.sub-btn {
  padding-bottom: 48px;
}
@media screen and (max-width: 1024px) {
  .sub-btn {
    padding-bottom: 32px;
  }
}
.sub-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 228px;
  padding-block: 14px;
  background-color: #fff;
  margin-inline: auto;
  border: 2px solid #890000;
  color: #373737;
  font-size: 1.25rem;
  transition: color 0.3s;
}
.sub-btn a:hover {
  background-color: #890000;
  color: #fff;
}

.contact {
  background-color: #F6F7F8;
}
.contact h3 {
  padding-bottom: 42px;
}
.contact a {
  color: #890000;
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contact a {
    font-size: 2.5rem;
  }
}
.contact dl {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}
.header .noren {
  width: 100%;
  height: 50vh;
  position: relative;
}
.header-reservation {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #F6F7F8;
}
@media screen and (max-width: 1280px) {
  .header-reservation {
    left: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .header-reservation {
    top: 10vh;
    transform: none;
  }
}
@media screen and (max-width: 1024px) {
  .header-reservation .pc {
    display: none;
  }
}
.header-reservation .pc h2 {
  font-size: 1rem;
  font-weight: normal;
}
.header-reservation .pc a {
  color: #F6F7F8;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-reservation .pc a::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background-image: url(../images/tel-icon.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.header-reservation .pc dl div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-reservation .pc dl div dt {
  font-size: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .header-reservation .sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
.header-reservation .sp a img {
  width: 50px;
}
@media screen and (max-width: 480px) {
  .header-reservation .sp a img {
    width: 40px;
  }
}
.header-reservation .sp .time {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-reservation .sp .time span {
  line-height: 1.5;
}
.header-reservation .sp .time span:nth-child(2)::before {
  content: "";
  width: 1px;
  height: 4px;
  background-color: #F6F7F8;
  display: block;
  margin-inline: auto;
}
.header-icon {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .header-icon {
    width: 220px;
  }
}
@media screen and (max-width: 480px) {
  .header-icon {
    width: 180px;
  }
}
.header .hamburger {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: absolute;
  right: 10%;
  top: 10vh;
  z-index: 100;
}
@media screen and (max-width: 1280px) {
  .header .hamburger {
    right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .header .hamburger {
    width: 36px;
    height: 36px;
  }
}
.header .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #F6F7F8;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.header .hamburger.is_open span {
  background-color: #373737;
}
.header .hamburger.is_open span:nth-of-type(1) {
  transform: translate(0px, 22px) rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .header .hamburger.is_open span:nth-of-type(1) {
    transform: translate(0px, 16px) rotate(45deg);
  }
}
.header .hamburger.is_open span:nth-of-type(2) {
  opacity: 0;
}
.header .hamburger.is_open span:nth-of-type(3) {
  transform: translate(0px, -23px) rotate(-45deg);
}
@media screen and (max-width: 1024px) {
  .header .hamburger.is_open span:nth-of-type(3) {
    transform: translate(0px, -17px) rotate(-45deg);
  }
}
.header .mask {
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: #F6F7F8;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header .mask.is_active {
  opacity: 1;
  visibility: visible;
}
.header .mask .container {
  position: relative;
  max-width: 100%;
}
.header .mask .container .icon-pc {
  position: absolute;
  top: 15vh;
  left: 10%;
}
@media screen and (max-width: 1280px) {
  .header .mask .container .icon-pc {
    left: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .header .mask .container .icon-pc {
    display: none;
  }
}
.header .mask .container .icon-pc img {
  width: 225px;
}
.header .mask .container nav {
  position: absolute;
  top: 15vh;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .header .mask .container nav {
    top: 10vh;
  }
}
.header .mask .container nav ul {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 12px;
}
.header .mask .container nav ul li {
  font-size: 1.75rem;
}
@media screen and (max-width: 768px) {
  .header .mask .container nav ul li {
    font-size: 1.125rem;
  }
}
.header .mask .container nav ul li:not(:last-of-type) a {
  transition: -webkit-text-decoration 0.2s;
  transition: text-decoration 0.2s;
  transition: text-decoration 0.2s, -webkit-text-decoration 0.2s;
}
.header .mask .container nav ul li:not(:last-of-type) a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.header .mask .container nav .icon-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header .mask .container nav .icon-sp {
    display: block;
  }
}
.header .mask .container nav .icon-sp img {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .header .mask .container nav .icon-sp img {
    width: 220px;
  }
}
@media screen and (max-width: 480px) {
  .header .mask .container nav .icon-sp img {
    width: 180px;
  }
}
.header .mask .container nav .reservation a {
  background-color: #890000;
  color: #F6F7F8;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 20px 30px;
  border: 2px solid #890000;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}
.header .mask .container nav .reservation a:hover {
  background-color: #F6F7F8;
  color: #890000;
}
@media screen and (max-width: 768px) {
  .header .mask .container nav .reservation a {
    padding: 12px 8px;
  }
}

.footer {
  color: #fff;
  position: relative;
}
.footer-head {
  background-color: rgba(0, 0, 0, 0.7);
  padding-block: 40px;
}
@media screen and (max-width: 768px) {
  .footer-head {
    padding-block: 32px;
  }
}
.footer-head h3 {
  padding-block: 24px;
  font-size: 1.5rem;
  text-align: center;
  color: #E0E0D8;
}
@media screen and (max-width: 768px) {
  .footer-head h3 {
    padding-block: 18px;
  }
}
.footer-head .footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .footer-head .footer-links {
    flex-direction: column;
    gap: 24px;
  }
}
.footer-head .footer-links .sub-btn {
  padding-bottom: 0;
  min-width: 220px;
}
.footer-body {
  background-color: #000000;
  padding-bottom: 24px;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .footer-body {
    padding-bottom: 16px;
    padding-top: 64px;
  }
}
.footer-body .footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 75px;
}
@media screen and (max-width: 1024px) {
  .footer-body .footer-nav {
    align-items: start;
    flex-direction: column;
    gap: 32px;
  }
}
.footer-body .footer-nav-logo {
  width: 180px;
}
.footer-body .footer-nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .footer-body .footer-nav-list {
    align-items: start;
    flex-direction: column;
    gap: 8px;
    padding-inline: 16px;
  }
}
.footer-body .footer-nav-list a {
  font-size: 1.25rem;
  color: #fff;
  transition: -webkit-text-decoration 0.2s;
  transition: text-decoration 0.2s;
  transition: text-decoration 0.2s, -webkit-text-decoration 0.2s;
}
.footer-body .footer-nav-list a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
@media screen and (max-width: 1280px) {
  .footer-body .footer-nav-list a {
    font-size: 1.125em;
  }
}
.footer-body .footer-information {
  padding-bottom: 24px;
}
.footer-body .footer-information h2 {
  font-size: 1.5rem;
  padding-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .footer-body .footer-information h2 {
    font-size: 1.125em;
  }
}
.footer-body .footer-information address {
  padding-bottom: 8px;
}
.footer-body .footer-information dl div {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 8px;
}
.footer-body .footer-information dl div a {
  color: #fff;
}
.footer-body small {
  display: block;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .footer-body small {
    font-size: 0.7rem;
  }
}

#home .keyvisual {
  width: 100%;
  height: 100dvh;
  background-image: url(../images/front-page/kv.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
#home .keyvisual .scroll {
  position: absolute;
  top: 82vh;
  left: 50%;
  transform: translateX(-50%);
}
#home .keyvisual .scroll-text {
  color: #F6F7F8;
  position: relative;
  z-index: 3;
  text-align: center;
  font-size: 1.75rem;
}
@media screen and (max-width: 480px) {
  #home .keyvisual .scroll-text {
    font-size: 1rem;
  }
}
#home .keyvisual .scroll-arrow {
  position: relative;
  margin-inline: auto;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  color: #F6F7F8;
  animation: bounce 2s linear infinite;
}
#home .keyvisual .scroll-arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}

.keyvisual {
  padding-block: 64px;
}
@media screen and (max-width: 768px) {
  .keyvisual {
    padding-block: 32px;
  }
}
.keyvisual h2 {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .keyvisual h2 {
    font-size: 1.125rem;
  }
}

.page-top {
  position: fixed;
  z-index: 10;
  bottom: 30px;
  right: 80px;
  width: 80px;
  height: 80px;
  background-color: #890000;
  border: 2px solid #890000;
  opacity: 0;
  border-radius: 100%;
  transition: background-color 0.3s ease, opacity 0.3s ease-out;
}
@media screen and (max-width: 1024px) {
  .page-top {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .page-top {
    width: 50px;
    height: 50px;
  }
}
.page-top:hover {
  background-color: #F6F7F8;
}
.page-top:hover svg {
  color: #890000;
}
.page-top-arrow {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-top-arrow svg {
  width: 20px;
  height: 30px;
  color: #F6F7F8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.3s ease-out;
}
@media screen and (max-width: 1024px) {
  .page-top-arrow svg {
    width: 15px;
    height: 24px;
  }
}/*# sourceMappingURL=style.css.map */