@charset "utf-8";
/* ==========================================================================
	CONTENTS
========================================================================== */
/*TABLE*/
.table-cmn01 th {
  width: 25%;
  box-sizing: border-box;
  text-align: left;
  vertical-align: top;
  border: solid 1px #ccc;
  background-color: var(--color04);
  padding: 15px 20px;
}
.table-cmn01 td {
  vertical-align: top;
  border: solid 1px #ccc;
  padding: 15px 20px;
}

.li-menu01 {
  display: flex;
  flex-wrap: wrap;

  margin-bottom: -20px;
}
.li-menu01 li {
  width: 31%;
  box-sizing: border-box;
  color: #fff;
  background-color: var(--color02);
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 15px 0;
  margin: 0 1% 20px 1%;
}
.li-menu01 li.etc {
  color: #000;
  text-align: left;
  background-color: rgba(255,255,255,0);
}

.li-menu02 {
  display: flex;
  flex-wrap: wrap;

  margin-bottom: -20px;
}
.li-menu02 li {
  width: 31%;
  box-sizing: border-box;
  color: #fff;
  background-color: #346abd;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 15px 0;
  margin: 0 1% 20px 1%;
}
.li-menu02 li.max {
  width: 97%;
}
.li-menu02 li.etc {
  color: #000;
  text-align: left;
  background-color: rgba(255,255,255,0);
}

.li-equip {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -30px;
}
.li-equip li {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 30px;
}
.li-equip li:nth-child(3n) {
  margin-right: 0;
}
.li-equip li .img-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
  padding-top: 67%;
  margin-bottom: 7px;
}
.li-equip li .img-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.li-equip li .tit {
  font-size: 110%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}


/*ACCESS*/
.access {
  margin-bottom: 40px;
}
.access:last-child {
  margin-bottom: 0;
}
.access-tit {
  color: #000;
  font-family: var(--font01);
  font-size: clamp(1.8rem, 2.375vw, 2rem);
  font-weight: 700;
  background-color: #eee;
  padding: 15px;
  margin-bottom: 20px;
}
.access-tit i {
  color: var(--color02);
  margin-right: 10px;
}

/* ==========================================================================
	PC 1025px -
========================================================================== */
@media screen and (min-width: 1025px) {}
@media screen and (max-width: 1200px) { /*1200以下*/
}
/* ==========================================================================
	TABLET - 1024px
========================================================================== */
@media screen and (max-width:1024px) {}
/* ==========================================================================
	SP - 640px
========================================================================== */
@media screen and (max-width: 700px) {

.li-menu01 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -15px;
}
.li-menu01 li {
  width: 48%;
  font-size: 1.5rem;
  padding: 15px;
  margin: 0 1% 15px 1%;
}
.li-menu01 li.etc {
  width: 98%;
  text-align: right;
  padding: 0;
}

.li-menu02 {
  margin-bottom: -15px;
}
.li-menu02 li {
  width: 48%;
  font-size: 1.5rem;
  padding: 15px;
  margin: 0 1% 15px 1%;
}
.li-menu02 li.max {
  width: 98%;
}
.li-menu02 li.etc {
  text-align: right;
  padding: 15px;
}

  .li-equip {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -30px;
  }
  .li-equip li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

}