/* 外枠 */

#main {
  margin: 5% 0% 0% 5%;
  padding: 2% 5% 0% 0%;
  /* border: solid 1px black; */
}

#container{
  padding-bottom: 50px;
}


.circle_box > p{
  margin: 0px;
}


.move_circle_icon_small {
  /*サークルのアイコン*/
  width: 100%;
  height: 100%;
  max-width: 100px;
  max-height: 100px;
  margin: auto;
  z-index: var(--frame-icon-index);
  text-align: center;
  border: none;
  cursor: pointer;
  outline: none;
  display: inline-block;
}

.circle_detail_table {
  width: 70vw;
}
table{
  border-collapse:separate;
  border-spacing: 5px;
  width: 100%;
}

table th,table td{
  border-radius: 5px;
  text-align: center;
  padding: 10px 0;
}

table th{
  background-color: #c79852;
  color: white;
  border:solid 1px #927141;
}

table td{
  background-color: #e4d4bc;
  border:solid 1px #af9d85;
}

.hline {
  width: 20%;
}

details summary{
  display: block;
  width: 69vw;
  padding: 10px 0;
  border-radius: 5px;
  background-color: #996c29;
  border:solid 1px #927141;
}

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

.summary_inner{
  cursor: pointer;
  display: flex;
  padding: 0 15px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #FFFFFF;
}

/*アイコン作成*/
.icon {
  display: block;
  position: relative;
  width: 24px;
  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: 15px;
  height: 3px;
  background-color: #FFFFFF;
}

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

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

.image_size {
  width: 25vw;
}

.flex_box{
  display: flex;
  /*background-color: rgba(241, 201, 50, 1);*/
  justify-content: space-around;
  align-items: center;
}

.flex_item{
  padding: 10px;
  margin: 10px;
  width: 35%;
}

.title {
  margin-bottom: 50px;
}

.flex {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.flex>* {
  flex-basis: 25%;
  width: 100%;
  height: 100%;
  max-width: 100px;
  max-height: 100px;
  padding: 5%;


  /*background: rgb(255, 255, 255);*/
  font-size: 80%;
  text-align: center;
  border-radius: 50%;
  background: radial-gradient(ellipse 70px 70px, var(--main-color) 50%, transparent);
}




#imgs:hover{
  background: radial-gradient(ellipse 70px 70px, #ff2a35 50%, transparent);

}


@media screen and (min-width:481px) {
  .flex>*{
    width: 15%;
    margin:5px auto;
}}

@media screen and (max-width:480px) {
  .flex>*{
    width: 23%;
    margin:60px auto;
    background: radial-gradient(ellipse 60px 60px, var(--main-color) 50%, transparent);
  }
  .move_circle_icon_small {
    padding-top: 7px;
  }
  #imgs:hover{
    background: radial-gradient(ellipse 60px 60px, #ff2a35 50%, transparent);
  }
}
