@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;600;800;900&display=swap');

:root {
	--color-black:rgb(0, 0, 0);
	--color-white:rgb(255, 255, 255);
	--color-s-light-grey: rgb(250, 250, 250);
	--color-light-grey: rgb(185, 190, 200);
	--color-mid-grey:   rgb(90, 100, 115);
	--color-dark-grey:  rgb(30, 30, 40);
	--color-red:        rgb(255, 0, 80);
	--color-light-blue: rgb(50, 150, 255);
	--color-dark-blue: rgb(60, 60, 200);
	--color-yellow: rgb(255, 240, 70);
	--ink:         var(--color-dark-grey);
	--line:        var(--color-dark-grey);
	--placeholder: var(--color-light-grey);
	--req:         var(--color-red);
}

@font-face {
  font-family: "TsukuGo Pro";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/FOT-TsukuGoPro-M.woff2") format("woff2"),
       url("../fonts/FOT-TsukuGoPro-M.woff")  format("woff");
}
 
@font-face {
  font-family: "TsukuGo Pro";
  font-weight: 700; /* Bold */
  font-style: normal;
  font-display: swap;
  src: url("../fonts/FOT-TsukuGoPro-B.woff2") format("woff2"),
       url("../fonts/FOT-TsukuGoPro-B.woff")  format("woff");
}
 
@font-face {
  font-family: "TsukuGo Pro";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/FOT-TsukuGoPro-D.woff2") format("woff2"),
       url("../fonts/FOT-TsukuGoPro-D.woff")  format("woff");
}

@font-face {
	font-family: "Gothic725BoldBT";
	src: url('../fonts/Gothic725BoldBT.woff2') format('woff2'), url('../fonts/Gothic725BoldBT/font.woff') format('woff');
}

abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:0 0}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:0 0}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}.clearfix::after{content:"";display:block;clear:both;}

*,*::before,*::after{
	box-sizing: border-box;
}

html{
	font-size: 62.5%;
}

*{
	max-height: 99999px;
}

