body{
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,YuGothic,'Yu Gothic',sans-serif;
	margin: 0;
	padding: 0;
	font-size: 1.125rem;
	box-sizing: border-box;
}
html{overflow-x: hidden;}
img{/*image-rendering:-webkit-optimize-contrast;*/ vertical-align: middle;}
p{text-align: justify;margin:0px;letter-spacing: 0.07em;line-height: 1.9;}
a{text-decoration: none;letter-spacing: 0.07em;line-height: 1.9;}
ul{list-style-type: none;margin: 0;padding: 0;}
ul li{letter-spacing: 0.07em;}
h1,h2,h3{margin:0px;letter-spacing: 0.07em;}
h2{
	text-align: center;
	font-size: 2.75rem;
	color: #FBB03B;
	position: relative;
	padding-top: 102px;
	margin-bottom: 50px;
	font-weight: 600;
}
h2::before{
	content: "";
	position: absolute;
    display: inline-block;
    width: 98px;
    height: 82px;
    background-image: url('../images/midashi_mark.png');
    background-position: center;
    background-size: contain;
	background-repeat: no-repeat;
	top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
}
h2 span{
	font-size: 1.5rem;
	font-weight: normal;
	line-height: 2.2;
    display: block;
}
table{border-spacing: 0;}
table td{letter-spacing: 0.07em;line-height: 1.9;}
.inner{width: 90%; max-width: 1200px; margin: auto;}
.w1000{display: block;}
.w1000-2{display: none;}
.w768{display: block;}
.w768-2{display: none;}
.w500{display: block;}
.w500-2{display: none;}
@media screen and (max-width: 1115px){
	h2 {font-size: 2.25rem;padding-top: 80px;}
	h2::before{width: 80px;height: 67px;}
}
@media screen and (max-width: 1000px){
	.w1000{display: none;}
	.w1000-2{display: block;}
}
@media screen and (max-width: 960px){
	h2 {font-size: 1.875rem;padding-top: 70px;}
	h2::before{width: 70px;height: 58px;}
}
@media screen and (max-width: 768px){
	.w768{display: none;}
	.w768-2{display: block;}
	h2 {font-size: 1.5rem;padding-top: 60px;}
	h2::before{width: 60px;height: 50px;}
	h2 span{font-size: 1.25rem;line-height: 1.6;}
}
@media screen and (max-width: 500px){
	body{font-size: 0.875rem;}
	.w500{display: none;}
	.w500-2{display: block;}
	h2 {font-size: 1.125rem;padding-top: 45px;margin-bottom: 30px;}
	h2::before{width: 45px;height: 37px;}
	h2 span{font-size: 1rem;}
}
@media (min-width: 500px) {
a[href^="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}
/*header***************/
header{
	width: calc(100% - 90px);
	background-color: #F6F2EC;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 40px 20px 50px;
	z-index: 5;
}
header h1{
	width:396px;
}
header h1 a img{
	width: 100%;
}
header a:hover{
	opacity: 0.5;
}
nav,nav ul{
	display: flex;
	align-items: center;
}
nav ul li{
	border-right: 2px solid #000;
	height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
nav ul li:last-child{
	border-right: none;
}
nav ul li a{
	color: #000;
	font-weight: 600;
	padding: 0 40px;
}
header .h_contact{
	background: url(../images/mail.jpg) no-repeat center left / 44px;
	background-color: #FBB03B;
	color: #fff;
	font-weight: 600;
	padding: 5px 40px 5px 84px;
}
@media screen and (max-width: 1684px){
	header h1 {width: 320px;}
	nav ul li a {padding: 0 20px;}
}
@media screen and (max-width: 1410px){
	header{padding: 20px 30px;width: calc(100% - 60px);}
	header h1 {width: 260px;}
	nav ul li a{font-size: 1rem;}
	header .h_contact{font-size: 1rem;padding: 7px 10px 7px 54px;}
}
@media screen and (max-width: 1200px){
	header h1 {width: 220px;}
	nav ul li a {padding: 0 10px;font-size: 0.9375rem;}
}
@media screen and (max-width: 1000px){
	header{padding: 0px 30px;height: 80px;}
	
/*　ハンバーガーボタン　*/
body:not(.js-ready) .menu {
  display: none;
}
.hamburger {
  background: var(--background-navbar);
  width: 100%;
  height: 52px;
}
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  margin-top: 80px;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
	background-color: #F6F2EC;
	/*box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);*/
	border-top: 1px solid #707070;
	visibility: hidden;
  pointer-events: none;
}
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  /*transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;*/
	visibility: visible;
  pointer-events: auto;
}
.menu a {
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 1rem;
	font-weight: 600;
  text-transform: capitalize;
  color: #000;
  opacity: 0;
  transition: 0.5s;
  display: block;
  border-bottom: 1px solid #707070;
	background: url(../images/link_arrow_o.png) no-repeat center right 18px/ 10px;
}
.menu a:last-child{
  border-bottom: none;
}
.menu li {
  padding: 10px 30px;
  opacity: 0;
  transition: 0.5s;
	border-bottom: 1px solid #707070;
}
.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
.menu-btn {
  display: none;
}
.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.navicon {
  background: #000;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #000;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.navicon:before {
  top: 9px;
}
.navicon:after {
  bottom: 9px;
}
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}
.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}
	.menu_arrow{
		position: relative;
    display: inline-block;
    color: #000;
    vertical-align: middle;
    text-decoration: none;

	}
	.menu_arrow::before, .menu_arrow::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
	.menu_arrow::before{
		right: 40px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
	}
}
@media screen and (max-width: 500px){
	header{width: calc(100% - 30px);padding: 0px 10px 0px 20px;height: 60px;}
	.menu{margin-top: 60px;}
	.menu li{padding: 15px 25px;}
	.menu a{background: url(../images/link_arrow_o.png) no-repeat center right / 10px;}
}
@media screen and (max-width: 375px){
	header h1 {width: 180px;}
}

