@charset "UTF-8";

.main-container {
  background-color: var(--base-color);
  height: calc(100vh - 64px);
}

/* 波線背景 */
.wrap {
  position: relative;
}

.wave-back {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  /* 追加 */
  position: relative;
  height: 200px;
}

.wave-back svg {
  /* position: relative;
  width: calc(100% + 1.3px);
  height: 100px; */

  display: block;
  z-index: 2;
  transform: rotateY(180deg);
  /* 追加 */
  position: absolute;
  top: 30px;
  left: -34%;
  width: calc(134% + 1.3px);
  height: 170px;
}

.wave-back .shape-fill {
  fill: #FFFFFF;
}

.content-wrapper {
  padding-top: 35px;
  height: 60vh;
  width: 75%;
  margin: 0 auto;
}

/* 遷移サークル */
.circle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
}

.new-circle {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 250px;
  width: 250px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.update-circle {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 250px;
  width: 250px;
  border: 3px solid #fff;
  background-color: #fff;
  border-radius: 50%;
}


.circle-text {
  font-size: 23px;
  text-align: center;
  font-weight: 300;
}

/* 三角アイコン白 */
.decoration-white,
.decoration-white::before,
.decoration-white::after{
  width: 11px;
  height: 11px;
  background: #fff;
}
.decoration-white::before,
.decoration-white::after {
  content: "";
  position: absolute;
}
.decoration-white {
  margin-right: 15px;
  position: relative;
  border-top-left-radius: 45%;
  transform: rotate(0deg) skewY(30deg) scaleX(.86666);
}
.decoration-white::before {
  border-top-right-radius: 45%;
  transform: skewX(-45deg) translateX(50%);
}
.decoration-white::after {
  border-bottom-left-radius: 45%;
  transform: skewY(-45deg) translateY(50%);
}

/* 三角アイコン */
.decoration,
.decoration::before,
.decoration::after{
  width: 11px;
  height: 11px;
  background: var(--base-color);
}
.decoration::before,
.decoration::after {
  content: "";
  position: absolute;
}
.decoration {
  margin-right: 15px;
  position: relative;
  border-top-left-radius: 45%;
  transform: rotate(0deg) skewY(30deg) scaleX(.86666);
}
.decoration::before {
  border-top-right-radius: 45%;
  transform: skewX(-45deg) translateX(50%);
}
.decoration::after {
  border-bottom-left-radius: 45%;
  transform: skewY(-45deg) translateY(50%);
}