@charset "UTF-8";
@media all and (max-width: 1000px) {
/*headerはここから*/
.pc{
	display:none;
}
.sp{
	display:block;
}	
textarea{
    -webkit-appearance: none;
}
header{
	width: 100%;
	height:68px;
	background-color:white;
	transition: .3s;
	overflow: visible;
	position: fixed;
	z-index:100;
}
.header-width{
	width:90%;
	margin:0 auto;
	display:flex;
	justify-content: space-between;
	align-items: center;
	gap:30px;
}
.is-animation{
	width: 100%;
	height: 5rem;
	transition: .3s;
	}
.logo{
	overflow: hidden;
	width:150px;
	display: inline-block;
}
.logo img{
	width:100%;
	vertical-align: middle;
}
.logo p{
	display:none;
}
.menu li {
	 text-transform: uppercase;
	 transition: .3s;
	 padding:0 0 0 30px;
}
.is-animation .menu li{
	 padding:0 0 0 30px;
	 margin: 5% 0;
}

.menu li a{
	 color:white;
	 font-size:16px;
	 font-weight:700;
}
.menu li a span:nth-child(2){
	display:none;
}
.ham {
	position: relative;
	width:40px;
	height:40px;
	cursor: pointer;
	z-index: 9999;
	position:absolute;
	top: 50%;
	transform: translateY(-50%);
	right:5%;
	margin:0;
	background-color:#FFF5F0;
	border-radius:9px;
}
.ham_line {
	position:absolute;
	left: 50%;
  	transform: translateX(-50%);
	width:17px;
	height: 2px;
	background-color:#FF4800;
	transition: all 0.3s;
}
.ham_line1 {
	top:13px;
}
.ham_line2 {
	top:19px;
}
.ham_line3 {
	bottom:13px;
}
.clicked .ham_line1 {
	transform: rotate(45deg);
	top:20px;
	left:11px;
}
.clicked .ham_line2 {
	width: 0px;
}
.clicked .ham_line3 {
	transform: rotate(-45deg);
	bottom:18px;
	left:11px;
}
.menu {
	position: fixed;
	width:200px;
	height: 100%;
	right: -100%;
	background-color:#FF6A47;
	transition: all 0.4s;
	z-index: 100;
	margin:0 0 0 0;
	padding-top:40px;
	display:flex;
	flex-direction:column;
	gap:5px;
	top:68px;
}
.clicked .menu {
	right:0;
	z-index: 100;
}
.main-2{
	width:100%;
	height: 100vh;
	background-color: black;
	opacity: 0;
	z-index: 0;
	position: absolute;
	top:0;
	left:0;
	transition: all 0.4s;
}
.clicked .main-2{
	opacity: .6;
}
#blackback {
  position: fixed;
  display:block;
  bottom: 0;
  left: 0;
  width: 100%;
  height:calc(100vh - 68px);
  background: black;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 10;
}
#blackback.clicked {
  opacity: .3;
  visibility: visible;
}
.sp-link-icon{
	display:flex;
	gap:5px;
	padding:0 50px 0 0;
}
.sp-link-icon a{
	width:40px;
	display:block;
}
.sp-link-icon a img{
	border-radius:9px;
}
.cta-pc{
	display:none;
}
/*共通はここから*/
.common-width{
	max-width:1150px;
	width:90%;
	margin:0 auto;
}
.common-title{
	text-align:left;
	width:90%;
	margin:0 auto;
}
.common-title h3{
	font-size:13px;
	color:#FF4800;
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}
.common-title h2{
	font-size:22px;
	font-weight:800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin-top:7px;
}
/* トップページ */
.top-content{
	background-color:#F1F1F1;
	padding:calc(5rem + 20px) 0 20px 0;
}
.top-content>div{
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	align-items:flex-start;
	gap:0;
}
.top-content-right{
	width:100%;
	position:relative;
	margin-top:12px;
}
.top-content-right-img{
	width:100%;
	filter:drop-shadow(0px 0px 14px rgba(0,0,0,0.05));
}
.top-gif-1{
	width:60px;
	position:absolute;
	bottom:15px;
	left:15px;
}
.top-gif-2{
	width:60px;
	position:absolute;
	top:15px;
	right:15px;
}
.top-content-left{
	max-width:none;
	width:100%;
	margin-top:10px;
}
.fukidashi{
	max-width:none;
	width:235px;
	position:relative;
}
.fukidashi p{
	position:absolute;
	top:8px;
	left:50%;
  	transform:translateX(-50%);
	font-size:14px;
	font-weight:bold;
	white-space:nowrap;
}
.top-content-title{
	letter-spacing: -0.05em;
	line-height:1.2;
}
.orange-big{
	color:#FF4800;
	font-size:53px;
}
.orange-small{
	color:#FF4800;
	font-size:28px;
	position: relative;
	top:-9px;
	margin:0 0 0 5px;
}
.black-small{
	font-size:35px;
	position: relative;
	top:-9px;
	margin-left:65px;
}
.black-big{
	font-size:49px;
	position: relative;
	top:-7px;
	margin:0 0 0 5px;
}
.black-big span{
	font-size:45px;
}
.top-pickup{
	display:flex;
	flex-direction: column;
	gap:5px;
	padding:0 0 0 20px;
}
.top-pickup li{
	font-size:15px;
	font-weight:400;
	letter-spacing: -0.05em;
	padding:0 0 0 3px;
}
.top-pickup li::marker {
  content: "✅ ";
}
.top-pickup li span{
	font-weight:bold;
	color:#FF4800;
	text-decoration: underline;
	text-decoration-color: #000;
	text-underline-offset: 4px;
	margin:0 3px;
	text-decoration-thickness: 1px;
}
.top-content-left-read{
	font-size:15px;
	font-weight: 500;
	letter-spacing: -0.01em;
	margin-top:20px;
}
.top-content-left a{
	background-color: #FF4800;
	color:white;
	font-size:16px;
	font-weight:600;
	letter-spacing:-0.05em;
	width:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
	gap:15px;
	padding:20px 0;
	border-radius:8px;
	margin-top:20px;
}
.top-content-left a span:nth-child(1){
	width:23px;
	display:block;
	position:relative;
	top:-2px;
}
.top-content-left a span:nth-child(1) img{
	vertical-align: middle;
}
.top-problem{
	padding:50px 0 0 0;
}
.top-problem-list{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:8px;
	margin-top:22px;
}
.top-problem-list-detail{
	display:flex;
	align-items: center;
	gap:15px;
	background-color: #3F3F3F;
	padding:17px;
	border-radius:12px;
}
.top-problem-list-detail div{
	width:47px;
}
.top-problem-list-detail h4{
	font-size:15px;
	font-weight:500;
	color:white;
	line-height: 1.3;
}
.problem-arrow{
	width:57px;
	margin:26px auto 25px;
}
.main-problem-content{
	display:flex;
	flex-direction:column;
	justify-content: space-between;
	gap:50px;
}
.main-problem-content-left{
	max-width:none;
	width:100%;
}
.main-problem-content-left p{
	font-size:15px;
	font-weight:500;
	margin-top:20px;
	line-height:1.75;
	text-align:justify;
}
.main-problem-content-right{
	width:auto;
	position:relative;
}
.main-problem-img{
	width:100%;
	border-radius: 15px;
}
.main-problem-content-right h2{
	font-size:22px;
	line-height:1.8;
	letter-spacing:-0.02em;
	color:white;
	position:absolute;
	bottom:35px;
	left:7.5%;
	text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
	display:block;
}
.main-problem-sub-list{
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	gap:8px;
	width:85%;
	position:absolute;
	top:25px;
  	transform: none;
	right:auto;
	left: 50%;
  	transform: translateX(-50%);
}
.main-problem-sub-list p{
	background-color:white;
	color:#606060;
	font-size:13px;
	font-weight:500;
	letter-spacing:-0.03em;
	line-height: 1.4;
	text-align:center;
	border-radius:6px;
	padding:6px 0;
}
.convert-cta{
	margin:40px auto;
	display:block;
	width:90%;
}
.convert-cta img{
	border-radius:8px;
}
.top-merit-list{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:20px;
	margin-top:30px;
}
.top-merit-list-detail{
	background-color:#3B3B3B;
	padding:16px 18px 25px;
	border-radius:12px;
}
.top-merit-list-detail div>img{
	border-radius:12px;
}
.top-merit-list-detail h3{
	font-size:17px;
	color:white;
	margin:17px 0 10px 0;
}
.top-merit-list-detail p{
	font-size:14px;
	color:white;
}
.top-features{
	margin-top:40px;
}
.top-features-list{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:35px;
	margin-top:17px;
}
.top-features-list-detail>div{
	display:flex;
	align-items:center;
	gap:20px;
	border:1px solid #E7E7E7;
	padding:0 20px 0 0;
}
.top-features-list-detail>div div{
	width:115px;
}
.top-features-list-detail h3{
	font-size:15px;
	letter-spacing:-0.02em;
	margin:0;
}
.top-features-list-detail p{
	font-size:14px;
	font-weight:500;
	line-height:1.7;
	text-align:justify;
	margin-top:12px;
}
.top-voice-slide{
	margin:20px 0 0 0;
	padding:0;
	position:relative;
}
.top-voice-slide .slick-slide {
  opacity: .5;
  transition: opacity .3s ease;
}
.top-voice-slide .slick-center {
  opacity: 1;
}
.top-voice-slide li{
	background-color:#F7F7F7;
	border-radius:20px;
	padding:24px 27px 40px;
	margin:0 10px;
}
.top-voice-slide-top{
	display:flex;
	align-items:center;
	gap:13px;
}
.top-voice-slide-top-icon{
	width:39px;
}
.top-voice-slide-top-name h4{
	font-size:15px;
	letter-spacing:-0.02em;
}
.top-voice-slide-top-name p{
	font-size:11px !important;
	letter-spacing:-0.02em;
	color:#757575;
}
.user-voice-icon-list{
	display:flex;
	gap:2px;
	margin:14px 0 10px 0;
}
.user-voice-icon-list div{
	width:14px;
}
.top-voice-slide li p{
	font-size:14px;
	font-weight:500;
	letter-spacing:-0.02em;
	line-height:1.65;
	text-align:justify;
}
.top-voice-slide button{
	background-color:transparent;
	border:none;
}
.top-voice-slide .slick-prev{
	width:30px;
	position:absolute;
	right:20%;
	left:auto;
	top:-32px;
  	transform: translateY(-50%);
	z-index:10;
	padding:0;
}
.top-voice-slide .slick-next{
	width:30px;
	position:absolute;
	right:5%;
	top:-32px;
  	transform: translateY(-50%);
	z-index:10;
	padding:0;
}
.top-case{
	margin-top:50px;
}
.top-case-list{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:10px;
	margin-top:22px;
}
.top-case-list-detail{
	background-color:#FFF5F0;
	border-radius:8px;
	padding:28px;
}
.top-case-list-detail h3{
	font-size:17px;
	color:#FF4800;
}
.top-case-list-detail p{
	font-size:14px;
	font-weight:500;
	letter-spacing:-0.02em;
	line-height:1.7;
	margin-top:14px;
	text-align:justify;
}
.top-flow{
	margin-top:30px;
}
.top-flow-list{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:10px;
	margin-top:17px;
}
.top-flow-list-detail{
	border:1px solid #D5D5D5;
	border-radius:12px;
	padding:15px 28px 20px;
}
.top-flow-list-detail-top{
	text-align:left;
	display:flex;
	align-items:center;
	gap:14px;
}
.top-flow-list-detail-top div{
	width:50px;
	margin:0;
}
.top-flow-list-detail-top h4{
	font-size:18px;
	letter-spacing:-0.02em;
	color:#FF4800;
	margin:0;
}
.top-flow-list-detail p{
	font-size:14px;
	font-weight:500;
	letter-spacing:-0.02em;
	line-height: 1.7;
	text-align:justify;
	margin:6px 0 0 0;
}
.top-faq-list{
	display:flex;
	flex-direction:column;
	gap:40px;
	margin-top:28px;
}
.top-faq-detail{
	display:flex;
	flex-direction:column;
	gap:3px;
	padding-bottom:10px;
	border-bottom:1px solid #E2E2E2;
	margin:0;
}
.top-faq-detail-top{
	display:flex;
	align-items:center;
	gap:20px;
	background-color:#FFF5F0;
	border-radius:120px;
	padding:12px;
}
.top-faq-detail-top div{
	width:40px;
}
.top-faq-detail-top h4{
	font-size:15px;
	letter-spacing:-0.02em;
	color:#FF4800;
	width:calc(100% - 65px);
}
.top-faq-detail-bottom{
	display:flex;
	align-items:center;
	gap:20px;
	padding:12px;
	margin:0;
}
.top-faq-detail-bottom div{
	width:40px;
}
.top-faq-detail-bottom p{
	font-size:14px;
	font-weight:500;
	letter-spacing:-0.02em;
	line-height:1.7;
	text-align:justify;
	width:calc(100% - 65px);
}
.top-blog{
	margin-top:30px;
}
.top-blog-list{
	margin-top:35px;
	display:flex;
	flex-direction: column;
	gap:10px;
}
.top-topic-list{
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top:20px;
	gap:20px;
}
.top-topic-list a img{
	height:auto;
	border-radius: 5px;
}
.top-blog{
	margin-top:30px;
	margin-bottom:30px;
}
.top-blog-list{
	margin-top:20px;
	display:flex;
	flex-direction: column;
	gap:10px;
}
.top-blog{
	margin-top:30px;
}
.top-blog-list{
	margin-top:20px;
	display:flex;
	flex-direction: column;
	gap:10px;
}
.blog-content{
	display:flex;
	flex-direction: column;
	gap:3px;
	border-bottom: 1px solid #E2E2E2;
	padding:0 0 14px 0;
}
.blog-content p{
	color:black;
	font-weight:500;
	font-size:15px;
}
.blog-content .date{
	/* width:150px; */
}
.blog-page .common-title{
	width:auto !important;
}
.top-company{
	margin-top:50px;
}
.company-content{
	margin-top:30px;
}
.company-info{
	display:flex;
	flex-direction: column;
	gap:25px;
}
.company-info__row{
	display:flex;
	flex-direction: column;
	padding-bottom: 15px;
    border-bottom: 1px solid #E2E2E2;
}
.company-info__row dt{
	font-style: normal;
	font-size:15px;
	font-weight:500;
	width:230px;
}
.company-info__row dd{
	font-style: normal;
	font-size:15px;
	font-weight:500;
	margin:0;
}
.company-info__row dd a{
	color:black;
}
/* page */
.page{
	padding-top: 110px;
	width: 86%;
	margin: 0 auto 0;
}
.page .common-width{
	width:auto !important;
}
/* フォーム */
.form-top{
	gap:20px;
}
.form-top .wp-block-heading{
	font-size:27px !important;
}
/* フッター */
footer{
	background-color:#2A2A2A;
	padding:40px 0 20px 0;
	margin-top:65px;
}
.f-logo{
	width:160px;
	margin:0 auto;
	display:block;
}
.f-menu{
	display:flex;
	gap:10px;
	justify-content:center;
	margin-top:20px;
}
.f-menu a{
	color:white;
	font-weight:500;
	font-size:13px;
	text-decoration: underline;
	text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}
.copy-right{
	font-size:12px;
	font-weight:600;
	margin-top:20px;
	color:white;
	text-align: center;
}
}