@charset "UTF-8";

/*新卒中卒採用箇所*/
.list_style_1{
width: min(90%,640px);
margin:0 auto 60px;
}

.list_style_1 li{
    position: relative;
    font-family: var(--font_style_1);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    list-style: none;
    background-color: var(--main-color);
    border: 2px solid #333;
    outline-offset: -8px;
    outline: 1px solid #f5f5f5;
    padding: 21px;
    margin:0 auto 16px;
}

.list_style_1 li a{
    display: block;
    text-decoration: none;
    color: #fff;
}

.list_style_1 li:hover{
    background-color: #2d3e71;
}

.list_style_1 li a::after {
	display: inline-block;
	position: absolute;
	right: 0;
	top: 40%;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	width: 12px;
	height: 12px;
	vertical-align: middle;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	content: "";
	margin-right: 20px;

}

/*こんな方に・・・箇所*/
/*協力業者に使用*/
.list_style_2{
width: min(90%,640px);
margin:0 auto 60px;
}

.list_style_2 li{
    font-family: var(--font_style_1);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    list-style: none;
    background-color: var(--sub-color);
    border: 2px solid #333;
    border-radius: 9999px;
    padding: 21px;
    margin:0 auto 16px;
}


/*Q&A*/
.accordion {
    width: min(90%,1200px);
    margin:0 auto 7px;
    background-color: #e6edf3;
    border-radius: 5px;
}



  

.accordion summary {
    font-family: var(--font_style_1);
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    line-height: 1.7;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 13px;
    height: 13px;
    margin-left: 10px;
    border-bottom: 3px solid #b6bdc3;
    border-right: 3px solid #b6bdc3;
    content: '';
    transition: transform .3s;
}

.accordion[open] summary::after {
    transform: rotate(225deg);
}

.accordion .details_content {
  background: #a7d2ea85;
  padding: 24px 16px;
  margin-left: 0px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-radius: 5px;
}


.accordion[open] .details_content {
  animation: fadeIn 1.5s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.accordion .details_content p {
    transform: translateY(-10px); 
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
     animation: slideinBottom 2s 1  ;
}

.accordion[open] .details_content p {
	width: 100%;
    transform: none;
    opacity: 1;
}

@media only screen and (max-width: 736px) {/*スマホ*/






}/*スマホ*/


@media only screen and  (min-width: 737px) and (max-width: 1024px){



}