/*mv***************/
#mv{
	background-color: #F5F2EC;
}
#mv img{
	width: 100%;
}
#oshiage{
	background: url(../images/fast_bg_left.png) no-repeat center left / 258px, url(../images/fast_bg_right.png) no-repeat center right / 258px,linear-gradient(#f5f2ec, #ffffff);
	height: 899px;
    margin-top: -100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#oshiage div{
	width: 60%;
	max-width: 840px;
	margin: auto;
}
#oshiage div .txt{
	font-size: 1.5rem;
	margin-bottom: 50px;
}
#oshiage div .midashi{
	font-size: 2.875rem;
	color: #FBB03B;
	font-weight: 600;
	text-align: center;
}
#oshiage div .midashi span{
	background-color: #FBB03B;
	color: #fff;
	font-size: 3.75rem;
	margin-right: 20px;
    padding: 20px 30px;
}
@media screen and (max-width: 1344px){
	#oshiage{background: url(../images/fast_bg_left.png) no-repeat center left / 200px, url(../images/fast_bg_right.png) no-repeat center right / 200px, linear-gradient(#f5f2ec, #ffffff);}
}
@media screen and (max-width: 1115px){
	#oshiage {background: url(../images/fast_bg_left.png) no-repeat center left / 160px, url(../images/fast_bg_right.png) no-repeat center right / 160px, linear-gradient(#f5f2ec, #ffffff);height: 750px;}
	#oshiage div .midashi {font-size: 2.5rem;}
	#oshiage div .midashi span{font-size: 3.125rem;}
}
@media screen and (max-width: 960px){
	#oshiage div .txt{font-size: 1.25rem;}
	#oshiage div .midashi {font-size: 1.875rem;}
	#oshiage div .midashi span {font-size: 2.5rem;}
}
@media screen and (max-width: 768px){
	#oshiage {background: url(../images/fast_bg_left.png) no-repeat center left -20px/ 100px, url(../images/fast_bg_right.png) no-repeat center right -20px/ 100px, linear-gradient(#f5f2ec, #ffffff);height: 600px;}
	#oshiage div {width: 80%;}
	#oshiage div .txt {font-size: 1rem;}
	#oshiage div .midashi {font-size: 1.5rem;}
	#oshiage div .midashi span {font-size: 1.75rem;padding: 15px 20px;line-height: 2.2;margin-right: 10px;}
}
@media screen and (max-width: 500px){
	#oshiage {background: url(../images/fast_bg_left.png) no-repeat center left -50px/ 100px, url(../images/fast_bg_right.png) no-repeat center right -50px/ 100px, linear-gradient(#f5f2ec, #ffffff);height: 500px;}
	#oshiage div .txt{margin-bottom: 20px;}
	#oshiage div .midashi {font-size: 1.125rem;}
	#oshiage div .midashi span {font-size: 1.25rem;padding: 10px 15px;}
}

