@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

html {
	scroll-behavior: smooth;
}
#fmaj {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-weight: 600;
}
#fmaj .pc {
	display: none;
}
@media screen and (max-width:599px) {
	#fmaj .pc {
		display: block;
	}
}
#fmaj .line > span{
	display: block;
	width: 100%;
	height: 0.5px;
	background-color: #d5d5d5;
}

#fmaj .content__ttl {
	font-size: min(4.68vw,40px);
	text-align: center;
	letter-spacing: 0.2em;
	line-height: 2;
	font-weight: 600;
	margin-top: 160px;
}
@media screen and (max-width:768px) {
	#fmaj .content__ttl {
		font-size: max(4.26vw, 16px);
	}
}
@media screen and (max-width:599px) {
	#fmaj .content__ttl {
    font-size: max(4.8vw, 18px);
		margin-top: 16%;
	}
}
#fmaj .grayscale_anim img{
	filter: grayscale(100%);/*モノクロ具合を変更したい場合はこの数値を変更*/
	transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}
/* 画面に入った時の動き */
#fmaj .show_gray img {
	filter:grayscale(0);
}
#fmaj .fmaj__header h1.logo > a:hover,
#fmaj .footer__logo > a:hover {
	opacity: 0.7;
}
/*=======================

	header

=======================*/
#fmaj .fmaj__header {
	position: sticky;
	background-color: #fff;
	z-index: 99;
	width: 100%;
	top: 0;
}
@media screen and (max-width:768px) {
	#fmaj .fmaj__header {
		height: 88px;
	}
}
@media screen and (max-width:599px) {
	#fmaj .fmaj__header {
		height: 68px;
	}
}
#fmaj .fmaj__header .header__inner {
	padding: 16px 4%;
	display: flex;
	align-items: center;
}
#fmaj .fmaj__header .header__inner .logo {
	max-width: 240px;
	width: 48%;
}
@media screen and (max-width:599px) {
	#fmaj .fmaj__header .header__inner .logo {
		width: 38%;
	}
}
#fmaj .fmaj__header .header__inner .main_nav {
	width: 100%;
}
@media screen and (max-width:768px) {
	#fmaj .fmaj__header .header__inner .main_nav {
		width: 0;
	}
}
#fmaj .fmaj__header .header__inner .main_nav ul {
	display: flex;
	font-size: min(2.34vw, 20px);
	letter-spacing: 0.1em;
	align-items: center;
	justify-content: flex-end;
}
@media screen and (max-width:768px) {
	#fmaj .fmaj__header .header__inner .main_nav ul {
		display: none;
	}
}
#fmaj .fmaj__header .header__inner .main_nav ul li+li {
	margin-left: 4%
}
#fmaj .fmaj__header .header__inner .main_nav ul li:not(.nav__contact) a {
	position: relative
}
#fmaj .fmaj__header .header__inner .main_nav ul li:not(.nav__contact) a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
#fmaj .fmaj__header .header__inner .main_nav ul li:not(.nav__contact) a:hover::after {
  bottom: -12px;
  opacity: 1;
  visibility: visible;
}
#fmaj .fmaj__header .header__inner .main_nav ul .nav__contact > a {
	padding: 10px 28px;
  display: block;
	border-radius: 40px;
	border: solid 1px #000;
	background-color: #000;
	color: #fff;
	transition: .3s ease-in-out;
}
#fmaj .fmaj__header .header__inner .main_nav ul .nav__contact > a:hover {
	background-color: #fff;
	color: #000;
}


