﻿
/* =====================
  common - pc
===================== */
html {
	font-size: 62.5%; /* sets the base font to 10px for easier math */
}
#fba { 
	overflow: hidden;
	margin: 0 0 60px;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
  line-height: 2;
}
#fba.entry{ 
  padding-top: 80px;
}
#fba_index {
	font-size: 20px;
	font-size: 2.0rem;  
	padding-top: 80px;
	letter-spacing: 0.05em;
	font-weight: 700;
}
#fba * img {
	width: auto;
}
.ttl {
	color: #ffffff;
	font-weight: 700;
	margin: 0 0 1.2rem;
}
.en {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
}
.en-ttl {
	font-size: 24px;
	font-size: 2.4rem;
}
.pc_cont {display: block;}
.tb_cont {display: none;}
.sp_cont {display: none;}
a {text-decoration: none;}

/* fadein
------------------------*/
/* 画面外にいる状態 */
.fadein {
	/* opacity : 0.1; */
	transform : translate(0, 50px);
	transition : all 500ms;
}
/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
/* // end of common */






/* =====================
  header - pc
===================== */
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-color: #ffffff;
	z-index: 11;
}
.header_inner{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.logo{
	width: 100%;
	max-width: 260px;
}
.logo img {
	max-width: 221px;
}

/* header > gNav
------------------------*/
.gNav{
	width: 100%;
	max-width: 720px;
}
.menu{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.menu>* {
	color: #000000;
}
.menu>*:hover {
	cursor: pointer;
}
.all_menu_items{
	position:relative;
	font-size: 14px;
	padding: 16px 0;
}

.all_menu_items:nth-child(n + 11) {
	border: none;
	padding: 0 0 0 7.2px;
}
.all_menu_items a {
	color: #282828;
	font-weight: 400;
	transition: .3s;
}
.memu_item-btn{
	margin-left: 0px;
}
.memu_item-btn a{
	padding: 7px 20px 6px;
	color: #fff;
	line-height: 1;
	background-color: #ca161e;
	border-radius: 3px;
	font-size: 16px;
}
.memu_item-btn a:hover {
	opacity: .8;
	text-decoration: none;
}
.menu-trigger{
	display: none;
}
.all_menu_items {
	font-weight: normal;
}
#form_btn {
	color: #ffffff;
}
.submenu-sp {
	display: none;
	overflow: hidden;
	height: 0px;
	width: 100%;
	background-color: #F2F2F2;
	transition: .3s;
}
.parent-items {
	transition: .3s;
}
.menu-divider {
	width: 1px;
	height: 100%;
	background-color: #D2D2D2;
	overflow: hidden;
}
#down-sidemenu {
	text-align: center;
	position: relative;
	display: block;
	padding: 0px;
	height: 0px;
	font-size: 14px;
	font-weight: normal;
	overflow: hidden;
	opacity: 0;
	background-color: #F2F2F2;
	transition: .3s;
	-webkit-box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2);
	box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2);
}
#down-sidemenu a {
	padding: 20px;
	color: #000000;
	transition: .3s;
}
#down-sidemenu a:hover {
	color: #CA161E;
}
.sidemenu-wrap {
	position: absolute;
    left: 50%;
	bottom: 30%;
    transform: translateX(-50%);
	opacity: 0;
	transition: .3s;
}
.menu-icon {
	position: absolute;
	float: right;
	right: 20px;
}
.menu-plus {
	opacity: 1;
	color: #606060;
}
.menu-minus {
	opacity: 0;
}

@media screen and (min-width: 769px) {
	.all_menu_items:nth-child(-n+10):after {
		position: absolute;
		bottom: 8px;
		left: 0;
		content: '';
		width: 100%;
		height: 3px;
		background: #CA161E;
		transform: scale(0, 1);
		transform-origin: left top;
		transition: transform .3s;
	}
	.all_menu_items:hover:after {
		transform: scale(1, 1);
	}
	#header-wrapper {
		-webkit-box-shadow: 0 0px 8px 1px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0px 8px 1px rgba(0,0,0,0.2);
    box-shadow: 0 0px 8px 1px rgba(0,0,0,0.2);
	}
	.menu-icon {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	#down-sidemenu {
		display: none;
	}
	.menu-divider {
		display: none;
	}
	.submenu-sp {
		display: inline;
	}
	.prmenu-on {
		color: #FFFFFF;
		background-color: #CA161E;
	}
	.submenu-on {
		height: 110px;
	}
	.menu>* {
		width: 100%;
	}
	.all_menu_items{
		border-right: none;
		margin: 0;
		width: 100%;
		padding: .5em 0;
		font-size: 18px;
		text-align: center;
		border-bottom: 1px solid #eaeaea;
	}
	/*.all_menu_items:nth-child(n + 5) {
		padding: .5em 0;
	}*/
	.all_menu_items a {
		width: 100%;
		display: block;
	}
}
/* // end of header */


