@charset "utf-8";
/* CSS Document */

summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
}

summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

.summary_inner{
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1rem 0.7rem 1rem;
    border: 1px solid #888888;
    background-color: #E9E9E9;
    border-radius: 6px;
    box-shadow: 0 4px 0 #9E9E9E;
    -webkit-box-shadow: 0 4px 0 #9E9E9E;
}

/* --------アイコンを作ります-------- */
.icon {
  display: block;
  position: relative;
  width: 16px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}

/* アコーディオンが開いた時のスタイル */
details[open] .icon {
  transform: rotate(180deg);
}

/* アイコンのバーのスタイル */
.icon::before,
.icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 3px;
  background-color: #696969;
}

.icon::before {
  left: 0;
  transform: rotate(45deg);
}

.icon::after {
  right: 0;
  transform: rotate(-45deg);
}

.summary1{
    padding: 1rem 0.2rem 2.5rem 0.3rem;
}

.summary1 p{
	padding: 10px 10px 10px 10px;
}

img{
	width: 100%;
	height: auto;
}


/*------------------------*/


/*タブレット用*/
@media (min-width: 768px){
	
.summary1{
    padding-left: 15px;
    padding-top: 9px;
    padding-right: 15px;
    padding-bottom: 30px;
}

.summary1 p{
	padding-top: 10px;
	padding-bottom: 10px;
}
	
img{
	width: 100%;
	height: auto;
}
	
}
	

/*------------------------*/


/*デスクトップ用*/

@media (min-width: 1024px){

.summary_inner{
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1rem 0.4rem 1rem;
    border: 1px solid #888888;
    background-color: #E9E9E9;
    border-radius: 6px;
    box-shadow: 0 4px 0 #9E9E9E;
    -webkit-box-shadow: 0 4px 0 #9E9E9E;
}
	
.summary1{
    padding-left: 15px;
    padding-top: 9px;
    padding-right: 15px;
    padding-bottom: 30px;
}

.summary1 p{
	padding-top: 10px;
	padding-bottom: 10px;
}
	
img{
	width: 100%;
	height: auto;
}
	
}


/*------------------------*/


/*デスクトップ用　横幅1280px*/

@media (min-width: 1280px){
	
.summary1{
    padding-left: 45px;
    padding-top: 9px;
    padding-right: 45px;
    padding-bottom: 30px;
}

.summary1 p{
	padding-top: 10px;
	padding-bottom: 10px;
}
	
	
}
