@charset "UTF-8";
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

/* animation */
.animation_dokundokun {
  animation: dokundokun 1500ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}
.animation_fuwafuwa {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animation_shiny {
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

html {
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  position: relative;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #333333;
  width: 100%;
}
@media screen and (max-width: 600px) {
  body {
    position: static;
  }
}

.body_inner {
  display: block;
  width: 100%;
  height: 100%;
}

/* スライダーの高さ指定*/
.body_wrapper {
  height: 100%;
}

.sec {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding-bottom: 96px;
  opacity: 1;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

/* 上層固定背景 */
.bg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1200px) {
  .bg {
    z-index: 2;
  }
}
@media screen and (max-width: 600px) {
  .bg {
    display: none;
  }
}

/* 上層固定背景 内部 */
.bg_content {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .bg_content {
    display: none;
  }
}

.bg_inner {
  position: absolute;
  width: 380px;
  padding: 26px;
  background-color: #fff;
  left: 12vw;
  top: calc(50% + 40px);
  transform: translateY(-50%);
  padding-top: 140px;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .bg_inner {
    left: 8vw;
  }
}
.bg_inner::after {
  content: "";
  position: absolute;
  width: 90%;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 100%;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.bg_ribbon {
  width: 116%;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.bg_book {
  box-shadow: 8px 8px 8px rgba(51, 51, 51, 0.3);
  width: 90%;
  margin: 0 auto 20px;
}

.btn {
  color: #fff;
  background-color: #3CC76F;
  border-radius: 100px;
  width: 320px;
  display: block;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 2px 2px 4px rgba(51, 51, 51, 0.67);
  transition: all 0.3s;
}
@media screen and (max-width: 600px) {
  .btn {
    padding: 16px 0 14px;
    width: 300px;
  }
}
.btn:hover {
  opacity: 0.6;
}

.btn span {
  display: block;
  position: relative;
  font-weight: 700;
  padding-right: 16px;
}
.btn span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .btn span::after {
    right: -16px;
  }
}

.btn_note {
  font-size: 14px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 4px;
}
@media screen and (max-width: 600px) {
  .btn_note {
    font-size: 10px;
  }
}

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  max-width: 600px;
  top: 0;
  right: 15%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .lp_body {
    right: 5%;
  }
}
@media screen and (max-width: 1200px) {
  .lp_body {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 600px) {
  .lp_body {
    position: static;
    transform: none;
    margin-inline: 0;
    overflow-x: hidden;
  }
}

.cta-fixed {
  position: fixed;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  max-width: 600px;
  bottom: 0;
  right: 15%;
  z-index: 100;
  background-color: #fff;
  padding: 8px 0 0;
}
@media screen and (max-width: 1400px) {
  .cta-fixed {
    right: 5%;
  }
}
@media screen and (max-width: 1200px) {
  .cta-fixed {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.cta-fixed .btn {
  margin: 0 auto 8px;
}

.footer {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  width: 100%;
  padding: 8px 0;
  background-color: #333;
  color: #fff;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .footer {
    font-size: 12px;
  }
}

.footer a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

/*------------------- fv ------------------*/
.fv {
  background-image: url(../img/fv_bg.webp);
  background-size: cover;
  background-position: top;
}

.fv_wrap {
  width: 74%;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 600px) {
  .fv_wrap {
    width: 92%;
    padding: 12px 0 0;
  }
}

.fv_top {
  margin-bottom: 12px;
}
@media screen and (max-width: 600px) {
  .fv_top {
    margin-bottom: 8px;
  }
}

.fv_top img {
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .fv_top img {
    margin-bottom: 2px;
  }
}

.fv_top h2 {
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .fv_top h2 {
    font-size: 14px;
  }
}
.fv_top h2 span {
  font-weight: 500;
  border-bottom: 2px solid #E69A9A;
}

@media screen and (max-width: 600px) {
  .fv_heading {
    width: 94%;
    margin: 0 auto;
  }
}

.fv_inner {
  background-color: #fff;
  padding: 12px 16px;
}
@media screen and (max-width: 600px) {
  .fv_inner {
    padding: 4px 8px;
  }
}

.fv_inner_top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .fv_inner_top {
    gap: 6px;
    grid-template-columns: 2.4fr 1fr;
  }
}
.fv_inner_top p {
  line-height: 1.8;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .fv_inner_top p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 600px) {
  .fv_ribbon {
    width: 94%;
    margin: 0 auto;
  }
}

/*------------------- case ------------------*/
.case {
  background-color: #FAEDED;
}

.case_wrap {
  width: 74%;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 600px) {
  .case_wrap {
    width: 92%;
    padding: 12px 0 0;
  }
}

.case_heading {
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .case_heading {
    margin-bottom: 8px;
  }
}

.case_content {
  position: relative;
}
@media screen and (max-width: 600px) {
  .case_content {
    width: 96%;
    margin: 0 auto;
  }
}

.case_bottom {
  position: absolute;
  width: 50%;
  right: 0;
  bottom: -24px;
}
.case_bottom img {
  width: 86%;
  margin-left: auto;
}
.case_bottom span {
  font-weight: 700;
  position: absolute;
  bottom: 24px;
  left: 0;
}

.case_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .case_list {
    gap: 8px;
    row-gap: 4px;
  }
}

/*------------------- voice ------------------*/
.voice {
  background-color: #FAEDED;
}

.voice_top {
  position: relative;
  width: 100%;
}

.voice_heading {
  width: 60%;
  margin: 0 auto 16px;
}
@media screen and (max-width: 600px) {
  .voice_heading {
    margin: 0 auto 8px;
  }
}

.voice_img {
  width: 50px;
  top: 0;
  right: 0;
  position: absolute;
}
@media screen and (max-width: 600px) {
  .voice_img {
    width: 40px;
  }
}

.voice_wrap {
  width: 74%;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 600px) {
  .voice_wrap {
    width: 92%;
    padding: 12px 0 0;
  }
}

.voice_item {
  position: relative;
  background-color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
}
@media screen and (max-width: 600px) {
  .voice_item {
    padding: 6px 8px;
  }
}
.voice_item:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .voice_item:not(:last-child) {
    margin-bottom: 2px;
  }
}
.voice_item p {
  line-height: 1.6;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .voice_item p {
    font-size: 14px;
    line-height: 1.4;
  }
}

.voice_num {
  width: 24%;
  top: 0;
  left: 0;
  position: absolute;
}

/*------------------- profile ------------------*/
.profile {
  background-color: #fff;
  position: relative;
}

.profile_top {
  position: absolute;
  width: 120px;
  top: 0;
  left: 0;
}

.profile_wrap {
  width: 74%;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 600px) {
  .profile_wrap {
    width: 92%;
    padding: 12px 0 0;
  }
}

.profile_heading {
  width: 60%;
  padding: 12px 0;
  position: relative;
  z-index: 5;
}

.profile_content {
  background-color: #FAEDED;
  padding: 12px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .profile_content {
    padding: 8px 8px 4px;
  }
}
.profile_content img {
  width: 40%;
  right: -4%;
  top: -64px;
  position: absolute;
}
@media screen and (max-width: 600px) {
  .profile_content img {
    top: -10%;
    right: 0;
  }
}
.profile_content span {
  font-size: 28px;
  font-weight: 700;
  color: #E69A9A;
  margin-bottom: 8px;
  display: block;
}
@media screen and (max-width: 600px) {
  .profile_content span {
    font-size: 24px;
  }
}
.profile_content p {
  line-height: 1.6;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .profile_content p {
    font-size: 15px;
  }
}
.profile_content p.profile_txt {
  width: 60%;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .profile_content p.profile_txt {
    width: 64%;
  }
}

.profile_bottom {
  width: 90%;
  margin: 40px auto 0;
}
@media screen and (max-width: 600px) {
  .profile_bottom {
    margin: 24px auto 0;
  }
}

.profile_message {
  position: relative;
  margin-top: 24px;
}
@media screen and (max-width: 600px) {
  .profile_message {
    margin-top: 8px;
  }
}

.profile_book {
  position: absolute;
  width: 32%;
  top: -140px;
  right: 12px;
  box-shadow: 4px 4px 8px rgba(51, 51, 51, 0.3);
}
@media screen and (max-width: 600px) {
  .profile_book {
    top: -68%;
    width: 28%;
  }
}

.profile_message_top {
  width: 62%;
}

/*------------------- trouble ------------------*/
.trouble {
  background: linear-gradient(180deg, #F5D8D8 0%, #fff 100%);
  position: relative;
}
.trouble::after {
  content: "";
  width: 86%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .trouble::after {
    width: 92%;
  }
}

.trouble_wrap {
  width: 74%;
  margin: 0 auto;
  padding: 20px 0;
  background-color: #fff;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 600px) {
  .trouble_wrap {
    width: 88%;
    padding: 12px 0 0;
  }
}

.trouble_heading {
  width: 90%;
  margin: 0 auto 24px;
}
@media screen and (max-width: 600px) {
  .trouble_heading {
    margin: 0 auto 8px;
  }
}

.trouble_content p {
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .trouble_content p {
    line-height: 1.6;
    font-size: 14px;
  }
}
.trouble_content p.right_txt {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.trouble_list {
  margin: 8px 0;
}
@media screen and (max-width: 600px) {
  .trouble_list {
    margin: 6px 0;
  }
}

.trouble_item {
  background-color: #333;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 16px 6px 28px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .trouble_item {
    padding: 6px 12px 6px 20px;
    font-size: 14px;
  }
}
.trouble_item:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .trouble_item:not(:last-child) {
    margin-bottom: 6px;
  }
}
.trouble_item::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #fff;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  border-radius: 100%;
}
@media screen and (max-width: 600px) {
  .trouble_item::after {
    left: 8px;
    width: 4px;
    height: 4px;
  }
}

