@charset "UTF-8";
/*
@mixin tab {
	@media screen and (max-width: (1199.9px)) and (min-width: (768.1px)) {
		@content;
	}
}
@mixin tabsp {
	@media screen and (max-width: (1199.9px)) {
		@content;
	}
}
*/

  /* acordion */
.accbox {
    margin-top: 2.5em;
    padding: 0;
    max-width: 100%;
}
.accbox label {
    display: block;
    margin: 1px 0;
    cursor :pointer;
    transition: all 0.5s;
    font-family: "poppins-regular","notosans-regular";
    font-size: 20px;
    text-align: left;
    box-sizing: border-box;
}
.accbox label h3 {
    position: relative;
    display: inline-block;
}
.accbox label h3:before {
    content: '＋';
    font-weight: bold;
    font-family: "poppins-regular", "notosans-regular";
    color: #009FE8;
    position: absolute;
    width: 30px;
    height: 30px;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    border: solid 2px #009FE8;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accbox input { display: none; }
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}
.accbox .accshow .box-two {
	width:65%;
	margin-bottom:0;
}
.accbox .accshow .box-two:last-child { width:29%; }
.cssacc:checked + label + .accshow {
    height: auto;
    opacity: 1;
}
.cssacc:checked + label h3:before {
    content: '－';
	font-family: "poppins-regular","notosans-regular";
}
.accbox ul {
  list-style: none;
}
.accbox ul.accbox-list {
  padding-left: 30px;
  margin: 0 auto;
}
.accbox ul.accbox-list li:not(.accbox-list-contents li){
  margin-bottom: 0.8em;
}
.accbox ul.accbox-list-contents {
  padding-left: 0;
}

@media screen and (max-width: 768px) {

}  

 /* acordion end */