@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:130px;
	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:100px;
	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;
}
.sp-diagnosis-cta{
	background-color:#28b560;
	color:white;
	font-size:14px;
	font-weight:600;
	text-align: center;
	width:auto !important;
	height:40px;
	padding:0 20px;
	border-radius: 5px;
	display:flex !important;
	justify-content: center;
	align-items: center;
}
.cta-pc{
	display:none;
}
/*共通はここから*/
.common-width{
	max-width:1150px;
	width:90%;
	margin:0 auto;
}
.top-width{
	max-width:1350px;
	width:90%;
	margin:0 auto;
}
/* トップページ */
.top-group{
	padding-top:125px;
}
.top-content{
	display:flex;
	flex-direction: column;
	gap:30px;
}
.top-content-left{
	width:auto;
}
.top-content-right{
	width:auto;
}
.top-content-read{
	font-size:20px;
	font-weight:500;
	line-height: 1.8;
	text-align: justify;
	margin-top:40px;
	color:#282828;
}
.top-content-read mark{
	background-color: #FFFF00;
}
.tensaku{
	margin-top:45px;
}
.tensaku-content{
	display:flex;
	flex-direction: column;
	gap:25px;
}
.tensaku-content-left{
	width:auto;
	background-color:#3E3E3E;
	border-radius: 8px;
	padding:40px;
}
.tensaku-content-left>div{
	display:flex;
	align-items: center;
	gap:25px;
	border-bottom:1px solid white;
	padding-bottom:27px;
}
.over-icon{
	width:70px;
}
.over-icon img{
	border-radius: 13px;
	vertical-align: middle;
}
.tensaku-content-left>div h2{
	font-size:21px;
	color:white;
}
.tensaku-content-left h3{
	color:white;
	font-size:27px;
	font-family: "Roboto", sans-serif;
	margin-top:25px;
	display: flex;
    align-items: center;
    gap: 17px;
}
.tensaku-content-left h3::before {
    content: "";
    /* font-size: 40px; */
	width:19px;
	height:19px;
	border-radius: 100px;
    background-color: #FFFF00;
    /* line-height: 0.4; */
}
.tensaku-content-left p{
	font-size:14px;
	font-weight:500;
	text-align: justify;
	line-height: 1.8;
	color:white;
	margin-top:15px;
}
.tensaku-content-left ol{
	padding:0 0 0 20px;
}
.tensaku-content-left li{
	font-size:15px;
	font-weight:500;
	text-align: justify;
	line-height: 1.8;
	color:white;
	margin-top:15px;
}.tensaku-content-left li a{
	color: white;
}
.tensaku-content-right{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:25px;
	width:auto;
}
.tensaku-content-right>div{
	background-color: #F4F4F4;
	border-radius: 8px;
	padding:40px;
	display:flex;
	flex-direction: column;
	align-items: center;
	gap:20px;
}
.pf-img{
	width:160px;
}
.pf-img img{
	border-radius: 8px;
}
.pf-info{
	width:auto;
}
.tensaku-content-right h3{
	font-size:15px;
	font-weight:600;
	text-align: center;
}
.tensaku-content-right h2{
	font-size:26px;
	font-weight:600;
	text-align: center;
}
.tensaku-content-right p{
	font-size:14px;
	font-weight:500;
	text-align: justify;
	line-height: 1.8;
	margin-top:15px;
}
.top-contact{
	background-color: white;
	padding:0;
	margin:70px auto 0 auto;
	width:90%;
}
.top-contact h2{
	width:auto;
	margin:0 auto 30px auto;
	font-size:27px;
}
.top-contact .wpcf7{
	width:auto;
	margin:0 auto;
}