body{
	font-family: "Noto Sans JP", '繝偵Λ繧ｮ繝手ｧ偵ざ Pro W3', 'Hiragino Kaku Gothic Pro', '繝｡繧､繝ｪ繧ｪ', 'Meiryo', '貂ｸ繧ｴ繧ｷ繝�け', 'Yu Gothic', '�ｭ�ｳ �ｰ繧ｴ繧ｷ繝�け', 'MS PGothic', sans-serif;
	-webkit-text-size-adjust: 100%;
	font-size: 1.4rem;
	color: var(--color-text);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 2px;
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, video {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

button, input, textarea, select {
	font-family: inherit;
	font-size: inherit;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	color: var(--color-text);
}

a:hover {
	opacity: 0.6;
}

.en {
	font-family: "Gothic725BoldBT", sans-serif;
}
.tsuku{
	font-family: "TsukuGo Pro", sans-serif;
}

#wrap {
	overflow-x: clip;
}

.relative { position: relative; }
.absolute { position: absolute; }
.inline   { display: inline-block; }
.left     { float: left; }
.right    { float: right; }

.pc  { display: block; }
.sp  { display: none; }
.tab { display: none; }

.in {
	width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}
.in_in {
	width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}

.flex   { display: flex; }
.flex_w { flex-wrap: wrap; }
.palt   { font-feature-settings: "palt"; }

.c_black        { color: var(--color-black); }
.c_white        { color: var(--color-white); }
.c_s-light-grey { color: var(--color-s-light-grey); }
.c_light-grey   { color: var(--color-light-grey); }
.c_mid-grey     { color: var(--color-mid-grey); }
.c_dark-grey    { color: var(--color-dark-grey); }
.c_red          { color: var(--color-red); }
.c_light-blue   { color: var(--color-light-blue); }
.c_dark-blue    { color: var(--color-dark-blue); }
.c_yellow       { color: var(--color-yellow); }

.bg_black        { background-color: var(--color-black); }
.bg_white        { background-color: var(--color-white); }
.bg_s-light-grey { background-color: var(--color-s-light-grey); }
.bg_light-grey   { background-color: var(--color-light-grey); }
.bg_mid-grey     { background-color: var(--color-mid-grey); }
.bg_dark-grey    { background-color: var(--color-dark-grey); }
.bg_red          { background-color: var(--color-red); }
.bg_light-blue   { background-color: var(--color-light-blue); }
.bg_dark-blue    { background-color: var(--color-dark-blue); }
.bg_yellow       { background-color: var(--color-yellow); }
.bg_grd{
	background-image: -moz-linear-gradient( 90deg, rgb(60,60,200) 0%, rgb(0,170,200) 100%);
  	background-image: -webkit-linear-gradient( 90deg, rgb(60,60,200) 0%, rgb(0,170,200) 100%);
  	background-image: -ms-linear-gradient( 90deg, rgb(60,60,200) 0%, rgb(0,170,200) 100%);
}
.bg_grd_02{
	background-image: -moz-linear-gradient(0.08deg, rgb(0, 170, 200) 0%, rgb(60, 60, 200) 100%);
	background-image: -webkit-linear-gradient(0.08deg, rgb(0, 170, 200) 0%, rgb(60, 60, 200) 100%);
	background-image: -ms-linear-gradient(0.08deg, rgb(0, 170, 200) 0%, rgb(60, 60, 200) 100%);
}

@media screen and (max-width: 1200px) {
	.in, .in_in {
		width: 94%;
		margin: 0 auto;
	}
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
	.pc  { display: block; }
	.sp  { display: none; }
	.tab { display: block; }
	.in, .in_in {
		width: 94%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 750px) {
	body {
		font-size: 1.2rem;
		letter-spacing: 2px;
	}
	#wrap {
		width: 100vw;
	}
	.pc  { display: none; }
	.sp  { display: block; }
	.tab { display: none; }
	.in, .in_in {
		width: 94%;
		margin: 0 auto;
	}
	.flex_w_sp {
		flex-wrap: wrap;
	}
}

#header{
	padding: 20px 0;
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%;
}
#header .header_in{
	justify-content: space-between;
}
#header .logo{}
#header .logo img{
	width: 150px;
}
#header .header_nav{}
#header .header_nav .nav{
	gap: 15px;
	margin-right: 20px;
}
#header .header_nav .nav a{
	font-size: 1.5rem;
	position: relative;
}
#header .contact_btn_w a{
	position: relative;
	font-size: 1.6rem;
}
.arrow-horizontal {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	flex: 1;
	transform: translateY(100%);
	display: inline-block;
}
.arrow-wrap {
	display: flex;
	align-items: center;
	width: 100%;
}
.arrow-line {
	width: calc(100% - 1rem);
	height: 1rem;
	overflow: visible;
	transform: translateX(1px);
}
#header .contact_btn_w a .arrow-head {
	width: 2rem;
	height: 1rem;
	flex-shrink: 0;
	overflow: visible;
}
.arrow-horizontal .arrow-line line,
.arrow-horizontal .arrow-head path {
	stroke: var(--color-red);
}
@media screen and (max-width: 1200px) {
	#header{
		padding: 20px 0;
		top: 0;
		z-index: 999;
		width: 100vw;
	}
	#header .logo img {
		width: 110px;
	}
	#header .contact_btn_w a{
		font-size: 1.3rem;
	}
	#header .header_r{
		align-items: center;
	}

	.header_nav{
		display: none;
	}

	#header .hamburger {
		display: block;
		position: relative;
		width: 36px;
		height: 10px;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
		margin-left: 20px;
		flex-shrink: 0;
		z-index: 110;
	}
	#header .hamburger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background: var(--color-dark-grey);
		transition: transform .3s, opacity .3s;
	}
	#header .hamburger span:nth-child(1) { top: 0; }
	#header .hamburger span:nth-child(2) { top: 9px; }
	#header .hamburger span:nth-child(3) { top: 18px; }

	#header .hamburger.is-active {
		position: fixed;
		top: 20px;
		right: 4%;
	}
	#header .hamburger.is-active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
	#header .hamburger.is-active span:nth-child(2) { opacity: 0; }
	#header .hamburger.is-active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

	.drawer-overlay {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, .5);
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s;
		z-index: 90;
	}
	.drawer-overlay.is-show {
		opacity: 1;
		visibility: visible;
	}


	.drawer {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		width: 72%;
		max-width: 300px;
		height: 100dvh;
		background: var(--color-dark-grey);
		padding: 80px 5% 40px;
		transform: translateX(100%);
		transition: transform .3s;
		overflow-y: auto;
		z-index: 1000;
	}
	.drawer.is-open { transform: translateX(0); }
	.drawer .drawer_nav li {
		border-bottom: 1px solid var(--color-light-grey);
	}
	.drawer .drawer_nav a {
		display: block;
		padding: 18px 28px;
		font-size: 1.6rem;
		color: var(--color-white);
	}
	.drawer-close {
		position: absolute;
		top: 22px;
		right: 20px;
		width: 28px;
		height: 28px;
		padding: 0;
		border: 0;
		background: transparent;
		cursor: pointer;
	}
	.drawer-close span {
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		height: 1px;
		background: var(--color-white);
	}
	.drawer-close span:nth-child(1) { transform: rotate(45deg); }
	.drawer-close span:nth-child(2) { transform: rotate(-45deg); }


	body.is-fixed { overflow: hidden; }

	.arrow-head{
    	min-width: 20px;
    	width: 1.5em;
	}
}

main{
	margin-top: 65px;
}
@media screen and (max-width: 1200px) {
	main {
    	margin-top: 60px;
	}	
}

