@charset "utf-8";

/*============================
共通
============================*/
.sec_title {
  font-size: 0.4rem;
  font-weight: bold;
  line-height: 1.5;
}

.sec_title span {
  position: relative;
}

.sec_title span::before {
  content: "";
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  background: #fed321;
  width: 2.2rem;
  height: 0.07rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease-out;
}

.sec_title span.show::before {
  transform: scaleX(1);
}
/*============================
ヘッダー
============================*/
header {
  transition: transform 0.5s 0.3s;
}

@media screen and (max-width: 640px) {
  header {
    /* スマホ用の記述 */
  }
}

/* --------- 以下、必要に応じて有効化 ---------- */

/* ヘッダーが上に消える
header.hide {
	transform: translateY(-1.50rem);
}
 */

 #logo {
  position: fixed;
  top: 0.2rem;
  left: 0.2rem;
  width: 0.6rem;
  z-index: 100;
 }
 @media screen and (max-width: 640px) {
  #logo {
    top: 0.1rem;
    left: 0.1rem;
    width: 0.5rem;
  }
 }
/*============================
横スクロール用（GSAP）
============================*/
body {
  overflow-x: hidden;
}

main {
  display: flex;
  /* 横に並べる */
  overflow: hidden;
  will-change: transform;
}

main > section {
  height: 100vh;
  width: 100vw;
  flex: 0 0 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* スマホのときは通常の縦スクロール */
@media screen and (max-width: 640px) {
  main {
    display: block;
    overflow: visible;
    will-change: auto;
  }

  main > section {
    height: auto;
    width: 100%;
    flex: none;
    min-height: 100vh;
  }
}

section {
  background: linear-gradient(transparent, #2e2e2e29);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  section {
    background: none;
  }
  body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, #2e2e2e29);
    z-index: -1;
  }
}

/* スクロールで表示された状態
header.scr {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
 */



.deco_01 {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(53, 176, 236, 0.8),
    rgba(153, 216, 247, 0.5)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

.deco_02 {
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

.deco_03 {
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

.deco_04 {
  position: absolute;
  bottom: 1.5rem;
  right: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(53, 176, 236, 0.8),
    rgba(153, 216, 247, 0.5)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

.deco_05 {
  position: absolute;
  top: 2.5rem;
  right: 1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

.deco_06 {
  position: absolute;
  top: 3.5rem;
  left: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}


.deco_01,
.deco_02,
.deco_03,
.deco_04,
.deco_05,
.deco_06 {
  pointer-events: none; /* クリックを邪魔しないように */
  
  /* GSAPで制御するためCSSアニメーションは切る */
  transition: none;
  
  /* 初期状態で非表示 */
  opacity: 0;
}

.account_cta_pc {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: -0.12rem;
  width: 0.8rem;
  z-index: 100;
}
.account_cta_pc a:hover {
  opacity: 0.8;
}

.account_cta_sp {
  position: fixed;
  bottom: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 3rem;
  width: 100%;
  z-index: 100;
}
/*============================
MV
============================*/
#mv {
  position: relative;
}

#mv .logo {
  position: absolute;
  top: -0.30rem;
  left: 0;
  width: 100%;
  height: auto;
}
#mv .logo img {
  width: 100%;
  z-index: -1;
}

#mv .bg_img {
  z-index: 1;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 640px) {
  #mv .bg_img {
    height: auto;
  }
}

#mv .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mv .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
  max-width: 5.2rem;
  z-index: 10;
}
#mv .text .user {
  font-size: 0.22rem;
  font-weight: 900;
  text-align: center;
  margin-top: 0.1rem;
  color: #35B0EC;
}
#mv .text .user span {
  font-size: 0.3rem;
  font-weight: 900;
  color: #35B0EC;
   display: inline-block;
   padding: 0 0.05rem;
}
@media screen and (max-width: 640px) {
  #mv .text {
    top: auto;
    top: 1rem;
    right: 0;
    transform: none;
    text-align: center;
  }
}

#mv .btn_wrap {
  max-width: 5rem;
  margin: 1rem auto 0;
}

#mv .btn_wrap a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 0.25rem;
  font-weight: bold;
  background: #35b0ec;
  color: #fff;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  padding: 0.35rem 0.2rem;
  border-radius: 0.5rem;
  border: 1px solid #35b0ec;
  position: relative;
  text-align: center;
}

#mv .btn_wrap  a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
  width: 0.07rem;
  height: 0.12rem;
  background: url(../img/btn_arrow_wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.3s ease;
}

