
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');


/* module
----------------------------------------------------*/

:root {
    --blue2: #1b75b2;
	--base: #f1f5f9;
}
body {
    letter-spacing: .5px;
}
#wrapper {
    overflow: visible;
}
.blue {
	color: var(--blue2);
}
.yellow {
    color: #FFD013;
}
p {
    font-size: 16px;
    color: #111;
    font-weight: 500;
    letter-spacing: .5px;
}
b {
    color: #222;
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 70%, #fff14b 0%) repeat scroll 0 0;
}
.en {
	font-family: 'Roboto';
    text-transform: uppercase;
}
.lp_title {
	margin-bottom: 20px;
}
.lp_title h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0px;
}
.lp_title h2 .gf {
    padding: 0 2px;
    font-size: 42px;
}

.ld_typ1 {
    margin-bottom: 15px;
    display: inline-block;
    background: var(--yellow);
    padding: 8px 20px;
    transform: skew(-15deg);
}
.ld_typ1 span {
    display: block;
    font-size: 18px;
    font-weight: 800;
    transform: skew(15deg);
}

section:last-child {
    padding-bottom: 60px;
}
#footer {
    margin-top: -30px;
}


/* もっと見るボタン */

.more_btn {
    margin: 15px auto 15px;
    text-align: center;
}
.more_btn span {
	position: relative;
    display: inline-block;
    padding-left: 12px;
    color: var(--blue2);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}
