﻿@charset "utf-8";
/* CSS Document */

:root{
    font-size:62.5%;
}
html {
    font-size:62.5%;
}
body{
	font-size:16px;
	color:#000000;
    font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
	margin:0;
	position: relative;
    padding: 0;
}
h1,h2,h3,h4,h5,h6,th,dt,a{  
    line-height:1.5;
    font-weight: 700;
}
p,li,td,dd,span,div{  
    line-height:1.5;
    font-weight: 500;
}
a{
	color:#000000;
	text-decoration:none;
    transition: 0.3s;
}
a:hover{
	opacity:0.5;
	filter:alpha(opacity=50);
	-ms-filter: "alpha( opacity=50 )";
}
img {
	border: none;
	vertical-align: bottom;
    max-width: 100%;
	height: auto;
}
a img { 
	border: none;
}
a.nolink{
    pointer-events: none;
}
ul {
	list-style-type: none;
}
table{
	border-collapse: collapse;
}
.clearfix:after {
	content: "";
	display: block;
	overflow: hidden;
	clear: both;
}
.fix-flex{
    display: flex;
}
.leftBox{
	float:left;
}
.rightBox{
	float:right;
}
.center{
    text-align: center;
}
.c_white{
    color:#FFFFFF;
}
.sp{
	display:none !important;
}
.spacer{
    width:100%;
}
.inner{
    padding-left: 0;
    padding-right: 0;
}
.contentWidth{
    width:92%;
	max-width: 1000px;
	margin: auto auto auto auto;
}
h2.style001{
    display: flex;
    justify-content: center;
}
h2.style001 span{
    font-size: 37px;
    font-weight: 800;
    display: inline-block;
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom,rgba(255,255,255,0) 0,rgba(255,255,255,0) 75%,#FAC200 75%,#FAC200 85%,rgba(255,255,255,0) 85%);
    padding: 0 10px;
}
@media (max-width: 768px) {
    body{
        font-size:14px;
    }
    .pc{
        display:none !important;
    }
    .sp{
        display:block !important;
    }
    .leftBox{
        float:none !important;
    }
    .rightBox{
        float:none !important;
    }
    .contentWidth{
        width:calc(100% - 40px);
    }
    h2.style001 span{
        font-size: 24px;
    }
}

/*--------------------------------------
    header
--------------------------------------*/

