/*
      ヘッダー、フッターを非表示にする
      TODO: 全ページ共通で非表示にするなら、header.hbs, footer.hbs内で非表示にする
    */
header.header,
footer.footer {
  display: none;
}

.notice.text {
  display: inline-block;
  margin-top: 5px;
  font-size: 14px;
  color: #5c1cd1;
}

.errorMessage.text {
  display: inline-block;
  margin-top: 5px;
  font-size: 14px;
  color: #f92522;
  font-weight: bold;
}

.banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  width: 100%;
  padding: 4% 10%;
  border-radius: 8px;
}

.banner-howto {
  background-color: #f49dc2;
}

.banner-faq {
  background-color: #dfc3fb;
}

.banner-sns {
  background-color: #c2dbfb;
}

.banner-sns-link {
  width: 100%;
}
.logo-instagram {
  border-radius: 12px;
}

.banner-title {
  display: grid;
  grid-template-columns: 2fr 5fr;
  width: 100%;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  color: #241f2d;
}

@media (min-width: 640px) {
  .banner-title {
    grid-template-columns: 3fr 5fr;
    font-size: 24px;
  }
}

.banner-image {
  height: 50px;
  justify-self: end;
  margin-right: 10%;
}

.search {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  border: 2px solid #fee;
}

.search-button {
  display: flex;
  border: none;
  height: 100%;
}

.search-button-image {
  height: 24px;
  object-fit: contain;
}

.search-input {
  width: 100%;
}

input[type="search"] {
  -webkit-appearance: none;
  background-color: white;
}

.sample {
  display: none;
}

.accordion-wrapper {
  margin-top: 10px;
  border: 1px solid #ccc;
  border-bottom: 0px;
}

details {
  border-bottom: 1px solid #ccc;
  padding: 10px;
  position: relative;
}

.border-line {
  position: absolute;
  width: 100%;
  left: 0;
  border-bottom: 1px solid #ccc;
}

.details-open {
  margin-top: 10px;
}

.details-open-desc {
  padding-top: 10px;
}

/* iOSの矢印マークを非表示 */
details summary::-webkit-details-marker {
  display: none;
}

details > summary {
  cursor: pointer;
  transition-property: color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  font-weight: 700;
  color: #f75ca9;
}

details > summary.highlight {
  color: #f92522;
}

details > summary::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 10px;
  content: "\f067";
}

details[open] > summary {
  color: #dfc3fb;
  ::before {
    content: "\f068";
  }
}

details[open] > summary::before {
  content: "\f068";
}
