@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Typography
------------------------------------------------------*/
em {
	font-weight: 700;
}
address {
	font-style: normal;
}
/*-----------------------------------------------------
	Elements
------------------------------------------------------*/
body {
	word-wrap: break-word;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 500;
  line-height: 1.5;
}
p {
  line-height: 1.7;
}
ul li {
  line-height: 1.6;
	list-style-type: none;
}
ol li {
  line-height: 1.6;
	list-style-type: decimal;
}
img {
	vertical-align: bottom;
}
iframe {
	width: 100%;
}
sup {
	font-size: 70%;
	vertical-align: super;
}
sub {
	font-size: 70%;
	vertical-align: sub;
}
/*-----------------------------------------------------
	Link
------------------------------------------------------*/
a {
	text-decoration: none;
	color: #1a1a1a;
	-webkit-transition: all .35s;
	   -moz-transition: all .35s;
	    -ms-transition: all .35s;
	     -o-transition: all .35s;
	        transition: all .35s;
}
a > img {
	-webkit-transition: all .35s;
	   -moz-transition: all .35s;
	    -ms-transition: all .35s;
	     -o-transition: all .35s;
	        transition: all .35s;
}
a:hover {
	color: #1a1a1a;
}
a:hover > img {
	opacity: 0.65;
}
a[href^="tel:"] {
    pointer-events: none;
}
/*-----------------------------------------------------
	haeder
------------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 78px;
	background: #1a1a1a;
	z-index: 20;
}
header .logo {
	font-size: 3rem;
}
header .wrap .logo {
	padding-top: 18px;
	padding-bottom: 18px;
	display: flex;
	align-items: center;
}
header .logo img {
	width: 56px;
	height: 42px;
}
header .logo a {
	color:#fff;
}
header .wrap .nav {
	padding-top: 15px;
}
header .wrap .nav ul.flex {
	-webkit-box-pack: end;
	justify-content: flex-end;
}
header .wrap .nav ul.flex li {
	margin-left: 5px;
	text-align: center;
}
header .wrap .nav ul.flex li a {
	display: inline-block;
	padding: 10.5px 30px;
	background: #1a1a1a;
	border-radius: 5px 5px 0 0;
	font-family: 'Lexend', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
}
header .wrap .nav ul.flex li a span {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 12px;
	font-weight: 500;
}
header .wrap .nav ul.flex li a:hover {
	background: #2E2E2E;
}
header .wrap .nav ul.flex li a.current {
/*	background: #fff; */
	background: orange;
	color: #1a1a1a;
}
@media screen and (max-width: 1040px) {
	header .wrap .nav ul.flex li a {
		padding: 10.5px 20px;
	}
	header .logo {
		font-size: 2.5rem;
	}
}
/*-----------------------------------------------------
	header レスポンシブ
------------------------------------------------------*/
@media screen and (max-width: 900px) {
	header .logo {
		font-size: 2rem;
	}
}
@media screen and (max-width: 790px) {
        header .logo {
                font-size: 1.3rem;
        }
}
@media screen and (min-width: 751px) {
	.fat-nav, .fat-nav ul {
		display: none;
	}
}
@media screen and (max-width: 750px) {
	header .wrap .nav {
		display: none;
	}
	header .logo {
		font-size: 2.5rem;
	}
	/* SPメニュー */
  .hamburger {
    width: 78px ;
    height: 78px;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
  }
  .hamburger__icon {
    position: relative;
  }
  .hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
    width: 27px;
    height: 3px;
    position: absolute;
    bottom: 38px;
    right: 20px;
    display: block;
    background-color: #fff;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
  }
  .hamburger__icon::before, .hamburger__icon::after {
    content: "";
  }
  .hamburger__icon::before {
    bottom: -7px;
    left: 0;
  }
  .hamburger__icon::after {
    bottom: 7px;
    left: 0;
  }
  .hamburger.active .hamburger__icon {
    background-color: transparent;
  }
  .hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
    width: 27px;
  }
  .hamburger.active .hamburger__icon:before {
    -moz-transform: translateY(-7px) rotate(45deg);
    -ms-transform: translateY(-7px) rotate(45deg);
    -webkit-transform: translateY(-7px) rotate(45deg);
    transform: translateY(-7px) rotate(45deg);
  }
  .hamburger.active .hamburger__icon:after {
    -moz-transform: translateY(7px) rotate(-45deg);
    -ms-transform: translateY(7px) rotate(-45deg);
    -webkit-transform: translateY(7px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
  }
  .fat-nav {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .fat-nav__wrapper {
    background: #1a1a1a;
    width: 100%;
    height: 100%;
		position: relative;
		top: 78px;
		padding: 20px;
    display: table;
    table-layout: fixed;
		z-index: 1;
		transform: initial !important;
  }
	.fat-nav_header_logo {
		width: 100%;
		height: 94px !important;
		position: fixed;
		top: 0;
		left: 0;
		padding: 10px;
		z-index: 2;
	}
	.fat-nav_header_logo a {
		display: inline-flex;
		height: 100%;
		align-items: center;
	}
	.fat-nav_header_logo a img {
		width: 250px;
	}
	.fat-nav .fat-nav__wrapper ul li a {
		-webkit-box-align: center;
		align-items: center;
		padding: 17px 15px;
		background: #1a1a1a;
		border-radius: 2px;
    font-size: 20px;
		color: #fff;
  }
	.fat-nav .fat-nav__wrapper ul li.nav_current a {
		background: #fff;
		color: #1a1a1a;
  }
	.fat-nav .fat-nav__wrapper ul li a em {
    font-size: 20px;
		font-weight: 700;
		font-style: normal;
  }
	.fat-nav .fat-nav__wrapper ul li a span {
    font-size: 12px;
		font-weight: 700;
  }
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
	margin-top: 190px;
}
.footer_top {
	border-bottom: 1px solid #1a1a1a;
}
.footer_top h2 {
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}
.footer_top h2 span {
	padding: 12px 80px;
	background: #1a1a1a;
}
.comapny_list {
	padding: 50px 0;
}
.comapny_list_child {
	width: 20%;
}
.comapny_list_child img {
	width: 100%;
}
.comapny_list dt {
	font-size: 20px;
	font-weight: 700;
}
.comapny_list dl {
	font-size: 16px;
	font-weight: 400;
	padding-top: 14px;
}
.comapny_list a {
	text-decoration: underline;
}
.comapny_list .arrow {
	display: inline-block;
	transform: rotate(90deg);
}
.footer_bottom {
	padding: 50px 0;
	background: #1a1a1a;
	text-align: center;
}
.footer_bottom .wrap .flex {
	margin-bottom: 20px;
}
.footer_bottom .footer_menu a {
	line-height: 0.8em;
}
.footer_bottom .footer_menu a span {
        font-size: 10px;
        display: block;
}
ul.footer_menu {
	-webkit-box-pack: start;
	justify-content: flex-start;
}
ul.footer_menu li {
	position: relative;
	margin-right: 35px;
}
ul.footer_menu li a {
	font-family: 'Lexend', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}
ul.footer_menu li.footer_current::after, ul.footer_menu li:hover::after {
	position: absolute;
	content: "";
	bottom: -3px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
}
.footer_logo img {
	width: 56px;
	height: 42px;
}
small.copyright {
	font-size: 12px;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 750px) {
	footer {
		margin-top: 130px;
	}
	.footer_top h2 {
		font-size: 16px;
	}
	.footer_top h2 span {
		padding: 12px 20px;
	}
	.comapny_list {
		padding: 50px 0;
	}
	.comapny_list_child {
		width: 20%;
	}
	.footer_bottom {
		padding: 50px 0 20px;
	}
	.footer_bottom .wrap .flex {
		margin-bottom: 20px;
	}
	ul.footer_menu li a {
		font-size: 14px;
	}
}
@media screen and (max-width: 640px) {
	.comapny_list {
		padding: 30px 0;
		-webkit-box-pack: center;
		justify-content: center;
	}
	.comapny_list_child {
		width: 32%;
	}
	.comapny_list dt {
		font-size: 14px;
		font-weight: 700;
	}
	.comapny_list dl {
		font-size: 12px;
		font-weight: 400;
		padding-top: 14px;
	}
	ul.footer_menu {
		display: block;
		text-align: left;
	}
	ul.footer_menu li {
		margin-right: 0;
		margin-bottom: 20px;
	}
	ul.footer_menu li:last-of-type {
		margin-bottom: 0;
	}
	ul.footer_menu li.footer_current::after, ul.footer_menu li:hover::after {
		display: none;
	}
}
/*-----------------------------------------------------
	layout
------------------------------------------------------*/
.wrap {
	width: 1000px;
	margin: 0 auto;
}
.bl {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 100%;
/*	background: #1a1a1a;*/
	background: orange;
	border-radius: 0 2px 2px 0;
}
.br {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 100%;
/*	background: #1a1a1a;*/
	background: orange;
	border-radius: 2px 0 0 2px;
}
.wbr {
	position: absolute;
	top: 0;
	right: 0;
	width: 78px;
	height: 100%;
	background: #fff;
	border-radius: 2px 0 0 2px;
}
.h_keep::before {
	content: "";
	display: block;
}
@media screen and (max-width: 1300px) {
	.bl, .br, .wbr {
		width: 10px;
	}
}
@media screen and (max-width: 1040px) {
	.wrap {
		width: 100%;
		margin: 0 auto;
		padding-right: 20px;
		padding-left: 20px;
	}
}
/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
	margin-bottom: 30px;
	font-size: 52px;
	font-weight: 700;
}
.midasi_01 span {
	display: block;
	font-family: 'Lexend', sans-serif;
	font-size: 20px;
}
@media screen and (max-width: 1040px) {
	.midasi_01 {
		font-size: 40px;
	}
	.midasi_01 span {
		font-size: 19px;
	}
}
@media screen and (max-width: 750px) {
	.midasi_01 {
		margin-bottom: 20px;
		font-size: 30px;
	}
	.midasi_01 span {
		font-size: 14px;
	}
}
/*-----------------------------------------------------
	btn
------------------------------------------------------*/
.link_btn_01 {
	position: relative;
	display: block;
	width: 100%;
	max-width: 467px;
	margin: 0 auto;
	padding: 10px 30px;
	background: #fff;
	border: 1px solid #1a1a1a;
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	text-align: center;
}
.link_btn_01:hover {
	background: #1a1a1a;
	color: #fff;
}
@media screen and (max-width: 750px) {
	.link_btn_01 {
		padding: 10px 20px;
	}
	.link_btn_01:hover {
		background: #fff;
		color: #1a1a1a;
	}
}