/* =====================
  #main - pc
===================== */
#main {
	line-height: 1.2;
	background-image: url("../image/main_bg-l.jpg"), url("../image/main_bg-r.jpg");
	background-repeat: no-repeat, no-repeat;
	background-position: left center, right center;
	background-size: contain;
}
.main_ttl {
	width: 900px;
	position: relative;
	margin: 0 auto;
	background-color: rgba(255,255,255,0.8);
	padding: 5% 0;
	transform: skewX(-25deg);
}
.main_ttl::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 2%;
    width: 900px;
    height: 100%;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.8);
    padding: 5% 0;
}
.main_ttl_inner {
	transform: skewX(25deg);
}
.main_ttl h1 {
	font-size: 44px;
	font-size: 4.5rem;
	color: #232f3e;
}
.main_ttl h2 {
	font-size: 55px;
	font-size: 5.5rem;
	background-color: #ca161e;
    display: inline-block;
    padding: 0.6% 1% 0.8%;
}
#main .main_list {
	display: flex;
	max-width: 700px;
    margin: 2% auto;
	flex-wrap: wrap;
    justify-content: space-around;
}
#main .main_list_inner{
	color: #ffffff;
	text-align: left;
	margin:  0 auto;
	line-height: 2;
	display: inline-block;
}
#main .main_list_inner .fa-check-square {
	color: #ffa200;
}
#main .main_list_inner .list_item {
	color: #232f3e;
}
.marker{
	background: linear-gradient(transparent 50%, #fbf288 50%);
	color: #ca161e;
}
/* // end of main */


/* =====================
  #outline - pc
===================== */
#outline {
	background-color: #232f3e;
}
.outline_ttl {
	margin: 0 0 80px;
	padding: 60px 0 0;
	color: #ffffff;
}
.outline_ttl h2 {
	color: #232f3e;
	background-color: #ffffff;
	border-radius: 50px;
	width: 440px;
	margin: 0 auto 30px;
    padding: 1.0rem;
	line-height: 1.2;
	font-weight: 700;
}
.outline_ttl h3 {
	font-size: 35px;
	font-size: 3.5rem;
	margin: 0 0 40px;
	font-weight: 700;
	line-height: 1.6;
}
.ttl-big {
	font-size: 62px;
	font-size: 6.2rem;
}
.txt-amazon {
	color: #ffa200;
}
.txt-tsutaya {
	color: #ffd200;
}

/* 追加 */
#outline .main_list {
	margin: 0 auto 120px;
}
#outline .main_list_inner{
	max-width: 900px;
	display: flex;
	flex-flow: wrap;
	justify-content: space-around;
    margin: 0 auto;
	padding: 0 0 5%;
}
#outline .list_item {
	background-color: #ffffff;
	width: 230px;
	height: 230px;
	border-radius: 50%;
	position: relative;
}
#outline .list_txt {
	width: 230px;
	text-align: center;
	position: absolute;
	bottom: 12%;
	font-size: 28px;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.4;
	color: #232f3e;
}
#outline .list_txt span {
	font-size: 14px;
	font-size: 1.4rem;
}

.outline_item {
	width: 900px;
	margin: 0 auto;
	background-color: #f8f8f8;
	border-radius: 10px;
	position: relative;
	padding: 165px 0 60px;
	color: #232f3e;
	filter: drop-shadow(7px 7px 0 rgba(20,28,38,1));
}
.outline_item img {
	position: absolute;
    top: -14%;
    left: 50%;
    transform: translateX(-50%);
}
.outline_item h4 {
	font-size: 30px;
	font-size: 3.0rem;
	margin: 0 0 30px;
	font-weight: 700;
}
.outline_item p {
	font-size: 18px;
	font-size: 1.8rem;
}
.bg-arrow {
	width: 0;
    margin: 8% 0 0;
    border-right: 50vw solid transparent;
    border-bottom: 6vw solid #eaeaea;
    border-left: 50vw solid transparent;
}
/* // end of outline */


