@charset "UTF-8";
/*------------------------------------------
共通
-------------------------------------------*/
/*PC
-----------------------------------------------------------------------------*/
#mainv .inner {
  background-image: linear-gradient(90deg, #f0f2f1, #f0f2f1 27%, rgba(240, 242, 241, 0) 47%, rgba(240, 242, 241, 0) 88%, #f0f2f1), url(../images/point/mainv_bg.jpg);
  background-size: auto auto, auto 100%;
  background-position: left top, right center;
}

@media (max-width: 750px) {
  #mainv .inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 36.2vw;
    background-image: linear-gradient(90deg, #f0f2f1, #f0f2f1 25%, rgba(240, 242, 241, 0) 39%, rgba(240, 242, 241, 0)), url(../images/point/mainv_bg.jpg);
    background-position: left top, right 33% bottom;
  }
}
#point #point {
  margin: 0 0 10.8vw;
}
#point > h2 {
  margin: 0 0 45px;
  text-align: center;
  font-size: 24px;
  font-family: var(--yumincho);
  font-weight: bold;
  color: var(--heading2);
}
#point > h2 span {
  color: var(--textEm);
}

@media (max-width: 750px) {
  #point > h2 {
    margin: 0 0 7.2vw;
    font-size: 4.5vw;
  }
}
.anchorList {
  margin: 0 0 70px;
  display: flex;
  flex-wrap: wrap;
  counter-reset: point;
}
.anchorList li {
  position: relative;
  margin: 0 5px 5px 0;
  padding: 15px 5px;
  width: calc((100% - 10px) / 3);
  background: var(--bar1-2Bg);
  box-sizing: border-box;
  counter-increment: point;
}
.anchorList li:hover {
  opacity: 0.7;
}
.anchorList li::before {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent var(--bar1-1Bg) transparent;
  content: "";
}
.anchorList li::after {
  display: block;
  position: absolute;
  right: 5px;
  bottom: 6px;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #fff;
  content: "";
}
.anchorList li:nth-child(3n) {
  margin-right: 0;
}
.anchorList li .number {
  text-align: center;
  font-family: var(--yumincho);
  font-size: 16px;
  font-weight: bold;
  color: var(--bar1-3Text);
  line-height: 1.2;
}
.anchorList li .number::after {
  content: counter(point);
  font-size: 28px;
  font-style: italic;
  vertical-align: middle;
}
.anchorList li .text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 4.5em;
  text-align: center;
  color: inherit;
  font-weight: bold;
  font-size: 18px;
}
.anchorList li a {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (max-width: 750px) {
  .anchorList {
    margin: 0 -3vw 15.7vw;
    justify-content: space-between;
  }
  .anchorList li {
    margin: 0 0 3px;
    padding: 2.4vw 0.6vw;
    width: calc((100% - 3px) / 2);
  }
  .anchorList li::before {
    border-width: 0 0 6vw 6vw;
  }
  .anchorList li::after {
    right: 1.2vw;
    bottom: 1.2vw;
    border-width: 0.6vw 0 0.6vw 1.2vw;
  }
  .anchorList li .number {
    font-size: 3vw;
  }
  .anchorList li .number::after {
    font-size: 5.5vw;
  }
  .anchorList li .text {
    min-height: 3.9em;
    font-size: 4vw;
    line-height: 1.3;
  }
}
.pointList {
  counter-reset: point;
}
.pointList li {
  position: relative;
  margin: 0 0 40px;
  border: solid 1px var(--bar1-2Bg);
  counter-increment: point;
}
.pointList li:last-child {
  margin: 0;
}
.pointList li .number {
  position: absolute;
  left: 20px;
  top: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 0 0;
  height: 110px;
  width: 90px;
  background: var(--bar1-1Bg);
  color: var(--bar1-1Text);
  font-family: var(--yumincho);
  font-weight: bold;
  box-sizing: border-box;
}
.pointList li .number::before {
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  border-style: solid;
  border-width: 0 45px 10px 45px;
  border-color: transparent var(--bar1-1Bg) transparent var(--bar1-1Bg);
  content: "";
}
.pointList li .number::after {
  display: block;
  position: absolute;
  right: -10px;
  top: 0;
  width: 10px;
  height: 10px;
  background: linear-gradient(45deg, var(--bar1-1Bg) 50%, rgba(255, 255, 255, 0) 50%);
  content: "";
  filter: brightness(30%);
}
.pointList li .number span::after {
  display: block;
  content: counter(point);
  font-size: 32px;
}
.pointList li h2 {
  display: flex;
  align-items: center;
  min-height: 3em;
  margin: 0;
  padding: 25px 25px 25px 140px;
  color: var(--bar1-2Text);
  background: var(--bar1-2Bg);
  font-size: 24px;
  font-weight: bold;
  font-family: var(--yumincho);
}
.pointList li h2 span {
  text-align: left;
}
.pointList li h2 span span {
  color: var(--textEm);
}

@media (max-width: 750px) {
  .pointList {
    margin: 0 -3vw;
  }
  .pointList li {
    margin: 0 0 14.4vw;
  }
  .pointList li .number {
    left: 3.6vw;
    top: -2vw;
    padding: 2vw 0 0;
    height: 22.9vw;
    width: 16.2vw;
    font-size: 2.6vw;
  }
  .pointList li .number::before {
    bottom: -2vw;
    border-width: 0 8.1vw 2vw 8.1vw;
  }
  .pointList li .number::after {
    right: -2vw;
    width: 2vw;
    height: 2vw;
  }
  .pointList li .number span::after {
    font-size: 6.5vw;
  }
  .pointList li h2 {
    min-height: 4.5em;
    padding: 4vw 4vw 4vw 24.7vw;
    font-size: 4.8vw;
  }
}
.listInner {
  padding: 40px;
  font-size: 16px;
  line-height: 1.8;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.listInner::after {
  display: block;
  clear: both;
  content: "";
}
.listInner span {
  color: var(--textEm);
  font-weight: bold;
}
.listInner .wideImage {
  margin: 0 0 25px;
}
.listInner .btn {
  display: block;
  max-width: 290px;
  margin: 25px auto 0;
  padding: 10px;
  text-align: center;
  background: #e0e0e0;
  font-size: 14px;
  border-radius: 100vh;
  box-sizing: border-box;
}
.listInner .btn:hover {
  opacity: 0.7;
}
.listInner .btn > span {
  color: inherit;
  position: relative;
  display: inline-block;
  padding: 0 0 0 20px;
}
.listInner .btn > span::before {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  border-top: solid 2px #444;
  border-right: solid 2px #444;
  width: 8px;
  height: 8px;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 750px) {
  .listInner {
    padding: 8.4vw 3vw 0;
    font-size: 3.6vw;
  }
  .listInner .wideImage {
    margin: 0 -3vw 6vw;
  }
  .listInner .btn {
    margin: 6vw auto 0;
    padding: 3vw;
    font-size: 3.6vw;
    max-width: 100%;
  }
  .listInner .btn > span {
    padding: 0 0 0 4.8vw;
  }
  .listInner .btn > span::before {
    width: 2.1vw;
    height: 2.1vw;
  }
}
.splitImage {
  position: relative;
  width: 230px;
  margin: 0 40px 0 0;
  flex-shrink: 0;
}
.splitImage img {
  width: 100%;
  height: auto;
}
.splitImage img.cover {
  height: 190px;
  object-fit: cover;
}
.splitImage img.cover.posL {
  object-position: left center;
}
.splitImage .name {
  position: absolute;
  left: 40.8%;
  bottom: 9%;
  color: #fff;
  font-size: 11px;
  text-shadow: 0 0 6px #000, 0 0 6px #000, 0 0 6px #000, 0 0 6px #000, 0 0 6px #000;
}

@media (max-width: 750px) {
  .splitImage {
    margin: 0 auto 6vw;
    width: 100%;
  }
  .splitImage.w60sp {
    width: 60%;
  }
  .splitImage img {
    width: 100%;
    height: auto;
  }
  .splitImage .name {
    left: 38%;
    bottom: 9%;
    font-size: 2.4vw;
  }
}
.textWrap {
  overflow: hidden;
  width: calc(100% - 280px);
}
.textWrap p span {
  font-weight: 700;
}

.textWrap--full {
  width: 100%;
}

@media (max-width: 750px) {
  .textWrap {
    width: 100%;
  }
}
.introList {
  display: flex;
  margin: 0 0 25px;
  counter-reset: intro;
}
.introList > li {
  position: relative;
  margin: 0 4px 0 0;
  width: calc((100% - 8px) / 3);
  background: var(--bar1-2Bg);
  counter-increment: intro;
}
.introList > li:last-child {
  margin: 0;
}
.introList > li::after {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--zabuton2Bg);
  color: var(--zabuton2Text);
  font-weight: bold;
  font-size: 20px;
  content: counter(intro);
}
.introList > li .outline {
  padding: 20px 10px;
  text-align: center;
  font-size: 16px;
}
.introList > li .outline h3 {
  font-size: 22px;
  font-weight: bold;
  font-family: var(--yumincho);
  color: var(--bar1-3Text);
  line-height: 1.2;
}

@media (max-width: 750px) {
  .introList {
    margin: 0 0 6vw;
    flex-wrap: wrap;
  }
  .introList li {
    margin: 0 0 0.9vw;
    width: 100%;
    display: flex;
  }
  .introList li::after {
    width: 10.6vw;
    height: 10.6vw;
    font-size: 5.4vw;
  }
  .introList li .image {
    width: 50%;
  }
  .introList li .image img {
    object-fit: cover;
  }
  .introList li .outline {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    min-height: calc(37.4vw - 20px);
    padding: 10px;
    font-size: 3.6vw;
    box-sizing: border-box;
  }
  .introList li .outline .outlineInner h3 {
    margin: 0 0 1.2vw;
    font-size: 5vw;
  }
}
.halfImage {
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px;
}
.halfImage img {
  width: calc((100% - 4px) / 2);
  height: auto;
}

@media (max-width: 750px) {
  .halfImage {
    width: 90%;
    margin: 0 auto 6vw;
  }
  .halfImage img {
    margin: 0 0 0.9vw;
  }
}
/*SP
-----------------------------------------------------------------------------*/

/*# sourceMappingURL=point.css.map */