.trouble_bubble {
  margin-bottom: 8px;
}

/*------------------- free ------------------*/
.free {
  background-color: #FAEDED;
}

.free_wrap {
  width: 74%;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 600px) {
  .free_wrap {
    width: 92%;
    padding: 12px 0 0;
  }
}

.free_heading {
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .free_heading {
    margin-bottom: 12px;
  }
}

.free_top {
  display: grid;
  grid-template-columns: 3fr 1fr;
}
@media screen and (max-width: 600px) {
  .free_top {
    align-items: end;
  }
}

.free_top p {
  background-color: #fff;
  padding: 8px;
  border-radius: 4px;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .free_top p {
    font-size: 14px;
  }
}
.free_top p span {
  color: #FF0069;
  font-weight: 500;
}

.free_middle {
  position: relative;
  padding: 18px 0 12px;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .free_middle {
    margin-bottom: 0;
  }
}

.free_middle p {
  line-height: 1.8;
  width: 80%;
  margin-left: auto;
}
.free_middle p span {
  color: #FF0069;
  font-weight: 500;
}

.free_middle img {
  width: 20%;
  position: absolute;
  left: -2%;
  top: 50%;
  transform: translateY(-50%);
}

.free_bottom {
  position: relative;
}
.free_bottom img {
  position: absolute;
  top: 0;
  right: -4%;
  width: 36%;
}