/* =====================
  #flow - pc
===================== */
#flow {
	background-color: #eaeaea;
}
#flow h2, #service h2, #contact h2 {
	color: #232f3e;
	font-size: 52px;
	font-size: 5.2rem;
	font-weight: 700;
	padding: 60px 0;
	line-height: 1.2;
}
#flow h2 {
	padding:  0 0 60px;
}
.flow_txt {
	color: #232f3e;
}
.flowCont {
	width: 1000px;
	margin: 0 auto;
	padding: 0 0 8%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flow_item {
	background-color: #ffffff;
	width: 480px;
	margin: 80px 0 0;
	padding: 40px 30px 0;
	position: relative;
}
.flow_item .en {
	color: #ff8400;
	font-size: 17px;
	font-size: 1.7rem;
	line-height: 1;
	position: absolute;
	top: -10%;
    left: 5%;
}
.flow_item .en .en-number {
	font-size: 45px;
	font-size: 4.5rem;
}
.flow_item_inner {
	color: #232f3e;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	text-align: left;
}
.flow_item_inner img {
	max-height: 180px;
    width: auto;
	margin: 0 0 40px;
}
.flow_item_txt {
	width: 52%;
	line-height: 1.5;
}
.flow_item_txt h3 {
	font-size: 26px;
	font-size: 2.6rem;
	font-weight: 700;
	text-align: left;
	margin:  0 0 5%;
	line-height: 1.5;
}
.flow_item_txt p {
	font-size: 15px;
	font-size: 1.5rem;
	margin: 0 0 5%;
}
.flow_item_txt .point {
	background-color: #ff8400;
	color: #ffffff;
	font-size: 14px;
	font-size: 1.4rem;
    padding: 5% 0 5% 5%;
}
/* // end of flow */


/* =====================
  #service - pc
===================== */
#fba #service {
	background-color: #ffa200;
	padding: 0 0 8%;
	color: #232f3e;
}
.service_item {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 4% 50px;
	width: 1000px;
	margin: 0 auto 6%;
	filter: drop-shadow(7px 7px 0 rgba(255,132,0,1));
}
.service_item h3 {
	font-size: 3.6rem;
	font-weight: 700;
	color: #ff8400;
	margin: 0 0 4%;
	line-height: 1.2;
}
.service_item img {
	margin: 4% 0;
}
.service_item:last-child {
	background-color: #ffa200;
	border: #ffffff 2px solid;
	box-sizing: border-box;
	color: #ffffff;
	margin: 0 auto;
	filter: none;
}
.service_item:last-child h4 {
	font-size: 30px;
	font-size: 3.0rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 2%;
}
.service_item:last-child p {
	font-size: 18px;
	font-size: 1.8rem;
}
.area_list {
	max-width: 610px;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
    margin: 0 auto;
}
.area_list_item {
	background-color: #ff8400;
	color: #ffffff;
	border-radius: 10px;
	width: 280px;
	font-size: 30px;
	font-size: 3.0rem;
	line-height: 1;
	padding: 4%;
    margin: 5% 0 0;
}
.area_list_item span {
	font-size: 16px;
	font-size: 1.6rem;
}
.service_item table {
	width: 900px;
	font-size: 18px;
	font-size: 1.8rem;
	margin: 0 0 3%;
}
.service_item th {
	width: 20%;
	background-color: #ffa200;
	color: #ffffff;
	text-align: center;
	padding: 1%;
	font-weight: 700;
}
.service_item td {
	width: 20%;
	padding: 1%;
}
.service_item tr:nth-child(odd) td {
	background-color: #fff7ea;
}
.note {
	font-size: 14px;
	font-size: 1.4rem;	
}
.note-left {
	text-align: left;
}
/* // end of service */


/* =====================
  #contact - pc
===================== */
#contact {
	background-color: #fff;
	color: #232f3e;
}

