@charset "UTF-8";

/* 共通項
***************************************************************************************/
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

img {
	vertical-align: top;
	border: none;
}


a:link,
a:active,
a:visited,
a:hover {
	text-decoration: none;
}

.dispPC {
	display: initial;
    width: 100%;
}

.dispSP {

	display: none;
}

.wrap {
	width: 1140px;
	margin: auto;
}

.inner {
	width: 960px;
	margin: auto;
}

.bg_blue {
	background-color: #0387b4;
}

.bg_darkblue {
	background-color: #0d2761;
}

.bg_lightgray {
	background-color: #f4f4f4;
}

.bg_gray {
	background-color: #a0a0a0;
}

.bg_lightgreen {
	background-color: #F2F9FB;
}

.btn {
	display: flex;
	text-decoration: none;
	align-content: center;
	align-items: center;
	justify-content: center;
}

.btn_frame01 {
	width: 222px;
	border-radius: 4px;
	font-size: 16px;
	line-height: 1;
	padding: 22px 0;
	font-weight: bold;
}

.btn_frame02 {
	width: 390px;
	border-radius: 4px;
	font-size: 24px;
	line-height: 1;
	padding: 39px 0 35px;
	font-weight: bold;
	position: relative;
}

.btn_frame02::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.btn_frame02::before {
	right: 30px;
	left: auto;
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn_frame02.materials::before {
	right: 28px;
	left: auto;
	width: 12px;
	height: 12px;
	border-top: 2px solid #E62200;
	border-right: 2px solid #E62200;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn_frame06 {
	width: 200px;
	border-radius: 4px;
	font-size: 16px;
	line-height: 1;
	font-weight: bold;
	height: 60px;
}

.btn_frame06.materials {
	background: #fff;
	border: 3px solid #E62200;
	color: #E62200;
	height: 60px;
}

.btn_grad_org {
	background: #ffa000;
	background: -moz-linear-gradient(left, #ffa000 0%, #ff6450 100%);
	background: -webkit-linear-gradient(left, #ffa000 0%, #ff6450 100%);
	background: linear-gradient(to right, #ffa000 0%, #ff6450 100%);
	color: #fff;
}

.txt_clr_blue {
	color: #0387b4;
}

.txt_clr_org {
	color: #ff6450;
}




/* ヘッダー
***************************************************************************************/
header {
	padding: 21px 0 24px;
}

header .wrap {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}

#logo {
	width: 200px;
	margin: 0;
}

.head_right {
	display: flex;
	align-items: center;
}

.head_right div {
	margin: 0 37px 0 0;
}

.head_right div p {
	margin: 0;
	font-size: 11px;
	text-align: center;
}

.head_right div p+p {
	margin-top: 10px;
	font-weight: bold;
	line-height: 1;
}

.head_right p {
  display: flex;
  gap: 15px;
  margin: 0;
}

.head_right .contact {
	margin: 0;
}

/* メニュー
****************/
.gnavi_wrap {
	width: 100px;
	margin: 0 auto;
}

.gnavi_lists {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.gnavi_list {
	position: relative;
	transition: all .3s;
	font-weight: 600;
	border-bottom: 1px solid #ccc;
}

.gnavi_list:not(:first-child)::before {
	content: "";
	width: 1px;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s;
}

.gnavi_list>span {
	display: block;
	position: relative;
}

.gnavi_list>span::after {
	content: "";
	display: block;
	position: absolute;
	background-image: url(../images/icon_menu.svg);
	background-repeat: no-repeat;
	right: -30%;
	top: 50%;
	width: 10px;
	height: 10px;
	transform: translate(0, -50%);
}

.sub_lists {
	display: none;
	/*デフォルトでは非表示の状態にしておく*/
	width: 300%;
	position: absolute;
	top: 100%;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	box-shadow: 0 0 5px #999;
}

.gnavi_list:hover .sub_lists {
	display: block;
	/*Gナビメニューにホバーしたら表示*/
	z-index: 100;
}

.sub_list {
	transition: all .3s;
	position: relative;
	background-color: #fff;
}

.sub_list:not(:first-of-type) {
	border-top: 1px solid #ddd;
}

.sub_list a {
	display: block;
	text-decoration: none;
	position: relative;
	padding: 8px;
	color: #000;
	font-weight: normal;
}

.sub_list a::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(135deg);
	position: absolute;
	right: 15px;
	top: calc(50% - 5px);
}

.sub_list a span {
	font-size: 70%;
}

/* メイン
***************************************************************************************/
.use {
	background-image: url(../images/bg_use.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	text-align: center;
	padding: 55px 90px;
	margin: 100px 0 0;
}

.use h4 {
	text-align: center;
	margin: 0 auto;
	font-size: 26px;
	line-height: 1.7;
	position: relative;
	padding: 0 45px;
	display: inline-block;
}

.use h4::before,
.use h4::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 44px;
	height: 2px;
	background-color: black;
	transform: rotate(-70deg);
}

.use h4::before {
	transform: rotate(70deg);
	right: auto;
	left: 0;
}

.use ul {
	display: flex;
	list-style: none;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1;
	color: #fff;
}

.use ul li {
	width: 229px;
	background-color: rgba(255, 100, 80, .8);
	margin: 20px 14px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	line-height: 1.4;
}

.use ul li:nth-of-type(4n) {
	margin-right: 0;
}

#security {
	text-align: center;
	padding: 100px 0 100px;
}

#security h2 {
	position: relative;
	text-align: center;
	font-size: 40px;
	margin: 20px 0 60px;
	line-height: 1;
}

#security .txt01 {
	font-size: 18px;
	font-weight: bold;
}