#main{
	background: url(../images/fv_pc_bg.jpg);
	padding: 46px 0;
	background-repeat: no-repeat;
	background-position: center;
}
#main .txtarea{
	
}
#main .txtarea .s_txt{
	font-size: 2.6rem;
	margin-bottom: 18px;
	font-weight: 600;
}
#main .txtarea .main_copy {
	font-size: 6rem;
	line-height: 1.25;
	margin-bottom: 18px;
}
#main .txtarea .lead_txt {
	font-size: 1.6rem;
	margin-bottom: 25px;
}
#main .main_ico_list_w{
	gap: 15px;
	margin-bottom: 30px;
}
#main .main_ico_list_w .main_ico_list_i{
	width: 145px;
}
#main .main_ico_list_w .main_ico_list_i .ico{
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-white);
	text-align: center;
}
#main .main_ico_list_w .main_ico_list_i .ico img{
	height: 48px;
	width: auto;
}
#main .main_ico_list_w .main_ico_list_i .txt{
	text-align: center;
	font-size: 1.6rem;
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
	#main {
		background: url(../images/fv_bg_tab.jpg);
		background-size: cover;
		padding: 230px 0 40px;
		background-repeat: no-repeat;
		background-position: center;
	}
	#main .txtarea{
		text-align: center;
	}
	#main .txtarea .s_txt {
    	font-size: 2.4rem;
	}
	#main .main_ico_list_w{
		justify-content: center;
	}
	#main .btn_w .btn_i{
		margin: auto;
	}
}
@media screen and (max-width: 750px) {
	#main {
		background: url(../images/fv_bg_sp.jpg);
		background-size: cover;
		padding: 230px 0 40px;
		background-repeat: no-repeat;
		background-position: center;
	}
	#main .txtarea .s_txt {
		font-size: 1.8rem;
		margin-bottom: 5px;
	}
	#main .txtarea .main_copy {
		font-size: 3.6rem;
        line-height: 1.25;
        margin-bottom: 10px;
        letter-spacing: 0px;
	}
	#main .txtarea .lead_txt {
		font-size: 1.2rem;
		margin-bottom: 15px;
		letter-spacing: 1px;
		line-height: 1.8;
	}
	#main .main_ico_list_w .main_ico_list_i .ico img{
		height: 36px;
	}
	#main .main_ico_list_w .main_ico_list_i .txt {
		text-align: center;
		font-size: 1.4rem;
		letter-spacing: 0px;
	}
}

.btn_w{}
.btn_w .btn_i {
	position: relative;
	padding: 15px;
	padding-bottom: 25px;
	display: block;
	width: 464px;
	text-align: center;
	font-size: 1.6rem;
}
.btn_w .arrow-horizontal{
	width: 25%;
	bottom: 20px;
    left: 50%;
	transform: translate(-50%, 10px);
}
.btn_w .arrow-horizontal .arrow-line line,
.btn_w .arrow-horizontal .arrow-head path {
	stroke: var(--color-white);
}
@media screen and (max-width: 750px) {
	.btn_w .btn_i {
		position: relative;
		padding: 15px;
		padding-bottom: 25px;
		display: block;
		width: 100%;
		text-align: center;
		font-size: 1.4rem;
	}
}

.sec_ttl_w{
	text-align: center;
	margin-bottom: 50px;
}
.sec_ttl_w .s_txt{
	font-size: 1.8rem;
	margin-bottom: 5px;
}
.sec_ttl_w .sec_ttl{
	font-size: 3.4rem;
	font-weight: 600;
}
.sec_ttl_w .sec_ttl .en{
	font-weight: 500;
}
@media screen and (max-width: 750px) {
	.sec_ttl_w{
		text-align: center;
		margin-bottom: 30px;
	}
	.sec_ttl_w .s_txt{
		font-size: 1.5rem;
		margin-bottom: 5px;
	}
	.sec_ttl_w .sec_ttl{
		font-size: 2.7rem;
		font-size: 500;
		line-height: 1.25;
	}
}

#worry{
	padding: 50px 0;
}
#worry .worry_w{
	justify-content: space-between;
}
#worry .worry_w .worry_i{
	width: 31.5%;
}
#worry .worry_i .worry_h{
	margin-bottom: 20px;
}
#worry .worry_i .worry_h .num_w{
	align-items: center;
	justify-content: center;
}
#worry .worry_i .worry_h .num_w .en_txt{
	border-bottom: 1px solid var(--color-dark-blue);
	font-size: 2.4rem;
	line-height: 1;
	margin-right: 5px;
}
#worry .worry_i .worry_h .num_w .num{
	font-size: 3.8rem;
}
#worry .worry_i .worry_h .worry_sub_ttl{
	font-size: 2.2rem;
	line-height: 1.25;
	text-align: center;
}
#worry .worry_i .befor_after{}
#worry .worry_i .befor_after .befor_after_i{
	width: 49.5%;
}
#worry .worry_i .befor_after .befor_after_i .ico{
	text-align: center;
}
#worry .worry_i .befor_after .befor_after_i .ico img{
	height: 50px;
	width: auto;
}
#worry .worry_i .befor_after .befor_after_i .txt{
	text-align: center;
}
#worry .worry_i .befor_after .befor_after_i .before_label{
	text-align: center;
	margin-bottom: 15px;
}
#worry .worry_i .befor_after .befor_after_i .ico{
	margin-bottom: 15px;
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
	#worry .worry_w .worry_i {
		width: 70%;
		margin: auto;
		border-bottom: 1px solid #888e92;
		margin-bottom: 20px;
		padding-bottom: 30px;
	}
	#worry .worry_w .worry_i:nth-last-of-type(1){
		border-bottom: 0px solid #888e92;
		margin-bottom: 0px;
		padding-bottom: 0px;
	}
}
@media screen and (max-width: 750px) {
	#worry{
		padding: 40px 0;
	}
	#worry .worry_w .worry_i{
		width: 100%;
		border-bottom: 1px solid #888e92;
		margin-bottom: 20px;
		padding-bottom: 30px;
	}
	#worry .worry_w .worry_i:nth-last-of-type(1){
		border-bottom: 0px solid #888e92;
		margin-bottom: 0px;
		padding-bottom: 0px;
	}
	#worry .worry_i .worry_h .num_w .en_txt{
		font-size: 1.8rem;
	}
	#worry .worry_i .worry_h .num_w .num {
		font-size: 3.2rem;
	}
	#worry .worry_i .worry_h .worry_sub_ttl {
		font-size: 1.8rem;
	}
}


