@charset "utf-8";
/* =============================================
common
============================================= */
.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pcOnly {
    display: none !important;
  }
  .lp_bnr {
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .spOnly {
    display: none !important;
  }
}
/* =============================================
point
============================================= */
.pointList {
  flex-wrap: wrap;
  justify-content: center;
  margin: 60px 0 20px;
  display: flex;
}
.pointList li {
  background: #f6f2ef;
  border-radius: 15px;
  width: 27%;
  margin: 0 20px 40px;
  position: relative;
  padding: 45px 0 30px;
  display: flex;
  flex-direction: column;
}
.pointList .tag {
  position: absolute;
  width: 43%;
  top: -18px;
  right: 0;
  left: 0;
  margin: auto;
}
.pointList .icon {
  width: 25%;
  margin: 0 auto 14px;
  display: block;
}
.pointList .text {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  margin-top: auto;
}
.pointList li:nth-child(2) .icon, .pointList li:nth-child(3) .icon, .pointList li:nth-child(5) .icon {
  margin: 6px auto 25px
}
.pointList li:nth-child(5) .text {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .pointList {
    margin: 11vw 0 2vw;
    ;
  }
  .pointList li {
    width: 44%;
    margin: 0 2vw 7vw;
    padding: 7vw 0 4vw;
  }
  .pointList .tag {
    width: 45%;
    top: -4vw;
  }
  .pointList .icon {
    width: 32%;
    margin: 0 auto 3vw;
  }
  .pointList .text {
    font-size: 4vw;
    line-height: 6vw;
  }
  .pointList li:nth-child(2) .icon, .pointList li:nth-child(3) .icon, .pointList li:nth-child(5) .icon {
    margin: 2vw auto 5vw;
  }
}
/* =============================================
button
============================================= */
.btnList {
  justify-content: center;
  flex-wrap: wrap;
}
.btnList li {
  width: 45%;
  text-align: center;
  margin: 0 20px 40px;
}
.btnList li .text {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 13px;
}
.btnList .btn {
  width: 100%;
  border-radius: 100px;
  font-size: 24px;
  font-weight: bold;
  padding: 15px 0;
  position: relative;
}
.btnList .btn.user-guide {
  background: #514d47;
  color: #fff;
}
.btnList .btn.member-registration {
  background: #73b33d;
  color: #fff;
}
.btnList .btn.anchor {
  border: 2px solid #514d47;
  position: relative;
}
.btnList .btn.user-guide::after, .btnList .btn.member-registration::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.btnList .btn.anchor::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #514d47;
  border-right: 2px solid #514d47;
  transform: translateY(-2px) rotate(135deg);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .btnList li {
    width: 100%;
    text-align: center;
    margin: 0 5vw 6vw;
  }
  .btnList li .text {
    font-size: 3.58vw;
    margin: 0 0 2vw;
  }
  .btnList .btn {
    width: 100%;
    font-size: 4.6vw;
    padding: 4vw 0;
  }
}
/* =============================================
teiki
============================================= */
.teikiHead {
  margin: 40px 0 35px;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.teikiHead span {
  color: #73b33d;
}
.pointDetail {
  position: relative;
  background: #f6f2ef;
  border-radius: 15px;
  padding: 40px;
  margin: 0 0 60px;
}
.pointDetail .tag {
  position: absolute;
  width: 140px;
  top: -18px;
  left: 20px;
}
.pointDetail h3 {
  font-weight: bold;
  font-size: 34px;
  text-align: center;
}
.pointDetail .general {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  margin: 18px 0 0;
}
.pointDetail .course {
  background: #fff;
  width: 46%;
}
.arrow {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 62px;
}
.pointDetail .arrow::before, .pointDetail .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 30px;
  height: 3px;
  border-radius: 9999px;
  background-color: #514d47;
  transform-origin: calc(100% - 1px) 50%;
}
.pointDetail .arrow::before {
  transform: rotate(45deg);
}
.pointDetail .arrow::after {
  transform: rotate(-45deg);
}
.pointDetail .courseList {
  justify-content: space-between;
  margin: 35px 0 0;
  align-items: center;
}
.pointDetail .courseList .title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  background: #514d47;
  color: #fff;
  padding: 9px 0;
}
.pointDetail .courseList .title.teiki {
  background: #73b33d;
}
.pointDetail .courseList .course-flex {
  padding: 20px;
  justify-content: space-between;
  align-items: center;
}
.pointDetail .courseList .course-flex .img {
  width: 43%;
}
.pointDetail .courseList .course-flex .text {
  width: 50%;
  font-size: 18px;
}
.pointDetail .courseList .course-flex .text .detail {
  font-size: 16px;
  display: inline-block;
}
.pointDetail .courseList .course-flex .text .usually {
  font-size: 16px;
  display: block;
  margin: 16px 0 0;
}
.pointDetail .courseList .course-flex .text .price {
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  color: #514d47;
}
.pointDetail .courseList .course-flex .text .tax {
  font-size: 14px;
}
.pointDetail .courseList .single .course-flex {
  padding: 39px 20px;
}
.pointDetail .courseList .course-flex .text .discount {
  color: #d93030;
  font-weight: bold;
}
.pointDetail .courseList .course-flex .text .discount .price {
  color: #d93030;
}
.pointDetail .profit {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  margin: 30px 0 0;
}
.pointDetail .profit .price {
  font-size: 40px;
  color: #73b33d;
}
.pointDetail .profit .tax {
  font-size: 20px;
}
.pointDetail .tableList {
  width: 830px;
  margin: 30px auto 0;
}
.pointDetail .table-title {
  background: #514d47;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  align-items: center;
}
.pointDetail .tableList li {
  width: 15%;
}
.pointDetail .table-title li {
  border-right: 1px solid #f6f2ef;
  padding: 10px 0;
}
.pointDetail .tableList li:nth-child(1) {
  width: 25%;
}
.pointDetail .tableList li:nth-child(6) {
  width: 15%;
  border-right: none;
}
.pointDetail .table-li1 {
  background: #fff;
  margin: 0 auto;
  text-align: center;
}
.pointDetail .table-li1 .single {
  width: 68px;
  display: block;
  margin: 0 auto;
}
.pointDetail .table-li1 li {
  padding: 26px 0;
  border-right: 1px solid #514d47;
}
.pointDetail .table-li1 .text {
  font-size: 28px;
  font-weight: bold;
  color: #73b33d;
  line-height: 1.5;
  padding: 40px 0;
}
.pointDetail .table-li1 .text span {
  font-size: 20px;
  font-weight: bold;
  display: block;
  color: #514d47;
}
.pointDetail .table-li2 {
  background: #fff;
  margin: 0 auto 24px;
  text-align: center;
}
.pointDetail .table-li2 .set {
  width: 96px;
  display: block;
  margin: 0 auto;
}
.pointDetail .table-li2 li {
  padding: 11px 0;
  border-right: 1px solid #514d47;
  border-top: 1px solid #514d47;
}
.pointDetail .table-li2 .text {
  font-size: 28px;
  font-weight: bold;
  color: #73b33d;
  line-height: 1.5;
  padding: 24px 0;
}
.pointDetail .table-li2 .text span {
  font-size: 20px;
  font-weight: bold;
  display: block;
  color: #514d47;
}
.pointDetail .table-li2 .blank {
  background: #ebe8e5;
  font-weight: bold;
  color: #989590;
}
.pointDetail .table-li2 .blank .arrow1 {
  position: relative;
  display: block;
  width: 48px;
  height: 4px;
  margin: 50px auto 27px;
  border-radius: 9999px;
  background-color: #989590;
}
.pointDetail .table-li2 .blank .arrow1::before, .pointDetail .table-li2 .blank .arrow1::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 20px;
  height: 4px;
  border-radius: 9999px;
  background-color: #989590;
  transform-origin: calc(100% - 2px) 50%;
}
.pointDetail .table-li2 .blank .arrow1::before {
  transform: rotate(45deg);
}
.pointDetail .table-li2 .blank .arrow1::after {
  transform: rotate(-45deg);
}
.pointDetail .table-li2 li:nth-child(2) {
  border-left: 6px solid #73b33d;
  border-top: 6px solid #73b33d;
  border-bottom: 6px solid #73b33d;
}
.pointDetail .table-li2 li:nth-child(3) {
  border-right: 6px solid #73b33d;
  border-top: 6px solid #73b33d;
  border-bottom: 6px solid #73b33d;
}
.pointDetail .ballon {
  background: #73b33d;
  color: #fff;
  font-weight: bold;
  padding: 9px 33px;
  font-size: 18px;
  border-radius: 10px;
  position: relative;
}
.pointDetail .ballon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #73b33d;
  translate: -50% -100%;
}
.pointDetail .ballon-box {
  position: absolute;
  bottom: 37px;
  left: 239px;
}
.pointDetail.point3 .Img {
  width: 126px;
  display: block;
  margin: 25px auto;
}
.pointDetail .img-box {
  background: #fff;
  width: 500px;
  margin: 34px auto 0;
  padding: 50px 30px 30px;
  position: relative;
}
.pointDetail.point4 .text {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.pointDetail.point4 .flex-wrap {
  justify-content: center;
  align-items: center;
  margin: 0 0 30px;
}
.pointDetail.point4 .img02 {
  width: 18%;
  margin: 0 30px;
}
.pointDetail.point4 .arrow02 {
  position: relative;
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 9999px;
  background-color: #514d47;
}
.pointDetail.point4 .arrow02::before, .pointDetail.point4 .arrow02::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 20px;
  height: 4px;
  border-radius: 9999px;
  background-color: #514d47;
  transform-origin: calc(100% - 2px) 50%;
}
.pointDetail.point4 .arrow02::before {
  transform: rotate(45deg);
}
.pointDetail.point4 .arrow02::after {
  transform: rotate(-45deg);
}
.pointDetail.point4 .ballon02 span {
  background: #514d47;
  color: #fff;
  font-weight: bold;
  padding: 9px 33px;
  font-size: 20px;
  border-radius: 10px;
  position: relative;
}
.pointDetail.point4 .ballon02 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #514d47 transparent transparent;
  translate: -50% 100%;
}
.pointDetail .img-box .ballon02 {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: -12px;
  text-align: center;
}
.pointDetail.point4 .Img {
  width: 320px;
  display: block;
  margin: 25px auto;
}
.pointDetail.point4 .caution {
  text-align: center;
  font-size: 16px;
  margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
  .teikiHead {
    margin: 4vw 0 7vw;
    font-size: 6vw;
  }
  .pointDetail {
    padding: 5vw;
    margin: 0 4vw 9vw;
  }
  .pointDetail .tag {
    width: 20vw;
    top: -2.5vw;
    left: 3vw;
  }
  .pointDetail h3 {
    font-size: 5vw;
    text-align: left;
    padding: 0 0 0 20vw;
    line-height: 8vw;
  }
  .pointDetail .general {
    text-align: left;
    font-size: 3.58vw;
    line-height: 6vw;
    margin: 4vw 0 0;
  }
  .pointDetail .courseList {
    margin: 5vw 0 0;
    flex-wrap: wrap;
  }
  .pointDetail .course {
    width: 100%;
  }
  .pointDetail .courseList .title {
    font-size: 4.1vw;
    padding: 2vw 0;
  }
  .pointDetail .courseList .single .course-flex {
    padding: 5vw;
  }
  .pointDetail .courseList .course-flex .text {
    font-size: 4.1vw;
  }
  .pointDetail .courseList .course-flex .text .detail {
    font-size: 3.5vw;
  }
  .pointDetail .courseList .course-flex .text .usually {
    font-size: 3.5vw;
    margin: 3vw 0 0;
  }
  .pointDetail .courseList .course-flex .text .price {
    font-size: 5vw;
  }
  .pointDetail .courseList .course-flex .text .tax {
    font-size: 2.4vw;
  }
  .pointDetail .arrow::before, .pointDetail .arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 1px);
    width: 3px;
    height: 30px;
    border-radius: 9999px;
    background-color: #514d47;
    transform-origin: 50% calc(100% - 1px);
    top: 2vw;
  }
  .arrow {
    width: 100%;
    height: 12vw;
  }
  .pointDetail .profit {
    font-size: 5vw;
    margin: 4vw 0 0;
  }
  .pointDetail .profit .price {
    font-size: 6vw;
  }
  .pointDetail .profit .tax {
    font-size: 3vw;
  }
  .pointDetail.point3 .Img {
    width: 27%;
    margin: 4vw auto;
  }
  .pointDetail.point4 .Img {
    width: 69%;
    margin: 4vw auto;
  }
  .pointDetail.point4 .caution {
    text-align: left;
    font-size: 3vw;
    margin: 3vw 0 0;
  }
  .pointDetail .img-box {
    width: 100%;
    margin: 9vw auto 0;
    padding: 11vw 0 4vw;
  }
  .pointDetail.point4 .text {
    font-size: 4vw;
  }
  .pointDetail.point4 .flex-wrap {
    margin: 0 0 5vw;
  }
  .pointDetail.point4 .img02 {
    margin: 0 4vw;
  }
  .pointDetail.point4 .arrow02 {
    width: 8vw;
    height: 0.9vw;
  }
  .pointDetail.point4 .ballon02 span {
    padding: 2vw 5vw;
    font-size: 4vw;
  }
  .pointDetail.point4 .ballon02 span::after {
    bottom: 0.1vw;
  }
  .cycleList .title {
    font-size: 4.5vw;
    font-weight: bold;
    text-align: center;
    color: #73b33d;
    margin: 4vw 0 0;
  }
  .cycleList .title span {
    display: inline-block;
    font-size: 3.8vw;
    color: #514d47;
  }
  .cycleList .ttlList {
    background: #514d47;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 2vw 0 0;
  }
  .cycleList .ttlList li {
    width: 20%;
    border-right: 1px solid #f6f2ef;
    padding: 1vw 0;
    font-size: 3vw;
  }
  .cycleList .imgList li {
    width: 20%;
    border-right: 1px solid #514d47;
    background: #fff;
  }
  .cycleList .imgList li .single {
    width: 55%;
    display: block;
    margin: 2vw auto;
  }
  .cycleList .ttlList li:nth-child(5) {
    border-right: none;
  }
  .cycleList .imgList li:nth-child(5) {
    border-right: none;
  }
  .cycleList .imgList li .set {
    width: 75%;
    display: block;
    margin: 1.2vw auto;
  }
  .cycleList .imgList li.blank {
    background: #ebe8e5;
    font-weight: bold;
    color: #989590;
    font-size: 2.8vw;
    text-align: center;
  }
  .cycleList .imgList li.blank .arrow1 {
    position: relative;
    display: block;
    width: 8vw;
    height: 0.8vw;
    margin: 7vw auto 5vw;
    border-radius: 9999px;
    background-color: #989590;
  }
  .cycleList .imgList li.blank .arrow1::before, .cycleList .imgList li.blank .arrow1::after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 0;
    width: 3.5vw;
    height: 0.8vw;
    border-radius: 9999px;
    background-color: #989590;
    transform-origin: calc(100% - 2px) 50%;
  }
  .cycleList .imgList li.blank .arrow1::before {
    transform: rotate(45deg);
  }
  .cycleList .imgList li.blank .arrow1::after {
    transform: rotate(-45deg);
  }
  .cycleList .imgList.img02 li:nth-child(1) {
    border-left: 1.5vw solid #73b33d;
    border-top: 1.5vw solid #73b33d;
    border-bottom: 1.5vw solid #73b33d;
  }
  .cycleList .imgList.img02 li:nth-child(2) {
    border-right: 1.5vw solid #73b33d;
    border-top: 1.5vw solid #73b33d;
    border-bottom: 1.5vw solid #73b33d;
  }
  .cycleList {
    position: relative;
  }
  .pointDetail .cycleList .ballon-box {
    position: absolute;
    bottom: -12vw;
    left: 0vw;
  }
  .pointDetail.point2 {
    padding: 5vw 5vw 20vw;
  }
  .pointDetail .cycleList .ballon {
    padding: 1.5vw 3.5vw;
    font-size: 4.3vw;
  }
  .pointDetail .cycleList .ballon::after {
    left: 29%;
  }
}