#security h3 {
	font-size: 28px;
	color: #0387b4;
	margin: 65px 0 25px;
}

#security h3+p {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 50px;
}

.in_box {
	background-color: #fff;
	box-shadow: 0 0 10px #aaa;
	margin: 40px 0 0;
	padding: 40px;
}

.in_box p {
	margin: 0;
}

.in_box>div {
	display: flex;
	justify-content: space-around;
	align-content: center;
}

.in_box>div>div {
	width: 28%;
}

.in_box>div>div p {
	margin: 0;
	line-height: 1.4;
	font-size: 13px;
	text-align: left;
	font-feature-settings: "palt";
}

.in_box>div>div p:first-child {
	text-align: center;
	margin: 0 60px;
}

.in_box>div>div p.title {
	font-size: 20px;
	font-weight: bold;
	margin: 25px 0 15px;
	text-align: center;
}

#security .list01 {
	list-style: none;
	margin: 40px 0 0;
	padding: 10px 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	box-shadow: 0 0 10px #aaa;
}

#security .list01 li {
	width: 169px;
	margin: 0 15px;
}

#security .list01 li img {
	width: 100%;
}

.appeal_sub {
	text-align: center;
	margin: 0 auto;
	font-size: 24px;
	line-height: 1.7;
	padding: 0 45px;
	display: inline-block;
	color: #0387b4;
	position: relative;
	font-weight: bold;
}

.appeal_sub::before,
.appeal_sub::after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 44px;
	height: 2px;
	background-color: #0387b4;
	-webkit-transform: rotate(-70deg);
	transform: rotate(-70deg);
}

.appeal_sub::before {
	-webkit-transform: rotate(70deg);
	transform: rotate(70deg);
}

.appeal_sub::before {
	left: 0;
}

.appeal_sub::after {
	right: 0;
}

.inner h2 {
	position: relative;
	text-align: center;
	font-size: 40px;
	margin: 0 0 60px;
	line-height: 1;
}

.inner .appeal_sub+h2 {
	margin-top: 20px;
}

.inner p img {
	max-width: 100%;
}

#voice {
	background-color: #E6F3F7;
	padding: 100px 0;
}

#voice .voice {
	background-color: #fff;
	margin: 0 45px;
	padding: 43px;
	display: flex;
}

#voice .voice+.voice {
	margin-top: 60px;
}

#voice .voice div:last-of-type {
	margin: 0 0 0 30px;
	width: 478px;
}

#voice .voice .image {
	width: 456px;
}

#voice .voice .image img {
	width: 100%;
}

#voice .voice div:last-of-type p {
	font-size: 14px;
	line-height: 1.6;
}

#voice .voice div:last-of-type p:first-of-type {
	margin: 0;
	font-size: 22px;
	font-weight: bold;
	font-feature-settings: "palt";
	color: #0387B4;
}

