@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:15px;
	 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:250px;
	height: 100%;
	right: -100%;
	background-color:#FF4800;
	transition: all 0.4s;
	z-index: 100;
	margin:0 0 0 0;
	padding-top:40px;
	display:flex;
	flex-direction:column;
	gap:14px;
	top:0;
}
.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);
  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;
}
.kaso-page .common-title{
	text-align:left;
}
.common-title{
	margin:0 0 12px 0;
}
.common-title p{
	font-size:13px;
	font-weight:600;
	color:#FF4800;
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}
.common-title h2{
	font-size:18px;
	font-weight:600;
	letter-spacing: -0.02em;
}
.kaso-page{
	padding-top:120px;
}
.small-btn{
	color:#FF4800;
	border-bottom:1px solid #FF4800;
	font-size:13px;
	font-weight:600;
	letter-spacing: -0.01em;
	font-family:'Noto Sans JP', sans-serif;
	padding-bottom:2px;
}
.small-btn::after {
        content: '';
        display: inline-block;
        width: 14px;
        height: 14px;
        background-image: url(image/link-arrow.webp);
        background-size: contain;
        vertical-align: middle;
        margin: 0 0 0 10px;
		position: relative;
		top:-1px;
}
/* トップページ */
.top{
	padding-top:124px;
	position: relative;
}
.top-content{
	display:flex;
	flex-direction: column;
	justify-content: space-between;
	gap:20px;
	position: relative;
	z-index: 1;
} 
.top-img{
	width:auto;
}
.top-txt h1{
	font-size:26px;
	letter-spacing: -0.01em;
	line-height: 1.2;
}
.top-txt h1 .orenge-l{
	font-size:32px;
	color:#FF4800;
}
.top-txt h1 .orenge-s{
	font-size:22px;
	color:#FF4800;
}
.top-txt p{
	font-size:12px;
	letter-spacing: -0.01em;
	font-weight:400;
	width:280px;
	margin:12px 0 0 0;
}
.top-line{
	position: absolute;
	top:auto;
	bottom:-8px;
	z-index:1;
}
@keyframes loop_css {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.loop_content {
  width: 100%;
}
.loop_content > div {
  display: flex;          /* ★ 2つのulを横並びにする */
  width: max-content;
  animation: loop_css 60s linear infinite;
}
.loop_wrap{
  width:100%;
  overflow: hidden;
  margin-top:-157px;
  z-index:-1;
  position: relative;
}
#loop_images {
  display: flex;
  width: max-content;
  list-style: none;
  padding: 0;
  margin:0 0 0 0;
}
#loop_images > li {
  width:163px;
  margin-right: 10px;
}
#loop_images > li img{
	border-radius: 7px;
}
.about{
	margin-top:75px;
}
.about .common-width{
	padding-bottom:0;
	border-bottom:none;
}
.about > div{
	display:flex;
	flex-direction: column;
	justify-content: space-between;
	gap:27px;
}
.about-title{
	width:auto;
}
.about-title p{
	font-size:12px;
	font-weight:400;
	letter-spacing: -0.01em;
	line-height: 1.75;
	margin:15px 0 17px 0;
	text-align: justify;
}
.accordion-list{
	max-width:auto;
	width:auto;
	margin-top:0;
}
.acd-check{
    display: none;
}
.acd-label{
    display: block;
	background-color:#3B2D29;
	color:white;
    position: relative;
	padding:15px 50px 15px 17px;
	margin:0 0 10px 0;
	font-size:12px;
	font-weight:500;
	font-family:'Noto Sans JP', sans-serif;
	border-radius: 7px;
}
.acd-label:after{
    box-sizing: border-box;
    content: '+';
    display: block;
	color:white;
    font-size:24px;
	font-weight:400;
    position: absolute;
    right: 12px;
    top: 4px;
}
.acd-content{
    display: block;
    height: 0;
    opacity: 0;
    transition: .3s;
    visibility: hidden;
}
.acd-content p{
	padding:2px 0 0 0;
	font-size:12px;
	line-height: 1.65;
	text-align: justify;
}
.acd-check:checked + .acd-label:after{
    content: '-';
}
.acd-check:checked + .acd-label + .no-1{
    height: 80px;
    opacity: 1;
    visibility: visible;
	padding:0;
}
.acd-check:checked + .acd-label + .no-2{
    height: 80px;
    opacity: 1;
    visibility: visible;
	padding:0;
}
.acd-check:checked + .acd-label + .no-3{
    height: 80px;
    opacity: 1;
    visibility: visible;
	padding:0;
}
.acd-check:checked + .acd-label + .no-4{
    height: 80px;
    opacity: 1;
    visibility: visible;
	padding:0;
}
.merit{
	margin-top:30px;
}
.merit-list{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:7px;
}
.merit-list-detail{
	background-color:#EAEAEA;
	border-radius: 5px;
	padding:14px 16px 18px;
}
.merit-list-detail-img-title{
	display:flex;
	align-items: center;
	gap:17px;
}
.merit-list-detail-img{
	width:80px;
}
.merit-list-detail-img img{
	border-radius:5px;
	height:53px;
	object-fit: cover;
}
.merit-list-detail-img-title h3{
	font-size:15px;
	font-weight:500;
	margin-top:0;
}
.merit-list-detail p{
	font-size:13px;
	color:#727272;
	margin-top:13px;
	letter-spacing: -0.01em;
}
.specialist{
	margin-top:50px;
}
.specialist-title{
	display:flex;
	flex-direction: column;
	gap:10px;
	justify-content: space-between;
}
.specialist-title h2{
	font-size:26px;
	letter-spacing: -0.02em;
	line-height: 1.3;
	margin-top:-5px;
	background: linear-gradient(45deg, #FF4800 0%, #DD6535 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.specialist-title p{
	width:auto;
	font-size:12px;
	font-weight:400;
	letter-spacing: -0.01em;
	line-height: 1.75;
	text-align: justify;
}
@keyframes specialist_css {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.loop_content-specialist {
  width: 100%;
}
.loop_content-specialist > div {
  display: flex;          /* ★ 2つのulを横並びにする */
  width: max-content;
  animation: specialist_css 60s linear infinite;
}
.loop_wrap-specialist{
  width:100%;
  overflow: hidden;
  margin-top:20px;
  z-index:-1;
  position: relative;
}
#loop_images-specialist{
  display: flex;
  width: max-content;
  list-style: none;
  padding: 0;
  margin:0 0 0 0;
}
#loop_images-specialist > li {
  width:176px;
  margin-right: 7px;
}
#loop_images-specialist > li img{
	border-radius: 7px;
}
.top-category{
	margin-top:32px;
}
.top-category ul{
	display:flex;
	flex-wrap: wrap;
	gap:7px;
	margin:0 0 0 0;
	padding:0;
}
.top-category li{
	list-style: none;
}
.top-category ul a{
	background-color: #FF4800;
	color:white;
	padding:6px 13px;
	border-radius:4px;
	font-size:12px;
	letter-spacing: -0.02em;
	display:block;
}
.features{
	margin-top:32px;
}
.features-list{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.features-detail{
	background-color: white;
	padding:15px 23px 22px;
	border-radius: 4px;
}
.features-detail-title{
	display:flex;
	justify-content: space-between;
	gap:20px;
	align-items: center;
	border-bottom:solid 1px #D7D7D7;
	padding-bottom:19px;
}
.features-detail-title > div{
	width:95px;
}
.features-detail-title img{
	border-radius:8px;
}
.features-detail-title h3{
	font-size:14px;
	font-weight:500;
	letter-spacing: -0.02em;
	margin:21px 0 8px;
	width:180px;
}
.features-detail p{
	font-size:12px;
	font-weight:400;
	line-height: 1.65;
	color:#1C1C1C;
	text-align: justify;
	margin-top:12px;
}
.voice{
	margin-top:55px;
	position: relative;
}
.voice-content{
	background-color:#2F2928;
	padding:29px 0 30px 0;
	margin:0 auto;
	width:auto;
	border-radius:0;
	overflow: hidden;
}
.voice-content .common-title{
	margin:0 auto;
}
.voice-content .common-title p{
	color:white;
}
.voice-content .common-title h2{
	color:white;
}
.voice-slider{
	margin:20px auto 0 auto;
}
.slick-arrow{
	background-color:transparent;
	padding:0;
	border:none;
	width:25px;
}
.slick-prev{
	position:absolute;
	top:-48px;
	right:calc(5% + 50px);
}
.slick-next{
	position:absolute;
	top:-48px;
	right:5%;
}
.voice-detail{
	margin:0 30px 0 0;
}
.voice-detail img{
	border-radius: 7px;
}
.voice-detail p{
	font-size:12px;
	color:#AEAEAE;
	letter-spacing: -0.02em;
	line-height: 1.6;
	text-align: justify;
	margin:15px 0 0 0;
}
.voice .slick-list {
    transform:none!important;
}
.case{
	padding-top:55px;
	position: relative;
	overflow: hidden;
}
.case-line{
	position: absolute;
	top:-50px;
	right:0;
	z-index:-1;
	width:190px;
}
.case-list{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:10px;
}
.case-detail{
	background-color: white;
	padding:19px 19px 25px;
	border-radius: 10px;
}
.case-detail h3{
	font-size:16px;
	font-weight:500;
	letter-spacing: -0.02em;
	color:#FF4800;
}
.case-detail p{
	font-size:12px;
	font-weight:400;
	letter-spacing: -0.02em;
	line-height: 1.7;
	text-align: justify;
	margin-top:10px;
}
.flow{
	margin-top:65px;
	position: relative;
}
.flow-list{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:10px;
}
.flow-detail{
	background-color: white;
	border-radius: 10px;
	padding:16px 19px 20px;
}
.flow-detail-top{
	display:flex;
	align-items:center;
	gap:19px;
}
.flow-detail-top div{
	width:41px;
}
.flow-detail-top h3{
	font-size:17px;
	font-weight:500;
	letter-spacing: -0.01em;
}
.flow-detail p{
	font-size:12px;
	color:#727272;
	font-weight:400;
	letter-spacing: -0.02em;
	line-height: 1.65;
	margin-top:12px;
	text-align: justify;
}
.flow .small-btn{
	position: absolute;
	right:0;
	top:17px;
}
.cta-group{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:10px;
	margin-top:30px;
	margin-bottom:30px;
}
.cta-group-link{
	display:flex;
	align-items: center;
	justify-content: space-between;
	background-color:#2F2928;
	border-radius:10px;
	padding: 12px 30px 12px 14px;
	gap:20px;
}
.cta-group-link-img{
	width:85px;
}
.cta-group-link-img img{
	border-radius: 7px;
	height:105px;
	object-fit: cover;
}
.cta-group-link-img-txt{
	width:185px;
}
.cta-group-link-title{
	font-size:15px;
	font-weight:600;
	color:white;
	letter-spacing: -0.02em;
}
.cta-group-link-read{
	font-size:10px;
	font-weight:500;
	color:#939190;
	text-align: justify;
	letter-spacing: -0.02em;
	margin:5px 0 12px 0;
}
.cta-group-link-btn{
	background-color:#483C3A;
	color:white;
	width:95px;
	padding:5px 0;
	text-align: center;
	font-size:11px;
	font-weight:500;
	border-radius: 3px;
}
.top-list{
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	gap:25px;
}
.top-list a img{
	border-radius:5px;
	height:auto;
}
.topic{
	position: relative;
}
.topic-list-txt-time{
	font-size:9px;
	color:#9A9A9A;
	margin-top:6px;
}
.topic-list-txt-title{
	font-size:11px;
	font-weight:500;
	color:#1C1C1C;
	margin:3px 0 4px 0;
}
.topic-list-txt-category{
	font-size:10px;
	color:#9A9A9A;
}
.topic .small-btn{
	position: absolute;
	right:0;
	top:17px;
}
.top-faq{
	margin-top:30px;
}
.top-faq-list{
	display:flex;
	flex-direction:column;
	gap:20px;
	margin-top:28px;
}
.top-faq-detail{
	display:flex;
	flex-direction:column;
	gap:15px;
	padding-bottom:15px;
	border-bottom:1px solid #E2E2E2;
	margin:0;
}
.top-faq-detail-top{
	display:flex;
	align-items:center;
	gap:20px;
	background-color:white;
	border-radius:20px;
	padding:8px;
}
.top-faq-detail-top div{
	width:33px;
}
.top-faq-detail-top h4{
	font-size:15px;
	font-weight:500;
	letter-spacing:-0.02em;
	color:#FF4800;
	width: calc(100% - 65px);
}
.top-faq-detail-bottom{
	display:flex;
	gap:20px;
	padding:0 9px;
	margin:0;
}
.top-faq-detail-bottom div{
	width:33px;
}
.top-faq-detail-bottom p{
	font-size:13px;
	font-weight:400;
	letter-spacing:-0.02em;
	line-height:1.6;
	text-align:justify;
	width: calc(100% - 65px);
}
.top-blog{
	margin-top:60px;
	margin-bottom:60px;
}
.top-blog-list{
	margin-top:50px;
	display:flex;
	flex-direction: column;
	gap:20px;
}
.blog-content{
	display:flex;
	flex-direction: column;
	border-bottom: 1px solid #E2E2E2;
	padding:0 0 10px 0;
}
.blog-content p{
	color:black;
	font-weight:400;
	font-size:14px;
}
.blog-content .date{
	/* width:150px; */
}
/* archive */
.archive{
	margin-top:0;
}
/* page */
.kaso-page{
	/* padding-top: 110px; */
    width: 86%;
    margin: 0 auto 0;
}
.kaso-page .common-width {
    width: auto !important;
}
.kaso-page p{
	font-size:15px;
	font-weight:500;
	line-height: 1.75;
}
/* フォーム */
.form-top{
	gap:0;
}
.form-back{
	background-color:white;
	padding:20px 25px;
	border-radius: 8px;
}
.form-flex{
	display:flex;
	gap:10px;
}
.form-group{
	display:flex;
	flex-direction: column;
	gap:20px;
}
.form-group div label{
	display:flex;
	flex-direction: column;
	gap:7px;
}
.form-group div label span:nth-child(1){
	font-size:14px;
	font-weight:600;
}
.form-group div label span:nth-child(2){
	width:100%;
}
.form-group div label input{
	width:100%;
	padding:0;
	height:30px;
	border-radius: 6px;
	border: 1px solid #bdbdbd;
	padding-block: 2px;
	padding-inline: 13px;
	box-sizing: border-box;
	font-size:16px;
}
.form-group div label .wpcf7-select{
	width:100%;
	padding:14px 5px;
	border-radius: 10px;
	border: 1px solid #bdbdbd;
	padding-inline: 13px;
}
.form-group div label textarea{
	width:100%;
	padding:0;
	border-radius: 10px;
	border: 1px solid #bdbdbd;
	padding-block: 5px;
	padding-inline: 13px;
	box-sizing: border-box;
	resize: vertical;
}
.form-group div label .required{
	background-color: #FF4800;
	color:white;
	padding:3px 10px;
	font-size:9px !important;
	border-radius: 30px;
	margin-left:10px;
	position: relative;
	top:-1px;
}
.form-submit{
	margin-top:20px;
}
.form-submit .wpcf7-submit{
	background-color: #FF4800;
	color:white;
	font-size:16px;
	font-weight: 600;
	padding:8px 0;
	width: 100%;
	text-align: center;
	border-radius: 7px;
	border: none;
}
.form-example{
	gap:10px;
	display:flex;
	flex-direction: column;
}
.form-top .is-style-default{
	width:35px !important;
	margin:15px 0 15px 0;
}
.form-example p{
	background-color: white;
	padding:15px 18px;
	border-radius:6px;
	font-weight:400;
	font-size:13px !important;
}
.has-luminous-vivid-amber-color{
	background-color: yellow !important;
	color: inherit !important;
}
/* 参考料金 */
.plan-group{
	display:flex;
	flex-direction: column;
	gap:60px;
	margin-top:35px;
}
.plan h2{
	font-size:39px;
	color:#FF4800;
	letter-spacing: -0.02em;
}
.plan h2 span{
	font-size:22px;
	color:black;
	vertical-align: top;
	border-bottom:#C6C6C6 1px solid;
	position: relative;
	top:7px;
	margin:0 0 0 8px;
	padding:0 0 8px 0;
}
.plan-list{
	display:flex;
	flex-direction: column;
	gap:15px;
	margin-top:17px;
}
.plan-list>div{
	background-color:white;
	border-radius: 10px;
	padding:20px 22px 18px;
}
.plan-title{
	background-color: #FF4800;
	color:white;
	padding:8px 0;
	border-radius:6px;
	text-align: center;
	font-size:18px;
	margin-bottom:10px;
}
.plan-list .plan-item p{
	font-size:13px;
	font-weight:500;
	text-align:center;
}
.plan-list>div p{
	font-size:13px;
	font-weight:500;
	text-align: justify;
}
.plan-list>div h4{
	background-color: #fef5f2;
	border-radius:6px;
	font-size:15px;
	color:rgb(69, 69, 69);
	text-align: center;
	padding:6px 0;
	margin:20px 0 10px;
}
.plan-list>div div{
	text-align: center;
}
.plan-price{
	font-size:34px !important;
	font-weight:700;
	letter-spacing: -0.02em;
	color:#FF4800;
	text-align: center;
	position: relative;
	z-index:10;
	display:inline-block;
	margin:15px auto 0;
}
.plan-price span{
	font-size:21px !important;
	position: relative;
	bottom:2px;
}
.plan-price::before {
    content: "";
    width:auto;
    height: 30%;
    background: #FCEC6E;
    position: absolute;
    left: 0;
    bottom:9px;
    right: 0;
    z-index:-1;
}
/* フッター */
footer{
	background-color:#1E1F1F;
	padding:45px 0 10px 0;
	margin-top:60px;
}
.footer-content{
	display:flex;
	flex-direction: column;
	gap:0;
}
.f-logo{
	width:120px;
	margin-top:3px;
}
.footer-link{
	display:flex;
	gap:50px;
	margin-top:14px;
}
.footer-link ul{
	padding:0;
	margin:0;
	display:flex;
	flex-direction: column;
	gap:7px;
}
.footer-link ul li{
	list-style: none;
}
.footer-link ul li a{
	color:white;
	font-size:13px;
	padding:0;
	display:block;
}
.fotter-cta{
	width:100%;
	margin-left:0;
	margin-top:24px;
	display:flex;
	flex-direction: column;
	gap:10px;
}
.fotter-cta img{
	border-radius: 5px;
}
.copy-right{
	display:block;
	color:#969696;
	font-size:10px;
	font-weight:400;
	margin-top:30px;
	border-top:1px solid #545454;
	padding:10px 0 0 0;
}
}