:root{
    --text:#404040;
    --blue:#3B9BEB;
    --dark_blue:#4D5CB0;
    --grey:#D9D9D9;
    --pink:#FA78AE;
    --bg_gradient:linear-gradient(90deg,rgba(126, 225, 255, 1) 0%, rgba(109, 85, 217, 1) 100%);
    --bg_gradient1:linear-gradient(to right,rgba(126, 225, 255, 1) 0%, rgba(109, 85, 217, 1) 100%);
    --duration: 0.3s;
    --base-width: 375;
    --vw: 100vw / var(--base-width);
}
@media (min-width: 744px) {
    :root {
        --base-width: 1700;
    }
}
@media (min-width: 1024px) {
    :root {
        --base-width: 1920;
    }
}
@media (min-width: 1920px) {
    :root {
        --vw: 1px * (1920 / 1920);
    }
}
html {
    margin: 0 !important;
    padding: 0;
}
body.admin-bar {padding-top: 0 !important;}
body{background:#FBF9F7;line-height:1.8;color:var(--text);font-size:16px;font-family: "Zen Kaku Gothic New", sans-serif;font-weight: 500;font-style: normal;overflow-x: hidden;position:relative;}
img{max-width:100%;height:auto;}
.text_left{text-align:left;}
.text_center{text-align:center;}
.text_right{text-align:right;}
p{margin:0 0 15px;}
a{text-decoration:none;}
.blue{color:var(--blue) !important;}
.dark_blue{color:var(--dark_blue) !important;}
.grey{color:var(--grey) !important;}
.pink{color:var(--pink) !important;}
a:hover{opacity:0.7;}
ul,ol{padding:0;list-style:none;}
.container{max-width:1200px;margin:0 auto;padding:0 20px;}
@media(min-width:1240px){.container{padding:0;}}
header{position:fixed;z-index:999999;width:100%;top:0;left:0;}
.top_left_circle{top:48px;left:3.6%;position: absolute;width:37px;}
main{
    position:relative;z-index: 1;
}
#section_top{height:300px;position:relative;}
#section_top .container{height:100%;display: flex;align-items: end;}
.page_detail_content{border-radius:126px 126px 0 0;
                     background:#fff;
                     padding:70px 0;
                     position:relative;}
.page_detail_content .container{z-index:2;}
img.top_white_circle{width:216px;position:absolute;left:-55px;bottom:-55px;z-index: -1;}
h1.page_title{
    font-size: 43px;
    font-weight: 500;
    position: absolute;
    left: calc(12.5% + 30px);
    bottom: 17px;
    padding-left: 50px;
    padding-bottom: 5px;
    margin: 0;
}
h1.page_title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, #7EE1FF, #6D55D9);
    border-radius: 16px;
    transform: rotate(35deg);
    height: 84px;
    width: 16px;
}
ul#faq_categories {
    margin: 60px 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:10px;
}
ul#faq_categories.col2 {
    grid-template-columns: repeat(2,1fr);
}
ul#faq_categories.col3 {
    grid-template-columns: repeat(3,1fr);
}
ul#faq_categories.col4 {
    grid-template-columns: repeat(4,1fr);
}

ul#faq_categories li a{
    height:60px;
    width:100%;
    display:flex;
    align-items: center;
    justify-content: center;
    border-radius:16px 16px 0 0;	
    color:var(--blue);
    font-size:22px;
    font-weight:600;
    border:2px solid var(--blue);
    background:#fff;
}
ul#faq_categories li a.active, ul#faq_categories li a:hover{
    background:var(--bg_gradient);	
    border: 0;
    color:#fff;
    opacity:1;
}
#faq_list_wrap {
    margin: 0 auto;
    max-width: 800px;
}
.faq_items{display:none;}
.faq_items.active{display:block;}
.faq_item{
    padding:16px;
    border-radius:8px;
    margin-bottom:16px;
    border:1px solid var(--grey);
    cursor: pointer;
    position: relative;
    z-index: 3;
    background: #fff;
}

