/* 1222 */
.footer-container .footer-wrap {
  padding: 60px 0;
  max-width: 1200px;
  width: 100%;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-container .footer-wrap * {
  font-family: "noto serif JP";
  color: #61402A;
}
.footer-wrap__bottom {
  background-color: #DCD1BA;
  color: #6B4A34;
  font-size: 14px;
  font-weight: 700;
  padding: 22px 40px;
  text-align: center;
  font-family: "noto serif JP";
}
.footer-container .footer-wrap__img {
  width: 173px;
  object-fit: contain;
}
.footer-wrap__inner-right {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
}
.footer-wrap__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
}
.footer-wrap__content-label {
  font-size: 14px;
  color: #90725E;
  font-weight: 600;
  text-align: left;
}
.footer-wrap__content-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #6B4A34;
  font-weight: 800;
  text-align: left;
}
.footer-wrap__content-item {
  font-weight: 800;
}
.footer-wrap__content-link {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.footer-wrap__content-link:hover {
  text-decoration: underline;
}
.footer-wrap__content-link::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url('/img/ico-footer-arrow.svg')no-repeat center right;
}
.footer-wrap__content-list--row {
  flex-direction: row;
}
.footer-wrap__content-list a {
  color: #6B4A34;
}
.footer-wrap__content .select-menu {
  position: relative;
  width: 190px;
}
.footer-wrap__content .select-menu__selected {
  width: 100%;
  font-size: 14px;
  font-weight: 800;
  color: #6B4A34;
  border: 1px solid #B8B8B8;
  border-radius: 999px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  transition: all 0.4s;
}
.footer-wrap__content .select-menu__selected.active  {
  background-color: #FAF5ED;
}
.footer-wrap__content .select-menu__selected.active .select-menu__plus-btn-tr {
  transform: rotate(45deg);
}
.footer-wrap__content .select-menu__dropdown.hide {
  opacity: 0;
  pointer-events: none;
}
.footer-wrap__content .select-menu__dropdown {
  pointer-events: all;
}
.footer-wrap__content .select-menu__plus-btn-tr {
  position: relative;
  width: 15px;
  height: 15px;
  transition: all 0.4s;
}
.footer-wrap__content .select-menu__plus-btn-tr::before {
  content: "";
  display: block;
  width: 2px;
  height: 13px;
  background-color: #2B2B2B;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.footer-wrap__content .select-menu__plus-btn-tr::after {
  content: "";
  display: block;
  height: 2px;
  width: 13px;
  background-color: #2B2B2B;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.footer-wrap__content .select-menu__dropdown {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: calc(100% + 11px);
  box-shadow: 0px 2px 10px #61402a17;
  opacity: 1;
}

.footer-wrap__content .select-menu__link {
  display: flex;
  gap: 8px;
  padding: 15px 20px;
}
.footer-wrap__content .select-menu__link img {
  width: 24px;
  height: 24px;
}
.footer-wrap__content .select-menu__link span {
  color: #6B4A34;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-wrap__content .select-menu__link span::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url('/img/ico-footer-arrow.svg')no-repeat center right;
}
.footer-wrap__content .select-menu__link span:hover {
  text-decoration: underline;
}