#reason{
	padding: 50px 0;
}
#reason .reason_h{
	background: url(../images/reason_top_bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	padding: 80px 0;
}
#reason .reason_h .txt{
	font-size: 2.4rem;
	font-weight: 600;
	margin-left: 30px;
}
#reason .reason_list_w{
	justify-content: space-between;
	padding-top: 50px;
}
#reason .reason_i{
	flex-direction: column;
	width: 22%;
}
#reason .reason_i .imgarea{
	text-align: center;
	margin-bottom: 20px;
}
#reason .reason_i .imgarea img{
	width: 170px;
}
#reason .reason_i .txtarea{}
#reason .reason_i .txtarea h3{
	margin-bottom: 15px;
	text-align: center;
	font-size: 2.0rem;
	font-weight: 500;
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
	#reason .reason_h{
		background: url(../images/reason_top_bg_sp.jpg);
		background-size: cover;
		padding: 80px 0;
	}
	#reason .reason_list_w{
		flex-wrap: wrap;
		gap: 2rem;
	}
	#reason .reason_i {
		flex-direction: column;
		width: 48%;
	}
}
@media screen and (max-width: 750px) {
	#reason{
		padding: 40px 0;
	}
	#reason .reason_h{
		background: url(../images/reason_top_bg_sp.jpg);
		background-size: cover;
		padding: 40px 0;
	}
	#reason .reason_h .txt {
		font-size: 1.8rem;
		font-weight: 600;
		margin-left: 0;
		letter-spacing: 1px;
	}
	#reason .reason_list_w{
		padding-top: 40px;
	}
	#reason .reason_i{
		width: 100%;
		flex-direction: unset;
		align-items: center;
		margin-bottom: 25px;
	}
	#reason .reason_i:nth-of-type(2n){
		flex-direction: row-reverse;
	}
	#reason .reason_i .imgarea{
		flex-shrink: 0;
		width: 46%;
		padding-right: 10px;
		margin-bottom: 0;
	}
	#reason .reason_i:nth-of-type(2n) .imgarea{
		padding-right: 0;
		padding-left: 10px;
	}
	#reason .reason_i .txtarea h3{
		text-align: left;
		font-size: 1.7rem;
		margin-bottom: 10px;
		letter-spacing: 1px;
	}
}

#approach{
	padding: 50px 0;
}
#approach .lead_txt{
	text-align: center;
	font-size: 1.6rem;
	margin-bottom: 40px;
}
#approach .sec_ttl_w{
	margin-bottom: 25px;
}
#approach .approach_lis_w{
	justify-content: space-between;
}
#approach .approach_lis_w .approach_lis_i{
	width: 23.5%;
}
#approach .approach_lis_i .approach_lis_h{
	align-items: center;
	margin-bottom: 20px;
}
#approach .approach_lis_i .approach_lis_h .ico{
	margin-right: 10px;
}
#approach .approach_lis_i .approach_lis_h .ico img{
	height: 50px;
	width: auto;
}
#approach .approach_lis_i .approach_lis_h h3{
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 1.3;
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
	#approach .approach_lis_w .approach_lis_i{
		width: 47%;
	}
	#approach .approach_lis_w {
		justify-content: space-between;
		gap: 30px;
	}
	#approach .approach_lis_i .approach_lis_h h3 br{
		display: none;
	}
}
@media screen and (max-width: 750px) {
	#approach{
		padding: 40px 0;
	}
	#approach .lead_txt{
		text-align: center;
		font-size: 1.4rem;
		margin-bottom: 35px;
		letter-spacing: 1px;
		line-height: 1.75;
	}
	#approach .sec_ttl_w{
		margin-bottom: 20px;
	}
	#approach .approach_lis_w .approach_lis_i{
		width: 100%;
		display: flex;
		align-items: center;
		margin-bottom: 20px;
	}
	#approach .approach_lis_w .approach_lis_i:nth-last-of-type(1){
		margin-bottom: 0;
	}
	#approach .approach_lis_w .approach_lis_i .ico{
		flex-shrink: 0;
		padding: 0 15px 0 10px;
	}
	#approach .approach_lis_w .approach_lis_i .ico img{
		height: 46px;
		width: auto;
	}
	#approach .approach_lis_i .approach_lis_h {
		align-items: center;
		margin-bottom: 5px;
	}
	#approach .approach_lis_i .approach_lis_h h3{
		line-height: 1.75;
		font-size: 1.8rem;
	}
}

#use_case{
	padding: 50px 0 0;
}
#use_case .pickup_case{
	background: url(../images/use_case_bg.jpg);
	background-size: cover;
	background-position: center;
	padding: 0px 0 35px;
	position: relative;
}
#use_case .pickup_case:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translateX(-50%);
	width: 40px;
	height: 16px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 16'%3E%3Cpath d='M2 2 L20 14 L38 2' fill='none' stroke='%234d8fd6' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
