@charset "utf-8";

.head_title h2 {
    font-size: 28px;
    letter-spacing: .5px;
}

/* header
----------------------------------------------------------- */


.header_bg2 {
    position: absolute;
    height: 86px;
    width: 100%;
    transition: .8s;
    z-index: 9;
}
.site_logo {
    position: absolute;
    top: 20px;
    left: 20px;
}
.site_logo a {
    display: block;
    width: 120px;
    height: 40px;
}
.site_logo a:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: url(/common/img/white_logo.svg) top left no-repeat;
    background-size: contain;
}
.fixed .site_logo a:before {
    background: url(/common/img/logo.svg) top left no-repeat;
    background-size: contain;
}
.site_logo a:hover {
	opacity: 0.8;
	text-decoration: none;
}
.site_logo .rec_txt {
	display: inline-block;
    margin-left: 7px;
    padding-left: 7px;
    border-left: 1px solid #ddd;
    color: #5c5c5c;
}
.header_bg2.fixed {
    transition: .8s;
	/*
    background-color: rgb(255 255 255/90%);
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 20%);
    */
}

.header_bg2.fixed #nav-drawer {
    top: 14px;
    right: 30px;
}


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

#eyecatch {
	position: relative;
    display: flex;
    align-items: center;
    height: 720px;
}
.loop__box img {
    max-width: inherit;
    height: 720px;
}

.inner-content {
    position: relative;
    z-index: 3;
    margin: 0px auto;
    padding: 60px;
    text-align: center;
}
.lead_sub {
    position: relative;
    display: inline-block;
    margin: 0 auto 15px;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    background-color: var(--blue2);
    color: #fff;
    transform: skew(-15deg);
}
.lead_sub span {
    display: block;
    transform: skew(15deg);
}

.inner-content h1 {
    margin-bottom: 15px;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0px;
    font-weight: 900;
    color: var(--blue2);
}
.inner-content h1>span {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    padding: 4px 20px 6px;
    transform: skew(-15deg);
}
.inner-content h1>span:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 100%;
    background-color: rgb(255 255 255);
    opacity: 0;
    animation: fadein .1s ease-out 1.6s 1 forwards;
}
.inner-content h1>span:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    z-index: 1;
    display: block;
    background-color: var(--blue2);
    animation: hero_ttl_bg .9s ease-out 1.1s 1 forwards;
}

.inner-content h1>span:nth-of-type(2):after {
    animation-delay: 1.3s;
}

.inner-content h1 span span {
    position: relative;
    display: block;
    z-index: 10;
    opacity: 0;
    -webkit-animation: fadein .1s ease-out 1.6s 1 forwards;
    animation: fadein .1s ease-out 1.6s 1 forwards;
    transform: skew(15deg);
}
.inner-content .sub {
    display: block;
    margin: 12px 0px 12px;
    font-size: 11px;
    letter-spacing: 1.2px;
    font-weight: 600;
    line-height: 1;
    text-transform: initial;
    color: #fff;
}
#eyecatch p.eye_txt {
    position: relative;
    z-index: 2;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}
#eyecatch .frm_btn {
    margin-top: 20px;
}
#eyecatch .memo {
    margin-top: 12px;
    color: #fff;
    font-size: 12px;
}

/* 画像loopスライド */

.loop {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    width: 100%;
}

