<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
|---------------------------------------------------------------
| faq.css
|---------------------------------------------------------------
*/
.content_faq-link {
  display: block;
  width: 100%;
  margin: 0;
  text-decoration: none;
  position: relative;
  padding: 0.5em 0 0.5em 2em;
  position: relative;
}
.content_faq-link, .content_faq-link:visited, .content_faq-link:hover, .content_faq-link:active {
  color: inherit;
}
.content_faq-link::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-width: 2px 2px 0 0;
  border-color: #b8987b;
  border-style: solid;
  transform: translateX(-50%) rotate(45deg);
  position: absolute;
  top: 0;
  left: 0.5em;
  right: auto;
  bottom: 0;
  z-index: 1;
  margin: auto;
}

.content_faq-list {
  list-style: none;
  display: block;
  margin: 0 0 15px;
  padding: 0;
}
.content_faq-list__item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.25em 0;
  border-bottom: 1px solid #d8c2a9;
}
.content_faq-list__item .content_faq-link {
  display: inline-block;
  line-height: 1;
  width: auto;
  max-width: 100%;
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (min-width: 960.02px) {
  .content_faq-list__item {
    padding: 0;
    border-bottom: 0;
  }
  .content_faq-list__item .content_faq-link:hover {
    text-decoration: underline;
  }
}

.content_faq-category {
  display: block;
  width: 100%;
}
.content_faq-category .content_faq-list {
  display: block;
  width: 100%;
}
@media screen and (min-width: 960.02px) {
  .content_faq-category .content_faq-list {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/*
 * Section
------------------------------------------------*/
.faq-section {
  display: block;
  width: 100%;
  margin: 0 0 40px;
  padding: 0;
}
.faq-section__title {
  display: block;
  width: 100%;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(18px, 4.8vw, 20px);
  line-height: 1.5;
  padding: 0.5em 15px;
  color: #231815;
  background: #f7f3ee;
}
.faq-section__body {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.5em 0;
}
@media screen and (min-width: 960.02px) {
  .faq-section__body {
    padding: 15px 15px;
  }
}

/*
 * Page
------------------------------------------------*/
.page-faq {
  display: block;
  width: 100%;
  font-size: 16px;
}
.page-faq .lylw-container {
  max-width: 1214px;
}
.page-faq__header {
  display: block;
  width: 100%;
}
.page-faq__body {
  display: block;
  width: 100%;
}

/*
 * Archive
------------------------------------------------*/
.archive-faq {
  display: block;
  width: 100%;
  font-size: 16px;
}
.archive-faq .lylw-container {
  max-width: 1214px;
}
.archive-faq__header {
  display: block;
  width: 100%;
}
.archive-faq__body {
  display: block;
  width: 100%;
}

/*
 * Article
------------------------------------------------*/
.article-faq {
  display: block;
  width: 100%;
  margin: 0 0 25px;
  padding: 25px 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.article-faq__title {
  width: 100%;
  display: flex;
  align-items: flex-start;
  font-size: clamp(18px, 4.8vw, 25px);
  font-weight: bold;
  border-bottom: 2px solid #d8c2a9;
  margin: 0 0 1.25em;
  padding: 0.25em 0;
  line-height: 1.25;
}
.article-faq__title::before {
  content: "Q.";
  display: block;
  flex: 0 0 2em;
  max-width: 2em;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  letter-spacing: 0.35em;
  font-weight: bold;
  font-size: clamp(20px, 5.33vw, 28px);
  line-height: 1;
}
.article-faq__body {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.article-faq__body::before {
  content: "A.";
  color: #c25748;
  flex: 0 0 2em;
  max-width: 2em;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  letter-spacing: 0.35em;
  font-weight: bold;
  font-size: clamp(20px, 5.33vw, 28px);
  line-height: 1;
}
.article-faq__body__content {
  display: block;
  flex-grow: 1;
  flex-basis: 0;
  padding: 2px 0;
}
</pre></body></html>