.more_btn span:before {
    content: "";
    position: absolute;
    top: 4px;
    left: -3px;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--blue2);
    border-right: 1px solid var(--blue2);
}
.more_btn span.txt-more:before {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.more_btn span.txt-close:before {
    top: 9px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.more_btn span.hide {
	display: none;
}

/* header
----------------------------------------------------*/
header.header {
    position: absolute;
    width: 100%;
    padding: 20px 0px;
    z-index: 2;
}

.logo_area {
    align-items: center;
}
.logo_area .logo {
    width: 140px;
}
.logo_area .l_txt {
    font-size: 12px;
}
.logo_area .icon {
    width: 50px;
}
.logo_area .icon img {
    width: 100%;
    height: auto;
}


.g_navi_top {
    position: absolute;
    top: 30px;
    right: 30px;
	align-items: center;
}

/* eyecatch
----------------------------------------------------*/

.eyecatch4 {
    position: relative;
    padding: 140px 0px 140px;
    background: #f7f6f5;
    overflow: hidden;
}

.eyecatch4:after {
    content: "";
    display: block;
    width: 75%;
    height: 500%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to top right, rgba(255, 255, 255, 0) 50%, rgb(255 208 21) 50%) no-repeat top left / 100% 100%;
}
.eyecatch4 .inner {
    position: relative;
    z-index: 2;
}
.eye_in_2 {
    width: calc(100% - 570px);
}
.eye_in_2 .sub {
    margin: 25px 0px;
    font-size: 20px;
    font-weight: 600;
    padding-left: 5px;
}
.eye_in_2 .sub span {
    display: inline-block;
    margin-right: 2px;
    padding: 0px 5px;
    background: var(--black);
    color: #fff;
}
.eye_img {
    width: 570px;
    height: 340px;
    padding: 35px 76px 50px 76px;
    background-image: url(../img/fv_pc.svg);
    background-size: cover;
    background-position: center center;
}

.eye_in_2 .award {
    max-width: 420px;
}


.ex_project_area .tl {
	position: relative;
    margin-bottom: 9px;
    font-size: 16px;
    font-weight: 600;
    padding-left: 35px;
    color: var(--blue2);
}
.ex_project_area .tl:after {
	position: absolute;
	content: "";
	top: 50%;
    margin-left: 15px;
	width: 70px;
	height: 1px;
	background-color: var(--blue2);
}

.ex_project_area .tl:before {
    position: absolute;
    top: 7px;
    left: 15px;
    content: "";
    width: 12px;
    height: 12px;
    background: var(--blue2);
    border-radius: 50%;
    animation: blinking 1s ease-in-out infinite alternate;
}
/* 点滅 */
@keyframes blinking {
    0% {
        opacity: 0.6;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
 }



@media screen and ( min-width:760px ) {
    /*
    .bx-wrapper .bx-viewport {
        padding: 0 10px 10px;
        height: 86px !important;
    }
    */

}

.bx-wrapper .bx-viewport {
    padding: 3px;
}
.ex_project_list li {
    margin-bottom: 14px;
}

.ex_project_list li .img {
    width: 45px;
}

.ex_project_list li .txt {
    width: calc(100% - 45px - 12px);
    margin-left: 12px;
    padding: 14px 5px 14px 10px;
}
.ex_project_list li .txt:before {
    content: '';
    position: absolute;
    left: -7px;
    top: 15px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 7px solid #fff;
}
.ex_project_list li .t {
    font-size: 13px;
    color: #333;
}

.modaal-container {
    max-height: 80vh;
    overflow-y: scroll;
}
.modaal-content-container .category_list_2 li .txt_in li:last-child {
    text-align: left;
}

.modaal-content-container .category_list_2 li .txt_in li:first-child,
.modaal-content-container .category_list_2 li .txt_in li {
    border: none;
    display: block;
    margin: 0 0 12px;
    padding: 0;
    font-size: 15px;
    font-weight: 400;
}
@media screen and (min-width: 760px) {

    .modaal-content-container .category_list_2>li {
        width: calc(100% / 3 - 2%);
    }
    .modaal-content-container .category_list_2 li .toggle_tl:after {
        content: none;
    }
}



.btn_side {
    position: fixed;
    top: 20%;
    right: -5px;
    z-index: 2;
    transform: translateY(-50%);
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
}

.btn_side a {
    display: block;
    padding: 14px 15px;
    background: #fff;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    border: 2px solid var(--blue2);
    border-radius: 5px;
}
.btn_side a:hover {
    background: var(--blue2);
    color: #fff;
    text-decoration: none;
}



/* cta
----------------------------------------------------------- */

.fv_cta {
    position: relative;
    z-index: 2;
    width: 740px;
    margin: -50px auto 0;
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 2px rgb(0 0 0 / 10%);
}

.fv_cta .img {
    position: absolute;
    bottom: 0;
    right: -130px;
    width: 240px;
}
.fv_cta .img img {
    width: 100%;
}
.fv_cta .in {
    position: relative;
    padding: 30px;
    text-align: center;
}
.fv_cta .in:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #f7f7f7;
    background-image: linear-gradient(#f7f7f7 1px, transparent 1px), linear-gradient(to right, #f7f7f7 1px, #ffffff 1px);
    background-size: 20px 20px;
}
.fv_cta .cta_free {
	position: absolute;
	top: 10px;
    left: 20px;
}
.fv_cta .arrow_tl {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.fv_cta .tl {
    margin-top: 2px;
    font-size: 26px;
    font-weight: 800;
}
.fv_cta .form_li {
    margin: 20px 0 25px;
}
.fv_cta .form_li li {
    width: calc(100% / 2 - 40px);
}
.fv_cta .form_li li input {
    width: 75%;
}
.fv_cta .form_li li input:valid {
    border-color: #333;
	animation: inherit;
}
.fv_cta .form_li li input:invalid {
    border-color: #cd6800;
    animation: flash 2s linear infinite;
}
@keyframes flash {
	0%,100% {
    	border-color: #cd6800;
	}
	50% {
    	border-color: #ffbe00;
	}
}

.fv_cta .form_li li .ct {
    display: inline-block;
    width: 60px;
    font-weight: 600;
}
.btn button {
    display: inline-block;
    padding:0;
    margin:0;
    background:none;
    border:0;
    font-size:0;
    line-height:0;
    overflow:visible;
    cursor:pointer;
}
.s_btn_s {
    display: inline-block;
    min-width: 300px;
    height: 56px;
    padding-top: 0px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #fff !important;
    text-shadow: 0 -1px 1px rgb(129 0 0 / 63%);
    text-align: center;
    border: 1px solid #ff5f5f;
    border-right-color: #db3939;
    border-bottom-color: #9f0b0b;
    border-radius: 30px;
    background-color: #ff7a0f;
    background-image: linear-gradient(to top, #ed1919 0%, #ff5757 100%);
    box-shadow: 0 2px 0 0 rgb(255 255 255 / 40%) inset, 0px 2px 2px 0 rgb(124 0 0 / 34%);
}

.s_btn_s:hover {
    background-color: #e92626;
	background-image: none;
	text-decoration: none;
}
.s_btn_s .icon {
    display: inline-block;
    position: relative;
    top: 5px;
    margin-right: 12px;
    width: 26px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/cta_btn_icon.svg);
}



/* 悩み解消
----------------------------------------------------*/

section.nayami_area {
    margin-top: -310px;
    padding-top: 325px;
    background: #f7f7f7;
}
.nayami_list {
    max-width: 700px;
    margin: 30px auto 0;
}
.talk-item {
    align-items: center;
    padding: 0px 20px 0px;
}
.talk-item:last-child {
	margin-bottom: 0px;
}

.talk-item .talk-icon {
  width: 120px;
  margin-right: 15px;
  flex-shrink: 0;
}

.talk-item .talk-bubble {
  position: relative;
  padding: 15px 20px;
  border-radius: 10px;
  width: calc(100% - 120px - 15px);
  background: #fff;
  box-shadow: 0px 3px 13px rgba(90, 90, 90, 0.2);
}

.talk-item .talk-bubble:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #fff;
}
.talk-item .talk-bubble p {
	font-size: 18px;
}
.talk-item.reverse {
  flex-direction: row-reverse;
}

.talk-item.reverse .talk-icon {
  margin-right: 0;
  margin-left: 15px;
}
.talk-item.reverse .talk-bubble:before {
  left: auto;
  right: -10px;
  border-right: none;
  border-left: 10px solid #fff;
}

.problem_area_wrap {
    max-width: 920px;
    margin: 0 auto;
}

.nayami_img {
    max-width: 460px;
    margin: 0 auto;
}

.problem_area_list {
    margin-top: -1px;
    padding: 30px;
    background: var(--yellow);
    justify-content: center;
}
.problem_area_list li {
    position:relative;
    width: calc(100% / 3 - 20px);
    margin: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 2px 4px 0px rgba(80, 80, 80, 0.45);
}

.problem_area_list li p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

.problem_area_list li span {
    color: var(--blue2);
    border-bottom: 3px dotted var(--blue2);
}
.problem_area_wrap .img {
	text-align: center;
}


/* 比較ビズとは
----------------------------------------------------*/


.intro_area {
    position: relative;
    background: #fff;
}
/*
.intro_area:after {
    content: "";
    position: absolute;
    top: 90px;
    z-index: -1;
    width: 100%;
    height: 300px;
    background: url(../img/biz_guide_bk.png) top center no-repeat;
    background-size: contain;
    opacity: 0.7;
}
*/
.intro_area .img {
    max-width: 820px;
    margin: 40px auto 30px;
}
.intro_area .img img {
    width: 100%;
    height: auto;
}
.intro_area .txt {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
}

section.solution_area {
    position: relative;
    background: #f7f7f7;
}
.solution_area:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: var(--blue2);
}

.solution_area .inner {
    position: relative;
    z-index: 1;
}
ul.feature_list {
    margin: 40px auto 0;
}
ul.feature_list li {
    width: calc(100% / 2 - 20px);
    margin: 10px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 15%);
    border-radius: 5px;
}
ul.feature_list li:nth-child(n+3) {
    width: calc(100% / 3 - 20px);
    padding: 20px;
}

ul.feature_list li .tl_icon {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}
ul.feature_list li .tl_icon .icon {
    width: 70px;
    padding: 10px;
    border-radius: 50%;
    background: var(--yellow);
}
ul.feature_list li .tl_icon .tl {
    width: calc(100% - 70px);
    padding-left: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--blue2);
}
ul.feature_list li:nth-child(n+3)  .tl_icon .tl {
    font-size: 20px;
}