/*ご利用までの流れ***************/
#flow{
	width: 84%;
	max-width: 1585px;
	margin: -240px auto 0;
	padding-top: 150px;
}
#flow .midashi{
	color: #fff;
	background-color: #8FCE78;
	border-radius: 50px;
	text-align: center;
	font-weight: 600;
	font-size: 1.875rem;
	margin: auto;
    display: table;
    padding: 5px 80px;
}
#flow .flex{
	display: flex;
	justify-content: space-between;
	margin: 100px 0 150px;
}
#flow .box{
	width: 29%;
	position: relative;
}
#flow .box .flow_img{
	width: 100%;
	margin-bottom: 10px;
}
#flow .box:nth-child(1) .flow_img,#flow .box:nth-child(3) .flow_img{
	margin-bottom: 55px;
}
#flow .box p{
	text-align: center;
	font-size: 1.5rem;
}
#flow .box p span{
	background-color: #00ADEC;
	color: #fff;
	font-weight: 600;
	font-size: 1.75rem;
	display: block;
	padding: 12px 10px;
}
#flow .box:nth-child(1) p span{
	font-size: 2.5rem;
	padding: 0 10px;
}
#flow .box:nth-child(1) p span a{
	color: #fff;
}
#flow .number{
	position: absolute;
	width: 35%;
    top: -50px;
    left: -80px;
}
#flow .arrow{
	position: absolute;
	width: 57px;
	top: 35%;
    right: -18%;
  transform:translate(0%,-50%);
}
@media screen and (max-width: 1472px){
	#flow {width: 90%;}
	#flow .number{width: 30%;top: -40px;left: -50px;}
	#flow .box:nth-child(1) p span {font-size: 2.125rem;padding: 7px 10px;}
	#flow .arrow{width: 15%;}
}
@media screen and (max-width: 1218px){
	#flow .box:nth-child(1) .flow_img, #flow .box:nth-child(3) .flow_img {margin-bottom: 48px;}
	#flow .box:nth-child(1) p span {font-size: 1.75rem;}
	#flow .box p {font-size: 1.25rem;}
	#flow .box p span{font-size: 1.5rem;}
}
@media screen and (max-width: 1115px){
	#flow{margin: -140px auto 0;}
	#flow .number {top: -30px;left: -40px;}
	#flow .box:nth-child(1) p span {font-size: 1.5rem;}
	#flow .box p span {font-size: 1.25rem;}
}
@media screen and (max-width: 960px){
	#flow {margin: -200px auto 0;padding-top: 100px;}
	#flow .midashi{font-size: 1.25rem;}
	#flow .flex{flex-flow: column;margin: 80px 0 100px;}
	#flow .box {width: 50%;margin: auto;padding-bottom: 100px;}
	#flow .box:nth-child(3){padding-bottom: 0;}
	#flow .box:nth-child(1) .flow_img, #flow .box:nth-child(3) .flow_img {margin-bottom: 10px;}
	#flow .arrow{width: 50px;top: 90%;right: 50%;transform: translate(50%, -50%) rotate(90deg);}
	#flow .number {width: 100px;}
}
@media screen and (max-width: 768px){
	#flow {margin: -200px auto 0;}
	#flow .box{width: 70%;}
}
@media screen and (max-width: 500px){
	#flow {margin: -150px auto 0;padding-top: 80px;}
	#flow .flex {margin: 80px 0;}
	#flow .midashi {font-size: 1rem;padding: 5px 40px;}
	#flow .number {width: 70px;}
	#flow .box p {font-size: 1rem;}
}
@media screen and (max-width: 375px){
	#flow .box {width: 80%;padding-bottom: 60px;}
	#flow .number {top: -20px;left: -20px;}
	#flow .box p span {font-size: 1.125rem;}
	#flow .arrow {width: 30px;}
}