.free_bottom_bubble {
  background-color: #fff;
  border-radius: 4px;
  padding: 16px 8px;
  line-height: 1.8;
  position: relative;
  width: 75%;
}
@media screen and (max-width: 600px) {
  .free_bottom_bubble {
    font-size: 14px;
    padding: 12px 8px;
  }
}
.free_bottom_bubble::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 10%;
  right: -14px;
}
.free_bottom_bubble p:nth-child(1) {
  margin-bottom: 8px;
}
.free_bottom_bubble p:nth-child(1) span {
  color: #FF0069;
}
.free_bottom_bubble p:nth-child(2) {
  font-weight: 500;
}
.free_bottom_bubble p:nth-child(2) span {
  color: #FF0069;
}

/*------------------- change ------------------*/
.change {
  background-color: #fff;
}

.change_top {
  background-color: #333;
  color: #fff;
  padding: 32px 0 42px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 50% 100%, 0 calc(100% - 24px));
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .change_top {
    margin-bottom: 8px;
    padding: 20px 0 28px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), 50% 100%, 0 calc(100% - 12px));
  }
}
.change_top span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 22px;
}
@media screen and (max-width: 600px) {
  .change_top span {
    font-size: 16px;
  }
}

.change_content {
  background: linear-gradient(180deg, rgba(118, 56, 250, 0.1) 0%, rgba(211, 0, 197, 0.1) 20%, rgba(255, 0, 105, 0.1) 54%, rgba(255, 122, 0, 0.1) 70%, rgba(255, 214, 0, 0.1) 100%);
  width: 74%;
  margin: 0 auto;
  padding: 8px 0 24px;
  border-radius: 8px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .change_content {
    width: 92%;
    padding: 8px 0 20px;
  }
}

.change_heading {
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 600px) {
  .change_heading {
    margin-bottom: 8px;
  }
}

.change_img {
  position: absolute;
  width: 40px;
  right: 0;
  top: 140px;
}

