@charset "utf-8";

:root{
  --color-01: #3DA4C2;
  --color-01-deep: #2493B4;
  --color-02: #FBED3F;
  --color-line: #06C755;
  --hover-tr: .3s opacity ease;
  --hover-op: .6;
  --font-en:'Inter', sans-serif;
}
#senpai{
  position: relative;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #131313;
}
.marker{
  padding:0;
  line-height:2;
  background: radial-gradient(circle at calc(100% - 7px) calc(100% - 7px), var(--color-02) 7px, transparent 7px) ,
              radial-gradient(circle at 7px calc(100% - 7px), var(--color-02) 7px, transparent 7px) ,
              linear-gradient(to bottom, #fff calc(100% - 14px), transparent calc(100% - 14px)) ,
              linear-gradient(to right, transparent 7px, var(--color-02) 7px, var(--color-02) calc(100% - 7px), transparent calc(100% - 7px));
  display:inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
#senpai .line-btn{
  text-align: center;
}
#senpai .line-btn a{
  display: inline-block;
  position: relative;
  margin: 0 auto;
  border-color: var(--color-line);
  background-color: #fff;
  transition: var(--hover-tr);
}
#senpai .line-btn__ttl{
  font-weight: 700;
  color: var(--color-line);
}
#senpai .line-btn__text{
  text-align: left;
  font-weight: 700;
}
#senpai .ttl__sub.--about,
#senpai .ttl__sub.--start{
  color: var(--color-01);
  background-color: var(--color-02);
}
#senpai .ttl__sub.--voice{
  color: var(--color-02);
  background-color: var(--color-01);
}
#senapi .annotation{
  vertical-align: sub;
}
#senpai .ttl__main.--about,
#senpai .ttl__main.--start{
  color: #fff;
}
#senpai .num{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-01-deep);
  font-family: var(--font-en);
  font-weight: 900;
  color: var(--color-02);
}
.js-fadeUpTrigger{
  opacity: 0;
}
.js-fadeUp{
  animation: a-fadeUp 1s cubic-bezier(.215,.61,.355,1) forwards;
}
@keyframes a-fadeUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  50%{
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* #senpai .kv__bg{
  animation: a-js-appear-kv .5s linear forwards;
  animation-delay: .5s;
} */
/* #senpai .kv__logo{
  animation: a-js-appear-kv .5s linear forwards;
  animation-delay: 1s;
} */
/* #senpai .kv-text__main{
  animation: a-js-appear-kv .5s linear forwards;
  animation-delay: 2.5s;
} */
/* #senpai .kv-text__sub{
  animation: a-js-appear-kv .5s linear forwards;
  animation-delay: 2s;
} */
#senpai .line-btn.--kv,
#senapi .line-btn__balloon{
  animation: a-fadeUp-kv 1s cubic-bezier(.215,.61,.355,1) forwards;
  animation-delay: .5s;
}
@keyframes a-js-appear-kv {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes a-js-appear-kv-bg {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100%{
    display: none;
    opacity: 0;
  }
}
@keyframes a-fadeUp-kv {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  50%{
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.slide-in {
	overflow: hidden;
  display: inline-block;
}
.slide-in_inner {
	display: inline-block;
}

/*左右のアニメーション*/
.leftAnime,
.leftAnimeTtl{
    opacity: 0;
}
.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
  animation-delay: 1.3s;
    opacity: 0;
}
.slideAnimeLeftRightTtl {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
@keyframes slideTextX100 {
  from {
	transform: translateX(-100%);
        opacity: 0;
  }
  to {
	transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
  animation-delay: 1.3s;
    opacity: 0;
}
.slideAnimeRightLeftTtl {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ================================
PC
 ================================ */
@media screen and (min-width: 768px){

  #senpai{
    min-width: 960px;
  }
  #senpai .sp{
    display: none;
  }
  #senpai .inner{
    position: relative;
    margin: 0 auto;
    width: 90%;
    max-width: 1164px;
  }
  #senpai .ttl__sub{
    margin: 0 auto;
    padding: 11px 0;
    width: 450px;
    border-radius: 80px;
    font-size: 25px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.48;
  }
  #senpai .ttl__main{
    margin-top: 30px;
    font-size: 47px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.38;
  }
  #senpai .line-btn a{
    pointer-events: none;
  }

  /* kv */
  #senpai .kv{
    position: relative;
    /* padding: 117px 0 63px; */
    padding: 59px 0 132px;
    min-width: 960px;
    background-color: #FFFA70;
  }
  #senpai .kv__bg{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/kv_bg.png);
    /* background-size: auto 113%; */
    background-size: 110% auto;
    background-repeat: no-repeat;
    background-position: top -40px center;
  }
  #senpai .kv__logo{
    margin: 0 auto;
    width: 146px;
  }
  #senpai .kv__logo img{
    width: 100%;
  }
  #senpai .kv-text{
    /* margin-top: 44px; */
    margin-top: 30px;
    text-align: center;
  }
  #senpai .kv-text__main{
    /* font-size: 50px; */
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.48;
  }
  #senpai .kv-text__sub{
    /* margin-top: 10px; */
    margin-top: 7px;
    /* font-size: 23px; */
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.39;
  }
  #senpai .line-btn.--kv{
    /* margin-top: 60px; */
    margin-top: 46px;
    opacity: 0;
  }
  #senpai .line-btn.--kv a{
    /* padding: 20px 13px 5px 22px;
    border-width: 10px;
    border-radius: 40px; */
    padding: 8px 8px 8px 14px;
    border-width: 6px;
    border-radius: 27px;
  }
  #senpai .line-btn__balloon{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -44%;
    right: 320px;
    width: 61px;
    height: 66px;
    background-image: url(../images/balloon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.54;
    color: #fff;
    z-index: 1;
  }
  #senpai .line-btn__balloon div{
    margin-bottom: 7px;
  }
  #senpai .line-btn__row.--kv{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #senpai .line-btn__row.--kv:not(:last-of-type){
    margin-top: 1px;
  }
  #senpai .line-btn__icon.--kv{
    width: 38px;
  }
  #senpai .line-btn__ttl.--kv{
    margin-left: 12px;
    font-size: 18px;
    text-align: left;
    line-height: 1.07;
  }
  #senpai .line-btn__text.--kv{
    margin-top: 4px;
    margin-left: 12px;
    font-size: 9px;
    line-height: 1.54;
  }
  #senpai .line-btn__qr{
    width: 64px;
  }

  /* about */
  #senpai .about{
    padding: 120px 0 319px;
    background-color: var(--color-01);
  }
  #senpai .anchors{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 122px;
  }
  #senpai .anchor{
    width: calc(100% / 3 - 30px * 2 / 3);
  }
  #senpai .anchor a{
    display: block;
    position: relative;
    padding: 42px 0 49px;
    width: 100%;
    border-radius: 80px;
    background-color: #fff;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, .15);
    transition: var(--hover-tr);
  }
  #senpai .anchor .anchor__num{
    position: absolute;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 84px;
    height: 84px;
    font-size: 32px;
    letter-spacing: 0.04em;
  }
  #senpai .anchor .anchor__text{
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.45;
  }
  #senpai .anchor a:after{
    content: "";
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 37px;
    height: 24px;
    background-image: url(../images/icon_triangle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .5s ease;
  }
  /* contents */
  #senpai .contents{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 115px;
    margin-top: 131px;
  }
  #senpai .content{
    position: relative;
    padding: 50px 55px 64px;
    border-radius: 120px;
    background-color: #fff;
  }
  #senpai .content__num{
    position: absolute;
    left: 70px;
    transform: translateY(-80%);
    width: 170px;
    height: 170px;
    font-size: 65px;
    letter-spacing: 0.04em;
  }
  #senpai #content02 .content__num,
  #senpai #content03 .content__num{
    width: 155px;
    height: 155px;
    font-size: 62px;
  }
  #senpai .content__ttl{
    padding-top: 46px;
    padding-bottom: 38px;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: var(--color-02);
    font-size: 28px;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.64;
  }
  #senpai .content__bottom{
    margin-top: 26px;
  }
  #senpai .check{
    display: flex;
    align-items: center;
  }
  #senpai .check__ttl{
    font-family: var(--font-en);
    font-size: 28px;
    letter-spacing: 0.04em;
    color: var(--color-01);
  }
  #senpai .check__text{
    margin-top: 13px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.8;
  }
  #senpai .check__text.--n01{
    margin-top: 15px;
    font-size: 22px;
    line-height: 2;
  }
  #senpai .check__ill{
    position: relative;
    margin-left: 5%;
  }
  #senpai .check__ill img{
    width: 100%;
  }
  #senpai .check.--n02 .check__ill{
    flex-shrink: 0;
    margin-bottom: 9px;
    width: 90px
  }
  #senpai .check.--n03 .check__ill{
    flex-shrink: 0;
    right: -3%;
    width: 120px;
  }
  #senpai .sample{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 55px 55px 32px;
    width: 100%;
    min-height: 396px;
    border-radius: 60px;
    background-color: var(--color-01);
  }
  #senpai .check.--n01{
    display: block;
    position: relative;
    /* left: -86px; */
    margin-left: -97px;
    margin-right: 37px;
    padding: 49px 36px 52px 50px;
    /* width: 100%; */
    border-radius: 80px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, .16);
    background-color: #fff;
  }
  #senpai .sample.--n01-2{
    /* margin-top: -30px; */
    /* margin-left: calc(4% + 40px); */
  }
  #senpai .sample.--n01-2 .sample__movie > a{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  #senpai .sample.--n01-3{
    margin-top: 53px;
  }
  #senpai .sample.--n01-4{
    margin-top: 60px;
  }
  #senpai .modal-btn{
    margin-top: 28px;
    text-align: center;
  }
  #senpai .modal-btn a{
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 17px 0;
    width: 230px;
    max-width: 100%;
    border-radius: 50px;
    background-color: var(--color-02);
    font-size: 20px;
    letter-spacing: 0.05em;
    transition: var(--hover-tr);
  }
  #senpai .modal-btn .modal-btn__plus{
    position: absolute;
    top: 50%;
    right: 19px;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--color-01);
    transition: .3s all ease;
  }
  #senpai .modal-btn .modal-btn__plus:before{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 14px;
    border-radius: 10px;
    background-color: #fff;
  }
  #senpai .modal-btn .modal-btn__plus:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 4px;
    height: 14px;
    border-radius: 10px;
    background-color: #fff;
  }
  #senpai .sample__movie img{
    width: 100%;
  }
  #senpai .sample__img img{
    width: 100%;
  }

  #senpai .content.--n01{
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    padding: 50px 60px 77px;
  }
  #senpai .content__num.--n01{
    left: 100px;
  }
  #senpai .content__ttl.--n01{
    padding-top: 50px;
    padding-bottom: 48px;
    font-size: 36px;
  }
  #senpai .content__bottom.--n01{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 53px;
  }
  #senpai .content__bottom.--n01 .l-content__bottom{
    width: 47%;
  }
  #senpai .check__ttl.--n01{
    font-size: 30px;
  }
  #senpai .content.--n02{
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  #senpai .content.--n03{
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  /* m-sample */
  #senpai .m-sample{
    display: none;
    padding: 40px 50px;
    border-radius: 60px;
    background-color: #fff;
  }
  .modaal-container{
    width: 740px;
    height: 600px;
    border-radius: 60px;
  }
  .modaal-content-container{
    padding: 40px 50px 0;
    border-radius: 60px;
    width: 740px;
    height: 600px;
  }
  .modaal-video-wrap{
    margin: 0 auto;
    width: 770px;
  }
  .modaal-video-container{
    height: 434px;
  }
  .modaal-content + .modaal-close{
    position: absolute;
    top: -67px;
    right: -16px;
  }
  .modaal-video-wrap + .modaal-close{
    position: absolute;
    top: calc(50% - 281px);
    right: calc(50% - 397px);
  }
  .modaal-close:before{
    width: 5px;
    height: 30px;
    border-radius: 5px;
  }
  .modaal-close:after{
    width: 5px;
    height: 30px;
    border-radius: 5px;
  }
  .modaal-close:hover{
    background: transparent;
  }
  .modaal-close:hover:before{
    background: #fff;
  }
  .modaal-close:hover:after{
    background: #fff;
  }
  .m-sample__wrapper{
    margin-left: -7px;
    padding-right: 30px;
    width: 680px;
    height: 534px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #EBEBEB #fff;
    font-family: 'Zen Kaku Gothic New', sans-serif;
  }
  .m-sample__wrapper::-webkit-scrollbar{
    width: 7px;
  }
  .m-sample__wrapper::-webkit-scrollbar-track{
    border-radius: 7px;
    background-color: #fff;
  }
  .m-sample__wrapper::-webkit-scrollbar-thumb{
    border-radius: 7px;
    background: #EBEBEB;
  }
  .m-sample__ttl{
    padding: 19px 0 16px;
    border-radius: 50px;
    background-color: var(--color-01);
    font-size: 22px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
  }
  .m-sample__ttl .sp{
    display: none;
  }
  .m-sample__subttl{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 19px;
  }
  .m-sample__num{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-01-deep);
    font-family: var(--font-en);
    color: var(--color-02);
    width: 51px;
    height: 51px;
  }
  .m-sample__text{
    margin-left: 11px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-01);
  }
  .m-sample__text .sp{
    display: none;
  }
  .m-sample__img{
    margin: 18px auto 0;
    width: 312px;
  }
  .m-sample__img img{
    width: 100%;
  }
  .m-sample__movie{
    margin: 18px auto 0;
    width: 100%;
  }
  .m-sample__movie iframe{
    width: 100%;
  }
  .line-btn.--m-sample{
    margin-top: 28px;
  }
  .line-btn.--m-sample .sp{
    display: none;
  }
  .line-btn.--m-sample a{
    display: inline-block;
    position: relative;
    margin: 0 auto;
    border-color: var(--color-line);
    background-color: #fff;
    transition: var(--hover-tr);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 17px 10px 15px 17px;
    width: 512px;
    border-width: 10px;
    border-radius: 40px;
    pointer-events: none;
  }
  .line-btn__icon.--m-sample{
    width: 46px;
  }
  .line-btn__ttl.--m-sample{
    font-weight: 700;
    font-size: 20px;
    color: var(--color-line);
  }
  .line-btn__ttl.--m-sample span{
    text-decoration: underline;
  }
  .line-btn__text.--m-sample{
    text-align: left;
    font-weight: 700;
    margin-top: 7px;
    font-size: 12px;
    letter-spacing: -0.04em;
    line-height: 1.52;
  }
  .line-btn__qr.--m-sample{
    width: 66px;
  }

  /* voice */
  #senpai .voice{
    margin-top: -200px;
    padding: 119px 0 317px;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    background-color: var(--color-02);
  }
  #senpai .ttl__note{
    margin-top: 17px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  /* experiences */
  #senpai .experiences{
    margin-top: 193px;
  }
  #senpai .swiper-pagination,
  #senpai .swiper-button-prev,
  #senpai .swiper-button-next{
    display: none;
  }
  #senpai .experiences__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
  }
  #senpai .experience{
    position: relative;
    padding: 64px 40px 50px;
    width: 100%;
    border-radius: 70px;
    background-color: #fff;
  }