/* contact > form_box
------------------------*/
#fba #fba_index #form_box {
    margin: 0 auto 5%;
    padding:4% 5% 5%;
    width: 100%;
	max-width: 1000px;
	background-color:#fff;
	border:30px solid #dcdcdc;
}
#fba #fba_index #form_box table {
    margin: 0 auto;
    width: 100%;
}
#fba #fba_index #form_box table th {
    padding: 1% 2%;
    text-align: left;
    width: 30%;
	font-weight:bold;
	font-size:16px;
}
#fba #fba_index #form_box table td {
    padding: 2% 3%;
    text-align: left;
    width: 70%;
}
#fba #fba_index #form_box table td input {
    border: 1px solid #ccc;
    padding: 1%;
    width: 100%;
	border-radius: 0;
	font-size: 18px;
	font-weight: normal;
}
#fba #fba_index #form_box table td textarea {
    border: 1px solid #ccc;
    height: 300px;
    padding: 10px;
    width: 100%;
	border-radius: 0;
	font-size: 18px;
	font-weight: normal;
}
.txtC{
	text-align: center;
}
.txtC-first{
	margin-bottom: 5px;
}
.must_com {
	margin: 0;
	color:#fff;
	padding:2px 10px;
	background-color:#c90914;
	border-radius:5px;
	border:1px solid #c90914;
	font-size:12px;
	display: inline-block;
	box-sizing: border-box;
}
#privacy {
    margin: 2% auto 3%;
	width:94%;
}
#privacy .priv_inner {
    background-color: #fff;
    border: 1px solid #dfdfdf;
    height: 300px;
    margin: 0 auto 30px;
    overflow-y: scroll;
    padding: 20px;
}
.priv_inner_txt{
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 1.4rem;
	text-align: left;
}
#fba #fba_index #form_box #submit {
    background: #eee none repeat scroll 0 0;
    border: 1px solid #ccc;
    border-radius: 20px;
	-o-border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	-ms-border-radius: 20px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    margin: 10px auto;
    padding: 10px 0;
    text-align: center;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5);
    width: 200px;
	box-sizing: border-box;
}
/* // end of contact */


/* =====================
  .f_floating - pc
===================== */
.f_floating {
	display: none;
}
#right_float {
    display: block;
    position: fixed;
    z-index: 9999;
    transition: left 0.6s ease;
}
#right_float.right_float01 {
    top: 270px;
    right: 0;
}
/* // end of f_floating */


/* =====================
  .pagetop - pc
===================== */
.pagetop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 3%;
}
.pagetop a {
	display: block;
	width: 50px;
	height: 50px;
}
.pagetop a img {
	width:100%;
}
/* // end of pagetop */


/* =====================
  #footer - pc
===================== */
#footer { 
	width:100%;
	font-family: 'Meiryo','Hiragino Kaku Gothic ProN','sans-serif';
	font-weight: normal;
}
/*.footer-copy {
	width: 100%;
	background-color: #d70c18;
	color: #fff;
	padding: 10px 0;
	font-size: 13px;
	text-align: center;
	display:table;
}
.footer-copy .copy_text {
	text-align:right;
	float:right;
	margin:-30px 0 0 0;
	padding:6px 20px 0 0;
	line-height: 1.5;
}
.copy-link a {
	text-decoration: none;
	color: #fff;
}*/