#mv .btn_wrap  a:hover {
  background: #35b0ec;
  color: #fff;
  opacity: 0.7;
}

#mv .btn_wrap  a:after {
  background: url(../img/btn_arrow_blue.svg);
}

#mv .btn_wrap  a {
  background: #ffffff;
  color: #35b0ec;
}

#mv .btn_wrap  a:hover:after {
  background: url(../img/btn_arrow_blue.svg);
}

#mv .btn_wrap a:hover {
  background: #35b0ec;
  color: #fff;
}

#mv .btn_wrap a:hover:after {
  background: url(../img/btn_arrow_wh.svg);
}

/*============================
CTA PC
============================*/
#cta {
  position: fixed;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

#cta.show {
  opacity: 1;
  pointer-events: auto;
}
#cta .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

#cta .list .item {
  max-width: 4rem;
  width: 100%;
  text-align: center;
}

#cta .list .item a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 0.2rem;
  font-weight: bold;
  background: #35b0ec;
  color: #fff;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  padding: 0.3rem 0.2rem;
  border-radius: 0.5rem;
  border: 1px solid #35b0ec;
  position: relative;
}

#cta .list .item a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
  width: 0.07rem;
  height: 0.12rem;
  background: url(../img/btn_arrow_wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.3s ease;
}

#cta .list .item a:hover {
  background: #fff;
  color: #35b0ec;
  opacity: 0.7;
}

#cta .list .item:nth-child(2) a:after {
  background: url(../img/btn_arrow_blue.svg);
}

#cta .list .item:nth-child(2) a {
  background: #ffffff;
  color: #35b0ec;
}

#cta .list .item a:hover:after {
  background: url(../img/btn_arrow_blue.svg);
}

#cta .list .item:nth-child(2) a:hover {
  background: #35b0ec;
  color: #fff;
}

#cta .list .item:nth-child(2) a:hover:after {
  background: url(../img/btn_arrow_wh.svg);
}

/*============================
リード
============================*/
#lead {
  position: relative;
}
/* #lead .deco_01 {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(53, 176, 236, 0.8),
    rgba(153, 216, 247, 0.5)
  );
  animation: float 3s ease-in-out infinite;
  animation-delay: 0s;
}

#lead .deco_02 {
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  animation: float 3.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

#lead .deco_03 {
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  animation: float 2.5s ease-in-out infinite;
  animation-delay: 1s;
}

#lead .deco_04 {
  position: absolute;
  bottom: 1.5rem;
  right: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(53, 176, 236, 0.8),
    rgba(153, 216, 247, 0.5)
  );
  animation: float 3.2s ease-in-out infinite;
  animation-delay: 0.3s;
}

#lead .deco_05 {
  position: absolute;
  top: 2.5rem;
  right: 1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  animation: float 2.8s ease-in-out infinite;
  animation-delay: 0.7s;
}

#lead .deco_06 {
  position: absolute;
  top: 3.5rem;
  left: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  animation: float 3.3s ease-in-out infinite;
  animation-delay: 1.2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.3rem);
  }
} */
#lead .text {
  font-size: 0.5rem;
  text-align: center;
  line-height: 1.8;
  font-weight: 900;
}
@media screen and (max-width: 640px) {
  #lead .text {
    font-size: 0.3rem;
  }
}
#lead .text .line {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.2rem);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#lead .text .line.show {
  opacity: 1;
  transform: translateY(0);
}

/*============================
ph01
============================*/
#ph01 {
  position: relative;
}

#ph01 .deco_01 {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(53, 176, 236, 0.8),
    rgba(153, 216, 247, 0.5)
  );
  animation: float 3s ease-in-out infinite;
  animation-delay: 0s;
}

#ph01 .deco_02 {
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  animation: float 3.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

#ph01 .deco_03 {
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  animation: float 2.5s ease-in-out infinite;
  animation-delay: 1s;
}

#ph01 .deco_04 {
  position: absolute;
  bottom: 1.5rem;
  right: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(53, 176, 236, 0.8),
    rgba(153, 216, 247, 0.5)
  );
  animation: float 3.2s ease-in-out infinite;
  animation-delay: 0.3s;
}

#ph01 .deco_05 {
  position: absolute;
  top: 2.5rem;
  right: 1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  animation: float 2.8s ease-in-out infinite;
  animation-delay: 0.7s;
}