/*-----------------------------------------------------
	#profile
------------------------------------------------------*/
#profile {
	position: relative;
	height: auto;
  margin-top: 120px;
}
.prof .prof_l {
/*	width: 48%;*/
    width:30%;
}
.prof .prof_l img {
	width: 100%;
}
.prof .prof_r {
/*	width: 48%;*/
    width:66%;
}
.prof .prof_r h3 {
	margin-top: 10px;
	margin-bottom: 50px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}
.prof .prof_r h3 span {
	padding: 10px 15px;
	background: #1a1a1a;
}
.prof .prof_r h4 {
	margin-top: 10px;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #1a1a1a;
	font-size: 52px;
	font-weight: 700;
}
.prof .prof_r h4 span {
	display: block;
	font-family: 'Lexend', sans-serif;
	font-size: 16px;
}
.prof .prof_r p {
	margin-bottom: 30px;
	font-size: 20px;
}
.prof_bottom {
	margin: 20px 0 50px;
}
.prof_bottom h3 {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}
.prof_bottom h3 span {
	padding: 10px 80px;
	background: #1a1a1a;
}
.prof_bottom p {
	padding: 35px 80px;
	border: 1px solid #1a1a1a;
	font-size: 20px;
}
.member_list_child {
	width: 24%;
	margin-bottom: 36px;
}
.member_list_child img {
	width: 100%;
	margin-bottom: 30px;
}
.member_list_child h5 {
	margin-bottom: 20px;
}
.member_list_child h5 span {
	padding: 10px 20px;
	border: 1px solid #1a1a1a;
	font-family: 'Lexend', sans-serif;
	font-size: 16px;
	font-weight: 700;
}
.member_list_child h6 {
	font-size: 36px;
	font-weight: 700;
	padding-bottom: 12px;
}
.member_list_child h6 span {
	display: block;
	font-size: 12px;
}
@media screen and (max-width: 1040px) {
	.prof .prof_l {
		width: 40%;
	}
	.prof .prof_r {
		width: 56%;
	}
	.prof .prof_r h3 {
		margin-bottom: 50px;
		font-size: 16px;
	}
	.prof .prof_r h4 {
		font-size: 43px;
	}
	.prof .prof_r p {
		font-size: 16px;
	}
	.prof_bottom {
		margin: 20px 0 50px;
	}
	.prof_bottom p {
		padding: 25px 40px;
		font-size: 16px;
	}
	.member_list_child h5 span {
		font-size: 14px;
	}
	.member_list_child h6 {
		font-size: 30px;
		padding-bottom: 10px;
	}
}
@media screen and (max-width: 750px) {
	#profile {
		margin-top: 80px;
	}
	.prof .prof_l {
		width: 100%;
		margin-bottom: 30px;
	}
	.prof .prof_r {
		width: 100%;
	}
	.prof .prof_r h3 {
		margin-bottom: 20px;
	}
	.prof .prof_r h4 {
		margin-bottom: 20px;
		padding-bottom: 15px;
		font-size: 30px;
	}
	.prof .prof_r h4 span {
		font-size: 12px;
	}
	.prof .prof_r p {
		margin-bottom: 30px;
		font-size: 14px;
	}
	.prof_bottom {
		margin: 20px 0 30px;
	}
	.prof_bottom h3 {
		margin-bottom: 10px;
		font-size: 16px;
	}
	.prof_bottom h3 span {
		padding: 10px 30px;
	}
	.prof_bottom p {
		padding: 20px 45px;
		font-size: 14px;
	}
	.member_list_child {
		width: 49%;
		margin-bottom: 20px;
	}
	.member_list_child h5 span {
		font-size: 14px;
	}
	.member_list_child p {
		font-size: 11px;
	}
}