/* #footer > nxGroupCommonFt
--------------------------------------*/
.nxGroupCommonFt {
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 12px;
	letter-spacing: 0;
	line-height: 1.5;
}
.nxGroupCommonFt, .nxGroupCommonFt *, .nxGroupCommonFt *::before, .nxGroupCommonFt *::after {
}
.nxGroupCommonFt * {
	background-color: transparent;
	border: 0 none;
	font-size: 100%;
	font-style: normal;
	margin: 0;
	outline: 0 none;
	padding: 0;
	vertical-align: baseline;
}
.nxGroupCommonFt ol, .nxGroupCommonFt ul {
	list-style: outside none none;
}
.nxGroupCommonFt a {
	background-color: transparent;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
.nxGroupCommonFt a:link, .nxGroupCommonFt a:visited, .nxGroupCommonFt a:active, .nxGroupCommonFt a:hover {
	outline: medium none;
}
.nxGroupCommonFt p {
	margin-bottom: 0;
	max-height: 100%;
	text-align: left;
	width: auto;
}
/* // end of footer */


@media screen and (min-width: 769px) {
/* =====================
  #footer - pc
===================== */
.nxGroupCommonFt {
	border-top: 1px solid #333;
	margin-left: auto;
	margin-right: auto;
	min-width: 1000px;
	padding: 15px;
}
.nxGroupCommonFt ul.nxGroupCommonFtC {
	text-align: right;
	width: 100%;
}
.nxGroupCommonFt ul.nxGroupCommonFtC li {
	display: inline-block;
	margin-left: 10px;
	vertical-align: middle;
}
.nxGroupCommonFt ul.nxGroupCommonFtC li img {
	display: block;
	height: 55px;
	line-height: 1;
	width: auto;
}
.nxGroupCommonFt ul.nxGroupCommonFtC li a:hover {
	opacity: 0.5;
}
/* // end of footer */
}


@media screen and (max-width: 768px) {
/* =====================
  common - tablet
===================== */
	html{
		font-size: 80%;
	}	
	.pc_cont {
		display: none;
	}
	.tb_cont {
		display: block;
	}
	.sp_cont {
		display: none;
	}	
	#fba {
		max-width: 100%;
	}
/* // end of common */

	
/* =====================
  header - tablet
===================== */
	.header_inner{
		width: 100%;
	}
	.logo{
		padding-left: 2.5%;
	}
	/* header > gNav
    ------------------------*/
	.gNav{
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		height: 0;
		overflow: hidden;
		background-color: #fff;
		z-index: 10;
		opacity: .3;
		transition: .3s ease;
		max-width: none;
	}
	.gNav.active{
		height: 100%;
		max-height: 100vh;
		opacity: 1;
	}
	.menu{
		justify-content: flex-start;
		flex-direction: column;
		width: 80%;
		height: 100%;
		margin: 0 auto;
	}
	.all_menu_items{
		border-right: none;
		margin: 0;
		width: 100%;
		padding: 1em 0;
		font-size: 18px;
		text-align: center;
		border-bottom: 1px solid #eaeaea;
		display: block;
	}
	/*.all_menu_items:nth-child(n + 5) {
		padding: .5em 0;
	}*/
	.all_menu_items a {
		margin: 0;
		padding: 0;
		width: 100%;
		display: block;
	}
	.memu_item-btn{
		padding-top: 2.5em;
		border-bottom: none;
	}
	.memu_item-btn a {
	    padding: 3%;
	}
    /* header > menu
    ------------------------*/
	.menu-trigger,
	.menu-trigger span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	.menu-trigger {
		position: relative;
		width: 40px;
		height: 32px;
		right: 2.5%;
	}
	.menu-trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: #ca161e;
		border-radius: 4px;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 0;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 14px;
	}
	.menu-trigger span:nth-of-type(3) {
		bottom: 0;
	}
	.menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(14px) rotate(-45deg);
		transform: translateY(14px) rotate(-45deg);
	}
	.menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu-trigger.active span:nth-of-type(3) {
		-webkit-transform: translateY(-14px) rotate(45deg);
		transform: translateY(-14px) rotate(45deg);
	}
	.header .pulldown li {
		padding: 0px;
	}
	.header .pulldown li a {
		padding: 1em 0;
	}
/* // end of header */
	
	
/* =====================
  main - tablet
===================== */	
	#main {
		background-image: url(../image/main_bg-l.jpg);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.main_ttl {
		width: 90%;
		padding: 7% 0;
	}
	.main_ttl::before {
		display: none;
	}
	.main_ttl h1 {
	font-size: 32px;
    font-size: 3.2rem;
	}
	.main_ttl h2 {
	font-size: 36px;
    font-size: 3.6rem;
	}
	.main_list_inner {
    max-width: 100%;
    padding: 2% 0 0;
	}
/* // end of main */
	
	
/* =====================
  outline - tablet
===================== */	
	.outline_ttl {
		padding: 8% 4% 0;
		width: 100%;
		box-sizing: border-box;
	}
	.outline_ttl .ttl-big {
		line-height: 1.4;
	}
	.outline_item {
		width: 92%;
		padding: 20% 4% 6%;
	}
	#outline .main_list_inner {
		justify-content: space-between;
		padding: 0 3% 5%;
	}
	#outline .list_item {
		width: 220px;
		height: 220px;
	}
	#outline .list_txt {
		width: 220px;
		bottom: 16%;
		font-size: 2.4rem;
		line-height: 1.1;
	}
