
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: initial;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  word-break: break-all;
}

:root {
  --header-height: 56px;
  --inline-padding-base: 16px;
  --block-padding-base: 24px 56px;
  --margin-bottom-base: 24px;
  --main-color: #7B5230;
  --sub-color: #A07850;
  --accent-color: #6B8E3D;
  --text-color: #3D2410;
  --link-color: #7B5230;
  --base-color: #FAF7F2;
  --mid-color: #EFE6D8;
  --font-mincho: 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', 'ヒラギノ明朝 ProN', serif;
  --font-gothic: 'Yu Gothic', YuGothic, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}

@media screen and (min-width: 768px) {
  :root {
    --inline-padding-base: 20px;
    --block-padding-base: 40px 96px;
    --margin-bottom-base: 40px;
  }
}

html {
  scroll-padding-top: calc(var(--header-height) + 16px);
  /* scroll-behavior: smooth; */
}

body {
  font-family: var(--font-gothic);
  background-color: var(--base-color);
  color: var(--text-color);
}

a {
  color: var(--link-color);
  transition: all 0.3s;
}


.mobile-only {
  display: block;
}

.pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .mobile-only {
    display: none;
  }

  .pc-only {
    display: block;
  }
}

.header {
  background-color: var(--main-color);
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-sizing: border-box;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 12px;
  width: 100%;
  box-sizing: border-box;
}

.header-logo {
  width: fit-content;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.header-logo img {
  width: 208px;
  height: auto;
}

.hamburger-menu-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--header-height);
  height: var(--header-height);
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-menu-button::after {
  content: 'MENU';
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}

.hamburger-menu-button-icon {
  width: 28px;
  height: 2px;
  background-color: #fff;
  position: relative;
  margin: 14px 0;
}

.hamburger-menu-button-icon::before,
.hamburger-menu-button-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease-in-out;
}

.hamburger-menu-button-icon::before {
  top: -8px;
  left: 0;
}

.hamburger-menu-button-icon::after {
  bottom: -8px;
  left: 0;
}

