@charset "UTF-8";
/*
* Theme Name: Kitanuki
*/
* {
  box-sizing: border-box;
}
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0;
  padding: 0;
  font-family: "游ゴシック", "Yu Gothic", "Noto Sans JP", "メイリオ", "meiryo", Helvetica, sans-serif;
}
a {
  color: #6b3906;
  text-decoration: none;
}
a:hover img {
  opacity: 0.75;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.serif {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
}
.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}
.pcShow {
  display: block!important;
}
.pcHide {
  display: none!important;
}
@media all and (max-width: 640px) {
  .pcHide {
    display: none!important;
  }
  .spShow {
    display: block!important;
  }
}
.header {
  max-width: 1400px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 2px 8px #bbb;
  background: #fff;
  margin: auto;
  position: sticky;
  top: 0;
  z-index: 99;
}
.header__logo {
  width: 320px;
}
.header__logo * {
  display: block;
}
.header__gnav {
  width: calc(100% - 440px);
  display: block;
}
.toggleMenu {
  display: none;
}
.container {
  max-width: 1230px;
}
.container.container--short {
  max-width: 810px;
  position: relative;
}
.container.container--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  max-width: 1320px;
}
.container.container--toppage {
  max-width: 1000px;
}
.gnav {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  width: 100%;
}
.gnav > li {
  width: 16.66%;
  padding: 0 10px;
  text-align: center;
  font-size: 0.92em;
  border-left: solid 1px;
  color: #6b3906;
  position: relative;
}
.gnav > li:last-child {
  border-right: solid 1px;
}
.gnav > li:hover:after {
  content: "";
  border-bottom: solid 10px #fff000;
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 0;
}
.gnav > li:hover * {
  opacity: 1;
}
.gnav__link {
  display: block;
  overflow: hidden;
}
.gnav__link > img {
  max-width: 40px;
  max-height: 40px;
  margin: auto;
  display: block;
  width: 50%;
}
.top-hero {
  margin: 150px auto 200px;
}
.topSlider {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0;
  background-image: url(img/top-slider-bg.png);
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}
.topSlider .swiper-wrapper {
  padding: 0 30px;
}
.topSlider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row-reverse;
  font-size: 3.5em;
  font-weight: bold;
  color: inherit;
}
.topSlider .swiper-slide img {
  width: 60%;
}
.topSlider .swiper-slide div {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 100%;
  z-index: 2;
}
.topSlider .swiper-button-prev,
.topSlider .swiper-button-next {
  width: 25px;
  height: 25px;
  line-height: 1;
}
.topSlider .swiper-button-prev:after,
.topSlider .swiper-button-next:after {
  content: "";
  width: 25px;
  height: 25px;
  border: solid 5px #bbb;
  transform: rotate(45deg);
}
.topSlider .swiper-button-next {
  right: 0;
  left: unset;
}
.topSlider .swiper-button-next:after {
  border-left: none;
  border-bottom: none;
  translate: -5px 0;
}
.topSlider .swiper-button-prev {
  left: 0;
  right: unset;
}
.topSlider .swiper-button-prev:after {
  border-top: none;
  border-right: none;
  translate: 5px 0;
}
.topSlider .swiper-pagination {
  text-align: left;
}
.topSlider .swiper-pagination-bullet {
  width: 1em;
  height: 1em;
  margin: 0.5em !important;
}
.topSlider .swiper-pagination-bullet-active {
  background: #6b3906;
}
.heroLinkItems {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.hiroLink {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 1.44em;
  font-weight: bolder;
  text-align: center;
  background: #fffac6;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  position: relative;
}
.hiroLink:after {
  content: "";
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 1;
  display: block;
  background: url(img/hover-tanuki.png) no-repeat;
  background-size: contain;
  top: 50px;
  z-index: -1;
}
.hiroLink:hover:after {
  animation-name: hoverTanuki;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
}
@keyframes hoverTanuki {
  0% {
    top: 50px;
    z-index: -1;
  }
  80% {
    top: -50px;
    z-index: -1;
  }
  100% {
    top: -48px;
    z-index: 2;
  }
}
.top-news {
  border-top: solid 10px #6b3906;
  border-bottom: solid 10px #6b3906;
  padding: 80px 0;
  margin-bottom: 150px;
  background-color: #fffac6;
}
.top-news-readmore {
  width: fit-content;
  margin: 40px auto 0;
  display: block;
}
.top-heading {
  font-weight: bolder;
  font-size: 1.8em;
  text-align: center;
  color: #6b3906;
  margin-bottom: 40px;
}
.newsItem {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  width: 100%;
  line-height: 1.5;
  margin-bottom: 8px;
}
.newsItem__date {
  margin-right: 20px;
  width: 130px;
}
.newsItem__title {
  width: calc(100% - 150px);
}
.top-kitanuki1 {
  position: absolute;
  bottom: -220px;
  left: -70px;
  width: 220px;
}
.newsItems {
  max-width: 460px;
  margin: auto;
}
.top-reviewItems {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}
.reviewItem {
  display: block;
  width: calc(50% - 20px);
  border: dotted 5px #6b3906;
  border-radius: 50px;
  padding: 25px;
  overflow: hidden;
}
.reviewItem__avatar {
  float: right;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: 15px;
  border: solid 1px #6b3906;
}
.reviewItem__title {
  font-size: 1.24em;
  font-weight: bolder;
  line-height: 1.5;
  height: 80px;
  margin-bottom: 0;
  color: #6b3906;
}
.reviewItem__content {
  background-image: linear-gradient(180deg, #b69671 1px, transparent 1px);
  background-size: 100% 2.5em;
  background-position-y: -1px;
  line-height: 2.5;
  margin-bottom: 0.5em;
  color: #333;
  height: calc(100% - 80px);
}
.top-review-readmore {
  display: block;
  width: fit-content;
  margin: 30px 0 0 auto;
}
.top-instagram {
  border-top: solid 10px #6b3906;
  margin-bottom: 180px;
  background: url(img/top-bg2.jpg) no-repeat;
  background-size: 100% 100%;
  padding-bottom: 100px;
  padding-top: 100px;
}
.top-instagram .sb_instagram_header {
  display: none;
}
.top-instagram .sbi_info_wrapper {
  display: none;
}
.top-instagram #sbi_images {
  margin-bottom: 50px;
}
.top-review {
  margin-bottom: 100px;
}
.access-wrap {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}
.access-map {
  width: calc(100% - 360px);
  border: solid 1px #6b3906;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.access-info {
  width: 290px;
  margin-left: 40px;
  color: #6b3906;
  font-weight: bolder;
  font-size: 1.08em;
}
.access-googlemap {
  position: relative;
  width: 100%;
  height: 100%;
  background: #eee;
}
.access-googlemap > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-kitanuki2 {
  display: block;
  width: 200px;
  margin: -50px 0 0 auto;
}
.top-access {
  margin-bottom: 200px;
}
.footer {
  margin-top: 200px;
}
.footer1 {
  text-align: center;
  background: #fffac6;
  position: relative;
  padding: 0 0 10px;
}
.footer1:before {
  content: url(img/footer-bg.svg);
  display: block;
  position: absolute;
  bottom: 99%;
  width: 100%;
  line-height: 0;
  z-index: -1;
}
.footer-nav {
  font-size: 0.96em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.footer-nav > a {
  padding: 0 1em;
  margin-bottom: 1em;
  color: #333;
}
.footer-nav.footer-nav--1 > a {
  border-left: solid 1px;
}
.footer-nav.footer-nav--1 > a:last-child {
  border-right: solid 1px;
}
.footer2 {
  background: #fffac6;
  padding-bottom: 10px;
  border-bottom: solid 10px #6b3906;
}
.footer-info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-info-logo {
  width: 140px;
  margin-right: 20px;
}
.footer-info-text {
  width: calc(100% - 160px);
  padding-left: 20px;
  border-left: solid 1px #6b3906;
  color: #6b3906;
  font-size: 0.92em;
  line-height: 1.5;
}
.footer-info-text p {
  margin: 0;
}
.footer-sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 20px;
  margin-top: -50px;
}
.footer-sns * {
  display: block;
}
.footer-sns img {
  width: 50px;
}
.copyright {
  text-align: center;
  color: #666;
  margin: 40px 0 0;
  font-weight: lighter;
  font-size: 0.88em;
}
/* page */
main.page,
main.post {
  margin-top: -100px;
}
main.page.page-review,
main.post.page-review {
  background-image: url(img/top-bg2.jpg);
  background-size: auto 100%;
  background-position: top center;
  background-repeat: no-repeat;
}
.post-container h2 {
  font-weight: bold;
  color: #6b3906;
  font-size: 1.4em;
  margin-top: 4rem;
  margin-bottom: 1rem;
}
.post-container h3 {
  font-size: 1.32em;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.page-hero {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  margin-bottom: 150px;
  background-position: center;
  background-size: cover;
  background-blend-mode: color;
  background-color: rgba(93, 22, 0, 0.7);
}
.page-title {
  margin-bottom: 0;
  font-weight: bold;
  color: #fff;
  font-size: 2em;
}
.post-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #6b3906;
}
.hero-image {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin: -50px auto 50px;
}
.hero-image:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  filter: blur(10px);
  z-index: 1;
  background: inherit;
}
.hero-image img {
  display: block;
  position: relative;
  z-index: 2;
  margin: auto;
  max-height: 360px;
}
.pub-date {
  text-align: right;
  margin-top: -2.2em;
  margin-bottom: 2.2em;
}
.about-first {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
  margin-bottom: 200px;
}
.about-first-left {
  width: 48%;
}
.about-first-left > img {
  display: block;
  margin-bottom: 1em;
}
.about-first-right {
  width: 48%;
}
.about-first-name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.88em;
}
.about-first-name > img {
  width: 16em;
  margin-left: 1em;
}
.about-second {
  max-width: 920px;
  margin: auto;
  margin-bottom: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
.about-second-left {
  width: 50%;
}
.about-second-right {
  width: calc(50% - 50px);
}
.about-third {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 50px;
}
.about-third > * {
  width: 48%;
  max-width: 440px;
  display: flex;
}
.about-tanuki {
  margin: -100px 0 100px auto;
  text-align: right;
  position: relative;
  z-index: 2;
}
.about-tanuki img {
  width: 250px;
}
.about-4th {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin-bottom: 150px;
}
.about-4th-left,
.about-4th-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 50%;
  gap: 10px 0;
}
.about-4th-left > *,
.about-4th-right > * {
  width: 50%;
}
.about-4th-name,
.about-4th-text {
  width: calc(50% - 25px);
  margin: auto 0 auto 25px;
}
.about-4th-sub {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 10px;
}
.about-4th-sub > * {
  width: calc(50% - 5px);
}
.about-4th-main img,
.about-4th-sub img {
  display: block;
}
.about-4th-name {
  font-size: 1.7em;
  line-height: 1;
}
.about-4th-name img {
  height: 0.5em;
  margin-left: 0.5em;
  vertical-align: baseline;
}
.about-4th-name small {
  font-size: 0.5em;
}
.about-4th-text {
  font-size: 0.88em;
  border-left: solid 1px;
  padding-left: 0.44em;
  white-space: nowrap;
}
.about-4th-text > *:last-child {
  margin-bottom: 0;
}
.about-5th {
  color: #6b3906;
  text-align: center;
  background: url(img/leaf.png) no-repeat;
  background-position: center;
  background-size: 250px;
  line-height: 2;
}
.items-first {
  text-align: center;
  margin-bottom: 100px;
}
.items-second {
  max-width: 940px;
  margin: 0 auto 100px;
}
.items-second-relation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 10%;
  position: relative;
}
.items-second-relation-yajirushi {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 210px;
}
.items-third {
  text-align: center;
  margin-bottom: 100px;
}
.items-catalog {
  display: block;
  margin: 50px auto;
  width: fit-content;
}
.items-catalog img {
  width: 180px;
}
.items-catalog p {
  font-size: 0.88em;
  line-height: 1.5;
  margin: 10px auto;
}
.items-catalog strong {
  font-size: 1.8em;
}
.items-4th {
  width: 100vw;
  text-align: center;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fffac6;
  padding: 100px 0;
}
.items-4th img {
  max-width: 640px;
  max-height: 640px;
  display: block;
  margin: auto;
}
.items-5th {
  text-align: center;
  margin: 100px auto;
}
.items-flow {
  max-width: 740px;
  margin: auto;
}
.items-flow-color1,
.items-flow-color2 {
  color: #fff;
  background: #6b3906;
  width: auto;
  font-size: 1.12em;
  line-height: 1;
  padding: 0.5em 1.5em;
  border-radius: 1.12em;
  margin: 0 20px;
}
.items-flow-color2 {
  border: solid 2px #6b3906;
  color: #6b3906;
  background: none;
}
.items-flow table {
  width: 100%;
}
.items-flow td {
  width: 50%;
  padding: 5px 0px;
}
.items-flow td[colspan="2"] {
  width: 100%;
}
.items-flow td[rowspan="7"] {
  position: relative;
  vertical-align: bottom;
}
.items-flow td[rowspan="7"]:after {
  content: "";
  width: 2px;
  height: calc(100% - 20px);
  background: #6b3906;
  display: block;
  position: absolute;
  bottom: 10px;
  left: 50%;
  translate: -50% 0;
}
.items-flow-step {
  position: relative;
}
.items-flow-step:after {
  content: "";
  color: #fff;
  font-size: 0.76em;
  background: #6b3906;
  position: absolute;
  top: 50%;
  right: 100%;
  translate: 30% -50%;
  z-index: 2;
  display: block;
  line-height: 5em;
  width: 5em;
  border-radius: 2.5em;
}
.items-flow-step--1:after {
  content: "手続き1";
}
.items-flow-step--2:after {
  content: "手続き2";
}
.items-flow img {
  height: 1.5em;
  margin: 0 auto;
  display: block;
}
.cta {
  text-align: center;
  margin: 50px auto;
}
.ctaButton {
  background: #6b3906;
  color: #fff;
  display: block;
  line-height: 1;
  width: fit-content;
  padding: 0.75em 1.5em;
  font-weight: bold;
  font-size: 1.12em;
  min-width: 260px;
  border-radius: 3em;
  margin: auto;
}
.lightYellowCircle {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.lightYellowCircle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background: #fffac6;
  translate: -50% -50%;
  border-radius: 50%;
  z-index: -1;
}
.lightYellowCircle > h2 {
  margin-bottom: 1em;
}
.lightYellowCircle.lightYellowCircle--items {
  padding: 0%;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
}
.lightYellowCircle.lightYellowCircle--items > img {
  width: 100%;
  margin: 0;
}
.category-list {
  margin-bottom: 50px;
}
.category-list > ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.category-list > ul > li > a {
  border: solid 2px #6b3906;
  padding: 0.5em 1em;
  line-height: 1;
  display: block;
  font-size: 0.88em;
  font-weight: bold;
  border-radius: 2em;
  background: #fff;
  min-width: 9em;
  text-align: center;
}
.category-list > ul > li > a:hover {
  color: #fff;
  background: #6b3906;
}
.category-list > ul > li > a.current {
  pointer-events: none;
  background: #6b3906;
  color: #fff;
}
.postArchives {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: 60px 30px;
  margin-bottom: 120px;
}
.postArchives .postItem {
  width: calc(33.33% - 20px);
}
.postArchives.postArchives--catalog {
  display: block;
  gap: unset;
}
.postArchives.postArchives--catalog .postItem {
  width: 100%;
}
.postItem.postItem--catalog {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 80px;
}
.postItem__thumb {
  position: relative;
  height: 0;
  padding-bottom: 66%;
  border: solid 1px #6b3906;
  margin-bottom: 20px;
}
.postItem__thumb.postItem__thumb--catalog {
  width: 190px;
  height: auto;
  padding-bottom: 0;
  margin-right: 40px;
  margin-bottom: 0;
}
.postItem__thumb.postItem__thumb--catalog * {
  position: relative;
}
.postItem__thumb * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.postItem__text {
  font-size: 0.96em;
  line-height: 1.7;
}
.postItem__text.postItem__text--catalog {
  width: calc(100% - 220px);
  font-size: 1em;
}
.postItem__title {
  font-size: 1.5em;
  font-weight: bolder;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  margin-bottom: 10px;
  text-align: justify;
}
.postItem__title.postItem__title--catalog {
  font-size: 1.4em;
  margin-bottom: 20px;
}
.postItem__date {
  margin: 10px 0;
  color: #888;
}
.postItem__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-align: justify;
  margin-bottom: 0;
}
.postItem__description.postItem__description--catalog {
  -webkit-line-clamp: 5;
  min-height: calc(2em * 5);
  line-height: 2;
}
.nigiyakashi-tanuki {
  height: 0;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.nigiyakashi-tanuki img {
  width: 220px;
  position: absolute;
  translate: 0 -50%;
}
.nigiyakashi-tanuki .left {
  left: 10%;
}
.nigiyakashi-tanuki .right {
  right: 10%;
}
.catalog-mainImage {
  width: 90%;
  margin: 0 auto 50px;
}
.catalog-mainImage img {
  display: block;
  max-width: 480px;
  max-height: 480px;
  margin: auto;
}
.catalog-viewer {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
}
.catalog-viewer-wrap {
  width: 100vw;
  margin: 50px calc(-50vw + 50%);
  padding: 30px 0;
  background: lightyellow;
}
.catalog-viewer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.reviews {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.reviews .reviewItem {
  width: calc(33.33% - 27px);
}
.pagenation {
  margin: 80px auto;
}
.pagenation.pagenation--post {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.pagenation .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagenation .wp-pagenavi .pages,
.pagenation .wp-pagenavi .extend,
.pagenation .wp-pagenavi .first,
.pagenation .wp-pagenavi .last {
  display: none;
}
.pagenation .wp-pagenavi > * {
  position: relative;
  width: 2em;
  height: 2em;
  line-height: 2;
  font-size: 1em;
  padding: 0;
  text-align: center;
  border: none;
  margin: 0 5px;
}
.pagenation .wp-pagenavi > .previouspostslink,
.pagenation .wp-pagenavi > .nextpostslink {
  text-indent: 10em;
  overflow: hidden;
  border: solid 6px;
  transform: rotate(45deg);
  width: 1.7em;
  height: 1.7em;
}
.pagenation .wp-pagenavi > .previouspostslink {
  border-top-color: transparent;
  border-right-color: transparent;
}
.pagenation .wp-pagenavi > .nextpostslink {
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.pagenation .wp-pagenavi > .current,
.pagenation .wp-pagenavi > .page:hover {
  background: #6b3906;
  color: #fff;
  border-radius: 50%;
}
.pagenation .post-prev:before,
.pagenation .post-next:after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border: solid 5px;
  vertical-align: middle;
  transform: rotate(45deg);
}
.pagenation .post-next:after {
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.pagenation .post-prev:before {
  border-top-color: transparent;
  border-right-color: transparent;
}
@media all and (max-width: 1300px) {
  .header__logo {
    width: 280px;
  }
  .header__gnav {
    width: calc(100% - 320px);
  }
  .gnav > li {
    padding: 0;
    font-size: 0.84em;
    white-space: nowrap;
  }
}
@media all and (max-width: 1024px) {
  .topSlider .swiper-slide a {
    font-size: 2.9em;
  }
  .heroLinkItems {
    gap: 20px;
  }
  .hiroLink {
    font-size: 1.32em;
    width: 180px;
    height: 180px;
  }
}
@media all and (max-width: 820px) {
  .hiroLink {
    font-size: 1.24em;
    width: 160px;
    height: 160px;
  }
  .topSlider .swiper-wrapper {
    padding: 0 20px;
  }
  .topSlider .swiper-button-prev,
  .topSlider .swiper-button-next {
    display: none;
  }
  .topSlider .swiper-slide a {
    font-size: 2.5em;
  }
  /* page */
  .post-container h2 {
    font-size: 1.5em;
  }
  .page-hero {
    height: 220px;
    align-items: end;
    padding-bottom: 40px;
    margin-bottom: 120px;
  }
  .about-first-left {
    width: 40%;
  }
  .about-first-right {
    width: 56%;
  }
  .about-first-name {
    display: block;
    text-align: left;
  }
  .about-first-name > img {
    margin-left: 0;
  }
  .about-second-left {
    width: 55%;
  }
  .about-second-right {
    width: calc(45% - 50px);
  }
  .about-4th-main,
  .about-4th-sub {
    width: 40%;
  }
  .about-4th-name,
  .about-4th-text {
    width: calc(60% - 10px);
    margin-left: 10px;
  }
  .about-4th-text {
    white-space: normal;
  }
  .lightYellowCircle {
    font-size: 0.92em;
  }
  .lightYellowCircle > h2 {
    margin-bottom: 0.5em;
  }
  .reviews .reviewItem {
    width: calc(50% - 20px);
  }
}
@media all and (max-width: 640px) {
  .gnav > li:hover:after {
    display: none;
  }
  .header {
    position: fixed;
    left: 0;
    width: 100%;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
  .header__logo {
    width: 220px;
    margin: auto;
  }
  .header__gnav {
    width: 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all ease 0.8s;
  }
  .toggleMenu {
    display: block;
    height: 32px;
    width: 50px;
    position: absolute;
    bottom: -31px;
    left: 50%;
    translate: -50%;
    border: none;
    background: #fff;
    box-shadow: 0 3px 3px #ccc;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0px;
  }
  .toggleMenu:active {
    outline: none;
  }
  .toggleMenu__line {
    display: block;
    position: absolute;
    top: 0px;
    left: 12px;
    width: 26px;
    height: 2px;
    background: #6b3906;
    z-index: 1;
  }
  .toggleMenu__line.toggleMenu__line--1 {
    top: 6px;
  }
  .toggleMenu__line.toggleMenu__line--2 {
    top: 14px;
  }
  .toggleMenu__line.toggleMenu__line--3 {
    top: 22px;
  }
  .menu-active .toggleMenu__line.toggleMenu__line--2 {
    display: none;
  }
  .menu-active .toggleMenu__line.toggleMenu__line--1 {
    transform: rotate(30deg);
    top: 15px;
  }
  .menu-active .toggleMenu__line.toggleMenu__line--3 {
    transform: rotate(-30deg);
    top: 15px;
  }
  .menu-active .header__gnav {
    display: block;
    width: 100%;
    height: 310px;
    visibility: visible;
  }
  .gnav {
    margin: 20px auto 0;
    display: block;
    width: 180px;
  }
  .gnav > li {
    font-size: 1em;
    width: 100%;
    border-left: none;
    border-bottom: solid 1px;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
  .gnav > li:last-child {
    border-right: none;
  }
  .gnav__link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .gnav__link > img {
    margin: 0 10px 0 0;
    max-width: 32px;
    max-height: 32px;
  }
  .container.container--header {
    padding: 10px  0;
    display: block;
  }
  .main {
    padding-top: 60px;
  }
  .top-hero {
    margin: 100px auto 100px;
  }
  .topSlider {
    padding: 0 10px;
    margin-bottom: 80px;
  }
  .topSlider .swiper-slide {
    font-size: 1.56em;
  }
  .topSlider .swiper-slide a {
    flex-direction: column;
    font-size: 2em;
    line-height: 1.6;
  }
  .topSlider .swiper-slide a > img {
    width: 100%;
  }
  .topSlider .swiper-slide a > div {
    width: 100%;
  }
  .topSlider .swiper-pagination {
    position: relative;
    margin-top: 30px;
    text-align: center;
  }
  .topSlider .swiper-pagination-bullet {
    width: 0.6em;
    height: 0.6em;
    margin: 0.3em !important;
  }
  .hiroLink {
    width: 150px;
    height: 150px;
    letter-spacing: -0.05em;
    font-size: 1.2em;
    line-height: 1.6;
    padding: 0;
  }
  .heroLinkItems {
    gap: 40px 20px;
  }
  .top-news {
    padding: 40px 0px;
    margin-bottom: 120px;
  }
  .top-heading {
    font-size: 1.4em;
    margin-bottom: 30px;
  }
  .newsItem {
    font-size: 0.92em;
  }
  .newsItem__date {
    font-size: 0.92em;
    width: 110px;
    margin-right: 10px;
  }
  .newsItem__title {
    width: calc(100% - 120px);
  }
  .top-kitanuki1 {
    width: 120px;
    bottom: -120px;
    left: 10px;
  }
  .top-reviewItems {
    display: block;
    max-width: 320px;
    margin: auto;
  }
  .reviewItem {
    padding: 15px;
    border-radius: 30px;
    margin-bottom: 40px;
    width: 100%;
  }
  .reviewItem__avatar {
    width: 80px;
    height: 80px;
  }
  .reviewItem__title {
    height: auto;
    margin: 15px 0;
  }
  .reviewItem__content {
    font-size: 0.92em;
  }
  .top-review-readmore {
    margin: 40px auto 0;
  }
  .top-instagram {
    border-bottom: solid 10px #6b3906;
    margin-bottom: 100px;
  }
  .access-wrap {
    display: block;
  }
  .access-map {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
  }
  .access-info {
    width: 85%;
    margin: 0 auto;
    font-size: 1em;
  }
  .top-kitanuki2 {
    width: 120px;
  }
  .footer {
    margin-top: 150px;
  }
  .footer-nav {
    display: block;
    column-count: 2;
    column-gap: 10px;
    column-rule: solid 1px;
  }
  .footer-nav > a {
    display: block;
    border: none!important;
    font-size: 0.84em;
  }
  .footer-nav--1 {
    padding-top: 20px;
  }
  .footer-nav--2 {
    columns: 1;
  }
  .footer-info {
    display: block;
  }
  .footer-info-logo {
    width: 120px;
    padding-bottom: 10px;
    border-bottom: solid 1px #6b3906;
    margin: 0 auto 15px;
  }
  .footer-info-text {
    border: none;
    width: fit-content;
    padding: 0;
    margin: 0 auto;
    font-size: 0.84em;
  }
  .footer-sns {
    margin: 10px 0;
    justify-content: center;
  }
  .footer-sns img {
    width: 40px;
  }
  .copyright {
    margin-top: 20px;
  }
  /* page */
  .page-hero {
    padding-bottom: 30px;
    margin-bottom: 80px;
    align-items: center;
  }
  .about-first {
    display: block;
    margin-bottom: 120px;
  }
  .about-first-left,
  .about-first-right {
    width: 100%;
    margin: 0 auto;
  }
  .about-first-left {
    max-width: 380px;
    margin-bottom: 30px;
  }
  .about-first-name > img {
    width: calc(100% - 15em);
  }
  .about-second {
    display: block;
    margin-bottom: 80px;
  }
  .about-second-left {
    width: 100%;
  }
  .about-second-right {
    width: 80%;
    max-width: 360px;
    margin: 0 auto;
  }
  .about-third {
    display: block;
  }
  .about-third > * {
    width: 90%;
    margin: 0 auto;
  }
  .about-tanuki {
    margin-top: -50px;
    margin-bottom: 50px;
  }
  .about-tanuki img {
    width: 160px;
  }
  .about-4th-main,
  .about-4th-sub {
    width: 100%;
  }
  .about-4th-left,
  .about-4th-right {
    justify-content: left;
    padding: 0 5%;
  }
  .about-4th-name,
  .about-4th-text {
    width: 100%;
    margin: 10px 0;
  }
  .about-4th-name img {
    width: calc(100% - 5em);
  }
  .about-5th {
    text-align: left;
    background-position-x: right;
  }
  .items-second-relation {
    display: block;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .items-second-relation-yajirushi {
    position: relative;
    left: unset;
    top: unset;
    translate: unset;
    margin: -20px auto;
    display: block;
    width: 180px;
  }
  .items-flow td {
    width: 30%;
  }
  .items-flow td + td {
    width: 70%;
  }
  .items-flow-color1,
  .items-flow-color2 {
    margin: 0 5px;
    padding: 0.5em 1em;
    border-radius: 1.36em;
    line-height: 1.3;
  }
  .spHide {
    display: none!important;
  }
  .spShow {
    display: block!important;
  }
  .lightYellowCircle {
    padding: 0;
    background: #fffac6;
    border-radius: 50%;
    margin: 10px 0;
  }
  .lightYellowCircle:after {
    display: none;
  }
  .lightYellowCircle > h2 br {
    display: none;
  }
  .catalog-viewer {
    padding-bottom: 75%;
  }
  .postArchives .postItem {
    width: calc(50% - 15px);
  }
  .postItem__title {
    font-size: 1.36em;
  }
  .nigiyakashi-tanuki img {
    width: 140px;
  }
  .nigiyakashi-tanuki .left {
    left: 0;
  }
  .nigiyakashi-tanuki .right {
    right: 0;
  }
  .reviews .reviewItem {
    width: 100%;
    margin-bottom: 0;
  }
}
@media all and (max-width: 480px) {
  .about-4th {
    display: block;
  }
  .about-4th-left,
  .about-4th-right {
    width: 100%;
  }
  .about-4th-main,
  .about-4th-sub {
    width: 80%;
    margin: auto;
  }
  .about-4th-main {
    max-width: 180px;
  }
  .about-4th-name,
  .about-4th-text {
    width: 100%;
    margin: 10px 0 20px;
  }
  .about-4th-text {
    margin: 0 auto 40px;
    width: 80%;
    white-space: nowrap;
  }
  .about-4th-name {
    text-align: center;
  }
  .about-4th-name img {
    display: block;
    margin: 10px auto 0;
  }
  .about-4th-name br {
    display: none;
  }
  .category-list {
    margin-bottom: 50px;
  }
  .category-list > ul {
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 15px;
  }
  .category-list > ul > li > a {
    padding: 0.35em 0.7em;
    font-size: 0.84em;
    min-width: 6em;
  }
  .page-hero {
    padding-bottom: 20px;
    margin-bottom: 50px;
  }
  .hero-image {
    margin-top: 0;
  }
  .postArchives {
    gap: 30px 20px;
  }
  .postArchives .postItem {
    width: calc(50% - 10px);
  }
  .postItem.postItem--catalog {
    align-items: flex-start;
  }
  .postItem__thumb {
    margin-bottom: 10px;
  }
  .postItem__thumb.postItem__thumb--catalog {
    width: 140px;
    margin-right: 20px;
  }
  .postItem__text.postItem__text--catalog {
    width: calc(100% - 160px);
  }
  .postItem__title {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  .postItem__date {
    line-height: 1;
  }
  .postItem__description {
    line-height: 1.5;
  }
  .postItem__description.postItem__description--catalog {
    line-height: 1.5;
    min-height: unset;
  }
  .post-container h2 {
    font-size: 1.32em;
    margin-top: 3rem;
  }
  .post-container h3 {
    font-size: 1.2em;
    margin-top: 2.25rem;
  }
  .nigiyakashi-tanuki {
    display: none;
  }
  .catalog-mainImage img {
    max-width: 100%;
    max-height: 360px;
  }
  .catalog-viewer {
    padding-bottom: 66.66%;
  }
}