/*============================

  hamburger menu

=============================*/
#fmaj .nav_area__sp {
  display: none;
}
#fmaj .sp__nav_contact {
	display: none;
}
@media screen and (max-width:768px) {
	#fmaj .sp__nav_wrap {
		margin-left: auto;
    margin-right: calc(50px + 4%);
	}
	#fmaj .sp__nav_contact {
		display: block
	}
	#fmaj .sp__nav_contact > a {
		font-size: max(3.2vw, 12px);
			background-color: #000;
			color: #fff;
			padding: 12px 24px;
			border-radius: 40px;
	}

  #fmaj .nav_area__sp {
    display: block;
  }
  #fmaj .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 4%;
    top: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    text-align: center;
  }

  #fmaj .hamburger span {
    display: block;
    position: absolute;
    width: 50px;
    height: 2px;
    background: #000;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #fmaj .hamburger span:nth-child(1) {
    top: 20px;
  }
  #fmaj .hamburger span:nth-child(2) {
    top: 28px;
  }

  /* ナビ開いてる時のボタン */
  #fmaj .hamburger.active span:nth-child(1) {
    top: 24px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #fmaj .hamburger.active span:nth-child(2) {
    top: 24px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #fmaj .menu__area_sp {
    position: fixed;
		background-color: #fff;
		color: #000;
    z-index: 2;
    top: 88px;
    left: 0;
    font-size: max(4.8vw, 18px);;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #fmaj .menu__area_logo {
    max-width: 280px;
    width: 50%;
    position: absolute;
    top: 16px;
    left: 4%;
  }
  #fmaj .menu__area_sp ul li {
    padding-bottom: 40px;
    text-align: center;
    color: #000;
  }

  #fmaj .menu__area_sp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  /* このクラスを、jQueryで付与・削除する */
  #fmaj .menu__area_sp.active {
    transform: translateX(0%);
  }
}
@media screen and (max-width:599px) {
	#fmaj .hamburger {
		top: 8px;
	}
	#fmaj .menu__area_sp {
    top: 68px;
	}
}


/*=======================

	lead

=======================*/
#fmaj #fmaj__lead .lead__txt_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 4%;
	margin-top: 120px;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__lead .lead__txt_wrap {
		margin-top: 16%;
	}
}
#fmaj #fmaj__lead .lead__txt_wrap > p {
	font-size: min(2.86vw, 22px);
	letter-spacing: 0.2em;
	line-height: 3.1;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__lead .lead__txt_wrap > p {
		font-size: max(3.73vw, 14px);
	}
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__lead .lead__txt_wrap > p {
    line-height: 2;
    width: 90%;
    margin: 0 auto;
	}
}
#fmaj #fmaj__lead .lead__txt_wrap > .catch_copy {
	width: 100%;
	font-size: min(7.8vw, 60px);
	line-height: 1.6;
	margin: 0 auto;
	text-align: center;
	letter-spacing: 0.2em;
	margin-top: 80px;
	word-break: keep-all;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__lead .lead__txt_wrap > .catch_copy {
		margin-top: 12%;
	}
}
#fmaj #fmaj__lead .bg_img01 {
	margin-top: -11%;
}
/*=======================

	fmaj__about

=======================*/
#fmaj #fmaj__about .fmaj__ttl {
	max-width: 640px;
	width: 64%;
}
#fmaj #fmaj__about .line_about {
	transform: skewY(-10deg);
	margin-top: 80px;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__about .line_about {
		margin-top: 12%;
	}
}
#fmaj #fmaj__about .line_cnt {
	transform: skewY(7deg);
	margin-top: 170px;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__about .line_cnt {
		margin-top: 20%;
	}
}
#fmaj #fmaj__about .fmaj__logo {
	text-align: center;
	margin-top: 160px;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__about .fmaj__logo {
		width: 80%;
		margin: 16% auto 0;
	}
}
#fmaj #fmaj__about .about__txt_wrap {
	display: flex;
	justify-content: center;
	padding: 0 4%;
	margin-top: 80px;
	font-size: min(2.73vw, 21px);
	letter-spacing: 0.2em;
	line-height: 2.61;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__about .about__txt_wrap {
		font-size: max(3.73vw, 14px);
		width: 90%;
		margin: 80px auto 0;
	}
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__about .about__txt_wrap {
		line-height: 1.8;
		margin-top: 8%;
	}
}
#fmaj #fmaj__about .step__list {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2%;
	margin-top: 80px;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__about .step__list {
		flex-direction: column;
	}
}
#fmaj #fmaj__about .step__list .step__item {
	max-width: 394px;
	width: 32%;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__about .step__list .step__item {
    width: 90%;
    max-width: none;
	}
}
#fmaj #fmaj__about .step__list .arrow {
	margin: 2% 16px 0;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__about .step__list .arrow {
    margin: 16px 0;
    transform: rotate(90deg);
	}
	#fmaj #fmaj__about .step__list .arrow > img {
		width: 46px;
	}
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__about .step__list .arrow > img {
		width: 28px;
	}
}
#fmaj #fmaj__about .consult_ttl {
	font-size: min(4.94vw, 34px);
	text-align: center;
	letter-spacing: 0.2em;
	line-height: 2;
	margin-top: 120px;
	padding: 0 4%;
	word-break: keep-all;
	font-weight: 600;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__about .consult_ttl {
		font-size: max(4.26vw, 16px);
    text-align: left;
    width: 90%;
    margin: 12% auto 0;
	}
}
#fmaj #fmaj__about .consult_item {
	max-width: 1242px;
	width: 98%;
	margin: 80px auto 0;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__about .consult_item {
		margin-top: 12%;
		width: 85%;
	}
}
#fmaj #fmaj__about .line__step_btm {
	margin-top: 240px;
	position: relative;
	z-index: -1;
}
#fmaj #fmaj__about .line__step_btm span {
	transform: skewY(-10deg);
}
#fmaj #fmaj__about .line__step_btm span:nth-of-type(2n) {
	transform: skewY(15deg) translateY(30px);
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__about .line__step_btm {
		margin-top: 24%;
	}
	#fmaj #fmaj__about .line__step_btm span:nth-of-type(2n) {
		transform: skewY(15deg) translateY(10px);
	}
}
/*=======================

	fmaj__service

=======================*/
#fmaj #fmaj__service .fmaj__ttl {
	max-width: 760px;
	width: 76%;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__service .service__ttl {
		margin-top: -24px;
	}
}