#ph01 .deco_06 {
  position: absolute;
  top: 3.5rem;
  left: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  animation: float 3.3s ease-in-out infinite;
  animation-delay: 1.2s;
}

#ph01 .ph_wrap {
  position: absolute;
  opacity: 0;
  transform: scale(0);
}

#ph01 .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#ph01 .ph_wrap.ph01 {
  bottom: 0.6rem;
  left: 15%;
  max-width: 3.37rem;
  height: 2.15rem;
  z-index: 1;
}

#ph01 .ph_wrap.ph02 {
  top: 0.8rem;
  left: 20%;
  max-width: 4.7rem;
  height: 3rem;
  z-index: 1;
}

#ph01 .ph_wrap.ph03 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 8rem;
  height: 5.5rem;
  z-index: 2;
}

#ph01 .ph_wrap.ph04 {
  bottom: 1rem;
  right: 10%;
  max-width: 4.7rem;
  height: 2.9rem;
  z-index: 4;
}

/*============================
課題
============================*/
#kadai {
  position: relative;
}

#kadai .deco_01 {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(53, 176, 236, 0.8),
    rgba(153, 216, 247, 0.5)
  );
  transform-origin: center center;
}

#kadai .deco_02 {
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  transform-origin: center center;
}

#kadai .deco_03 {
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  transform-origin: center center;
}

#kadai .deco_04 {
  position: absolute;
  bottom: 1.5rem;
  right: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(53, 176, 236, 0.8),
    rgba(153, 216, 247, 0.5)
  );
  transform-origin: center center;
}

#kadai .deco_05 {
  position: absolute;
  top: 2.5rem;
  right: 1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  transform-origin: center center;
}

#kadai .deco_06 {
  position: absolute;
  top: 3.5rem;
  left: 1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  transform-origin: center center;
}

#kadai .cont_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.6rem;
}

#kadai .cont_wrap .sec_title {
  font-size: 0.46rem;
  margin-top: 2rem;
}

#kadai .list .item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

#kadai .list .item:nth-child(2) {
  margin-left: 0.5rem;
}

#kadai .list .item:nth-child(3) {
  margin-left: -0.8rem;
}

#kadai .list .item .ph_wrap {
  width: 2.8rem;
  height: 1.8rem;
  border-radius: 0.1rem;
  overflow: hidden;
}

#kadai .list .item .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#kadai .list .item .text_wrap {
  width: calc(100% - 2.8rem);
  padding-left: 0.2rem;
  box-sizing: border-box;
}

#kadai .list .item .text_wrap .feat {
  font-size: 0.1rem;
  font-weight: bold;
  line-height: 1.5;
}

#kadai .list .item .text_wrap .feat span {
  position: relative;
}

#kadai .list .item .text_wrap .feat span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -0.76rem;
  width: 0.66rem;
  height: 0.01rem;
  background: #35b0ec;
}

#kadai .list .item .text_wrap .list_title {
  font-size: 0.3rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 0.1rem;
  margin-bottom: 0.15rem;
}

#kadai .list .item .text_wrap .text_list .text_item {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 2;
  position: relative;
  padding-left: 0.2rem;
}

#kadai .list .item .text_wrap .text_list .text_item::before {
  content: "●";
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  color: #35b0ec;
  left: 0;
  font-size: 0.12rem;
}

/*============================
ph02
============================*/
#ph02 {
  position: relative;
}

#ph02 .ph_wrap {
  position: absolute;
  width: 9.6rem;
  height: 5.4rem;
  top: 50%;
  left: 50%;
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

#ph02 .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*============================
kinou
============================*/
#kinou {
  position: relative;
}


#kinou .cont_wrap {
  display: flex;
  flex-wrap: wrap;
  height: 6rem;
}

#kinou .ph_wrap {
  /* width: 4.7rem; */
  /* height: 3rem; */
  /* max-width: 3.4rem; */
  width: calc(100% - 5.6rem);
  overflow: hidden;
  border-radius: 0.1rem;
  position: relative;
  box-sizing: border-box;
}

#kinou .ph_wrap > div {
  display: none;
  padding-left: 0.6rem;
}


#kinou .ph_wrap > div.active {
  display: block;
  margin-top: 0.8rem;
}

#kinou .ph_wrap > div.ph_01.active {
  max-width: 3.4rem;
  padding-left: 1.5rem;
  margin-top: 0;
}


#kinou .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#kinou .text_wrap {
  width: 100%;
  max-width: 5.2rem;
}