.hamburger-menu-content {
  width: 100vw;
  height: calc(100vh - var(--header-height));
  background-color: #fff;
  position: fixed;
  top: var(--header-height);
  right: 0;
  z-index: 100;
  overflow-y: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.active .hamburger-menu-content {
  transform: translateX(0);
}

.active .hamburger-menu-button-icon {
  background-color: transparent;
}

.active .hamburger-menu-button-icon::before {
  transform: translateY(8px) rotate(-225deg);
}

.active .hamburger-menu-button-icon::after {
  transform: translateY(-8px) rotate(225deg);
}

.search-form {
  display: flex;
  height: 55px;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  box-sizing: border-box;
}

.search-input {
  flex: 1 1 auto;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  color: #808080;
  font-size: 17px;
  line-height: 32px;
  padding: 20px;
  padding-right: 0;
  margin: 0;
}

.search-input:focus {
  outline: none;
}

.search-button {
  flex: 0 0 auto;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  padding: 10px;
  margin: 0;
  width: 55px;
  height: 55px;
  background-color: transparent;
  background-image: url('../images/search.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  cursor: pointer;
}

.hamburger-menu-navigation-list {
  background-color: var(--base-color);
  padding: 0;
  margin: 0;
  list-style: none;
}

.hamburger-menu-navigation-list>li {
  border-bottom: 1px solid #e6e6e6;
}

.hamburger-menu-navigation-list li a,
.hamburger-menu-navigation-list li span {
  display: block;
  padding: 0 24px;
  font-size: 18px;
  line-height: 50px;
  color: var(--link-color);
  text-decoration: none;
  font-weight: 600;
}

.hamburger-menu-navigation-list li .sub-list-title {
  cursor: pointer;
}

.hamburger-menu-navigation-list li .sub-list-title::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(https://tamachanshop.jp/img/sm_menu_icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 12px;
  transform: rotate(0deg);
  transition: transform 0.3s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.hamburger-menu-navigation-list li .sub-list {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  background-color: #fff;
}

.hamburger-menu-navigation-list li .sub-list.open {
  height: auto;
}

.hamburger-menu-navigation-list li .sub-list-title:has(+ .sub-list.open)::before {
  transform: rotate(180deg);
  transition: transform 0.3s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.hamburger-menu-navigation-list li .sub-list li:not(:first-child) {
  border-top: 1px solid #e6e6e6;
}

.hamburger-menu-navigation-list li .sub-list li a {
  font-weight: normal;
}

.header-social-links {
  padding: 20px 0;
}

.header-logo-description {
  display: none;
}

.pc-header-navigation {
  display: none;
}

@media screen and (min-width: 768px) {
  .header-logo img {
    margin-bottom: 6px;
  }
  .header-logo-description {
    display: block;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-mincho);
    color: #fff;
    line-height: 1.2;
    margin-left: 18px;
  }
}

@media screen and (min-width: 1080px) {
  .header-content {
    padding-left: 32px;
  }

  .header-navigation {
    display: none;
  }

  .pc-header-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    height: 100%;
    position: relative;
  }

  .pc-header-navigation-list {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
  }

  .pc-header-navigation-list li a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    line-height: 1.2;
  }

  .pc-search-button {
    display: block;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    background-image: url('../images/search.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    filter: brightness(0) invert(1);
    margin-left: 16px;
  }

  .pc-search-form {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 60px;
    width: 0;
    height: 40px;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
  }

  .pc-search-form .search-form {
    height: 40px;
    flex-direction: row-reverse;
    gap: 0;
  }
  .pc-search-form .search-button {
    width: 40px;
    height: 40px;
    background-size: 24px;
  }
  .pc-header-navigation-search.active .pc-search-button {
    background-image: url('../images/close.svg');
  }
  .pc-header-navigation-search.active .pc-search-form {
    width: 100%;
    visibility: visible;
    opacity: 1;
  }

}

.social-links-list {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-links-list li {
  width: 40px;
  height: 40px;
}

.social-links-list li a {
  display: block;
}

.social-links-list li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.breadcrumbs {
  padding-inline: 16px;
  font-size: 12px;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  list-style: none;
  gap: 4px;
  width: 100%;
  height: 44px;
  box-sizing: border-box;
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.breadcrumbs-list li:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs-list li:not(:last-child)::after {
  content: '>';
  display: inline-block;
}

.breadcrumbs-list li a {
  color: var(--text-color);
  text-decoration: none;
}

.breadcrumbs-list li a:hover {
  text-decoration: underline;
}

.breadcrumbs-list li .current {
  display: block;
  color: var(--main-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .breadcrumbs-list {
    height: 50px;
    gap: 8px;
  }
  .breadcrumbs-list li {
    gap: 8px;
  }
}
@media screen and (min-width: 1080px) {
  .breadcrumbs {
    padding-inline: 32px;
    margin-bottom: 32px;
    font-size: 16px;
  }
}

.main {
  padding-top: var(--header-height);
}

.main-content {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .main-content {
    max-width: 720px;
    margin: 0 auto;
  }
}

.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.post-item {
  width: 100%;
}

.post-card {
  display: flex;
  gap: 8px;
}

.post-thumbnail {
  flex: 0 0 auto;
  width: 48%;
  background-color: var(--mid-color);
  aspect-ratio: 5/3;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.post-thumbnail .no-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.post-meta {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-date {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.0;
  color: var(--text-color);
}

.post-title {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-color);
  max-height: 5.1em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

a:hover .post-thumbnail img {
  transform: scale(1.02);
}

@media screen and (min-width: 768px) {
  .post-list {
    gap: 40px 20px;
  }

  .post-item {
    width: calc(50% - 10px);
  }
  .post-card {
    flex-direction: column;
  }
  .post-thumbnail {
    width: 100%;
  }
  .post-date {
    font-size: 13px;
  }
  .post-title {
    font-size: 15px;
  }
}

.pagination ul {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li a {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.0;
  color: var(--link-color);
  text-decoration: none;
}

.pagination li .current {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.0;
  display: block;
  background-color: var(--main-color);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}


.section {
  padding-block: var(--block-padding-base);
}

.section-header {
  padding-inline: var(--inline-padding-base);
  margin-bottom: var(--margin-bottom-base);
}

.section-title {
  font-size: 18px;
  font-family: var(--font-mincho);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.tag .section-title {
  display: flex;
}

.tag .section-title::before {
  content: '#';
}

.section-content {
  padding-inline: var(--inline-padding-base);
}

.section-footer {
  padding-inline: var(--inline-padding-base);
  margin-top: 48px;
}

@media screen and (min-width: 768px) {
  .section-title {
    font-size: 28px;
    text-align: left;
  }

  .section-footer {
    margin-top: 72px;
  }

}

.read-more {
  display: flex;
  justify-content: center;
}

.read-more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 48px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-mincho);
  line-height: 1.0;
  white-space: nowrap;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.read-more-button:hover {
  transform: scale(1.02);
}

.read-more-button::after {
  content: '→';
  font-size: 24px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}


/** Single */
.article {
  padding-block: var(--block-padding-base);
}

.article-header {
  margin-bottom: var(--margin-bottom-base);
}

.article-date {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.0;
  text-align: center;
}

.article-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-inline: var(--inline-padding-base);
  margin-bottom: 24px;
}

.article-title {
  font-size: 18px;
  font-family: var(--font-mincho);
  line-height: 1.4;
}

.article-content {
  padding-inline: var(--inline-padding-base);
  font-size: 14px;
  line-height: 1.7;
}

.article-content strong {
  font-weight: 600;
}

.article-content a {
  color: var(--link-color);
  text-decoration: underline;
}

.article-content>div,
.article-content>ul,
.article-content>ol,
.article-content>table,
.article-content>iframe,
.article-content>video,
.article-content>audio,
.article-content>blockquote,
.article-content>figure {
  margin-bottom: 2.0em;
}

.article-content figcaption {
  font-size: 12px;
  opacity: 0.9;
}

.article-content>p {
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.0em;
}

.article-content>h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--main-color);
  line-height: 1.4;
  border: 1px solid var(--main-color);
  border-left: 8px solid var(--main-color);
  padding-block: 8px;
  padding-inline: 8px 16px;
  margin-bottom: 1.4em;
}

.article-content>h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--main-color);
  line-height: 1.4;
  background-color: var(--base-color);
  padding: 8px 16px;
  margin-bottom: 1.4em;
}

.article-content>h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.0em;
  display: inline-block;
  border-bottom: 2px solid var(--main-color);
}

.article-content>h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1.0em;
}

.article-content>p+h2,
.article-content>p+h3 {
  margin-top: 2em;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e7dfd3;
  font-size: 90%;
  margin-bottom: 4px;
}

.article-content table th,
.article-content table td {
  border: 1px solid #e7dfd3;
  padding: 8px;
}

.article-content .has-background {
  padding: 16px;
}

.article-content .wp-block-group.has-background {
  padding: 24px;
  margin-inline: -16px;
}

.article-content .wp-block-group.has-background p {
  font-size: 90%;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
  padding-left: 1.2em;
}

.article-footer {
  margin-top: 72px;
}

.article-footer-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--margin-bottom-base);
}

