.usage{
  width: 1000px;
  height: 711px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.usage-box{
  position: relative;
  top: -15%;
}
.usage-title{
  position: relative;
  top: 50px;
  left: 0;
  margin-top: 90px;
}
.check-box{
  width: 500px; 
  position: relative;
  top: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-box-aicon{
  transform: scale(2);
  margin-right: 30px;
  color: red;
  border: 1px solid black;
}
.usagetitle-img{
  border: 5px solid #009380;
  padding: 11px;
}
.check-text{
  font-size: 25px;
  font-weight: bold;
}
.check-text span{
  color: red;
  font-size: 30px;
}
.rect-box{
  width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: rotate(-11deg);
} 
.rect{
  width: 180px;
  height: 100px;
  margin: 200px auto;
  background-color: var(--main-color);
}
.triangle{
  width: 100px;
  height:136px;
  background-color: #0089CF;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  
}

.circle-container {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 4px solid #0089cf; /* 円の枠線の色 */
  border-radius: 50%; /* 完全な円形にする */
  left: 86%;
  top: 14%;
}

.circle-container .content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%,-50%);  
  color: #0089cf;
  font-weight: bold;
}

.circle-container .content span {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
}
.exclamation-mark{
  font-size: 7.5rem;
}
.usage-cnt-box{
  position: relative;
  width: 900px;
}
.usage-cnt{
  width: 137px;
  position: absolute;
  border: 10px solid var(--main-color);
  background-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
}
.usage-cnt img{
  width: 34px;
}
.usage-cnt[data-usage="1"] img{
  position: absolute;
  top: -24%;
  right: 1%;
}
.usage-cnt[data-usage="2"] img{
  position: absolute;
  top: -18%;
  right: -7%;
}
.usage-cnt[data-usage="3"] img{
  position: absolute;
  top: -27%;
  right: 0%;
}
.usage-cnt[data-usage="5"] img{
  position: absolute;
  top: -2%;
  right: 0%;
}
.usage-cnt[data-usage="1"]{
  left: 7%;
  top: -129px;
  height: 110px;
}
.usage-cnt[data-usage="2"]{
  left: 27%;
  top: -165px;
}
.usage-cnt[data-usage="3"]{
  left: 45%;
  top: -196px;
  width: 150px;
  height: 100px;
  
}
.usage-cnt[data-usage="4"]{
  left: 64%;
  top:-228px;
  height: 100px;
}
.usage-cnt[data-usage="5"]{
  left: 82%;
  top: -259px;
  height: 100px;
}
.usage-cnt-text{
  font-size: 26px;
  font-weight: bold;
  text-decoration: underline;
  color: var(--main-color);
  margin-top: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.usage-cnt-text span{
  font-size: 20px;
}
.usage-cnt-text[data-usage="3"]{
  position: absolute;
  top: 10%;
}
.usage-cnt-text[data-usage="4"]{
  width: 139px;
}
.usage-modal-overlay{
  display: none;
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height:100%;
  background-color: #000;
  opacity: 0;
  cursor: pointer;
  z-index: 70000;
}
.usage-modal-overlay.open{
  display: block;
  opacity: 0.5;
}
  .usage-modal-cnt{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%,-50%);
    padding: 10px 110px 20px 110px;
    opacity: 0;
    z-index: 90000;
    transition: opacity 0.3s ease; 
  }
.usage-modal-cnt.open{
  display: block;
  opacity: 1;
}
.usage-modal-title{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: var(--main-color);
  margin-top: 10px;
  margin-bottom: 10px;  
}

.usage-modal-sub-title{
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  margin:20px auto;
}
.usage-modal-sub-title span{ 
  color: var(--main-color);
}
.usage-modal-close{
  transform: scale(3);
  position: fixed;
  top: -7%;
  right: -7%;
  color: #fff;
  cursor: pointer;
}
.usage-modal-image{
  width: 496px;
}
.usage-modal-text span{
  color: var(--main-color);
  font-weight: bold;

}