#kinou .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.6rem;
}

#kinou .list .item {
  font-size: 0.2rem;
  font-weight: 900;
  line-height: 1.5;
  width: 48%;
  background: #fff;
  margin-bottom: 0.15rem;
  box-sizing: border-box;
  padding: 0.15rem 0 0.15rem 0.4rem;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
}

#kinou .list .item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.2rem;
  transform: translateY(-50%);
  width: 0.08rem;
  height: 0.08rem;
  background: #c6d501;
  border-radius: 50%;
}

#kinou .list .item.active::before {
  background: #fff;
}

#kinou .list .item.line {
  width: 100%;
  padding-left: 1.55rem;
  background: #00b900;
  color: #fff;
}

#kinou .list .item.line.active {
  background: #35B0EC;
  color: #fff;
}

#kinou .list .item.line span {
  position: absolute;
  top: 54%;
  left: 0.4rem;
  transform: translateY(-50%);
  max-width: 1.1rem;
}

#kinou .list .item.active {
  background: #35B0EC;  
  color: #fff;
}

/*============================
voice
============================*/
#voice {

}

#voice .sec_title {
  text-align: center;
  margin-bottom: 0.6rem;
  padding-top: 0.2rem;
}

#voice .slider {
  background: #f0f0f0;
  padding: 0.3rem;
  box-sizing: border-box;
}

#voice .slider .slick-slide {
  margin: 0 0.2rem;
}

#voice .slider .slide {
  width: 48%;
  background: #fff;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.1rem;
  overflow: hidden;
  margin-bottom: 0.15rem;
}

#voice .slider .slide .ph_wrap {
  width: 100%;
  height: 3rem;
}

#voice .slider .slide .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#voice .slider .slide .text_wrap {
  padding: 0.15rem 0.3rem 0.2rem;
  box-sizing: border-box;
}

#voice .slider .slide .text_wrap .tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.1rem;
  margin-bottom: 0.15rem;
}

#voice .slider .slide .text_wrap .tag_list .tag_item {
  font-size: 0.12rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.05rem 0.1rem;
  border-radius: 0.05rem;
  color: #35b0ec;
  background: #fff;
}

#voice .slider .slide .text_wrap .tag_list .tag_item.blue {
  background: #35b0ec;
  color: #fff;
}


#voice .slider .slide .text_wrap .tag_list .tag_item.yellow {
  background: #bcc718;
  color: #fff;
}

#voice .slider .slide .text_wrap .silde_title {
  font-size: 0.18rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.15rem;
}

#voice .slider .slide .text_wrap .text {
  font-size: 0.14rem;
  line-height: 2;
  margin-bottom: 0.15rem;
}
#voice .slider .slide .text_wrap .company {
  font-size: 0.18rem;
  font-weight: bold;
  line-height: 1.65;
  text-align: right;
}

#voice .slick-dots {
  left: 0!important;
  bottom: 0.2rem;
}

#voice .slick-dots li button:before {
  font-size: 0.15rem;
}

#voice .slick-dots li.slick-active button:before {
  color: #35b0ec;
}

/*============================
ph03
============================*/
#ph03 {
  position: relative;
}

#ph03 .ph_wrap {
  position: absolute;
  width: 9.6rem;
  height: 5.4rem;
  top: 50%;
  left: 50%;
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

#ph03 .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*============================
flow
============================*/
#flow {
  position: relative;
}

#flow .in {
  padding-bottom: 1rem;
}

#flow .flow_title {
  text-align: center;
  margin-bottom: 0.6rem;
}

#flow .flow_title img {
  width: 100%;
  max-width: 7.2rem;
}

#flow .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#flow .list .item {
  width: 21%;
  background: #fff;
  margin-bottom: 0.15rem;
  box-sizing: border-box;
  padding: 0.15rem 0.2rem 0.3rem;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

#flow .list .item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.4rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 20px;
  border-color: transparent transparent transparent #35b0ec;
}

#flow .list .item:last-child::after {
  content: none;
}

#flow .list .item .ph_wrap {
  margin: 0 auto;
  text-align: center;
  height: 1rem;
  margin-bottom: 0.2rem;
  position: relative;
  top: 0.2rem;
}

#flow .list .item .ph_wrap.qr {
  max-width: 1rem;
  top: 0;
}

#flow .list .item .text_wrap .list_title {
  font-size: 0.2rem;
  font-weight: bold;
  background: #35b0ec;
  color: #fff;
  padding: 0.07rem 0;
  border-radius: 0.3rem;
  margin-bottom: 0.15rem;
  text-align: center;
}