.change_txt {
  padding: 0 16px;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 24px;
  font-size: 18px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1400px) {
  .change_txt {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .change_txt {
    margin-bottom: 8px;
    padding: 0 8px;
  }
}
.change_txt span {
  background: linear-gradient(transparent 60%, #fff 60%);
}

.change_bottom {
  position: relative;
  z-index: 5;
}
.change_bottom::before {
  content: "";
  display: block;
  position: absolute;
  width: 36px;
  height: 110px;
  background-image: url(../img/change_effect.webp);
  background-size: 100% 100%;
  bottom: -8px;
  left: 12px;
  z-index: -1;
}
@media screen and (max-width: 375px) {
  .change_bottom::before {
    width: 80px;
  }
}
.change_bottom::after {
  content: "";
  display: block;
  position: absolute;
  width: 36px;
  height: 110px;
  background-image: url(../img/change_effect.webp);
  background-size: 100% 100%;
  transform: scale(-1, 1);
  bottom: -8px;
  right: 12px;
  z-index: -1;
}
@media screen and (max-width: 375px) {
  .change_bottom::after {
    width: 80px;
  }
}

.change_bubble {
  color: #fff;
  background-color: #FF0069;
  border-radius: 8px;
  padding: 8px 32px 8px 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  position: relative;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .change_bubble {
    padding: 6px 24px 6px 32px;
    margin: 0 auto 8px;
  }
}
@media screen and (max-width: 375px) {
  .change_bubble {
    font-size: 16px;
  }
}
.change_bubble::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 12px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  background-color: #FF0069;
}
@media screen and (max-width: 600px) {
  .change_bubble::after {
    width: 10px;
    height: 8px;
    bottom: -7px;
  }
}

.change_bottom_txt {
  text-align: center;
  font-size: 22px;
  line-height: 1.8;
}
@media screen and (max-width: 1400px) {
  .change_bottom_txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .change_bottom_txt {
    font-size: 18px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 375px) {
  .change_bottom_txt {
    font-size: 16px;
  }
}
.change_bottom_txt span {
  color: #FF0069;
  font-weight: 700;
}

/*-------------------  ------------------*/
.expertise {
  background-color: #FAEDED;
}

.expertise_wrap {
  padding: 20px 0;
}
@media screen and (max-width: 600px) {
  .expertise_wrap {
    padding: 12px 0 0;
  }
}

.expertise_heading {
  margin-bottom: 8px;
  position: relative;
  z-index: 5;
}

.expertise_top {
  width: 74%;
  margin: 0 auto;
  padding-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .expertise_top {
    width: 92%;
    padding-bottom: 8px;
  }
}

.expertise_bg {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
}

.expertise_top p {
  line-height: 1.8;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.expertise_content {
  background-color: #fff;
  padding: 16px 0;
  position: relative;
}
@media screen and (max-width: 600px) {
  .expertise_content {
    padding: 12px 0;
  }
}

.expertise_img {
  position: absolute;
  width: 160px;
  top: 50%;
  transform: translateY(-50%);
  right: 14%;
}
@media screen and (max-width: 600px) {
  .expertise_img {
    width: 36%;
    right: 0;
  }
}

.expertise_inner {
  width: 74%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .expertise_inner {
    width: 92%;
  }
}

.expertise_inner p {
  width: 60%;
  line-height: 1.8;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .expertise_inner p {
    font-size: 16px;
    width: 64%;
  }
}
.expertise_inner p span {
  font-weight: 700;
}
.expertise_inner p span span {
  color: #FF0069;
}

@media screen and (max-width: 600px) {
  .sp_LL_hidden {
    display: none;
  }
}

.expertise_bottom {
  padding: 32px 0 32px;
  background-image: url(../img/expertise_bg2.webp);
  background-size: 100% 100%;
}
@media screen and (max-width: 600px) {
  .expertise_bottom {
    padding: 12px 0;
  }
}

.expertise_bottom p {
  width: 74%;
  margin: 0 auto;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .expertise_bottom p {
    width: 92%;
    margin-bottom: 8px;
  }
}
.expertise_bottom p span {
  color: #FF0069;
  font-weight: 700;
}

.expertise_line {
  width: 2px;
  height: 60px;
  background-color: #333;
  display: block;
  border-radius: 100px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  .expertise_line {
    height: 46px;
  }
}

.expertise_circle {
  width: 8px;
  height: 8px;
  background-color: #333;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: expertise_circle 1.6s linear infinite;
}
@media screen and (max-width: 600px) {
  .expertise_circle {
    animation: expertise_circle_sp 1.6s linear infinite;
  }
}

@keyframes expertise_circle {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-50%) translateY(52px);
    opacity: 0;
  }
}
@keyframes expertise_circle_sp {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-50%) translateY(38px);
    opacity: 0;
  }
}
/*------------------- present ------------------*/
.present {
  background-image: url(../img/present_bg.webp);
  background-size: 100% 100%;
  background-color: #FAEDED;
}