.js-fadeUpTriggerPc{
  opacity: 0;
}
.js-fadeUp-pc{
  animation: a-fadeUp-pc 1s cubic-bezier(.215,.61,.355,1) forwards;
}
@keyframes a-fadeUp-pc {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  50%{
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
  #senpai .experiences__list .experiences__item.js-fadeUp-pc:nth-of-type(2){
    animation-delay: .3s;
  }
  #senpai .experiences__list .experiences__item.js-fadeUp-pc:nth-of-type(3){
    animation-delay: .6s;
  }
  #senpai .experience img{
    position: absolute;
    top: -156px;
    left: 50%;
    transform: translateX(-50%);
    width: 192px;
  }
  #senpai .experience__ttl{
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.52;
    color: var(--color-01);
  }
  #senpai .experience__text{
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 1.56;
  }
  #senpai .voice__list{
    margin-top: 40px;
  }
  #senpai .voice__item{
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2.14;
  }

  /* start */
  #senpai .start{
    margin-top: -200px;
    padding: 86px 0 90px;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    background-color: var(--color-01);
  }
  #senpai .start__text{
    margin-top: 82px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.875;
    color: #fff;
  }
  #senpai .line-btn.--start a{
    margin-top: 45px;
    padding: 19px 19px 19px 28px;
    border-radius: 40px;
    border-width: 8px;
    width: 540px;
  }
  #senpai .line-btn__row.--start{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #senpai .line-btn__icon.--start{
    width: 57px;
  }
  #senpai .line-btn__ttl.--start{
    text-align: left;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  #senpai .line-btn__text.--start{
    margin-top: 5px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.28;
  }
  #senpai .line-btn__qr.--start{
    width: 73px;
  }
  #senpai .start__list{
    margin: 53px auto 0;
    width: 775px;
  }
  #senpai .start__item{
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.8;
    color: var(--color-02);
  }

  .band {
    height: 570px;
    position: relative;
  }
  .band.js-appear:before {
      content:"";
      display:block;
      position:fixed;
      top:0;
      left:0;
      z-index:-1;
      width:100%;
      height:100vh;
      background-repeat: no-repeat;
      background-position: center center;
      background-image:url("../images/bg_band.png");
      background-size: cover;
  }

  /* message */
  #senpai .message{
    position: relative;
    padding: 113px 0 160px;
    background-color: var(--color-02);
    background-image: url(../images/ill_message.png);
    background-size: 508px 502px;
    background-repeat: no-repeat;
    background-position: calc(50% - -424px) calc(100% + 82px);
  }
  #senpai .message .inner{
    width: 860px;
  }
  #senpai .message__ttl{
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 0.08em;
  }
  #senpai .message__ttl img{
    width: 380px;
  }
  #senpai .message__contents{
    margin-top: 62px;
  }
  #senpai .message__text{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.73;
  }
  #senpai .message__text:not(:first-of-type){
    margin-top: 38px;
  }

  /* floating */
  #senpai .floating{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    left: -150px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background-color: var(--color-line);
    box-shadow: 0 0 20px rgba(0, 0, 0, .05);
    transition: .5s all ease;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
  }
  #senpai .floating.js-appear{
    left: 30px;
    opacity: 1;
  }
  #senpai .floating:hover{
    opacity: var(--hover-op);
  }
  #senpai .floating__qr{
    display: block;
    margin: 5px auto 0;
    width: 80px;
  }
  #senpai .floating__text{
    position: relative;
    margin-top: 5px;
    font-size: 15px;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #fff;
  }
  #senpai .floating__text svg{
    position: absolute;
    top: 6px;
    right: -14px;
    width: 11px;
    transform: rotate(-90deg);
  }

  #senpai .end{
    position: fixed;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    margin-inline: auto;
    padding-top: 70px;
    padding-bottom: 76px;
    width: 68.83vw;
    border: 12px solid rgba(232, 233, 238, .95);
    background-color: rgba(255, 255, 255, .95);
    z-index: 11;
  }
  #senpai .end__textbox{
    text-align: center;
  }
  #senpai .end__text{
    font-size: 1.53vw;
    letter-spacing: 0.05em;
    line-height: 2.73;
    color: var(--color-01-deep);
  }
  #senpai .end__text:not(:first-of-type){
    margin-top: 26px;
  }
  #senpai .end__btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 48px;
    margin-inline: auto;
    padding-top: 24px;
    padding-bottom: 26px;
    padding-right: 12px;
    border-radius: 100px;
    width: 39.21%;
    background-color: #3DA4C2;
    font-size: 1.39vw;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
    color: #fff;
    transition: var(--hover-tr);
  }
  #senpai .end__btn a:hover{
    opacity: var(--hover-op);
  }
  #senpai .end__btn a:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 1.53vw;
    translate: 0 -50%;
    width: 0.76vw;
    height: 0.9vw;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS4yNSIgaGVpZ2h0PSIxNS40NjgiIHZpZXdCb3g9IjAgMCAxMS4yNSAxNS40NjgiPjxwYXRoIGQ9Ik02LjUsMS44YTEuNSwxLjUsMCwwLDEsMi40NzIsMGw0Ljg4Myw3LjFhMS41LDEuNSwwLDAsMS0xLjIzNiwyLjM1SDIuODUyQTEuNSwxLjUsMCwwLDEsMS42MTUsOC45WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuMjUpIHJvdGF0ZSg5MCkiIGZpbGw9IiNmZmYiLz48L3N2Zz4=");
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media screen and (min-width: 960px){
  #senpai .kv{
    padding: 6.13vw 0 14.38vw;
  }
  #senpai .kv__logo{
    width: 15.28vw;
  }
  #senpai .kv-text{
    margin-top: 3.06vw;
  }
  #senpai .kv-text__main{
    font-size: 4.44vw;
  }
  #senpai .kv-text__sub{
    margin-top: 0.69vw;
    font-size: 2.01vw;
  }
  
  #senpai .line-btn.--kv{
    margin-top: 4.83vw;
  }
  #senpai .line-btn.--kv a{
    padding: 0.83vw 0.9vw 0.83vw 1.53vw;
    border-width: 0.69vw;
    border-radius: 2.78vw;
    width: 41.28vw;
  }
  #senpai .line-btn__balloon{
    right: calc(50% - 12vw);
    width: 6.39vw;
    height: 7vw;
    font-size: 0.83vw;
  }
  #senpai .line-btn__icon.--kv{
    width: 4.03vw;
  }
  #senpai .line-btn__ttl.--kv{
    margin-left: 1.32vw;
    font-size: 1.88vw;
  }
  #senpai .line-btn__text.--kv{
    margin-top: 0.5vw;
    margin-left: 1.32vw;
    font-size: 0.9vw;
  }
  #senpai .line-btn__qr{
    width: 6.67vw;
  }
}
@media screen and (max-width: 1230px) and (min-width: 768px){
  #senpai #content02.content,
  #senpai #content03.content{
    padding: 44px 42px 62px;
  }
  #senpai #content02 .content__ttl,
  #senpai #content03 .content__ttl{
    padding-top: 40px;
    padding-bottom: 32px;
    font-size: 23px;
    letter-spacing: 0.05em;
  }
}