#use_case .pickup_case .pickup_tag{
	margin-bottom: 25px;
	text-align: center;
}
#use_case .pickup_case .pickup_tag span {
	display: inline-block;
	padding: 8px 25px;
	line-height: 1;
}
#use_case .pickup_case .pickup_tag span{
	display: inline-block;
}
#use_case .pickup_case h3{
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 20px;
}
#use_case .pickup_case p{
	text-align: center;
}
#use_case .use_case_w{
	padding: 30px 0 50px;
}
#use_case .use_case_w h3{
	margin-bottom: 30px;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 600;
}
#use_case .use_case_w h3 .line_w{
	border-bottom: 1px solid var(--color-dark-blue);
	display: inline-block;
}
#use_case .use_case_w h3 .line_w .en{
	font-weight: 500;
}
#use_case .use_case_w .at_last{
	margin-bottom: 60px;
}
#use_case .use_case_w .at_last .ico_txt{
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}
#use_case .use_case_w .at_last .ico{
	margin-right: 20px;
}
#use_case .use_case_w .at_last .ico img{
	width: 72px;
}
#use_case .use_case_w .at_last .txtarea{}
#use_case .use_case_w .at_last .txtarea .txt{
	margin-bottom: 6px;
}
#use_case .use_case_w .at_last .txtarea .txt:nth-last-of-type(1){
	margin-bottom: 0;
}
#use_case .use_case_w .at_last .result_w{
	justify-content: center;
	gap: 35px;
	width: 624px;
	margin: auto;
	padding: 25px 20px 15px;
	box-sizing: border-box;
	position: relative;
}
#use_case .use_case_w .at_last .result_w:before{
	content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 15px solid var(--color-white);
    border-bottom: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}
#use_case .use_case_w .at_last .result_w .result_i{
	text-align: center;
	font-size: 1.6rem;
}
#use_case .use_case_w .at_last .result_w .result_i dd .l_txt{
	font-size: 2.6rem;
}
#use_case .use_case_w .at_last .result_w .result_i dd .m_txt {
	font-size: 2.2rem;
}
#use_case .other_ww{
	
}
#use_case .other_ww .other_w{
	justify-content: space-between;
	margin-bottom: 30px;
}
#use_case .other_ww .other_w .other_i{
	width: 48.5%;
}
#use_case .tag{
	margin-bottom: 25px;
	border-bottom: 1px solid var(--color-dark-blue);
}
#use_case .tag span{
	display: inline-block;
	text-align: center;
	width: 180px;
	padding: 2px 10px;
	box-sizing: border-box;
}
#use_case .other_ww .other_w .other_i .ico_txt{
	align-items: center;
}
#use_case .other_ww .other_w .other_i .ico{
	padding:0 20px 0 10px;
}
#use_case .other_ww .other_w .other_i .ico img{
	height: 52px;
	width: auto;
}
#use_case .other_ww .other_w .other_i .txtarea{}
#use_case .other_ww .other_w .other_i .txtarea h4{
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 5px;
}
#use_case .link_w{
	display: table;
	margin:20px auto 0;
}
#use_case .link_w a{
	position: relative;
	display: block;
}
#use_case .link_w a .l_txt{
	font-size: 1.8rem;
	padding-bottom: 26px;
	display: block;
}
#use_case .link_w .arrow-horizontal{
	bottom: 42px;
}
#use_case .link_w .arrow-horizontal .arrow-head{
	width: 24px;
}
#use_case .link_w .arrow-horizontal .arrow-line line,
#use_case .link_w .arrow-horizontal .arrow-head path {
	stroke: var(--color-dark-blue);
}
#use_case .drone{}
#use_case .drone .tag{
	margin-bottom: 0;
	border: 0px;
}
#use_case .drone .drone_ww{
	background: url(../images/drone_bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	padding: 55px 0;
}
#use_case .drone .drone_w{
	width: 52.5%;
}
#use_case .drone .drone_w .txtarea{}
#use_case .drone .drone_w .txtarea h3{
	font-size: 3.2rem;
	margin-bottom: 20px;
}
#use_case .drone .drone_w .txtarea .txt{
	margin-bottom: 20px;
}
#use_case .drone .drone_w .drone_lis_w{
	gap: 15px;
	margin-bottom: 20px;
}
#use_case .drone .drone_w .drone_lis_w .drone_lis_i{
	width: 48.5%;
	border: 1px solid var(--color-white);
	align-items: center;
	color: var(--color-white);
	padding: 10px;
}
#use_case .drone .drone_w .drone_lis_w .drone_lis_i .ico{
	flex-shrink: 0;
}
#use_case .drone .drone_w .drone_lis_w .drone_lis_i .ico img{
	width: 20px;
}
#use_case .drone .drone_w .drone_lis_w .drone_lis_i .txt{
	width: 100%;
	display: inline-block;
	text-align: center;
}
#use_case .drone .drone_w .btn_w{}
#use_case .drone .drone_w .btn_w .btn_i{
	width: 100%;
}
#use_case .drone .drone_w .btn_w .btn_i .arrow-head{
    width: 16px;
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
	#use_case .drone .drone_w {
		width: 67.5%;
	}
}
@media screen and (max-width: 836px) {
	#use_case .drone .drone_w {
		width: 77.5%;
	}
}
@media screen and (max-width: 750px) {
	#use_case{
		padding: 40px 0 0;
	}
	#use_case .pickup_case {
		background: url(../images/use_case_bg_sp.jpg);
		background-size: cover;
		background-position: center;
		padding: 45px 0 45px;
		position: relative;
	}
	#use_case .pickup_case h3{
		font-size: 2.0rem;
		text-align: left;
		margin-bottom: 10px;
		padding:0 25px;
	}
	#use_case .pickup_case p{
		text-align: left;
		padding:0 25px;
		padding-right: 0;
	}
	#use_case .pickup_case .pickup_tag {
		margin-bottom: 25px;
		text-align: center;
		margin: 0;
		position: absolute;
		width: 18%;
		top: 0;
		left: 0;
	}
	#use_case .use_case_w {
		padding: 30px 0 30px;
	}
	#use_case .use_case_w h3 {
		margin-bottom: 20px;
		font-size: 2.0rem;
	}
	#use_case .use_case_w .at_last {
		margin-bottom: 45px;
	}
	#use_case .use_case_w .at_last .ico{
		flex-shrink: 0;
		margin-right: 15px;
	}
	#use_case .use_case_w .at_last .ico img{
		height: 55px;
		width: auto;
	}
	#use_case .use_case_w .at_last .result_w{
		gap: 30px;
		width: 100%;
	}
	#use_case .use_case_w .at_last .result_w .result_i{
		font-size: 1.4rem;
	}
	#use_case .use_case_w .at_last .result_w .result_i dd .l_txt{
		font-size: 2.2rem;
	}
	#use_case .use_case_w .at_last .result_w .result_i dd .m_txt {
		font-size: 1.8rem;
	}
	#use_case .other_ww .other_w .other_i{
		width: 100%;
	}
	#use_case .tag span{
		width: 160px;
	}
	#use_case .tag {
		margin-bottom: 15px;
		border-bottom: 1px solid var(--color-dark-blue);
	}
	#use_case .other_ww .other_w {
		justify-content: space-between;
		margin-bottom: 20px;
	}
	#use_case .other_ww .other_w .other_i{
		margin-bottom: 25px;
	}
	#use_case .other_ww .other_w .other_i:nth-last-of-type(1){
		margin-bottom: 0;
	}
	#use_case .other_ww .other_w .other_i .txtarea h4 {
		font-size: 1.6rem;
		font-weight: 600;
		margin-bottom: 5px;
	}
	#use_case .other_ww .other_w .other_i .txtarea .txt {
		letter-spacing: 1px;
	}
	#use_case .link_w {
		display: table;
		margin: 20px auto 0;
		width: 100%;
	}
	#use_case .link_w a .l_txt{
		font-size: 1.6rem;
		line-height: 1.25;
		padding-bottom: 20px;
	}
	#use_case .link_w .arrow-horizontal {
		bottom: 35px;
	}

	#use_case .drone .drone_ww{
		padding: 0;
		background: none;
	}
	#use_case .drone .drone_ww .in_in{
		width: 100%;
	}
	#use_case .drone .drone_w {
		width: 100%;
	}
	#use_case .drone .drone_w .txtarea {
        background: url(../images/drone_bg_sp.jpg);
        background-position: center;
        background-repeat: no-repeat;
        padding-top: 50px;
        padding: 160px 3.5% 25px;
        background-size: cover;
    }
	#use_case .drone .drone_w .txtarea .txt{
		margin-bottom: 0;
		letter-spacing: 1px;
		line-height: 1.75;
	}
	#use_case .drone .drone_w .txtarea h3 {
		font-size: 2.9rem;
		margin-bottom: 8px;
		line-height: 1.25;
		font-weight: 500;
	}
	#use_case .drone .drone_w .drone_lis_w{
		padding: 25px 3.5%;
		gap: 10px;
		margin-bottom: 0;
	}
	#use_case .drone .drone_w .drone_lis_w .drone_lis_i{
		border: 1px solid var(--color-light-grey);
		color: var(--color-black);
		letter-spacing: 1px;
	}
	#use_case .drone .drone_w .btn_w {
		padding: 0 3.5%;
	}
}

