@charset "utf-8";
/* ==========================================================================
	CONTENTS
========================================================================== */
/*TABLE*/
.cmn-table01 {
  border-top: solid 1px #ccc;
  margin-bottom: 30px
}
.cmn-table01 th {
  text-align: left;
  font-weight: normal;
  white-space: nowrap;
  border-bottom: solid 1px #ccc;
  padding: 15px;
}
.cmn-table01 td {
  border-bottom: solid 1px #ccc;
  padding: 15px;
}
/*FLOW*/
.arrow {
  position: relative;
  padding: 0 0 60px 0;
}
.arrow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border: 30px solid transparent;
  border-top: 30px solid var(--color01);
  transform: translate(-50%, 30px);
}
/*FAQ*/
.li-faq li {
  margin-bottom: 50px;
}
.li-faq li:last-child {
  margin-bottom: 0;
}
.li-faq li dt {
  position: relative;
  border-bottom: 1px solid #a1a1a1;
  margin-bottom: 15px;
  padding: 0 0 15px 50px;
  font-size: clamp(2rem, 2.875vw, 2.6rem);
  font-weight: bold;
}
.li-faq li dd {
  position: relative;
  margin-bottom: 15px;
  padding: 6px 0 15px 50px;
}
.li-faq li dt::before {
  content: "Q";
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color01);
  color: #fff;
  width: 38px;
  height: 38px;
  left: 0;
  top: 0;
  border-radius: 50px;
}
.li-faq li dd::before {
  content: "A";
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color04);
  color: #fff;
  width: 38px;
  height: 38px;
  left: 0;
  top: 0;
  border-radius: 50px;
}
/*POINT*/
.point-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.point-list li {
  width: 31%;
}
.point-list li .img {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
  margin-bottom: 10px;
}
.point-list li .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.point-list li a:hover img {
  transform: scale(1.05, 1.05);
}
.point-list .tit {
  height: 2.5em;
  font-family: var(--font01);
  font-size: clamp(1.7rem, 2.875vw, 2.3rem);
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
/*ACCESS*/
.access {
  margin-bottom: 30px;
}
.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(--color01);
  margin-right: 10px;
}
/*ATTEMPT*/
.maina-image {
  display: block;
  width: 400px;
  margin: 0 auto;
}
.addition .tit-cmn02 {
  font-size: 2rem;
}
.addition-table-tit {
  color: #fff;
  text-align: center;
  background-color: #0f89df;
  border: solid 1px #ccc;
  padding: 15px;
}
.addition-table-txt {
  border: solid 1px #ccc;
  text-align: center;
  padding: 15px;
}
/* ==========================================================================
	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: 640px) {
  /*POINT*/
  .point-list {
    display: block;
    margin-bottom: -30px;
  }
  .point-list li {
    width: 100%;
    margin-bottom: 30px;
  }
  .point-list .tit {
    height: auto;
  }
  /*ATTEMPT*/
  .maina-image {
    width: 85%;
  }
  .addition .tit-cmn02 {
    font-size: 1.8rem;
  }
  .addition-table {
    font-size: 85%;
    letter-spacing: 0;
  }
  .addition-table-tit {
    padding: 10px;
  }
  .addition-table-txt {
    padding: 10px;
  }
}