#flow .list .item .text_wrap .text {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
}

/*============================
contact
============================*/
#contact {
  position: relative;
}

#contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

#contact .in {
  padding-bottom: 1rem;
  position: relative;
  z-index: 1;
}

#contact .contact_title {
  text-align: center;
  margin-bottom: 0.3rem;
}

#contact .contact_title img {
  width: 100%;
  max-width: 5.3rem;
}

#contact .text {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

#contact .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.6rem;
  margin-top: 0.6rem;
}

#contact .list .item {
  max-width: 4rem;
  width: 100%;
  text-align: center;
}

#contact .list .item a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 0.2rem;
  font-weight: bold;
  background: #35b0ec;
  color: #fff;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  padding: 0.3rem 0.2rem;
  border-radius: 0.5rem;
  border: 1px solid #35b0ec;
  position: relative;
}

#contact .list .item a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
  width: 0.07rem;
  height: 0.12rem;
  background: url(../img/btn_arrow_wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.3s ease;
}

#contact .list .item a:hover {
  background: #fff;
  color: #35b0ec;
  opacity: 0.7;
}

#contact .list .item:nth-child(2) a:after {
  background: url(../img/btn_arrow_blue.svg);
}

#contact .list .item:nth-child(2) a {
  background: #ffffff;
  color: #35b0ec;
}

#contact .list .item a:hover:after {
  background: url(../img/btn_arrow_blue.svg);
}

#contact .list .item:nth-child(2) a:hover {
  background: #35b0ec;
  color: #fff;
}

#contact .list .item:nth-child(2) a:hover:after {
  background: url(../img/btn_arrow_wh.svg);
}

footer .copyright {
  font-family: "Jost", sans-serif;
  font-size: 0.11rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: fixed;
  left: 0.20rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

#page_top {
  transform: rotate(-90deg);
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 640px) {
  #page_top {
    transform: rotate(0);
  }
}


/*============================*============================*============================
SP
==================================================================================== */
/*============================
SP共通
============================*/
.sp_wrap .sec_title_sp {
  font-size: 0.3rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}



.sp_wrap .sec_title_sp span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 41.6%;
  transform: translateX(-50%);
  background: #fed321;
  width: 1.5rem;
  height: 0.03rem;
  /* transform: scaleX(0); */
  /* transform-origin: left; */
  /* transition: transform 0.6s ease-out; */
}

/* .sp_wrap .sec_title span.show::before {
  transform: scaleX(1);
} */

/*============================
CTA SP
============================*/
#cta_sp {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
}

#cta_sp .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

#cta_sp .list .item {
  width: 50%;
  text-align: center;
  background: #35b0ec;
  padding: 0.1rem 0;
}

#cta_sp .list .item a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 0.13rem;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  position: relative;
  line-height: 1.5;
}

#cta_sp .list .item:nth-child(1) a {
  margin-top: 0.1rem;
}
#cta_sp .list .item:nth-child(2) {
  background: #ffffff;
}

#cta_sp .list .item:nth-child(2) a {
  color: #35b0ec;
}


#cta_sp .list .item a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
  width: 0.07rem;
  height: 0.12rem;
  background: url(../img/btn_arrow_wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.3s ease;
}

#cta_sp .list .item:nth-child(2) a:after {
  background: url(../img/btn_arrow_blue.svg);
}
/*============================
MV
============================*/
#mv_sp {
  position: relative;
}

#mv_sp .logo {
  width: 100%;
  height: auto;
  margin-bottom: 0.3rem;
}

#mv_sp .text {
  max-width: 2.9rem;
  width: 100%;
  margin: 0 auto;
}

#mv_sp .text .user {
  font-size: 0.2rem;
  font-weight: 900;
  text-align: center;
  margin-top: 0.1rem;
  color: #35B0EC;
  line-height: 1.5;
}
#mv_sp .text .user span {
  font-size: 0.26rem;
  font-weight: 900;
  color: #35B0EC;
   display: inline-block;
   padding: 0 0.05rem;
}




/*============================
リード
============================*/
#lead_sp {
  position: relative;
  padding: 1.8rem 0;
}

#lead_sp .text {
  font-size: 0.3rem;
  text-align: center;
  line-height: 1.8;
  font-weight: 900;
}


