#sec1 .borderTtl{
  border-bottom: solid 1px var(--purple);
  padding-bottom: 1rem;
}
#sec1 .box{
  border-radius: 10px;
  padding: 24px 35px;
}
#sec1 .notice{
  display: none;
}
#sec1 .scroll{
  width: min(100%, 602px);
  border: solid 1px var(--text-color);
  border-radius: 10px;
  overflow-x: auto;
}
#sec1 .styleTbl{
  width: 100%;
  border-collapse: collapse;
  overflow-x: scroll;
}
#sec1 .styleTbl th{
  width: min(20%, 4em);
  background: var(--gray);
  font-weight: normal;
  padding: 19px 1em 14px;
}
#sec1 .styleTbl th,
#sec1 .styleTbl td{
  padding: 14px 30px;
}
#sec1 .styleTbl tr + tr th{
  border-top: solid 1px var(--text-color);
}
#sec1 .styleTbl th.bl{
  border-left: solid 1px var(--text-color);
}
#sec1 .styleTbl tr + tr td{
  border-top: solid 1px var(--text-color);
  border-left: solid 1px var(--text-color);
}
#sec2 .content ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
#sec2 .list li{
  width: min(100%, 575px);
  background: #fff;
  overflow: hidden;
}
#sec2 .list li iframe{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 575 / 323;
  object-fit: cover;
}
#sec2 .list li .text{
  padding: 19px 40px 35px;
}
#sec2 .box{
  padding: 34px 60px;
}
#sec3 .gallery{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
#sec3 .gallery li{
  width: 100%;
}
/*
===================================================
	sp
===================================================
*/
@media screen and (max-width: 680px) {
  #sec1 .box{
    padding: 24px 15px;
  }
  #sec1 .styleTbl th,
  #sec1 .styleTbl td{
    padding: 14px 15px;
  }
  #sec2 .content ul{
    display: block;
  }
  #sec2 .list li{
    margin-left: auto;
    margin-right: auto;
  }
  #sec2 .content ul li + li{
    margin-top: 2em;
  }
  #sec2 .list li .text{
    padding: 19px 15px 19px;
  }
  #sec2 .box{
    padding: 34px 15px;
  }
  #sec3 .gallery{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 520px) {
  #sec1 .notice{
    display: block;
    color: #7f7f7f;
  }
  #sec1 .styleTbl{
    min-width: 600px;
  }
}




#sec2 .list li .noImage{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  aspect-ratio: 575 / 323;
  background: #aaa;
  color: #fff;
  font-size: min(8.3vw, 2.5rem);
  font-weight: bold;

}