body {
  width: 100%;
  background-color: #fbf8f3;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
}

a {
  cursor: pointer;
}

.fade {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

.show {
  opacity: 1;
  visibility: visible;
}

.button {
  display: flex;
  width: 370px;
  height: 80px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-width: 3px;
  border-style: solid;
  border-color: white;
  border-radius: 118px;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.14);
  background-color: #d50d0d;
  color: white;
  margin: 0 auto;
  text-decoration: none;
  cursor: pointer;
  transition: border-color linear 0.3s, background-color linear 0.3s, color linear 0.3s, opacity linear 0.3s;
}
.button .label {
  color: inherit;
  font-weight: bold;
  font-size: 25px;
}
@media screen and (max-width: 819px) {
  .button .label {
    font-size: 18px;
  }
}
.button .button-icon {
  width: 30px;
  height: 30px;
  position: relative;
}
.button .button-icon > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.button .button-icon .default {
  opacity: 1;
}
.button .button-icon .hover {
  opacity: 0;
}
@media screen and (max-width: 819px) {
  .button .button-icon {
    width: 24px;
    height: 24px;
  }
}
@media (any-hover: hover) {
  .button:hover {
    border-color: #d50d0d;
    background-color: white;
    color: #d50d0d;
  }
  .button:hover .button-icon .default {
    opacity: 0;
  }
  .button:hover .button-icon .hover {
    opacity: 1;
  }
}
@media screen and (max-width: 819px) {
  .button {
    width: 285px;
    height: 60px;
    gap: 6px;
    border-width: 2px;
    border-radius: 70px;
  }
}

/* === Sidebar === */
#secondary {
  width: 100%;
  padding: 0.5rem;
  border-radius: 8px;
}
#secondary h2 {
  font-size: 1.4rem;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid #d50d0d;
}
#secondary ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
#secondary ul li {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #a7a7a7;
}
#secondary ul li a {
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
}
#secondary ul li a:hover {
  color: #d50d0d;
  text-decoration: none;
}
#secondary .widget {
  margin-bottom: 2rem;
}
#secondary .widget:last-child {
  margin-bottom: 0;
}
#secondary .search-form {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 0;
  overflow: hidden;
  max-width: 100%;
}
#secondary .search-form input[type=search] {
  flex: 1;
  border: none;
  padding: 1rem;
  font-size: 1rem;
}
#secondary .search-form input[type=search]:focus {
  outline: none;
}

.wp-block-search {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 100%;
}
.wp-block-search__label {
  display: none;
}
.wp-block-search__inside-wrapper {
  display: flex;
  gap: 4px;
  align-items: center;
}
.wp-block-search__input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
.wp-block-search__input:focus {
  outline: none;
  border-color: #d50d0d;
}
.wp-block-search__button {
  padding: 8px 16px;
  background-color: #d50d0d;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.wp-block-search__button:hover {
  background-color: #e84444;
}/*# sourceMappingURL=common.css.map */