@charset "UTF-8";
/* CSS Document */
html {
    scroll-behavior: smooth;
}
body {
	background-color: #fff9f9 !important;
}
.br-sp {
    display: none;
}
.tgl {
	display: none;
}
.accordion {
    margin: 1em auto;
    max-width: 80vw !important;
    padding: 2%;
    background-color: #fff;
    border-radius: 15px;
}

.option {
    position: relative;
    margin-bottom: 1em;
}
.title,
.content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
.title {
    border-bottom: 2px solid #24bbb7;
    padding: 1em 0 0.5em 0;
    display: block;
    color: #333;
    font-weight: bold;
    cursor: pointer;
}
.title::after,
.title::before {
    content: "";
    position: absolute;
    right: 1.25em;
    top: 1.25em;
    width: 2px;
    height: 0.75em;
    background-color: #999;
    transition: all 0.3s;
}
.title::after {
    transform: rotate(90deg);
}
.content {
    max-height: 0;
    overflow: hidden;
}
.content p {
    margin: 0;
    padding: 0.5em 1em 1em;
    font-size: 1em;
    line-height: 1.8;
}
.tgl:checked + .title + .content {
    max-height: 500px;
    transition: all 1.5s;
}
.tgl:checked + .title::before {
    transform: rotate(90deg) !important;
}
.a-link {
    display: inline;
    font-weight: bolder;
    color: #24bbb7;
}

@media screen and (max-width:1000px) {
	.br-sp {
		display: block;
	}
	.accordion {
        max-width: 95vw !important;
    }
    .title {
		font-size: 0.8em;
    }
}