#flow{
	padding: 50px 0;
}
#flow .sec_ttl_w{
	margin-bottom: 20px;
}
#flow .lead_txt{
	margin-bottom: 35px;
	text-align: center;
}
#flow .flow_w{
	justify-content: center;
	gap: 60px;
	position: relative;
}
#flow .flow_w::before{
	content: "";
	height: 1px;
	width: 60%;
	background: var(--color-dark-blue);
	position: absolute;
	left: 50%;
	top: 30px;
	transform: translate(-50%,0);
}
#flow .flow_w .flow_i{
	flex-direction: column;
	position: relative;
	z-index: 2;
	width: 25%;
}
#flow .flow_w .flow_i .num{
	width: 60px;
	height: 60px;
	align-items: center;
	justify-content: center;
	margin:0 auto 20px;
}
#flow .flow_w .flow_i .num span{
	display: block;
	text-align: center;
	line-height: 1;
}
#flow .flow_w .flow_i .num .en_num{
	font-size: 2.4rem;
	margin-top: 2px;
}
#flow .flow_w .flow_i .txtarea{}
#flow .flow_w .flow_i .txtarea h3{
	font-size: 2.0rem;
	font-weight: 500;
	text-align: center;
	margin-bottom: 10px;
}
#flow .flow_w .flow_i .txtarea .txt{
	text-align: center;
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
	#flow .flow_w .flow_i{
		width: 30%;
	}
	#flow .flow_w::before{
		width: 70%;
	}
}
@media screen and (max-width: 750px) {
	#flow{
		padding: 40px 0;
	}
	#flow .lead_txt{
		margin-bottom: 25px;
	}
	#flow .flow_w{
		gap: 25px;
	}
	#flow .flow_w .flow_i{
		flex-direction: unset;
		width: 100%;
		align-items: center;
	}
	#flow .flow_w .flow_i .num{
		margin: 0;
		flex-shrink: 0;
		margin-right: 20px;
		height: 75px;
	}
	#flow .flow_w .flow_i .txtarea h3{
		text-align: left;
		font-size: 1.6rem;
		font-weight: 600;
		margin-bottom: 5px;
	}
	#flow .flow_w .flow_i .txtarea .txt{
		text-align: left;
	}
	#flow .flow_w::before {
		content: "";
		height: 85%;
		width: 1px;
		background: var(--color-dark-blue);
		position: absolute;
		left: 30px;
		top: 30px;
		transform: translate(-50%, 0);
	}
}