header{
    width:calc(100% - 100px);
    height:100px;
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:auto;
    margin: auto;
    z-index: 9999;
    background: none;    
    backdrop-filter: none;
}
header h1{
    height:80px;
    position: absolute;
    top:0;
    left:0;
    right:auto;
    bottom:0;
    margin: auto;
}
header a.headerBtn{
    width:216px;
    height:50px;
    background: #F55E00;
    border-radius: 35px;
    display: flex;
    justify-content: center;
    align-items:center;
    position: absolute;
    top:0;
    left:auto;
    right:0;
    bottom:0;
    margin: auto;
}
header a.headerBtn span{
    font-size:14px;
    font-weight: bold;
    color:#FFFFFF;
}
header .spbtn,
header .spmenu{
    display: none;
}
@media (max-width: 768px) {
    header{
        width:calc(100% - 40px);
        height:70px;
        padding: 0;
    }
    header h1{
        width:120px;
        height:50px;
        display: flex;
        align-items: center;
    }
    header a.headerBtn{
        display: none;
    }
    header .spbtn{
        margin: 10px 0 auto auto;
        width: 50px;
        height: 50px;
        transition: 0.3s;
        z-index: 10000;
        background: #F55E00;
        position: relative;
        display: block;
    }
    header .spbtn,
    header .spbtn span {
        display: inline-block;
        -webkit-transition: all 0.3s; 
        -moz-transition: all 0.3s; 
        -o-transition: all 0.3s; 
        transition: all 0.3s;
        box-sizing: border-box;
    }
    header .spbtn span {
        position: absolute;
        left: 0;
        right:0;
        margin: auto;
        width: 24px;
        height: 2px;
        background-color: #FFFFFF;
        transition: 0.3s;
    }
    header .spbtn span:nth-of-type(1) {
        top: 15px;
    }
    header .spbtn span:nth-of-type(2) {
        top: 24px;
    }
    header .spbtn span:nth-of-type(3) {
        top: 33px;
    }
    header.select .spbtn span:nth-of-type(1) {
        transform: translate(0,9px) rotate(-45deg);
    }
    header.select .spbtn span:nth-of-type(2) {
        opacity: 0;
    }
    header.select .spbtn span:nth-of-type(3) {
        transform: translate(0,-9px) rotate(45deg);
    }
    header .spmenu{
        width:100%;
        height:calc(100vh - 5rem);
        height:calc(100dvh - 5rem);
        position: fixed;
        top:0;
        left:0;
        right:0;
        bottom:auto;
        margin: auto;
        z-index:9990;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        overflow-y: scroll;
        background: rgba(245,94,0,0.9);
        transform:translate(0,-100%);
        padding:0 0 0 0;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    header.select .spmenu{
        transform:translate(0,0);
    }
    header .spmenu ul{
        margin: 0 auto;
        display: grid;
        gap:20px;
        position: relative;
        z-index: 60;
    }
    header .spmenu ul li{
        text-align: center;
        display: block;
    }
    header .spmenu ul li a{
        font-size:14px;
        color:#FFFFFF;
        line-height: 2;
        display:block;
        position: relative;
        font-weight: bold;
        text-align: center;
    }
    .sp-menu {
        & li {
            &:nth-of-type(2) {
                display: none;
            }
        }
    }
}

/*--------------------------------------
    visualArea
--------------------------------------*/

.visualArea{
    width:100%;
    height:763px;
    position: relative;
    background: url("../img/lp/bg_visual.jpg") no-repeat center center / cover;
}
.visualArea .inner{
    width:1200px;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.visualArea .inner .textArea{
    width:500px;
    position: relative;
    z-index: 100;
}
.visualArea .inner .textArea h2{
    font-size:36px;
    font-weight: 800;
    color:#FFFFFF;
    margin-bottom: 60px;
    text-align: center;
}
.visualArea .inner .textArea h2 img{
    display: block;
    margin-top: 10px;
}
.visualArea .inner .textArea .text001{
    margin-bottom: 50px;
}
.visualArea .inner .textArea .text002{
    margin-bottom: 60px;
}
.visualArea .inner .textArea a.linkBtn{
    width:304px;
    height:70px;
    background: #F55E00;
    border-radius: 35px;
    display: flex;
    justify-content: center;
    align-items:center;
    margin: auto;
}
.visualArea .inner .textArea a.linkBtn span{
    font-size:18px;
    font-weight: bold;
    color:#FFFFFF;
}
.visualArea .inner .picArea{
    position: absolute;
    left:calc(50% - 90px);
    bottom:0;
    z-index: 60;
}
.visualArea .inner .imgArea{
    position: absolute;
    top:50%;
    right:0;
    z-index: 80;
}
@media (max-width: 768px) {
    .visualArea{
        height:auto;
    }
    .visualArea .inner{
        width:calc(100% - 40px);
        height:auto;
        position: static;
        margin: auto auto auto auto;
        padding: 120px 0 50px 0;
    }
    .visualArea .inner .textArea{
        width:100%;
    }
    .visualArea .inner .textArea h2{
        font-size:6vw;
        margin-bottom: 20px;
    }
    .visualArea .inner .textArea .text001{
        margin-bottom: 30px;
    }
    .visualArea .inner .textArea .text002{
        margin-bottom: 40px;
    }
    .visualArea .inner .textArea .spimg{
        margin-bottom: 40px;
        position: relative;
    }
    .visualArea .inner .textArea .spimg .pic{
        width:70%;
        margin-right: auto;
    }
    .visualArea .inner .textArea .spimg .img{
        width:50%;
        height:100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-right: auto;
        position: absolute;
        top:0;
        right:0;
        bottom:0;
    }
    .visualArea .inner .textArea a.linkBtn{
        width:260px;
        height:50px;
        border-radius: 25px;
    }
    .visualArea .inner .textArea a.linkBtn span{
        font-size:14px;
    }
}

/*--------------------------------------
    bgArea
--------------------------------------*/

.bgArea{
    width:100%;
    height:140px;
    position: relative;
}
.bgArea .bgletter{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    overflow: hidden;
}
.bgArea .bgletter .bgloop{
    display: flex;
    width:100%;
}
.bgArea .bgletter .bgloop .loopitem{
    flex: 0 0 auto;
    font-size: 92px;
    white-space: nowrap;
    padding-right: 15px;
    padding-left: 15px;
    font-weight: 800;
    color:#353535;
    user-select: none;
}
.bgArea .bgletter .bgloop .loopitem:nth-child(odd) {
    animation: loop 40s -20s linear infinite;
}
.bgArea .bgletter .bgloop .loopitem:nth-child(even) {
    animation: loop2 40s linear infinite;
}
@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}
@media (max-width: 768px) {
    .bgArea{
        height:100px;
    }
    .bgArea .bgletter .bgloop .loopitem{
        font-size: 60px;
        padding-right: 12px;
        padding-left: 12px;
    }
}

/*--------------------------------------
    problemArea
--------------------------------------*/

.problemArea{
    padding: 80px 0 130px 0;
    background: #F4F4F4;
    position: relative;
}
.problemArea::after{
    content: "";
    border-top:34px solid #F4F4F4;
    border-left:40px solid transparent;
    border-right:40px solid transparent;
    display: block;
    position: absolute;
    top:calc(100% - 3px);
    left:calc(50% - 40px);
    z-index: 100;
}
.problemArea h2{
    font-size:37px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 70px;
}
.problemArea h2 span{
    font-size:22px;
    font-weight: 600;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}
.problemArea .inner{
    width:1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap:55px;
}
.problemArea .inner .textBox{
    width:932px;
    background: #FFFFFF;
    box-sizing: border-box;
    padding: 50px 55px;
    position: relative;
    border-bottom:2px solid rgba(0,0,0,0.16);
}
.problemArea .inner .textBox:nth-child(2n+1){
    align-self: flex-start;
}
.problemArea .inner .textBox:nth-child(2n){
    align-self: flex-end;
}
.problemArea .inner .textBox h3{
    font-size:26px;
    font-weight: 800;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom:2px solid rgba(53,53,53,0.18);
}
.problemArea .inner .textBox .text{
    font-size:17px;
    font-weight: 400;
    line-height: 1.8;
}
.problemArea .inner .textBox:nth-child(2n+1) img{
    width:165px;
    height:165px;
    position: absolute;
    top:0;
    left:calc(100% - 13px);
    bottom:0;
    margin: auto;
}
.problemArea .inner .textBox:nth-child(2n) img{
    width:165px;
    height:165px;
    position: absolute;
    top:0;
    right:calc(100% - 13px);
    bottom:0;
    margin: auto;
}
@media (max-width: 768px) {
    .problemArea{
        padding: 50px 20px 50px 20px;
    }
    .problemArea::after{
        border-top:14px solid #F4F4F4;
        border-left:20px solid transparent;
        border-right:20px solid transparent;
        left:calc(50% - 20px);
    }
    .problemArea h2{
        font-size:24px;
        margin-bottom: 40px;
    }
    .problemArea h2 span{
        font-size:16px;
        margin-bottom: 10px;
    }
    .problemArea .inner{
        width:100%;
        gap:30px;
    }
    .problemArea .inner .textBox{
        width:100%;
        padding:120px 20px 20px 20px;
    }
    .problemArea .inner .textBox h3{
        font-size:18px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .problemArea .inner .textBox .text{
        font-size:14px;
    }
    .problemArea .inner .textBox:nth-child(2n+1) img{
        width:80px;
        height:80px;
        top:20px;
        left:0;
        right:0;
        bottom:auto;
    }
    .problemArea .inner .textBox:nth-child(2n) img{
        width:80px;
        height:80px;
        top:20px;
        left:0;
        right:0;
        bottom:auto;
    }
}

/*--------------------------------------
    solutionArea
--------------------------------------*/

.solutionArea{
    padding: 80px 0 130px 0;
    background: #FAC200;
    position: relative;
}
.solutionArea h2{
    font-size:40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}
.solutionArea h2 span{
    margin-right: 30px;
}
.solutionArea h3{
    font-size:46px;
    font-weight: 800;
    text-align: center;
    max-width: 1200px;
    margin:0 auto 120px auto;
}
.solutionArea h3 span{
    font-size:46px;
    font-weight: 800;
    display: inline-block;
    color:#FFFFFF;
    background: #353535;
    padding: 0 20px;
    margin: 5px 0;
}
.solutionArea .inner{
    width:1200px;
    margin: 0 auto;
    display: grid;
    gap:60px;
}
.solutionArea .inner .textBox{
    padding: 40px 50px;
    background: #FFFFFF;
    position: relative;
}
.solutionArea .inner .textBox h4{
    font-size:39px;
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
    padding-left: 70px;
}
.solutionArea .inner .textBox h4 span{
    width:50px;
    display: inline-block;
    position: absolute;
    top:0;
    left:0;
}
.solutionArea .inner .textBox .text{
    width:770px;
    font-size:17px;
    font-weight: 700;
}
.solutionArea .inner .textBox .comment{
    width:770px;
    font-size:13px;
    font-weight: 400;
    margin-top: 20px;
}
.solutionArea .inner .textBox .special{
    position: absolute;
    right:0;
    bottom:0;
}
.solutionArea .inner .textBox .startArea{
    position: relative;
}
.solutionArea .inner .textBox .startArea .img{
    position: absolute;
    right:75px;
    bottom:0;
}
.solutionArea .inner .textBox .otherArea{
    background: #F4F4F4;
    margin-top: 50px;
    padding-bottom: 50px;
}
.solutionArea .inner .textBox .otherArea h4{
    height:75px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #353535;
    margin-bottom: 35px;
    padding-left: 50px;
    position: relative;
    color:#FFFFFF;
    font-size:24px;
    font-weight: 600;
}
.solutionArea .inner .textBox .otherArea h4::before{
    content: "";
    width:24px;
    height:24px;
    clip-path: polygon(0 0,100% 0,0 100%);
    position: absolute;
    top:0;
    left:0;
    background: #FAC200;
}
.solutionArea .inner .textBox .otherArea .text{
    width:866px;
    font-size:15px;
    font-weight: 500;
    margin:0 auto 0 auto;
    line-height: 1.8;
}
.solutionArea .inner .textBox .otherArea .figure{
    text-align: center;
    margin:40px 0 20px 0;
}
.solutionArea .inner .textBox .otherArea .comment{
    font-size:13px;
    font-weight: 400;
    width:960px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .solutionArea{
        padding: 50px 20px 50px 20px;
    }
    .solutionArea h2{
        font-size:20px;
        margin-bottom: 30px;
    }
    .solutionArea h2 span{
        display: inline-block;
        width:120px;
        margin-right: 15px;
    }
    .solutionArea h3{
        font-size:20px;
        margin-bottom: 40px;
    }
    .solutionArea h3 span{
        font-size:20px;
        padding: 0 15px;
    }
    .solutionArea .inner{
        width:100%;
        gap:30px;
    }
    .solutionArea .inner .textBox{
        padding: 20px;
    }
    .solutionArea .inner .textBox h4{
        font-size:20px;
        line-height: 30px;
        margin-bottom: 30px;
        padding-left: 40px;
    }
    .solutionArea .inner .textBox h4 span{
        width:30px;
    }
    .solutionArea .inner .textBox .text{
        width:100%;
        font-size:14px;
    }
    .solutionArea .inner .textBox .comment{
        width:100%;
        font-size:12px;
    }
    .solutionArea .inner .textBox .special{
        display: none;
    }
    .solutionArea .inner .textBox .startArea .img{
        display: none;
    }
    .solutionArea .inner .textBox .otherArea{
        margin-top: 40px;
        padding-bottom: 30px;
    }
    .solutionArea .inner .textBox .otherArea h4{
        padding-left: 30px;
        height:50px;
        margin-bottom: 30px;
        font-size:20px;
    }
    .solutionArea .inner .textBox .otherArea h4 img{
        width:200px;
    }
    .solutionArea .inner .textBox .otherArea .text{
        width:90%;
        font-size:14px;
    }
    .solutionArea .inner .textBox .otherArea .figure{
        margin:20px 0 15px 0;
    }
    .solutionArea .inner .textBox .otherArea .comment{
        font-size:12px;
        width:90%;
    }
}

/*--------------------------------------
    comparisonArea
--------------------------------------*/

.comparisonArea{
    width:1000px;
    margin: 100px auto 110px auto;
    text-align: center;
}
.comparisonArea h2.style001{
    margin-bottom: 35px;
}
.comparisonArea .text{
    font-size:26px;
    font-weight: 800;
    margin-bottom: 75px;
}
@media (max-width: 768px) {
    .comparisonArea{
        width:calc(100% - 40px);
        margin: 50px auto 50px auto;
    }
    .comparisonArea h2.style001{
        margin-bottom: 30px;
    }
    .comparisonArea .text{
        font-size:16px;
        margin-bottom: 40px;
    }
}

/*--------------------------------------
    benefitArea
--------------------------------------*/

.benefitArea{
    padding: 100px 0 110px 0;
}
.benefitArea h2.style001{
    margin-bottom: 80px;
}
.benefitArea .boxArea{
    width:1200px;
    margin: 0 auto;
    display: flex;
    gap:80px;
}
.benefitArea .boxArea .box{
    width:346px;
    position: relative;
}
.benefitArea .boxArea .box:not(:last-child)::after{
    content:"";
    width:1px;
    height:100%;
    background: rgba(53,53,53,0.2);
    position: absolute;
    top:0;
    left:calc(100% + 40px);
    right:auto;
    bottom:0;
}
.benefitArea .boxArea .box h3{
    font-size:22px;
    font-weight: 800;
    text-align: center;
    margin-top: 30px;
}
.benefitArea .boxArea .box .text{
    font-size:17px;
    font-weight: 400;
    margin-top: 35px;
    line-height: 1.8;
}
.benefitArea .comment{
    font-size:13px;
    font-weight: 400;
    margin-top: 85px;
    text-align: center;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .benefitArea{
        padding: 50px 20px 50px 20px;
    }
    .benefitArea h2.style001{
        margin-bottom: 40px;
    }
    .benefitArea .boxArea{
        width:100%;
        display: grid;
        gap:60px;
    }
    .benefitArea .boxArea .box{
        width:100%;
    }
    .benefitArea .boxArea .box:not(:last-child)::after{
        width:100%;
        height:1px;
        top:calc(100% + 30px);
        left:0;
        right:0;
        bottom:auto;
    }
    .benefitArea .boxArea .box .thumb{
        text-align: center;
    }
    .benefitArea .boxArea .box h3{
        font-size:18px;
        margin-top: 20px;
    }
    .benefitArea .boxArea .box .text{
        font-size:14px;
        margin-top: 25px;
    }
    .benefitArea .comment{
        margin-top: 35px;
    }
}

/*--------------------------------------
    requirementArea
--------------------------------------*/

.requirementArea{
    background: #353535;
    padding: 110px 0 110px 0;
}
.requirementArea h2.style001{
    margin-bottom: 50px;
}
.requirementArea .c_white span{
    color:#FFFFFF;
}
.requirementArea table{
    width:100%;
}
.requirementArea table tbody tr th{
    width:156px;
    font-size:20px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    color:#FFFFFF;
    padding: 34px 5px 34px 5px;
    border-bottom: 1px solid #FAC202;
}
.requirementArea table tbody tr td{
    width:844px;
    font-size:22px;
    font-weight: 500;
    color:#FFFFFF;
    padding: 34px 20px 34px 70px;
    border-bottom: 1px solid #FFFFFF;
}
.requirementArea table tbody tr td span.comment{
    font-size:13px;
    font-weight: 400;
    color:#FFFFFF;
    margin-left: 60px;
}
.requirementArea table tbody tr td ul li{
    font-size:22px;
    font-weight: 500;
    color:#FFFFFF;
    display: inline-block;
    margin-right:30px;
}
.requirementArea table tbody tr td ul li:first-child{
    width:100%;
}
.requirementArea table tbody tr td ul li:last-child{
    margin-right:0px;
}
.requirementArea table tbody tr td ul li span{
    font-size:17px;
    font-weight: 500;
    color:#FFFFFF;
    margin-right: 30px;
}
.requirementArea h3{
    font-size:27px;
    font-weight: 700;
    color:#FFFFFF;
    text-align: center;
    margin-top: 80px;
}
@media (max-width: 768px) {
    .requirementArea{
        padding: 50px 20px 50px 20px;
    }
    .requirementArea h2.style001{
        margin-bottom: 40px;
    }
    .requirementArea table tbody tr th{
        width:80px;
        font-size:14px;
        padding: 20px 5px 20px 5px;
    }
    .requirementArea table tbody tr td{
        width:calc(100% - 80px);
        font-size:14px;
        padding: 20px 5px 20px 20px;
    }
    .requirementArea table tbody tr td span.comment{
        font-size:12px;
        margin-left: 20px;
    }
    .requirementArea table tbody tr td ul li{
        font-size:14px;
        margin-right:15px;
    }
    .requirementArea table tbody tr td ul li span{
        font-size:13px;
        margin-right: 15px;
    }
    .requirementArea h3{
        font-size:20px;
        margin-top: 40px;
    }
}

/*--------------------------------------
    flowArea
--------------------------------------*/

.flowArea{
    background: #F4F4F4;
    padding: 100px 0 156px 0;
}
.flowArea h2.style001{
    margin-bottom: 80px;
}
.flowArea h3{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:35px;
    font-weight: 800;
    color:#FAC200;
    background: #353535;
    border-radius: 42px;
    width:640px;
    height:84px;
    margin: 0 auto 50px auto;
    position: relative;
}
.flowArea h3::after{
    content: "";
    width:34px;
    height:34px;
    position: absolute;
    top:95%;
    right:45%;
    background: #353535;
    clip-path: polygon(0 0,100% 0,0 100%);    
}
.flowArea .boxArea{
    display: grid;
    gap:20px;
}
.flowArea .boxArea .box{
    width:100%;
    height:180px;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    box-sizing: border-box;
    padding-right: 50px;
}
.flowArea .boxArea .box .img{
    width:220px;
    margin-left: 10px;
    text-align: center;
}
.flowArea .boxArea .box .textArea h4{
    font-size:22px;
    font-weight: 800;
    margin-bottom: 24px;
}
.flowArea .boxArea .box .textArea .text{
    font-size:17px;
    font-weight: 400;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .flowArea{
        padding: 50px 20px 50px 20px;
    }
    .flowArea h2.style001{
        margin-bottom: 40px;
    }
    .flowArea h3{
        font-size:18px;
        border-radius: 20px;
        width:100%;
        height:40px;
        margin: 0 auto 40px auto;
    }
    .flowArea h3::after{
        width:20px;
        height:20px;
        top:98%;
        right:48%;
    }
    .flowArea .boxArea .box{
        width:100%;
        height:auto;
        padding: 20px 20px 20px 20px;
        display: flex;
        gap:20px;
        flex-direction: column;
    }
    .flowArea .boxArea .box .img{
        width:100px;
    }
    .flowArea .boxArea .box .textArea{
        width:100%;
    }
    .flowArea .boxArea .box .textArea h4{
        font-size:17px;
        margin-bottom: 15px;
    }
    .flowArea .boxArea .box .textArea .text{
        font-size:14px;
    }
}

/*--------------------------------------
    faqArea
--------------------------------------*/

.faqArea{
    margin: 80px 0 130px 0;
}
.faqArea h2.style001{
    margin-bottom: 90px;
}
.faqArea .boxArea .box{
    margin-bottom: 20px;
}
.faqArea .boxArea .box dl{
    width:100%;
}
.faqArea .boxArea .box dl dt{
    width:100%;
    height:80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size:22px;
    font-weight: 800;
    color:#353535;
    position: relative;
    box-sizing: border-box;
    padding: 0 50px 0 80px;
    border-bottom: 1px solid rgba(112,112,112,0.28);
}
.faqArea .boxArea .box dl dt:before{
    content: "Q";
    width:38px;
    height:36px;
    background: #353535;
    border-radius: 6px;
    font-size:21px;
    font-weight: 800;
    color:#FAC202;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top:24px;
    left:0;
    padding-bottom: 2px;
}
.faqArea .boxArea .box dl dt::after{
    content: "";
    background: url("../img/lp/icon_faq_001.png") no-repeat center center/auto;
    width:20px;
    height:20px;
    position: absolute;
    top:0;
    left:auto;
    right:20px;
    bottom:0;
    margin: auto;
}
.faqArea .boxArea .box dl.select dt::after{
    background: url("../img/lp/icon_faq_002.png") no-repeat center center/auto;
}
.faqArea .boxArea .box dl dd{
    display: none;
    font-size:17px;
    font-weight:400;
    line-height: 1.8;
    padding: 40px 50px 40px 80px;
}
@media (max-width: 768px) {
    .faqArea{
        margin: 50px 20px 50px 20px;
    }
    .faqArea h2.style001{
        margin-bottom: 40px;
    }
    .faqArea .boxArea .box dl dt{
        height:auto;
        font-size:16px;
        padding: 0 40px 10px 60px;
    }
    .faqArea .boxArea .box dl dt:before{
        width:30px;
        height:28px;
        border-radius: 4px;
        font-size:16px;
        top:5px;
    }
    .faqArea .boxArea .box dl dt::after{
        top:0;
        right:10px;
        bottom:0;
    }
    .faqArea .boxArea .box dl dd{
        font-size:14px;
        padding: 20px 40px 20px 60px;
    }
}

/*--------------------------------------
    contactArea
--------------------------------------*/

.contactArea{
    background: #FFEEB4;
    padding: 75px 0 75px 0;
}
.contactArea h2.style001{
    margin-bottom: 60px;
}
.contactArea .inner{
    width:1200px;
    padding: 75px 100px 95px 100px;
    box-sizing: border-box;
    background: #FFFFFF;
    margin: 0 auto;
}
.contactArea .inner h3{
    font-size:24px;
    margin: 30px auto;
}
.contactArea .inner dl{
    display: flex;
    flex-wrap: wrap;
}
.contactArea .inner dt{
    width:22%;
    height:65px;
    margin-top: 0;
    margin-bottom: 44px;
}
.contactArea .inner dt .required{
    width:48px;
    height:24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F55E00;
    font-size:14px;
    font-weight: 500;
    border-radius: 0;
    line-height: 1.5;
    margin-left: 35px;
}
.contactArea .inner dt.addressArea{
    margin-bottom: 1rem;
}
.contactArea .inner dd{
    width:78%;
    margin: 0 0 44px 0;
}
.contactArea .inner dd .wpcf7-form-control-wrap{
    width:100%;
    height: 65px;
    display: block;
    input[type="text"], input[type="url"], input[type="tel"], input[type="email"], select{
        width:100%;
        height: 100%;
        box-sizing: border-box;
        border: none;
        background: #F4F4F4;
    }
}
.contactArea .inner dd .wpcf7-form-control-wrap input[type="text"].middle,
.contactArea .inner dd .wpcf7-form-control-wrap input[type="url"].middle,
.contactArea .inner dd .wpcf7-form-control-wrap input[type="tel"].middle,
.contactArea .inner dd .wpcf7-form-control-wrap input[type="email"].middle,
.contactArea .inner dd .wpcf7-form-control-wrap select.middle{
    width:60%;
}
.contactArea .inner dd .wpcf7-form-control-wrap input[type="text"].short,
.contactArea .inner dd .wpcf7-form-control-wrap input[type="url"].short,
.contactArea .inner dd .wpcf7-form-control-wrap input[type="tel"].short,
.contactArea .inner dd .wpcf7-form-control-wrap input[type="email"].short,
.contactArea .inner dd .wpcf7-form-control-wrap select.short{
    width:40%;
}
.contactArea .inner dd.zip{
    display: flex;
    gap:0.5rem;
}
.contactArea .inner dd.zip .wpcf7-form-control-wrap{
    width:auto;
}
.contactArea .inner dd.addressArea{
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 2.0rem 1.0rem;
}
.contactArea .inner dd.addressArea .wpcf7-form-control-wrap:last-child {
    grid-column: 1 / 3;
}
.contactArea .inner dd.addressArea .p-locality {
    width: calc(100% - 13.5rem);
}
.contactArea .inner dd.addressArea #inputAddress02{
    margin-top: 1rem;
}
.contactArea .inner dd.sparse span{
    border:none;
}
.contactArea .inner dd.textArea{
    height:auto;
}
.contactArea .inner dd.textArea .wpcf7-form-control-wrap{
    height:auto;
}
.contactArea .inner dd.textArea textarea{
    height: 320px;
    box-sizing: border-box;
    border: none;
    background: #F4F4F4;
}
.contactArea .inner dd.privacyArea{
    height:auto;
}
.contactArea .inner dd .wpcf7-radio{
    display: flex;
    align-items: center;
    height:100%;
}
.contactArea .inner .comment{
    font-size:12px;
    font-weight: 500;
    margin-top: 16px;
    text-align: center;
}
.contactArea .inner .btn{
    margin-top: 5rem;
}
.contactArea .inner .btn .wpcf7-submit{
    width:30.4rem;
    height:7rem;
    background: #F55E00;
    color:#FFFFFF;
    border-radius: 3.5rem;
    box-shadow: none;
    padding: 0.5rem 1rem 0.7rem 1rem;
    box-sizing: border-box;
    transition: 0.3s;
}
.contactArea .inner .btn .wpcf7-submit:hover{
    opacity: 0.5;
}
.contactArea .inner .btn .wpcf7-submit:after{
    display: none;
}
.contactArea .inner .btn2{
    text-align: center;
}
@media (max-width: 768px) {
    .contactArea{
        padding: 50px 20px 50px 20px;
    }
    .contactArea h2.style001{
        margin-bottom: 40px;
    }
    .contactArea .inner{
        width:100%;
        padding: 40px 20px 40px 20px;
    }
    .contactArea .inner h3{
        font-size:18px;
        margin: 20px auto;
    }
    .contactArea .inner dl{
        display: block;
    }
    .contactArea .inner dt{
        width:100%;
        height:auto;
        margin-bottom: 0px;
    }
    .contactArea .inner dd{
        width:100%;
        height:auto;
        padding: 10px 0 10px 0;
        margin: 0 0 30px 0;
        gap:10px;
    }
    .contactArea .inner dd.textArea textarea{
        height: 200px;
    }
    .contactArea .inner dd.addressArea{
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .contactArea .inner dd.addressArea .p-locality {
        width: 100%; 
        margin: 0;
    }
    .contactArea .inner .btn{
        margin-top: 3rem;
    }
    .contactArea .inner .btn button{
        width:26rem;
        height:5rem;
        border-radius: 2.5rem;
    }
}

/*--------------------------------------
    footer
--------------------------------------*/

footer{
    width:1200px;
    height: 240px;
    margin: 0 auto;
    display: flex;
}
footer .logo{
    margin-top: 54px;
}
footer .footermenu{
    display: flex;
    margin-top: 90px;
    margin-left:auto;
}
footer .footermenu .footernavi{
    display: flex;
    gap:44px;
}
footer .footermenu .footernavi li{
    font-size:15px;
    position: relative;
}
footer .footermenu .footernavi li:not(:last-child):after{
    content: "";
    width:1px;
    height:24px;
    position: absolute;
    top:0;
    left:calc(100% + 22px);
    background: #353535;
}
footer .copyright{
    font-size:13px;
    font-weight: 400;
    margin-left: 70px;
}
@media (max-width: 768px) {
    footer{
        width:100%;
        height: auto;
        display: block;
        text-align: center;
        padding-bottom: 60px;
    }
    footer .logo{
        margin-top: 40px;
        margin-bottom: 20px;
    }
    footer .footermenu{
        display: block;
        margin-top: 0;
        margin-left:auto;
        margin-right: auto;
    }
    footer .footermenu .logo{
        margin-bottom:40px;
    }
    footer .footermenu .footernavi{
        gap:40px;
        justify-content: center;
    }
    footer .footermenu .footernavi li{
        font-size:13px;
    }
    footer .footermenu .footernavi li:not(:last-child):after{
        left:calc(100% + 20px);
    }
    footer .copyright{
        font-size:11px;
        margin-left: 0;
        text-align: center;
        margin-top: 30px;
    }
}