ul.feature_list li .txt {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px dotted var(--blue2);
}
ul.feature_list li .txt p {
    font-size: 16px;
    color: #333;
}
/*
ul.feature_list li:nth-child(n+3) .txt {
    display: none;
}
*/
ul.feature_list li:nth-child(n+3) .txt p {
    font-size: 14px;
}
ul.feature_list li a.btn {
    display: block;
    max-width: 260px;
    margin: 20px auto 0;
    padding: 12px 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue2);
    background: #f6f6f6;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 2px rgb(141 141 141 / 30%);
    -webkit-box-shadow: 0 2px 2px rgb(141 141 141 / 30%);
    border-radius: 5px;
}
ul.feature_list li a.btn:hover {
    color: #fff;
    background: var(--blue2);
    text-decoration: none;
}

ul.point_list {
    margin: 50px auto 0;
    max-width: 940px;
}

ul.point_list li {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    position: relative;
    width: calc(100% / 3 - 2%);
    margin: 0 1%;
    /*
    padding: 38px 10px 15px;
    */
    padding: 15px 10px;
    background-color: #fff;
    box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 15%);
    border-radius: 5px;
}
ul.point_list li .icon {
    width: 100px;
}

ul.point_list li .txt {
    width: calc(100% - 100px);
    padding-left: 15px;
}
ul.point_list li .num {
    /*
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    border-radius: 5px 5px 0px 0px;
    font-style: italic;
    */
    display: inline-block;
    margin-bottom: 7px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    background: var(--blue2);
    color: #fff;
    border-radius: 5px;
}

ul.point_list .txt .tl {
    /*
    margin-bottom: 5px;
    */
    font-size: 18px;
    color: var(--blue2);
    font-weight: 600;
}
ul.point_list .txt p {
    display: none;
    /*
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    */
}


.stock_list_top {
    margin-top: 40px;
}
/*
.stock_list_top .swiper-slide {
    width: 47%;
    margin-right: 20px !important;
}
*/
.stock_list_top .swiper-slide {
    width: 48%;
    margin: 0 4% 3% 0;
}
.stock_list_top .swiper-slide:nth-child(even) {
    margin-right: 0;
}
.stock_list_top .wrap {
    

}
.stock_list_top .wrap .left {
    width: 190px;
}
.stock_list_top .wrap .left img {
    width: 100%;
    height: auto;
}
.stock_list_top .wrap .right {
    width: calc(100% - 190px);
    padding-left: 20px;
}
.stock_list_top .wrap .tl {
    display: none;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 800;
}
.stock_list_top .wrap dl {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
    padding: 12px;
    background: var(--blue2);
    border-radius: 5px;
}
.stock_list_top .wrap dl dt {
    width: 70px;
}
.stock_list_top .wrap dl dd {
    width: calc(100% - 70px);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}


.stock_list_top .wrap dl dt span {
    display: inline-block;
    padding: 5px 9px;
    font-weight: 800;
    color: var(--blue2);
    background: #fff;
    border-radius: 5px;
}

.stock_list_top .wrap dl.before {
    margin-bottom: 25px;
    background: #f7f7f7;
}
.stock_list_top .wrap dl.before dt span {
    background: #7f7f7f;
    color: #ffffff;
}

.stock_list_top .wrap dl.before dd {
    color: #555;
    font-size: 14px;
}

.stock_list_top .wrap .right p {
    margin-top: 10px;
    font-size: 11px;
    color: #555;
    text-align: right;
}

.cp_arrows {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cp_arrows .cp_arrow {/*矢印を配置するベースの設定*/
    position: absolute;
    top: -22px;
    width: 30px;
    height: 3px;
    opacity: 0;/*スタートは透明*/
    transform: scale(0.3);/*スタートは30%に縮小*/
    animation: arrow-move07 3s ease-out infinite;
  }
  .cp_arrows .cp_arrow:first-child {/*1秒ずらしてアニメーション*/
    animation: arrow-move07 3s ease-out 1s infinite;
  }
  .cp_arrows .cp_arrow:nth-child(2) {/*2秒ずらしてアニメーション*/
    animation: arrow-move07 3s ease-out 2s infinite;
  }
  .cp_arrows .cp_arrow:before,
  .cp_arrows .cp_arrow:after {/*矢印全体の設定*/
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 100%;
    background: var(--blue2);
    border-radius: 2px;
  }
  .cp_arrows .cp_arrow:before {/*矢印左の線の位置と傾斜*/
    left: 1px;
    transform: skewY(30deg);
  }
  .cp_arrows .cp_arrow:after {/*矢印左の線の位置と傾斜*/
    right: 1px;
    transform: skewY(-30deg);
  }
  @keyframes arrow-move07 {
     25% { opacity: 0.6;}
     43% { transform: translateY(0.75em); opacity: 0.8;}
     62% { transform: translateY(1.5em); opacity: 1;}
    100% { transform: translateY(2.25em) scale(0.5); opacity: 0;}
  }

/* swiperの部品 */

.swiper-btm-area {
	margin-top: 20px;
    padding-bottom: 10px;
    align-items: center;
}

.swiper-btm-area .swiper-handle {
    position: relative;
    justify-content: center;
    align-items: center;
	width: 120px;
}
.swiper-btm-area .swiper-button-prev,
.swiper-btm-area .swiper-button-next {
    position: relative;
    left: 0;
    margin-top: auto;
}
.swiper-btm-area .swiper-button-prev {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    margin-right: 15px;
}
.swiper-btm-area .swiper-handle-set {
	position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--yellow);
}
.swiper-btm-area .swiper-handle-set:before {
    content: '';
    display: block;
    position: absolute;
    pointer-events: none;
    top: 20px;
    right: 22px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-left: 2px solid #333;
    transform: rotate(135deg);
    z-index: 2;
}
.swiper-btm-area .swiper-button-next:after,
.swiper-btm-area .swiper-button-prev:after{
	content: none;
}

