
.title-box p {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.5rem;
}

main h2 .fade-in-text{
    font-size:6vw;
}
@media screen and (max-width: 500px) {
    main h2 .fade-in-text{
        font-size:3rem;
    }
}

.line-box {
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 5px;
    padding: 5px;
}

.mokuji-box {
  margin-bottom: 20px;
  padding: 5px;
  width: fit-content;
}
.mokuji-box ol{
  border-left: 6px solid var(--primary-color);  
  border-radius: 4px;
  padding: 0px 10px 0px 20px;
  width: fit-content;
  line-height: 1.9rem;
  font-weight:500;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.mokuji-box h3 {
  margin: 0;
  font-size: 2.5rem;
  color: var(--primary-color);
  border-bottom: none;
}

#faq-list {
    line-height: 1.6rem;
    font-size: 1.2rem;
}


#question-form .btn-border-radius a {
    background: whitesmoke !important;
    color: var(--text-color) !important;
    font-size: 1.5rem;
    line-height: 2.5rem;
    box-shadow: 0px 3px 5px 0px black;
}

#question-form .btn-border-radius a:hover {
	filter: brightness(1.1);
    box-shadow: 0px 1.5px 2px 0px black;
    background: whitesmoke !important;
}

#question-form p {
    font-size: 1.2rem;
    line-height: 1.6rem;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    background-color: #fff;
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-item label {
    display: block;
    padding: 15px 20px 15px 40px;
    background-color: var(--primary-color);
    cursor: pointer;
    position: relative;
    font-weight:500;
    color: var(--primary-inverse-color);
    transition: background-color 0.3s;
    margin: 0;
    width: 100%;
    text-align: left;
    line-height: normal;
}

.faq-item label:hover {
    filter: brightness(1.2);
}

.faq-item label::after {
    content: '\f067';
    font-family: "FontAwesome";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-inverse-color);
    transition: transform 0.3s;
}

.faq-item input:checked + label::after {
    content: '\f068';
}

.faq-item .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease;
    padding: 0 20px;
    background-color: #fff;
    line-height: normal;
    border-radius: 25px;
}

.faq-item input:checked ~ .answer {
    max-height: 300px;
    max-width: 100%;
    padding: 20px;
    border-top: 1px solid #e7f6f6;
    overflow: auto;
    border-radius: 25px;
}

.Q-deco {
    color: #ffd700;
    font-weight:bold;
    margin-right: 5px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    filter:brightness(1.2)
}