@charset "UTF-8";

/* 共通 */
.cpbtn {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.cpbtn__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 24px;
  text-align: center;
  background-color: #FF9900;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.b_shadow{
  box-shadow: 0px 2px 4px 0px gray;
}
/************************ 下記　hp1に追記内容　ここから ************************/
.cta_block{
  display: flex;
  justify-content: space-evenly;
  margin: 0 90px;
}
.cpbtn_01 {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  width: 300px;
}

.cpbtn_01 .cpbtn__btn_01 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 22px;
  text-align: center;
  background-color: #FF9900;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.cpbtn_01 .cpbtn__btn_y {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 22px;
  text-align: center;
  background-color: #F6F936;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.cpbtn_01 .cpbtn__btn_y .btn_y_wrap{
  display: flex;
  align-items: center;
  line-height: 0;
  gap: 15px;
}
.cpbtn_01 .cpbtn__btn_y .btn_y_yen{
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .cta_block{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cpbtn_01{
    margin-top: 40px;
  }
}
@media screen and (max-width: 999px) {
  .cta_block{
    margin: 0 30px;
  }
}

/************************ 下記　hp1に追記内容　ここまで ************************/
@media screen and (max-width: 767px) {
  .cpbtn__btn, .cpbtn_01 {
    font-size: 14px;
  }
}
.cpbtn__btn:hover {
  opacity: 0.7;
  gap: 32px;
  padding-left: 22px;
}
/* .cpbtn__btn::before{
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(135deg);
} */
.cpbtn__btn_01:hover {
  opacity: 0.7;
  gap: 32px;
  padding-left: 22px;
}
.cpbtn__btn_y:hover{
  opacity: 0.7;
  gap: 32px;
  padding-left: 22px;
}


/* パーツ */
.cptop {
  width: 100%;
  position: relative;
}

.cptop__arr {
  width: 100vw;
  height: 700px;
  background-image: url("../images/bg_cvtop2-arr.svg");
  background-size: cover; 
  background-position: top center;
  position: absolute;
  animation-name: updownAnime;
  animation-duration:6s;
  /* animation-delay: 7s; */
  
}

@keyframes updownAnime{
  0% {
    margin-top: 1000px;
  }

  100% {
    margin: 0;
  }
}

.cptop .sec-ttl {
  color: #fff;
}

.cptop .sec-ttl::after {
  background: #fff;
}

.cptop__box {
  display: flex;
  gap: 40px;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .cptop__box {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  .cptop__img {
    width: 50%;
  }
}

.cptop__img {
  border-radius: 50%;
  position: relative;
  z-index: 3;
  animation-name: rollingAnime;
  animation-duration:5s;
  animation-iteration-count: infinite;
}

@keyframes rollingAnime{
  0% {
   transform: rotate(-10deg);
  }

  25% {
   transform: rotate(5deg); 
  }
  100% {
    transform: rotate(-10deg);
  }
}

.cptop__checks {
  padding: 20px;
  background-color: #fff;
}

.cppre {
  background-color: #f4f9ff;
}

.cppre__card {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}

.cppre__card.-re {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .cppre__card {
    flex-direction: column-reverse !important;
  }
  .cppre__card {
    margin-top: 30px;
  }
}

.cppre__texts {
  padding: 0px 20px 20px;
  max-width: 512px;
}

.cppre__count {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  background-color: #36a0f9;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  color: #fff;
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.cppre__ttl {
  margin-top: 40px;
  font-size: 28px;
  color: #001350;
  padding-bottom: 12px;
  border-bottom: 1px solid #001350;
}

.cppre__fir {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  margin-left: -20px;
  margin-bottom: 20px;
}

.cppre__fir::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  border-top: 2px solid #001350;
  transform: rotate(60deg);
  margin-bottom: -12px;
}

.cppre__fir:after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  border-top: 2px solid #001350;
  transform: rotate(-60deg);
  margin-bottom: -12px;
  margin-left: -4px;
}
.cppre__acc {
  color: #36a0f9;
}

.cppre__ex {
  font-size: 20px;
  margin-top: 20px;
}

.cppre__mark {
  background: linear-gradient(transparent 50%, #DDECFB 50%);
}

.cppre__img {
  max-width: 50%;
}

@media screen and (max-width: 768px) {
  .cppre__img {
    max-width: 100%;
  }
  .cppre__img img {
    width: 100%;
  }
  .cppre__ttl {
    font-size: 20px;
  }
  .cppre__fir {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .cppre__fir::before {
    width: 20px;
    height: 30px;
    border-top: 1px solid #001350;
  }
  .cppre__fir::after {
    width: 20px;
    height: 30px;
    border-top: 1px solid #001350;
  }
}

/* 重いのでslickからcssアニメーションに変更 */
.prewo {
  position: relative;
  height: calc(220px + 20vw);
  width: 400vw;
  overflow-x: hidden;
}

.prewo:hover .prewo__list {
  animation-play-state: paused;
}

.prewo__list {
  position: absolute;
  top: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  width: 400vw;
  padding-right: 200vw;
  animation-name: woAni;
  animation-duration:12s;
  animation-iteration-count: infinite;
  animation-timing-function:cubic-bezier(0.1,1,0.8,0);;
  }

.prewo__list.-ura {
  padding-right: 0;
  padding-left: 200vw;
}

.prewo__list .hover_01 {
  transition: transform .3s ease;
  -webkit-transition: transform .3s ease;
}
.prewo__list .hover_01:hover {
  transform: scale(1.2,1.2);
}
.prewo__item {
  width: 24vw;
}

/* スライドレールの枠 */
.wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 525px;
}
/* content4つをまとめたスライドブロック */
.slideshow {
  display: flex;
  -webkit-animation: loop-slide 20s infinite linear 1s both;
  animation: loop-slide 20s infinite linear 1s both;
}
@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ホバー時に動きを止める（パターン2・3）*/
.slide-paused:hover .slideshow {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
/* ホバー時の装飾（パターン3） */
.content-hover {
  transition: all 0.2s;
  margin-right: 20px;
}
/* .content-hover:hover {
  transform: translateY(-20px);
  cursor: pointer;
  transform: scale(1.2);
} */

@media screen and (max-width: 999px) {
  .wrap {
    height: 350px;
  }
}
@media screen and (max-width: 768px){
  .wrap {
    height: 500px;
  }
}
@media screen and (max-width: 439px){
  .wrap {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {

  .prewo__list {
    width: 800vw;
    padding-right: 400vw;
    animation-name: woAniSp;
  }
  .prewo__list.-ura {
    padding-right: 0;
    padding-left: 400vw;
  }
  .prewo__item {
    width: 48vw;
  }
}


@keyframes woAni {
  0% {
    transform: translateX(0vw);
  }
  12.5% {
    transform: translateX(-25vw); 
  }
  25% {
    transform: translateX(-50vw);
  }
  37.5% {
    transform: translateX(-75vw); 
  }
  50%{
    transform: translateX(-100vw);
  }
  62.5% {
    transform: translateX(-125vw); 
  }
  75%{
    transform: translateX(-150vw);
  }
  87.5% {
    transform: translateX(-175vw); 
  } 
  100% {
    transform: translateX(-200vw);
  }
}

@keyframes woAniSp {
  0% {
    transform: translateX(0vw);
  }
  12.5% {
    transform: translateX(-50vw); 
  }
  25% {
    transform: translateX(-100vw);
  }
  37.5% {
    transform: translateX(-150vw); 
  }
  50%{
    transform: translateX(-200vw);
  }
  62.5% {
    transform: translateX(-250vw); 
  }
  75%{
    transform: translateX(-300vw);
  }
  87.5% {
    transform: translateX(-350vw); 
  } 
  100% {
    transform: translateX(-400vw);
  }
}


/* =====無駄にアニメーション */
.cpfea__ani01{
  animation-name: feAni01;
  animation-duration:12s;
  animation-iteration-count: infinite; 
}

@keyframes feAni01 {
  0% {
    transform: rotate(-45deg);
    opacity: 0.7;
  }
  17% {
    opacity: 1;
    transform: rotate(0);
  }
}

.cpfea__ani02{
  animation-name: feAni02;
  animation-duration:12s;
  animation-iteration-count: infinite; 
}

@keyframes feAni02 {
  16%{
    opacity: 1;
    transform: scale(1);
  }
  17% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  34% {
    opacity: 1;
    transform: scale(1);
  }
}

.cpfea__ani03{
  animation-name: feAni03;
  animation-duration:12s;
  animation-iteration-count: infinite; 
}

@keyframes feAni03 {
  33%{
    opacity: 1;
    transform: scale(1) translateX(0);
  }
  37% {
    transform: scale(0.5) translate(20%, 20%);
    opacity: 0.7;
  }
  54% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

.cpfea__ani04{
  animation-name: feAni04;
  animation-duration:12s;
  animation-iteration-count: infinite; 
}

@keyframes feAni04 {
  50%{
    opacity: 1;
    transform: scale(1) translateX(0);
  }
  51% {
    transform: scale(1) translateX(-40%);
    opacity: 0.7;
  }
  67% {
    transform: scale(1) translateX(40%);
    opacity: 0.7;
  }
  70% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

.cpfea__ani05{
  animation-name: feAni05;
  animation-duration:12s;
  animation-iteration-count: infinite; 
}

@keyframes feAni05 {
  68%{
    opacity: 1;
    transform: scale(1);
  }
  69% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  84% {
    opacity: 1;
    transform: scale(1);
  }
}

.cpfea__ani06{
  animation-name: feAni06;
  animation-duration:12s;
  animation-iteration-count: infinite; 
}

@keyframes feAni06 {
  84%{
    opacity: 1;
    transform: scale(1) rotate(0);
  }
  85% {
    transform: scale(1) rotate(-45deg);
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

/* フォームの上のマージン */
.sepper.-cp {
  margin-top: 40px;
}

/* 携帯時のiframeの高さの調整 */
@media screen and (max-width: 768px) {
  .sepper__box--2.-cptwo iframe {
    height: 710px !important;
  }
}

/* フェードイン */
.fadein {
  opacity: 0;
  transition: opacity 1s;
  position: relative;
  overflow-x: hidden;
}
.fadein::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #36a0f9;
  /* opacity: 1;
  transition: opacity 2s; */
  transform: translateX(0%);
  transition-duration: 0.5s;
}
.fadein.is-active {
  opacity: 1;
}

.fadein.is-active::before {
  /* opacity: 0; */
  transform: translateX(100%);
}

.fade {
  opacity: 0;
  transition: opacity 0.7s;
  transform: scale(1, 2);
  transition-duration: 1s;
}

.fade.is-active {
  opacity: 1;
  /* transform: scale(1); */
}