.swiper-btm-area .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: relative;
    width: calc(100% - 120px - 80px - 180px);
    height: 4px;
    margin: 0 50px 0 30px;
    background-color: #f7f7f7;
}
.swiper-btm-area .swiper-scrollbar-drag {
    background-color: var(--yellow);
}
.swiper-btm-area .swiper-btm-area .btn {
	width: 180px;
}


/* 案件一覧
----------------------------------------------------*/
.project_area {
    background: #f4fafe;
}
.project_flex {
    margin-top: 40px;
}
.project_area .project_wrap a {
    position: relative;
    display: block;
    margin-bottom: 20px;
    padding: 20px 50px 20px 20px;
    background: #fff;
    color: #333;
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 10%);
    border-radius: 5px;
}
.project_area .project_wrap a:hover {
    background: var(--blue2);
    color: #fff;
    text-decoration: none;
}
.project_area .project_wrap a:hover .num {
    font-size: 11px;
    color: #fff;
}
.project_area .project_wrap a:hover:after {
    border-color: #fff;
}
.project_area .project_wrap a:hover dl dt {
    color: var(--blue2);
    background: #fff;
}
.project_area .project_wrap a:hover dl dt span {
    filter: invert(0%);
}

.project_area .project_wrap a:after {
    content: '';
    display: block;
    position: absolute;
    pointer-events: none;
    top: calc(50% - 15px);
    right: 22px;
    width: 30px;
    height: 30px;
    border-top: 2px solid #c6c6c6;
    border-left: 2px solid #c6c6c6;
    transform: rotate(135deg);
    z-index: 2;
}
.project_area .project_wrap a .num {
    font-size: 11px;
    color: #555;
}
.project_area .project_wrap a .tl {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 800;
}
.project_area .project_wrap .dl_area {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.project_area .project_wrap .dl_area dl {
    margin-right: 20px;
}
.project_area .project_wrap dl {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
}
.project_area .project_wrap dl dt {
    width: 88px;
    padding: 4px 7px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    font-size: 12px;
    background: var(--blue2);
    border-radius: 20px;
}

.project_area .project_wrap dl dt span {
    filter: invert(100%);
}
.project_area .project_wrap dl dd {
    width: calc(100% - 88px);
    padding-left: 12px;
    font-weight: 600;
}

.project_cta_txt {
    margin-top: 60px;
    text-align: center;
}

.project_cta_txt .arrow_tl {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}
.arrow_tl .arrow {
    padding: 0 40px;
}
.arrow_tl .arrow:before,
.arrow_tl .arrow:after {
    width: 40px;
}

/* 案件詳細
----------------------------------------------------*/

.ct_in {
    padding: 0px 15px;
    margin-bottom: 0px;
}
.sbj_head .right {
    padding-left: 20px;
}
.sub_area span.tl {
    margin-right: 5px;
    background: var(--blue2);
    color: #fff;
}
.sub_area span.tl span {
    filter: invert(100%);
}
.dl_base dt {
    width: 160px;
    border-bottom: 2px solid var(--blue2);
}
.dl_base dd {
    width: calc(100% - 160px);
    font-weight: 500;
    border-bottom: 2px solid #ddd;
}
.sbj_head .sub_area {
    margin: 15px 0px 0px 0px;
}
.sbj_head .sub_area li {
    font-weight: 600;
}
.hash_area span {
    display: inline-block;
    margin-right: 10px;
    font-weight: 500;
}

/* 案件フォーム
----------------------------------------------------*/
  
.project_area .tab_button {
    position: relative;
    width: 100%;
    padding: 10px 74px 10px 20px;
    background: #FFF;
    cursor: pointer;
    transition: 0.3s;
    border: 0;
    box-shadow: none;
    text-align: left;
}
  
.project_area .tab_content.active {
    display: block;
}

.project_area .tab_button:hover,
.project_area .tab_button.active {
    background-color: #e9eef1;
    color: var(--blue2);
}
.project_area .tab_button:hover .tl,
.project_area .tab_button.active .tl {
    font-weight: 600;
    color: var(--blue2);
}

.project_area .tab_button:hover .icon img,
.project_area .tab_button.active .icon img {
	-webkit-transition: .4s ease 0s;
    transition: .4s ease 0s;
}
.project_area .content_button {
    width: 50%;
    padding: 10px 20px;
    background: #adadad;
    color: #fff;
    cursor: pointer;
    border: none;
}
.project_area .content_button:hover,
.project_area .content_button.active {
    position: relative;
    background: var(--blue2);
    color: #fff;
    border: none;
}

.project_area .content_button:hover:after,
.project_area .content_button.active:after {
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border: 10px solid transparent;
    border-top-color: var(--blue);
    top: 100%;
    left: 50%;
    margin-left: -10px;  
}

.project_area .side_category {

}
.project_area .side_category .icon {
    align-items: center;
}

.project_area .side_category .icon img {
    width: 35px;
    height: 35px;
}

.project_area .side_category .tl {
    margin-left: 12px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}


.project_area {
    padding: 60px 0px 90px;
	/*
    padding: 90px 0px;
    background: #f7f7f7;
	*/
}
.business_scene_box {
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 10%);
}
.project_area .hidden {
    display: none; 
}
.project_area .side_menu {
    width: 340px;
}
.project_area .side_category {
    max-height: 620px;
    overflow-y: scroll;
}
.project_area .business_list {
    width: calc(100% - 340px);
    padding: 25px;
    border-left: 1px dotted #ddd;
    background-color: #e9eef1;
    height: 620px;
    overflow-y: scroll;
}

.business_list .content_area {
    padding: 0;
    background: none;
}
/* カテゴリ一覧
----------------------------------------------------*/

.category_cost_area {
    position: relative;
}
.category_cost_area:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 600px;
    background: var(--blue2);
}

.cca_top .left {
    width: calc(100% - 500px);
	padding-right: 60px;
}
.cca_top .right {
    margin-left: auto;
    min-width: 500px;
}


.cca_top .right .all_pro {
    margin-top: 5px;
    text-align: right;
}