.loop:before {
    background-color: rgb(23 66 99 / 65%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' ';
    z-index: 2;
}
.loop__box {
    display: flex;
    width: 100%;
}

.loop__box img:first-child {
    animation: loop 100s -50s linear infinite;
}
.loop__box img:last-child {
    animation: loop2 100s linear infinite;
}

section.lp_nayami_area {
    position: relative;
    background-image: url(../img/nayami_bk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0px;
}

.lp_nayami_area .tl_box {
	margin-bottom: 40px;
	align-items: center;
}
.lp_nayami_area .tl_box h2 {
	font-size: 32px;
	font-weight: 800;
}

.nayami_list {
    max-width: 680px;
    margin: 0 auto;
}
.talk-item {
    align-items: center;
    margin-bottom: 20px;
}
.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;
}

.lp_nayami_area .bt_arrow {
    position: relative;
    top: 30px;
    z-index: 1;
    margin: 20px auto 0px;
    max-width: 350px;
    height: 60px;
    clip-path: polygon(50% 60px, 0% 0%, 100% 0%);
    background: var(--blue2);
}

.lp_nayami_area .sol_area {
    position: relative;
    top: 45px;
}
.lp_nayami_area .sol_area:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.lp_nayami_area .sol_area .inner {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: #555;
}
.lp_nayami_area .sol_area p {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

section.biz_help {
    background: url(../img/feature_bk.jpg) no-repeat;
    background-size: cover;
}
.biz_help .flex_in {
    align-items: center;
}
.biz_help .ct_base_left {
    width: 520px;
}
.biz_help .ct_base_right {
    width: calc(100% - 520px);
    padding-top: 0px;
    padding-left: 20px;
}

.biz_help .ct_base_right p {
    font-size: 16px;
}
.feature_list li .txt p {
    font-size: 13px;
}
.feature_list {
    margin-top: 20px;
}
.feature_list li .tl_area h3, .flow_list li .tl_area h3 {
    font-size: 18px;
}
.feature_list li .tl_area, .flow_list li .tl_area {
    margin: 0px 0px 12px;
}
.feature_list li .tl_area .gf, .flow_list li .tl_area .gf {
    font-size: 13px;
    font-weight: 300;
}

section.flow_area {
    background: url(/servicelp/lp03/hp-design3/img/flow_bg.jpg) no-repeat;
    background-size: cover;
}
.flow_list {
    margin: 40px auto 0;
    max-width: 820px;
}
.flow_list li {
    width: 100%;
    margin: 0 0 60px;
    padding: 20px;
    align-items: center;
}
.flow_list li .img {
    width: 260px;
    margin: 0;
}
.flow_list li .tl_area {
    width: calc(100% - 260px);
    margin: 0;
    padding-left: 30px;
    text-align: left;
}
.flow_list li .tl_area h3 {
    margin: 5px 0 15px;
    font-size: 22px;
}
.flow_list li:before {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    border-top: 4px solid var(--blue2);
    border-right: 4px solid var(--blue2);
    position: absolute;
    top: inherit !important;
    bottom: -34px !important;
    left: calc(50% - 14px) !important;
    -webkit-transform: rotate(135deg) !important;
    transform: rotate(135deg) !important;
}
.flow_list li:last-child:before {
    content: none;
}
.flow_list li .tl_area p {
    font-size: 15px;
}

.voice_txt {
    margin-bottom: 50px;
    text-align: center;
}

.access_area .left {
    width: calc(100% - 400px);
}
.access_area .right {
    width: 400px;
}
.pro_const_list {
    margin-top: 12px;
    padding: 15px;
    background-color: #f7f7f7;
}

/* qa
----------------------------------------------------------- */

section.lp_faq_area {
    position: relative;
}
section.lp_faq_area:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    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;
}

.faq_item {
	margin-top: 30px;
	counter-increment: faq;
}
.faq_item .faq_question:before {
	display: block;
	position: absolute;
	top: 52%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 30px;
	content: "Q" counter(faq);
    font-family: 'Roboto', sans-serif;
	color: var(--blue2);
	font-size: 26px;
	letter-spacing: 1.5px;
}
.faq_question {
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	min-height: 76px;
    padding: 18px 20px 18px 75px;
    background-color: #f1f1f1;
    font-size: 18px;
	font-weight: 600;
}
.faq_question .btn {
	position: absolute;
	top: 43px;
	right: 30px;
	width: 50px;
	font-size: 14px;
    letter-spacing: 0px;
	text-align: center;
}
.faq_question .btn:before,
.faq_question .btn:after {
	content: "";
	display: block;
	position: absolute;
	top: -16px;
	left: 0;
	right: 0;
	margin: 0 auto;
    width: 24px;
    height: 2px;
    background-color: var(--blue2);
}
.faq_question .btn:after {
	-webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.faq_question .btn.open:after {
	-webkit-transform: rotate(0deg);
      transform: rotate(0deg);
}
.faq_answer {
	display: none;
	padding: 20px;
    font-size: 16px;
    line-height: 1.8;
}


/* 右下CTA
----------------------------------------------------------- */

.ftside_btn {
	display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}
.ftside_btn_in {
	display: block;
    max-width: 280px;
    padding: 15px;
    background: rgb(255 255 255 / 95%);
    background: var(--blue2);
    box-shadow: 0px 3px 13px rgba(90, 90, 90, 0.2);
    border-radius: 5px;
    text-align: center;
}
#switch:checked ~ .ftside_btn_in {
	display: none;
}

.ftside_btn #switch {
	display: none;
}
.ftside_btn .button {
	display: block;
	position: relative;
    padding: 0px 0px 10px;
    text-align: right;
    font-size: 12px;
    font-weight: 600;
}
.ftside_btn .icon {
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-68%);
	width: 22px;
	height: 22px;
}
.ftside_btn .icon::before,
.ftside_btn .icon::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 15px;
	background: #333; 
	transform: translate(-50%,-50%) rotate(45deg);
	transition: 0.5s all;
}
.ftside_btn .icon::after{
	transform: translate(-50%,-50%) rotate(-225deg);
}

.ftside_btn .open {
	display: none;
    padding: 12px 20px;
    background: var(--orange);
    border-radius: 20px;
    font-size: 16px;
    line-height: 1;
    color: #fff;
}
 
.ftside_btn .close {
	display: inline-block;
	margin-left: 24px;
    color: #333;
}

.ftside_btn #switch:checked + .button > .icon::before,
.ftside_btn #switch:checked + .button > .icon::after{
	content: none;
}