/*サービス内容***************/
#service{
	background-color: #FDF4F6;
	padding-top: 150px;
	padding-bottom: 150px;
}
#service h3{
	color: #fff;
	text-align: center;
	font-size: 1.5rem;
	padding: 10px;
}
#service .bg_g{background-color: #8FCE78;}
#service .bg_gy{background-color: #EBFAE5;}
#service .bg_o{background-color: #FFB764;}
#service .bg_y{background-color: #FFFCDE;}
#service .bg_r{background-color: #F78D8D;}
#service .flex{
	padding: 5%;
	margin-bottom: 70px;
}
#service .flex ul{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap:wrap;
}
#service .flex ul:nth-child(2){
	margin-top: 30px;
}
#service .flex ul li{
	width: 20%;
}
#service .flex ul li img{
	width: 100%;
}
#service .flex ul li:not(:nth-child(4n+4)) {
    margin-right: 3%;
}
#service .flex ul li:nth-child(n+5) {
    margin-top: 30px;
}
#service .flex ul li:last-child{
	margin-right: 0%;
}
#service .flex2{
	display: flex;
	align-items:center;
	justify-content: space-between;
	margin-top: 40px;
}
#service .flex2 p{
	text-align: center;
	color: #F78D8D;
	background-color: #fff;
	border: 2px solid #F78D8D;
	border-radius: 50px;
	width: 47%;
	font-size: 1.25rem;
}
@media screen and (max-width: 960px){
	#service{padding: 100px 0;}
}
@media screen and (max-width: 768px){
	#service .flex ul li {width: 30%;}
	#service .flex ul li:nth-child(n+4) {margin-top: 20px;}
	#service .flex ul li:not(:nth-child(3n+3)) {margin-right: 3%;}
	#service .flex ul:nth-child(2) {margin-top: 20px;}
}
@media screen and (max-width: 500px){
	#service {padding: 80px 0;}
	#service h3{font-size: 1rem;}
	#service .flex{margin-bottom: 50px;}
	#service .flex2{margin-top: 20px;}
	#service .flex2 p{font-size: 0.875rem;}
}

/*サービスの流れ***************/
#service_flow{
	background-color: #F5F2EC;
	padding-top: 150px;
	padding-bottom: 150px;
}
#service_flow .flex{
	display: flex;
	justify-content: space-between;
	margin-top: 180px;
}
#service_flow .syokai{
	width: 37%;
	padding: 10% 5% 5%;
	background-color: #fff;
	position: relative;
}
#service_flow .syokai .flow_number{
	width: 52%;
	position: absolute;
	top: -13%;
  left:50%;
  transform:translate(-50%,0%);
}
#service_flow .syokai .service_img{
	width: 100%;
	position: relative;
	z-index: 1;
}
#service_flow .syokai .ttl{
	text-align: center;
	font-weight: 600;
	color: #FBB03B;
	font-size: 2.5rem;
	margin: 5px 0 40px;
}
#service_flow .box{
	position: relative;
}
#service_flow .box p:first-child{
	position: absolute;
    top: -50px;
    left: 0;
    font-size: 3.375rem;
    color: #FBB03B;
    font-weight: 600;
}
#service_flow .box p:nth-child(2){
	background-color: #FFF3E1;
	text-align: center;
	font-size: 1.5rem;
	padding: 20px;
	margin-bottom: 80px;
}
#service_flow .box img{
	position: absolute;
    width: 40px;
    transform: rotate(90deg) translate(-50%, 50%);
    bottom: -95%;
    left: 50%;
}
#service_flow .syokai .box:nth-child(7) p:nth-child(2){
	margin-bottom: 0;
}
@media screen and (max-width: 1115px){
	#service_flow .syokai .ttl{font-size: 1.875rem;}
	#service_flow .box p:nth-child(2){font-size: 1.25rem;}
}
@media screen and (max-width: 960px){
	#service_flow{padding: 100px 0;}
	#service_flow .flex{flex-flow: column;}
	#service_flow .syokai{margin: auto;width: 80%;}
	#service_flow .syokai:first-child{margin-bottom: 200px;}
	#service_flow .syokai .flow_number {width: 32%;}
	#service_flow .syokai .service_img{width: 80%;margin: auto;display: block;}
	#service_flow .box img{bottom: -80px;}
	#service_flow .box p:first-child{top: -40px;font-size: 2.75rem;}
}
@media screen and (max-width: 768px){
	#service_flow .syokai .ttl{font-size: 1.5rem;}
}
@media screen and (max-width: 500px){
	#service_flow {padding: 80px 0;}
	#service_flow .flex{margin-top: 100px;}
	#service_flow .syokai:first-child {margin-bottom: 100px;}
	#service_flow .syokai .flow_number{top: -10%;}
	#service_flow .syokai .ttl {font-size: 1.25rem;margin: 5px 0 20px;}
	#service_flow .box p:first-child{font-size: 1.875rem;top: -30px;}
	#service_flow .box p:nth-child(2) {font-size: 1rem;padding: 15px;margin-bottom: 60px;}
	#service_flow .box img {bottom: -60px;width: 30px;}
}