.cca_top .right .all_pro a {
    font-size: 13px;
    color: #fff;
    text-decoration: underline;
}


.cost_entry_area {
	margin-top: 30px;
	padding: 20px 15px;
	background-color: var(--base);
	border-radius: 3px;
}
.cost_entry_area>.tl {
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 800;
    color: var(--blue2);
}
.cost_entry_area>p.txt {
    padding-left: 5px;
    font-size: 14px;
    color: #555;
}
.cost_entry_list {
    margin-top: 15px;
}
.cost_entry_list li {
	width: calc(100% / 4);
	padding: 10px;
}
.cost_entry_list li a {
	display: block;
	padding: 15px;
	color: #333;
    background-color: #fff;
    box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 15%);
	border-radius: 5px;
}
.cost_entry_list li a:hover {
	opacity: 0.8;
	text-decoration: none;
}
.cost_entry_list li .tl {
	margin-bottom: 15px;
	font-size: 16px;
    font-weight: 600;
    color: var(--blue2);
}

.cost_entry_list li .img {
	max-height: 120px;
	overflow: hidden;
    margin-bottom: 17px;
    border-radius: 5px;
}
.cost_entry_list li .img img {
    position: relative;
    top: -60px;
}
.cost_entry_list li .cel_dl {
    margin-top: 7px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.cost_entry_list li .cel_dl dt {
    width: 80px;
    padding: 5px 2px;
    color: #829198;
    border: 1px solid #829198;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
}
.cost_entry_list li .cel_dl dd {
    width: calc(100% - 80px);
    padding-left: 15px;
    font-weight: 500;
}

.cost_entry_list li .cel_dl dd .num {
    position: relative;
    top: 2px;
    display: inline-block;
    margin: 0 3px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1;
}
.cost_entry_list li:nth-child(2) .cel_dl dd .num {
    margin-left: 0px;
}


/* 利用の流れ
----------------------------------------------------*/

.flow_area {
    position: relative;
    background: var(--base);
}
.flow_area:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 300px;
    background: var(--base);
}
.flow_list {
	margin-top: 40px;
}
.flow_list li {
    width: calc(100% / 4 - 3%);
    position: relative;
	margin: 0 1.5%;
	padding: 20px;
    background-color: #fff;
    box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 15%);
    border-radius: 5px;
}
.flow_list li:not(:first-child):before {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    border-top: 4px solid var(--blue2);
    border-right: 4px solid var(--blue2);
    position: absolute;
    top: calc(50% - 14px);
    left: -25px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*
.flow_list li .tl_area {
    width: calc(100% - 160px);
	padding-left: 30px;
}
*/

.flow_list li .tl_area {
	margin-top: 10px;
}
.flow_list li .tl_area .en {
    display: block;
    text-align: center;
}
.flow_list li .tl_area h3 {
    margin: 5px 0px 10px;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: var(--blue2);
}
.flow_list li p {
    font-size: 15px;
}

.flow_list li .img {
    max-width: 80px;
    margin: 0 auto;
}
.flow_list li .img img {
    width: 100%;
    height: auto;
}


/* お客様の声
----------------------------------------------------*/

section.voice_area,
section.case_area {
	position: relative;
}
section.voice_area:before,
section.case_area:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #f7f7f7;
    background-image: linear-gradient(#f7f7f7 1px, transparent 1px), linear-gradient(to right, #f7f7f7 1px, #ffffff 1px);
    background-size: 20px 20px;
}


.voice_txt_img {
	margin: 0 auto;
	text-align: center;
}

.voice_list {
    margin: 40px auto
}

.voice_box {
    width: calc(100% / 2 - 2%);
    margin: 1%;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 10%);
    transition: .8s;
	border-radius: 3px;
}



.voice_box .num {
    font-size: 18px;
    font-weight: 700;
    color: #f6921d
}