.present_wrap {
  width: 74%;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 600px) {
  .present_wrap {
    width: 92%;
    padding: 12px 0 0;
  }
}

.present_top_inner {
  position: relative;
}

.present_top_inner p {
  line-height: 1.8;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .present_top_inner p {
    font-size: 16px;
  }
}
.present_top_inner p span {
  font-weight: 500;
}

.present_top_inner img {
  position: absolute;
  width: 180px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .present_top_inner img {
    width: 40%;
  }
}

.present_heading {
  position: relative;
  z-index: 5;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .present_heading {
    margin-bottom: 12px;
  }
}
.present_heading span {
  font-size: 18px;
  font-weight: 500;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .present_heading span {
    font-size: 16px;
  }
}

.present_item {
  background-color: #fff;
  padding: 8px 0;
  border-radius: 4px;
}
@media screen and (max-width: 600px) {
  .present_item {
    padding: 4px 0;
  }
}
.present_item:nth-child(1) {
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .present_item:nth-child(1) {
    margin-bottom: 8px;
  }
}
.present_item:nth-child(2) {
  margin-bottom: 4px;
}
@media screen and (max-width: 600px) {
  .present_item:nth-child(2) {
    margin-bottom: 0;
  }
}

.present_item p {
  text-align: center;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .present_item p {
    font-size: 16px;
  }
}
.present_item p .line_txt {
  position: relative;
  display: inline-block;
}
.present_item p .line_txt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #FF0069;
  left: 0;
  bottom: 0;
}
.present_item p .bold_txt {
  font-weight: 700;
}

/*------------------- topic ------------------*/
.topic {
  background: linear-gradient(180deg, #7638FA 0%, #D300C5 15%, #FF0069 60%, #FF7A00 80%, #FFD600 100%);
}

.topic_wrap {
  width: 74%;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 600px) {
  .topic_wrap {
    width: 92%;
    padding: 12px 0 0;
  }
}

.topic_top {
  position: relative;
}

.topic_top h1 {
  line-height: 1.4;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .topic_top h1 {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
.topic_top h1 span {
  font-weight: 900;
  display: inline-block;
  padding-right: 4px;
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  .topic_top h1 span {
    font-size: 20px;
  }
}

.topic_top img {
  width: 100px;
  top: 0;
  right: 16px;
  box-shadow: 2px 2px 4px rgba(51, 51, 51, 0.3);
  position: absolute;
}
@media screen and (max-width: 600px) {
  .topic_top img {
    width: 22%;
    right: 2%;
  }
}

.topic_content {
  background-color: #fff;
  border-radius: 8px;
  padding: 12px 0;
}
@media screen and (max-width: 600px) {
  .topic_content {
    padding: 8px 0;
  }
}

.topic_list {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .topic_list {
    width: 92%;
  }
}

.topic_item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 8px;
  height: 48px;
}
@media screen and (max-width: 600px) {
  .topic_item {
    height: 40px;
  }
}

.topic_item:not(:first-child) .topic_item_num {
  color: #fff;
}

.topic_item:not(:last-child) {
  margin-bottom: 4px;
}
@media screen and (max-width: 600px) {
  .topic_item:not(:last-child) {
    margin-bottom: 2px;
  }
}

.topic_item:nth-child(1) .topic_item_num {
  background-color: #FFD600;
}
.topic_item:nth-child(2) .topic_item_num {
  background-color: #FFAD00;
}
.topic_item:nth-child(3) .topic_item_num {
  background-color: #FF7A00;
}
.topic_item:nth-child(4) .topic_item_num {
  background-color: #FF363A;
}
.topic_item:nth-child(5) .topic_item_num {
  background-color: #FF0069;
}
.topic_item:nth-child(6) .topic_item_num {
  background-color: #E8009A;
}
.topic_item:nth-child(7) .topic_item_num {
  background-color: #B313D7;
}
.topic_item:nth-child(8) .topic_item_num {
  background-color: #7638FA;
}

.topic_item_num {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.topic_item_num span {
  font-size: 18px;
}

.topic_item h2 {
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .topic_item h2 {
    font-size: 14px;
  }
}

/*-------------------  ------------------*/
.scrollbar {
  position: fixed;
  right: 2.5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 95%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 100;
}

.scrollbar .scrollbar-drag {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  cursor: pointer;
}/*# sourceMappingURL=lp.css.map */