@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --green-color: #00AFAC;
    --blue-color: #009FE8;
    --pink-color: #F07363;
}
.notoserifjp{
    font-family: 'Noto Serif JP', serif;
}
.lato{
    font-family: 'Lato', sans-serif;
}
.jost-700 {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'futur',sans;
    src: url("../../fonts/futur.ttf") format("truetype");
}
@font-face {
    font-family: 'futurmedium';
    src: url("../../fonts/futura medium bt.ttf") format("truetype");
}
.futur {
    font-family: "futura-pt", sans-serif;
}
html{
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;/*Chrome,Safari*/
    -ms-text-size-adjust: 100%;/*EgdeMobile*/
    -moz-text-size-adjust: 100%;/*firefox*/
    font-size: 62.5%;
}

body{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(var(--vh) * 100);
    padding-bottom: calc(env(safe-area-inset-bottom) + 62px);
    font-size:1.4em;
    /* font-family: "Noto Sans JP","Quicksand",sans-serif; */
    font-family: "游ゴシック体","YuGothic","游ゴシック","Yu Gothic",sans-serif;
    margin:0;
    padding:0;
    letter-spacing: -0.01rem;
    color: #1A1A1A;

}
a{
    color: #1A1A1A;
    text-decoration: none;
}
/*余白*/
.mb_7{ margin-bottom: 7px; }
.mt_15{ margin-top: 15px; }
.mt_0{ margin-top: initial !important; }
.mt_18{ margin-top: 18px; }
.mt_20{ margin-top: 20px; }
.mt_30{ margin-top: 30px; }
.mt_40{ margin-top: 40px; }
.mt_60{ margin-top: 60px; }
.mt_80{ margin-top: 80px; }
.mr_20{ margin-left: 20px; }
.mb_0{ margin-bottom: 0 !important; }
.mb_10{ margin-bottom: 10px; }
.mb_20{ margin-bottom: 20px; }
.mb_30{ margin-bottom: 30px; }
.pt_20{ padding-top: 20px; }
.pb_20{ padding-bottom: 20px; }