#fmaj #fmaj__service .line__service_top {
	margin-top: 120px;
	position: relative;
	z-index: -1;
}
#fmaj #fmaj__service .line__service_top span {
	transform: skewY(-13deg);
}
#fmaj #fmaj__service .line__service_top span:nth-of-type(2n){
	transform: skewY(17deg) translateY(-300px);
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__service .line__service_top span:nth-of-type(2n){
    transform: skewY(10deg) translateY(-40px);
	}
}
#fmaj #fmaj__service .service__content {
	max-width: 1200px;
	margin: 120px auto 0;
	width: 96%;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__service .service__content {
		width: 100%;
		margin: 16% auto 0;
	}
}
#fmaj #fmaj__service .service__item {
	display: flex;
	margin-top: 300px;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__service .service__item {
		flex-direction: column;
		margin-top: 24%;
	}
}
#fmaj #fmaj__service .service__item .item__txt_wrap {
	width: 56%;
}
#fmaj #fmaj__service .service__item .item__img {
	width: 44%;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__service .service__item .item__txt_wrap {
		width: 100%;
	}
	#fmaj #fmaj__service .service__item .item__img {
		width: 90%;
		margin: 0 auto;
	}
}

#fmaj #fmaj__service .service__item .item__ttl {
	font-size: min(3.38vw, 30px);
	font-weight: 900;
	letter-spacing: 0.2em;
	line-height: 1.73;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__service .service__item .item__ttl {
		font-size: max(4.53vw, 17px);
		letter-spacing: 0.16em;
    width: 90%;
    margin: 0 auto;
	}
}
#fmaj #fmaj__service .service__item .step {
	display: block;
	border-bottom: solid 0.5px #000;
	padding-bottom: 12px;
	margin-bottom: 40px;
}
#fmaj #fmaj__service .service__item .step > img {
	width: 40%;
	max-width: 211px;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__service .service__item .step > img {
		width: 26%;
	}
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__service .service__item .step {
		margin-left: 5%;
	}
}
#fmaj #fmaj__service .service__item .item__txt {
	font-size: min(2.34vw, 20px);
	letter-spacing: 0.12em;
	font-weight: 500;
	line-height: 2.35;
	width: 90%;
	margin-top: 16px;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__service .service__item .item__txt {
    font-size: max(3.73vw, 14px);
		line-height: 1.8;
    margin: 4% auto 8%;
    width: 90%;
	}
}
#fmaj #fmaj__service .service__item:nth-of-type(even) {
	flex-direction: row-reverse;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__service .service__item:nth-of-type(even) {
		flex-direction: column;
	}
}
#fmaj #fmaj__service .service__item:nth-of-type(even) .step > img {
	margin-left: 10%;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__service .service__item:nth-of-type(even) .step > img {
		margin-left: 0;
	}
}
#fmaj #fmaj__service .service__item:nth-of-type(even) .item__ttl {
	margin-left: 10%;
	width: 90%;
}
#fmaj #fmaj__service .service__item:nth-of-type(even) .item__txt {
	margin-left: 10%;
	width: 90%;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__service .service__item:nth-of-type(even) .item__ttl,
	#fmaj #fmaj__service .service__item:nth-of-type(even) .item__txt {
		margin-left: auto;
	}
}
#fmaj #fmaj__service .line__service_flow {
	position: relative;
	z-index: -1;
	margin-top: 240px;
}
#fmaj #fmaj__service .line__service_flow > span {
	transform: skewY(-9deg);
}
#fmaj #fmaj__service .line__service_flow > span:nth-of-type(2n){
	transform: skewY(19deg);
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__service .line__service_flow {
		margin-top: 24%;
	}
}
#fmaj #fmaj__service .flow__ttl {
	margin-top: 80px;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__service .flow__ttl {
		margin-top: 12%;
	}
}
#fmaj #fmaj__service .flow__bg {
	background-color: #ccc;
	padding: 80px 4%;
	margin-top: 40px;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__service .flow__bg {
		margin-top: 8%;
		padding: 12% 4%;
	}
}
#fmaj #fmaj__service .flow__bg .flow__list {
	background-color: #fff;
	max-width: 1000px;
	margin: 0 auto;
	padding: 60px 4%;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__service .flow__bg .flow__list {
		padding: 6% 4%;
	}
}
#fmaj #fmaj__service .flow__bg .flow__list .flow__item_wrap {
	display: flex;
  flex-direction: column;
}
#fmaj #fmaj__service .flow__bg .flow__list .flow__item_wrap::after {
	content: "";
	display: inline-block;
	color: #000;
	line-height: 1;
	width: 20px;
	height: 20px;
	border: 0.5px solid #000;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateX(30px) rotate(135deg);
	text-align: center;
	margin: 0 auto;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__service .flow__bg .flow__list .flow__item_wrap::after {
		transform: translateX(10px) rotate(135deg);
	}
}
#fmaj #fmaj__service .flow__bg .flow__list .flow__item_wrap:last-of-type::after {
	display: none
}
#fmaj #fmaj__service .flow__bg .flow__list .flow__item {
	border: solid 0.5px #000;
	display: flex;
	align-items: center;
	margin: 24px 0 6px;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__service .flow__bg .flow__list .flow__item {
		margin: 16px 0 6px;
	}
}