.voice_box .tl {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.voice_box .icon_txt {

}
.voice_box .icon_txt .icon {
    width: 180px;
}
.voice_box .icon_txt .icon img {
    width: 100%;
}

.voice_box .icon_txt .txt {
    width: calc(100% - 180px);
    padding-left: 20px
}

.voice_box .txt p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.voice_box .name {
    margin-top: 10px;
    font-size: 12px;
    color: #4d7591;
    text-align: right;
}



.voice_list {
	margin-top: 40px;
}
.voice_list li {
    width: calc(100% / 3 - 20px);
    margin: 10px;
}

.voice_list li .tl_area {
	align-items: center;
}

.voice_list li .img {
	width: 120px;
}
.voice_list li .txt {
	width: calc(100% - 120px);
	padding-left: 20px;
}
.voice_list li .txt h3 {
	margin-bottom: 5px;
	font-size: 13px;
}
.voice_list li .txt h3 span {
	font-size: 20px;
}
.voice_list li .txt2 {
    position: relative;
    margin-top: 20px;
    padding: 15px;
    background: #edf4f7;
    border-radius: 5px;
}
.voice_list li .txt2:before {
	content: "";
    position: absolute;
    top: -25px;
    left: 18%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 20px solid #edf4f7;
}
.voice_list li .txt2 p {
    font-size: 14px;
}


/* 料金表
----------------------------------------------------*/

table {
	border-collapse: collapse;
	margin: 40px auto;
	padding: 0;
	table-layout: fixed;
    font-weight: 600;
    max-width: 890px;
}
  
table tr {
	background-color: #eee;
	padding: .35em;
}

table tbody tr td {
	border-bottom: 2px solid #fff;
}

table tr:nth-child(even){
	background-color: #dddddd;
}
table th,
table td {
    padding: 12px 7px 12px 10px;
    border-right: 2px solid #fff;
}
table td {
    padding: 4px 10px 18px 20px;
    border-right: 2px solid #fff;
}
table th {
    font-size: 18px;
    font-weight:600;
    text-align: center;
}
table thead tr{
    background-color: #444444;
    color:#fff;
}

table tbody th {
    background: #1b75b2;;
    color: #fff;
    text-align: center;
    border-bottom: 2px solid #ddd;
}
table tbody tr:last-child th {
    border-bottom: 0;
}
.table_area .txt {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}

.table_area table span {
    display: inline-block;
    position: relative;
    top: 8px;
    margin-right: 7px;
    color: var(--blue2);
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
}

.price{
    text-align: right;
    color: #167F92;
    font-weight: bold;
}
table thead td.non{
    width: 180px;
    background:#fff;
    visibility: hidden;
}
.table_area .dl {
    color: #5f8096;
}
.table_area .bt {
    color:#333;
}
/*
.table_area .blue_bk {
    background-color: #21568e;
}
*/
.table_area .biz_bk {
    background-color: #d6e7f9;
}
.table_area .biz_bk2 {
    background-color: #eaf3fc;
}
.table_area .biz_bk,
.table_area .biz_bk2 {
    font-size: 18px;
    font-weight: 800;
    color: #1b75b2;
}

.table_area .biz_cell {
	background-color: #1b75b2;
	position: relative;
	font-size: 26px;
    font-weight: 600;
    padding-top: 6px;
}
.table_area .biz_cell:after{
    content: '';
    width: 100%;
    height: 18px;
    background-color: #1b75b2;
    position: absolute;
    top: -8px
    left: 0px;
    z-index: -1;
    /*
    border-radius: 10px;
    */
}


.price_detail.howto_area {
    margin: 40px auto;
    max-width: 890px;
}
/*
.price_detail.howto_area p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
*/
.price_detail.howto_area ul.check_list_area {
    margin-top: 20px;
    padding: 15px 15px 5px;
    background: #f7f7f7;
}

.price_detail.howto_area ul.check_list_area li {
    font-weight: 600;
}

/* シミュレーター
----------------------------------------------------*/
.simulator_ind_list {
    margin: 30px auto 0px;
}

.simulator_ind_list li {
    width: calc(100% / 3 - 20px);
    margin: 10px;
}
.simulator_ind_list li a {
    padding: 10px 18px 10px 36px;
}
.simulator_ind_list li a .img {
    width: 60px;
}
.simulator_ind_list li a .img img {
	width: 100%;
}
.simulator_ind_list li a .tl {
    width: calc(100% - 60px);
    padding-left: 15px;
    font-size: 15px;
    font-weight: 600;
}


/* CTA
----------------------------------------------------*/


.cta {
    position: relative;
    padding: 60px 0px;
    background: #f7f2e3;
}
.cta:before {
    content: "";
    position: absolute;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: url(../img/cta_bk.png) top center no-repeat;
    background-size: cover;
}
.cta .inner {
    position: relative;
}
.cta .tl {
    margin-bottom: 12px;
}
.cta .img {
    position: absolute;
    bottom: -60px;
    right: -30px;
    width: 290px;
}
.cta .img img {
    width: 100%;
    height: auto;
}
.cta .flex_in {
    align-items: center;
}
.cta .left {
	width: 326px;
}
.cta .right {
	width: calc(100% - 326px);
	padding-left: 40px;
    padding-right: 220px;
}
.cta .right .in {
    position: relative;
    z-index: 2;
    width: 100% !important;
}
.cta .fm_txt {
    margin: 10px 0 20px;
    padding: 8px 0px;
    border-top: 2px solid #54480e;
    border-bottom: 2px solid #54480e;
    color: #54480e;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.cta .form_li li {
    width: calc(100% / 2 - 10px);
    margin-right: 20px;
}
.cta .form_li li:last-child {
    margin-right: 0px;
}
.cta .form_li li .ct {
    display: block;
    margin-bottom: 5px;
    color: #111;
    font-weight: 600;
    font-size: 15px;
}
.cta .form_li li input {
    border: 2px solid var(--black);
    box-shadow: none;
}
.cta .btn {
    margin: 20px auto 0px;
	text-align: center;
}


/* 発注者ロゴ
----------------------------------------------------*/

ul.cm_y_list li {
    position: relative;
    width: calc(100% / 2 - 20px);
    height: 0;
    margin: 10px;
    padding-top: calc(56.25% / 2); /* 16:9 アスペクト比 */
}

ul.cm_y_list li iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.user_case {
    margin-bottom: 40px;
    padding: 40px;
    align-items: center;
    background: #fff;
    border: 3px solid #555555;
}

.user_case .txt {
    width: 60%;
    padding-right: 40px;
}
.user_case .img {
    width: 40%;
}

.user_case .img img {
    width: 100%;
    height: auto;
}
.user_case .txt p {
    color: #111;
}


/* よくある質問
----------------------------------------------------*/

.sec_pt_area {
	background: var(--base);
}
.sec_pt_area .flex_in {
    max-width: 900px;
    margin: 30px auto 0;
}
.sec_pt_area h3 .faq_icon,
.sec_pt_area .accbox label .faq_icon {
    background-color: var(--blue2);
}
.sec_pt_area h4 .faq_icon,
.sec_pt_area .accbox .accshow .faq_icon {
    background-color: #ffffff;
    border: 2px solid var(--blue2);
    color: var(--blue2);
}
.sec_pt_area h3 .faq_icon,
.sec_pt_area .accbox label .faq_icon,
.sec_pt_area h4 .faq_icon,
.sec_pt_area .accbox .accshow .faq_icon {
    border-radius: 50%;
}
.sec_pt_area .accbox label {
    font-size: 16px;
}
.sec_pt_area .accbox .accshow .faq_icon {
    top: -6px;
    left: 0px;
}
.sec_pt_area .cssacc:checked + label + .accshow {
    margin: 10px 0px 20px 0px;
    padding: 0px 0px 0px 50px;
    font-weight: 500;
    font-size: 14px;
    background: none;
    color: var(--blue2);
    overflow: inherit;
}

.faq_icon {
    min-width: 40px;
    min-height: 40px;
    font-family: 'Roboto';
    padding: 8px 4px 8px;
}
.company_area .access_area {
    margin: 30px 0px 15px;
    align-items: center;
}
.company_area .rt_2 li {
    width: calc(100% / 3);
    padding: 15px;
}
.company_area .rt_2 li img {
    width: 100%;
    height: auto;
}

.ftside_btn_in {
    max-width: 270px;
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 10%);
    border-radius: 5px;
}
.ftside_btn_in .txt {
    align-items: center;
}
.ftside_btn_in .txt .woman_icon {
    width: 70px;
    border-radius: 50%;
    background: var(--yellow);
}
.ftside_btn_in .txt .woman_icon img {
    width: 100%;
    border-radius: 50%;
}
.ftside_btn_in .txt p {
    width: calc(100% - 70px);
    padding-left: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.ftside_btn_in .tel_block {
    margin: 15px 0px;
}


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

    .inner {
        width: 1076px;
    }

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


	.easy_mitsu_area {
		display: block;
	    max-width: 400px;
	}
	.easy_mitsu_area .arrow_img {
	    margin: 50px 0px 50px;
	    position: relative;
	    top: inherit;
	    left: inherit;
	    text-align: center;
	    transform: rotate(103deg);
	}

	.easy_mitsu_area .lt_img,
	.easy_mitsu_area .rt_img {
		width: 100%;
		padding: 0px;
	}


}

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

    p {
        font-size: 14px;
        line-height: 1.6;
    }
    .inner {
        width: 92%;
    }
    section {
        padding: 60px 0px;
    }
    input[type="search"], input[type="text"], input[type="email"], input[type="url"], input[type="number"], input[type="password"], input[type="tel"], input.login, select, textarea {
        height: 50px;
        font-size: 15px;
    }
    .modaal-content-container {
        padding: 15px !important;
    }
    .eye_in_2,
    .cta .left,
    .cta .right,
    .user_case .txt,
    .user_case .img
     {
        width: 100%;
        padding: 0;
    }
    table {
        table-layout: inherit;
    }
    table th {
        width: 27%;
        font-size: 15px;
    }
    table tbody th {
        width: 80px;
    }
    table td {
        padding: 6px 10px 12px 10px;
    }
    .table_area .biz_cell {
        font-size: 16px;
    }
    .table_area table span {
        display: block;
        font-size: 32px;
        margin: 0 auto 12px;
    }
    .table_area .txt {
        font-size: 13px;
        text-align: center;
    }
    .lp_title h2 {
        font-size: 28px;
    }

    .ld_typ1 span {
        font-size: 15px;
    }
    .logo_area .logo {
        width: 90px;
    }
    .g_navi_top {
        top: 20px;
        right: 20px;
    }
    .g_navi_top .tel_block a {
        display: block;
        width: 180px;
    }

    .eyecatch4 {
        padding: 100px 0px 60px;
    }
    .eyecatch4:after {
        height: 250%;
    }
    .eye_in_2 .sub {
        margin: 15px 0px;
        font-size: 3.7vw;
        padding-left: 1px;
    }
    .eye_img {
        width: 340px;
        height: 192px;
        margin: 30px auto 0;
        padding: 22px 45px 50px 45px;
    }

    .eyecatch4 .btn {
        margin-top: 30px;
    }
    .ex_project_area .tl {
        margin-bottom: 7px;
        font-size: 13px;
        padding-left: 20px;
    }
    .ex_project_area .tl:before {
        top: 5px;
        left: 4px;
        width: 10px;
        height: 10px;
    }
    .ex_project_area .tl:after {
        margin-left: 7px;
        width: 50px;
    }
    .ex_project_list li .img {
        width: 40px;
    }
    .ex_project_list li .txt {
        width: calc(100% - 40px - 14px);
        padding: 7px;
    }
    .ex_project_list li .t {
        font-size: 12px;
    }


    .problem_area_list {
        margin-top: -1px;
        padding: 15px 5px;
    }

    .problem_area_list li {
        width: calc(100% / 2 - 10px);
        margin: 5px;
        padding: 15px 10px;
    }
    .problem_area_list li p {
        font-size: 14px;
    }


    .intro_area:after {
        top: 200px;
    }

    .intro_area .txt,
    ul.feature_list li .txt p {
        font-size: 15px;
    }
    ul.feature_list li {
        width: 100%;
        margin: 0 0 15px;
        padding: 20px;
    }
        
    ul.feature_list li:nth-child(n+3) .txt {
        display: none;
    }
    ul.feature_list li .tl_icon .tl {
        font-size: 4.7vw;
    }

    ul.feature_list li:nth-child(n+3) {
        width: calc(100% / 3 - 10px);
        margin: 0 5px;
        padding: 10px;
        text-align: center;
    }
    ul.feature_list li .tl_icon .icon {
        width: 50px;
        margin: 0 auto;
    }
    ul.feature_list li:nth-child(n+3) .tl_icon .tl {
        font-size: 14px;
        width: 100%;
        padding: 10px 0 0;
    }

    .cta .fm_txt {
        margin: 10px 0 10px;
        padding: 8px 0px 0;
        border-top: 2px solid #54480e;
        border-bottom: 0;
        font-size: 16px;
    }
    .cta .left a {
        display: block;
        margin: 0 auto;
        max-width: 280px;
    }

    .cta .right {
        width: 80%;
    }
    .cta .img {
        right: -98px;
        width: 240px;
    }
    .cta .form_li li {
        width: 100%;
        margin: 15px 0 0;
    }

    .stock_list_top .swiper-slide {
        width: 100%;
        margin: 0 0 30px 0;
    }

    .stock_list_top .wrap .left {
        width: 90px;
    }
    .stock_list_top .wrap .left p {
        margin-top: 10px;
        font-size: 10px;
        line-height: 1.4;
        color: #555;
    }
    .stock_list_top .wrap .right {
        width: calc(100% - 90px);
    }
    .stock_list_top .wrap dl {
        margin-top: 0px;
    }
    .stock_list_top .wrap dl.before dd {
        font-size: 12px;
    }
    .stock_list_top .wrap dl dd {
        font-size: 13px;
    }
    .stock_list_top .wrap dl dt span {
        /*
        display: block;
        width: 100%;
        */
        font-size: 12px;
    }
    .cp_arrows .cp_arrow {
        top: -26px;
        width: 20px;
    }
    .stock_list_top .wrap .right p {
        display: none;
    }


    .project_area .business_list,
    .project_area .side_category {
        max-height: inherit;
        height: inherit;
        overflow-y: inherit;
    }
    .project_area .side_category {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
    
    .project_area .side_category li {
        width: calc(100% / 3 - 4px);
        margin: 2px;
        text-align: center;
    }
    .project_area .side_category.hide li:nth-child(n+10) {
        display: none;
    }
    .project_area .tab_button {
        padding: 10px 5px;
    }
    .project_area .side_category .icon {
        display: block;
        text-align: center;
    }
    .project_area .side_category .tl {
        margin: 3px 0 0;
        font-size: 12px;
        font-weight: 700;
    }
    .project_area .tab_button:hover .tl, .project_area .tab_button.active .tl {
        font-weight: 700;
    }
    .project_area .business_list {
        margin-top: 20px;
        padding: 15px 10px;
    }
    .project_area .project_wrap a {
        margin-bottom: 12px;
        padding: 15px 40px 15px 15px;
    }
    .project_area .project_wrap a .tl {
        margin-bottom: 0px;
        font-size: 14px;
    }
    .project_area .project_wrap a:after {
        top: calc(50% - 9px);
        right: 12px;
        width: 18px;
        height: 18px;
    }
    .project_area .project_wrap .dl_area dl {
        margin-right: 2%;
        font-size: 12px;
        width: 49%;
    }
    .project_area .project_wrap .dl_area dl:last-child {
        margin-right: 0;
    }
    .project_area .project_wrap dl dt {
        width: 62px;
        padding: 3px 2px 5px;
        font-size: 10px;
    }
    .project_area .project_wrap dl dd {
        width: calc(100% - 62px);
        padding-left: 7px;
    }
    .project_area .project_wrap dl dt span {
        display: none;
    }
    .sbj_head_top_list {
        position: inherit;
        top: inherit;
        left: inherit;
    }
    .item_box_area {
        padding: 12px;
    }
    .sbj_head .img {
        display: none;
    }
    .sbj_head .right {
        width: 100%;
        padding: 0;
    }
    .sbj_head .sub_area li {
        margin-right: 3px;
    }
    .dl_base dd {
        line-height: 1.6;
    }
    .project_cta_txt .arrow_tl {
        font-size: 15px;
    }

    .flow_list li .tl_area {
        margin: 0 0 5px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
    }
    
    .flow_list li .tl_area .img {
        width: 60px;
    }
    
    .flow_list li .tl_area .left {
        width: calc(100% - 120px);
        padding-right: 20px;
    }
    
    .flow_list li .tl_area .left h3 {
        margin-bottom: 0;
        font-size: 18px;
        text-align: left;
    }
    
    .flow_list li .tl_area .en {
        text-align: left;
    }

    .voice_box,
	.feature_list li,
	.flow_list li {
	    width: 100%;
	    margin: 0px 0px 15px;
	    padding: 20px;
	}
	.flow_list li {
		margin-bottom: 45px;
	}
	.feature_list li .img {
	    max-width: 160px;
	}
	.flow_list li:not(:first-child):before {
	    top: -34px;
	    left: 47%;
	    -webkit-transform: rotate(-225deg);
	    transform: rotate(-225deg);
	}
	.voice_list li {
	    width: 100%;
	    margin: 0 0 25px;
	}

    .voice_box .tl {
        margin-bottom: 8px;
        font-size: 16px;
    }
    .voice_box .icon_txt .icon {
        width: 100px;
    }
    .voice_box .icon_txt .txt {
        width: calc(100% - 100px);
        padding-left: 20px;
    }
    .voice_box .txt p {
        font-size: 11px;
        line-height: 1.6;
    }

    ul.cm_y_list li {
        position: relative;
        width: 100%;
        height: 0;
        margin: 0 0 20px;
        padding-top: calc(56.25% / 1);
    }

    
    .user_case {
        padding: 20px;
    }
    .user_case .txt {
        margin-bottom: 20px;
    }
    

    .right_seller {
        margin-top: 12px;
    }
    .right_seller a {
        padding: 6px 9px;
        font-size: 12px;
    }
    

    ul.cta_btn_list {
        margin: -14px auto 0;
    }
    ul.cta_btn_list li {
        display: block;
        margin-right: 0px;
    }
    ul.cta_btn_list li img {
        max-width: 280px;
    }
    ul.cta_btn_list li:not(:first-child) {
        display: none;
    }

    .sub_btn_link {
        margin-top: 10px;
    }

    .sub_btn_link a {
        display: inline-block;
        color: #333;
        text-decoration: underline;
        padding: 0 5px;
    }


    .access_area .right .rt_1 {
        max-width: 280px;
        max-height: 280px;
        margin: 0 auto;
        overflow: hidden;
    }
    .company_area .rt_2 li {
        width: calc(100% / 2);
        padding: 10px;
    }
    .company_area .rt_2 li:last-child {
        display: none;
    }

    .project_area .side_menu,
    .project_area .business_list {
        width: 100%;
    }




	.ftside_btn {
		width: 100%;
	    bottom: 0px;
	    right: 0px;
        padding: 0px;
	}
	.ftside_btn_in {
    	max-width: 100%;
	    padding: 12px;
        border-radius: 0;
	}
	.ftside_btn .ftside_set {
		display: flex;
		align-items: center;
        max-width: 340px;
        margin: 0 auto;
	}
	.ftside_btn p {
	    margin-bottom: 5px;
	    font-size: 14px;
	}
	.ftside_btn .ftside_set .tel_block {
	    position: relative;
		width: 60px;
		margin: 0px;
	}
	.ftside_btn .ftside_set .frm_block {
		width: calc(100% - 60px);
		padding-left: 15px;
	}
	.ftside_btn .ftside_set img {
		width: 100%;
	}



}