/*Q & A***************/
#qa{
	background: url(../images/qa_bg.jpg) no-repeat center center/ cover;
	padding-top: 150px;
	padding-bottom: 150px;
	margin-bottom: 150px;
}
#qa .bg{
	width: 90%;
	max-width: 1560px;
	margin: auto;
	background-color: rgba(255,255,255,0.8);
	padding: 100px 0;
}
#qa .flex{
	display: flex;
	flex-wrap:wrap;
	margin: 80px 0 50px;
}
#qa .flex .box{
	width: 35%;
	background: url(../images/qa_boxbg.png) no-repeat right bottom/ cover;
	padding: 5%;
	position: relative;
}
#qa .flex .box::before{
	content: "";
    position: absolute;
    display: inline-block;
    width: 46px;
    height: 46px;
    background-image: url(../images/qa_pin.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: -5%;
    left: 50%;
    transform: translate(-50%, 0%);
}
#qa .flex .box:first-child{
    margin-right: 10%;
}
#qa .flex .box:nth-child(n+3) {
    margin-top: 100px;
}
#qa .flex .box:nth-child(3){
	height: 350px;
}
#qa .flex .box .item{
	display: flex;
	align-items: flex-start;
}
#qa .flex .box .item:first-child{
	margin-bottom: 30px;
}
#qa .flex .box .item img{
	width: 70px;
	margin-right: 20px;
}
#qa .flex .box .item .ttl{
	font-weight: 600;
	color: #00ADEC;
	font-size: 1.5rem;
}
#qa .flex .box .item .txt{
	font-size: 1.25rem;
}
#qa .bikou{
	font-size: 1rem;
}
@media screen and (max-width: 1200px){
	#qa .flex .box .item .ttl{line-height: 1.4;}
	#qa .flex .box .item .txt{line-height: 1.6;}
}
@media screen and (max-width: 960px){
	#qa{padding: 100px 0;margin-bottom: 100px;background: url(../images/qa_bg2.jpg) no-repeat center bottom/ cover;height: 2100px;}
	#qa .bg{padding: 80px 0 50px;}
	#qa .flex .box{width: 80%;margin: auto;padding: 10%;}
	#qa .flex .box:first-child {margin-right: 0%;}
	#qa .flex .box:nth-child(n+2) {margin-top: 30px;}
	#qa .flex .box:nth-child(3) {height: auto;}
	#qa .flex .box .item .ttl{font-size: 1.25rem;}
	#qa .flex .box .item .txt {font-size: 1rem;}
	#qa .flex .box .item img {width: 50px;}
}
@media screen and (max-width: 768px){
	#qa{height: 2000px;}
}
@media screen and (max-width: 500px){
	#qa {padding: 80px 0;height: 1600px;}
	#qa .flex{margin: 50px 0;}
	#qa .flex .box::before{width: 30px;height: 30px;}
	#qa .flex .box .item img { width: 30px;margin-right: 10px;}
	#qa .flex .box .item .ttl{font-size: 1rem;}
	#qa .bikou {font-size: 0.875rem;}
}
@media screen and (max-width: 360px){
	#qa{padding: 80px 0 0px;height: 1900px;}
}