/* ================================
sp
 ================================ */
@media screen and (max-width: 767px){

  #senpai .pc{
    display: none;
  }

  #senpai .inner{
    position: relative;
    margin: 0 auto;
    width: 86.67vw;
  }

  #senpai .ttl__sub{
    margin: 0 auto;
    padding: 2.4vw 0;
    width: 73.33vw;
    border-radius: 80px;
    font-size: 4.13vw;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.39;
  }
  #senpai .ttl__main{
    margin-top: 4.4vw;
    font-size: 7.2vw;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.37;
  }

  /* kv */
  #senpai .kv .inner{
    width: 100%;
  }
  #senpai .kv{
    position: relative;
    padding: 33.67vw 0 64.67vw;
    background-color: #FFFA70;
  }
  #senpai .kv__bg{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/kv_bg_sp.png);
    background-size: 112% auto;
    background-repeat: no-repeat;
    background-position: center top -1vw;
  }
  #senpai .kv__logo{
    margin: 0 auto;
    width: 37.33vw;
  }
  #senpai .kv__logo img{
    width: 100%;
  }
  #senpai .kv-text{
    margin-top: 2.73vw;
    text-align: center;
  }
  #senpai .kv-text__main{
    font-size: 8.93vw;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.31;
  }
  #senpai .kv-text__sub{
    margin-top: 0.6vw;
    font-size: 4.27vw;
    font-weight: 900;
    line-height: 1.54;
  }
  #senpai .line-btn.--kv{
    margin-top: 7.47vw;
    opacity: 0;
  }
  #senpai .line-btn.--kv a{
    display: grid;
    grid-template-columns: 10vw 1fr;
    column-gap: 3.73vw;
    padding: 3.2vw 1.67vw 3.2vw 4.67vw;
    width: 85.33vw;
    border-width: 6px;
    border-radius: 27px;
  }
  #senpai .line-btn__balloon{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -34%;
    right: 8vw;
    width: 16.53vw;
    height: 18.13vw;
    background-image: url(../images/balloon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 2.53vw;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.37;
    color: #fff;
    z-index: 1;
  }
  #senpai .line-btn__balloon div{
    margin-top: -0.6vw;
  }
  #senpai .line-btn__row.--kv{
    display: contents;
  }
  #senpai .line-btn__icon.--kv{
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    margin-right: 3.73vw;
    width: 10vw;
  }
  #senpai .line-btn__ttl.--kv{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    font-size: 4.93vw;
    text-align: left;
  }
  #senpai .line-btn__ttl.--kv span{
    text-decoration: underline;
  }
  #senpai .line-btn__text.--kv{
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin-top: 0.5vw;
    font-size: 2.8vw;
    line-height: 1.71;
  }
  #senpai .kv__scroll{
    position: fixed;
    bottom: 4.33vw;
    left: 45%;
    width: 9.47vw;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    opacity: 0;
    animation: a-fadeUp-kv 1s cubic-bezier(.215,.61,.355,1) forwards,
    a-scroll-kv 1s ease-in-out infinite alternate;
    animation-delay: 3s;
    z-index: 1;
  }
  @keyframes a-scroll-kv {
    0%{
      bottom: 4.33vw;
    }
    100%{
      bottom: 2.5vw;
    }
  }
  #senpai .kv__scroll.js-hide{
    animation: a-scroll-kv-hide .3s ease forwards;
  }
  @keyframes a-scroll-kv-hide {
    0%{
      opacity: 1;
    }
    99%{
      opacity: 0;
    }
    100%{
      display: none;
    }
  }

  /* about */
  #senpai .about{
    padding: 16vw 0 36.67vw;
    background-color: var(--color-01);
  }
  #senpai .anchors{
    margin-top: 10.27vw;
  }
  #senpai .anchor{
    width: 100%;
  }
  #senpai .anchor:not(:first-of-type){
    margin-top: 5.33vw;
  }
  #senpai .anchor a{
    display: block;
    position: relative;
    padding: 2.8vw 0 2.8vw 3.2vw;
    width: 100%;
    border-radius: 80px;
    background-color: #fff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .15);
  }
  #senpai .anchor .anchor__num{
    position: absolute;
    top: 50%;
    left: 2.8vw;
    transform: translateY(-50%);
    width: 12vw;
    height: 12vw;
    font-size: 5.33vw;
    letter-spacing: 0.04em;
  }
  #senpai .anchor .anchor__text{
    text-align: center;
    font-size: 4vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.47;
  }
  #senpai .anchor a:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 4.8vw;
    transform: translateY(-50%);
    width: 4.93vw;
    height: 3.2vw;
    background-image: url(../images/icon_triangle.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  /* contents */
  #senpai .contents{
    margin-top: 22.13vw;
  }
  #senpai .content{
    position: relative;
    padding: 6.67vw 6.67vw 12vw;
    border-radius: 50px;
    background-color: #fff;
  }
  #senpai .content:not(:first-of-type){
    margin-top: 18.67vw;
  }
  #senpai .content__num{
    position: absolute;
    left: 6.67vw;
    transform: translateY(-80%);
    width: 22.67vw;
    height: 22.67vw;
    font-size: 8.67vw;
    letter-spacing: 0.04em;
  }
  #senpai .content__ttl{
    padding-top: 6.27vw;
    padding-bottom: 5.73vw;
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: var(--color-02);
    font-size: 4.8vw;
    text-align: center;
    letter-spacing: 0.07em;
    line-height: 1.61;
  }
  #senpai .content__bottom{
    display: flex;
    flex-direction: column;
    margin-top: 4.4vw;
  }
  #senpai .l-content__bottom{
    display: contents;
  }
  #senpai .check{
    display: flex;
    align-items: center;
  }
  #senpai .check.--n01{
    flex-direction: column;
    align-items: flex-start;
    order: 2;
  }
  #senpai .sample.--n01-2 .sample__movie > a{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  #senpai .check__ttl{
    font-family: var(--font-en);
    font-size: 5.2vw;
    letter-spacing: 0.04em;
    color: var(--color-01);
  }
  #senpai .check__text{
    margin-top: 1.87vw;
    font-size: 4vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.87;
  }
  #senpai .check__ill{
    position: relative;
    margin-left: 7vw;
  }
  #senpai .check__ill img{
    width: 100%;
  }
  #senpai .check.--n02 .check__ill{
    flex-shrink: 0;
    width: 17.33vw;
  }
  #senpai .check.--n03 .check__ill{
    flex-shrink: 0;
    margin-bottom: -8vw;
    width: 20.53vw;
  }
  #senpai .l-content__bottom:not(:first-of-type){
    margin-top: 6.67vw;
  }
  #senpai .sample{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8.67vw 7.33vw 5.6vw;
    width: 100%;
    border-radius: 37px;
    background-color: var(--color-01);
  }
  #senpai .sample.--n01-3{
    order: 3;
  }
  #senpai .sample.--n01-2{
    margin-top: 6.67vw;
    order: 2;
  }
  #senpai .sample.--n01-4{
    order: 4;
  }
  #senpai .sample:not(:first-of-type){
    margin-top: 6.67vw;
  }
  #senpai .modal-btn{
    margin-top: 4.67vw;
    text-align: center;
  }
  #senpai .modal-btn a{
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 3.07vw 0;
    width: 42.67vw;
    border-radius: 50px;
    background-color: var(--color-02);
    font-size: 4vw;
    letter-spacing: 0.05em;
  }
  #senpai .modal-btn .modal-btn__plus{
    position: absolute;
    top: 50%;
    right: 3.07vw;
    transform: translateY(-50%);
    width: 4.8vw;
    height: 4.8vw;
    border-radius: 50%;
    background-color: var(--color-01);
  }
  #senpai .modal-btn .modal-btn__plus:before{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.67vw;
    height: 1.87vw;
    border-radius: 10px;
    background-color: #fff;
  }
  #senpai .modal-btn .modal-btn__plus:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 0.67vw;
    height: 1.87vw;
    border-radius: 10px;
    background-color: #fff;
  }
  #senpai .sample__movie img{
    width: 100%;
  }
  #senpai .sample__img img{
    width: 100%;
  }

  /* m-sample */
  #senpai .m-sample{
    display: none;
    padding: 88vw 8.67vw;
    border-radius: 30px;
    background-color: #fff;
  }
  .modaal-inner-wrapper{
    padding: 0;
  }
  .modaal-container{
    width: 86.67vw;
    height: 132.33vw;
    border-radius: 30px;
  }
  .modaal-content-container{
    padding: 8vw 1.67vw 0 8.67vw;
    border-radius: 30px;
    width: 86.67vw;
    height: 132.33vw;
  }
  .modaal-video-wrap{
    margin: 0 auto;
    width: 86.67vw;
  }
  .modaal-video-container{
    height: 48.8vw;
  }
  .modaal-content + .modaal-close{
    position: absolute;
    top: -12.6vw;
    right: -3vw;
  }
  .modaal-video-wrap + .modaal-close{
    position: absolute;
    top: calc(50% - 41vw);
    right: 4vw;
  }
  .modaal-close:before{
    width: 1.2vw;
    height: 6.93vw;
    border-radius: 9px;
  }
  .modaal-close:after{
    width: 1.2vw;
    height: 6.93vw;
    border-radius: 9px;
  }
  .modaal-close:hover{
    background: transparent;
  }
  .modaal-close:hover:before{
    background: #fff;
  }
  .modaal-close:hover:after{
    background: #fff;
  }
  .m-sample__wrapper{
    margin-left: -2vw;
    padding-right: 4.07vw;
    width: 78.33vw;
    height: 120.33vw;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #EBEBEB #fff;
    font-family: 'Zen Kaku Gothic New', sans-serif;
  }
  .m-sample__wrapper::-webkit-scrollbar{
    width: 1.6vw;
  }
  .m-sample__wrapper::-webkit-scrollbar-track{
    border-radius: 7px;
    background-color: #fff;
  }
  .m-sample__wrapper::-webkit-scrollbar-thumb{
    border-radius: 7px;
    background: #EBEBEB;
  }

  .m-sample__ttl{
    padding: 1.87vw 0;
    border-radius: 60px;
    background-color: var(--color-01);
    font-size: 4.53vw;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
  }
  .m-sample__subttl{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4.13vw;
  }
  .m-sample__num{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-01-deep);
    font-family: var(--font-en);
    color: var(--color-02);
    margin-left: 0.67vw;
    width: 11.07vw;
    height: 11.07vw;
    font-size: 3.87vw;
    letter-spacing: 0.04em;
  }
  .m-sample__text{
    margin-left: 1.87vw;
    font-size: 4vw;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-01);
  }
  .line-btn.--m-sample .pc{
    display: none;
  }
  .m-sample__img{
    margin: 4vw auto 0;
    width: 64.8vw;
  }
  .m-sample__img img{
    width: 100%;
  }
  .m-sample__movie{
    margin: 9.33vw auto 0;
    width: 100%;
  }
  .m-sample__movie iframe{
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
  }
  .line-btn.--m-sample{
    margin-top: 5vw;
  }
  .line-btn.--m-sample.--n01{
    margin-top: 9.33vw;
  }
  .line-btn.--m-sample a{
    display: inline-block;
    place-items: center;
    position: relative;
    margin: 0 auto;
    border-color: var(--color-line);
    background-color: #fff;
    display: grid;
    grid-template-columns: 10vw 1fr;
    grid-template-rows: repeat(2, 1fr);
    column-gap: 3.73vw;
    padding: 3.2vw 3.67vw 3.2vw 4.67vw;
    border-width: 6px;
    border-radius: 27px;
  }
  .line-btn__icon.--m-sample{
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 9vw;
  }
  .l-line-btn.--m-sample{
    display: contents;
  }
  .line-btn__ttl.--m-sample{
    font-weight: 700;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    font-size: 3.1vw;
    text-align: left;
    color: var(--color-line);
  }
  .line-btn__ttl.--m-sample span{
    text-decoration: underline;
  }
  .line-btn__text.--m-sample{
    text-align: left;
    font-weight: 700;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    font-size: 2.2vw;
    line-height: 1.71;
  }

  /* voice */
  #senpai .voice{
    margin-top: -17.67vw;
    padding: 15.6vw 0 28.73vw;
    border-top-left-radius: 65px;
    border-top-right-radius: 65px;
    background-color: var(--color-02);
  }
  #senpai .ttl__note{
    margin-top: 2.53vw;
    text-align: center;
    font-size: 3.33vw;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.84;
  }
  /* experiences */
  #senpai .experiences{
    margin-top: 29.2vw;
  }
  #senpai .slider{
    position: relative;
    margin-top: -23.47vw;
    padding: 23.47vw 0 14.93vw;
    overflow: hidden;
  }
  #senpai .swiper-pagination{
    bottom: 2.5vw;
  }
  #senpai .swiper-pagination-bullet{
    margin: 0 1.67vw;
    width: 3.47vw;
    height: 3.47vw;
    background-color: #fff;
    opacity: 1;
  }
  #senpai .swiper-pagination-bullet-active{
    background-color: var(--color-01);
  }
  #senpai .swiper-button-prev{
    position: absolute;
    top: auto;
    bottom: 0;
    width: 10.53vw;
    height: 9.73vw;
  }
  #senpai .swiper-button-prev a{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
  }
  #senpai .swiper-button-prev:after{
    position: relative;
    left: -1vw;
    width: 100%;
    height: 100%;
    background-image: url(../images/icon_triangle_slider.svg);
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 0;
  }
  #senpai .swiper-button-next{
    position: absolute;
    top: auto;
    bottom: 0;
    transform: rotate(-180deg);
    width: 10.53vw;
    height: 9.73vw;
  }
  #senpai .swiper-button-next a{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
  }
  #senpai .swiper-button-next:after{
    position: relative;
    right: 1vw;
    width: 100%;
    height: 100%;
    background-image: url(../images/icon_triangle_slider.svg);
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 0;
  }

  #senpai .experience{
    position: relative;
    padding: 17.07vw 6.67vw 14.67vw;
    border-radius: 40px;
    background-color: #fff;
  }
  #senpai .experience img{
    position: absolute;
    top: -23.47vw;
    left: 50%;
    transform: translateX(-50%);
    width: 37.2vw;
  }
  #senpai .experience__ttl{
    font-size: 5.07vw;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.53;
    color: var(--color-01);
  }
  #senpai .experience__text{
    margin-top: 4.53vw;
    font-size: 3.73vw;
    letter-spacing: 0.08em;
    line-height: 1.82;
  }
  #senpai .voice__list{
    margin-top: 6.4vw;
  }
  #senpai .voice__item{
    font-size: 3.33vw;
    line-height: 1.84;
  }

  /* start */
  #senpai .start{
    margin-top: -17.67vw;
    padding: 15.6vw 0 18.73vw;
    border-top-left-radius: 65px;
    border-top-right-radius: 65px;
    background-color: var(--color-01);
  }
  #senpai .start__text{
    margin-top: 10.27vw;
    font-size: 4.53vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.85;
    color: #fff;
  }
  #senpai .line-btn.--start a{
    display: grid;
    grid-template-columns: 10vw 1fr;
    column-gap: 3.73vw;
    margin-top: 4.27vw;
    padding: 4.53vw 2.67vw 4.8vw 5.33vw;
    /* width: 84vw; */
    border-width: 6px;
    border-radius: 27px;
  }
  #senpai .line-btn__row.--start{
    display: contents;
  }
  #senpai .line-btn__icon.--start{
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 10.67vw;
  }
  #senpai .line-btn__ttl.--start{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    text-align: left;
    font-size: 4.8vw;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  #senpai .line-btn__ttl.--start span{
    text-decoration: underline;
  }
  #senpai .line-btn__text.--start{
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin-top: 1vw;
    font-size: 2.8vw;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.71;
  }
  #senpai .start__list{
    margin: 7.13vw auto 0;
  }
  #senpai .start__item{
    font-size: 3.73vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.78;
    color: var(--color-02);
  }

  .band {
    height: 63vw;
    position: relative;
  }
  .band.js-appear:before {
      content:"";
      display:block;
      position:fixed;
      top:0;
      left:0;
      z-index:-1;
      width:100%;
      height:100vh;
      background-repeat: no-repeat;
      background-position: center center;
      background-image:url("../images/bg_band_sp.png");
      background-size: cover;
  }

  /* message */
  #senpai .message{
    position: relative;
    padding: 15.87vw 0 17.47vw;
    background-color: var(--color-02);
  }
  #senpai .message .inner{
    width: 81vw;
  }
  #senpai .message__ttl{
    font-size: 7.33vw;
    font-weight: 900;
    letter-spacing: 0.05em;
  }
  #senpai .message__ttl img{
    display: block;
    margin-bottom: 3.47vw;
    width: 56.93vw;
  }
  #senpai .message__contents{
    margin-top: 9.33vw;
  }
  #senpai .message__text{
    font-size: 4vw;
    font-weight: 700;
    line-height: 1.8;
  }
  #senpai .message__text:not(:first-of-type){
    margin-top: 7.2vw;
  }

  /* floating */
  #senpai .floating{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 3vw;
    left: -23vw;
    width: 26vw;
    height: 26vw;
    border-radius: 50%;
    background-color: var(--color-line);
    box-shadow: 0 5px 12px rgba(0, 0, 0, .1);
    z-index: 10;
    transition: .5s all ease;
    opacity: 0;
  }
  #senpai .floating.js-appear{
    left: 3vw;
    opacity: 1;
  }
  #senpai .floating__text{
    position: relative;
    font-size: 4.6vw;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #fff;
  }
  #senpai .floating__text svg{
    display: block;
    position: absolute;
    top: 5.3vw;
    right: 0vw;
    width: 2.53vw;
    transform: rotate(-90deg);
  }

  #senpai .end{
    position: fixed;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    margin-inline: auto;
    padding-top: 10.07vw;
    padding-bottom: 10.33vw;
    width: 92vw;
    border: 2.13vw solid rgba(232, 233, 238, .95);
    background-color: rgba(255, 255, 255, .95);
    z-index: 11;
    z-index: 11;
  }
  #senpai .end__textbox{
    text-align: center;
  }
  #senpai .end__text{
    font-size: 4vw;
    letter-spacing: 0.03em;
    line-height: 1.87;
    color: var(--color-01-deep);
  }
  #senpai .end__text:not(:first-of-type){
    margin-top: 5.4vw;
  }
  #senpai .end__btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 7.33vw;
    margin-inline: auto;
    padding-top: 5.13vw;
    padding-bottom: 5.8vw;
    padding-right: 1vw;
    border-radius: 100px;
    width: 73.33vw;
    background-color: #3DA4C2;
    font-size: 3.86vw;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
    color: #fff;
  }
  #senpai .end__btn a:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 3.2vw;
    translate: 0 -50%;
    width: 2vw;
    height: 3vw;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS4yNSIgaGVpZ2h0PSIxNS40NjgiIHZpZXdCb3g9IjAgMCAxMS4yNSAxNS40NjgiPjxwYXRoIGQ9Ik02LjUsMS44YTEuNSwxLjUsMCwwLDEsMi40NzIsMGw0Ljg4Myw3LjFhMS41LDEuNSwwLDAsMS0xLjIzNiwyLjM1SDIuODUyQTEuNSwxLjUsMCwwLDEsMS42MTUsOC45WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTEuMjUpIHJvdGF0ZSg5MCkiIGZpbGw9IiNmZmYiLz48L3N2Zz4=");
    background-size: contain;
    background-repeat: no-repeat;
  }


}