@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Poppins:wght@500;700&display=swap');
* {
		margin: 0;
		padding: 0;
}
img {
		border: none;
		vertical-align: top;
}
html {
		overflow-y: scroll;
}
@media(min-width: 768px) {
		::-webkit-scrollbar {
				width: 10px;
		}
		::-webkit-scrollbar-track {
				background-color: #fff;
		}
		::-webkit-scrollbar-thumb {
				background-color: #3C3C3C;
		}
}
body {
		font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
		color: #222;
		background: #E9E9E9;
		font-size: 16px;
		-webkit-font-smoothing: antialiased;
		-webkit-text-size-adjust: 100%;
}
body.isBlk {
		background: #3C3C3C;
}
/* ============ */
header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 84px;
		z-index: 1000;
		transition: top 0.4s;
}
header.isHide {
		top: -100px;
}
header::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 1);
		transform-origin: center top;
		transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
		transform: scaleY(0);
}
header.isActive::before {
		transform: scaleY(1);
		box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
}
header.isActive {
		z-index: 2000;
}
header.isOn::before {
		transform: scaleY(1);
		background: #fff;
}
.header_inner, footer {
		padding-left: 140px;
		padding-right: 140px;
}
.header_inner {
		padding-top: 17px;
		display: flex;
		justify-content: space-between;
		position: relative;
		z-index: 5;
}
.header_logo {
		width: 220px;
		margin-top: 4px;
		height: 41px;
}
.desktop_global {
		display: flex;
		align-items: center;
}
.desktop_global li {
		list-style: none;
		margin-left: 60px;
		padding-bottom: 20px;
		font-family: 'Poppins', 'Noto Sans JP', sans-serif;
}
.desktop_global > li > a {
		color: #333;
		text-decoration: none;
		text-align: center;
		padding-bottom: 25px;
		position: relative;
		display: block;
}
.desktop_global > li > a.csLink {
		cursor: default;
		opacity: 0.4;
}
.desktop_global > li > a::after {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		bottom: 5px;
		width: 100%;
		height: 2px;
		background: #C2153E;
		transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
		transform: scaleX(0);
}
.desktop_global > li > a.comingsoon::after {
		background: #999;
}
.desktop_global > li a:not(.csLink):hover::after {
		transform: scaleX(1);
}
.desktop_global > li.hover a::after {
		transform: scaleX(1);
}
.menu_en {
		font-size: 16px;
		font-family: 'Poppins', sans-serif;
		font-weight: 700;
}
.menu_jp {
		font-size: 14px;
		font-weight: 500;
}
.desktop_global > li.about_parent, .desktop_global > li.recruit_parent, .desktop_global > li.company_parent {
		position: relative;
}
.about_parent .desktop_drawer, .recruit_parent .desktop_drawer, .company_parent .desktop_drawer {
		position: absolute;
		top: 76px;
		left: 0;
		display: none;
		transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
		transform: translateY(10px);
}
.desktop_drawer ul {
		box-sizing: border-box;
		padding: 30px 25px;
		box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
		background: #fff;
		white-space: nowrap;
}
.desktop_drawer.isOpen {
		transform: translateY(0px);
}
.desktop_drawer li {
		margin: 0 0 18px;
		font-size: 15px;
		padding-bottom: 0;
}
.desktop_drawer ul li:last-child {
		margin-bottom: 0;
}
.desktop_drawer li a {
		color: #333;
		text-decoration: none;
}
.desktop_drawer li a:hover {
		color: #C2153E;
}
.header_inner, footer {
		padding-left: 140px;
		padding-right: 140px;
}
@media(max-width: 1500px) {
		.header_inner, footer {
				padding-left: 60px;
				padding-right: 60px;
		}
}
@media(max-width: 1100px) {
		.header_inner, footer {
				padding-left: 30px;
				padding-right: 30px;
		}
		.desktop_global > li {
				margin-left: 40px;
		}
}
/* ================= */
footer {
		background: #3C3C3C;
		color: #808080;
		padding-top: 100px;
		padding-bottom: 85px;
		position: relative;
		z-index: 50;
}
footer a {
		color: #fff;
		text-decoration: none;
}
footer h5 a {
		color: #fff;
}
.footer_hdr {
		padding-bottom: 20px;
		border-bottom: 1px solid #808080;
		margin: 0 0 60px;
}
.footer_hdr_flex {
		display: flex;
		align-items: center;
}
.footer_hdr_contact {
		font-size: 60px;
		line-height: 1;
		color: #fff;
		font-family: 'Poppins', sans-serif;
		font-weight: 700;
		margin-right: 20px;
}
.footer_hdr_link {
		font-size: 20px;
		font-weight: 400;
}
.footer_hdr_flex a {
		color: #fff;
		text-decoration: none;
		display: flex;
		align-items: center;
		position: relative;
}
.footer_col_flex {
		display: flex;
		justify-content: space-between;
		margin: 0 0 45px;
}
.footer_col_flex_left {
		display: flex;
}
.footer_col {
		margin-right: 60px;
}
.footer_col_hd {
		font-size: 17px;
		font-weight: 700;
		color: #fff;
		margin: 0 0 15px;
		letter-spacing: 0.03em;
}
.footer_col.comingsoon .footer_col_hd {
		color: #808080;
		margin-right: 10px;
		margin-bottom: 0;
}
.footer_comingsoon_flex {
		display: flex;
		align-items: center;
		margin: 0 0 15px
}
.footer_comingsoon_flex p {
		font-family: 'Poppins', sans-serif;
		font-weight: 500;
		color: #fff;
		line-height: 1;
		font-size: 13px;
}
.footer_col_upper {
		margin-bottom: 40px;
}
.footer_col_links li {
		font-size: 15px;
		list-style: none;
		margin: 0 0 8px;
}
.footer_col_links li:last-child {
		margin-bottom: 0;
}
.footer_logo {
		width: 200px;
		margin: 0 0 22px;
}
.footer_logo img {
		width: 100%;
		height: auto;
}
.footer_address {
		font-size: 15px;
		color: #fff;
		line-height: 2.0;
		margin: 0 0 20px;
}
.finduson {
		font-size: 16px;
		font-family: 'Poppins', sans-serif;
		font-weight: 400;
}
.finduson a {
		color: #fff;
		position: relative;
		display: inline-block;
}
.finduson span {
		padding-right: 23px;
}
.finduson a::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 8px);
		right: 0;
		width: 16px;
		height: 16px;
		background: url("../images/footer_logo_fb.png") no-repeat 0 0;
		background-size: 16px;
		border-radius: 50%;
}
.copy_flex {
		display: flex;
		justify-content: space-between;
		padding-top: 18px;
		border-top: 1px solid #808080;
}
.copy_copyright {
		font-size: 13px;
		font-family: 'Poppins', sans-serif;
}
.copy_policy {
		font-size: 15px;
}
.pagetop {
		position: fixed;
		right: 40px;
		bottom: 40px;
		width: 44px;
		height: 60px;
		cursor: pointer;
		z-index: 1000;
		background-image: url("../images/pagetop_txt_wht.png");
		background-repeat: no-repeat;
		background-position: 0 bottom;
		background-size: 44px;
		display: none;
		transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@media(max-width: 840px) {
		.pagetop {
				right: 20px;
				bottom: 30px;
		}
}
.pagetop.isBlk {
		background-image: url("../images/pagetop_txt_blk.png");
}
.pagetop_item {
		width: 44px;
		height: 44px;
		background: #C2153E;
		position: relative;
}
.pagetop_item::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: url("../images/pagetop_arrow.png") no-repeat 0 0;
		background-size: 44px;
}
.pagetop_item::before {
		content: '';
		display: block;
		position: absolute;
		top: 8px;
		left: 9px;
		width: 26px;
		height: 2px;
		background: #fff;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
		.pagetop:hover .pagetop_item::after {
				animation: arrowTOP 0.6s linear forwards;
		}
		.pagetop:hover .pagetop_item::before {
				transform: scaleX(0);
		}
}
@keyframes arrowTOP {
		0% {
				opacity: 1;
		}
		35% {
				transform: translateY(-20px);
				opacity: 0;
		}
		40% {
				transform: translateY(15px);
				opacity: 0;
		}
		100% {
				transform: translateY(-5px);
				opacity: 1;
		}
}
@media(max-width: 1500px) {
		.copy_flex {
				display: flex;
				justify-content: flex-start;
		}
		.copy_copyright {
				margin-right: 50px;
		}
}
@media(max-width: 1300px) {
		.footer_col {
				margin-right: 30px;
		}
}
@media(min-width: 1025px) {
		.footer_col_flex_left_flex {
				display: flex;
		}
}
@media(max-width: 1194px) {
		.footer_col_flex_left_flex {
				display: block;
				margin-right: 40px;
		}
		.footer_col_flex_left_flex .footer_col:first-child {
				margin-bottom: 40px;
		}
		.footer_col {
				margin-right: 0;
		}
		.footer_col_flex_left_flex .footer_col:first-child {
				margin-bottom: 40px;
		}
		.footer_logo {
				width: 180px;
				margin: 0 0 22px;
		}
}
@media(max-width: 819px) {
		.footer_col_flex_left_flex {
				display: block;
				margin-right: 20px;
		}
}
@media(max-width: 500px) {
		.copy_flex {
				display: flex;
				flex-direction: column-reverse;
				padding-top: 18px;
		}
		.copy_copyright {
				padding-top: 20px;
		}
}
/* ================ */
.desktop_drawer li span, footer h5 span, .footer_col_links li span, .copy_policy span, .finduson span {
		position: relative;
		display: inline-block;
}
.footer_col_links li a span::after, footer h5 span::after, .copy_policy a span::after, .finduson a span::after, .finduson a span::after {
		content: '';
		display: block;
		position: absolute;
		bottom: -2px;
		left: 0px;
		width: 100%;
		height: 1px;
		transform-origin: left center;
		transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
		background: #fff;
		transform: scaleX(0);
}
.desktop_drawer li span::after {
		content: '';
		display: block;
		position: absolute;
		bottom: -2px;
		left: 0px;
		width: 100%;
		height: 1px;
		transform-origin: left center;
		transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
		background: #c2153e;
		transform: scaleX(0);
}
@media (hover: hover) {
		.footer_col_links li a:hover, .copy_policy a:hover {
				color: #fff;
		}
		.desktop_drawer li a:hover span::after, .footer_col_links li a:hover span::after, .copy_policy a:hover span::after, .finduson a:hover span::after, footer h5 a:hover span::after {
				transform: scaleX(1);
		}
}
/* ==================== */
@media(min-width: 961px) {
		header .header_trigger, .drawer_hdr .header_trigger, .drawer {
				display: none !important;
		}
}
main.mainLock {
		/* position: fixed !important;
		width: 100%;
		height: 50vh; */
		overflow: hidden;
}
.drawer_hdr {
		position: relative;
}
header .header_trigger, .drawer_hdr .header_trigger {
		position: absolute;
		width: 40px;
		height: 40px;
		top: 20px;
		right: 30px;
		cursor: pointer;
		transition: all 0.3s;
		z-index: 1000;
}
.header_trigger .header_trigger_bar {
		height: 2px;
		width: 40px;
		background: #C2153E;
		position: absolute;
		left: 0;
		transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer_hdr .header_trigger .header_trigger_bar {
		background: none;
}
#toppage header .header_trigger .header_trigger_bar {
		background: #fff;
}
#toppage header.isActive .header_trigger .header_trigger_bar {
		background: #C2153E;
}
.header_trigger .header_trigger_bar:first-child {
		top: 13px;
}
.header_trigger .header_trigger_bar:nth-child(2) {
		top: 25px;
}
.navOpen .header_trigger_bar:first-child {
		transform: translateY(6px) rotate(150deg);
}
.navOpen .header_trigger_bar:nth-child(2) {
		transform: translateY(-6px) rotate(-150deg);
}
.header_trigger .header_trigger_bar::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		transform: scaleX(0);
		background: #fff;
		transition-delay: 0.3s;
}
.header_trigger .header_trigger_bar:first-child::after {
		transform-origin: left center;
		transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
		transition-delay: 0.2s;
}
.header_trigger .header_trigger_bar:nth-child(2)::after {
		transform-origin: right center;
		transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
		transition-delay: 0.4s;
}
.drawerOpen .header_trigger_bar::after {
		transform: scaleX(1);
}
@media(max-width: 767px) {
		header .header_trigger, .drawer_hdr .header_trigger {
				width: 34px;
				height: 30px;
				top: 16px;
				right: 18px;
		}
		.header_trigger .header_trigger_bar {
				height: 2px;
				width: 30px;
				left: 2px;
		}
		.header_trigger .header_trigger_bar:first-child {
				top: 10px;
		}
		.header_trigger .header_trigger_bar:nth-child(2) {
				top: 18px;
		}
		.navOpen .header_trigger_bar:first-child {
				transform: translateY(4px) rotate(150deg);
		}
		.navOpen .header_trigger_bar:nth-child(2) {
				transform: translateY(-4px) rotate(-150deg);
		}
}
.drawer {
		position: fixed;
		top: 0;
		left: 0;
		background: #3C3C3C;
		color: #fff;
		z-index: 5000;
		width: 100%;
		display: none;
}
.drawer a {
		color: #f5f5f5;
		text-decoration: none;
}
.drawer_hdr {
		position: relative;
		margin-bottom: 30px;
}
.drawer_wrap {
		overflow: auto;
}
.drawer_inner {
		padding: 0 0 80px;
		box-sizing: border-box;
		font-family: 'Poppins', 'Noto Sans JP', sans-serif;
}
.drawer_inner li {
		list-style: none;
		font-size: 15px;
}
.drawer_nav {
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.drawer_inner dl:first-child {
		border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.drawer_inner dt {
		font-size: 18px;
		font-weight: 500;
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
}
.drawer_inner dt .drawer_nav_trigger {
		width: 15px;
		height: 15px;
		position: absolute;
		right: 20px;
		top: calc(50% - 7.5px)
}
.drawer_nav_trigger::before, .drawer_nav_trigger::after {
		content: '';
		display: block;
		height: 2px;
		width: 15px;
		background: #f5f5f5;
		position: absolute;
		top: 50%;
		left: 0;
		transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer_nav_trigger::after {
		transform: rotate(90deg)
}
.isOpen .drawer_nav_trigger::before {
		transform: rotate(180deg)
}
.isOpen .drawer_nav_trigger::after {
		transform: rotate(270deg);
		opacity: 0;
}
.drawer_inner dd {
		display: none;
		padding-top: 10px;
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 30px;
}
.drawer_inner dd li {
		margin: 0 0 10px;
		font-size: 16px;
		position: relative;
}
.drawer_inner dd li::before, .drawer_inner dd li::after, .drawer_menu::before, .drawer_menu::after {
		content: '';
		display: block;
		position: absolute;
}
.drawer_inner dd li::before, .drawer_menu::before {
		width: 6px;
		height: 6px;
		border-top: 1px solid #f5f5f5;
		border-right: 1px solid #f5f5f5;
		transform: rotate(45deg);
		right: 0;
		top: calc(50% - 2.5px);
}
.drawer_inner dd li.comingsoonLink::before, .drawer_inner dd li.comingsoonLink::after {
		display: none !important
}
.comingsoonLink {
		opacity: 0.3 !important;
		pointer-events: none;
}
.drawer_inner dd li::after, .drawer_menu::after {
		width: 9px;
		height: 1px;
		background: #f5f5f5;
		right: 0px;
		top: calc(50% + 0.5px);
}
.drawer_menu::before, .drawer_menu::after {
		right: 24px;
}
.drawer_inner dd ul li:last-child {
		margin-bottom: 0;
}
.drawer_menu a {
		display: block;
		padding: 15px 20px;
}
.drawer_menu {
		font-size: 18px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
		position: relative;
}
.drawer_inner small {
		font-size: 70%;
		margin-left: 10px;
}
.drawer_submenu {
		padding: 30px 20px 15px;
}
.drawer_submenu_policy {
		margin-bottom: 15px;
}
.drawer_nav, .drawer_menu, .drawer_submenu_policy, .drawer .finduson {
		transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
		transform: translateY(10px);
		opacity: 0;
}
.drawer_inner .drawer_nav:first-child {
		transition-delay: 0.12s;
}
.drawer_inner .drawer_nav:nth-child(2) {
		transition-delay: 0.18s;
}
.drawer_inner .drawer_nav:nth-child(3) {
		transition-delay: 0.24s;
}
.drawer_inner .drawer_menu.first {
		transition-delay: 0.3s;
}
.drawer_inner .drawer_menu.second {
		transition-delay: 0.36s;
}
.drawer_submenu_policy {
		transition-delay: 0.42s;
}
.drawer .finduson {
		transition-delay: 0.48s;
}
.drawerOpen .drawer_nav, .drawerOpen .drawer_menu, .drawerOpen .drawer_submenu_policy, .drawer.drawerOpen .finduson {
		opacity: 1;
		transform: translateY(0);
}
@media(min-width: 961px) {
		header, header.isHide {
				top: 0!important;
		}
}
@media(max-width: 960px) {
		.desktop_nav {
				display: none;
		}
}
@media(max-width: 767px) {
		body {
				font-size: 15px;
		}
		header {
				height: 62px;
		}
		.header_inner {
				padding-top: 16px;
				padding-bottom: 0;
				display: block;
		}
		.header_logo {
				width: 160px;
				height: 30px;
				margin-top: 0;
		}
		.header_inner, footer {
				padding-left: 20px;
				padding-right: 20px;
		}
		footer {
				padding-top: 60px;
				padding-bottom: 30px;
		}
		.footer_hdr_contact {
				font-size: 38px;
				margin-right: 15px;
		}
		.footer_hdr_link {
				font-size: 16px;
		}
		.footer_hdr {
				margin: 0 0 40px;
		}
		.footer_col_flex {
				display: block;
				margin: 0 0 40px;
		}
		.footer_col_flex_left {
				display: none;
		}
		.footer_logo {
				width: 200px;
				margin: 0 0 22px;
		}
		.pagetop {
				right: 20px;
				bottom: 40px;
				width: 40px;
				height: 54px;
				background-size: 40px;
		}
		.pagetop_item {
				width: 40px;
				height: 40px;
		}
		.pagetop_item::after {
				background-size: 40px;
		}
		.pagetop_item::before {
				top: 8px;
				left: 9px;
				width: 22px;
				height: 2px;
		}
}
/* ================ */
br.tabletBr {
		display: none;
}
@media (min-width:768px) and (max-width: 840px) {
		br.tabletBr {
				display: block;
		}
}
@media(max-width: 1023px) {
		.desktopBr {
				display: none;
		}
}
@media(min-width: 768px) {
		.spObj {
				display: none;
		}
}
@media(max-width: 767px) {
		.pcObj {
				display: none;
		}
		br.pcbr {
				display: none;
		}
}
.mb00 {
		margin-bottom: 0px !important;
}
.mb05 {
		margin-bottom: 5px !important;
}
.mb10 {
		margin-bottom: 10px !important;
}
.mb15 {
		margin-bottom: 15px !important;
}
.mb20 {
		margin-bottom: 20px !important;
}
.anchor {
		margin-top: -100px;
		padding-top: 100px;
		position: relative;
		z-index: 0;
		pointer-events: none;
}
.anchor2 {
		margin-top: -180px;
		padding-top: 180px;
		position: relative;
		z-index: 0;
		pointer-events: none;
}
@media(max-width: 767px) {
		.anchor {
				margin-top: -70px;
				padding-top: 70px;
		}
		.anchor2 {
				margin-top: -120px;
				padding-top: 120px;
		}
}
/* =============== */ ::selection {
		background: #C2153E !important;
		-webkit-background-clip: inherit;
		-webkit-text-fill-color: #fff;
		color: #fff;
}
::-moz-selection {
		background: #C2153E;
}



/* add */

.business-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: sans-serif;
  }

  .business-section {
    margin-bottom: 25px;
  }

  /* メイン見出し：サイズ1em、ボールド解除 */
  .business-main-title {
    font-size: 1em;
    font-weight: normal;
    margin-bottom: 10px;
    color: #333;
    padding-left: 5px;
	  margin-left: 18px;
	  position: relative;
  }

  .business-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  /* 左側のラベル：ボールド解除、サイズ調整 */
  .business-label {
    flex: 0 0 30%;
    font-size: 1em;
    font-weight: normal;
    color: #333;
    position: relative;
    padding-left: 30px;
	  padding-bottom: 10px;
  }

  /* 赤いドット */
  .business-main-title::after {
    content: '';
    display: block;
    position: absolute;
    top: 0.75em;
    left: -16px;
    width: 6px;
    height: 6px;
    background: #C2153E;
}

  /* 右側の内容 */
  .business-detail {
    flex: 1;
    color: #555;
    line-height: 1.7;
    font-size: 0.9em;
  }

  /* スマホ対応：768px以下で少しフォントを小さく */
  @media (max-width: 768px) {
    .business-label {
      flex: 0 0 40%;
      font-size: 0.85em;
    }
    .business-detail {
      font-size: 0.85em;
    }
  }