/*会社情報***************/
#company{
	width: 90%;
	max-width: 1340px;
	border: 1px solid #FBB03B;
	margin: auto;
	padding-bottom: 150px;
}
#company h2{
	padding-top: 150px;
}
#company h2::before{
	display: none;
}
#company .info{
	width: 90%;
	max-width: 800px;
	margin: auto;
}
#company .info table{
	width: 100%;
	border-top: 1px solid #FBB03B;
	margin-bottom: 30px;
}
#company .info table th,#company .info table td{
	border-bottom: 1px solid #FBB03B;
	padding: 10px 0;
}
#company .info table th{
	color: #FBB03B;
	font-weight: 600;
	text-align: left;
	padding-left: 20px;
	width: 120px;
}
#company .info table td a{
	color: #000;
}
#company .info .box{
	background-color: #FFF3E1;
	display: flex;
	align-items: center;
	padding: 20px 30px;
	margin-bottom: 15px;
}
#company .info .box p:first-child{
	color: #FBB03B;
	font-weight: 600;
	width: 280px;
}
#company .info .box p:last-child{
	width: calc(100% - 280px);
}
#company .info .btn{
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
#company .info .btn a{
	background: url(../images/link_arrow_w.png) no-repeat center right 20px/ 15px;
	background-color: #FBB03B;
	border: 2px solid #FBB03B;
	text-align: center;
	color: #fff;
	font-weight: 600;
	font-size: 1.5rem;
	width: calc(45% - 40px);
	border-radius: 10px;
	padding: 20px;
}
#company .info .btn a:hover{
	background: url(../images/link_arrow_o.png) no-repeat center right 20px/ 15px;
	background-color: #fff;
	border: 2px solid #FBB03B;
	color: #FBB03B;
}
#company .syorui{
	width: 80%;
	max-width: 1300px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
}
#company .syorui a{
	width: 48.5%;
	background: url(../images/link_arrow_o.png) no-repeat center right 20px/ 15px;
	background-color: #F5F2EC;
	border: 3px solid #FBB03B;
	text-align: center;
	font-weight: 600;
	color: #000;
	border-radius: 10px;
	padding: 20px 2%;
	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
	box-sizing: border-box;
	letter-spacing: 0em;
}
#company .syorui a:not(:nth-child(2n+2)) {
    margin-right: 3%;
}
#company .syorui a:nth-child(n+3) {
    margin-top: 30px;
}
#company .syorui a:last-child {
    margin-right: 0%;
}
#company .syorui a:hover{
	background: url(../images/link_arrow_w.png) no-repeat center right 20px/ 15px;
	background-color: #FBB03B;
	color: #fff;
}
@media screen and (max-width: 1440px){
	#company .syorui{width: 90%;}
}
@media screen and (max-width: 1285px){
	#company .syorui a{padding: 20px 5%;}
}
@media screen and (max-width: 960px){
	#company{padding-bottom: 100px;}
	#company h2 {padding-top: 100px;}
	#company .info table th,#company .info table td{display: block;width: 100%;}
	#company .info table th{padding-left: 0px;border-bottom:none;padding: 20px 0 0;}
	#company .info table td{padding: 5px 0 20px;}
	#company .info .box{display: block;}
	#company .info .box p:first-child,#company .info .box p:last-child,#company .syorui a{width: 100%;}
	#company .syorui a:not(:nth-child(2n+2)) {margin-right: 0%;}
	#company .syorui a:nth-child(n+2) {margin-top: 10px;}
}
@media screen and (max-width: 768px){
	#company .info .btn{flex-flow: column;}
	#company .info .btn a{font-size: 1.25rem;width: calc(100% - 40px);}
	#company .info .btn a:first-child{margin-bottom: 10px;}
	#company .syorui a {padding: 20px 50px;}
}
@media screen and (max-width: 500px){
	#company h2 {padding-top: 80px;}
	#company .info .btn a{font-size: 1rem;background: url(../images/link_arrow_w.png) no-repeat center right 20px / 10px;background-color: #FBB03B;}
	#company .syorui a{background: url(../images/link_arrow_o.png) no-repeat center right 20px / 10px;background-color: #F5F2EC;}
}