#faq {
	padding: 50px 0;
}
.faq_i {
	border: 1px solid var(--color-light-grey);
	padding: 20px;
	margin-bottom: 10px;
	transition: 0.5s;
	background: #fff;
}
.faq_i .ico {
	background: var(--color-dark-blue);
	color: #fff;
	display: flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	margin-right: 20px;
	font-weight: 600;
	flex-shrink: 0;
}
.faq_i h3 {
	font-size: 1.6rem;
	margin-top: 5px;
	font-weight: 600;
}
.faq_i p {
	margin-top: 5px;
}
.faq_i .q {
	position: relative;
	cursor: pointer;
}
.faq_i .q:after {
	content: "×";
	font-size: 1.8rem;
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: rotate(45deg) translate(-10px, -50%);
	color: #333;
	transition: 0.5s;
}
.faq_i .q .flex{
	align-items: center;
}
.faq_i.open .q:after {
	top: 50%;
	right: 0px;
	transform: rotate(0) translate(0, -50%);
}
.faq_i .a {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e3e3e3;
	display: none;
}
.faq_i .a a{
	text-decoration: underline;
}
@media screen and (max-width: 750px) {
	#faq {
		padding: 40px 0 40px;
		position: relative;
	}
	.faq_i {
		padding: 3.5% 4%;
	}
	.faq_i .q .flex {
		padding-right: 30px;
	}
	.faq_i h3 {
		margin-top: 0;
		font-size: 1.4rem;
		line-height: 1.5;
	}
	.faq_i .ico {
		width: 30px;
		height: 30px;
		margin-right: 10px;
	}
}

#form{
	padding: 50px 0;
}
#form .contact_txt{
	text-align: center;
	margin-bottom: 40px;
}

	.cform {
		max-width: 600px;
		margin: 0 auto;
	}

	.field { margin-bottom: 40px; }

	.field__label {
		display: block;
		font-weight: 600;
		letter-spacing: .04em;
		margin-bottom: 14px;
		border-bottom: 1px solid var(--color-white);
		padding-bottom: 10px;
		color: var(--color-white);
	}
	.req {
		color: var(--color-yellow);
		font-size: 12px;
		vertical-align: super;
		margin-left: 2px;
	}

	/* 共通の下線インプット */
	.inp {
		width: 100%;
		border: 0;
		border-bottom: 1px solid var(--color-white);
		background: transparent;
		padding: 8px 2px;
		font: inherit;
		color: var(--color-white);
		outline: none;
		transition: border-color .2s;
	}
	.inp::placeholder { color: var(--color-white); }
	.inp:focus { border-color: var(--color-white); }

	/* 姓・名などの横並び */
	.row-2 {
		display: flex;
		gap: 28px;
	}
	.row-2 > * { flex: 1; }

	/* セレクト */
	.select-wrap { position: relative; }
	.select-wrap::after {
		content: "";
		position: absolute;
		right: 6px;
		top: 50%;
		width: 8px;
		height: 8px;
		border-right: 1.5px solid var(--color-white);
		border-bottom: 1.5px solid var(--color-white);
		transform: translateY(-70%) rotate(45deg);
		pointer-events: none;
	}
	select.inp {
		appearance: none;
		-webkit-appearance: none;
		padding-right: 24px;
		cursor: pointer;
		color: var(--placeholder);
	}
	select.inp:valid { color: var(--ink); }

	/* ===== ご住所グループ ===== */
	.addr {
		border-top: 1px solid var(--color-white);
		padding-top: 6px;
	}
	.addr__row {
		display: flex;
		align-items: center;
		gap: 16px;
		padding: 6px 0;
	}
	.addr__label {
		flex: 0 0 84px;
		font-size: 13px;
		letter-spacing: .04em;
	}
	.addr__row .inp { flex: 1; }
	.addr__row .select-wrap { flex: 1; }

	/* ===== テキストエリア ===== */
	.inp--area {
		border: 1px solid var(--color-white);
		min-height: 230px;
		padding: 12px;
		resize: vertical;
	}

	/* ===== チェックボックス ===== */
	.check {
		display: flex;
		align-items: center;
		gap: 12px;
		cursor: pointer;
		font-size: 14px;
		user-select: none;
		color: var(--color-white);
	}
	.check input { position: absolute; opacity: 0; }
	.check__box {
		flex: 0 0 22px;
		width: 22px;
		height: 22px;
		border: 1px solid #b5b5b5;
		position: relative;
		transition: border-color .2s;
	}
	.check input:checked + .check__box { border-color: var(--color-yellow); }
	.check input:checked + .check__box::after {
		content: "";
		position: absolute;
		left: 7px; top: 2px;
		width: 6px; height: 12px;
		border-right: 2px solid var(--color-yellow);
		border-bottom: 2px solid var(--color-yellow);
		transform: rotate(45deg);
	}

	/* ===== 送信ボタン ===== */
	.submit-wrap {
		display: flex;
		justify-content: center;
		margin: 48px 0 60px;
	}
	.btn-submit {
		min-width: 340px;
		padding: 24px;
		background: #fff;
		border: 1px solid var(--ink);
		color: var(--ink);
		font: inherit;
		font-weight: 700;
		letter-spacing: .08em;
		cursor: pointer;
		transition: background .25s, color .25s;
	}
	.btn-submit:hover {
		background: var(--ink);
		color: #fff;
	}

	/* ===== 補足 ===== */
	.note-block {
		text-align: center;
		line-height: 2;
	}
	.note-block a { color: var(--ink); font-weight: 700; text-decoration: none; }
	.note-block .tel { font-weight: 700; letter-spacing: .06em; }

	.notes {
		max-width: 600px;
		margin: 36px auto 0;
		font-size: 12px;
		color: #555;
		line-height: 1.9;
	}
	.notes p {
		margin: 0 0 4px;
		padding-left: 1.4em;
		text-indent: -1.4em;
	}

		.pill-group {
			display: flex;
			flex-wrap: wrap;
			gap: 12px;
		}
	
		.pill {
			display: inline-flex;
			cursor: pointer;
		}
	
		.pill input {
			position: absolute;
			opacity: 0;
			pointer-events: none;
		}
	
		.pill span {
			display: inline-block;
			padding: 10px 22px;
			border: 1px solid var(--color-white);
			border-radius: 999px;
			color: var(--color-white);
			font-size: 14px;
			line-height: 1;
			transition: border-color .2s, color .2s, background .2s;
		}
	
		.pill span:hover {
			border-color: var(--color-white);
		}
	
		.pill input:checked+span {
			border-color: var(--color-white);
			background: var(--color-white);
			color: var(--color-dark-blue);
		}
	
		.pill input:focus-visible+span {
			outline: 2px solid var(--color-dark-blue);
			outline-offset: 2px;
		}

	@media (max-width: 560px) {
		.row-2 { flex-direction: column; gap: 0; }
		.row-2 > * { margin-bottom: 18px; }
		.btn-submit { min-width: 0; width: 100%; }
		.addr__label { flex-basis: 64px; }
	}