#voice .voice div:last-of-type p:last-of-type {
	text-align: right;
	font-weight: bold;
	font-size: 16px;
	margin: 0;
}

#price {
	background-color: #CDE7F0;
	padding: 100px 0;
}

#price .fee {
	background-color: #fff;
	border: 4px solid #0387B4;
	border-radius: 20px;
	margin: 0 0 100px;
	display: flex;
	font-weight: bold;
	align-items: center;
	font-size: 18px;
	justify-content: center;
}

#price .fee>div {
	display: flex;
	align-items: center;
}

#price .fee .txt01 {
	font-size: 40px;
}

#price .fee .txt02 {
	font-size: 13px;
	margin: 0 0 0 10px;
}

#price .fee .title {
	margin: 0 17px 0 0;
}

#price .fee .line {
	border-right: 2px dashed #B1B1B1;
	padding: 0 62px 0 0;
	margin: 0 45px 0 0;
}

#price .image {
	background-color: #fff;
	border-radius: 20px;
	position: relative;
	padding: 30px;
	margin-top: 80px;
}

#price .image h4 {
	margin: 0 0 30px;
}


#price .image p {
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	margin: 0;
}

#price .image h4+p {
	margin: 0 375px;
}

#price .image:last-of-type h4+p {
	margin: 0 0;
}

#price .image p+p {
	margin-top: 35px;
}

.company {
	margin: 0;
	padding: 100px 0;
}

.company p {
	margin: 0 auto 85px;
	width: 460px;
	text-align: center;
}

.company p img {
	width: 80%;
}

.company table {
	width: 677px;
	margin: 0 auto;
	border: none;
	font-size: 16px;
	border-spacing: 0;
}

.company table td,
.company table th {
	background: #f2f9fb;
	padding: 14px 16px;
}

.company table th {
	padding: 14px 22px 14px 60px;
	text-align: left;
	font-weight: normal;
	position: relative;
}

.company table th::after {
	content: ":";
	display: block;
	position: absolute;
	right: 0;
	top: 0.7em;
}

.company table tr:nth-child(even) td,
.company table tr:nth-child(even) th {
	background: #fff;
}

.fix_bar_wrap {
	height: 100px;
}

.fix_bar {
	background-color: #fff;
	box-shadow: 0 0 10px #ccc;
}

.fix_bar .wrap {
	width: 775px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 0;
}

.fix_bar p {
	margin: 0;
	line-height: 1.4;
	text-align: left;
}

.fix_bar p:first-of-type {
	font-size: 14px;
}


.fixed {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 200;
	width: 100%;
}

.feature .feature_logo_area {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 60px auto;
	justify-content: center;
	align-items: center;
	width: 90%;
} 

.feature .feature_logo_area li {
	align-items: center;
	width: 25%;
}

.feature .feature_logo_area li:nth-of-type(n+4) {
	align-items: center;
	width: 21%;
}

.feature .feature_logo_area li img {
	width: 100%;
}
.feature .in_box ul li:nth-child(n+5) {
	margin-top: 0;
}

.feature .contact {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: center;
	margin: 0 auto;
	width: 90%;
}

.feature .contact a {
	height: 80px;
}

.feature .contact a.materials {
	background: #fff;
	border: 3px solid #E62200;
	color: #E62200;
}

/* フッター
***************************************************************************************/
footer {
	background-color: #ebebeb;
	padding: 32px 0;
}

footer .wrap {
	display: flex;
	justify-content: space-between;
	padding: 0 40px;
}

footer .wrap p {
	margin: 0;
	line-height: 1;
	font-size: 14px;
}

footer .wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 1;
	display: flex;
	font-size: 14px;
}

footer .wrap ul li {
	margin: 0 0 0 30px;
}

footer .wrap ul a {
	color: inherit;
}

@media screen and (min-width:769px) {

	.btn:hover,
	footer .wrap ul a:hover,
	#nav li a:hover {
		opacity: .7;
	}

	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
		color: inherit;
	}
}