/*footer***************/
footer nav{
	justify-content: center;
	width: 100%;
} 
footer .bg{
	position: relative;
	background-color: #F5F2EC;
	margin-top: 150px;
	padding: 80px 0 20px;
}
footer h2 {
	display: block;
	margin: 30px auto;
    width: 370px;
    padding: 0;
}
footer h2::before{
	display: none;
}
footer h2 img{
	width: 100%;
}
footer h2 a:hover{
	opacity: 0.5;
}
footer .flex{
	display: flex;
	align-items: center;
	justify-content: center;
}
footer .tel{
	color: #000;
	font-size: 2rem;
	font-weight: 600;
	margin-right: 30px;
}
footer .f_contact{
	background: url(../images/mail.jpg) no-repeat center left / 60px;
    background-color: #FBB03B;
    color: #fff;
    font-weight: 600;
    padding: 7px 50px 7px 94px;
    font-size: 1.5rem;
}
footer .copy{
	text-align: center;
	font-size: 0.75rem;
	margin-top: 50px;
}
footer .moyou1{
	position: absolute;
	top:12%;
	left:0%;
	width: 220px;
}
footer .moyou2{
	position: absolute;
	top:12%;
	right:0%;
	width: 220px;
}
footer a.riborn_logo{
	width: 450px;
	 display: block;
	margin: 40px auto;
}
footer a.riborn_logo img{
	width: 100%;
}

/*リンクを右下に固定*/
#page-top {
	position: -webkit-sticky;
    position: sticky;
    bottom: 20px;
	right: 20px;
    float: right;
	margin-top: 110px;
	z-index: 1;
}
#page-top a{
	transition:all 0.3s;
}
#page-top img{
	width: 74px;
}
footer a:hover{
	opacity: 0.5;
}
@media screen and (max-width: 1150px){
	footer h2{margin: 20px auto;width: 300px;}
	footer .tel{font-size: 1.625rem;}
	footer .f_contact{background: url(../images/mail.jpg) no-repeat center left / 50px;background-color: #FBB03B;font-size: 1.25rem;padding: 7px 30px 7px 74px;}
	footer .moyou1,footer .moyou2{width: 190px;}
	footer .copy{margin-top: 40px;}
	footer a.riborn_logo {width: 350px;}
}
@media screen and (max-width: 960px){
	footer .bg{padding: 60px 0 20px;}
	footer h2 {margin: 40px auto 20px;}
	footer .flex{flex-flow: column;}
	footer .tel{margin-right: 0px;margin-bottom: 10px;}
	footer .moyou1, footer .moyou2 {width: 130px;top: 20%;}
}
@media screen and (max-width: 768px){
	footer .bg {padding: 10px 0 20px;}
	footer nav{display: none;}
	footer .moyou1, footer .moyou2 {width: 100px;top: 60%;}
	footer a.riborn_logo {width: 300px;}
}
@media screen and (max-width: 500px){
	#company {padding-bottom: 60px;}
	footer .bg{margin-top: 100px;}
	footer h2{width: 220px;}
	footer .tel {font-size: 1.25rem;}
	footer .f_contact{font-size: 1rem;background: url(../images/mail.jpg) no-repeat center left / 30px;background-color: #FBB03B;padding: 0px 20px 0px 50px;}
	footer a.riborn_logo {width: 200px;}
	footer .moyou1, footer .moyou2 {width: 50px;top: 75%;}
	footer .copy{font-size: 0.625rem;}
	#page-top{margin-top: 70px;}
	#page-top img {width: 60px;}
}