.ftside_btn #switch:checked + .button > .open{
	display: inline-block;
}

.ftside_btn #switch:checked + .button > .close{
	display: none;
}

.ftside_btn .txt {
	margin-bottom: 12px;
    align-items: center;
}
.ftside_btn .woman_icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.ftside_btn .woman_icon img {
    width: 100%;
    border-radius: 50%;
}
.ftside_btn p {
	width: calc(100% - 70px);
    padding-left: 10px;
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
    color: #fff;
}
.ftside_btn .ikt2 {
    width: auto;
    padding: 16px 5px 16px 0px;
    font-size: 15px;
}
.ftside_btn .ikt2:after {
    right: 22px;
}


/* フォーム
----------------------------------------------------------- */

#form {
    margin-top: -60px !important;
}
#frm {
    position: relative;
}
#frm:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 500px;
    background: var(--blue2);
}
#frm .head_title h2 {
    color: #fff;
}
#frm .head_title h2:after {
    background-color: #fff;
}
#frm .progressbar {
    display: none;
}
#frm section {
    padding: 40px 0 0;
}
/* スマホに適用させるCSS */
@media screen and ( max-width:760px ) {


    .inner {
        width: 90%;
    }
    .inner-content {
        padding: 0px 10px;
    }
    .ikt2 {
        padding: 20px 0px;
        max-width: 320px;
        font-size: 18px;
    }
    .ikt2:after {
        top: 51%;
        right: 26px;
    }
    header .site_logo {
        margin-left: 0px;
        padding-top: 0px;
        padding-left: 0px;
    }
    .site_logo a {
        width: 82px;
        height: 24px;
    }

    #eyecatch,
    .loop__box img {
        height: 520px;
    }

    .inner-content h1 {
        font-size: 6.5vw;
    }
    .inner-content h1>span {
        padding: 10px 20px 10px;
    }
    .lead_sub {
        padding: 6px 12px;
        letter-spacing: .5px;
        font-size: 3.2vw;
    }
    #eyecatch p.eye_txt {
        font-size: 3.5vw;
    }

    .lp_title h2,
    .head_title h2 {
        font-size: 22px;
    }
    .lp_nayami_area .bt_arrow {
        top: 20px;
        max-width: 200px;
        height: 30px;
        clip-path: polygon(50% 30px, 0% 0%, 100% 0%);
    }

    .talk-item .talk-bubble p {
        font-size: 14px;
    }
    
    .biz_help .ct_base_left,
    .biz_help .ct_base_right,
    .flow_list li .img,
    .flow_list li .tl_area,
    .access_area .left,
    .access_area .right {
        width: 100%;
        padding: 0px;
    }

    .flow_list li {
        display: block;
        width: 100%;
        padding: 20px;
    }
    .flow_list li .tl_area h3 {
        margin: 5px 0 0px;
    }
	.faq_item {
	    margin-top: 20px;
	}
	.faq_question {
	    padding: 20px 56px 20px 56px;
	    font-size: 16px;
	}
	.faq_item .faq_question:before {
	    left: 17px;
	    font-size: 22px;
	}
	.faq_question .btn {
	    top: 46px;
	    right: 8px;
	    width: 42px;
	    font-size: 12px;
	}
	.faq_question .btn:before, .faq_question .btn:after {
	    top: -12px;
	    width: 12px;
	}
	.faq_answer {
		padding: 15px;
	    font-size: 14px;
	}

	.ftside_btn {
		width: 100%;
	    bottom: 0px;
	    right: 0px;
	}
	.ftside_btn_in {
    	max-width: 100%;
        margin: 0;
	    padding: 12px;
        background: rgb(255 255 255 / 75%);
	}
	.ftside_btn .ftside_set {
        max-width: 340px;
        margin: 0 auto;
	}
	.ftside_btn p {
	    margin-bottom: 5px;
	    font-size: 14px;
	}
    .ftside_btn .ikt2 {
        max-width: 290px;
    }


	section.lp_cta {
	    padding: 50px 0px;
	}
	.lp_cta.cta .head_arrow {
	    text-align: center;
	}
	
	.lp_cta.cta .award_txt,
	.lp_cta.cta .award_txt p,
	.lp_cta .award_txt .award {
	    width: 100%;
	}
	.lp_cta.cta .cta_tl p {
	    margin: 15px 0px;
	    text-align: center;
	}
	.lp_cta .cta_ct_sec {
	    width: 100%;
	    margin-bottom: 0px;
	    padding: 25px;
	}
	.lp_cta.cta .cta_tl .sub,
	.lp_cta .woman_img {
	    display: none;
	}
	.lp_cta .cta_ct_sec .tel_block, .lp_cta .cta_ct_sec .frm_block {
	    width: 100%;
	}
	.lp_cta .cta_ct_sec .tel_block {
	    top: 3px;
	    margin-bottom: 20px;
	    padding-right: 0px;
	}
}