/*-----------------------------------------------------
	#company
------------------------------------------------------*/
#company {
	position: relative;
	height: auto;
  margin-top: 120px;
}
#company dl {
	width: 32%;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #1a1a1a;
}
#company dl:nth-of-type(5), #company dl:nth-of-type(6) {
	margin-bottom: 0;
}
#company dl dt {
	font-size: 16px;
}
#company dl dd {
	font-size: 20px;
	font-weight: 700;
}
#company dl:nth-of-type(4) {
	width: 100%;
}
@media screen and (max-width: 1040px) {
	#company dl dt {
		font-size: 15px;
	}
	#company dl dd {
		font-size: 18px;
	}
}
@media screen and (max-width: 750px) {
	#company {
		margin-top: 80px;
	}
	#company dl {
		width: 100%;
	}
	#company dl:last-of-type {
		margin-bottom: 0;
	}
	#company dl dt {
		font-size: 16px;
	}
	#company dl dd {
		font-size: 20px;
	}
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------------------
	レスポンシブ
----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.sp {
	display: none;
}
.tb {
	display: none;
}
@media screen and (max-width: 960px) {
	.tb {
		display: block;
	}
}
@media screen and (max-width: 750px) {
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/	
  img {
      max-width: 100%;
      height: auto;
  }
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/
	body {
		word-wrap: break-word;
	}

	a[href^="tel:"] {
		pointer-events: auto;
	}
	/*-----------------------------------------------------
		others
	------------------------------------------------------*/
	.sp {
		display: block !important;
	}
	.tb {
		display: none !important;
	}
	.pc {
		display: none !important;
	}
}