/* スマホ用
***************************************************************************************
***************************************************************************************
***************************************************************************************
***************************************************************************************/
@media screen and (max-width:768px) {
	html {
		font-size: calc(100vmin / 32);
	}

	body {
		line-height: 1;
	}

	.dispPC {
		display: none;
	}

	.dispSP {
		display: initial;
	}

	img {
		width: 100%;
		vertical-align: top;
	}

	.wrap {
		width: auto;
		margin: auto;
		padding: 0 3.125vmin;
	}

	.inner {
		width: auto;
		margin: auto;
	}

	.btn_frame01 {
		width: 25vmin;
		font-size: 3vmin;
		line-height: 1;
		padding: 3.125vmin 0;
	}

	.btn_frame02 {
		width: auto;
		font-size: 5vmin;
		padding: 7vmin 0;
	}

	.btn_frame02::before{
		right: 8vmin;
		width: 3vmin;
		height: 3vmin;
	}

	.btn_frame02.materials::before {
		right: 7.5vmin;
		width: 3vmin;
		height: 3vmin;
	}

	.btn_frame03 {
		background-color: #0387b4;
		color: #fff;
		padding: 3vmin;
		position: relative;
	}

	.btn_frame03::before {
		right: 8vmin;
		width: 3vmin;
		height: 3vmin;
		top: -1.5vmin;
	}

	.btn_frame04 {
		width: auto;
		padding: 6vmin 0;
	}

	.btn_frame04::before {
		right: 8vmin;
		width: 3vmin;
		height: 3vmin;
	}

	.btn_frame05 {
		width: auto;
		padding: 5vmin 0;
		font-size: 4vmin;
	}

	.btn_frame05::before {
		right: 8vmin;
		width: 3vmin;
		height: 3vmin;
	}

	.btn_frame06,
	.btn_frame06.materials {
		width: 100%;
		font-size: 3vmin;
		height: 10vmin;
	}

	.btn_frame06.materials {
		background: #fff;
		border: 3px solid #E62200;
		color: #E62200;
	}

	.btn_grad_org {
		background: #ffa000;
		background: -moz-linear-gradient(left, #ffa000 0%, #ff6450 100%);
		background: -webkit-linear-gradient(left, #ffa000 0%, #ff6450 100%);
		background: linear-gradient(to right, #ffa000 0%, #ff6450 100%);
		color: #fff;
	}

	.btn_blue {}

	.under_line {
		background: linear-gradient(transparent 70%, #ff8373 70%);
	}

	.under_line_yellow {
		background: linear-gradient(transparent 50%, #ffe065 50%);
	}

	.txt_clr_blue {
		color: #0387b4;
	}

	.txt_clr_org {
		color: #ff6450;
	}



	/* ヘッダー
***************************************************************************************/
	header {
		padding: 3.15vmin 0;
	}

	header .wrap {
		flex-wrap: wrap;
		gap: 5vmin;
		position: relative;
	}

	#logo {
		width: 40%;
	}

	.head_right {
		flex-wrap: wrap;
		width: 100%;
	}

	.head_right div {
		margin: 0 2vmin 0 0;
		position: absolute;
		top: 0;
		right: 2vmin;
		width: 45%;
	}

	.head_right div p {
		margin: 0;
		font-size: 3.4375vmin;
		text-align: center;
	}

	.head_right div p+p {
		display: block;
		font-size: 2.8vmin;
		margin-top: 2vmin;
		text-align: center;
	}

	.head_right p {
		margin: 0;
		width: 100%;
	}

	.head_right .contact {
		width: 50%;
	}

	.head_right .contact a {
		height: 10vmin;
		width: 100%;
	}


	/* メイン
***************************************************************************************/
	.use {
		padding: 10vmin 5vmin;
		margin: 10vmin 0 0;
	}

	.use h4 {
		font-size: 4.5vmin;
		padding: 0 8vmin;
		margin: 0;
	}

	.use h4::before,
	.use h4::after {
		content: '';
		width: 8vmin;
	}

	.use ul {
		margin: 0;
		padding: 0;
		font-size: 3.5vmin;
	}

	.use ul li {
		width: auto;
		margin: 5vmin 3vmin 0 0;
		height: 13vmin;
		padding: 0 3vmin;
		justify-content: space-around;
	}

	#security {
		text-align: center;
		padding: 10vmin 3.125vmin;
	}

	#security h2 {
		font-size: 6.5vmin;
		margin: 4vmin 0 8vmin;
		line-height: 1;
	}

	#security .txt01 {
		font-size: 5vmin;
		font-feature-settings: "palt";
		line-height: 1.4;
	}

	#security h3 {
		font-size: 5vmin;
		margin: 7vmin 0;
	}

	#security h3+p {
		font-size: 3.2vmin;
		margin: 0 0 5vmin;
		line-height: 1.4;
	}

	.in_box {
		box-shadow: 0 0 10px #aaa;
		margin: 4vmin 0 0;
		padding: 4vmin;
	}

	.in_box p {
		margin: 0;
	}

	.in_box>div {
		display: flex;
		justify-content: space-around;
		align-content: center;
		flex-direction: column;
	}

	.in_box>div>div {
		width: 100%;
		background-color: #eee;
		padding: 10vmin;
	}

	.in_box>div>div:not(:first-of-type) {
		margin: 5vmin 0 0;
	}

	.in_box>div>div p {
		margin: 0;
		line-height: 1.4;
		font-size: 3vmin;
		text-align: left;
		font-feature-settings: "palt";
	}

	.in_box>div>div p:first-child {
		text-align: center;
		margin: 0 20vmin;
	}

	.in_box>div>div p.title {
		font-size: 3.5vmin;
		font-weight: bold;
		margin: 25px 0 15px;
		text-align: center;
	}

	#security .list01 {
		list-style: none;
		margin: 5vmin 0 0;
		padding: 3.125vmin 0;
	}

	#security .list01 li {
		width: 25%;
		margin: 0 5px;
	}



	.appeal_sub {
		font-size: 4.5vmin;
		padding: 0 8vmin;
	}

	.appeal_sub::before,
	.appeal_sub::after {
		width: 8vmin;
	}



	#voice {
		background-color: #E6F3F7;
		padding: 10vmin 0;
	}

	#voice .voice {
		margin: 7vmin 0;
		padding: 4vmin;
		flex-direction: column;
	}

	#voice .voice div {
		width: auto;
	}

	#voice .voice div:last-of-type {
		margin: 3vmin 0 0;
		width: auto;
	}

	#voice .voice div:last-of-type p {
		font-size: 3vmin;
		line-height: 1.6;
	}

	#voice .voice div:last-of-type p:first-of-type {
		font-size: 3.5vmin;
	}

	#voice .voice div:last-of-type p:last-of-type {
		font-size: 3vmin;
	}

	#voice .voice .image {
		width: auto;
	}

	#price {
		padding: 10vmin 3.125vmin;
	}

	#price h2 {
		margin: 0;
	}

	#price .fee {
		border-radius: 20px;
		margin: 0 0 6vmin;
		font-size: 3vmin;
		flex-direction: column;
		padding: 3vmin;
	}

	.fee p {
		margin: 0;
	}

	#price .fee>div {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: center;
	}

	#price .fee>div:first-of-type {
		border-bottom: 2px dashed #B1B1B1;
		padding: 0 0 3vmin;
		margin: 0 0 3vmin;
	}


	#price .fee .txt01 {
		font-size: 6vmin;
	}

	#price .fee .txt02 {
		font-size: 3vmin;
		margin: 0 0 0 10px;
		width: 50%;
	}

	#price .fee .title {
		margin: 0 17px 0 0;
	}

	#price .fee .line {
		border: none;
		padding: 0;
		margin: 0;
	}

	#price .image {
		background-color: #fff;
		border-radius: 20px;
		position: relative;
		padding: 6vmin;
		margin-top: 15vmin;
	}

	#price .image h4 {
		margin: 0 0 6vmin;
	}


	#price .image p {
		font-size: 5vmin;
	}

	#price .image p+p {
		margin-top: 6vmin;
	}


	#price .image h4+p {
		margin: 0 25vmin;
	}

	#price .image:last-of-type h4+p {
		margin: 0 0;
	}

	#price .image p+p {
		margin-top: 8vmin;
		font-size: 4vmin;
		line-height: 1.4;
	}



	.right_box {
		width: 100%;
	}

	.right_box b {
		font-size: 6vmin;
	}

	.appeal .wrap {
		padding: 8vmin 3.75vmin;
	}

	.appeal h2 {
		font-size: 6vmin;
		margin: 5vmin 0;
	}

	.appeal .appeal_sub {
		font-size: 4vmin;
		padding: 0 10vmin;
	}

	.appeal .appeal_sub::before,
	.appeal .appeal_sub::after {
		width: 8vmin;
	}

	.appeal .txt01 {
		font-size: 3.5vmin;
		font-weight: bold;
		line-height: 1.4;
	}

	.appeal .list01 {
		margin: 5vmin 0 10vmin;
	}

	.appeal .list01 li {
		width: 20vmin;
	}

	.appeal .desk {
		width: auto;
		margin: 10vmin 0;
		flex-direction: column;
	}

	.appeal .desk>p {
		margin: 0;
	}

	.appeal .desk ul {
		width: auto;
		margin: 4vmin 0;
	}

	.appeal .desk ul li {
		width: 28vmin;
	}

	.case {}

	.case .wrap {
		padding: 6vmin 3.75vmin 3.75vmin;
	}

	.case h2 {
		font-size: 8vmin;
	}

	.case .title_eng {
		font-size: 4vmin;
		margin: 5vmin 0 10vmin;
	}

	.case .title_eng+p {
		font-size: 4vmin;
	}

	.case_list {
		display: flex;
		flex-direction: column;
		width: auto;
		margin: 0 auto;
	}

	.case_detail {
		margin: 3.75vmin 0 0;
		background-color: #fff;
		flex-direction: column;
		padding: 3.75vmin;
	}

	.case_detail>p {
		margin: 0 0 3.75vmin;
	}

	.case_detail h3 {
		margin: 0 0 4vmin;
		font-size: 5vmin;
	}

	.case_detail div p {
		font-size: 4vmin;
	}

	.case_detail div p+p {
		margin: 4vmin 0 0;
	}

	.company {
		margin: 0;
		padding: 10vmin 0;
	}

	.company p {
		margin: 0 auto 10vmin;
		width: auto;
		text-align: center;
	}

	.company p img {
		width: 80%;
	}

	.company table {
		width: auto;
		font-size: 4vmin;
		line-height: 1.4;
	}

	.company table td,
	.company table th {
		background: none;
		padding: 3vmin 3vmin 6vmin 6vmin;
		display: block;
	}

	.company table th {
		padding: 3vmin;
		font-weight: bold;
		background-color: #f2f9fb;
	}

	.company table th::after {
		display: none;
	}

	.company table tr:nth-child(even) th {
		background-color: #f2f9fb;
	}

	.fix_bar_wrap {
		height: auto;
	}

	.fix_bar {
		background-color: #fff;
	}

	.fix_bar .wrap {
		width: auto;
		padding: 3.75vmin;
		flex-direction: column;
		align-items: stretch;
	}

	.fix_bar p:first-of-type {
		font-size: 3.5vmin;
		margin: 0 0 3vmin;
	}

	.fix_bar .btn_frame06.materials {
		background: #fff;
		border: 3px solid #E62200;
		color: #E62200;
		height: 11vmin;
	}

	.fix_bar p.item01 {
		order: 1;
	}
	.fix_bar p.item02 {
		margin-top: 3vmin;
		order: 3;
	}
	.fix_bar p.item03 {
		order: 2;
	}

	.feature .feature_logo_area{
		margin: 8vw auto;
		width: 95%;
	}

	.feature .feature_logo_area li {
		width: 45%;
	}

	.feature .feature_logo_area li:nth-of-type(n+4) {
		width: 45%;
	}

	.feature .contact {
		flex-direction: column-reverse;
		flex-wrap: wrap;
		margin-top: 10vmin;
	}

	.feature .contact a {
		width: 100%;
	}



	/* フッター
***************************************************************************************/
	footer {
		background-color: #ebebeb;
		padding: 6vmin 0;
	}

	footer .wrap {
		align-items: center;
		padding: 0 0;
		flex-direction: column-reverse;
	}

	footer .wrap p {
		margin: 0;
		line-height: 1;
		font-size: 3.5vmin;
	}

	footer .wrap ul {
		margin: 3vmin 0;
		font-size: 3.5vmin;
	}

	footer .wrap ul li {
		margin: 0 5vmin;
	}

	footer .wrap ul a {
		color: inherit;
	}

}
