/* CSS Document */

/* ALL_setting
================================================== */
*{
	margin:0;
	padding:0;
	font-family: noto-sans-cjk-jp, serif;
	font-size: 16px;
}

html , body {
	min-height: 100%;
	height: auto;
	height: 100%;
	word-break: break-all;
}

#wrapper{
	width: 100%;
	min-height:100vh;
	position: relative;
}

img{
	vertical-align: top;
}

svg {
 overflow: visible;
}

.a_link{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.pc{ display: inherit!important; }
.sp{ display: none!important; }
@media screen and (max-width: 699px){
.pc{ display: none!important; }
.sp{ display: inherit!important; }
}

/* LOAD_setting
================================================== */

.load_fade_style1{
	opacity: 0;
}

.load_fade_style2{
	opacity: 0;
}

.load_fade_style3{
	opacity: 0;
}

.load_fade_ink_style1{
	opacity: 0;
}

.load_fade_ink_style1_2{
	opacity: 0;
}

.load_fade_ink_style2{
	opacity: 0;
}

.load_fade_ink_style2_2{
	opacity: 0;
}

.load_fade_scroll{
	opacity: 0;
}

.header_menu_fade{
	opacity: 0;
}

.header_menu_fade2{
	opacity: 0;
}

.header_menu_fade3{
	opacity: 0;
}

.load_fade_in_style1{
	animation-name:load_fade_style1;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
}

.load_fade_in_style2{
	animation-name:load_fade_style2;
	animation-delay: 0s;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
}

.load_fade_in_style3{
	animation-name:load_fade_style3;
	animation-delay: 1s;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
}

.load_fade_in_ink_style1{
	animation-name:drawer_ink_1;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
}

.load_fade_in_ink_style1_2{
	animation-name:drawer_ink_1;
	animation-delay: 0s;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}

.load_fade_in_ink_style2{
	animation-name:drawer_ink_2;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
}

.load_fade_in_ink_style2_2{
	animation-name:drawer_ink_2;
	animation-delay: 0s;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}

.header_menu_fade_style1{
	animation-name:header_menu_fade_1;
	animation-delay: 0s;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}

.header_menu_fade_style2{
	animation-name:header_menu_fade_2;
	animation-delay: 0s;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}

.header_menu_fade_style3{
	animation-name:header_menu_fade_3;
	animation-delay: 0s;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}

.header_scroll_fade_style1{
	animation-name:header_scroll_fade_1;
	animation-delay: 0s;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}


@keyframes load_fade_style1 {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes load_fade_style2 {
	0% {
		right: 18%;
		top: -10%;
		opacity: 0;
	}
	100% {
		right: 21%;
		
		opacity: 1;
	}
}

@keyframes load_fade_style3 {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes header_menu_fade_1 {
	0% {
		opacity: 0;
		transform:translate(-100px,-100px);
		
	}
	100% {
		opacity: 1;
		transform:translate(0px,0px);
	}
}

@keyframes header_menu_fade_2 {
	0% {
		opacity: 0;
		transform:translate(100px,-100px);
		
	}
	100% {
		opacity: 1;
		transform:translate(0px,0px);
	}
}

@keyframes header_menu_fade_3 {
	0% {
		opacity: 0;
		transform:translate(-100px,100px);
		
	}
	100% {
		opacity: 1;
		transform:translate(0px,0px);
	}
}

@keyframes header_scroll_fade_1 {
	0% {
		opacity: 0;
		transform:translate(0px,100px);
		
	}
	100% {
		opacity: 1;
		transform:translate(0px,0px);
	}
}


/* load_sp_setting
================================================== */

@media screen and (max-width: 699px){
	.load_fade_in_style2{
		animation-name:load_fade_style2_sp;
		animation-delay: 0s;
		animation-duration:1s;
		animation-fill-mode:forwards;
		opacity:0;
	}
}


@keyframes load_fade_style2_sp {
	0% {
		right: -12%;
		top: 8%;
		opacity: 0;
	}
	100% {
		right: -6%;
		top: 12%;
		opacity: 1;
	}
}

/* font_setting
================================================== */

.noto-sans{
font-family: noto-sans-cjk-jp, sans-serif;
}
.gotham_narrow{
font-family: gotham-narrow, sans-serif;
}

/* animation_setting
================================================== */
.animate_circle {
	animation: moveUpDown 2s infinite alternate ease-in-out;
}

@keyframes moveUpDown {
	0% {
		transform:translate(0px,0px);
	}
	100% {
		transform:translate(0px,15px);
	}
}

.scroll_fade_in{
	opacity: 0;
}

.scroll_fade_down{
	opacity: 0;
}

.fadein{
animation-name:fadeAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeAnime{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadedown{
animation-name:fadeDownAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-30px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

.ink_contents_fade_style1{
	opacity: 0;
}

.ink_c_fade_1{
	animation-name:ink_contents_fade_1;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes ink_contents_fade_1{
  from {
    opacity: 0;
	transform:translate(-100px,-50px);
  }

  to {
    opacity: 1;
	transform:translate(0px,0px);
  }
}

.ink_contents_fade_style2{
	opacity: 0;
}

.ink_c_fade_2{
	animation-name:ink_contents_fade_2;
	animation-delay: 0s;
	animation-duration:3s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes ink_contents_fade_2{
  from {
    opacity: 0;
	transform:translate(-200px,-50px);
  }

  to {
    opacity: 1;
	transform:translate(0px,0px);
  }
}

.ink_contents_fade_style3{
	opacity: 0;
}

.ink_c_fade_3{
	animation-name:ink_contents_fade_3;
	animation-delay: 0s;
	animation-duration:3s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes ink_contents_fade_3{
  from {
    opacity: 0;
	transform:translate(-300px,-50px);
  }

  to {
    opacity: 1;
	transform:translate(0px,0px);
  }
}

.ink_contents_fade_style4{
	opacity: 0;
}

.ink_c_fade_4{
	animation-name:ink_contents_fade_4;
	animation-delay: 0s;
	animation-duration:3s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes ink_contents_fade_4{
  from {
    opacity: 0;
	transform:translate(-400px,-50px);
  }

  to {
    opacity: 1;
	transform:translate(0px,0px);
  }
}

.ink_contents_fade_style5{
	opacity: 0;
}

.ink_c_fade_5{
	animation-name:ink_contents_fade_5;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes ink_contents_fade_5{
  from {
    opacity: 0;
	transform:translate(100px,-50px);
  }

  to {
    opacity: 1;
	transform:translate(0px,0px);
  }
}

.ink_contents_fade_style6{
	opacity: 0;
}

.ink_c_fade_6{
	animation-name:ink_contents_fade_6;
	animation-delay: 0s;
	animation-duration:3s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes ink_contents_fade_6{
  from {
    opacity: 0;
	transform:translate(200px,-50px);
  }

  to {
    opacity: 1;
	transform:translate(0px,0px);
  }
}

.ink_contents_fade_style7{
	opacity: 0;
}

.ink_c_fade_7{
	animation-name:ink_contents_fade_7;
	animation-delay: 0s;
	animation-duration:3s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes ink_contents_fade_7{
  from {
    opacity: 0;
	transform:translate(300px,-50px);
  }

  to {
    opacity: 1;
	transform:translate(0px,0px);
  }
}

.ink_contents_fade_style8{
	opacity: 0;
}

.ink_c_fade_8{
	animation-name:ink_contents_fade_8;
	animation-delay: 0s;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes ink_contents_fade_8{
  from {
    opacity: 0;
	transform:translate(400px,-50px);
  }

  to {
    opacity: 1;
	transform:translate(0px,0px);
  }
}


/* header_menu_setting
================================================== */
.header_menu_box{
	display: flex;
	align-items: center;
	position: relative;
	z-index: 9;
	box-sizing: border-box;
	padding: 24px 1.5% 0;
}

.header_menu_box2{
	display: flex;
	align-items: center;
	position: absolute;
	z-index: 10;
	top: 26px;
	right: 80px;
	background-color: white;
	padding: 10px 20px;
	border-radius: 30px;

}

.header_menu_bt{
	font-size: 0.8em;
	line-height: 1.2vw;
}

.header_menu_icon{
	width: 12px;
	height: 12px;
	padding-left: 6px;
}

.header_menu_logo{
	fill: #fff;
	width: 1.6%;
	min-width: 25px;
	padding-right: 6px;
}

.header_logo{
	font-family: gotham-narrow, sans-serif;
	font-size: 1.4em;
	line-height: 0.6vw;
	font-weight: 700;
	letter-spacing: 0.1em;
	vertical-align: middle;
	color: white;
}

.header_text{
	font-size: 0.8em;
	padding-left: 9%;
}

/* Contents_setting
================================================== */

.first_view_wrapper{
	width: 100%;
	height: 100vh;
	min-height: 100vh;
	padding: 0 0 6% 0;
	position: relative;
	overflow: hidden;
}

.contents_view_wrapper{
	width: 100%;
	height: 100vh;
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

.main_contents_wrapper{
	width: 100%;
	min-height: 100vh;
	background-color: #f5ebdd;
}

.logo_box_1{
	width: 30%;
	min-width: 480px;
	position: absolute;
	z-index: 9;
	top: 44%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.logo_style1{
	fill:#e8340c;
}

.logo_box_style1{
	width: 40%;
	margin: auto;
	padding: 0 0 8px 0;
}

.logo_box_style2{
	font-weight: 700;
	font-size: clamp(1.6rem, 1vw, 2.0rem);
	letter-spacing: 0.08em;
	text-align: center;
	white-space: nowrap;
}

.fv_bt_box{
	display: flex;
	align-items: center;
	position: absolute;
	z-index: 9;
	bottom: 14%;
	left: 2%;
	background-color: #0ce898;
	padding: 12px 25px;
	border-radius: 20px 2px 20px 20px;
}
.fv_bt_icon{
	width: 40px;
	padding-bottom: 3px;
	padding-right: 14px;
}

.fv_bt_text{
	font-size: 1.0em;
	line-height: 1vw;
	color: white;
}

.scroll_box{
	width: 10%;
	margin: auto;
	position: absolute;
	bottom: 14%;
	left: 45%;
	z-index: 9;
}

.scroll_text{
	font-family: gotham-narrow, sans-serif;
	font-size: 1.1vw;
	letter-spacing: 0.08em;
	text-align: center;
	padding-bottom: 3%;
}

.scroll_icon{
	width: 10px;
	margin: auto;
	fill:#e8340c;
}

.about_box_wrapper{
	width: 100%;
	padding: 0 0 5% 0;
	overflow: hidden;
	position: relative;
}

.about_box_style1{
	width: 60%;
	margin: auto;
	padding: 0% 0 5%;
}

.about_text_style1{
	padding: 1.5% 0 0 3%;
	position: relative;
	z-index: 1;
}

.about_text_style1 span{
	font-size: 1.6em;
	font-weight: 600;
	background: linear-gradient(transparent 70%, #e8d50c 50%);
}

.about_text_style2{
	padding: 1.5% 0 0 3%;
	font-size: 0.9em;
	line-height: 1.8em;
}

.about_text_style3{
	padding: 25px 0 5px;
}

.about_text_style3 span{
	color: white;
	background-color: black;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 1.0em;
	line-height: 2.5em;
}

.about_image_box_wrapper{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 2% 0 0 3%;
}

.about_image_box_style1{
	width: 30%;
	margin: 0 0 3% 0;
	height: 220px;
	background-color: white;
	border-radius: 30px;
	position: relative;
}

.about_image_box_style2{
	width: 5%;
	padding: 0 1.5%;
	box-sizing: border-box;
}

.about_image_box_number_text{
	position: absolute;
	z-index: 1;
	font-family: gotham-narrow, sans-serif;
	font-weight: 800;
	color: white;
	font-size: 1.8em;
	left: 16px;
	top: 4px;
}

.about_image_box_number{
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: 70px;
  clip-path: polygon(0 0%, 0% 0%, 45% 0%, 0% 100%);
  background-color: #b59b76;
  border-radius: 30px 0 0 0;
  z-index: 0;
}

.about_image_text_style1{
	text-align: center;
	font-size: 1vw;
	font-weight: 600;
	padding-top: 26px;
	position: relative;
	z-index: 1;
}

.about_image_text_style2{
	text-align: left;
	width: 80%;
	margin: auto;
	font-size: 0.8em;
	position: relative;
	z-index: 1;
	padding-top: 20px;
}

.about_image_text_style3{
	font-size: 0.8em;
	border: 1px solid #333;
	border-radius: 20px;
	text-align: center;
	padding: 10px 0;
	width: 80%;
	margin: 10px auto 0;
	position: relative;
}

.about_image_text_style3:hover{
	background-color: #0cbee8;
	color: white;
	border: 1px solid #0cbee8;
}

.title_box_style1{
	position: relative;
}

.title_style1{
	position: relative;
	z-index: 2;
	font-size: 1.8em;
	font-family: gotham-narrow, sans-serif;
	font-weight: 800;
	letter-spacing: 0.15vw;
	padding: 2.8% 0 0 3%;
}

.title_bg_style1{
	width: 8%;
	fill:#e8d50c;
	position: absolute;
	top: 0;
	z-index: 0;
	padding: 1% 0;
}

.title_bg_style2{
	width: 8%;
	fill:#0cbee8;
	position: absolute;
	top: 0;
	z-index: 0;
	padding: 1% 0;
}

.title_bg_style3{
	width: 8%;
	fill:#e8340c;
	position: absolute;
	top: 0;
	z-index: 0;
	padding: 1% 0;
}

.service_box_wrapper{
	width: 100%;
	padding: 0 0 5% 0;
	overflow: hidden;
	position: relative;
}

.service_box_style1{
	width: 60%;
	margin: auto;
	padding: 0% 0 5%;
}

.service_text_style1{
	padding: 1.5% 0 0 3%;
	font-size: 0.9em;
	line-height: 1.8em;
}

.service_image_box_wrapper{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	box-sizing: border-box;
	padding: 2% 0 0 1%;
}

.service_image_box_style1{
	width: 46%;
	box-sizing: border-box;
	margin: 0 2% 3%;
	background-color: #fff;
	border-radius: 30px;
	padding: 4% 3%;
}

.service_image{
	width: 15%;
	margin: auto;
}

.service_title{
	text-align: center;
	padding: 12px 0 0px;
	font-size: 1em;
}

.service_title_sub{
	font-family: gotham-narrow, sans-serif;
	font-size: 0.7em;
	line-height: 0.9em;
	color: #2f4475;
	text-align: center;
}

.service_text{
	padding: 10px 0 0 0;
	font-size: 0.8em;
	text-align: center;
}

.works_box_wrapper{
	width: 100%;
	padding: 0 0 4% 0;
	position: relative;
}

.works_box_style1{
	width: 60%;
	margin: auto;
	padding: 0% 0 5%;
}

.works_image_box_wrapper{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	box-sizing: border-box;
	padding: 2% 0 0 1%;
}

.works_image_box_style1{
	width: 50%;
	box-sizing: border-box;
	margin: 0 0% 3%;
	padding: 1% 3%;
}

.works_image_title{
	margin: 12px 0 8px;
}

.works_image_title span{
	background-color: #000;
	border-radius: 20px;
	font-size: 0.7em;
	color: white;
	padding: 1% 3%;
}

.works_image_text{
	font-size: 1em;
}

.contents_box_white{
	background-color: white;
	padding: 0% 0;
	width: 100%;
}

.profile_box_style1{
	width: 60%;
	margin: auto;
	padding: 0 0 50px 0;
}

.proile_text_style1{
	padding: 1.5% 0 0 3%;
	font-size: 0.9em;
	line-height: 1.8em;
}



.copyright_box{
	font-family: gotham-narrow, sans-serif;
	font-size: 0.9vw;
	line-height: 0.8vw;
	letter-spacing: 0.05em;
	text-align: center;
	padding: 30px 0 50px;
}

.thanks_wrapper{
	position: relative;
	z-index: 99;
	width: 60%;
	margin: auto;
	text-align: center;
	padding: 10% 0;
}

.thanks_title_1{
	font-size: 2em;
	font-weight: 600;
	padding:0 0 12px 0;
}

.thanks_text_box{
	font-size: 1.2em;
	line-height: 1.6em;
	padding:0 0 30px 0;
}

.thanks_bt{
	position: relative;
	width: 30%;
	margin: auto;
	border: 1px solid #000;
	border-radius: 30px;
	padding: 10px 10px 12px;
}

.thanks_bt:hover{
	background-color: #0cbee8;
	border: 1px solid #0cbee8;
	color: white;
}

/* ink_setting
================================================== */

.fv_pen_setting{
	width: 20%;
	min-width: 230px;
	position: absolute;
	right: 21%;
	top: -3%;
	z-index: 9;
}

.ink_1_setting{
	width: 20%;
	min-width: 300px;
	fill: #fff;
	position: absolute;
	z-index: 8;
	top: 42%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.ink_2_setting{
	width: 22%;
	min-width: 300px;
	fill:#0cbee8;
	position: absolute;
	z-index: 8;
	top: -12%;
	left: -3%;
}

.ink_3_setting{
	width: 20%;
	min-width: 300px;
	fill:#0ce898;
	position: absolute;
	z-index: 7;
	top: -5%;
	left: -8%;
}

.ink_4_setting{
	width: 11%;
	min-width: 150px;
	fill:#e8d50c;
	position: absolute;
	z-index: 6;
	top: -5%;
	left: -3%;
}

.ink_5_setting{
	width: 8%;
	min-width: 100px;
	fill:#0ce898;
	position: absolute;
	z-index: 9;
	top: 34%;
	left: 9%;
}

.ink_6_setting{
	width: 3%;
	fill:#e8340c;
	position: absolute;
	z-index: 8;
	top: 8%;
	left: 18%;
}

.ink_7_setting{
	width: 26%;
	fill:#e8d50c;
	position: absolute;
	z-index: 8;
	bottom: 2%;
	right: -9%;
}

.ink_8_setting{
	width: 18%;
	fill:#e8340c;
	position: absolute;
	z-index: 7;
	bottom: 8%;
	right: 3%;
}

.ink_9_setting{
	width: 32%;
	fill:#0cbee8;
	position: absolute;
	z-index: 6;
	bottom: 0%;
	right: 2%;
}

.ink_10_setting{
	width: 6%;
	fill:#0cbee8;
	position: absolute;
	z-index: 6;
	bottom: 15%;
	right: 34%;
}

.ink_11_setting{
	width: 5%;
	fill:#e8d50c;
	position: absolute;
	z-index: 6;
	bottom: 45%;
	right: 2%;
}


.about_ink_1_setting{
	width: 20%;
	position: absolute;
	fill:#e8340c;
	left: -4%;
	bottom: 15%;
	z-index: 8;
}

.about_ink_2_setting{
	width: 45%;
	position: absolute;
	fill:#e8d50c;
	left: -4%;
	bottom: 0%;
	z-index: 7;
}

.about_ink_3_setting{
	width: 15%;
	position: absolute;
	fill:#0cbee8;
	left: 34%;
	bottom: 3%;
	z-index: 6;
}

.about_ink_4_setting{
	width: 5%;
	position: absolute;
	fill:#0cbee8;
	left: 49%;
	bottom: 0%;
	z-index: 6;
}

.service_ink_1_setting{
	width: 20%;
	position: absolute;
	fill:#e8d50c;
	right: -4%;
	bottom: 15%;
	z-index: 8;
}

.service_ink_2_setting{
	width: 45%;
	position: absolute;
	fill:#0cbee8;
	right: -4%;
	bottom: 0%;
	z-index: 7;
}

.service_ink_3_setting{
	width: 15%;
	position: absolute;
	fill:#e8340c;
	right: 34%;
	bottom: 3%;
	z-index: 6;
}

.service_ink_4_setting{
	width: 5%;
	position: absolute;
	fill:#e8340c;
	right: 49%;
	bottom: 0%;
	z-index: 6;
}

.works_nami_setting{
	position: absolute;
	fill:#fff;
	bottom: -3%;
	width: 100%;
}

/* contact_setting
================================================== */

.contact_box_style1{
	width: 60%;
	margin: auto;
}

.contact_text_style1{
	padding: 1.5% 0 0 3%;
	font-size: 0.9em;
	line-height: 1.8em;
}

.contact_form_box_wrapper{
	padding: 1.5% 0 0 3%;
	display: flex;
	flex-wrap: wrap;
}

.contact_form_box_wrapper form{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.contact_form_border{
	width: 100%;
	height: 1px;
	background-color: #ccc;
}

.contact_form_box_style1{
	width: 100%;
	box-sizing: border-box;
	padding: 15px 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.contact_form_box_style1_2{
	width: 100%;
	box-sizing: border-box;
	padding: 15px 40px;
	display: flex;
	flex-wrap: wrap;
}

.contact_form_text_style1{
	width: 30%;
	box-sizing: border-box;
}

.contact_form_text_style1 span{
	font-size: 0.8em;
	color: orange;
}

.contact_form_box_style2{
    background: #FFFFFF;
    border-bottom: 1px solid #EEEEEE;
    border-left: 1px solid #EEEEEE;
    border-radius: 4px;
    border-right: 1px solid #EEEEEE;
    border-top: 1px solid #EEEEEE;
    box-shadow: none;
    color: #333333;
    flex: 1;
    font-family: var(--s-font-0f9a4647);
    font-size: 15px;
    font-weight: 400;
    height: 50px;
    justify-content: center;
    letter-spacing: 0em;
    line-height: 1.4;
    margin: 0px 0px 0px 0px;
    opacity: 1;
    padding: 2px 16px;
    text-align: left;
    width: auto;
    max-width: 100%;
}

.contact_form_box_style3{
    background: #FFFFFF;
    border-bottom: 1px solid #EEEEEE;
    border-left: 1px solid #EEEEEE;
    border-radius: 4px;
    border-right: 1px solid #EEEEEE;
    border-top: 1px solid #EEEEEE;
    box-shadow: none;
    color: #333333;
    flex: 1;
    font-family: var(--s-font-0f9a4647);
    font-size: 15px;
    font-weight: 400;
    height: 150px;
    justify-content: center;
    letter-spacing: 0em;
    line-height: 1.4;
    margin: 0px 0px 0px 0px;
    opacity: 1;
    padding: 2px 16px;
    text-align: left;
    width: auto;
    max-width: 100%;
}

.contact_radio_box input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 2rem;
  height: 2rem;
  border: 2px solid #cccccc;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  margin-right: 10px;
  position: relative;
  padding: 0;
}
.contact_radio_box input[type="radio"]:checked {
  border-color: #00bdc7;
}
.contact_radio_box input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: #00bdc7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.contact_radio_box label {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 10px;
  cursor: pointer;
}

@media (hover: hover){
  .contact_radio_box label:hover{
    opacity: 0.5;
  }
}

.contact_button{
    background-color: #0ce898;
    color: white;
    border-style: none;
    border-radius: 30px;
	text-align: center;
	width: 60%;
	padding: 15px;
	margin: 15px auto;
	cursor: pointer;
}


/* tablet_Setting
================================================== */

@media screen and (max-width: 1279px){

	.about_box_style1,.service_box_style1,.works_box_style1,.profile_box_style1,.contact_box_style1{
		width: 86%;
		margin: auto;
	}

	.ink_5_setting{
		width: 8%;
		min-width: 100px;
		fill:#0ce898;
		position: absolute;
		top: 220px;
		left: 11%;
	}

	.ink_6_setting{
		width: 3%;
		fill:#e8340c;
		position: absolute;
		top: 70px;
		left: 24%;
	}

	.about_image_text_style1{
		text-align: center;
		font-size: 1.0em;
		font-weight: 600;
		padding-top: 26px;
		position: relative;
		z-index: 1;
	}

}


/* Smartphone_Setting
================================================== */

@media screen and (max-width: 699px){
	.header_menu_box{
		display: flex;
		align-items: center;
		position: relative;
		z-index: 9;
		box-sizing: border-box;
		padding: 0% 3% 0;
		top: 2%;
	}

	.header_menu_box2{
		display: flex;
		align-items: center;
		position: absolute;
		z-index: 9;
		top: 2%;
		right: 15%;
		background-color: white;
		padding: 2.5% 3%;
		border-radius: 30px;

	}

	.header_menu_bt{
		font-size: 2.2vw;
		line-height: 1.2vw;
	}

	.header_menu_icon{
		width: 8px;
		height: 8px;
		padding-left: 6px;
	}

	.header_menu_logo{
		fill: #fff;
		width: 6.2%;
		padding-right: 4px;
	}

	.header_logo{
		font-family: gotham-narrow, sans-serif;
		font-size: 3.4vw;
		line-height: 0.6vw;
		font-weight: 700;
		letter-spacing: 0.1em;
		vertical-align: middle;
		color: white;
	}

	.header_text{
		font-size: 2.0vw;
		padding-left: 9%;
	}

	.logo_box_1{
		width: 90%;
		min-width: auto;
		position: absolute;
		z-index: 9;
		top: 44%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	.logo_box_style1{
		width: 40%;
		max-width: 240px;
		margin: auto;
		padding: 0 0 8px 0;
	}

	.logo_box_style2{
		font-weight: 700;
		font-size: 3.5vw;
		letter-spacing: 0.08em;
		text-align: center;
		white-space: nowrap;
	}

	.scroll_box{
		width: 10%;
		margin: auto;
		position: absolute;
		bottom: 25%;
		left: 45%;
		z-index: 9;
	}

	.scroll_text{
		font-family: gotham-narrow, sans-serif;
		font-size: 3.4vw;
		letter-spacing: 0.08em;
		text-align: center;
		padding-bottom: 3%;
	}

	.scroll_icon{
		width: 10px;
		margin: auto;
		fill:#e8340c;
	}

	.fv_bt_box{
		display: flex;
		align-items: center;
		position: absolute;
		z-index: 9;
		bottom: 16%;
		left: 4%;
		background-color: #0ce898;
		padding: 10px 20px;
		border-radius: 20px 2px 20px 20px;
	}
	
	.title_bg_style1{
		width: 16%;
		fill:#e8d50c;
		position: absolute;
		top: 0;
		z-index: 1;
	}
	
	.ink_1_setting,.ink_2_setting,.ink_3_setting,.ink_4_setting,.ink_5_setting,.ink_6_setting,.ink_7_setting,.ink_8_setting,.ink_9_setting,.ink_10_setting,.ink_11_setting{
		min-width: auto;
	}



	.about_box_style1,.service_box_style1,.works_box_style1,.profile_box_style1,.contact_box_style1{
		width: 86%;
		margin: auto;
	}
	
	.profile_box_style1{
		padding: 30px 0 30px 0;
	}
	
	.title_style1{
		position: relative;
		z-index: 2;
		font-size: 5.0vw;
		font-family: gotham-narrow, sans-serif;
		font-weight: 800;
		letter-spacing: 0.15vw;
		padding: 4% 0 0 4%;
	}
	
	.title_bg_style1,.title_bg_style2,.title_bg_style3{
		width: 12%;
	}
	
	.about_text_style1 span{
		font-size: 3.8vw;
		font-weight: 600;
		background: linear-gradient(transparent 70%, #e8d50c 50%);
	}
	

	.about_text_style2{
		padding: 2% 0 0 3%;
		font-size: 2.8vw;
		line-height: 4.4vw;
	}
	
	.about_text_style3{
		padding: 20px 0 12px;
	}

	.about_text_style3 span{
		color: white;
		background-color: black;
		padding: 5px 15px;
		border-radius: 20px;
		font-size: 2.4vw;
		line-height: 1.6vw;
	}

	.about_image_text_style1{
		text-align: center;
		font-size: 2.6vw;
		font-weight: 600;
		padding-top: 36px;
		position: relative;
		z-index: 1;
	}

	.about_image_text_style2{
		text-align: left;
		width: 84%;
		margin: auto;
		font-size: 2.2vw;
		position: relative;
		z-index: 1;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.about_image_text_style3{
		font-size: 2.0vw;
		border: 1px solid #333;
		border-radius: 20px;
		text-align: center;
		padding: 10px 0;
		width: 80%;
		margin: 10px auto 0;
	}

	.fv_bt_icon{
		width: 30px;
		padding-bottom: 3px;
		padding-right: 10px;
	}

	.fv_bt_text{
		font-size: 2.5vw;
		line-height: 3vw;
		color: white;
	}

	.about_image_box_style1{
		width: 46%;
		margin: 0 2% 4% 2%;
		padding: 0 0 5% 0;
		height: auto;
		background-color: white;
		border-radius: 20px;
		position: relative;
	}

	.about_image_box_style2{
		display: none;
	}
	
	.about_image_box_number_text{
		position: absolute;
		z-index: 1;
		font-family: gotham-narrow, sans-serif;
		font-weight: 800;
		color: white;
		font-size: 3vw;
		left: 13px;
		top: 8px;
	}
	
	.about_image_box_number{
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 70%;
	  height: 50px;
	  clip-path: polygon(0 0%, 0% 0%, 45% 0%, 0% 100%);
	  background-color: #b59b76;
	  border-radius: 20px 0 0 0;
	  z-index: 0;
	}
	
	.about_image_box_wrapper{
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		padding: 3% 0 0 1%;
	}

	.about_box_wrapper{
		width: 100%;
		padding: 0 0 20% 0;
		overflow: hidden;
		position: relative;
	}

	.service_box_wrapper{
		width: 100%;
		padding: 0 0 20% 0;
		overflow: hidden;
		position: relative;
	}

	.service_text_style1{
		padding: 4% 0 2% 3%;
		font-size: 2.8vw;
		line-height: 4.4vw;
	}
	
	.service_image_box_style1{
		width: 96%;
		box-sizing: border-box;
		margin: 0 3% 3%;
		background-color: #fff;
		border-radius: 20px;
		padding: 6% 3%;
	}

	.service_title{
		text-align: center;
		padding: 8px 0 0px;
		font-size: 3.4vw;
	}

	.service_title_sub{
		font-family: gotham-narrow, sans-serif;
		font-size: 2.0vw;
		line-height: 1.8vw;
		color: #2f4475;
		text-align: center;
	}

	.service_text{
		padding: 10px 0 0 0;
		font-size: 2.8vw;
		text-align: center;
	}
	
	.works_image_box_style1{
		width: 100%;
		box-sizing: border-box;
		margin: 0 0% 3%;
		padding: 1% 3%;
	}

	.works_image_title{
		margin: 2.5% 0 6px;
	}

	.works_image_title span{
		background-color: #000;
		border-radius: 20px;
		font-size: 2.2vw;
		color: white;
		padding: 1% 3%;
	}

	.works_image_text{
		font-size: 3.0vw;
	}

	.proile_text_style1{
		padding: 3% 0 0 3%;
		font-size: 2.8vw;
		line-height: 4.4vw;
	}
	
	.contact_text_style1{
		padding: 3% 0 6px 3%;
		font-size: 2.8vw;
		line-height: 4.4vw;
	}

	.contact_form_box_style1{
		width: 100%;
		box-sizing: border-box;
		padding: 15px 0px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.contact_form_box_style1_2{
		width: 100%;
		box-sizing: border-box;
		padding: 15px 0px;
		display: flex;
		flex-wrap: wrap;
	}

	.contact_form_text_style1{
		width: 36%;
		font-size: 2.8vw;
		line-height: 4.4vw;
		padding-right: 10px;
		box-sizing: border-box;
	}

	.contact_form_box_style2{
		background: #FFFFFF;
		border-bottom: 1px solid #EEEEEE;
		border-left: 1px solid #EEEEEE;
		border-radius: 4px;
		border-right: 1px solid #EEEEEE;
		border-top: 1px solid #EEEEEE;
		box-shadow: none;
		color: #333333;
		flex: 1;
		font-family: var(--s-font-0f9a4647);
		font-size: 2.6vw;
		font-weight: 400;
		height: 40px;
		justify-content: center;
		letter-spacing: 0em;
		line-height: 1.4;
		margin: 0px 0px 0px 0px;
		opacity: 1;
		padding: 2px 12px;
		text-align: left;
		width: auto;
		max-width: 100%;
	}

	.copyright_box{
		font-family: gotham-narrow, sans-serif;
		font-size: 2.8vw;
		line-height: 4.4vw;
		letter-spacing: 0.05em;
		text-align: center;
		padding: 30px 0 50px;
	}

	.fv_pen_setting{
		width: 42%;
		min-width: auto;
		position: absolute;
		right: -6%;
		top: 12%;
	}

	.ink_1_setting{
		width: 60%;
		fill: #fff;
		position: absolute;
		z-index: 8;
		top: 42%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	.ink_2_setting{
		width: 42%;
		fill:#0cbee8;
		position: absolute;
		z-index: 8;
		top: -4%;
		left: -6%;
	}

	.ink_3_setting{
		width: 30%;
		fill:#0ce898;
		position: absolute;
		z-index: 7;
		top: 4%;
		left: -8%;
	}

	.ink_4_setting{
		width: 24%;
		fill:#e8d50c;
		position: absolute;
		z-index: 6;
		top: 2%;
		left: -5%;
	}

	.ink_5_setting{
		width: 16%;
		fill:#0ce898;
		position: absolute;
		z-index: 9;
		top: 16%;
		left: 18%;
	}

	.ink_6_setting{
		width: 4%;
		fill:#e8340c;
		position: absolute;
		z-index: 8;
		top: 10%;
		left: 35%;
	}

	.ink_7_setting{
		width: 52%;
		fill:#e8d50c;
		position: absolute;
		z-index: 8;
		bottom: 2%;
		right: -20%;
	}

	.ink_8_setting{
		width: 30%;
		fill:#e8340c;
		position: absolute;
		z-index: 7;
		bottom: 8%;
		right: 8%;
	}

	.ink_9_setting{
		width: 56%;
		fill:#0cbee8;
		position: absolute;
		z-index: 6;
		bottom: 0%;
		right: 2%;
	}

	.ink_10_setting{
		width: 12%;
		fill:#0cbee8;
		position: absolute;
		z-index: 6;
		bottom: 6%;
		right: 58%;
	}

	.ink_11_setting{
		width: 10%;
		fill:#e8d50c;
		position: absolute;
		z-index: 6;
		bottom: 30%;
		right: 2%;
	}


	.about_ink_1_setting{
		width: 30%;
		position: absolute;
		fill:#e8340c;
		left: -4%;
		bottom: 7%;
		z-index: 8;
	}

	.about_ink_2_setting{
		width: 72%;
		position: absolute;
		fill:#e8d50c;
		left: -4%;
		bottom: 0%;
		z-index: 7;
	}

	.about_ink_3_setting{
		width: 28%;
		position: absolute;
		fill:#0cbee8;
		left: 50%;
		bottom: 2%;
		z-index: 6;
	}

	.about_ink_4_setting{
		width: 8%;
		position: absolute;
		fill:#0cbee8;
		left: 78%;
		bottom: 0%;
		z-index: 6;
	}

	.service_ink_1_setting{
		width: 30%;
		position: absolute;
		fill:#e8d50c;
		right: -4%;
		bottom: 7%;
		z-index: 8;
	}

	.service_ink_2_setting{
		width: 72%;
		position: absolute;
		fill:#0cbee8;
		right: -4%;
		bottom: 0%;
		z-index: 7;
	}

	.service_ink_3_setting{
		width: 28%;
		position: absolute;
		fill:#e8340c;
		right: 50%;
		bottom: 2%;
		z-index: 6;
	}

	.service_ink_4_setting{
		width: 8%;
		position: absolute;
		fill:#e8340c;
		right: 78%;
		bottom: 0%;
		z-index: 6;
	}

	.works_nami_setting{
		position: absolute;
		fill:#fff;
		bottom: -3%;
		width: 100%;
	}
	
	.contact_radio_box label {
	  display: flex;
	  align-items: center;
	  line-height: 1;
	  margin-bottom: 10px;
	  cursor: pointer;
	  font-size: 3vw;
	}

	.contact_radio_box input[type="radio"] {
	  appearance: none;
	  -webkit-appearance: none;
	  -moz-appearance: none;
	  width: 1.5rem;
	  height: 1.5rem;
	  border: 2px solid #cccccc;
	  border-radius: 50%;
	  outline: none;
	  cursor: pointer;
	  margin-right: 10px;
	  position: relative;
	  padding: 0;
	}
	.contact_form_box_style3{
		background: #FFFFFF;
		border-bottom: 1px solid #EEEEEE;
		border-left: 1px solid #EEEEEE;
		border-radius: 4px;
		border-right: 1px solid #EEEEEE;
		border-top: 1px solid #EEEEEE;
		box-shadow: none;
		color: #333333;
		flex: 1;
		font-family: var(--s-font-0f9a4647);
		font-size: 3vw;
		font-weight: 400;
		height: 150px;
		justify-content: center;
		letter-spacing: 0em;
		line-height: 1.4;
		margin: 0px 0px 0px 0px;
		opacity: 1;
		padding: 10px 16px;
		text-align: left;
		width: auto;
		max-width: 100%;
	}
	
	.thanks_wrapper{
		position: relative;
		z-index: 99;
		width: 86%;
		margin: auto;
		text-align: center;
		padding: 200px 0 10%;
	}

	.thanks_title_1{
		font-size: 5vw;
		font-weight: 600;
		padding:0 0 12px 0;
	}

	.thanks_text_box{
		font-size: 3.5vw;
		line-height: 6.5vw;
		padding:0 0 30px 0;
	}

	.thanks_bt{
		position: relative;
		width: 60%;
		margin: auto;
		border: 1px solid #000;
		border-radius: 30px;
		padding: 10px 10px 12px;
		font-size: 3.5vw;
	}

}















