@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.5rem 0.5rem 0.5rem 1.5rem;
    border: 1px solid #888888;
    margin-bottom: 2px;
	background-color: #E9E9E9;
    border-radius: 8px;
    box-shadow: 0 4px 0 #9E9E9E;
	-webkit-box-shadow: 0 4px 0 #9E9E9E;
}

.summary_inner2{
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border: 1px solid #888888;
    margin-bottom: 2px;
    background-color: #E9E9E9;
    border-radius: 8px;
    box-shadow: 0 4px 0 #9E9E9E;
    -webkit-box-shadow: 0 4px 0 #9E9E9E;
    background-image: -webkit-linear-gradient(270deg,rgba(214,204,165,1.00) 2.76%,rgba(255,255,255,1.00) 46.29%,rgba(222,213,162,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(214,204,165,1.00) 2.76%,rgba(255,255,255,1.00) 46.29%,rgba(222,213,162,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(214,204,165,1.00) 2.76%,rgba(255,255,255,1.00) 46.29%,rgba(222,213,162,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(214,204,165,1.00) 2.76%,rgba(255,255,255,1.00) 46.29%,rgba(222,213,162,1.00) 100%);
}

/* --------アイコンを作ります-------- */
.icon {
  display: block;
  position: relative;
  width: 20px;
  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: 13px;
  height: 3px;
  background-color: #696969;
}

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

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

.summary1{
    padding: 1rem 0.5rem 1rem 0.5rem;
}

.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){

.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: 0.3rem orem;
}
	
	
}