#lead_sp .deco_01_sp {
  position: absolute;
  top: 0.5rem;
  left: -0.5rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(53, 176, 236, 0.8),
    rgba(153, 216, 247, 0.5)
  );
  z-index: -1;
}

#lead_sp .deco_02_sp {
  position: absolute;
  bottom: 0.5rem;
  left: 0.1rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

#lead_sp .deco_03_sp {
  position: absolute;
  bottom: 1rem;
  right: 0.5rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

#lead_sp .deco_04_sp {
  position: absolute;
  top: 1rem;
  right: 0.2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

#lead_sp .deco_05_sp {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

#lead_sp .deco_06_sp {
  position: absolute;
  bottom: 0.2rem;
  left: 1rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}



/*============================
ph01
============================*/
#ph01_sp {
  position: relative;
}

#ph01_sp .ph_wrap img {
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
}


#ph01_sp .ph_wrap.ph01 {
  max-width: 2.4rem;
  padding-top: 1rem;
}

#ph01_sp .ph_wrap.ph02 {
  max-width: 3.4rem;
  padding-top: 0.8rem;
  position: relative;
  right: -0.3rem
}

#ph01_sp .ph_wrap.ph03 {
  max-width: 2.3rem;
  padding-top: 1.8rem;
  position: relative;
  left: -0.3rem
}

#ph01_sp .ph_wrap.ph04 {
  max-width: 2.3rem;
  padding: 0.8rem 0;
  margin-left: auto;
  margin-right: 0;
}



/*============================
kadai
============================*/
#kadai_sp {
  position: relative;
  padding: 0.6rem 0;
  overflow: hidden;
}

#kadai_sp .sec_title_sp {
  font-size: 0.3rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

#kadai_sp .list {
  margin-top: 0.6rem;
  padding: 0 0.15rem;
  box-sizing: border-box;
}

#kadai_sp .list .item {
  margin-bottom: 0.6rem;
  position: relative;
}

#kadai_sp .list .item .ph_wrap {
  width: 100%;
  height: 2.1rem;
}

#kadai_sp .list .item .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#kadai_sp .list .item .text_wrap {
  width: 100%;
  box-sizing: border-box;
  padding-top: 0.13rem;
}

#kadai_sp .list .item .text_wrap .feat {
  font-size: 0.1rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  writing-mode: vertical-rl;
  top: 0;
  left: -0.18rem;
}

#kadai_sp .list .item .text_wrap .feat span {
  position: relative;
}


#kadai_sp .list .item .text_wrap .feat span::after {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0.07rem;
  width: 0.01rem;
  height: 0.6rem;
  background: #35b0ec;
}

#kadai_sp .list .item .text_wrap .list_title {
  font-size: 0.2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

#kadai_sp .list .item .text_wrap .text_list {
  font-size: 0.15rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 0.1rem;
}

#kadai_sp .list .item .text_wrap .text_list .text_item {
  position: relative;
  padding-left: 0.2rem;
}

#kadai_sp .list .item .text_wrap .text_list .text_item::before {
  content: "●";
  position: absolute;
  top: 0.05rem;
  color: #35b0ec;
  left: 0;
  font-size: 0.12rem;
}


#kadai_sp .deco_01_sp {
  position: absolute;
  top: 0.5rem;
  left: -0.2rem;
  width: 0.73rem;
  height: 2.13rem;
  border-radius: 0.5rem;
  background: linear-gradient(
    to bottom,
    rgba(53, 176, 236, 0.8),
    rgba(153, 216, 247, 0.5)
  );
  z-index: -1;
  transform: rotate(-155deg);
}

#kadai_sp .deco_02_sp {
  position: absolute;
  bottom: 2.5rem;
  right: -0.1rem;
  width: 0.73rem;
  height: 3.13rem;
  border-radius: 0.5rem;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  transform: rotate(-155deg);
}

#kadai_sp .deco_03_sp {
  position: absolute;
  bottom: 2.5rem;
  left: -0.5rem;
  width: 1.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  transform: rotate(65deg);
}

#kadai_sp .deco_04_sp {
  position: absolute;
  top: 4rem;
  right: -0.1rem;
  width: 0.35rem;
  height: 1rem;
  border-radius: 0.5rem;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  transform: rotate(-15deg);
}

#kadai_sp .deco_05_sp {
  position: absolute;
  bottom: 1.5rem;
  left: 0rem;
  width: 0.3rem;
  height: 1rem;
  border-radius: 0.5rem;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  transform: rotate(15deg);
}