.faq_items .faq_item:last-child{
    margin-bottom:0;
}
.faq_item h4.faq_question{
    font-weight:600;
    font-size:18px;
    color:var(--dark_blue);
    margin:0;
    position:relative;
    padding-right:20px;
    line-height: 28.8px;
    margin-bottom: 5px;
}
.faq_item h4.faq_question:after{
    content:'';
    position:absolute;
    top:calc(50% - 4px);
    right:0;
    width:12px;
    height:7px;
    background:url(images/icon_arrow_up.png) no-repeat right center;
    background-size:contain;
    transform: rotate(180deg);
}
.faq_item.open h4.faq_question:after{transform: rotate(0);}
.faq_item .faq_anwser{
    display:none;
}
.faq_item.open .faq_anwser{
    display:block;
}
.faq_item .faq_anwser p{
    margin-bottom:0;
}
.faq_item .faq_anwser ul, .faq_item .faq_anwser ol {
    list-style: inherit;
    padding: 0 0 0 30px;
}
.faq_item .faq_anwser a {
    color:var(--blue);
}
#card_reviews{
    padding:64px 0;
    background:var(--bg_gradient1);
    position: relative;
}
#card_reviews h2.section_title{
    color:#fff;
    font-size:38px;
    text-align:center;
    line-height:1.3;
    font-weight:500;
}
#card_reviews ul{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:48px;
    margin:48px 0 0;
}
#card_reviews ul li{
    background:#FAF8FC;
    position:relative;
    border-radius:22px;
}
#card_reviews ul li.card2{
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(224, 240, 255, 1) 100%);
}	
#card_reviews ul li span.note{
    color:#fff;
    font-size:16px;
    font-weight:600;
    width:64px;
    height:64px;
    border-radius:100%;
    position:absolute;
    top:-30px;
    right:-30px;
    background: linear-gradient(0deg,rgba(237, 183, 140, 1) 0%, rgba(248, 147, 152, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
#card_reviews ul li.card2 span.note{
    background: linear-gradient(0deg,rgba(147, 195, 239, 1) 0%, rgba(79, 96, 178, 1) 100%);
}	
#card_reviews ul li h3{
    color:var(--dark_blue);
    font-size:24px;
    margin: 24px 24px 10px;
    line-height: 1.5;
}	
#card_reviews ul li.card2 h3{
    margin-top:0;
}
#card_reviews ul li p{
    font-weight:500;
    padding:0 24px;
    font-size:16px;
}
.circle1 {
    width: 4.3vw;
    position: absolute;
    top: 25%;
    left: 9%;
}
.circle2 {
    width: 4.3vw;
    position: absolute;
    top: 48%;
    left: 5%;
    z-index:1;
}
.round{
    position: absolute;
    width: 9.4vw;
  right: 3.3%;
  top: 35%;
  max-width: 181px;
}
.polygon1 {
  width: 20vw;
  position: absolute;
  top: 53%;
  left: -10%;
  max-width: 462px;
}
.polygon_top {
    width: 40%;
    position: absolute;
    top: 115px;
    right: 100px;
}
.polygon2 {
  width: 18vw;
  position: absolute;
  bottom: 0;
  right: -3%;
  max-width: 392px;
}
.pattern_fixed_left.fixed > div{position:fixed;}
.pattern_fixed_left.fixed .circle2 {top: 5vh;}
.pattern_fixed_left.fixed .polygon1 {top: 17vh;}
.pattern_fixed_left.fixed .round.left_round1 {top: 67vh;}
.pattern_fixed_left.fixed .polygon2.left_polygon2 {bottom: -26vh;}
.pattern_fixed_right.fixed > div{position:fixed;}
.pattern_fixed_right.fixed .polygon2 {top: 7vh;}
.pattern_fixed_right.fixed .circle1.right_circle1 {top: 25vh;}
.pattern_fixed_right.fixed .circle2.right_circle2 {top:60vh;}
.pattern_fixed_right.fixed .polygon1.right_polygon1 {top: 70vh;}
.author .polygon2 {
    bottom: 30%;
}
.author .round.round_bottom_left {
    top: auto;
    bottom: -64px;
    left: -35px;
}
.author .circle1.circle_bottom_right {
    top: auto;
    bottom: 80px;
    left: auto;
    right: -10px;
}
.u-rotate {
    animation: rotate 90s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
.u-fluffy {
    animation: fluffy 20s ease-in-out infinite;
}

@keyframes fluffy {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(calc(20 * var(--vw)), calc(-20 * var(--vw)));
    }
    100% {
        transform: translate(0, 0);
    }
}
#archive_case p.page_detail_des{margin-bottom:0;}
.case_study_category_list {
    margin: 60px 0 30px;
    display: flex;
    gap: 20px;
    justify-content: end;
}
#single_case .case_study_category_list {
    justify-content: start;margin: 0 0 20px;
}
.case_study_category_list a{
    padding: 4px 10px;
    color:#fff;
    font-size:16px;
    line-height: 28px;
    font-weight:500;
    border-radius:4px;
}
.case_study_category_list a.case_cat_id11{
    background:#8170BE !important;
}
.case_study_category_list a.case_cat_id12{
    background:#BE7089 !important;
}
.case_study_category_list a.cat_df{
    background: #D9D9D9 !important;
}
.list.col3{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
    position: relative;
    z-index: 3;
}
.list .item{
    border-radius:22px;
    overflow: hidden;
    background:#fff;
    box-shadow: 0px 0px 50px 0px rgba(73,61,96,0.2);
    -webkit-box-shadow: 0px 0px 50px 0px rgba(73,61,96,0.2);
    -moz-box-shadow: 0px 0px 50px 0px rgba(73,61,96,0.2);
}
#archive_blog .list .item, #archive_column .list .item{
    display: flex;
    width: 380px;
    height: 400px;
    min-width: 240px;
    max-width: 100%;
    padding: 0 var(--sds-size-space-0);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sds-size-space-0);
    flex-shrink: 0;
}
.list .item a.case_category{
    padding:6px 10px;
    color:#fff;
    font-size:16px;
    font-weight:500;
    border-radius:4px;
    margin-right: 10px;
}
#archive_blog .list .item a.case_category{
    background:#4D5CB0 !important;
}
.list .item a.case_cat_id11{
    background:#8170BE !important;
}
.list .item a.case_cat_id12{
    background:#BE7089 !important;
}
.list .item .image{
    width:100%;
    height:250px;
    object-fit: cover;
}
body.single .list .item .image{
    height:250px;
}
.list .item  .column_item_des h4.title {
    margin-top: 0;
}
.case_item_des{
    padding:15px 24px;
}
.case_item_des h4.title{
    font-size:16px;line-height: 1.8;font-family: "Zen Kaku Gothic New", sans-serif;font-weight: 600;margin-top:10px;
}
.case_item_des h4.title span{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500; /* Medium */
    font-size: 16px;
    line-height: 1.6; /* 160% */
    letter-spacing: -0.02em; /* -2% */
    color: #404040;
}
.case_item_des h4.title span+span{
    margin-left: 10px;
}
.case_item_des .des{
    font-size:16px;font-family: "Zen Kaku Gothic New", sans-serif;font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3; 
    -webkit-box-orient: vertical;
    line-height: 26px;
}
.case_related .case_study_category_list {
    margin: 50px 0 30px;
}
.page_navi {margin: 60px 0 0 0;}
.page_navi .current, .page_navi a:hover {
    color: #fff !important;
    background: linear-gradient(to right,#8170CE 0%, #DB629A 100%);
    border-color:transparent;
}
.page_navi a, .page_navi .current, .page_navi .dots{
    font-size:24px;font-family: "Zen Kaku Gothic New", sans-serif;font-weight: 600;color:#404040;border: 2px solid #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
}

#single_case {
    width: 100%;
    margin: 0 auto;
    padding:70px 0;
}
#single_case .single_case_detail{
    max-width: 870px;
    margin: 0 auto;
}
#single_case .styled_h3{
    font-size: 24px !important;
    font-weight: 600;
    border-radius: 14px;
    background:linear-gradient(90deg,rgba(109, 85, 217, 1) 0%, rgba(126, 225, 255, 1) 100%);
    color:#fff;
    /*max-width:770px;*/
    margin:40px auto 20px;
    padding: 11px 40px !important;
    border: 0;
    position: relative;
}
#single_case .styled_h3:before{
    content:'';
    width:14px;
    height:14px;
    border-radius:100%;
    background:#fff;
    position:absolute;
    top:calc(50% - 7px);	
    left:20px;
}
#single_case .case_related .case_study_category_list {
    justify-content: end;
}
body.author #archive_blog {
    padding: 80px 0 70px;
}
body.author #author_archive_header {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 940px;
    width: 100%;
}
.cards {
    position: relative;
    z-index: 1;
}
body.single{
    background: #FBF9F7;
    line-height: 1.8;
    color: var(--text);
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    overflow-x: hidden;
    position: relative;
}
body.single #main_content {
    max-width: 1200px;
    width:100%;
    padding: 0;
    position: relative;
    z-index: 999;
    background: #fff;
}
body.single #main_col {
    width: 770px;
    max-width:100%;
}
body.single #side_col {
    width:350px;
    max-width:100%;
}
body.single #side_col .widget_media_image img{
    width: 100%;
}
body.single .category_button {
    background: #8170BE;
    border-radius:4px;
}
body.single h1.title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 140%;
    letter-spacing: 0%;
    margin:0px 0 50px;
}
body.single .feature_image{margin:0 0px 50px 0;}
body.single .feature_image img{width:100%;}
body.single .post_content p{
    font-family: Noto Sans JP;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 200% !important;
    letter-spacing: -2%;
}
body.single #tcd_toc {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 2em;
}

