body, h1, p {
    margin: 0;
    padding: 0;
    font-family: "Kosugi", sans-serif;
}

.home-img img {
    width: 100%;
    height: auto;
    display: block;
}

.title{
    max-width: 800px;
    margin: 30px auto;
    margin-top: 100px;
    padding-bottom: 70px;
}
  
.titlefont{
    font-family: "Zen Maru Gothic", serif;
    color: #EBAA92;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight:bold;
    text-align: center;
}
.titlefont::before,
.titlefont::after {
    content: '';
    width: 3px;
    height: 40px;
    background-color: #AEC1BA;
}
.titlefont::before {
    margin-right: 30px;
    transform: rotate(-35deg)
}
.titlefont::after {
    margin-left: 30px;
    transform: rotate(35deg)
}

.question {
    margin: 0px 100px 0px 100px;
}
.question summary {
    background-color: #6c9d9b;
    cursor: pointer;
}
summary {
    /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
    display: block;
}
  
summary::-webkit-details-marker {
    /* Safariで表示されるデフォルトの三角形アイコンを消します */
    display: none;
}
  
.summary_inner{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    font-weight: bold;
    color: #002255;
}
  
/* --------アイコンを作ります-------- */
.icon {
    display: block;
    position: relative;
    width: 24px;
    margin-left: 6px;
    flex-shrink: 0;
    transform-origin: center;
    transition: transform 0.4s;
    transform: rotate(90deg);
}
  
/* アコーディオンが開いた時のスタイル */
details[open] .icon {
    transform: rotate(270deg);
}
  
/* アイコンのバーのスタイル */
.icon::before,
.icon::after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 12px;
    border-color: transparent transparent transparent #96c3a5;
    top: 0;
    left: 7px;
    bottom: 0;
    margin: auto;
}
  
  
@keyframes close-animation {
    from {
      transform: rotate(180deg);
    }
  
    to {
      transform: rotate(0deg);
    }
}
  
/* アコーディオンが開いた時にアイコンをアニメーションさせます */
details[open] .summary_inner::after {
    animation: 0.4s open-animation forwards;
}
  
@keyframes open-animation {
    from {
      transform: rotate(0deg);
    }
  
    to{
      transform: rotate(180deg);
    }
}

/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #fff;
    font-weight:570;
	background:#AEC1BA;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
    background-color: #dcebe6;
    color: #002255;
}


.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}