/*============================
kinou
============================*/
#kinou_sp {
  position: relative;
  padding: 0.6rem 0;
}

#kinou_sp .sec_title_sp {
  font-size: 0.3rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

#kinou_sp .sec_title_sp span::before {
  content: none;
}

#kinou_sp .sec_title_sp span em {
  border-bottom: 0.03rem solid #fed321;
}

#kinou_sp .ph_wrap {
  overflow: hidden;
  border-radius: 0.1rem;
  position: relative;
  margin: 0.5rem auto 0;
}

#kinou_sp .ph_wrap > div {
  display: none;
  max-width: 100%;
  margin: 0 auto;
}

#kinou_sp .ph_wrap > div.ph_01 {
  max-width: 2rem;
}

#kinou_sp .ph_wrap > div.active {
  display: block;
}

#kinou_sp .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#kinou_sp .text_wrap {
  width: 100%;
  max-width: 5.2rem;
}

#kinou_sp .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.3rem;
}

#kinou_sp .list .item {
  font-size: 0.15rem;
  font-weight: 900;
  line-height: 1.5;
  width: 48%;
  background: #fff;
  margin-bottom: 0.15rem;
  box-sizing: border-box;
  padding: 0.15rem 0 0.15rem 0.3rem;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
}

#kinou_sp .list .item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.15rem;
  transform: translateY(-50%);
  width: 0.08rem;
  height: 0.08rem;
  background: #c6d501;
  border-radius: 50%;
}

#kinou_sp .list .item.active::before {
  background: #fff;
}

#kinou_sp .list .item.line {
  width: 100%;
  padding-left: 1.55rem;
  background: #00b900;
  color: #fff;
}

#kinou_sp .list .item.line span {
  position: absolute;
  top: 54%;
  left: 0.4rem;
  transform: translateY(-50%);
  max-width: 1.1rem;
}

#kinou_sp .list .item.line.active {
  background: #35B0EC;
  color: #fff;
}

#kinou_sp .list .item.active {
  background: #35B0EC;
  color: #fff;
}



/*============================
ph03
============================*/
#ph03_sp {
  position: relative;
}

#ph03_sp .ph_wrap {
  width: 100%;
  height: 4.5rem;
}

#ph03_sp .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*============================
flow
============================*/
#flow_sp {
  position: relative;
  padding: 0.4rem 0;
}

#flow_sp .flow_title {
  max-width: 2.7rem;
  margin: 0 auto 0.6rem;
}

#flow_sp .list {
}

#flow_sp .list .item   {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  margin-bottom: 0.5rem;
  box-sizing: border-box;
  padding: 0.2rem 0.3rem 0.15rem;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
  min-height: 1.7rem;
  align-items: center;
  position: relative;
}

#flow_sp .list .item:after{
  content: "";
  position: absolute;
  width:0;
  height:0;
  border-style:solid;
  border-width: 15px 16.5px 0 16.5px;
  border-color: #35B0EC transparent transparent transparent;
  bottom: -0.3rem;
  left: 50% ;
  transform: translateX(-50%);
  z-index: 1;
}

#flow_sp .list .item:last-child:after{
  content: none;
}

#flow_sp .list .item .ph_wrap {
  width: 1rem;
  margin-right: 0.1rem;
}

#flow_sp .list .item .text_wrap {
  width: calc(100% - 1.1rem);
}

#flow_sp .list .item .text_wrap .list_title {
  font-size: 0.16rem;
  font-weight: bold;
  background: #35b0ec;
  color: #fff;
  padding: 0.1rem 0;
  border-radius: 0.3rem;
  margin-bottom: 0.15rem;
  text-align: center;
}


#flow_sp .list .item .text_wrap .text {
  font-size: 0.18rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

#flow_sp .list .item .text_wrap .text a {
  color: #F4AB29;
  text-decoration: underline;
}


#flow_sp .deco_01_sp {
  position: absolute;
  top: 0.5rem;
  left: -0.5rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(53, 176, 236, 0.8),
    rgba(153, 216, 247, 0.5)
  );
  z-index: -1;
}

#flow_sp .deco_02_sp {
  position: absolute;
  bottom: 0.5rem;
  left: 0.1rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

#flow_sp .deco_03_sp {
  position: absolute;
  bottom: 1rem;
  right: 0.5rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(153, 216, 247, 0.5),
    rgba(53, 176, 236, 0.8)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

#flow_sp .deco_04_sp {
  position: absolute;
  top: 1rem;
  right: 0.2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