body.single #tcd_toc .toc_title {
    display: block;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: left;
    background: #D9D9D9;
    padding: 15px 20px;
    border-radius: 20px 20px 0 0;
    color: #404040 !important;
}
body.single  #tcd_toc ul {
    list-style: disc;
}
body.single #tcd_toc > ul {
    margin: 0px 50px;
}
body.single  #tcd_toc ul.child ul.child {
    padding-left: 20px;
}
body.single #tcd_toc .toc_link{
    font-family: Noto Sans JP;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 200%;
    letter-spacing: -2%;
    color: #404040;
    padding: 0;
}
body.single .post_content h2{
    background: linear-gradient(90deg, #6D55D9 -5.69%, #7EE1FF 103.85%);
    padding: 15px 20px !important;
    border-radius: 14px;
    font-family: Zen Kaku Gothic New;
    font-weight: 500 !important;
    font-size: 24px !important;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    margin:0 0 20px 0;
    border: 0 !important;
    color: #fff !important;
}
body.single .post_content h3{
    font-family: Zen Kaku Gothic New;
    font-weight: 500 !important;
    font-size: 24px !important;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #404040;
    position:relative;
    background:#EBF6FF;
    border:0;
    padding:15px 30px 15px 50px!important;
    margin:0 0 20px 0;
    border-radius:16px;
}
body.single .post_content h3:before{
    content:'';
    background: linear-gradient(270deg, #6D55D9 -2.5%, #7EE1FF 110%);
    width: 20px;
    height: 5px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 3px;
    position:absolute;
    top:calc(50% - 3px);
    left:20px;
}
body.single .post_content .styled_h4, body.single .post_content h4 {
    font-size: 22px !important;
    text-align: left !important;
    font-weight: 500 !important;
    color: #404040;
    border-color: #3B9BEB;
    border-width: 3px;
    border-style: solid;
    border-left: none;
    border-right: none;
    border-top: none;
    padding-bottom: 0.8em !important;
    background-color: unset;
    padding: 0 0 12px !important;
}
body.single .post_content img{margin-bottom:50px;}
body.single .q_frame2 {
    background: #ecfcff;
    border-radius: 16px;
    border-width: 3px;
    border-color: #3B9BEB;
    border-style: solid;
}
body.single .q_frame3 {
    background: #f9f9e0;
    border-radius: 16px;
    border-width: 3px;
    border-color: #f9b42d;
    border-style: solid;
}
body.single .widget_headline {
    background: linear-gradient(280.42deg, #6D55D9 -4.4%, #7EE1FF 105.99%);	
    height: 70px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
body.single .widget_headline span{
    display: flex;
    align-items: center;
    justify-content: center;
    height:100%;
    position:relative;
    color:#fff;
    gap:10px;
    font-size: 24px;
    font-family: Zen Kaku Gothic New;
    font-weight: 500;
}	
body.single .widget_headline span:before{
    content:'';
    width: 9.131453347025202px;
    height: 34.882323580524485px;
    transform: rotate(35deg);
    opacity: 1;
    border-radius: 19px;
    background: linear-gradient(180deg, #FFFFFF 53.89%, #E0F0FF 100%);
}
body.single a.q_custom_button{
    background: transparent;
    width: 355px;
    height: 60px;
    padding-right: 63px;
    padding-left: 40px;
    border-radius: 30px;
    display:flex;
    align-items:center;
    position:relative;
    color:#fff !important;
    font-family: Zen Kaku Gothic New;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 168%;
    letter-spacing: -2%;
    margin:0 auto;
    transition: all 0.3s;
    border:0  !important;
}
body.single a.q_custom_button:before{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(280.42deg, #8170CE, #DB629A, #8170CE);
    opacity: 1;
    transition: all 0.5s;
}
body.single a.q_custom_button:hover:before{
    right: -100%;
}
body.single a.q_custom_button:hover{
    opacity: 1;
}
body.single a.q_custom_button:after{
    content:'';
    background:url(images/bg_arrow_white.png) no-repeat;
    width:35px;
    height:35px;
    border-radius:100%;
    position:absolute;
    top:12px;
    right:10px;
}
#related_post{margin-top:150px;}
#side_col.un_fixed .FixedWidget__fixed_widget {
    position: unset !important;
}
#side_col.un_fixed > div {
    height: auto !important;
}
.mb30{margin-bottom:30px;}
.page_navi .next span, .page_navi .prev span {
    display: block;
    width: 11px;
    height: 18px;
    background:url(images/paging_arrow.png) no-repeat;
    background-size: contain;
}
.page_navi .prev span {
    transform: rotate(180deg);
}
.page_navi .next::before, .page_navi .prev::before {display:none;}
.c-btn.big {
    transition-duration: .4s;
}
.c-btn.big:hover {
    transform: scale(1.1);
}
/* .cards__item figure{overflow:hidden;border-radius: 22px 22px 0 0;}
.cards__item figure img{transition: all 0.3s;}
.cards__item:hover figure img{transform: scale(1.1);}
.cards__item h4{z-index:9} */
.case_study_info_wrap {
    display: flex;
    justify-content: end;
    position: relative;
    margin: 50px 0;
}
.case_study_info_wrap:before {
    content:'';
    background:url(images/ganbaru.png) no-repeat;
    background-size: contain;
    width:178px;
    height:178px;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
}
.case_study_info {
    background: #FBF9F7;
    padding: 30px 66px;
    border-radius: 16px;
    max-width: 637px;
}
.case_study_info dl {
    flex-direction: column;
}
.case_study_info dt{
    font-family: Zen Kaku Gothic New;
    font-weight: 900 !important;
    font-style: Black;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 168%;
    letter-spacing: -2%;
    color:#3B9BEB;
    position:relative;
    width: 100%;
}
.case_study_info dl dt:last-of-type{
    margin-top:84px;
    color:#E21A1A;
}
.case_study_info dl dt:last-of-type:after{
    content:'';
    background:url(images/case_arrow_down.png) no-repeat;
    background-size: contain;
    width:194px;
    height:64px;
    position:absolute;
    left:50%;
    top:-74px;
    transform:translateX(-50%);
}
.case_study_info dd{
    font-family: Zen Kaku Gothic New;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 168%;
    letter-spacing: -2%;
    width: 100%;
    color:#404040;
}
.mb60{margin-bottom:60px !important;}
@media(min-width:768px){
    .sp{display:none !important;}
}	
@media(max-width:767px){
    body.home .banner-home{margin-top: 94px;}
    body.home .banner-section__media {
        margin-right: -20px;
        padding-left: 0;
    }
    body.home .banner-section__media--inner {
        padding-inline: 0;
        text-align: right;
    }
    body.home .banner-section__media--inner img {
        width: 85%;
    }
    body.home .banner-section__media--inner::before {
        width: 69vw;
        left: auto;
        bottom: 2.5%;
        right: 19%;
        height: auto;
    }
    body.home .banner-section__media--inner::after {
        width: 68vw;
        top: 3.7%;
        right: -15%;
        height: 68vw;
    }
    body.home .home-intro .section-heading__content, body.home .acquire-skills .section-heading__content, #your_spare_time .container .section-heading .section-heading__content, #difference_from_other_schools .container .section-heading .section-heading__content{text-align: justify;}
    body.home .container .scroll-links a {
        color: #4D5CB0;
        text-align: center;
        font-family: "Zen Kaku Gothic New";
        font-size: 13px;
        font-style: normal;
        font-weight: 500;
        line-height: 140%; /* 18.2px */
    }
    body.home .item-slider .slick-slider .slick-arrow {top: 49%;}
    body.home .acquire-skills__grid--item h3 {margin: 0 0 30px;}
    body.home .acquire-skills__box {border-radius: 24px;}
    body.home .section {padding-block: 30px;}
    body.home .section-img--1 .section-heading__content {text-align: justify;}
    body.home .video-section .iframe-reponsive {margin: 0 0px 30px;width: 100%;}
    body.home .notice__content p {font-size: 16px;}	
    .banner-section__content--button {width: 100%;}
    .case_study_info_wrap {padding: 0;}
    .case_study_info_wrap::before {left: 50%;top: 0;transform: translate(-50%, 0);}
    .case_study_info {max-width: 100%;margin-top: 220px !important;padding: 20px;}
    #related_post{margin-top:30px;}
    .pc{display:none !important;}
    #section_top {height: 175px;}
    .page_detail_content{border-radius:24px 24px 0 0;padding:30px 0;}
    #single_case {padding: 30px 0;}
    h1.page_title {font-size: 24px;left: 20px;bottom: 15px;padding-left: 25px;padding-bottom: 0;}
    h1.page_title::before {border-radius: 19px;height: 32px;width: 7px;}
    img.top_white_circle {width: 92px;left: -26px;bottom: -28px;}
    .top_left_circle {top: 4px;left: calc(50% - 16px);width: 32px;}
    .polygon_top {width: 150px;top: 85px;right: 0;}
    .page_detail_des  {text-align: left;}
    ul#faq_categories.col4 {grid-template-columns: repeat(2,1fr);margin: 30px 0;gap:10px;}
    ul#faq_categories li a {height: 50px;border-radius: 10px 10px 0 0;font-size: 16px;letter-spacing: -2px;}
    #faq_list_wrap {padding: 0;}
    #card_reviews h2.section_title{font-size:22px;}
    #card_reviews ul{grid-template-columns: repeat(1,1fr);}
    #card_reviews ul li h3 {font-size: 22px;}
    #card_reviews ul li span.note {right: -8px;}
    .round {width: 40px;right: 12px;top: 16%;}	
    .circle2 {width: 18px;top: 20%;left: 0;}
    .polygon1 {top: 33%;left: -40px;}
    .polygon2 {width: 87px;top: 46%;right: -20px;bottom: unset;}
    .list.col3 {grid-template-columns: repeat(1,1fr);}
    .case_study_category_list {display: block;}
    .case_study_category_list a {display: inline-block;margin-bottom:20px;}
    .case_study_category_list a:last-child {margin-bottom:0px;}
    #single_case .styled_h3 {font-size: 24px !important;padding: 15px 40px !important;}
    body.single #main_col {width: 100%;padding: 0 20px;}
    body.single .category_button {font-size: 16px;}
    body.single h1.title {font-size: 24px;margin: 20px 0 30px;}
    body.single #tcd_toc .toc_title {margin-bottom: 15px;}
    body.single #tcd_toc > ul {margin: 0px 15px 0 30px;}
    body.single #tcd_toc .toc_link {font-size: 15px;}
    body.single .post_content h2 {border-radius: 10px;margin: 0 0 30px 0;}
    body.single .post_content h3 {padding: 15px 30px 15px 50px !important;margin: 0 0 30px 0 !important;border-radius: 10px;}
    body.single #side_col {width: 100%;padding: 0 20px;}
    #archive_blog .list .item, #archive_column .list .item {width: 100%;height: auto;}
    #archive_blog .list .item .image, #archive_column .list .item .image {width: 100%;height: auto;}
    .pricing .table {width: 505px;min-width: 505px;height: 610px;}
    .pricing .table thead tr.heading-label th {height: auto;padding: 0 0 2px;}
    .pricing .table thead tr th h3 {font-size: 10px;gap: 5px;}
    .pricing .table thead tr th h3::before, .pricing .table thead tr th h3::after {width: 2px;height: 30px;}
    .pricing .table thead tr th {height: auto;padding: 5px;font-size: 14px;}
    .pricing .table tbody tr th {width: calc(100% / 3);}
    .pricing .table tbody tr th {height: auto;padding: 5px 10px;font-size: 14px;}
    .pricing .table tbody tr th h3 {font-size: 14px;}
    .pricing .table tbody tr th h4 {font-size: 9px;}
    .pricing .table tbody tr td {font-size: 8px;padding: 5px 10px;height: auto;}
    .pricing .table tbody tr td h3 {font-size: 12px;}
    .pricing-detail h4 {font-size: 8px;padding: 1px;min-width: 40px;}
    .pricing-detail__body {font-size: 6px;}
    .pricing-detail--lg p strong {font-size: 14px;}
    .pricing-detail__body p strong {font-size: 14px;}
    .pricing .table tbody tr td img {margin-bottom: 5px;max-width: 24px;}	
    #company-profile section#management_initiatives{padding-bottom:0;}	
}
@media only screen and (min-width: 768px){
    .site-header.sticky .site-header__nav nav{
        box-shadow: none;
    }
    .site-header.sticky .site-header__inner{
        position: relative;
    }
    .site-header__inner:before{
        content: "";
        position: absolute;
        left: 15px;
        top: 20px;
        /*transform: translateX(-50%);*/
        border-radius: 200px;
        max-width: 1600px;
        z-index: -1;
        width: 0;
        background: #fff;
        transition: width 0.5s;

    }
    .sticky .site-header__inner:before{
        width: calc(65% - 30px);
        height: calc(100% - 40px);
    }
}
@media only screen and (min-width: 1200px) {
    .site-header__inner {
        padding: 46px 20px;
        gap: 25px;
        max-width: 1640px;
        margin: 0 auto;
    }
    .site-header__logo img {
        height: 50px;
    }
    .site-header.sticky .site-header__logo {
        margin-left: 20px;
    }
    .site-header.sticky .site-header__nav nav {
        padding-left: 0;
    }
    .site-header__nav nav > ul li.special-item {
        margin-left: 4px;
        padding-left: 12px;
    }
    .site-header__buttons a {
        padding: 4px 0;
        width: 200px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1300px) {
    body .site-header__inner {gap: 15px;}
    body  .site-header__logo img {height: 40px;}
    body .site-header__nav nav > ul {gap: 5px;}
    body .site-header__nav nav > ul li.special-item {
        margin-left: 0;
        padding-left: 8px;
    }
    body .site-header__buttons a {
        padding: 4px 0px;
        min-width: 160px;width: auto;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1100px) {
    body .site-header__inner {gap: 10px;}
    body  .site-header__logo img {height: 35px;}
    body .site-header__nav nav > ul {
        gap: 0;
    }
    body .site-header__nav nav {padding: 0.36vw 10px;}

}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
    body .site-header__buttons a {
        min-width: 185px;width: auto;
    }
}
@media only screen and (min-width: 1500px) {
    body .site-header__buttons a {
        min-width: 220px;width: auto;
    }
}

@media only screen and (min-width: 768px){
    .page-id-1013 #section_top .polygon_top{
        top: 85px;
    }
}