@media screen and (min-width: 768px) {

.present {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	color: rgb(0, 0, 0);
}
.present input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.present_a label {
    font-weight: bold;
    font-size: 18px;
	line-height: 3;
	text-align:left;
	position: relative;
	display: block;
	padding: 0 0 0 1em;
	cursor: pointer;
    margin: 0 0 0px 0;
    color: #fff;
    background: #e66565;
}

.present_b label {
	font-weight: bold;
	font-size: 18px;
	line-height: 3;
	text-align:left;
	position: relative;
	display: block;
	padding: 0 0 0 1em;
	cursor: pointer;
    margin: 0 0 0px 0;
    color: #fff;
    background: #3daaf3;
}

.present-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
	color: #333333;
	background: #fff;
}

.present-content p {
	margin: 1em;
}

/* :checked */
.present input:checked ~ .present-content {
	max-height: 160em;
}

/* Icon */
.present label::after {
	line-height: 3;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 3em;
	height: 3em;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	text-align: center;
}
.present input[type=checkbox] + label::after {
	content: '+';
}

.present input[type=checkbox]:checked + label::after {
	transform: rotate(315deg);
}






/*ボックス全体*/
.switchbox {
    margin: 10px 0;
    padding: 0;
}
/*ラベル*/
.switchbox label {
    display: block;
    font-weight: bold;
    cursor :pointer;
}
/*チェックボックスを非表示にする*/
.switchbox input {
    display: none; 
}
/*中身を非表示にしておく*/
.switchbox div {
    height: 0;
    overflow-y: hidden;
    transition: 0.8s;/*ゆっくり表示させる*/
    opacity: 0;
}
/*クリックで中身を表示*/
.switchbox input:checked + label + div {
    height: auto;
    opacity: 1;
}
/*アイコン*/
.switchbox label::before {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 8px;
}
/*クリックでアイコン入れ替え*/
.switchbox input:checked + label::before {
    content: '\f068';
}
}