#fmaj #fmaj__service .flow__bg .flow__list .flow__item > .flow__txt {
	text-align: center;
	margin: 0 auto;
	display: block;
	font-size: 25px;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__service .flow__bg .flow__list .flow__item > .flow__txt {
		font-size: max(4vw, 15px);
	}
}
#fmaj #fmaj__service .flow__bg .flow__list .flow__item > .number {
	background-color: #000;
	color: #fff;
	padding: 16px 24px;
	display: inline-block;
	font-size: 40px;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__service .flow__bg .flow__list .flow__item > .number {
		font-size: max(5.33vw, 20px);
		padding: 10px 16px;
	}
}
/*=======================

	fmaj__service（merit）

=======================*/
#fmaj #fmaj__service .line__service_merit {
	margin-top: 240px;
}
#fmaj #fmaj__service .line__service_merit > span {
	transform: skewY(8deg);
}
#fmaj #fmaj__service .line__service_merit_btm {
	margin-top: 160px;
	position: relative;
	z-index: -1;
}
#fmaj #fmaj__service .line__service_merit_btm > span {
	transform: skewY(-10deg);
}
#fmaj #fmaj__service .line__service_merit_btm > span:nth-of-type(2n) {
	transform: skewY(29deg) translateY(220px);
}
#fmaj #fmaj__service .merit_item {
	width: 98%;
	margin: 80px auto 0;
	max-width: 1185px;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__service .merit_item {
		margin: 8% auto 0;
		width: 85%;
	}
}
#fmaj #fmaj__service .bg_img03 {
	margin-top: 160px;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__service .bg_img03 {
		margin-top: 16%;
	}
}
/*=======================

	fmaj__message

=======================*/
@media screen and (max-width:599px) {
	#fmaj #fmaj__message .message__ttl {
		margin-top: -40px;
	}
}
#fmaj #fmaj__message .fmaj__ttl {
	max-width: 886px;
	width: 88%;
}
#fmaj #fmaj__message .line__message_top {
	margin-top: 80px;
  position: relative;
  z-index: -1;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__message .line__message_top {
		margin-top: 100px;
	}
}
#fmaj #fmaj__message .line__message_top > span {
	transform: skewY(-14deg);
}
#fmaj #fmaj__message .line__message_top > span:nth-of-type(2n) {
	transform: skewY(15deg) translateY(-330px);
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__message .line__message_top > span:nth-of-type(2n) {
		transform: skewY(15deg) translateY(-60px);
	}
}
#fmaj #fmaj__message .message__content {
	display: flex;
	justify-content: center;
	padding: 0 4%;
	margin-top: 120px;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__message .message__content {
		flex-direction: column;
		margin-top: 12%;
	}
}
#fmaj #fmaj__message .message__content .message__img {
	max-width: 780px;
	margin-right: 4%;
	width: 40%;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__message .message__content .message__img {
		margin: 0 auto;
		width: 90%;
	}
}
#fmaj #fmaj__message .message__content .massage__txt {
	max-width: 600px;
	font-size: min(2.34vw, 20px);
	line-height: 2.35;
	letter-spacing: 0.1em;
	width: 60%;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__message .message__content .massage__txt {
		width: 90%;
		margin: 8% auto 0;
		font-size: max(3.73vw, 14px);
	}
}
#fmaj #fmaj__message .ceo_profile {
	font-family: 'Noto Sans JP', sans-serif;
	margin-top: 24px;
	font-weight: 500;

}
#fmaj #fmaj__message .ceo_profile .name {
	font-size: min(3.64vw, 31px);
	letter-spacing: 0.3em;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__message .ceo_profile .name {
    font-size: max(5.86vw, 22px);
	}
}
#fmaj #fmaj__message .ceo_profile .name .job {
	font-size: min(2.08vw, 19px);
	letter-spacing: 0.1em;
	margin-left: 12px;
}
#fmaj #fmaj__message .ceo_profile .name-en {
	font-size: min(2.08vw, 19px);
	letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__message .ceo_profile .name .job,
	#fmaj #fmaj__message .ceo_profile .name-en {
		font-size: max(3.73vw, 14px);
	}
}
/*=======================

	contact

=======================*/
#fmaj #fmaj__contact .contact__bg {
	background-image: url(../images/contact_bg.svg);
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 71.6%;
	padding-left: 4%;
	padding-right: 4%;
	margin-top: 120px;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__contact .contact__bg {
		padding-left: 0%;
		padding-right: 0%;
	}
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__contact .contact__bg {
		padding-top: 140%;
	}
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__contact .contact__bg {
		background-image: url(../images/contact_bg_sp.svg);
	}
}
#fmaj #fmaj__contact .contact__box {
	background-color: #231815;
	color: #fff;
	max-width: 1200px;
	margin: -60% auto 120px;
	padding: 80px 4%;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__contact .contact__box {
		margin: -125% auto 120px;
	}
}
#fmaj #fmaj__contact .contact__box .contact__ttl {
	font-size: min(5.20vw, 58px);
	letter-spacing: 0.1em;
	text-align: center;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__contact .contact__box .contact__ttl {
		font-size: max(8vw, 30px);
	}
}
#fmaj #fmaj__contact .contact__box .contact__txt {
	font-size: min(2.60vw, 24px);
	letter-spacing: 0.1em;
	text-align: center;
	line-height: 2;
	margin-top: 40px;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__contact .contact__box .contact__txt {
		font-size: max(3.73vw, 14px);
	}
}
#fmaj #fmaj__contact .contact__box .contact__btn {
	text-align: center;
	margin: 40px auto 0;
}
#fmaj #fmaj__contact .contact__box .contact__btn a {
	display: inline-block;
	font-size: min(2.34vw, 20px);
	background-color: #fff;
	border: solid 1px #fff;
	border-radius: 60px;
	color: #000;
	padding: 16px 36px;
	transition: .3s ease-in-out;
}
#fmaj #fmaj__contact .contact__box .contact__btn a:hover {
	border: solid 1px #fff;
	background-color: #231815;
	color: #fff;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__contact .contact__box .contact__btn a {
		font-size: max(4.53vw, 17px);
		padding: 16px 10%;
	}
}
/*=======================

	footer

=======================*/
#fmaj #fmaj__footer .footer__fmaj {
	max-width: 570px;
	margin: 0 auto 80px;
	width: 57%;
}
@media screen and (max-width:768px) {
	#fmaj #fmaj__footer .footer__fmaj {
		width: 60%;
	}
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__footer .footer__fmaj {
		margin-top: -40px;
	}
}
#fmaj #fmaj__footer .sub__footer {
	display: flex;
  align-items: center;
  justify-content: center;
	margin-bottom: 80px;
}
@media screen and (max-width:599px) {
	#fmaj #fmaj__footer .sub__footer {
		margin-bottom: 4%;
	}
}