#flow_sp .deco_05_sp {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

#flow_sp .deco_06_sp {
  position: absolute;
  bottom: 0.2rem;
  left: 1rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(236, 240, 176, 0.8),
    rgba(198, 213, 1, 0.5)
  );
  /* GSAPで制御するためCSSアニメーションは削除 */
}

/*============================
voice
============================*/
#voice_sp {
  padding-bottom: 0.5rem;

}

#voice_sp .sec_title {
  text-align: center;
  margin-bottom: 0.6rem;
  padding-top: 0.2rem;
  font-size: 0.3rem;
}

#voice_sp .sec_title em {
  border-bottom: 0.03rem solid #fed321;
}

#voice_sp .slider {
  box-sizing: border-box;
}

#voice_sp .slider .slick-slide {
}

#voice_sp .slider .slide {
  width: 48%;
  background: #fff;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.1rem;
  overflow: hidden;
  margin-bottom: 0.15rem;
  position: relative;

}

#voice_sp .slider .slide .ph_wrap {
  width: 100%;
  height: 2.5rem;
}

#voice_sp .slider .slide .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#voice_sp .slider .slide .text_wrap {
  padding: 0.2rem 0.3rem 0.3rem;
  box-sizing: border-box;
}

#voice_sp .slider .slide .text_wrap .tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.1rem;
  margin-bottom: 0.15rem;
}

#voice_sp .slider .slide .text_wrap .tag_list .tag_item {
  font-size: 0.12rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.05rem 0.1rem;
  border-radius: 0.05rem;
  color: #35b0ec;
  background: #fff;
}

#voice_sp .slider .slide .text_wrap .tag_list .tag_item.blue {
  background: #35b0ec;
  color: #fff;
}


#voice_sp .slider .slide .text_wrap .tag_list .tag_item.yellow {
  background: #bcc718;
  color: #fff;
}

#voice_sp .slider .slide .text_wrap .silde_title {
  font-size: 0.16rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.15rem;
}

#voice_sp .slider .slide .text_wrap .text {
  font-size: 0.14rem;
  line-height: 2;
  margin-bottom: 0.15rem;
}
#voice_sp .slider .slide .text_wrap .company {
  font-size: 0.16rem;
  font-weight: bold;
  line-height: 1.65;
  text-align: right;
  position: absolute;
  bottom: 0.2rem;
  right: 0.3rem;
}

#voice_sp .slick-dots {
  left: 0!important;
  bottom: -0.4rem;
}

#voice_sp .slick-dots li button:before {
  font-size: 0.15rem;
}

#voice_sp .slick-dots li.slick-active button:before {
  color: #35b0ec;
}

#voice_sp .slick-slider .slick-track, .slick-slider .slick-list {
  display: flex!important;
}

/*============================
contact
============================*/
#contact_sp {
  position: relative;
  padding: 1rem 0;
}

#contact_sp .contact_title_sp {
  margin-bottom: 0.3rem;
}

#contact_sp .text {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin-bottom: 0.3rem;
}

#contact_sp .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

#contact_sp .list .item {
  max-width: 2.8rem;
  width: 100%;
  text-align: center;
}

#contact_sp .list .item a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 0.15rem;
  font-weight: bold;
  background: #35b0ec;
  color: #fff;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  padding: 0.2rem 0.2rem;
  border-radius: 0.5rem;
  border: 1px solid #35b0ec;
  position: relative;
}

#contact_sp .list .item a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
  width: 0.07rem;
  height: 0.12rem;
  background: url(../img/btn_arrow_wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.3s ease;
}

#contact_sp .list .item a:hover {
  background: #fff;
  color: #35b0ec;
  opacity: 0.7;
}

#contact_sp .list .item:nth-child(2) a:after {
  background: url(../img/btn_arrow_blue.svg);
}

#contact_sp .list .item:nth-child(2) a {
  background: #ffffff;
  color: #35b0ec;
}

#contact_sp .list .item a:hover:after {
  background: url(../img/btn_arrow_blue.svg);
}

#contact_sp .list .item:nth-child(2) a:hover {
  background: #35b0ec;
  color: #fff;
}

#contact_sp .list .item:nth-child(2) a:hover:after {
  background: url(../img/btn_arrow_wh.svg);
}

footer .copyright_sp {
  font-family: "Jost", sans-serif;
  font-size: 0.11rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: static;
  text-align: center;
  padding: 0.2rem 0;
}