.f-weight-500 { font-weight: 500 !important; }
.pc_hidden{ display: none; }
.sp_hidden { display: block; }
/*リンクの色*/
a:hover,a:active{
    opacity: 0.8;
}
a:hover.btn_blue p {
    color: #ffffff;
}
/*文字サイズ 装飾*/
.f_12{ font-size: 1.2rem !important; }
.f_14{ font-size: 1.4rem !important; }
.f_16{ font-size: 1.6rem !important; }
.f_18{ font-size: 1.8rem !important; }
.f_24{ font-size: 2.4rem !important; }
.f_32{ font-size: 3.2rem !important; }
.l_25 { line-height: 2.5rem; }
.f_w_500{ font-weight: 500; }
.f_w_600{ font-weight: 600; }
.f_w_700{ font-weight: 700; }
.f_green{ color: var(--green-color); }
.f_m_green{ color: #A4C4BF; }
.f_red{ color: #DC0032; }
.f_pink{ color: var(--pink-color); }
.f_blue{ color: var(--blue-color); }
.u_line{
    border-bottom: 1px solid var(--green-color);
}
.sp_hidden{
    display: block;
}
h2,h3,h4 {
    font-weight: 500;
}
/*text position*/
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
/*アイコン*/
.icon-review {
    content: "";
    display: inline-block;
    background: url("../img/merit.svg") no-repeat;
    background-size: contain;
    width: 46px;
    height: 47px;
    margin-right: 15px;
}
.ig_icon {
    content: "";
    display: inline-block;
    background: url("../img/ig_icon.svg") no-repeat;
    background-size: contain;
}
.x_icon {
    content: "";
    display: inline-block;
    background: url("../img/x_icon.svg") no-repeat;
    background-size: contain;
}
.blue_check {
    content: "";
    display: inline-block;
    background: url("../img/blue_check.svg") no-repeat;
    background-size: contain;
}
/*ボタンエリア*/
.btn_green,
.btn_blue {
    width: 192px;
    height: 50px;
    text-align: center;
    background: #04B795;
    border-radius: 50px;
    color: #EEEE8A;
    font-weight: 600;
    position: relative;
}
.btn_blue {
    width: 320px;
    background: #1B224C;
    border-radius: 0.5rem;
    color: #ffffff;
}
.btn_green p,
.btn_blue p {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.btn_blue p img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}
.btn_yellow{
    width: 192px;
    height: 50px;
    text-align: center;
    background: #EEEE8A;
    border-radius: 50px;
    color: #04B795;
    font-weight: 600;
    position: relative;
}
.btn_yellow p{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.btn_pink{
    width: 320px;
    height: 50px;
    background: #FF5A67;
    color: #ffffff;
    border-radius: 5px;
    display: block;
    position: relative;
    transition: transform 0.3s;
}
.btn_pink p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn_area{
    width: 100%;
    max-width: 910px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
}
.marker {
    background: linear-gradient(transparent 70%, #FFEC00 70%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition:background-size 1.5s;
}
.marker.on {
    background-size: 100% 100%;
}
.border-radius-10 {
    border-radius: 1.0rem;
}
.border-radius-50 {
    border-radius: 50%;
}
.img-shadow {
    box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.25);
}
.aspect-1 {
    aspect-ratio: 1/1;
}
/*おすすめマーク*/
.recommend-mark::after {
    content: "";
    display: inline-block;
    width: 96px;
    height: 108px;
    background: url("../img/osusume.svg") no-repeat;
    background-size: contain;
    position: absolute;
    left: -15px;
    top: -75px;
}
/*背景緑*/
.green_bg_midashi {
    width: 160px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #04B795;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
}
.bg_yellow {
    background: #FFF5EF;
}
.yellow{
    background: #FCA845;
}
.bg_green{
    background: #A0C665;
}
.bg_company{
    background: #F4F8FC;
}
.bg_pink {
    background: var(--pink-color);
}
.bg_white {
    background: #ffffff;
}
.green_btn {
    display: inline-block;
    width: 336px;
    text-align: center;
    border-radius: 0.5rem;
}
.green_btn p {
    width: 100%;
    padding: 15px 10px;
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
/* .bg_gray_reppy {
    position: relative;
} */
.bg_promotion {
    background: #F7F7F7 url("../img/bg_promotion.png") no-repeat;
    background-size: contain;
    background-position-y: 80%;
    background-position-x: 0;
    position: relative;
    z-index: 0;
}
.bg_gray_reppy {
    background: url("../img/bg_gray_reppy.png") no-repeat;
    background-size: contain;
    background-size: 47%;
    background-position-y: 10%;
    background-position-x: 5%;
    position: relative;
    z-index: 0;
}
.bg_gray_muluti_reppy {
    background: url("../img/bg_gray_reppy.png") no-repeat;
    background-size: 40%;
    background-position-y: 100%;
    background-position-x: 80%;
    position: relative;
    z-index: 0;
}
.bg_ugc {
    background: url("../img/ugc02_bg.jpg") no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}
/*チェックマーク*/
.green_check::before{
    content: "";
    display: inline-block;
    width: 25px;
    height: 22px;
    background: url("../img/r_green_check.svg") no-repeat;
    background-size: contain;
    margin-right: 10px;
    position: absolute;
    top: 15px;
}
.d_green_check::before{
    content: "";
    display: inline-block;
    width: 18px;
    height: 15px;
    background: url("../img/d_green_check.svg") no-repeat;
    background-size: contain;
    margin-right: 10px;
}
.green_point_mark::before {
    content: "●";
    display: inline-block;
    font-size: 1.5rem;
    color: var(--green-color);
    width: 25px;
}
.popular::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url("../img/popular.svg") no-repeat;
    background-size: contain;
    margin-right: 10px;
}
.icon-tieup01 {
    content: "";
    display: inline-block;
    background: url("../img/tieup01.svg") no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
}
.icon-tieup02 {
    content: "";
    display: inline-block;
    background: url("../img/tieup02.svg") no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
}
.icon-tieup03 {
    content: "";
    display: inline-block;
    background: url("../img/tieup03.svg") no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
}
/*斜め線*/
.slash::before {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
}

.slash::after {
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}
/*文字位置*/
.left{
    text-align: left;
}
.center{
    text-align: center !important;
}
.flex{
    display: flex;
}
.flex_center{
    display: flex;
    justify-content: center;
}
.flex-high-center {
    display: flex;
    align-items: center;
}
.flex-between {
    display: flex;
    justify-content: space-between;
}
.flex-around {
    display: flex;
    justify-content: space-around;
}
.flex-row {
    display: flex;
    flex-direction: column;
}
.f_wrap{
    display: flex;
    flex-wrap: wrap;
}
.flex-3 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.flex-3 .item {
    width: 100%;
    max-width: calc(100% / 3 - 8%);
    display: flex;
    flex-direction: column;
}
.flex-3 .item .img_area {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}
.flex-3 .item .img_area img {
    width: 170px;
    object-fit: contain;
}
.flex-3 .item .title {
    width: 100%;
    text-align: center;
}
.flex-3 .item .title .sub_title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #DC0032;
}
.flex-3 .item .title h3 {
    font-size: 2.6rem;
    font-weight: 600;
    height: 56px;
    margin-bottom: 10px;
}
.flex-3 .item.last .title h3 {
    height: initial;
}
.flex-3 .item .title p {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
}
.u_c_arrow::after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../img/icon/u_c_arrow.svg") no-repeat;
    background-size: contain;
    margin-left: 10px;
    vertical-align: middle;
}
.u_line_area{
    border-bottom: 1px solid #E0E0E0;
}
.font-feature-plat {
    font-feature-settings: "palt";
}
/*背景色*/
.bg_gray{
    background: #F8F8F8;
}
.bg_blue{
    background: #F4F8FC;
}
.bg_white{
    background: #ffffff;
}
.bg_case {
    background: url("../img/case_bg.jpg") no-repeat;
    background-size: cover;
}
.bg_performance{
    background: url("../img/performance_bg.webp") no-repeat;
    background-size: cover; 
}
/*区切り線*/
.border-top {
    border-top: 1px solid #E0E0E0;
}
/*ボタン*/
.link_btn{
    width: 100%;
    max-width: 280px;
    height: 48px;
    border-radius: 50px;
    background: #04B795;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
a.link_btn{
    color: #ffffff !important;
}
/*見出し merit*/
.merit-area {
    position: relative;
}
.merit-area::before {
    content: "";
    display: inline-block;
    width: 99px;
    height: 52px;
    background: url("../img/merit_title.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: -60px;
    left: 0;
}
/*floating*/
.floating {
    width:100%;
    max-width: 336px;
    background: #1B224C;
    border-radius: 0.5rem;
    position: fixed;
    bottom: 40px;
    right: 3%;
    outline: none;
    opacity: 0;
    transition-duration: 0.5s;
    z-index: 11;
    -webkit-transform: translate3d(0,0,0);
    box-shadow: 6px 6px 8px -2px rgba(0, 0, 0, 0.2);
}
.floating img {
    width: 30px;
    height: 30px;
    padding: 4px;
    object-fit: contain;
    background: transparent;
    border-radius: 0.5rem;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}
/*メイン*/
.ugc_insight_wrap{
    width: 100%;
}
.ugc_insight_wrap.first_area{
    margin-top: 70px;
}
.header_lp{
    width: 100%;
}
.header_lp .header_lp_sub_title {
    width: 100%;
    max-width: calc(100% - 10%);
    margin: 20px auto 0;
}
.header_lp .header_lp_sub_title p {
    font-size: 1.8rem;
    font-weight: 600;
}
.header_lp .header_top {
    width: 100%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_lp .header_top .title {
    width: 100%;

}
.header_lp .header_top h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.header_lp .header_top .link_btn{
    position: relative;
    left: calc(100% - 280px);
}
.header_lp .header_img_area {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}
.header_lp .header_img_area h2 {
    width: 100%;
    max-width: calc(100% - 10%);
    margin: 0 auto 20px;
    font-size: 3.6rem;
    line-height: 1.2;
    font-weight: 600;
    position: relative;
    top: 5px;
}
.header_lp .header_img_area h2 .sub_title {
    font-size: 2.4rem;
}
.header_lp .header_img_area .header_img_area_inner.right {
    position: absolute;
    bottom: 2%;
    right: 2%;
}
.header_lp .header_comment {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 0;
    text-align: center;
    padding: 20px 0 0;
}
.header_lp .header_comment .header_comment_left {
    width: 100%;
    max-width: calc(100% - 15px);
    margin-left: 15px;
    text-align: left;
    display: flex;
    align-items: center;
}
.header_lp .header_comment .header_comment_left .feed_ok {
    border-radius: 0.5rem;
    background: #FCA845;
    width: 105px;
    display: inline-block;
}
.header_lp .header_comment .header_comment_left .feed_ok p {
    width: 100%;
    white-space: nowrap;
    font-weight: 500;
    color: #ffffff;
    font-size: 1.3rem;
    font-feature-settings: "palt";
    padding: 5px 10px;
    margin-left: 0;
}
.header_lp .header_comment .header_comment_left p.comment {
    font-weight: 500;
    font-size: 2.0rem;
    margin-left: 10px;
}
.header_lp .header_comment .header_comment_right {
    width: 35%;
    display: flex;
    justify-content: flex-end;
}
.header_lp .header_comment .header_comment_right img {
    width: 240px;
    object-fit: contain;
}
.header_lp .header_comment .header_comment_right p{
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    margin: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_lp .header_comment .header_comment_right p.orange{
    background: #FCA845;
}
.header_lp .header_comment .header_comment_right p.green{
    background: #A0C665;
}
.header_lp .header_comment.bottom {
    width: 100%;
    max-width: calc(100% - 10%);
    text-align: left;
}
.header_lp .header_comment.bottom .header_comment_bottom p{
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2.0rem;
}
.header_lp .header_comment.bottom .header_comment_bottom.right {
    text-align: right;
}
.ugc_insight_wrap .ugc_insight_wrap_inner ul.merit_list {
    width: fit-content;
    margin: 0px auto;
}
.ugc_insight_wrap .ugc_insight_wrap_inner ul.merit_list li {
    position: relative;;
    margin-bottom: 15px;
}
.ugc_insight_wrap.ugc_insight_wrap_inner ul.merit_list li p {
    font-size: 2.8rem;
    line-height: 3.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner ul.merit_list li p i {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 5px;
}
/*-- MainPhot*/
.ugc_insight_wrap .header_img_area img{
    width: 100%;
    object-fit: contain;
}
.ugc_insight_wrap .header_img_area .text_area{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 75px 0 60px;
}
.ugc_insight_wrap .header_img_area .text_area h2{
    font-size: 7.0rem;
    color: #ffffff;
    text-shadow:1px 1px 3px rgba(0,0,0,0.5);
}
.ugc_insight_wrap .header_img_area .text_area h2::before{
    content: "";
    display: inline-block;
    width: 101px;
    height: 67px;
    background: url('../img/boost_reppy.svg') no-repeat;
    background-size: contain;
    padding-right: 10px;
}
.ugc_insight_wrap .header_img_area .text_area h3{
    font-size: 3.2rem;
    color: #ffffff;
    text-shadow:1px 1px 3px rgba(0,0,0,0.5);
    padding: 76px 0 20px;
    text-align: center;
    line-height: 4.5rem;
}
/*-- /MainPhot */

.ugc_insight_wrap .ugc_insight_wrap_inner {
    width: 100%;
    max-width: calc(100% - 10%);
    margin: 80px auto;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top {
    margin-top: 60px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.sp_tab_area {
    display: none;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .detail-area {
    margin-bottom: 60px;
}
.ugc_insight_wrap.bg_ugc {
    margin-top: 100px;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner.bg_white {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: calc(100% - 20px);
    padding: 10px 2% 40px;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner h4 {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: left;
    padding-top: 0;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner.ugc_insight-top p,
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner.ugc_insight-top h3 {
    color: #ffffff;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .text-area {
    width: 80%;
    margin-left: 20%;
    position: relative;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .text-area::before {
    content: "";
    display: inline-block;
    width: 288px;
    height: 296px;
    background: url("../img/ugc02_before.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: -115px;
    left: -320px;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .text-area h3 {
    margin-bottom: 40px;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect {
    width: 65%;
    color: #1B224C;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect h3 {
    width: 353px;
    background: #E0E0E0;
    border-radius: 2.0rem;
    color: #1B224C;
    font-size: 1.6rem;
    line-height: normal;
    text-box-trim: trim-both;
    position: relative;
    left: 20px;
    top: -18px;
    padding: 8px;
    font-weight: 600;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect ul li {
    width: 100%;
    max-width: calc(100% / 4 - 50px);
    text-align: center;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect ul li p {
    font-size: 1.3rem;
    font-weight: 600;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect img.kpi-img {
    margin-left: 50px;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect-text {
    background: #F2F6FC;
    border-radius: 0.8rem;
    width: 30%;
    margin-left: 30px;
    display: inline-flex;
    justify-content: center;
}
.ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect-text p {
    padding: 50px 0;
}
/*トップ*/
.ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h3 {
    font-weight: 600;
    font-size: 4.2rem;
    width: fit-content;
    text-align: left;
    margin: 0;
    position: relative;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h2 {
    width: 100%;
    max-width: fit-content;
    padding-right: 10%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    font-weight: 600;
    color: #1B224C;
    border-bottom: 1px solid #00499E;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h2 span.f-blue {
    font-size: 4.4rem;
    font-weight: 600;
    color: #009FE8;
    margin-right: 10px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top img.function {
    width: 205px;
    margin-bottom: 40px;
    position: relative;
    left: -30px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h3 .text {
    font-size: 1.8rem;
    color: #009FE8;
}
.ugc_insight_wrap .ugc_insight_wrapp_inner.ugc_insight-top h4 {
    font-size: 2.0rem;
    line-height: 4.6rem;
    font-weight: 600;
    text-align: left;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h4 .f_blue {
    font-size: 2.6rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top p {
    font-weight: 600;
    font-size: 2.0rem;
    line-height: 1.6;
    font-feature-settings: "palt";
}
.ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top p .f_blue {
    font-size: 2.6rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top p .f_line {
    border-bottom: 1px solid #282828;
}
/* ページトップコース */
.ugc_insight_wrap .ugc_insight_wrap_inner.new_plan {
    position: relative;
    z-index: 1;
}
/*case list*/
.ugc_insight_wrap .ugc_insight_wrap_inner .case_item {
    width: 100%;
    max-width: calc(100% - 42%);
    margin: 0 auto;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .main_img{
    width: 100%;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .main_img img{
    width: 100%;
    object-fit: contain;
}
.ugc_insight_wrap .ugc_insight_wrap_inner h3{
    font-size: 4.4rem;
    text-align: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner h4{
    font-size: 1.6rem;
    text-align: center;
    padding: 20px 0;
    line-height: 3.5rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .main_img{
    padding: 30px 0;
}
/* ここがポイント */
.item-box {
    width: 100%;;
    margin: 40px auto;
}
.item-box-inner {
    width: 100%;
    max-width: calc(100% - 40px);
    padding: 35px 20px;
    border-radius: 5.0rem;
    background: #ffffff;
    margin-bottom: 30px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item {
    padding-bottom: 100px;
    margin-bottom: 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item.post {
    margin-top: 100px;
    padding-bottom: 40px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .item-box h3.check {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 60px;
    position: relative;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .item-box h3.check::before {
    content: "";
    display: inline-block;
    background: url("../img/boost_reppy.svg") no-repeat;
    background-size: contain;
    width: 78px;
    height: 60px;
    position: absolute;
    left: -95px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .item-box h3.check .marker {
    background: linear-gradient(transparent 60%, #FCE7E7 60%);
}
.ugc_insight_wrap .ugc_insight_wrap_inner .item-box-inner h3 {
    font-size: 2.4rem;
    text-align: left;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .item-box-inner h3 p {
    position: relative;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .item-box-inner h3 p::after {
    content: "";
    display: inline-block;
    background: url("../img/content01.jpg") no-repeat;
    background-size: contain;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: absolute;
    left: -40px;
    top: -15px;
}
/*マイクロインフルエンサー投稿見出し*/
.ugc_insight_wrap .ugc_insight_wrap_midashi {
    width: 100%;
    background: url("../img/post_bg_pc.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}
.ugc_insight_wrap .ugc_insight_wrap_midashi h3.post {
    height: 200px;
    font-size: 3.6rem;
    font-weight: 600;
    font-feature-settings: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}
/*大量の消費者投稿*/
.ugc_insight_wrap .ugc_insight_wrap_inner .flex-wrap-area {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .flex-wrap-area a,
.ugc_insight_wrap .ugc_insight_wrap_inner.post .flex-wrap-area .item-box-inner {
    width: 100%;
    max-width: calc(100% / 2 - 16px);
    height: 45px;
    margin: 5px auto;
    padding: 0 8px;
    background: #F8F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .change_btn_inner .flex-wrap-area .item-box-inner {
    background: #F8F0F0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .flex-wrap-area a.bg_pink,
.ugc_insight_wrap .ugc_insight_wrap_inner.post .flex-wrap-area a .item-box-inner,
.ugc_insight_wrap .ugc_insight_wrap_inner.post .flex-wrap-area .item-box-inner.bg_pink {
    background: #FDE3E3;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .item-box .post-content-inner {
    width: 100%;
    margin: 25px auto;
    text-align: left;
    display: flex;
    align-items: flex-start;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .item-box .post-content-inner p {
    width: fit-content;
    position: relative;
    font-size: 1.4rem;
    padding-bottom: 10px;
    margin-right: 10px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .item-box .post-content-inner p .choice {
    display: inline-block;
    background: #FDE3E3;
    border-radius: 0.2rem;
    padding: 2px 5px;
    text-align: center;
    margin-right: 3px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .item-box .post-content-inner p .match {
    display: inline-block;
    background: #FFF5EF;
    border-radius: 0.2rem;
    padding: 2px 5px;
    text-align: center;
    margin-right: 3px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item.post .item-box h3.post {
    color: #04B795;
    margin-bottom: 50px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .flex-wrap-area .item-box-inner:nth-child(n + 2) {
    width: 100%;
    max-width: calc(100% / 2 - 16px);
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .title-match .flex-wrap-area .item-box-inner:first-child {
    width: 100%;
    max-width: calc(100% / 2 - 16px);
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .choice .flex-wrap-area .item-box-inner:first-child {
    max-width: calc(100% - 16px);
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .choice .flex-wrap-area .item-box-inner:first-child .recommend {
    background: #D3AF37;
    color: #ffffff;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    width:62px;
    padding: 5px;
    text-align: center;
    margin-right: 15px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .choice .change_btn_inner_bottom {
    margin-top: 20px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .choice .change_btn_inner_bottom h3 {
    font-size: 1.8rem;
    font-weight: 600;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .choice .link_area,
.ugc_insight_wrap .ugc_insight_wrap_inner.post .title-match .link_area {
    padding: 15px 0;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .choice .link_area a,
.ugc_insight_wrap .ugc_insight_wrap_inner.post .title-match .link_area a {
    text-decoration: underline;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .flex-wrap-area a .item-box-inner {
    width: 100%;
    max-width: calc(100% - 24px) !important;
    box-shadow: none;
    margin: 0;
    padding: 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .item-box-inner h3 {
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .item-box-inner h3.green_check::before {
    width: 18px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
    left: -8px;
    margin-right: 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .item-box-inner h3.popular::before {
    position: absolute;
    width: 40px;
    height: 40px;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .item-box-inner h3 p {
    text-align: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.post .flex-wrap-area .item-box-inner h3 p::after {
    background: none;
}
/*ボタン切り替え*/
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn {
    display: flex;
    justify-content: space-around;
    margin-top: 80px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner {
    width: 100%;
    max-width: calc(100% / 2 - 31px);
    background: #ffffff;
    padding: 30px 15px 60px;
    box-shadow: 0px 2px 6px -1px rgba(0, 0, 0, 0.25);
    border-radius: 0.8rem;
    position: relative;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner.choice.is-active {
    border: 1px solid #DC0032;
    box-shadow: 0px 0px 6px 3px rgba(186, 0, 0, 0.25);
}
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner.choice.is-active::before {
    content: "";
    display: inline-block;
    background: url("../img/red_change_arrow.png") no-repeat;
    background-size: contain;
    width: 42px;
    height: 30px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -25px;
    z-index: 1;
    filter: drop-shadow(1px 4px 2px #BA000040);
    /* filter: drop-shadow(0px 0px 6px 3px rgba(186, 0, 0, 0.25)); */
}
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner.title-match.is-active {
    border: 1px solid #00ACBA;
    box-shadow: 0px 0px 6px 3px rgba(0, 172, 186, 0.25);
}
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner.title-match.is-active::before {
    content: "";
    display: inline-block;
    background: url("../img/green_change_arrow.png") no-repeat;
    background-size: contain;
    width: 42px;
    height: 30px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -25px;
    z-index: 2;
    filter: drop-shadow(1px 4px 2px #00ACBA40);
}
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn button,
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .title {
    width: 100%;
    border: none;
    margin: 0 auto 10px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn button:hover {
    /* opacity: 0.4; */
    cursor: pointer;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn button p,
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .title p {
    font-size: 3.6rem;
    font-weight: 600;
    padding-bottom: 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn button p {
    border-bottom: 1px solid #ffffff;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner p.content {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner p.content .marker{
    background: linear-gradient(transparent 60%, #FCE7E7 60%);
}
/*slider*/
/*slider*/
.swiper{ display: none;}
.swiper.swiper-container-initialized{ display: block;}
.swiper-slide:not(.swiper-slide-visible) .slide {
    pointer-events: none;
    opacity: 0.3;
  }
.feature_area{
    width: 100%;
    overflow: hidden;
}
.feature_area .feature_area_inner {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
}
.swiper-wrapper {
    transition-timing-function: linear;
}
.swiper-slide:nth-child(even){
    margin-top: 60px;
}
/* 画像のサイズ調整 */
.swiper-slide img {
    height: auto;
    width: 100%;
    transition: 0.3s;
    opacity: 0.9;
    box-shadow: 0px 1px 12px 7px rgba(0, 0, 0, 0.15);
}
.swiper-slide-active img {
    opacity: 1;
}
/* 0start plan */
.new_plan {
    width: 100%;
}
.new_plan .new_plan_inner {
    width: 100%;
    max-width: 1100px;
    padding: 15px;
    margin: 0 auto;
    border: 1px solid #D5D5D5;
    border-radius: 0.8rem;
}
.new_plan p.new_plan {
    width: 130px;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 5px 10px;
    text-align: center;
    color: #FCA845;
    background: #FFF5EF;
    border-radius: 0.2rem;
    position: absolute;
    top: -15px;
    
}
.new_plan_inner .new_plan_inner_flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 0;
    position: relative;
}
.new_plan_inner .new_plan_inner_flex_row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 35px;
}
.new_plan .new_plan_inner .new_plan_detail {
    width: 60%;
}
.new_plan .new_plan_inner .new_plan_detail p{
    font-size: 1.8rem;
    font-weight: 500;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan h3.tieup_strong {
    width: fit-content;
    font-size: 2.2rem;
    font-weight: 600;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .new_plan_price {
    width: fit-content;
    font-size: 2.6rem;
    font-weight: 500;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .new_plan_price .koteihi {
    display: flex;
    font-size: 2.6rem;
    font-weight: 600;
    align-items: center;
    margin-right: 15px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .new_plan_price .price_area{
    position: relative;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .new_plan_price .price_area img {
    width: 100%;
    object-fit: contain;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .post_text {
    width :100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    color: #333333;
    font-size: 1.6rem;
    font-weight: 600;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .post_text .big_price {
    font-size: 5.6rem;
    color: #04B795;
    font-weight: 600;
    margin-right: 4px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .post_text .big_price_yen {
    font-size: 3.2rem;
    color: #04B795;
    font-weight: 700;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .post_text .big_price_kara {
    font-size: 2.4rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .small_text{
    width: 100%;
    max-width: 100%;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: normal;
    margin: 0 auto;
}

/* タイアップブースト 30万 */
.new_plan.first .new_plan_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan.first {
    background: #EFEFEF;
    border-radius: 0.8rem;
    padding-bottom: 20px;
    width: 100%;
    max-width: calc(100% - 55%);
    margin: 0 auto;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .fukidashi {
    position: relative;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .fukidashi::before {
    content: "";
    display: inline-block;
    background: url("../img/first_fukidashi_before.svg") no-repeat;
    background-size: contain;
    width: 120px;
    height: 98px;
    position: absolute;
    left: -100px;
    top: -5px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .fukidashi::after {
    content: "";
    display: inline-block;
    background: url("../img/first_fukidashi_after.svg") no-repeat;
    background-size: contain;
    width: 140px;
    height: 95px;
    position: absolute;
    right: -115px;
    top: -5px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan.first .new_plan_price .koteihi {
    font-size: 2.1rem;
    position: relative;
    top: 0;
    left: initial;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan.first .new_plan_price .price_area {
    position: relative;
    top: initial;
    text-align: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan.first .new_plan_price .price_area img {
    width: 125px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.new_plan .link_area {
    padding: 40px 0 20px;
}
.ugc_insight_wrap .banner-area {
    width: 100%;
    max-width: calc(100% - 10%);
    margin: 80px auto;
}
.ugc_insight_wrap .banner-area img {
    width: 100%;
    object-fit: contain;
}
/*タイアップブースト　ストロングポイント*/
.ugc_insight_wrap .ugc_insight_wrap_inner.strong {
    text-align: center;
    padding: 40px 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.strong h3.tieup_strong{
    font-size: 2.4rem;
    color: #333333;
    font-weight: 600;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .new_plan h3.tieup_strong::before,
.ugc_insight_wrap .ugc_insight_wrap_inner.strong h3.tieup_strong::before {
    content: "";
    display: inline-block;
    width: 36px;
    height: 26px;
    background: url('../img/boost_reppy.svg') no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.strong h3.tieup_strong::after{
    content: "";
    display: inline-block;
    width: 35px;
    height: 44px;
    background: url('../img/i-strong.svg') no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-left: 10px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area{
    width: 100%;
    max-width: 670px;
    margin: 20px auto 5px;
    display: flex;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi01 p,
.ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi02 p{
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 500;
    line-height: initial;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi02 p span.fukidashi_sub{
    font-size: 1.2rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi01{
    width: 100%;
    max-width: 294px;
    margin: 5px;
    background: #04B795;
    padding: 20px 10px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi01::after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    right: 54px;
    bottom: -18px;
    border-style: solid;
    border-color: #04B795 transparent transparent transparent;
    border-width: 15px 0 4px 20px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi02{
    width: 100%;
    max-width: 366px;
    margin: 5px;
    background: #04B795;
    padding: 15px 10px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi02::after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 54px;
    bottom: -13px;
    border-style: solid;
    border-color: transparent transparent transparent #04B795;
    border-width: 0px 0px 15px 20px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.strong .user_kakusan h3 span.h3_no{
    font-size: 6.3rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.strong .user_kakusan h4 {
    padding: 10px 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.strong .user_kakusan h4 span.h4_no {
    font-size: 3.8rem;
}
/*-- ポテンシャル --*/
.ugc_insight_wrap .ugc_insight_wrap_inner .title_area{
    padding: 20px 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .title_area h3{
    width: 800px;
    margin: 0 auto;
    font-size: 3.2rem;
    position: relative;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .title_area h3::after{
    content: "";
    display: inline-block;
    width: 96px;
    height: 96px;
    background: url('../img/mark01.svg') no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .title_area h4{
    font-size: 1.8rem;
    padding: 15px 0 0;
    line-height: 3.0rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .ugc_insight_wrap_inner_inner {
    width: 100%;
    max-width: 400px;
    padding: 15px 0 10px;
    text-align: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .ugc_insight_wrap_inner_inner .flex {
    width: 280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
/* .ugc_insight_wrap .ugc_insight_wrap_inner .right_box .ugc_insight_wrap_inner_inner .flex {
    margin: 35px auto;
} */
.ugc_insight_wrap .follow_no {
    display: flex;
    /* flex-direction: column; */
    width: 100%;
    max-width: 100%;
    margin: 60px auto;
}
.ugc_insight_wrap .follow_no h4 {
    width: 100%;
    border-radius: 1.0rem;
    background: #1B224C;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
}
.ugc_insight_wrap .follow_no h3 {
    display: flex;
    align-items: center;
    text-align: center;
    height: 40px;
    color: #1B224C;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 20px auto 10px;
}
.ugc_insight_wrap .follow_no .all_no{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
}
.ugc_insight_wrap .follow_no .all_no.flex {
    display: flex;
    flex-direction: initial;
}
.ugc_insight_wrap .follow_no .all_no.flex.bg_pink {
    width: 100%;
    max-width: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.6rem;
    margin: 15px 0;
    position: relative;
}
.ugc_insight_wrap .follow_no .all_no.flex.bg_pink::after {
    content: "";
    border: 28px solid transparent;
    border-bottom: 28px solid #F8F0F0;
    z-index: 2;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}
.ugc_insight_wrap .follow_no .all_no.flex.bg_pink p {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
}
.ugc_insight_wrap .follow_no .all_no.flex.bg_pink .about {
    font-size: 2.8rem;
    font-weight: 500;
    color: #DC0032;
    padding-top: 11px;
}
.ugc_insight_wrap .follow_no .all_no.flex.bg_pink .no {
    color: #DC0032;
    position: relative;
    top: 4px;
}
.ugc_insight_wrap .follow_no .all_no.flex.bg_pink .no.ajust {
    position: relative;
    top: -6px;
}
.ugc_insight_wrap .follow_no .all_no.flex.bg_pink .flex {
    width: fit-content;
    display: flex;
    flex-direction: initial;
    justify-content: center;
    position: relative;
    top: -10px;
}
.ugc_insight_wrap .follow_no .all_no.flex.empty {
    height: 70px;
    display: inline-block;
}
.ugc_insight_wrap .follow_no .all_no .all_no_sp{
    display: flex;
}
.ugc_insight_wrap .follow_no .all_no .no{
    font-size: 3.6rem;
    line-height: normal;
    color: var(--green-color);
    font-weight: 700;
}
.ugc_insight_wrap .follow_no .all_no .about,
.ugc_insight_wrap .follow_no .all_no .user_no{
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px 3px;
}
.ugc_insight_wrap .follow_no .all_no .about,
.ugc_insight_wrap .follow_no .all_no .about.bottom{
    position: relative;
    top: 5px;
    padding: 5px 2px;
}
.ugc_insight_wrap .follow_no .left_box,
.ugc_insight_wrap .follow_no .right_box {
    width: 100%;
    max-width: calc(100% / 4 - 40px);
    margin: 0 auto;
    padding: 10px;
    border-radius: 1.0rem;
    background: #ffffff;
    box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ugc_insight_wrap .follow_no .left_box .mark,
.ugc_insight_wrap .follow_no .right_box .mark {
    background: #04B795;
    border-radius: 2.0rem;
    width: fit-content;
    height: 40px;
    position: absolute;
    left: 10px;
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ugc_insight_wrap .follow_no .left_box .mark p,
.ugc_insight_wrap .follow_no .right_box .mark p {
    color: #ffffff;
    font-size: 1.5rem;
    padding: 0 10px;
    font-weight: 500;
    text-align: center;
}
.ugc_insight_wrap .follow_no .left_box .ugc_insight_wrap_inner_inner,
.ugc_insight_wrap .follow_no .right_box .ugc_insight_wrap_inner_inner {
    width: 100%;
    max-width: calc(100% - 10px);
    margin: 0 auto;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .infomation_text{
    display: flex;
    align-items: center;
    padding-top: 20px;
    text-align: center;
    width: 100%;
    max-width: fit-content;
    margin: 0 auto;
}
/* 達成マーク */
.ugc_insight_wrap .follow_no .left_box .ribon,
.ugc_insight_wrap .follow_no .right_box .ribon {
    position: relative;
    width: 100%;
}
.ugc_insight_wrap .follow_no .left_box .ribon .ribon_inner,
.ugc_insight_wrap .follow_no .right_box .ribon .ribon_inner {
    width: 94px;
    height: 94px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: -30px;
    top: -30px;
}
.ugc_insight_wrap .follow_no .left_box .ribon .ribon_inner img,
.ugc_insight_wrap .follow_no .right_box .ribon .ribon_inner img {
    width: 100%;
    object-fit: contain;
} 
.ugc_insight_wrap .follow_no .left_box .ribon .ribon_inner p,
.ugc_insight_wrap .follow_no .right_box .ribon .ribon_inner p {
    font-size: 1.6rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 3.6rem;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.ugc_insight_wrap .follow_no .left_box .ribon .ribon_inner p .no-area,
.ugc_insight_wrap .follow_no .right_box .ribon .ribon_inner p .no-area {
    font-size: 5.0rem;
    font-weight: 600;
}
.ugc_insight_wrap .follow_no .left_box .ribon .ribon_inner p .value-text,
.ugc_insight_wrap .follow_no .right_box .ribon .ribon_inner p .value-text {
    font-size: 2.0rem;
}
.ugc_insight_wrap .follow_no .left_box .ribon .ribon_inner p .success,
.ugc_insight_wrap .follow_no .right_box .ribon .ribon_inner p .success {
    font-size: 2.5rem;
    position: relative;
    top: -10px;
}
/*問い合わせ*/
.ugc_insight_wrap .ugc_insight_wrap_inner .link_area{
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*メリット*/
.ugc_insight_wrap .ugc_insight_wrap_inner .tieup_info_area{
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
}
.ugc_insight_wrap .tieup_info_area .info_list {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
}
.ugc_insight_wrap .tieup_info_area .info_list.attention {
    padding-top: 20px;
    margin-bottom: 15px;
}
.ugc_insight_wrap .tieup_info_area .info_list.first{
    padding-top: 0;
}
.ugc_insight_wrap .tieup_info_area .info_list.last{
    height: 260px;
    margin-bottom: 30px;
}
.ugc_insight_wrap .tieup_info_area .bottom_area {
    margin-bottom: 50px;
}
.ugc_insight_wrap .tieup_info_area .info_list .icon_area {
    width: 160px;
    margin-right: 10px;
}
.ugc_insight_wrap .tieup_info_area .info_list .icon_area.attention {
    width: 200px;
    position: relative;
    top: -35px;
    right: 20px;
    margin-right: 0;
}
.ugc_insight_wrap .tieup_info_area .info_list .icon_area img{
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
}
.ugc_insight_wrap .tieup_info_area .info_list.attention .text_area {
    margin-left: 0;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area {
    width: 100%;
    max-width: calc(100% - 160px);
    margin-left: 20px;
    text-align: left;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area h3.midashi {
    font-size: 2.4rem;
    font-weight: 500;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area h3.midashi .sub {
    font-size: 1.7rem;
    font-weight: 500;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area p.info {
    font-size: 2.4rem;
    font-weight: 500;
    margin-left: 35px;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area p.info span.sub{
    font-size: 1.4rem;
    font-weight: 400;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area h3.green_check{
    font-size: 3.2rem;
    color: var(--green-color);
    text-align: left;
    position: relative;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area h3.green_check p{
    padding-left: 35px;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area h3.green_check.tokkyo{
    position: relative;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area h3.green_check.tokkyo::after{
    content: "";
    display: inline-block;
    width: 96px;
    height: 96px;
    background: url('../img/mark03.svg') no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;

}
.ugc_insight_wrap .tieup_info_area .info_list .text_area h3.green_check.minimum{
    position: relative;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area h3.green_check.minimum .sub{
    font-size: 1.6rem;
    color: #333333;
    position: absolute;
    left: 30px;
    top: 60px;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area p.content-text {
    font-size: 2.4rem;
    font-weight: 500;
    margin-left: 30px;
    margin-top: 20px;
}
.ugc_insight_wrap .tieup_info_area.first {
    margin-top: 80px;
}
.ugc_insight_wrap .tieup_info_area.last {
    margin-bottom: 80px;
}
/*ステマ対策*/
.ugc_insight_wrap .tieup_info_area .info_list .text_area img.stema_sp_man{
    display: none;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area h4.stema{
    position: relative;
    width: 630px;
    margin: 0 auto;
    font-size: 2.4rem;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info{
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    padding: 0;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .left_area{
    width: 100%;
    max-width: calc(100% - 185px);
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .left_area .tokkyo{
    position: relative;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .left_area .tokkyo img{
    width: 100%;
    max-width: 332px;
    object-fit: contain;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .left_area .tokkyo p{
    padding-top: 10px;
    padding-left: 15px;
    font-size: 1.8rem;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .left_area .tokkyo::after{
    content: "";
    display: inline-block;
    width: 96px;
    height: 96px;
    background: url('../img/mark03.svg') no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
}
.ugc_insight_wrap .tieup_info_area .tieup_info_area_inner h3.attention {
    width: fit-content;
    margin: 0 auto;
    margin-left: 30px;
    position: relative;
    font-size: 2.8rem;
    color: #04B795;
    font-weight: 500;
}
.ugc_insight_wrap .tieup_info_area .tieup_info_area_inner h3.attention .sub_text {
    font-size: 2.0rem;
    color: #333333;
}

.ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .left_area .system_list {
    padding-top: 30px;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .left_area .system_list p,
.ugc_insight_wrap .tieup_info_area.bg_yellow .info_list .text_area .system_info .left_area .system_list p {
    width: 100%;
    max-width: calc(100% - 30px);
    background: #F8F8F8;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    font-size: 2.4rem;
}
.ugc_insight_wrap .tieup_info_area.bg_yellow .system_list {
    width: 496px;
    margin: 0 auto;
}
.ugc_insight_wrap .tieup_info_area.bg_yellow .info_list .text_area .system_info .left_area .system_list p {
    background: #ffffff;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .left_area .system_list p.check::before,
.ugc_insight_wrap .tieup_info_area.bg_yellow .system_list p.check::before {
    content: "";
    display: inline-block;
    width: 27px;
    height: 27px;
    background: url('../img/red_check.svg') no-repeat;
    background-size: contain;
    position: relative;
    vertical-align: middle;
    top: -3px;
    padding-right: 10px;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .right_area{
    width: 190px;
    margin-left: 20px;
}
.ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .right_area img{
    width: 131px;
    object-fit: contain;
}
/*プロモーション*/
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 0 60px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion h3{
    font-size: 2.4rem;
    color: #04B795;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion h4{
    width: 100%;
    max-width: 228px;
    height: 40px;
    margin: 15px auto 30px;
    padding: 10px;
    font-size: 1.8rem;
    background: #FCCB45;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion h4::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #FCCB45;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion .promotion_info{
    width: 100%;
    display: flex;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion .promotion_info .left_area,
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion .promotion_info .right_area{
    width: 100%;
    max-width: calc(100% / 2);
    margin: 0 10px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion .promotion_info .left_area p,
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion .promotion_info .right_area p{
    width: 100%;
    border-radius: 8px;
    padding: 22px 10px;
    text-align: center;
    font-size: 2.4rem;
    line-height: initial;
    color: #ffffff;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion .promotion_info .left_area p span.sub_text,
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion .promotion_info .right_area p span.sub_text {
    font-size: 1.8rem;
}
/*リアルタイム効果測定*/
.ugc_insight_wrap .ugc_insight_wrap_inner .real_time{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
    display: flex;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .real_time .icon_area{
    width: 76px;
    margin-right: 10px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .real_time .icon_area img{
    width: 100%;
    object-fit: contain;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .real_time .info_area {
    position: initial;
    text-align: left;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .real_time .info_area h3,
.ugc_insight_wrap .ugc_insight_wrap_inner .cospa_area .info_area h3{
    font-size: 2.4rem;
    text-align: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .real_time .info_area h3{
    text-align: left;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .real_time .info_area h4{
    width: 460px;
    margin: 0 auto;
    font-size: 2.4rem;
    padding: 5px 0 10px;
    text-align: left;
}
/*多様なシーン*/
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion .muluti_info {
    display: flex;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion .muluti_info .img_area{
    width: 323px;
    margin-right: 10px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion .muluti_info .img_area img{
    width: 100%;
    object-fit: contain;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion .muluti_info .right_area{
    width: 100%;
    max-width: calc(100% - 330px);
    padding: 20px 0;
    margin-left: 20px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.promotion .muluti_info .right_area p{
    font-size: 2.2rem;
}
/*コスパ*/
.ugc_insight_wrap .ugc_insight_wrap_inner .cospa_area{
    margin-top: 20px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .cospa_area .price_img{
    padding: 20px 0;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .cospa_area .price_img img{
    width: 350px;
    object-fit: contain;
}
/*実績*/
.ugc_insight_wrap .ugc_insight_wrap_inner.performance {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 0 60px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance h4.kana{
    margin: 0 auto 10px;
    padding: 5px 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -15px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner{
    width: 100%;
    display: flex;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item{
    width: 100%;
    max-width: calc(100% / 3);
    margin: 15px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.25);
    position: relative;
    color: #04B795;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item::before{
    content: "";
    display: block;
    padding-top: 100%;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content h4{
    width: 80%;
    margin: 0 auto 15px;
    padding: 5px;
    background: #04B795;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.6rem;
    text-align: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content h3{
    width: 100%;
    max-width: fit-content;
    margin: 0 auto;
    font-size: 7.0rem;
    line-height: 5.5rem;
    align-items: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content h3.mark_area{
    width: 100%;
    max-width: fit-content;
    margin: 0 auto;
    font-size: 7.0rem;
    position: relative;
    line-height: 5.5rem;
    align-items: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content h3.mark_area::after{
    position: absolute;
    right: -15px;
    top: -15px;
    font-size: 1.6rem;
    content: "※";
    color: #04B795;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content h3 .about{
    font-size: 3.7rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content h3 .mark {
    font-size: 7.0rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content .sub{
    font-size: 4.9rem;
    font-weight: 700;
    line-height: initial;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content .sub.sp_ajust{
    position: relative;
    top: -5px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .comment {
    margin-top: 15px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.performance .comment p{
    font-size: 1.2rem;
}
/*体験レビュー*/
.choice-icon,
.title-match-icon {
    position: relative;
    top: 0;
}
.choice-icon::before {
    content: "";
    display: inline-block;
    width: 44px;
    height: 44px;
    background: url("../img/icon-choice.svg") no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -52px;
}
.title-match-icon::before {
    content: "";
    display: inline-block;
    width: 44px;
    height: 44px;
    background: url("../img/icon-matching.svg") no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -52px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.review {
    padding: 0;
    margin: 0 auto 60px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.review h3.mark {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.review .review-post-img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-right: 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 0.8rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.review .review-post-img h4 {
    width: 100%;
    font-size: 2.8rem;
    font-weight: 500;
    text-align: left;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.review .review-post-img img {
    width: 570px;
    object-fit: contain;
    margin: 0 auto;
}
.ugc_insight_wrap.post-check {
    margin: 25px auto 0;
}
.ugc_insight_wrap.post-check.promotion {
    margin-bottom: 70px;
}
/*採用企業*/
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction {
    padding: 10px 0;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction{
    padding: 40px 0 100px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction h3{
    font-size: 2.4rem;
    font-weight: 600;
    text-align: left;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction table {
    width: 100%;
    border: 2px solid #282828;
    margin: 30px auto 50px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction table th,
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction table td {
    border: 1px solid #282828;
    vertical-align: middle;
    padding: 15px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction table th p,
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction table td p {
    font-size: 1.6rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction table td p {
    font-weight: 500;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction table th,
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction table td {
    font-size: 1.6rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction table th {
    background: #b5d1ec;
    width: 50%;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction table td.no-need {
    background: #e5e5e5;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area {
    width: 100%;
    max-width: calc(100% - 10%);
    margin: 0 auto;
    padding: 20px 20px 40px;
    background: #F2F6FC;
    border-radius: 1.6rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area h3 {
    width: 670px;
    height: 60px;
    margin: 20px auto 30px;
    background: #009FE8;
    border-radius: 5.0rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area h3 p {
    width: 100%;
    height: 60px;
    font-size: 3.0rem;
    font-weight: 600;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area {
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-name {
    width: 40%;
    color: #00499E;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-name p {
    font-size: 3.6rem;
    font-weight: 600;
    position: relative;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-name p::before {
    content: "●";
    display: inline-block;
    font-size: 1.8rem;
    color: #00499E;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-price {
    width: 60%;
    color: #00499E;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-price p {
    font-size: 2.6rem;
    font-weight: 600;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-price p .price {
    font-size: 4.4rem;
    font-weight: 600;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .trial-detail {
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .trial-detail p {
    font-size: 2.4rem;
    font-weight: 600;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .trial-detail p.ex {
    font-size: 1.4rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area-bottom {
    width: 100%;
    max-width: fit-content;
    margin: 80px auto 0;
    position: relative;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area-bottom::before {
    content: "";
    display: inline-block;
    width: 223px;
    height: 184px;
    background: url("../img/trial_bottom.png") no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: -200px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area-bottom p {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area-bottom .btn_area p {
    font-size: 1.8rem;
    margin-bottom: 0;
}
/*事例*/

.ugc_insight_wrap .ugc_insight_wrap_inner .fan_zirei_title{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding-top: 30px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .fan_zirei_title h3{
    font-size: 2.2rem;
    color: #2A3242;
    font-weight: 600;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .fan_zirei_title img{
    width: 100%;
    max-width: 200px;
    object-fit: contain;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .fan_zirei_title .link_area{
    padding-bottom: 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .zirei_link_area{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .zirei_link_area p{
    font-size: 1.6rem;
    font-weight: 600;
    padding: 20px 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .fan_zirei_photo{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .fan_zirei_photo img{
    width: 100%;
    object-fit: contain;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.appeal {
    width: 100%;
    margin: 90px auto;
    display: flex;
    justify-content: flex-end;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area {
    width: 100%;
    max-width: calc(100% - 30%);
}
.ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner {
    width: 100%;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner h3.fukidashi.yellow {
    background: #FFEC00;
    border-radius: 2.0rem;
    width: 384px;
    padding: 5px 0;
    margin: 0 auto;
    position: relative;
    margin-left: 15px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner h3.fukidashi.yellow p {
    color: #1B224C;
    font-size: 1.8rem;
    padding-left: 15px;
    font-weight: 600;
    position: relative;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner h3.fukidashi.yellow p::after {
    content: "";
    display: inline-block;
    background: url("../img/content03.jpg") no-repeat;
    background-size: contain;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: absolute;
    left: -30px;
    top: -15px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner h4 {
    font-size: 3.0rem;
    line-height: 4.5rem;
    font-weight: 600;
    text-align: left;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner p {
    font-size: 1.8rem;
    font-weight: 600;
}
.ugc_insight_wrap .ugc_insight_wrap_inner h3{
    font-size: 3.6rem;
    font-weight: 500;
}
.ugc_insight_wrap .ugc_insight_wrap_inner h3 img {
    width: 300px;
    object-fit: contain;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item {
    margin-top: 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box {
    margin-top: 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.type2 {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: left;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.fukidashi {
    background: #1B224C;
    border-radius: 2.0rem;
    width: 384px;
    padding: 5px 0;
    margin: 0 auto;
    position: relative;
    top: -20px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.fukidashi.yellow {
    background: #FFEC00;
    margin-left: 30px;
    top: 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.fukidashi.yellow::after {
    display: none;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.fukidashi::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    border: 15px solid transparent;
    border-top: 15px solid #1B224C;
    z-index: 2;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.fukidashi p {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.fukidashi.yellow p {
    color: #1B224C;
    padding-left: 35px;
    font-size: 1.8rem;
}
.ugc_insight_wrap.bg_gray_muluti_reppy .ugc_insight_wrap_inner.item .item-box .item-box-inner {
    margin-top: 50px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box .item-box-inner {
    margin-top: 0;
    max-width: 100%;
    background: transparent;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box .item-box-inner.reverce {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 0;
    padding: 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box .text_area {
    width: 62%;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box .img_area {
    width: 30%;
    text-align: right;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box .img_area img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 30px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point li {
    margin-bottom: 30px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point li h3.green_check {
    position: relative;
    font-size: 2.6rem;
    font-weight: 600;
    text-align: left;
    margin-left: 60px;
    margin-bottom: 15px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point li h3.green_check .sub_text {
    font-size: 1.2rem;
    font-weight: 500;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point li h3.green_check::before {
    width: 40px;
    height: 40px;
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}
.ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point li p {
    font-size: 1.8rem;
    font-weight: 600;
    margin-left: 10px;
}
/*事例リンクボタン色*/
.ugc_insight_wrap .ugc_insight_wrap_inner .btn{
    width: 100%;
    max-width: 603px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .btn p{
    font-size: 2.2rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner .btn p::after{
    content: "";
    display: inline-block;
    position: relative;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    position: absolute;
    top: 25px;
    right: 40px;
}
/* CASE */
.ugc_insight_wrap .follow_no .left_box,
.ugc_insight_wrap .follow_no .right_box {
    width: 100%;
    max-width: calc(100% - 32px);
    margin-bottom: 30px;
    margin: 0 15px;
}
/*リアルタイム効果測定*/
.ugc_insight_wrap .ugc_insight_wrap_inner.real_time{
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 50px 0 10px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.real_time .item_box{
    display: flex;
    align-items: center;
    justify-content: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.real_time .item_box .icon_area{
    padding-right: 15px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.real_time .item_box .item_text_area{
    text-align: left;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.real_time .item_box .icon_area img{
    width: 100%;
    object-fit: contain;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.real_time .item_box h3{
    font-size: 2.4rem;
    text-align: left;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.price {
    padding: 60px 0;
    position: relative;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.price::before {
    content: "";
    display: inline-block;
    width: 220px;
    height: 210px;
    position: absolute;
    background: url("../img/hirometer05.svg") no-repeat;
    background-size: contain;
    top: 65%;
    transform: translateY(-50%);
    left: 60px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.price h3 {
    font-size: 3.6rem;
    font-weight: 600;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.price .text-area {
    margin: 50px auto 25px;
    text-align: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.price .text-area p {
    font-size: 2.6rem;
    font-weight: 600;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.price .price_bottom{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.price .price_bottom p{
    font-size: 1.2rem;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.plus {
    padding: 60px 0;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.plus h3 img {
    width: 526px;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.plus .text-area {
    margin: 50px auto;
    text-align: center;
}
.ugc_insight_wrap .ugc_insight_wrap_inner.plus .text-area p {
    font-size: 2.6rem;
    font-weight: 600;
}
/*フッター*/
.fotter{
    width: 100%;
    border-top: 1px solid #EFEFEF;
}
.fotter .fotter_inner{
    width: 100%;
    max-width: calc(100% - 16px);
    margin: 20px auto;
    font-size: 1.4rem;
    text-align: center;
}
.fotter .fotter_inner h4{
    font-weight: 400;
}
/*スクロールボタン*/
#scroll-to-top-btn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 50px;
    width: 50px;
    color: #FFF;
    font-size: 2.4rem;
    background-color: #04B795;
    border: none;
    border-radius: 50%;
    outline: none;
    opacity: 0;
    transition-duration: 0.5s;
    z-index: 11;
    -webkit-transform: translate3d(0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pc_hidden{
    display: none;
  }
/* 料金テーブル */
table.price_table{
    width: 100%;
    font-size: 1.8rem;
    border: 1px solid #BDBEBF;
    margin-top: 30px;
    margin-bottom: 60px;
}
table.price_table th {
    width: 40%;
    vertical-align: middle;
    background: #FFF5EF;
    padding: 10px;
    font-weight: 400;
    border: 1px solid #BDBEBF;
}
table.price_table th p,
table.price_table td p {
    font-weight: 500;
    padding: 0;
}
table.price_table th.text-left {
    text-align: left;
}
table.price_table tr.sp_none{
    display: none;
}
table.price_table th p.b_reppy::before{
    content: "";
    display: inline-block;
    width: 53px;
    height: 41px;
    background: url('../img/boost_reppy.svg') no-repeat;
    background-size: contain;
    margin-right: 10px;
    vertical-align: middle;
}
table.price_table td{
    width: 60%;
    text-align: left;
    vertical-align: middle;
    padding: 10px;
    border: 1px solid #BDBEBF;
}
table.price_table td.green{
    color: var(--green-color);
    font-weight: 500;
}
table.price_table .sub_text {
    font-size: 1.3rem;
    margin-left: 5px;
}
@media screen and ( min-width: 1200px ) {
    .header_lp .header_lp_sub_title {
        max-width: calc(100% - 20%);
    }
    .header_lp .header_img_area h2 {
        max-width: calc(100% - 20%);
        top: 0;
    }
    .bg_gray_reppy {
        background-size: 35%;
    }
    .header_lp .header_comment {
        max-width: 1000px;
    }
    .ugc_insight_wrap .follow_no {
        max-width: 1200px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner,
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner.bg_white  {
        max-width: 1000px;
    }
    .ugc_insight_wrap .banner-area {
        max-width: 750px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.post,
    .ugc_insight_wrap .ugc_insight_wrap_inner.review,
    .ugc_insight_wrap .ugc_insight_wrap_inner.change-btn {
        max-width: 1000px;
    }
    .header_lp .header_comment .header_comment_left {
        margin-left: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap.ugc_insight_wrap_inner .effect.possible .detail-area::before {
        left: -135px;
        width: 165px;
        height: 400px;
    }
}
@media screen and (  max-width: 1024px ) {
    .ugc_insight_wrap .ugc_insight_wrap_inner.review .review-post-img {
        width: 100%;
        max-width: calc(100% - 10%);
        margin: 50px auto;
    }
    .ugc_insight_wrap .follow_no {
        display: flex;
        flex-wrap: wrap;
    }
    .ugc_insight_wrap .follow_no .left_box,
    .ugc_insight_wrap .follow_no .right_box {
        width: 100%;
        max-width: calc(100% / 2 - 40px);
        margin-bottom: 30px;
    }
    .ugc_insight_wrap .follow_no .left_box .mod-mb0,
    .ugc_insight_wrap .follow_no .right_box .mod-mb0 {
        margin-bottom: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h3::after {
        width: 220px;
        height: 135px;
        right: -220px;
    }
}
@media screen and ( max-width: 980px ) {
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .text-area::before {
        display: none;
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .text-area {
        width: 100%;
        margin-left: 0;
    }
}
@media screen and ( max-width: 940px ) {
    .header_lp .header_img_area h2 {
        font-size: 2.6rem;
        line-height: 3.8rem;
    }
    .header_lp .header_img_area h2 .sub_title {
        font-size: 1.6rem;
    }
    .header_lp .header_comment.bottom {
        margin-left: 2%;
        max-width: calc(100% - 2%);
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .ugc_insight_wrap_inner_inner {
        width: 100%;
        max-width: calc(100% - 15%);
    }
    .ugc_insight_wrap .follow_no .left_box .ribon .ribon_inner p,
    .ugc_insight_wrap .follow_no .right_box .ribon .ribon_inner p {
        font-size: 1.3rem;
        font-weight: 500;
        color: #ffffff;
        line-height: 2.8rem;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .ugc_insight_wrap .follow_no .left_box .ribon .ribon_inner p .no-area,
    .ugc_insight_wrap .follow_no .right_box .ribon .ribon_inner p .no-area {
        font-size: 3.6rem;
        font-weight: 600;
    }
    .ugc_insight_wrap .follow_no .left_box .ribon .ribon_inner p .value-text,
    .ugc_insight_wrap .follow_no .right_box .ribon .ribon_inner p .value-text {
        font-size: 1.2rem;
    }
    .ugc_insight_wrap .follow_no .left_box .ribon .ribon_inner p .success,
    .ugc_insight_wrap .follow_no .right_box .ribon .ribon_inner p .success {
        font-size: 1.8rem;
    }
    .ugc_insight_wrap .follow_no .all_no .no {
        font-size: 4.2rem;
    }
    .ugc_insight_wrap .follow_no .all_no.flex.bg_pink .about {
        font-size: 2.5rem;
    }
    .item-box-inner {
        margin: 0 auto 30px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .item-box-inner h3 {
        font-size: 2.1rem;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .left_area .system_list p {
        font-size: 2.2rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner .title {
        padding: 15px 12px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.change-btn .change_btn {
        display: flex;
        flex-direction: initial;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.change-btn .change_btn .change_btn_inner {
        width: 100%;
        max-width: calc(100% / 2 - 16px);
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner h4 {
        margin-top: 10px;
        width: 100%;
        padding: 10px;
        background: #ffffff99;
        font-size: 2.4rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner p.bg_white_area {
        width: 100%;
        padding: 10px;
        background: #ffffffCC;
        font-size: 1.6rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.price h3 {
        font-size: 2.4rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction {
        width: 100%;
        max-width: calc(100% - 4%);
        padding: 50px 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner {
        margin: 40px auto;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.price::before {
        left: 0;
    }
    .header_lp .header_comment.bottom .header_comment_bottom ul li p {
        font-size: 2.2rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.scene .scence_inner .item h3 {
        font-size: 1.4rem;
        padding: 5px 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h3::after {
        display: none;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area h3 {
        width: 100%;
        max-width: calc(100% - 16%);
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area h3 p {
        font-size: 2.6rem;
        padding: 0 30px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area,
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .trial-detail {
        max-width: calc(100% - 16%);
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-name p {
        font-size: 2.6rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-price p .price {
        font-size: 3.4rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-price p {
        font-size: 2.0rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .trial-detail p {
        font-size: 1.8rem;
    }
}
@media screen and (max-width: 798px){
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance h4.kana {
        top: -8px;
        font-size: 1.6rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner{
        margin-top: 50px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item {
        margin: 5px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance{
        width: 100%;
        max-width: calc(100% - 16px);
        padding: 30px 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content{
        top: 45%;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content h3.mark_area::after{
        top: -5px;
        right: -12px;
        font-size: 1.2rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content h4{
        font-size: 1.4rem;
        line-height: 2.0rem;
        margin: 0 auto 5px;
        width: 100%;
        padding: 0;
        position: relative;
        top: -45px;
        background: transparent;
        color: #04B795;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content h3{
        position: relative;
        top: -20px;
        font-size: 3.0rem;
        line-height: 2.5rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content h3.mark_area{
        font-size: 3.0rem;
        line-height: 2.5rem;
        margin-top: 7px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content h3 .about{
        font-size: 1.6rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content h3 .mark {
        font-size: 4.0rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content .sub{
        font-size: 2.0rem;
        font-weight: 700;
        line-height: initial;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance .performance_inner .item .text_content .sub.sp_ajust {
        top: -20px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.performance .comment {
        width: 100%;
        max-width: calc(100% - 32px);
        margin: 10px auto 0;
    }
}
@media all and (min-width: 820px) and (max-width: 1100px) {
    .header_lp .header_top h3 {
        display: block;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        text-align: center;
        position: absolute;
        left: 3%;
        transform:translateX(0);
    }
}
@media all and (min-width: 768px ) and (max-width: 820px) {
    .header_lp .header_top h3 {
        display: block;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        text-align: center;
        position: absolute;
        left: 3%;
        transform:translateX(0);
    }
}
@media screen and ( max-width: 1100px ) { 
    .ugc_insight_wrap .follow_no .left_box .mark,
    .ugc_insight_wrap .follow_no .right_box .mark {
        top: -20px;
    }
}
@media screen and ( max-width: 940px ) {
    .floating {
        right: 4%;
        bottom: 20px;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .icon_area.attention {
        width: 150px;
        margin-right: 10px;
        right: initial;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area h4.stema {
        font-size: 2.2rem;
        width: calc(100% - 64px);
        margin-left: 0;
    }
    .ugc_insight_wrap .tieup_info_area .tieup_info_area_inner h3.attention {
        font-size: 2.8rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.scene .scence_inner .item .item_text p {
        font-size: 2.0rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no h4 {
        font-size: 1.8rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .left_box .mark,
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .right_box .mark {
        width: 90px;
        top: -20px;
    }   
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .left_box .mark p,
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .right_box .mark p {
        font-size: 1.4rem;
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner.bg_white {
        display: flex;
        flex-direction: column;
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect ul {
        margin-bottom: 30px;
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect,
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect-text {
        width: 100%;
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect-text {
        margin-left: 0;
        margin-top: 50px;
    }
}
@media screen and ( max-width:810px ) {
    .ugc_insight_wrap .ugc_insight_wrap_inner {
        width: 100%;
        max-width: calc(100% - 4%);
    }
}
@media screen and (max-width: 767px){
    h3,h4 { font-weight: 600; }
    .f_18{ font-size: 1.5rem; }
    .f_32{ font-size: 2.1rem !important; }
    .sp_f10{ font-size: 1.0rem !important; }
    .sp_f12{ font-size: 1.2rem !important; }
    .sp_f24 { font-size:  1.6rem !important; }
    .mt_sp_0{ margin-top: 0 !important; }
    .mt_sp_30{ margin-top: 15px !important; }
    .pt_sp_20{ padding-top: 20px !important; }
    .btn_pink{
        width: calc(100% - 32px);
    }
    .sp_hidden { display: none; }
    .pc_hidden { display: block; }

    .header_lp .header_img_area h2 {
        font-size: 1.8rem;
        line-height: 3.0rem;
        margin: 15px auto;
        top: 0;
    }
    .header_lp .header_img_area h2 .sub_title {
        font-size: 1.2rem;
    }
    .floating {
        right: initial;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
    .sp_flex_row {
        display: flex;
        flex-direction: column;
    }
    .sp_font-feature-plat {
        font-feature-settings: "palt";
    }
    .merit-area::before {
        top: -50px;
    }
    .flex-3 {
        display: flex;
        flex-direction: column;
    }
    .flex-3 .item {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        align-items: center;
        margin-bottom: 15px;
    }
    .flex-3 .item .img_area {
        width: 30%;
        margin-bottom: 0;
    }
    .flex-3 .item .img_area img {
        width: 80px;
    }
    .flex-3 .item .title {
        width: 70%;
        padding-left: 15px;
        text-align: left;
    }
    .flex-3 .item .title h3 {
        font-size: 2.0rem;
        height: initial;
        line-height: normal;
        text-align: left;
    }
    .flex-3 .item .title .sub_title {
        font-size: 1.2rem;
        font-weight: 500;
    }
    .flex-3 .item .title p {
        font-size: 1.2rem;
        font-weight: 500;
    }
    /*チェックマーク*/
    .green_point_mark::before {
        font-size: 1.0rem;
        width: 20px;
    }
    .green_check::before{
        width: 11px;
        height: 10px;
        position: absolute;
        top: 8px;
        margin-right: 10px;
    }
    .d_green_check::before{
        width: 11px;
        height: 10px;
        position: relative;
        margin-right: 10px;
    }
    /*背景*/
    .bg_gray_muluti_reppy {
        background-size: 55%;
        background-position-y: 60%;
        background-position-x: 90%;
    }
    .bg_gray_reppy {
        background-size: 60%;
        background-position-y: -10%;
        background-position-x: 0%;
    }
    p{
        font-size: 1.4rem;
    }
    h3{
        font-size: 1.6rem;
    }
    .pc_hidden{
        display: block;
    }
    .sp_hidden{
        display: none;
    }
    .header_lp{
        position: relative;
        padding-bottom: 0;
    }
    .header_lp .header_top {
        width: 100%;
        max-width: calc(100% - 16px);
        margin: 20px auto 10px;
        justify-content: initial;
    }
    .header_lp .header_top h3 {
        display: block;
        position: relative;
        font-size: 1.5rem;
        line-height: 2.0rem;
    }
    .header_lp .header_comment.bottom {
        width: 100%;
        max-width: calc(100% - 16px);
        margin: 0 auto;
        padding-top: 5px;
    }
    .header_lp .header_img_area .header_img_area_inner.right {
        bottom: -25px;
        right: 5px;
    }
    .header_lp .header_img_area .header_img_area_inner.right p {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    /*-- MainPhot*/
    .header_lp .header_comment {
        width: 100%;
        max-width: calc(100% - 16px);
        height: initial;
        margin: 0 auto;
        text-align: left;
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
        position: relative;
    }
    .header_lp .header_comment .header_comment_left .feed_ok {
        width: 95px;
    }
    .header_lp .header_comment .header_comment_left .feed_ok p {
        font-size: 1.1rem;
        padding: 5px;
    }
    .header_lp .header_comment .header_comment_left p.comment {
        font-size: 1.4rem;
    }
    .header_lp .header_comment .header_comment_right {
        width: 100%;
        justify-content: flex-start;
    }
    .header_lp .header_comment .header_comment_right img {
        width: 120px;
    }
    .header_lp .header_comment .header_comment_right p {
        font-size: 1.2rem;
        width: 75px;
        height: 75px;
        margin: 5px 2px;
        text-align: center;
    }
    .header_lp .header_comment .header_comment_left {
        width: 100%;
        max-width: calc(100% - 8px);
        margin: 0 auto;
        /* position: absolute;
        top: 30px; */
        text-align: left;
        margin-top: 5px;
    }
    .header_lp .header_comment.bottom .header_comment_bottom p {
        font-size: 0.8rem;
        line-height: 1.2rem;
    }
    .header_lp .header_top .link_btn{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner {
        width: 100%;
        max-width: calc(100% - 32px);
        margin-bottom: 0;
        margin-top: 20px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.change-btn {
        max-width: 100%;
    }
    /*バナー*/
    .ugc_insight_wrap .banner-area {
        max-width: calc(100% - 32px);
        margin: 20px auto;
    }
    /*見出し*/
    .ugc_insight_wrap.first_area {
        margin-top: 65px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner h3{
        font-size: 2.2rem;
        font-weight: 500;
        line-height: 4rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.type2 {
        width: 100%;
        max-width: calc(100% - 32px);
        margin: 0 auto;
        font-size: 1.8rem;
        line-height: normal;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .minimum_join h3 {
        font-size: 1.8rem;
        text-align: left;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .item-box h3.check {
        margin-bottom: 30px;
        text-align: left;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item-box h3.check p {
        font-size: 1.8rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner h4{
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 2.3rem;
        padding: 10px 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .title_area{
        padding: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .title_area h3{
        font-size: 2.0rem;
        width: 220px;
        line-height: initial;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .title_area h3::after {
        width: 58px;
        height: 58px;
        right: -50px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .title_area h4 {
        font-size: 1.2rem;
        line-height: initial;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.new_plan {
        width: 100%;
        max-width: calc(100% - 16px);
        margin-top: 0;
        margin-bottom: 15px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner h3 img {
        width: 240px;
        object-fit: contain;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.appeal {
        margin: 40px auto;
    }
    /*ポイント*/
    .ugc_insight_wrap.bg_gray_muluti_reppy .ugc_insight_wrap_inner.item .item-box .item-box-inner {
        margin-top: 25px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.fukidashi {
        width: 100%;
        max-width: calc(100% - 32px);
        margin: 0 auto;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.fukidashi p {
        font-size: 1.2rem;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point li h3.green_check {
        font-size: 2.0rem;
        margin-left: 40px;
        margin-bottom: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point li {
        margin-bottom: 20px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box .img_area {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box .img_area img {
        width: 100%;
        max-width: calc(100% / 2 - 10px);
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box .text_area {
        width: 100%;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point li p {
        font-size: 1.2rem;
        font-feature-settings: "palt";
        font-weight: 500;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point li h3.green_check::before {
        width: 24px;
        height: 24px;
        left: -30px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point li:last-child {
        display: flex;
        flex-direction:column;
        position: relative;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point li:last-child h3 span {
        display: inline-block;
        position: absolute;
        left: -25px;
        top: 30px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point li:last-child h3.green_check::before {
        top: 20px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box .item-box-inner {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box .item-box-inner.reverce {
        padding: 0 10px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box ul.tieupboost_point {
        margin-top: 25px;
    }
    /*最少人数*/
    .ugc_insight_wrap .ugc_insight_wrap_inner .minimum_join {
        max-width: 100%;
        margin-top: 0px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .minimum_join h4 {
        font-size: 1.0rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .minimum_join h4 .no_area {
        font-size: 2.2rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .minimum_join h4 .value-text {
        font-size: 1.6rem;
    }
    .new_plan p.new_plan {
        top: -40px;
    }
    .new_plan_inner .new_plan_inner_flex_row {
        margin-left: auto;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .post_text img {
        width: 100%;
        object-fit: contain;
    }
    .new_plan .new_plan_inner {
        width: 100%;
        max-width: calc(100% - 16px);
        margin-top: 0px;
    }
    .new_plan h3.new_plan {
        margin-bottom: 10px;
    }
    .new_plan h3.new_plan img{
        width: 150px;
        object-fit: contain;
    }
    .new_plan_inner .new_plan_inner_flex {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-bottom: 0;
    }
    .new_plan_inner.sp_flex_row .new_plan_inner_flex {
        display: flex;
        justify-content: center;
    }
    .new_plan .new_plan_inner .new_plan_detail {
        width: 63%;
    }
    .new_plan .new_plan_inner .new_plan_detail p{
        font-size: 1.0rem;
        font-weight: 500;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan h3.tieup_strong {
        width: fit-content;
        font-size: 1.1rem;
        font-weight: 500;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .new_plan_price {
        width: fit-content;
        font-weight: 500;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .new_plan_price .koteihi {
        line-height: 2.8rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .new_plan_price .price_area {
        position: relative;
        top: 2px;
        left: 10px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .new_plan_price .koteihi {
        font-size: 1.8rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .new_plan_price .price_area img {
        width: 110px;
        object-fit: contain;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .effect {
        width :100%;
        max-width: 100%;
        padding: 10px 0;
        font-size: 1.4rem;
        letter-spacing: -0.09rem;
        text-align: left;
    }
    /*初回お得プラン*/
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan.first {
        width: 100%;
        max-width: calc(100% - 80px);
        padding-bottom: 20px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan.first .new_plan_price .price_area img {
        width: 58px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .fukidashi::before {
        width: 90px;
        height: 74px;
        left: -95px;
        top: -10px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .fukidashi::after {
        width: 112px;
        height: 76px;
        right: -110px;
        top: -10px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan.first .new_plan_price .koteihi {
        margin: 20px auto 10px;
        font-size: 1.4rem;
    }
    /*トップ追加*/
    .ugc_insight_wrap .ugc_insight_wrap_inner.new_plan .tieup_list .tieup_list_item {
        width: 100%;
        max-width: calc(100% - 10%);
        margin: 5px auto;
        margin-bottom: 10px;
        justify-content: center;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.new_plan p.big {
        font-size: 1.6em;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.new_plan .tieup_list {
        margin: 10px auto;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.new_plan .tieup_list .tieup_list_item.all {
        width: 100%;
        max-width: calc(100% - 10%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        margin-top: 5px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.new_plan .tieup_list .tieup_list_item.all p i {
        width: 28px;
        height: 28px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.new_plan .tieup .tieup_text {
        font-size: 1.5rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.new_plan .tieup_list .tieup_list_item .title {
        font-size: 1.3rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.new_plan .tieup_list .tieup_list_item .no_area,
    .ugc_insight_wrap .ugc_insight_wrap_inner.new_plan .tieup_list .tieup_list_item.all p {
        font-size: 1.8rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.new_plan .tieup_list .tieup_list_item .content {
        width: 100%;
        max-width: 200px;
    }
    /*選ばれる理由*/
    .item-box {
        margin: 0 auto;
    }
    .item-box-inner {
        width: 100%;
        max-width:100%;
        padding: 20px 10px;
        margin-bottom: 20px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item {
        max-width: calc(100% - 16px);
        padding-bottom: 60px;
        margin-bottom: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item.post .item-box h3.post {
        width: 100%;
        max-width: calc(100% - 20px);
        margin-left: auto;
        margin-bottom: 20px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item.post .item-box h3.post p {
        font-size: 1.6rem;
        line-height: normal;
        text-align: left;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .item-box h3.check::before {
        width: 42px;
        height: 30px;
        position: absolute;
        left: -46px;
        top: 6px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .item-box h3.check p {
        font-size: 1.8rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .item-box-inner h3 p::after {
        width: 30px;
        height: 30px;
        top: -15px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .item-box-inner h3 p {
        line-height: normal;
        font-size: 1.8rem;
        padding-left: 30px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .item-box-inner h3 p .sp_size {
        font-size: 1.4rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner p.content {
        font-size: 1.2rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner .title {
        padding: 5px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .title p {
        font-size: 2.8rem;
    }
    /*タイアップブースト　ストロングポイント*/
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong {
        text-align: center;
        padding: 20px 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong h3.tieup_strong{
        font-size: 1.5rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong h3.tieup_strong::before{
        width: 22px;
        height: 20px;
        margin-right: 5px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong h3.tieup_strong::after{
        width: 21px;
        height: 26px;
        margin-left: 7px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area{
        width: 100%;
        max-width: 100%;
        margin: 10px auto 15px;
        display: flex;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi01 p,
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi02 p{
        font-size: 1.1rem;
        color: #ffffff;
        font-weight: 500;
        line-height: initial;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi02 p span.fukidashi_sub{
        font-size: 0.8rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi01{
        width: 100%;
        max-width: 100px;
        margin: 2px;
        background: #04B795;
        padding: 10px 5px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi01::after{
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        right: 22px;
        bottom: -12px;
        border-style: solid;
        border-color: #04B795 transparent transparent transparent;
        border-width: 15px 0 4px 20px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi02{
        width: 100%;
        max-width: 215px;
        margin: 2px;
        background: #04B795;
        padding: 10px 5px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong .fukidashi_area .fukidashi02::after{
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        left: 75px;
        bottom: -9px;
        border-style: solid;
        border-color: transparent transparent transparent #04B795;
        border-width: 0px 0px 15px 20px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong .user_kakusan p{
        font-size: 1.2rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong .user_kakusan h3 {
        font-size: 2.6rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong .user_kakusan h3 span.h3_no{
        font-size: 4.1rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong .user_kakusan h4 {
        font-size: 1.3rem;
        padding: 10px 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.strong .user_kakusan h4 span.h4_no {
        font-size: 2.2rem;
    }
    /* case */
    .ugc_insight_wrap .ugc_insight_wrap_inner .case_item {
        width: 100%;
        max-width: calc(100% - 10%);
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner ul.case_item_list {
        width: 100%;
        margin: 20px auto;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner ul.case_item_list li p::before {
        width: 22px;
        height: 22px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner ul.case_item_list li p {
        font-size: 1.6rem;
        padding-left: 35px;
    }
    .ugc_insight_wrap .follow_no .all_no.flex.bg_pink {
        margin-bottom: 0;
        padding: 5px;
    }
    .ugc_insight_wrap .follow_no .all_no.flex.bg_pink::after {
        border: 12px solid transparent;
        border-bottom: 12px solid #F8F0F0;
        top: -23px;
    }
    /*追加*/
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .post_text {
        max-width: 100%;
        font-size: 1.2rem;
        margin-top: 10px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .small_text{
        width: 100%;
        font-size: 0.8rem;
        line-height: normal;
        margin: 0 auto 30px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.price::before {
        display: none;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .post_text .big_price {
        font-size: 2.2rem;
        margin-right: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .post_text .big_price_yen {
        font-size: 1.6rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .new_plan .post_text .big_price_kara {
        font-size: 1.3rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.effect h3 p {
        font-size: 1.5rem;
        line-height: normal;
        margin-left: 80px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.effect p.big  {
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-feature-settings: "palt";
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.effect p.big .small {
        font-size: 1.5rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.effect h3 {
        position: relative;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.effect h3::before {
        width: 75px;
        height: 75px;
        position: absolute;
        top: 0;
        left: -10px;
        padding-right: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.scene {
        padding-top: 0;
        margin: 30px auto;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.scene h3 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.scene .scence_inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.scene .scence_inner .item {
        width: 100%;
        max-width: 100%;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.scene .scence_inner .item:first-child {
        margin-bottom: 50px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.scene .scence_inner .item:first-child:after {
        transform: initial;
        transform: rotate(90deg) translateX(-50%);
        right: initial;
        left: 45%;
        top: initial;
        bottom: -70px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.scene .scence_inner .item h4 {
        align-items: baseline;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.scene .scence_inner .item .item_text p {
        font-size: 1.3rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.effect .ex_sample .flex .ex_sample_inner.first {
        font-size: 1.4rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.effect {
        margin: 0 auto 20px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.effect .ex_sample .flex .ex_sample_inner.no_area .no {
        font-size: 5.6rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.effect .ex_sample .flex .ex_sample_inner.no_area p {
        font-size: 2.6rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.effect .ex_sample .sub_text {
        font-size: 1.2rem;
        top: -15px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .all_no.flex.empty {
        display: none;
    }
    .ugc_insight_wrap .follow_no h4 {
        width: 40px;
        height: 40px;
        font-size: 1.0rem;
        border-radius: 0.8rem;
        text-align: center;
        line-height: 1.3rem;
        border: 1px solid #707070;
        font-feature-settings: "palt";
        position: absolute;
        left: 5px;
        top: 5px;
    }
    .ugc_insight_wrap .follow_no {
        margin: 40px auto;
    }
    .ugc_insight_wrap .follow_no .all_no .about,
    .ugc_insight_wrap .follow_no .all_no .user_no,
    .ugc_insight_wrap .follow_no .all_no.flex.bg_pink p {
        font-size: 1.4rem;
    }
    .ugc_insight_wrap .follow_no h3 {
        font-size: 1.4rem;
        height: initial;
        margin: 0 auto;
    }
    .ugc_insight_wrap .follow_no .left_box .ugc_insight_wrap_inner_inner,
    .ugc_insight_wrap .follow_no .right_box .ugc_insight_wrap_inner_inner {
        width: 100%;
        max-width: calc(100% -32px);
    }
    .ugc_insight_wrap .follow_no .all_no .no {
        font-size: 3.0rem;
    }
    .ugc_insight_wrap .follow_no .left_box .ribon .ribon_inner,
    .ugc_insight_wrap .follow_no .right_box .ribon .ribon_inner {
        right: 0;
        top: 35px;
        width: 60px;
        height: 60px;
    }
    .ugc_insight_wrap .follow_no .sp_width {
        width: 100%;
        max-width: calc(100% - 38%);
        margin: 0 auto;
    }
    /* CASE */
    .ugc_insight_wrap .follow_no .left_box,
    .ugc_insight_wrap .follow_no .right_box {
        width: 100%;
        max-width: calc(100% - 32px);
        margin: 0 15px;
        margin-bottom: 30px;
    }
    /*プロモーション*/
    .bg_promotion {
        background: #F7F7F7 url("../img/bg_promotion_sp.png") no-repeat;
        background-size: contain;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area {
        width: 100%;
        max-width: 100%;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner {
        margin-top: 400px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner p.bg_white_area {
        background: transparent;
        font-size: 1.2rem;
        font-weight: 500;
        padding: 0;
        font-feature-settings: "palt";
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.fukidashi.yellow,
    .ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner h3.fukidashi.yellow {
        width: 100%;
        max-width: calc(100% - 32px);
        height: initial;
        text-align: left;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.fukidashi.yellow p,
    .ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner h3.fukidashi.yellow p {
        font-size: 1.3rem;
        line-height: normal;
        padding-left: 45px;
        height: initial;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.fukidashi.yellow p {
        justify-content: flex-start;
        padding-left: 60px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.item .item-box h3.fukidashi.yellow {
        margin-left: 0;
        max-width: calc(100% - 5px);
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner h3.fukidashi.yellow p::after,
    .ugc_insight_wrap .ugc_insight_wrap_inner .item-box-inner h3 p::after {
        width: 52px;
        height: 52px;
        left: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner h3.fukidashi.yellow p::after {
        left: -18px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner h4 {
        padding: initial;
        background: transparent;
        font-size: 1.8rem;
        line-height: normal;
        margin: 20px 0;
    }
    /* 大量の消費者 */
    /*マイクロインフルエンサー投稿見出し*/
    .ugc_insight_wrap .ugc_insight_wrap_midashi {
        width: 100%;
        background: url("../img/post_bg_sp.jpg") no-repeat;
    }
    /*タイアップ追加*/
    .ugc_insight_wrap .ugc_insight_wrap_inner .flex-wrap-area {
        margin-top: 15px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn button {
        width: 100%;
        max-width: calc(100% - 16px);
        margin: 0 auto;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn button p {
        font-size: 1.4rem;
        border-width: 1px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner {
        max-width: calc(100% - 16px);
        margin: 30px auto;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn {
        display: flex;
        flex-direction: column;
        margin-top: 25px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner {
        box-shadow: initial;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner.title-match.is-active,
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner.choice.is-active {
        border: none;
        box-shadow: initial;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner.choice.is-active::before,
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner.choice.is-active::after,
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner.title-match.is-active::before,
    .ugc_insight_wrap .ugc_insight_wrap_inner .change_btn .change_btn_inner.title-match.is-active::after {
        display: none;
    }
    /*オーディエンス数*/
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .left_box,
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .right_box {
        width: 100%;
        max-width: calc(100% - 64px);
        margin: 10px auto;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .left_box,
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .right_box {
        margin-bottom: 40px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .ugc_insight_wrap_inner_inner .flex {
        display: flex;
        flex-direction: column;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .all_no.flex {
        display: flex;
        flex-direction: initial;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .all_no.flex .about {
        top: 10px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no h4{
        font-size: 1.6rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .all_no {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        padding: 10px 0 0;
        align-items: flex-start;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .all_no .all_no_sp{
        display: flex;
        justify-content: space-around;
        padding-bottom: 5px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .all_no .no {
        font-size: 3.8rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .all_no.flex.bg_pink .no {
        font-size: 4.5rem;
        position: relative;
        top: 7px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .all_no.flex.bg_pink p {
        font-size: 1.6rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .all_no.flex.bg_pink .about { 
        font-size: 2.2rem;
    }
    /* 達成マーク */
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .left_box .ribon,
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .right_box .ribon {
        width: 100px;
        height: 100px;
        top: 13%;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .left_box .ribon .ribon_inner,
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .right_box .ribon .ribon_inner {
        width: 100px;
        height: 100px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .left_box .ribon .ribon_inner p,
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .right_box .ribon .ribon_inner p {
        font-size: 1.3rem;
        line-height: 2.0rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .left_box .ribon .ribon_inner p .value-text,
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .right_box .ribon .ribon_inner p .value-text {
        font-size: 1.2rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .left_box .ribon .ribon_inner p .no-area,
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .right_box .ribon .ribon_inner p .no-area {
        font-size: 3.0rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .left_box .ribon .ribon_inner p .success,
    .ugc_insight_wrap .ugc_insight_wrap_inner .follow_no .right_box .ribon .ribon_inner p .success {
        font-size: 1.6rem;
        top: -4px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .ugc_insight_wrap_inner_inner {
        padding-top: 0;
    }
    .ugc_insight_wrap .tieup_info_area.bg_yellow .info_list .text_area .system_info .left_area .system_list p {
        font-size: 1.5rem;
        max-width: 100%;
    }
    .feature_area .feature_area_inner {
        padding: 25px 0;
    }
    /*最短*/
    .ugc_insight_wrap .ugc_insight_wrap_inner .tieup_info_area{
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        padding: 0 0 30px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .tieup_info_area .right_area{
        width: 100%;
        max-width: calc(100% - 16px);
        margin: 0 auto;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner .infomation_text{
        font-size: 1.2rem;
        line-height: 1.8rem;
    }
    /*メリット*/
    .ugc_insight_wrap .tieup_info_area .info_list{
        width: 100%;
        max-width: calc(100% - 28px);
        padding: 20px 0;
    }
    .ugc_insight_wrap .tieup_info_area .info_list.last {
        height: initial;
        margin-bottom: 0px;
    }
    .ugc_insight_wrap .tieup_info_area.first {
        margin-bottom: 40px;
    }
    .ugc_insight_wrap .tieup_info_area.last {
        margin-bottom: 40px;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .icon_area{
        width: 82px;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area{
        width: 100%;
        max-width: calc(100% - 16px);
        margin-left: 10px;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area h3.midashi {
        font-size: 1.8rem;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area h3.midashi .sub {
        font-size: 1.0rem;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area p.info {
        font-size: 1.4rem;
        margin-left: 0;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area h3.green_check{
        font-size: 1.8rem;
        position: relative;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area h3.green_check p{
        font-size: 1.8rem;
        padding-left: 15px;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area p.content-text {
        font-size: 1.5rem;
        margin-left: 10px;
        margin-top: 5px;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area h4.stema{
        width: 100%;
        max-width: 100%;
        font-size: 1.5rem;
        margin: 0;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .right_area img{
        width: 72px;
        position: relative;
        left: 30px;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area h3.green_check.tokkyo::after{
        width: 77px;
        height: 77px;
        top: 120px;
        left: 130px;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info{
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .left_area{
        width: 100%;
        max-width: 100%;
        position: relative;
        left: -40px;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .left_area .system_list{
        padding-top: 0;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .left_area .system_list p{
        width: 100%;
        max-width: 100%;
        font-size: 1.5rem;
        padding: 10px 5px;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area .system_info .left_area .system_list p.check::before{
        width: 21px;
        height: 21px;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area h3.green_check.minimum::after{
        right: initial;
        top: 60px;
    }
    .ugc_insight_wrap .tieup_info_area .info_list .text_area h3.green_check.minimum .sub{
        left: 14px;
        top: 30px;
        font-size: 1.2rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner h3.sp_left{
        text-align: left;
        margin-left: 10px;
        font-size: 2.4rem;
    }
    /*リアルタイム効果測定*/
    .ugc_insight_wrap .ugc_insight_wrap_inner .real_time h3,
    .ugc_insight_wrap .ugc_insight_wrap_inner.price h3{
        font-size: 1.8rem;
        text-align: center;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.promotion .muluti_info .img_area{
        width: 100%;
        max-width: calc(100% - 32px);
        margin: 0 auto;
    }
    /*購入体験型メリット*/
    .icon-review {
        width: 32px;
        height: 32px;
        margin-right: 5px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.sp_tab_area {
        width: 100%;
        display: block;
        margin-bottom: 0;
        margin-top: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.sp_tab_area .sp_tab_area_inner {
        display: flex;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.sp_tab_area .sp_tab_area_inner a.tab_btn {
        width: 100%;
        max-width: calc(100% / 2 - 15px);
        height: 40px;
        margin: 0 auto;
        background: #D5D5D5;
        color: #ffffff;
        font-weight: 600;
        border-top-left-radius: 0.4rem;
        border-top-right-radius: 0.4rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.sp_tab_area .sp_tab_area_inner a.tab_btn.sp_matching {
        color: var(--green-color);
        background: #ffffff;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.sp_tab_area .sp_tab_area_inner a.tab_btn.sp_choice {
        color: #DC0032;
        background: #ffffff;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.sp_tab_area .sp_tab_area_inner a.tab_btn:not(.active) {
        background: #D5D5D5;
        color: #ffffff;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.sp_tab_area .sp_tab_area_inner a.tab_btn p {
        width: 100%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.review {
        max-width: calc(100% - 32px);
        margin: 0 auto 50px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.review.sp-width-full {
        max-width: 100% !important;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.review .review-post-img {
        max-width: 100%;
        margin: 0 auto 30px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.review .review-post-img img {
        width: 100%;
        max-width: 100%;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.review h3 {
        font-size: 1.6rem;
        line-height: normal;
    }
    /*事例*/
    .ugc_insight_wrap .ugc_insight_wrap_inner .fan_zirei_title h3 {
        font-size: 1.8rem;
    }
    /*追加*/
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h3 {
        margin-top: 30px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top {
        margin-top: 10px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top p {
        margin: 30px auto;
        font-size: 1.4rem;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h4 {
        font-size: 1.6rem;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 50px;
    }
    .ugc_insight_wrap .tieup_info_area .info_list.attention {
        width: 100%;
        max-width: calc(100% - 64px);
    }
    .ugc_insight_wrap .tieup_info_area .info_list .icon_area.attention {
        width: 82px;
        margin-right: 10px;
        right: initial;
        top: initial;
    }
    .ugc_insight_wrap .tieup_info_area .info_list.attention .text_area .system_info .left_area .system_list {
        width: 100%;
    }
    .ugc_insight_wrap .tieup_info_area .tieup_info_area_inner h3.attention .sub_text {
        font-size: 1.4rem;
    }
    .ugc_insight_wrap .tieup_info_area .tieup_info_area_inner h3.attention {
        font-size: 1.6rem;
        margin-left: 10px;
    }
    /*料金*/
    .ugc_insight_wrap .ugc_insight_wrap_inner.price{
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.price .price_bottom{
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        justify-content: initial;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.price .price_bottom p{
        padding: 10px 0;
    }
    table.price_table{
        margin-top: 15px;
    }
    table.price_table tr.sp_none{
        display: contents;
    }
    table.price_table th.sp_none {
        display: none;
    }
    table.price_table th.sp_display {
        background: #F8F8F8;
    }
    table.price_table th p,
    table.price_table td p {
        font-feature-settings: "palt";
        font-size: 1.2rem !important;
    }
    table.price_table .sub_text {
        font-size: 1.1rem;
    }
    table.price_table th {
        text-align: left;
    }
    table.price_table th p.b_reppy::before{
        width: 34px;
        height: 27px;
        margin-right: 5px;
    }
    /*追加*/
    .ugc_insight_wrap .ugc_insight_wrap_inner {
        margin: 20px auto;
        padding: 15px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h3 {
        font-size: 2.0rem;
        line-height: 1.6;
        margin-top: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h3 .text {
        font-size: 1.2rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top.plus {
        margin-top: 30px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top .howto-plus {
        margin: 50px auto;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.price h3 {
        font-size: 2.0rem;
        line-height: normal;
        padding: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner ul.merit_list {
        margin: 30px auto;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner ul.merit_list li {
        margin-bottom: 5px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner ul.merit_list li p i {
        position: relative;
        top: 5px;
        width: 20px;
        height: 20px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner ul.merit_list li p {
        font-size: 1.4rem;
        line-height: normal;
        font-weight: 500;
        align-items: baseline;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction table {
        margin: 30px auto;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction table th,
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction table td {
        padding: 5px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction table th p {
        font-size: 1.4rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_innerintroduction table td p {
        font-size: 1.2rem;
        font-feature-settings: "palt";
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.price .text-area,
    .ugc_insight_wrap .ugc_insight_wrap_inner.plus .text-area {
        margin-top: 30px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.price .text-area p,
    .ugc_insight_wrap .ugc_insight_wrap_inner.plus .text-area p {
        font-size: 1.6rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.scene .scence_inner .item h4 img.logo {
        top: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.scene .scence_inner .item h3 {
        width: 100%;
    }
    /*UGC追加*/
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner.bg_white {
        display: flex;
        flex-direction: column;
        padding: 10px 30px;
        margin-bottom: 30px;
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect,
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect-text {
        width: 100%;
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect-text {
        margin-left: 0;
        margin-top: 30px;
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect-text p {
        padding: 20px 0;
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect h3 {
        width: 298px;
        left: 50%;
        transform: translateX(-50%);
        top: -25px;
        font-size: 1.4rem;
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner h4 {
        font-size: 1.6rem;
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect ul {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect ul li {
        width: 100%;
        max-width: calc(100% / 2);
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect ul li:nth-child(n+3) {
        margin-top: 20px;
    }
    .ugc_insight_wrap.bg_ugc .ugc_insight_wrap_inner .effect img.kpi-img {
        margin-left: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top img.function {
        width: 125px;
        left: 0;
        margin-bottom: 10px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top p .f_blue {
        font-size: initial;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction h3 {
        font-size: 1.8rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction table th p,
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction table td p {
        font-size: 1.4rem;
    }
    .ugc_insight_wrap.bg_ugc {
        margin-top: 30px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h2 {
        max-width: 100%;
        font-size: 1.4rem;
        padding-right: 0;
        margin-bottom: 10px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h2 span.f-blue {
        font-size: 2.2rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area h3 p {
        font-size: 1.8rem;
        padding: 0;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area,
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area h3 {
        max-width: calc(100% - 16px);
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area h3 {
        max-width: 100%;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area {
        padding: 20px 16px 40px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-name {
        width: 60%;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-name p {
        font-size: 1.6rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-name p::before {
        font-size: 1.4rem;
    }
        .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-price {
            width: 40%;
        }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-price p .price {
        font-size: 2.6rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .price-area .plan-price p {
        font-size: 1.4rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .trial-detail p {
        font-size: 1.4rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area .trial-detail p.ex {
        font-size: 1.2rem;
        margin-top: 10px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area-bottom p {
        font-size: 2.0rem;
        line-height: normal;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area-bottom::before {
        display: none;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.introduction .trial-area-bottom {
        margin-top: 0;
    }
}
@media screen and ( max-width: 560px ) {
    .swiper-slide:nth-child(even) {
        margin-top: 20px;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.change-btn .change_btn .change_btn_inner {
        width: 100%;
        max-width: 100%;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.appeal .right_area .right_area_inner {
        margin-top: 170px;
    }
}
@media screen and ( max-width: 440px ) {
    .header_lp .header_lp_sub_title p {
        font-size: 1.2rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_midashi {
        background-size: contain;
    }
    .header_lp .header_img_area h2 {
        margin-top:15px;
        font-size: 1.4rem;
        font-feature-settings: "palt";
        line-height: 2.0rem;
    }
    .header_lp .header_img_area h2 .sub_title {
        font-size: 1.1rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner.ugc_insight-top h2 span.f-blue {
        font-size: 1.8rem;
    }
    .ugc_insight_wrap .ugc_insight_wrap_inner {
        padding: 15px 0;
    }
}