/* // end of outline */


/* =====================
  flow - tablet
===================== */	
	#flow {
	    padding: 0 4%;
	}
	#flow h2, #fba #service h2, #contact h2 {
		padding: 8% 0;
		font-size: 4.2rem;
	}
	.flowCont {
		width: 100%;
	}
	.flow_item {
		width: 100%;
		margin: 10% auto 0;
	}
	.flow_item_inner img {
	    max-height: 230px;
	}
	.flow_item_txt {
		width: 60%;
	}
/* // end of flow */


/* =====================
  service - tablet
===================== */	
	#fba #service {
	    padding: 0 4% 8%;
	}
	.service_item {
		width: 100%;
		padding: 6% 4%;
	}
	.scroll-table {
	  overflow: auto;
	  white-space: nowrap;
	}
/* // end of service */

	
/* =====================
  contact - tablet
===================== */
	.txtC{
		font-size: 1.6rem;
		font-weight: 400;
		margin: 0 0 5%;
		text-align: left;
	}
	
	/* contact > form box
    ------------------------*/
	#fba #fba_index #form_box {
	    width: 90%;
		border:10px solid #dcdcdc;
		margin:5% auto 10%;
	}
	#fba #fba_index #form_box table th {
		width:100%;
		display:block;
		padding:0 0 3% 0;
		font-size: 1.8rem;
	}
	#fba #fba_index #form_box table td {
		width:100%;
		display:block;
		padding:0 0 5% 0;
	}
	#privacy {
		width: 100%;
	}
	#privacy .priv_inner {
    overflow: scroll;
    box-sizing: border-box;
    padding: 3%;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 400;
	}
/* // end of contact */	
	
	
/* =====================
  .f_floating - tablet
===================== */
	#right_float {
		display: none;
	}
	.f_floating {
		display: block;
		width:100%;
		padding:10px 0;
		background-color:#ff8400;
		position:fixed;
		bottom:0;
		left:0;
		z-index:10000;
	}
	.f_floating .f_f_area{
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-ms-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
	}
	.f_floating .f_form_txt{
		font-size: 20px;
		font-weight: bold;
		color: #ffffff;
	}
	.f_floating a{
		display: block;
		font-size: 16px;
		font-weight: bold;
		padding: 6px 60px;
		-webkit-border-radius:50px;
		-moz-border-radius:50px; 
		border-radius:50px;
	}
	.f_floating a:hover{
		text-decoration: none;
		opacity: 0.9;
		transition: 0.2s;
	}
	.f_floating .f_form_txt {
		margin: 0 2% 0 0;
	}
	.f_floating .f_form_form {
		filter: drop-shadow(0px 4px 0 rgba(255,119,0,1));
	}
	.f_floating .f_form_form a{
		color: #ff8400;
		background: #ffffff;
		position: relative;
	}
	.f_floating .f_form_form a::after {
		content: "\025b6";
		position: absolute;
		font-size: 12px;
		right: 15px;
		top: 10px;
	}
/* // end of f_floating */
	
	
	
/* =====================
  .footer - tablet
===================== */
	#footer .footer_pagerink .pagerink_cont {
		display:block; 
		padding:2% 0;
	}
	#footer .footer_pagerink .pagerink_cont > li {
		display:block; 
	}
	#footer .footer_pagerink .pagerink_cont > li:first-child {
		width: 40%;
		margin-left: 5%;
		padding: 1% 0 2%;
	}
	#footer .footer_pagerink .pagerink_cont > li:first-child img {
		width:100%;
	}
	#footer .footer_pagerink .pagerink_cont li .pagerink_list li a {
		font-size: 12px;
	}
	#footer .footer_pagerink .pagerink_cont li .pagerink_list {
		margin-left: 0%;
		margin-top: 1.2%;
	}
	.footer-copy .copy_text {
		margin:0 0 0 0; 
	}
	.nxGroupCommonFt {
		border-top: 1px solid #333;
		padding: 15px;
		margin: 0 0 70px;
	}
	.nxGroupCommonFt ul.nxGroupCommonFtC {
		text-align: center;
		width: 100%;
	}
	.nxGroupCommonFt ul.nxGroupCommonFtC li:not(.nxGroupCommonFtTxt) {
		display: inline-block;
		margin-left: 10px;
		vertical-align: middle;
	}
	.nxGroupCommonFt ul.nxGroupCommonFtC li.nxGroupCommonFtTxt {
		margin-bottom: 15px;
		margin-left: 0;
		text-align: center;
	}
	.nxGroupCommonFt ul.nxGroupCommonFtC li img {
		display: block;
		height: 55px;
		line-height: 1;
		width: auto;
	}