/* フォーム */
.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;
}
.wpcf7-form-control{
	display:flex !important;
	flex-wrap: wrap !important;
	gap:10px !important;
}
.wpcf7-list-item{
	margin:0 !important;
}
.wpcf7-list-item label{
	flex-direction: row !important;
	align-items: center !important;
	gap:5px !important;
}
.wpcf7-list-item-label{
	font-size:13px !important;
	font-weight:500 !important;
}
.wpcf7-form-control .wpcf7-list-item:nth-child(2){
	width:auto !important;
}
.wpcf7-list-item label input{
	height:15px !important;
	width:auto !important;
}
.check-box-title{
	font-size:14px;
	font-weight: 600;
	margin-bottom:10px;
	display:block;
}
/* 参考料金 */
.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;
}
/* 会社概要 */
.cv-company tr{
	display:flex;
	flex-direction: column;
	gap:7px;
}
.cv-company td:nth-child(1){
	border: none !important;
	padding:12px 0 0 0 !important;
}
.cv-company td:nth-child(2){
	padding-top:0 !important;
}
/* EC診断 */
.diagnosis-back{
	background-color: white;
	padding:20px 0;
	border-radius: 8px;
}
.diagnosis-width{
	width:90%;
	margin:0 auto;
}
.diagnosis-top img{
	border-radius: 6px;
}
.diagnosis-link{
	display:flex;
	justify-content: space-between;
	/* flex-direction: column; */
	gap:5px;
	margin-top:10px;
}
.diagnosis-link h1{
	font-size:13px;
	font-weight:500;
	border: 2px solid #e2e8f0;
	color:#717171;
	padding:10px 12px;
	text-align: center;
	border-radius: 7px;
	width:60%;
}
.diagnosis-link a{
	width:auto;
	display:block;
	color:white;
	border-radius: 5px;
    font-size: 14px;
	font-weight:600;
    background: #28b560;
	display:flex;
	align-items: center;
	justify-content: center;
	padding:10px 10px;
}
.diagnosis-read{
	margin-top:25px;
}
.diagnosis-common-p{
	font-size:14px !important;
	line-height: 1.9 !important;
	font-weight:400 !important;
	text-align: justify;
}
.diagnosis-read-img{
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	gap:8px;
	margin-top:25px;
}
.diagnosis-read-img img{
	border: 1px #cfcfcf solid;
	border-radius: 3px;;
}
.diagnosis-overview{
	margin-top:30px;
}
.common-diagnosis-title{
	color:white;
	background-color:#FF4800; ;
	font-size:17px;
	border-bottom:2px solid #FF4800;
	border-radius: 5px;
	padding:7px 0;
	text-align: center;
}
.diagnosis-pain{
	margin-top:30px;
}
.diagnosis-pain ul{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:20px;
	list-style: none;
	padding:0;
	margin:30px 0 30px 0;
}
.diagnosis-pain ul li{
	font-size:15px;
	border-bottom:1px solid #c8c8c8;
	padding:0 0 16px 0;
	display:flex;
	gap:10px;
}
.diagnosis-plan-box{
	margin-top:20px;
}
.diagnosis-plan{
    border-collapse: collapse;
    width: 100%;
	background-color: white;
}
.diagnosis-plan td{
	border:solid 1px black;
	padding: .7em;
	font-size:13px;
}
.diagnosis-cart{
	margin-top:30px;
}
.diagnosis-cart-img{
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	gap:15px;
	list-style: none;
	padding:0;
	margin:30px 0 0 0;
}
.diagnosis-cart-img img{
	border-radius: 5px;
	border: 1px solid #ececec;
}
.diagnosis-cart p{
	font-size:14px;
	font-weight:400;
	text-align: right;
	margin-top:20px;
}
.diagnosis-contact{
	margin-top:30px;
}
.diagnosis-contact .common-diagnosis-title{
	margin-top:15px;
}
.diagnosis-contact .diagnosis-common-p{
	margin-top:20px;
}
.diagnosis-contact-form{
	margin-top:40px;
}
.diagnosis-flex{
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	gap:20px;
}
.diagnosis-contact-form .form-group div label span:nth-child(1){
	font-size:14px;
	font-weight:500;
}
.diagnosis-contact-form .form-group div label .required{
	font-size: 10px !important;
}
.diagnosis-contact-form .form-group div label input{
	height:40px;
}
.diagnosis-contact-form .form-submit .wpcf7-submit{
	border-radius: 5px;
    background: #28b560;
	font-size:17px;
	padding:10px 0;
}
}