@charset "UTF-8";
/* CSS Document */
/* COMMON PARTS-------------------------------------------*/
.box-inner * {
  box-sizing: border-box;
}

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (min-width: 769px) {
  .faq-nav {
    gap: 16px;
  }
}

.faq-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 10px) / 2);
  min-height: 50px;
  padding: 8px;
  background: #F8F5EC;
  color: #453932;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .faq-nav a {
    width: calc((100% - 48px) / 4);
    min-height: 60px;
    font-size: 14px;
  }
  .faq-nav a:hover {
    background: #FE6D0D;
    color: #fff;
    opacity: 1;
  }
}

.faq-sec {
  margin-top: 40px;
}

@media screen and (min-width: 769px) {
  .faq-sec {
    margin-top: 50px;
  }
}

.faq-sec-title {
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #fe6d0d;
  border-bottom: 1px solid #FE6D0D;
}

@media screen and (min-width: 769px) {
  .faq-sec-title {
    padding-bottom: 17px;
    font-size: 24px;
  }
}

.faq-block-group {
  margin-top: 20px;
}

.faq-block {
  margin-top: 10px;
  padding: 10px 10px;
  background: #F8F8F8;
}

@media screen and (min-width: 769px) {
  .faq-block {
    padding: 15px 30px;
  }
}

.faq-block-alphabet {
  width: 25px;
  color: #fe6d0d;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .faq-block-alphabet {
    width: 35px;
    font-size: 20px;
  }
}

.faq-block-txt {
  width: calc(100% - 35px);
  color: #453932;
  font-size: 13px;
}

@media screen and (min-width: 769px) {
  .faq-block-txt {
    padding-top: 4px;
    font-size: 16px;
  }
}

.faq-block-q {
  position: relative;
  display: flex;
  width: 100%;
  padding: 0 40px 0 0;
  text-align: left;
}

@media screen and (min-width: 769px) {
  .faq-block-q {
    padding: 0 70px 0 0;
  }
}

.faq-block-q .faq-block-txt {
  font-weight: bold;
}

.faq-block-q .icon {
  position: absolute;
  right: 0;
  top: 4px;
  width: 12px;
  height: 12px;
}

@media screen and (min-width: 769px) {
  .faq-block-q .icon {
    top: 10px;
    width: 16px;
    height: 16px;
  }
}

.faq-block-q .icon::before, .faq-block-q .icon::after {
  content: "";
  position: absolute;
  background: #FE6D0D;
}

.faq-block-q .icon::before {
  /* 横線 */
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-block-q .icon::after {
  /* 縦線 */
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  transition: opacity .2s;
}

.faq-block-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .3s ease, opacity .3s ease;
}

.faq-block-a-in {
  display: flex;
  padding-top: 10px;
}

.faq-block-a .faq-block-txt a {
  color: #fe6d0d;
}

.faq-block-a .faq-block-txt a[href$=".pdf"] {
  background: url(../images/common/icon-pdf.svg) no-repeat right center;
  padding-right: 20px;
}

.faq-block.is-open .faq-block-q .icon::after {
  opacity: 0;
}

.faq-block.is-open .faq-block-a {
  max-height: 10000px;
  opacity: 1;
}

.faq-block.appearing {
  animation: faqFadeIn .28s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .faq-block.appearing {
    /* アニメーションを苦手なユーザーに配慮 */
  }
  .faq-block.appearing .faq-block.appearing {
    animation: none;
  }
}

.faq-block.is-hidden {
  display: none;
}

.faq-more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 234px;
  height: 50px;
  margin: 30px auto 0;
  border: 1px solid #453932;
  border-radius: 30px;
  color: #000;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
}

@media screen and (min-width: 769px) {
  .faq-more {
    width: 340px;
    margin: 50px auto 0;
  }
}

.faq-more::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 21px;
  top: 50%;
  transform: translateY(-50%);
  width: 11.8px;
  height: 6.6px;
  background: url(../images/common/icon-arr.svg) no-repeat 0 0/contain;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wysiwyg {
  font-size: inherit;
  line-height: 1.8;
  word-break: break-all;
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  font-weight: bold;
}

.wysiwyg h1 {
  font-size: 200%;
}

.wysiwyg h2 {
  font-size: 180%;
}

.wysiwyg h3 {
  font-size: 160%;
}

.wysiwyg h4 {
  font-size: 140%;
}

.wysiwyg h5 {
  font-size: 120%;
}

.wysiwyg h6 {
  font-size: 100%;
}

.wysiwyg img {
  max-width: 100%;
  height: auto;
}

.wysiwyg a {
  text-decoration: underline;
  transition: all 0.3s;
}

.wysiwyg strong,
.wysiwyg b {
  font-weight: bold;
}

.wysiwyg em {
  font-style: italic;
}

.wysiwyg sup {
  vertical-align: super;
  font-size: smaller;
}

.wysiwyg sub {
  vertical-align: sub;
  font-size: smaller;
}

.wysiwyg code {
  display: block;
  padding: 20px;
  background: #eee;
}

.wysiwyg ul,
.wysiwyg ol {
  padding-left: 1.5em;
}

.wysiwyg ul {
  list-style: disc;
}

.wysiwyg ol {
  list-style: decimal;
}

.wysiwyg table {
  border-collapse: collapse;
  font-size: inherit;
}

.wysiwyg table th,
.wysiwyg table td {
  padding: revert-layer;
  text-align: left;
}

.wysiwyg table th {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .wysiwyg .table-wrap {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .wysiwyg .table-wrap::-webkit-scrollbar {
    height: 15px;
  }
  .wysiwyg .table-wrap::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .wysiwyg .table-wrap::-webkit-scrollbar-thumb {
    background: #bbb;
  }
}

/*# sourceMappingURL=_map/faq.css.map */