.article-category {
  font-weight: 600;
  color: #8a7b6f;
}

.article-category ul {
  display: inline-flex;
  gap: 12px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-tags a::before {
  content: '#';
}

@media screen and (min-width: 768px) {
  .article-title {
    max-width: 600px;
    font-size: 28px;
  }
  .article-date {
    font-size: 14px;
  }
  .article-hero-image {
    padding-inline: var(--inline-padding-base);
  }
  .article-content {
    font-size: 18px;
  }
  .article-content>h2,
  .article-content>h3 {
    font-size: 22px;
  }
  .article-content>h4 {
    font-size: 20px;
  }
  .article-content>h5 {
    font-size: 18px;
  }
}

@media screen and (min-width: 1112px) {
  .single-article {
    padding-top: 32px;
    padding-inline: 32px;
  }
}

.aside {
  padding-inline: var(--inline-padding-base);
  padding-bottom: 48px;
}

@media screen and (min-width: 768px) {
  .aside {
    padding-bottom: 64px;
  }
}

.popular-posts-title {
  font-size: 21px;
  font-family: var(--font-mincho);
  font-weight: 600;
  line-height: 2.0;
  border-bottom: 1px solid var(--main-color);
  margin-bottom: 12px;
}

.popular-post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: item;
}

.popular-post-item {
  position: relative;
}

.popular-post-item .rank {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  z-index: 2;
  filter: drop-shadow(5px 5px 5px rgba(255, 255, 255, 0.5));
}

.popular-post-item .rank::after {
  content: '';
  display: block;
  width: 28px;
  height: 35px;
  background-color: #8D7D6C;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.popular-post-item:nth-child(1) .rank::after {
  background-color: #B38A46;
}
.popular-post-item:nth-child(2) .rank::after {
  background-color: #B8AEA1;
}
.popular-post-item:nth-child(3) .rank::after {
  background-color: #996545;
}

.popular-post-item a {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.popular-post-item a:hover {
  opacity: 0.8;
}
.popular-post-item .thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 13/5;
}
.popular-post-item .thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 13/5;
  object-fit: cover;
  border-radius: 8px;
}
.popular-post-item .thumbnail .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  aspect-ratio: 13/5;
  object-fit: cover;
  border-radius: 8px;
}

.popular-post-item .title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-color);
  max-height: 2.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 768px) {
  .popular-posts-title {
    font-size: 22px;
  }
  .popular-post-list {
    flex-direction: row;
    gap: 20px;
  }
  .popular-post-item {
    width: calc((100% - 80px) / 5);
  }
  .popular-post-item .thumbnail {
    aspect-ratio: 6/7;
  }
  .popular-post-item .thumbnail img {
    aspect-ratio: 6/7;
  }
  .popular-post-item .thumbnail .no-image {
    aspect-ratio: 6/7;
  }
}

.tag-cloud-content {
  padding: 24px 24px 32px;
  background-color: var(--base-color);
}

.tag-cloud-title {
  font-size: 21px;
  font-family: var(--font-mincho);
  font-weight: 600;
  line-height: 1.0;
  margin-bottom: 16px;
  text-align: center;
}