#company{
	padding: 50px 0;
}
.company {
	max-width: 840px;
	margin: 0 auto;
}

.company__row {
	display: flex;
	align-items: center;
	padding: 15px 0;
}

.company__label {
	flex: 0 0 150px;
	font-weight: 500;
	letter-spacing: .08em;
	min-height: 40px;
	display: flex;
	flex-direction: column;
	text-align: left;
	justify-content: center;
}

.company__value {
	flex: 1;
	border-left: 1px solid var(--color-black);
	padding-left: 32px;
	letter-spacing: .04em;
	min-height: 40px;
	display: flex;
	flex-direction: column;
	text-align: left;
	justify-content: center;
}

.company__value .en {
	letter-spacing: .12em;
}

@media (max-width: 600px) {
	.company__row {
		align-items: flex-start;
		padding: 16px 0;
	}

	.company__label {
		flex-basis: 96px;
	}

	.company__value {
		padding-left: 18px;
	}
}

footer{
	text-align:center;
	padding: 15px;
	font-size: 1.2rem;
}
@media (max-width: 600px) {

}

@media (max-width: 600px) {
	.fixed_foot {
		position: fixed;
		width: 100%;
		padding: 10px;
		z-index: 999;
		bottom: 0;
		background: var(--color-white);
		transform: translateY(100%);
		transition: transform .3s;
		pointer-events: none;
	}

	.fixed_foot.is-show {
		transform: translateY(0);
		pointer-events: auto;
	}
}

.thanks #main_v {
    padding: 200px 0;
    text-align: center;
	background: none;
}

.thanks #main_v .icon {
    text-align: center;
    margin-bottom: 15px
}

.thanks #main_v .icon img {
    width: 40px
}

.thanks #main_v h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.thanks #main_v .btn_w {
    text-align: center;
    margin-top: 40px
}

.thanks #main_v .btn_w a,
.btn-return{
    display: inline-block;
    background: var(--color-dark-blue);
    padding: 10px 20px;
    width: 300px;
    box-sizing: border-box;
    color: #fff
}

@media screen and (max-width: 750px) {
    .thanks #main_v {
        padding:100px 0;
        text-align: center
    }
}

/* FV用：ロード時にふわっと */
.js-fade-load {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .8s ease, transform .8s ease;
	transition-delay: var(--fade-delay, 0s);
	will-change: opacity, transform;
}
.js-fade-load.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.js-fade-load {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* スクロールふわっと */
.js-fade {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .8s ease, transform .8s ease;
	transition-delay: var(--fade-delay, 0s);
	will-change: opacity, transform;
}

.js-fade.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.js-fade {
		opacity: 1;
		transform: none;
		transition: none;
	}
}