/* // end of footer */

}



@media screen and (max-width: 480px) {
/* =====================
  common - sp
===================== */
	html{
		font-size: 58%;
	}
	.pc_cont {
		display: none;
	}
	.tb_cont {
		display: none;
	}
	.sp_cont {
		display: inline-block;
	}
/* // end of common */	

	
/* =====================
  header - sp
===================== */
	.logo {
		padding-left: 3%;
		text-align: left;
	}
/* // end of header */	

	
/* =====================
  main - sp
===================== */
	.main_ttl {
	    padding: 7% 4%;
		width: 96%;
	}
	.main_ttl h1 {
		font-size: 24px;
		font-size: 2.4rem;
	}
	/*.main_ttl h2 {
		font-size: 10vw;
	}*/
	.main_list_inner {
		padding: 2% 4% 0;
	}
/* // end of main */	

	
/* =====================
  outline - sp
===================== */
	.outline_ttl {
	    margin: 0 0 10%;
	}
	.outline_ttl h2 {
		width: 100%;
	}
	.outline_ttl h3 {
		font-size: 6.5vw;
	}
	.ttl-big {
		font-size: 11vw;
	}
	.outline_item {
	    padding: 25% 4% 6%;
	}
	#fba .outline_item img {
		width: 70%;
	}
	.outline_item h4 {
		margin: 0 0 2%;
		font-size: 2.5rem
	}
	#outline .main_list {
		margin: 0 auto 28%;
	}
	#outline .main_list_inner {
		justify-content: space-around;
		padding: 0;
	}
	#outline .list_item {
		max-width: 165px;
		max-height: 165px;
	}
	#outline .list_txt {
		width: 165px;
	}
	#outline .list_txt img {
		max-height: 70px;
		max-width: 70px;
	}
/* // end of outline */	

	
/* =====================
  flow - sp
===================== */
	.flow_txt {
		margin: 0 0 8%;
	}
	.flowCont {
	    padding: 0 0 12%;
	}
	.flow_item {
		padding: 8% 6%;
		margin: 12% auto 0;
	}
	.flow_item .en {
		top: -6%;
	}
	.flow_item_inner {
		justify-content: space-around;
	}
	.flow_item_inner img {
		margin: 0 0 5%;
	}
	.flow_item_txt {
		width: 100%;
	}
/* // end of flow */	

	
/* =====================
  service - sp
===================== */
	.service_item {
		padding: 8% 6%;
	}
	.service_item h3 {
		margin: 0 0 6%;
	}
	.service_item img {
		max-width: 100%;
		text-align: center;
		margin: 8% 0;
	}
	.area_list {
		justify-content: space-around;
	}
	.service_item:last-child h4 {
		font-size: 8vw;
		line-height: 1.4;
	}
/* // end of flow */	

	
/* =====================
  contact - sp
===================== */
	.memu_item-btn a {
		padding: 6%;
	}
/* // end of contact */	

	
/* =====================
  f_floating - sp
===================== */
	.f_floating {
		padding: 1% 4% 3%;
	}
	.f_floating .f_form_txt {
		font-size: 4vw;
		margin: 0 auto;
	}
	.f_floating a {
		display: block;
		font-size: 4.5vw;
		font-weight: bold;
		padding: 1% 2%;
		width: 100%;
	}
	.f_floating .f_form_form {
		width: 100%;
	}
	.f_floating .f_form_form a::after {
		top: 20%;
	}
/* // end of f_floating */
	
	
/* =====================
  footer - sp
===================== */
	.nxGroupCommonFt {
		margin: 0 0 90px;
	}
/* // end of footer */
	
}