.tag-cloud-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
}

.tag-cloud-links a {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-color);
  padding: 0 8px;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid var(--link-color);
}

.tag-cloud-links a::before {
  content: '#';
}

.tag-cloud-links a:hover {
  background-color: var(--link-color);
  color: #fff;
}

@media screen and (min-width: 768px) {
  .tag-cloud-title {
    width: fit-content;
    flex: 0 0 auto;
    font-size: 22px;
    margin-bottom: 0;
  }
  .tag-cloud-content {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .tag-cloud-links {
    flex: 1 1 auto;
    justify-content: flex-start;
  }
}

/** Footer */
.footer {
  background-color: var(--text-color);
  color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer-content {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  order: 3;
  display: flex;
  justify-content: center;
  padding-top: 32px;
}

.footer-logo img {
  width: 210px;
  height: auto;
}

.footer-navigation {
  order: 4;
  display: flex;
  justify-content: center;
  padding-block: 20px 32px;
}

.footer-navigation-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  max-width: 300px;
}

.footer-navigation-list li {
  font-size: 12px;
  line-height: 1.2;
}


.footer-social-links {
  order: 1;
  background-color: #fff;
}

.footer-social-links-title {
  background-color: var(--text-color);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding-right: 3%;
  position: relative;
}
.footer-social-links-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 38px;
  background-color: var(--text-color);
  clip-path: polygon(20% 0, 100% 0, 0 100%);
  position: absolute;
  left: 47%;
  bottom: -30px;
}

.footer-social-links .social-links-list li a img {
  filter: unset;
}


.mobile-footer-navigation {
  order: 2;
  background-color: #fff;
  background-image: url(https://tamachanshop.jp/wp-content/uploads/2020/05/bottom_content_back02-min.png),url(https://tamachanshop.jp/img/bottom_content_back01.png);
  background-repeat: no-repeat,no-repeat;
  background-position: bottom center,top center;
  background-size: 100% auto,cover;
  padding-top: 100px;
  padding-bottom: 120px;
}
.mobile-footer-navigation-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.mobile-footer-navigation-item {
  width: 90%;
  max-width: 300px;
}
.mobile-footer-navigation-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-family: var(--font-mincho);
  line-height: 40px;
  white-space: nowrap;
  width: 100%;
  border-radius: 8px;
}
.mobile-footer-navigation-item a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.mobile-footer-navigation-item a.shop::before {
  background-image: url(https://tamachanshop.jp/img/bottom_spnavi01.svg);
}
.mobile-footer-navigation-item a.hadamanma::before {
  background-image: url(https://tamachanshop.jp/img/bottom_spnavi02.svg);
}
.mobile-footer-navigation-item a.faq::before {
  background-image: url(https://tamachanshop.jp/img/bottom_spnavi03.svg);
  width: 30px;
}
.mobile-footer-navigation-item a.contact::before {
  background-image: url(https://tamachanshop.jp/img/bottom_spnavi04.svg);
}
.mobile-footer-navigation-item a:hover {
  background-color: var(--text-color);
}

.pc-footer-navigation {
  display: none;
}

.footer-copyright {
  background-color: var(--mid-color);
  color: var(--text-color);
  text-align: center;
  padding-block: 8px;
}

.footer-copyright-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.0;
}

@media screen and (min-width: 960px) {
  .footer-content {
    padding-inline: 20px;
    max-width: 1080px;
    margin-inline: auto;
  }
  .footer-logo {
    order: 1;
    justify-content: flex-start;
    padding-top: 64px;
    padding-bottom: 40px;
  }
  .mobile-footer-navigation {
    display: none;
  }
  .pc-footer-navigation {
    display: block;
    margin-bottom: 40px;
    order: 2;
  }
  .pc-footer-navigation-list {
    display: flex;
    gap: 32px;
  }
  .pc-footer-navigation-item {
    max-width: 20%;
  }
  .pc-footer-navigation-item .footer-navigation-title {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  .pc-footer-navigation-item .footer-navigation-title::before {
    content: '▲';
    transform: rotate(90deg);
    display: inline-block;
  }
  .pc-footer-navigation-item ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: disc;
    padding-left: 2.4em;
    margin-bottom: 24px;
  }
  .pc-footer-navigation-item ul li {
    font-size: 15px;
    line-height: 1.2;
  }

  .footer-navigation {
    order: 4;
    padding-bottom: 16px;
  }

  .footer-navigation-list {
    max-width: unset;
  }

  .footer-navigation-list li {
    font-size: 15px;
  }

  .footer-social-links {
    order: 3;
    background-color: unset;
  }
  .footer-social-links-title {
    display: none;
  }
  .footer-social-links .social-links-list li a img {
    filter: brightness(0) invert(1);
  }
}
