@charset "UTF-8";


:root {
	--font-base: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	--font-Rubik: 'Rubik', 'Noto Sans JP' , sans-serif;
	--font-NotoSans: 'Noto Sans JP', sans-serif;

	--color-black01: #1E1919;
	--color-gray01: #D9D9D9;
	--color-red01: #CA0915;
	--color-grenn01: #06C755;
	--color-beige01: #FAF5F5;
}

*, *::before, *::after{
	box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}

html {
	font-size: 62.5%;
	overflow: inherit!important;
}
body {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 14rem;
	background-color: #fff;
	color: var(--color-black);
	font-family: var(--font-base);
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0;
	overflow: auto;
}

h2 {
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.25;
}
h3 {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.44;
}
p {
	font-size: 1.6rem;
	line-height: 2.2;
}

ul, ol, li {
	list-style: none;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
		 -moz-appearance: none;
					appearance: none;
}
a,button {
	text-decoration: none;
	transition: opacity .4s ease , color .4s ease , background-color .4s ease;
	color: inherit;
	cursor: pointer;
}
a:hover, button:hover {
	opacity: 0.62;
}

img,video {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}

strong {
	font-weight: 700;
}



/*****************************

   common

******************************/
.contents_wrapper {
	position: relative;
	max-width: 110rem;
    width: 96%;
	padding: 0;
	margin-left: auto;
	margin-right: auto;
	z-index: 10;
}

.attention_text {
	display: inline-block;
	font-size: 1.3rem;
	line-height: 1.6;
}




@media screen and (min-width:769px) {
	.sp_only {
		display: none!important;
	}

	html {
		font-size: 7px;
		font-size: clamp(7px, 0.9vw, 10px);
	}
}
@media screen and (max-width:769px) {
	.pc_only {
        display: none!important;
    }

	html {
		font-size: 7px;
		font-size: clamp(7px,2.6vw,24px);
	}

	body {
		font-size: 1.6rem;
		margin-top: 8.7rem;
	}
	p {
		font-size: 1.6rem;
	}

	img {
		width: 100%;
	}

	.contents_wrapper {
		width: 84.7%;
	}

	.flex_base.sp_column {
		flex-direction: column;
	}
	.flex_base.sp_column > div,.flex_base.sp_column > p,.flex_base.sp_column > img {
		width: 100%;
	}

	.attention_text {
		text-align: left;
		font-size: 1rem;
		line-height: 1.8;
	}
}



/*****************************
   parts
******************************/
/*****   loading_block   *****/
.loading_block {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 140vw;
	min-width: 140vh;
	height: 140vw;
	min-height: 140vh;
	transform: translateX(-50%) translateY(-50%);
	z-index: 99999;
	background: #fff;

	animation-name: loading_anime;
	animation-delay: 2.2s;
    animation-duration:2s;
    animation-fill-mode: forwards;
}

.loading_block::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background: var(--color-red01);
	transform: scale(1);

	animation-name: loading_bg_anime;
	animation-delay: 0.5s;
    animation-duration:1.7s;
    animation-fill-mode: forwards;
}

.loading_block__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 2.2rem;
	letter-spacing: -0.;
}


@keyframes loading_bg_anime {
from {
    transform: scale(1);
}
to {
    transform: scale(0);
}
}
@keyframes loading_anime {
	0% {
		opacity: 1;
	}
	99% {
		opacity: 0;
	}
	100% {
		pointer-events: none;
		opacity: 0;
	}
}


@media screen and (max-width:769px) {
	.loading_block__inner img {
		width: auto;
		height: 1.5rem;
	}
}


/*****   .blurred_circle   *****/
.blurred_circle {
	--size: 4.7rem;
	content: "";
	position: absolute;
	display: block;
	width: var(--size);
	height: var(--size);
	filter: blur(1rem);
	border-radius: var(--size);
	background: var(--color-red01);
	z-index: -1;
}

.blurred_circle_3group {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	font-size: 7.6rem;
	width: 5.5em;
	height: 4.7em;
	z-index: -1;
}

.blurred_circle_3group .blurred_circle:nth-of-type(1) {
	--size: 1em;
	top: 0.77em;
	left: 0;
	opacity: 0.9;
}
.blurred_circle_3group .blurred_circle:nth-of-type(2) {
	--size: 0.82em;
	bottom: 0;
	right: 0.56em;
	opacity: 0.8;
}
.blurred_circle_3group .blurred_circle:nth-of-type(3) {
	--size: 0.7em;
	top: 0;
	right: 0;
	opacity: 0.6;
}


/*****   page_info   *****/
.page_header {
	position: relative;
	z-index: 1000;
	max-width: 1377px;
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 11rem;
}

.page_header__type {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	column-gap: 1.1rem;
	margin-bottom: 0.14rem;
	color: var(--color-red01);
	font-size: 2.8rem;
	font-family: var(--font-Rubik);
	line-height: 1.1;
}
.page_header__type::before {
	--size: 3rem;
	content: "";
	position: relative;
	top: -0.04em;
	display: block;
	min-width: var(--size);
	min-height: var(--size);
	background-repeat: no-repeat;
	background-size: contain;
}
.page_header[data-type="whats_curacion"] .page_header__type::before {
	background-image: url(../img/common/icon/icon-whats_curacion--white.svg);
}
.page_header[data-type="work_style"] .page_header__type::before {
	background-image: url(../img/common/icon/icon-work_style--white.svg);
}
.page_header[data-type="curacion_people"] .page_header__type::before {
	background-image: url(../img/common/icon/icon-curacion_people--white.svg);
}
.page_header[data-type="working_conditions"] .page_header__type::before {
	background-image: url(../img/common/icon/icon-working_conditions--white.svg);
}

.page_header__lead {
	margin-bottom: 1.1rem;
	font-size: 1.6rem;
	font-weight: 700;
}

.page_header__tit {
	position: relative;
	font-size: 3rem;
	letter-spacing: 0.05em;
	color: var(--color-black01);
}

@media screen and (max-width:769px) {
	.page_header {
		width: 90%;
		margin-bottom: 8.7rem;
	}

	.page_header__type {
		font-size: 2rem;
	}

	.page_header__lead {
		margin-bottom: 0.62rem;
		font-size: 1.4rem;
	}

	.page_header__tit {
		font-size: 2rem;
	}
}


/*****   heading_block   *****/
.heading_block {
	margin-bottom: 7.3rem;
	margin-top: 10.8rem;
}
.heading_block__heading {
	position: relative;
	display: block;
	margin-bottom: 1.18rem;
	line-height: 1.06;
	font-size: 5rem;
	font-family: var(--font-Rubik);
	letter-spacing: 0.047em;
	word-break: break-word;

	color: #fff;
	-webkit-text-stroke: 0.14rem var(--color-red01);
}
.heading_block__lead {
	position: relative;
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	padding-left: 5rem;
	letter-spacing: 0.02em;
}
.heading_block__lead::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 4rem;
	height: 0.14rem;
	background: var(--color-red01);
}


@media screen and (max-width:769px) {
	.heading_block {
		margin-bottom: 5rem;
		margin-top: 7.7rem;
	}
    .heading_block__heading  {
		font-size: 3.5rem;
	}
	.heading_block__lead {
		padding-left: 4rem;
	}
	.heading_block__lead::before {
		width: 3rem;
	}
}


/*****   section__tit   *****/
.section__tit {
	position: relative;
	font-size: 3rem;
	line-height: 2.2;
	letter-spacing: 0;
	margin-top: 6.2rem;
	margin-bottom: 5.5rem;
}

@media screen and (max-width:769px) {
	.section__tit {
		font-size: 2rem;
		line-height: 2;
		margin-top: 4.4rem;
		margin-bottom: 4.7rem;
	}
}


/*****   anker_block   *****/
.anker_block__list {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 2rem;
	row-gap: 1.8rem;
	margin-bottom: 3.7rem;
	margin-top: 3.4rem;
}
.anker_block__item a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 1.6rem;
}
.anker_block__item a::before {
	--size: 2.8rem;
	content: "";
	position: relative;
	display: block;
	min-width: var(--size);
	min-height: var(--size);
	background-image: url(../img/common/icon/icon-anker_block__arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width:769px) {
	.anker_block__list {
		flex-direction: column;
		margin-bottom: 2rem;
		margin-top: 1.8rem;
	}
}


/*****   radisu_underline   *****/
.radisu_underline {
	position: relative;
	width: fit-content;
}
.radisu_underline::after {
	content: "";
	position: absolute;
	bottom: -0.77rem;
	left: 0;
	width: 100%;
	height: 1rem;
	background: var(--color-red01);
	border-radius: 100rem;
}

@media screen and (max-width:769px) {
	.radisu_underline::after {
		height: 0.8rem;
	}
}


/*****   radisu   *****/
.radius_30 {
	border-radius: 3rem;
	overflow: hidden;
}



/*****   movie   *****/
.js-movie {
	cursor: pointer;
}
.js-movie_wrapper {
	position: relative;
}
.js-movie_wrapper__play_btn {
	--size: 8rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-66%);
	display: block;
	width: var(--size);
	height: var(--size);
	border-radius: var(--size);
	background: var(--color-red01);
	font-size: var(--size);
	transition: opacity 0.5s,transform 0s;
	transition-delay: 0.7s;
}
.js-movie_wrapper.playing .js-movie_wrapper__play_btn {
	opacity: 0;
	transform: translateX(-50%) translateY(-50%);
	transition: opacity 0.5s,transform 0.5s;
	transition-delay: 0s;
}
.js-movie_wrapper__play_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-38%) translateY(-50%);
	display: block;
	width: 0.29em;
	height: 0.37em;
	background: #fff;
	clip-path: polygon(0 0, 100% 50%, 0% 100%);
}

_::-webkit-full-page-media, _:future, :root .js-movie_wrapper__play_btn {
	display: none!important;
}

@media screen and (max-width:769px) {
	.js-movie_wrapper__play_btn {
		--size: 5.6rem;
	}
}



/*****************************

   site_menu

******************************/
.site_menu {
	position: relative;
	z-index: 1000;
	padding-top: 8.1rem;
	padding-bottom: 8.2rem;
	background: var(--color-red01);
	color: #fff;
}

.site_menu__logo img {
	width: 32.8rem;
	margin-bottom: 5.6rem;
}

.site_menu__block {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	column-gap: 10.6rem;
}

.site_menu__link_block {
	flex: 1;
	max-width: 800px;
	display: grid;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 2rem;
	row-gap: 3.4rem;
	grid-template-rows: auto auto;
    grid-template-columns: auto auto;
}


.site_menu__link_tit {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	column-gap: 0.4em;
	margin-bottom: 0.7rem;
	color: #fff;
	font-size: 2.8rem;
	font-weight: 700;
	font-family: var(--font-Rubik);
}
.site_menu__link_tit::before {
	--size: 3.1rem;
	content: "";
	position: relative;
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	width: var(--size);
	height: var(--size);
}
.site_menu__link_tit::before {
	background-image: url(../img/common/icon/icon-whats_curacion--red.svg);
}


.site_menu__link_lead {
	margin-bottom: 1rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	font-family: var(--font-NotoSans);
}

.site_menu__link_item {
	position: relative;
	align-items: center;
	justify-content: flex-start;
	column-gap: 0.7em;
}

.site_menu__link_item a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 0.7rem;
}
.site_menu__link_item a::before {
	--size: 2.4rem;
	content: "";
	position: relative;
	top: 0.1rem;
	display: block;
	margin-right: 0.5rem;
	background-image: url(../img/common/icon/icon-listitem--white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: var(--size);
	height: var(--size);
}


.site_menu__contact_block {
	color: #fff;
}

.site_menu__link_btn {
	--btn-color: #fff;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24rem;
	max-width: 100%;
	height: 7rem;
	margin-bottom: 2rem;
	border: 0.14rem solid var(--btn-color);
	border-radius: 1rem;
}
.site_menu__link_btn[data-btn="line"] {
	--btn-color: var(--color-grenn01);
	background: var(--color-grenn01);
}

.site_menu__link_btn::before {
	--size: 2.6rem;
	content: "";
	position: absolute;
	top: 51%;
	right: 1.1rem;
	transform: translateY(-50%);
	display: block;
	background-image: url(../img/common/icon/icon-arrow--bg_white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: var(--size);
	height: var(--size);
	transition: right 0.1s;
}

.site_menu__link_btn[data-btn="line"]::before {
	--size :4rem;
	/* 2024.1.16変更　採用・今野 */
	right: 0.7rem;
	background-image: url(../img/common/icon/icon-LINE.svg);
}

.site_menu__link_btn:hover {
	opacity: 0.7;
}
.site_menu__link_btn:hover::before {
	right: 0.5rem;
}

.site_menu__link_btn[data-btn="line"]:hover::before {
	right: 0.2rem;
}

.site_menu__access p {
	margin-top: 3.2rem;
	font-size: 1.4rem;
	line-height: 1.8;
}

@media screen and (max-width:769px) {
	.site_menu {
		padding-top: 7.7rem;
		padding-bottom: 6.2rem;
	}

	.site_menu__block {
		display: block;
	}

	.site_menu__link_block {
		grid-template-rows: auto;
		grid-template-columns: auto;
		margin-bottom: 5.4rem;
	}

	.site_menu__link_tit {
		font-size: 2.4rem;
		margin-bottom: 0.15rem;
	}
	.site_menu__link_lead {
		margin-bottom: 1.5rem;
		font-size: 1.4rem;
	}
	.site_menu__link_item a {
		--border: 0.14rem solid rgba(255,255,255,0.34);
		border-top: var(--border);
		padding: 1.4rem 0.4rem 1.44rem;
		margin-bottom: 0;
	}
	.site_menu__link_item:last-of-type a {
		border-bottom: var(--border);
	}

	.site_menu__logo img {
		width: 22rem;
	}

	.site_menu__link_btn {
		width: 100%;
	}

	.site_menu__access p {
		margin-top: 3.9rem;
	}
}



/*****************************

   header

******************************/
#header {
	position: fixed;
	z-index: 9990;
	top: 0;
	left: 0;
	width: 100%;
	height: 13rem; /* 元12rem */
	background: rgba(255, 255, 255, 0.89);
}
.header__inner {
	position: relative;
	max-width: 138rem;
	width: 96%;
	margin: 0 auto;
	height: 100%;
	padding-right: 10rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__contact_line {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26rem;
	height: 6rem;
	border-radius: 100rem;
	background: var(--color-grenn01);
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
}
.header__contact_line::after {
	--size: 5rem;
	content: "";
	position: absolute;
	top: 50%;
	right: 0rem;
	transform: translateX(-1rem) translateY(-50%);
	background-image: url(../img/common/icon/icon-LINE.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: var(--size);
	height: var(--size);
	transition: transform 0.2s;
}


.header__contact_line_lead {
	position: absolute;
	width: 18.4rem;
	top: -0.96rem;
	left: 50%;
	transform: translateX(-50%);
}



.hamburger_btn {
	position: absolute;
	z-index: 9994;
	top: 50%; 
	right: max(4rem,calc(50% - 69rem));
	transform: translateY(-50%);
	width: 6rem;
	height: 3.2rem;
	padding: 2rem;
	margin-bottom: 0.28rem;
	cursor: pointer;
}
.hamburger_btn span,
.hamburger_btn::before,
.hamburger_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%) scaleY(0.5);
	width: 100%;
	height: 0.62rem;
	background: var(--color-black01);
	border-radius: 0.08rem;
	pointer-events: none;
	transition: top 0.28s 0.28s, transform 0.28s, opacity 0.1s 0.1s, background-color 0.82s;
}
.hamburger_btn::before {
	top: calc(50% + 0.96rem);
}
.hamburger_btn::after {
	top: calc(50% - 0.96rem);
}


.header.menu-active .hamburger_btn span {
	opacity: 0;
}
.header.menu-active .hamburger_btn::before,
.header.menu-active .hamburger_btn::after {
	top: 50%;
	transition: top 0.28s, transform 0.28s 0.28s , background-color 0.82s;
	background: #fff;
}
.header.menu-active .hamburger_btn::before {
	transform: translateX(-50%) translateY(-50%) rotate(30deg) scaleY(0.5);
}
.header.menu-active .hamburger_btn::after {
	transform: translateX(-50%) translateY(-50%) rotate(-30deg) scaleY(0.5);
}


.header__menu .site_menu {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding-top: 5rem;
	padding-bottom: 6.44rem;
	overflow: auto;
	z-index: 9991;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-6.9rem);
	transition: transform 0.37s ease-in-out, opacity 0.37s ease-in-out;
}

/* グループ企業ロゴ ヘッダーバー追加　2023年10月　start */
.innerLogoContainer {
	display: none;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	background: #eeeeee;
	border-bottom: solid 1px #c6c6c6;
}
.logo_container {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-bottom: 5px;
	height: 23px;
}
.logo_container a {
	text-decoration: none;
}
.logo_item {
	padding: 0 5px 0 15px;
	height: 24px;
}
.logo_item span {
	background: #8d1e24;
	color: white;
	padding: 0 4px;
	margin-right: 5px;
	font-size: 0.8em;
}
.logo_item img {
	width: 80px;
	height: 23px;
	vertical-align: middle;
	padding-bottom: 3px;
}
.logo_item_head {
	width: 150px;
	padding: 0 15px 0 0;
	display: flex;
	flex-direction: column;
	margin-left: auto;
	height: 26px;
}
.logo_item_head img {
/* 	margin-top: auto; */
}
.logo_item_1 {
	width: 41px;
	height: 26px;
	padding: 0 15px 0 0;
}
.fukidashi {
	display: none;
	position: absolute;
	top: 30px;
	/*       left: 50px; */
	padding: 0 5px;
	border-radius: 5px;
	border: solid 1px #999999;
	background: #fff;
	color: #020202;
	font-size: 0.7em;
	z-index: 999;
}
.fukidashi.f1 {
	left: 50px;
}
.fukidashi.f2 {
	left: 100px;
}
.fukidashi.f3 {
	left: 150px;
}
.logo_item_1:hover + .fukidashi {
	display: block;
}
/* グループ企業ロゴ ヘッダーバー追加　2023年10月　end */




@media screen and (min-height: 820px) {
	.header__menu .site_menu {
		display: flex;
		align-items: center;
	}
}

.header.menu-active .header__menu .site_menu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: all;
}



@media screen and (max-width:769px) {
	#header {
		height: 6.9rem;
	}

	.header__inner {
		/* 2024.1.16変更　採用・今野 */
		width: 95%;
		padding-right: 6.9rem;
	}

	.header__logo {
		width: 13rem;
	}

	.header__contact_line {
		font-size: 1.4rem;
		/* 2024.1.16変更　採用・今野 */
		width: 10rem;
		height: 3.6rem;
		padding-right: 1.77rem;
	}
	.header__contact_line::after {
		--size: 2.5rem;
		transform: translateX(-0.56rem) translateY(-50%);
		transition: transform 0.25s;
	}

	.hamburger_btn {
		right: 2.56rem;
		/* 2024.1.16変更　採用・今野 */
		width: 4rem;
		height: 2.2rem;
		top: 50%;
	}
	.hamburger_btn span,
	.hamburger_btn::before,
	.hamburger_btn::after {
		height: 0.5rem;
	}

	.hamburger_btn::before {
		top: calc(50% + 0.89rem);
	}
	.hamburger_btn::after {
		top: calc(50% - 0.89rem);
	}

	.header__menu .site_menu {
		display: block!important;
		padding-bottom: 4rem;
	}

/* グループ企業ロゴ ヘッダーバー追加　2023年10月　start */
	.innerLogoContainer {
		display: none;
	}
/* グループ企業ロゴ ヘッダーバー追加　2023年10月　end */
}


/*****************************

   footer

******************************/
#footer {
	position: relative;
	margin-top: 5.6rem;
}

.footer__inner {
	margin-top: 28rem;
	padding-top: 8.1rem;
	padding-bottom: 8.2rem;
	background: var(--color-red01);
}

.footer__line_block {
	--size: 40rem;
	position: relative;
	top: 18.6rem;
	text-align: center;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--size);
	height: var(--size);
	margin-left: auto;
	margin-right: auto;
	transition: transform 0.7s;
	transform: translateY(0);
	z-index: 1;
}

.footer__line_block > span {
	display: block;
	transform: translateY(-9.2rem);
	transition: transform 0.7s;
}
.footer__line_block .icon-LINE {
	--size: 6rem;
	width: var(--size);
	margin-bottom: calc(var(--size) * 0.05);
}

.footer__line_block::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: var(--size);
	max-width: 92rem;
	height: var(--size);
	max-height: 90vw;
	border-radius: 100rem;
	background: var(--color-grenn01);
	will-change: height;
	transition: width 0.7s ,height 0.56s 0.14s, border-radius 0.5s 0.1s;
	z-index: -1;
}

.footer__line_block_lead {
	margin-bottom: 2.5rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}
.footer__line_block_text {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
}


.footer__copyright {
	text-align: center;
	font-size: 1.4rem;
	padding: 2.44rem 0 2.5rem;
}


@media screen and (min-width:769.02px) {
	.footer__line_block:hover {
		transform: translateY(-7rem);
		opacity: 0.62;
	}

	.footer__line_block:hover > span {
		transform: translateY(-6.28rem)
	}

	.footer__line_block:hover::before {
		width: 70vw;
		height: 40rem;
		border-radius: 3rem;
		transition: width 0.7s 0.07s,height 0.56s, border-radius 0.5s;
	}
}


@media screen and (max-width:769px) {
	.footer__line_block {
		--size: 20rem;
		top: 3.2rem;
		z-index: 9000;
		filter: drop-shadow(0px 1.1rem 1.1rem rgba(0, 0, 0, 0.11));
	}
	.footer__line_block:hover {
		opacity: 0.82;
	}
	.footer__line_block > span {
		transform: translateY(-1.1rem)
	}

	.footer__line_block_lead {
		font-size: 1.3rem;
		margin-bottom: 1.3rem;
	}
	.footer__line_block_text {
		font-size: 2.5rem;
	}

	.footer__copyright {
		font-size: 1.3rem;
		padding: 1rem 0 1.8rem;
		padding-left: 3rem;
		text-align: left;
	}
}



/*******************************

   animation

********************************/
/*****   アコーディオン   *****/
.acc_wrapper {
	display: block;
	height: auto;
}

.acc_wrapper .acc_switch {
	position: relative;
	cursor: pointer;
}
.acc_wrapper .acc_switch::after {
	--size: 2.5rem;
	content: "";
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%) rotateX(-180deg);
	background-image: url(../img/common/icon/icon-acc_arrow--black.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: var(--size);
	height: var(--size);
	transition: 0.47s transform;
	transform-origin: 0 47%;
}
.acc_wrapper.active .acc_switch::after {
	transform: translateY(-50%) rotateX(0deg);
}

.acc_wrapper .acc_block  {
	display: none;
	opacity: 0;
	transition: opacity 0.44s ease-in-out;
	will-change: margin,padding,height;
}
.acc_wrapper.active .acc_block  {
	opacity: 1;
}

@media screen and (max-width:769px) {
    .acc_switch::after {
		right: 1.4rem;
	}
}


/**************
   slick
***************/
.slider {
	opacity: 0;
	transition: 0.4s opacity ease-in-out;
}
.slider.slick-initialized {
	opacity: 1;
}


.slick-track {
	display: flex;
}
.slick-slide {
	height: auto!important;
}



@media screen and (max-width:769px) {
	.slider_sp {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		width: 100vw;
	}

	.slider_sp {
		margin-top: -2rem;
		margin-bottom: -2rem;
	}

	.slider_sp .slick-track {
		padding: 2rem 0;
		display: flex;
		align-items: stretch;
	}

	.slider_sp .slick-slide {
		margin: 0 0.92rem;
	}

	.slider_sp .slick-slide > div {
		height: 100%;
	}

}



/***   dots   ***/
.slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5rem auto 2rem;
	width: 75rem;
	max-width: 100%;
}
.slick-dots li {
	cursor: pointer;
}
.slick-dots li.slick-active {

}

@media screen and (max-width:769px) {
	/*****   slider   *****/
	.slider_sp {
		opacity: 0;
	}
	.slider_sp.slick-initialized {
		opacity: 1;
		transition: 0.4s opacity ease-in-out;
	}

	.slider_sp .slick-dots {
		column-gap: 2.2rem;
		margin-top: 1.7rem;
	}

	.slider_sp .slick-dots li {
		--size: 2rem;
		width: var(--size);
		height: var(--size);
		border-radius: var(--size);
		display: block;
		background: var(--color-red01);
		opacity: 0.3;
		transition: opacity 0.51s ease-in-out;
	}
	.slider_sp .slick-dots li.slick-active {
		opacity: 1;
	}

	.slider_sp .slick-dots li button {
		font-size: 0px;
		display: none;
	}

	.slick-dots {
		margin-top: 4rem;
	}
}




/****************
	js-animation_bg_cicle
*****************/
.js-animation_bg_cicle_wrapper {
	position: relative;
	/* margin: 144vh 0 119vh; */
}
.js-animation_bg_cicle {
	position: fixed;
	display: block;
	top: 50%;
	left: 50%;
	width: 140vw;
	min-width: 140vh;
	height: 140vw;
	min-height: 140vh;
	transform: translateX(-50%) translateY(-50%) scale(1);
	z-index: -1;
}
.js-animation_bg_cicle > span {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 140vw;
	background: var(--color-red01);
	transform: scale(0);
	will-change: transform;
}




/***************************

   main

****************************/



/***************************

   .home

****************************/
/***************
   .fv
****************/
.home .fv {
	position: relative;
	margin-bottom: -10rem;
}
.home .fv__img_block {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 460px;
	margin-top: 27rem;
	overflow: hidden;
	text-align: center;
	z-index: 0;
}

.home .fv__img_block video {
	width: 80%;
	height: 100%;
	object-fit: cover;
	border-radius: 2rem;
}

.home .fv__tit {
	position: relative;
	top: -1.8rem;
	margin-top: -56rem;
	text-align: center;
	z-index: 10;
}
.home .fv__tit::after {
	content: "";
	position: relative;
	display: block;
	width: 100%;
	height: 26rem;
}

.home .fv__tit > span {
	position: sticky;
	top: 16rem;
	display: block;
	padding-bottom: 15rem;
}

.home .fv > .blurred_circle[data-num="01"] {
	opacity: 0.4;
	top: -13rem;
	right: 7rem;
}
.home .fv > .blurred_circle[data-num="02"] {
	--size: 7rem;
	opacity: 0.7;
	top: -5.6rem;
	right: 18rem;
}

.home .fv__block {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	column-gap: 8rem;
	padding-bottom: 20rem;
	z-index: 10;
}

.home .fv__img_sub_block {
	position: relative;
	width: 55rem;
}
.home .fv__img_sub_block img {
	position: relative;
	display: block;
}

.home .fv__text_block {
	margin-bottom: 20rem;
}

.home .fv__text_block .text {
	line-height: 3.2;
}

.top-bnr{
	position:absolute;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	top:343px;
	z-index:100;
}
.top-bnr img{
	/* max-width:600px; */
	/* width:50%; */
}
.top-bnr-sp{
	display:none;
}
@media screen and (max-width: 769px){
	/* .top-bnr{
		top:calc(32em - 70% * 0.3198772180459245);
	} */
	.top-bnr-sp{
		display:block;
	}
	.top-bnr-pc{
		display:none;
	}
	.top-bnr img{
		width:70%;
		margin:0 auto;
	}
}



@media screen and (min-width:769.02px) {
	.home .fv__img_sub_block img:nth-of-type(1) {
		width: 27rem;
		margin-left: 3.9rem;
		margin-right: auto;
	}
	.home .fv__img_sub_block img:nth-of-type(2) {
		width: 29rem;
		margin-left: auto;
		margin-right: 0;
		margin-top: -1.9rem;
	}
	.home .fv__img_sub_block img:nth-of-type(3) {
		width: 31rem;
		margin-left: 0;
		margin-right: auto;
		margin-top: -3.7rem;
	}

	.home .fv__img_sub_block .blurred_circle[data-num="01"] {
		--size: 6.9rem;
		opacity: 0.7;
		top: 10rem;
		right: 9.6rem;
	}
	.home .fv__img_sub_block .blurred_circle[data-num="02"] {
		--size: 4.7rem;
		opacity: 0.4;
		top: 34.7rem;
		left: 13rem;
	}
	.home .fv__img_sub_block .blurred_circle[data-num="03"] {
		--size: 7rem;
		opacity: 0.7;
		bottom: 16.2rem;
		right: 0.5rem;
	}
}

@media screen and (max-width:769px) {
	.home .fv__img_block  {
		height: 32rem;
	}
	.home .fv__tit {
		top: 1rem;
	}
	.home .fv__tit > span {
		top: 13rem;
		padding-bottom: 25rem;
	}
	.home .fv__tit img {
		width: 34rem;
	}

	.home .fv > .blurred_circle[data-num="01"] {
		--size: 4.7rem;
		opacity: 0.6;
		top: -11rem;
		right: 0;
	}
	.home .fv > .blurred_circle[data-num="02"] {
		--size: 7rem;
		opacity: 0.89;
		top: -3.2rem;
		left: -0.4rem;
	}

	.home .fv__img_block {
		margin-top: 21rem;
	}



	.home .fv__block {
		flex-direction: column-reverse;
		overflow: hidden;
	}

	.home .fv__text_block {
		width: 31rem;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 5rem;
	}


	.home .fv__img_sub_block {
		width: 100%;
	}


	.home .fv__img_sub_block img:nth-of-type(1) {
		width: 25rem;
		margin-left: -5.6rem;
		margin-right: auto;
	}
	.home .fv__img_sub_block img:nth-of-type(2) {
		width: 24.4rem;
		margin-left: auto;
		margin-right: -3rem;
		margin-top: -5.4rem;
	}
	.home .fv__img_sub_block img:nth-of-type(3) {
		width: 24.4rem;
		margin-left: -2.9rem;
		margin-right: auto;
		margin-top: -3.2rem;
	}

	.home .fv__img_sub_block .blurred_circle[data-num="01"] {
		--size: 6.9rem;
		opacity: 0.7;
		top: 5rem;
		right: 6.2rem;
	}
	.home .fv__img_sub_block .blurred_circle[data-num="02"] {
		--size: 4.4rem;
		opacity: 0.4;
		top: 28.2rem;
		left: -0.1rem;
	}
	.home .fv__img_sub_block .blurred_circle[data-num="03"] {
		--size: 7rem;
		opacity: 0.7;
		bottom: 7.3rem;
		right: -2.2rem;
	}
}



/***************
   .sitemap
****************/
.home .sitemap_section {
	--color: rgba(202, 9, 21, 1);
	position: relative;
	display: flex;
	column-gap: 9.2rem;
	color: #ffff;
	padding-top:100px;
		background-color:rgba(202, 9, 21, 1);
}

.home .sitemap_section .js-animation_bg_cicle > span {
	background-color: var(--color);
	transition: background-color 0.5s ease-in-out;
}

.home .sitemap_section[data-section="whats_curacion"] {
	--color: rgba(202, 9, 21, 1);
	background-color:rgba(202, 9, 21, 1);
}
.home .sitemap_section[data-section="work_style"] {
	--color: rgba(36, 74, 209, 1);
	background-color:rgba(36, 74, 209, 1);
}
.home .sitemap_section[data-section="curacion_people"] {
	--color: rgba(32, 160, 137, 1);
	background-color:rgba(32, 160, 137, 1);
}
.home .sitemap_section[data-section="working_conditions"] {
	--color: rgba(202, 125, 9, 1);
	background-color:rgba(202, 125, 9, 1);
}

.home .sitemap_section__nav_list {
	position: sticky;
	top: 22vh;
	left: 0;
	z-index: 100;
}
.home .sitemap_section__nav_item {
	--active-position: 2.8rem;
	position: relative;
	padding-left: 0;
	margin-bottom: 1.1rem;
	transform: translateX(0rem);
	transition: transform 0.39s;
	z-index:99;
}
.home .sitemap_section__nav_item::before {
	content: "";
	position: absolute;
	top: 0;
	right: calc(100% - 0.15rem);
	width: 10rem;
	height: 100%;
	background: #fff;
}
.home .sitemap_section[data-section="whats_curacion"] .sitemap_section__nav_item[data-section="whats_curacion"],
.home .sitemap_section[data-section="work_style"] .sitemap_section__nav_item[data-section="work_style"],
.home .sitemap_section[data-section="curacion_people"] .sitemap_section__nav_item[data-section="curacion_people"],
.home .sitemap_section[data-section="working_conditions"] .sitemap_section__nav_item[data-section="working_conditions"] {
	transform: translateX(2.8rem);
}

.home .sitemap_section__nav_item img {
	min-width: 7.6rem;
}

.home .sitemap_section__wrapper:nth-of-type(n+2) {
	margin-top: 13rem;
}
.home .sitemap_section__block * {
    min-height: 0;
    min-width : 0;
}


.home .sitemap_section__block {
	overflow: hidden;
	display: grid;
	grid-template-columns: 50rem 1fr;
}

.sitemap_section__inner {
	opacity: 0;
}
.sitemap_section__inner:nth-of-type(1) {
	transition: opacity 1.1s ease-in-out;
}
.sitemap_section__inner:nth-of-type(2) {
	transition: opacity 1.06s 0.7s ease-in-out;
}
.sitemap_section__wrapper.active .sitemap_section__inner {
	opacity: 1;
}

.sitemap_section__icon {
	display: block;
	margin-bottom: 1.1rem;
}

.sitemap_section__heading {
	font-size: 7.3rem;
	line-height: 1.1;
	font-family: var(--font-Rubik);
	margin-bottom: 1.06rem;
}

.sitemap_section__lead {
	margin-bottom: 3.2rem;
	font-size: 2.2rem;
	font-weight: 700;
}

.sitemap_section__text {
	font-size: 1.5rem;
	line-height: 1.8;
}


.sitemap_section__item {
	margin: 0 1.7rem;
}
.sitemap_section__thumbnail {
	--size: 40rem;
	position: relative;
	display: block;
	width: var(--size);
	height: var(--size);
	box-shadow: 0px 1.1rem 1.1rem 0px rgba(0, 0, 0, 0.13);
	transition: opacity 0.44s,transform 0.62s;
	cursor: pointer;
}
.sitemap_section__thumbnail:hover {
	opacity: 0.77;
}
.sitemap_section__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sitemap_section__list_tit {
	font-size: 1.7rem;
	font-weight: 700;
	margin-top: 0.5rem;
	margin-left: 0.37rem;
}


.sitemap_section__link_list .slick-dots {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 0.2rem;
	width: fit-content;
	padding: 0 4.17rem;
	border-radius: 10rem;
	background: #fff;
	margin-left: 2rem;
	margin-top: 2.7rem;
}

.sitemap_section__link_list .slick-dots li button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	color: var(--color-black01);
	font-size: 1.8rem;
	font-family: var(--font-Rubik);
	font-weight: 700;
	transition: color 0.19s;
}
.sitemap_section__link_list .slick-dots li.slick-active button {
	color: var(--color);
}

.sitemap_section__link_list .slick-arrow {
	--size: 3.2rem;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(../img/common/icon/icon-arrow--bg_black.svg);
	background-repeat: no-repeat;
	background-size: contain;
	font-size: 0;
	width: var(--size);
	height: var(--size);
}
.sitemap_section__link_list .slick-arrow.slick-prev {
	left: 0.5rem;
	transform: translateY(-50%) rotate(180deg);
}
.sitemap_section__link_list .slick-arrow.slick-next {
	right: 0.5rem;
}
.sitemap_section__link_list .slick-dots .slick-arrow {
	opacity: 1;
}


@media screen and (min-width:769.02px) {
	.sitemap_section__thumbnail {
		transform: scale(0.93);
		transform-origin: top center;
	}
	.slick-active .sitemap_section__thumbnail {
		transform: scale(1);
	}

	.sitemap_section__list_tit {
		transform: translateY(-2.6rem);
		transition: transform 0.5s;
	}
	.slick-active .sitemap_section__list_tit {
		transform: translateY(0rem);
	}
}
@media screen and (max-width:769px) {
	.home .sitemap_section {
		flex-direction: column-reverse;
	}

	.home .sitemap_section__nav {
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: 5000;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.29s ease-in-out;
	}
	.home .sitemap_section.active .sitemap_section__nav {
		opacity: 1;
		pointer-events: auto;
	}
	.home .sitemap_section__nav_list {
		display: flex;
		column-gap: 1.1rem;
	}
	.home .sitemap_section__nav_item {
		width: 4.4rem;
		margin-bottom: 0;
		transform: translateY(0);
	}
	.home .sitemap_section__nav_item::before {
		width: 100%;
		top: calc(100% - 0.15rem);
		right: 0;
		height: 1.9rem;
	}
	.home .sitemap_section__nav_item img {
		min-width: 100%;
	}

	.home .sitemap_section[data-section="whats_curacion"] .sitemap_section__nav_item[data-section="whats_curacion"],
	.home .sitemap_section[data-section="work_style"] .sitemap_section__nav_item[data-section="work_style"],
	.home .sitemap_section[data-section="curacion_people"] .sitemap_section__nav_item[data-section="curacion_people"],
	.home .sitemap_section[data-section="working_conditions"] .sitemap_section__nav_item[data-section="working_conditions"] {
		transform: translateY(-1rem);
	}


	.home .sitemap_section__wrapper {
		overflow: hidden;
		padding: 0 3.1rem;
	}
	.home .sitemap_section__wrapper:nth-of-type(n+2) {
		margin-top: 8.7rem;
	}
	.home .sitemap_section__block {
		overflow: unset;
		grid-template-columns: 1fr;
	}

	.sitemap_section__icon {
		width: 4rem;
		margin-bottom: 0.38rem;
	}
	.sitemap_section__heading {
		margin-bottom: 0.2rem;
		font-size: 4rem;
	}

	.sitemap_section__lead {
		margin-bottom: 1.8rem;
		font-size: 1.8rem;
	}

	.sitemap_section__text {
		margin-bottom: 3.4rem;
	}

	.sitemap_section__link_list {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		width: 100vw;
	}
	.sitemap_section__link_list .slick-slide {
		margin: 0 1.5rem;
	}
	.sitemap_section__item {
		margin: 0;
	}
	.sitemap_section__thumbnail {
		--size: auto;
	}

	.sitemap_section__list_tit {
		font-size: 1.56rem;
		margin-top: 0.28rem;
	}

	.sitemap_section__link_list .slick-dots {
		margin-left: auto;
		margin-right: auto;
		margin-top: 2.5rem;
	}

}



/***************
   .home_message
****************/
.home_message {
	overflow: hidden;
	padding-top: 17rem;
	padding-bottom: 37rem;
}
.home_message__block {
	position: relative;
}
.home_message__img_block {
	position: relative;
}
.home_message__img_block > img {
	position: relative;
	display: block;
	width: 41.7rem;
	opacity: 0;
}
.home_message.active .home_message__img_block img {
	opacity: 1;
	transition: opacity 0.82s 0.87s ease-in-out;
}

.home_message__heading {
	position: relative;
	margin-bottom: 7.7rem;
	font-size: 4.17rem;
	line-height: 2;
}

.home_message__heading > span {
	position: relative;
	display: inline-block;
}

.home_message__heading > span::after {
	content: "";
	position: absolute;
	bottom: 0rem;
	left: 0;
	width: 100%;
	height: 1.2rem;
	border-radius: 10rem;
	background: var(--color-red01);
	transform: scaleX(0);
	transform-origin: left center;
}
.home_message__heading > span:nth-of-type(1):after {
	transition: transform 0.7s 0s;
}
.home_message__heading > span:nth-of-type(2):after {
	transition: transform 1.1s 0.5s;
}
.home_message__heading > span:nth-of-type(3):after {
	transition: transform 1s 0.77s;
}

.home_message.active .home_message__heading > span::after {
	transform: scaleX(1);
}


.home_message__text {
	opacity: 0;
	font-size: 1.6rem;
	line-height: 3;
}

.home_message__name {
	opacity: 0;
	margin-top: 3.8rem;
	font-weight: 700;
	line-height: 1.9;
}
.home_message__text,
.home_message__name {
	opacity: 0;
	transition: opacity 0.77s 1.56s ease-in-out;
}
.home_message.active .home_message__text,
.home_message.active .home_message__name {
	opacity: 1;
}


@media screen and (min-width:769.02px) {
	.home_message__img_block {
		position: absolute;
		top: -15rem;
		right: -2rem;
	}
    .home_message__img_block > img:nth-of-type(1) {
		right: -7rem;
	}
	.home_message__img_block > img:nth-of-type(2) {
		top: 4rem;
		right: 11rem;
	}
	.home_message__img_block > img:nth-of-type(3) {
		top: -1rem;
		right: -22rem;
	}

	.home_message__img_block .blurred_circle[data-num="01"] {
		--size: 8.7rem;
		opacity: 0.6;
		top: 4rem;
		left: 0;
	}
	.home_message__img_block .blurred_circle[data-num="02"] {
		--size: 12.5rem;
		opacity: 0.92;
		bottom: 18.7rem;
		left: 0;
	}
	.home_message__img_block .blurred_circle[data-num="03"] {
		--size: 10rem;
		opacity: 0.82;
		bottom: 1rem;
		left: -28rem;
	}
}

@media screen and (max-width:769px) {
	.home_message {
		overflow: hidden;
		padding-bottom: 4rem;
	}
	.home_message__img_block {
		margin-bottom: 4.7rem;
	}
	.home_message__img_block > img {
		opacity: 1;
	}
    .home_message__img_block > img:nth-of-type(1) {
		width: 25rem;
		right: -12.5rem;
	}
	.home_message__img_block > img:nth-of-type(2) {
		width: 25.5rem;
		right: auto;
		left: -7rem;
		margin-top: -4.17rem;
	}
	.home_message__img_block > img:nth-of-type(3) {
		width: 22.8rem;
		right: -14rem;
		margin-top: -5rem;
	}

	.home_message__img_block .blurred_circle[data-num="01"] {
		--size: 5.4rem;
		opacity: 0.6;
		top: 4.5rem;
		left: 1rem;
	}
	.home_message__img_block .blurred_circle[data-num="02"] {
		--size: 6.9rem;
		opacity: 0.92;
		bottom: 28.2rem;
		left: 16rem;
	}
	.home_message__img_block .blurred_circle[data-num="03"] {
		--size: 6.9rem;
		opacity: 0.82;
		bottom: 5.4rem;
		left: 5rem;
	}

	.home_message__heading {
		font-size: 3rem;
		margin-bottom: 4.4rem;
	}
	.home_message__heading > span::after {
		height: 0.96rem;
		bottom: -0.04rem;
	}
	.home_message__text {
		line-height: 2.6;
	}

	.home_message__name {
		margin-top: 1.8rem;
	}

	.home_message__text,
	.home_message__name {
		transition: 0.7s 1.34s ease-in-out;
	}
}



/***************
   .home_news
****************/
.home_news {
	margin-bottom: 14rem;
}

.homw_news_archive_link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: fit-content;
	margin-left: auto;
	margin-right: 0;
	column-gap: 1rem;
	text-align: right;
	margin-top: 5.4rem;
	white-space: nowrap;
}

.homw_news_archive_link::after {
	--size: 1em;
	content: "";
	position: relative;
	display: block;
	top: 0.073em;
	background-image: url(../img/common/icon/icon-arrow--bg_black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: var(--size);
	height: var(--size);
	transition: right 0.2s;
}

.home_news__item a {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 1rem;
	margin-bottom: 3.7rem;
}

.home_news__item .news__meta {
	min-width: 17.3rem;
}

.home_news__item .home_news__tit {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
}

@media screen and (max-width:769px) {
	.home_news__item a {
		grid-template-columns: 1fr;
		row-gap: 0.82rem;
	}
}


/***************
   .home_link_section
****************/
.home_link_section {
	margin-top: 7rem;
}

.home_link_section__block {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 5.6rem;
	row-gap: 3.2rem;
	flex-wrap: wrap;
}

.home_link_section__btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	flex: 1;
	height: 18rem;
	border-radius: 3rem;
	box-shadow: 0px 0px 2rem 0px rgba(0, 0, 0, 0.15);
	font-size: 2rem;
}
.home_link_section__btn::after {
	--size: 5rem;
	content: "";
	position: absolute;
	top: 51%;
	right: 4rem;
	transform: translateY(-50%);
	background-image: url(../img/common/icon/icon-arrow--bg_black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: var(--size);
	height: var(--size);
	transition: right 0.2s;
}

.home_link_section__btn:hover::after {
	right: 2.9rem;
}


@media screen and (max-width:769px) {
	.home_link_section {
		margin-top: 10rem;
	}
	.home_link_section__btn {
		width: 100%;
		height: 11rem;
		font-size: 1.6rem;
		flex: none;
	}

	.home_link_section__btn::after {
		--size: 4rem;
		right: 2rem;
	}
	.home_link_section__btn:hover::after {
		right: 0.9rem;
	}
}






/***************************

   news

****************************/
.news__meta {
	display: grid;
	grid-template-columns: 9.6rem auto;
	align-items: center;
}
.news__post_date {
	padding-bottom: 0.07em;
	color: var(--color-red01);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}
.news__tit {
	margin-bottom: 1.18rem;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.8;
}

.no_post__tit {
	font-size: 3.2rem;
}


@media screen and (max-width:769px) {
	.no_post__tit {
		font-size: 2.2rem;
	}
}

/*****   category   *****/
.news__category_label {
	--default-label-color: #736F72;
	--bg-color: var(--default-label-color);
	display: inline-block;
	width: fit-content;
	padding: 0.5em 0.73em 0.62em;
	border-radius: 0.5rem;
	background: var(--bg-color);
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	white-space: nowrap;
}
.news__category_label[data-category="all"] {
	--bg-color: #A72126;
}
.news__category_label[data-category="recruit"] {
	--bg-color: var(--color-red01);
}
.news__category_label[data-category="seminar"] {
	--bg-color: #CCA100;
}
.news__category_label[data-category="others"] {
	--bg-color: var(--default-label-color);
}

.news_category__list {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	row-gap: 0.87em;
	column-gap: 1rem;
	margin-bottom: 4rem;
}
.news_category__list .news__category_label {
	opacity: 0.37;
	background: var(--default-label-color);
	font-size: 1.4rem;
}

.news_category__list .news_category__item.current .news__category_label {
	opacity: 1;
	background: var(--bg-color);
	pointer-events: none;
}

a.news__category_label:hover {
	opacity: 0.56;
	background: var(--bg-color);
	transform: translateY(0);
	animation-name: label_anime;
	animation-delay: 0s;
    animation-duration:0.34s;
    animation-fill-mode: forwards;
}


@keyframes label_anime {
	0% {
		opacity: 0.5;
		transform: translateY(0);
	}
	16% {
		transform: translateY(-0.2rem);
	}
	30% {
		transform: translateY(-0.4rem);
	}
	50% {
		transform: translateY(-0.6rem);
	}
	70% {
		transform: translateY(-0.4rem);
	}
	84% {
		transform: translateY(-0.2rem);
	}
	100% {
		transform: translateY(0);
	}
}


/*****   news__list   *****/
.news__list_item a {
	display: grid;
	grid-template-columns: 32rem 1fr;
	column-gap: 4rem;
	row-gap: 3.4rem;
	padding: 4.17rem 0;
	border-top: 0.13rem solid var(--color-gray01);
}
.news__list_item a:hover {
	opacity: 0.73;
}

.news__list_item .news__thumbnail img {
	width: 100%;
}

.news__list_item .news__description {
	font-size: 1.6rem;
	line-height: 1.8;
	max-height: calc((1.6rem * 1.8) * 3);
	overflow: hidden;
}

.news__list_item .news__meta {
	margin-bottom: 2.2rem;
}

@media screen and (max-width:769px) {
	.news__list_item a {
		grid-template-columns: 1fr;
	}
}

/*****   news-single   *****/
.news-single .contents_wrapper {
	max-width: 90rem;
}
.news-single .news__meta {
	margin-bottom: 3.28rem;
}
.news-single .news__tit {
	padding-bottom: 3.2rem;
	border-bottom: 0.13rem solid var(--color-gray01);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.8;
}
.news__contents {
	padding-top: 0.7rem;
}

.news__contents_thumbnail {
	text-align: center;
	margin-top: 2.8rem;
	margin-bottom: 3.4rem;
}

.news__contents h2,
.news__contents h3,
.news__contents h4,
.news__contents h5 {
	margin: 1.4em 0;
}
.news__contents h2 {
	font-size: 1.9rem;
	line-height: 1.7;
}
.news__contents h3 {
	font-size: 1.8rem;
	line-height: 1.8;
}
.news__contents h4,
.news__contents h5 {
	font-size: 1.7rem;
	line-height: 1.8;
}

.news__contents p {
	margin: 1.47em 0;
	font-size: 1.6rem;
	line-height: 2.2;
}

.news__contents a {
	color: var(--color-red01);
	text-decoration: underline;
}
.news__contents a:hover {
	text-decoration: none;
}

.news__contents img {
	width: auto;
}


.news__retuen_btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 11.9rem auto 2rem;
	width: 100%;
	max-width: 50rem;
	height: 11.8rem;
	border-radius: 3rem;
	box-shadow: 0px 0px 1.8rem 0px rgba(0, 0, 0, 0.15);
	font-size: 2rem;
}
.news__retuen_btn::after {
	--size: 5rem;
	content: "";
	position: absolute;
	top: 51%;
	left: 4rem;
	transform: translateY(-50%) rotate(180deg);
	background-image: url(../img/common/icon/icon-arrow--bg_black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: var(--size);
	height: var(--size);
	transition: left 0.2s, transform 0.2s;
}

.news__retuen_btn:hover::after {
	left: 2.9rem;
	transform: translateY(-55%) rotate(180deg);
}

@media screen and (max-width:769px) {
	.news__contents h2,
	.news__contents h3,
	.news__contents h4,
	.news__contents h5 {
		margin: 0.92em 0;
	}

	.news__contents p {
		margin: 1em 0;
		line-height: 2;
	}

	.news__retuen_btn {
		height: 10rem;
		margin-top: 9.2rem;
		font-size: 1.7rem;
	}

	.news__retuen_btn::after {
		--size: 4rem;
		left: 2rem;
	}
	.news__retuen_btn:hover::after {
		left: 0.9rem;
	}
}




/***************************

   .number

****************************/
.number_detail__list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 6rem;
	row-gap: 5.6rem;
	margin-bottom: 11.9rem;
}
.number_detail__item {
	position: relative;
	text-align: center;
}
.number_detail__text {
	margin-top: 3.4rem;
	padding-bottom: 0.1rem;
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
}
.number_detail__item .lareger_text {
	font-size: 3rem;
	font-family: var(--font-Rubik);
}
.page-number .section__tit {
	text-align: center;
}
.page-number  .number_detail__visual img {
	border-radius: 3rem;
}


@media screen and (min-width:769.02px) {
	.number_detail__item:nth-of-type(3n+2)::before,
	.number_detail__item:nth-of-type(3n+2)::after {
		--adjust: 2.9rem;
		content: "";
		position: absolute;
		top: 0;
		width: 0.11rem;
		height: 100%;
		background: var(--color-gray01);
	}
	.number_detail__item:nth-of-type(3n+2)::before {
		right: calc(100% + var(--adjust));
	}
	.number_detail__item:nth-of-type(3n+2)::after {
		left: calc(100% + var(--adjust));
	}

}

@media screen and (max-width:769px) {
	.page-number .contents_wrapper {
		width: 96%;
	}

	.number_detail__list {
		grid-template-columns: 1fr 1fr;
		column-gap: 0.56rem;
		row-gap: 2.7rem;
		margin-bottom: 8.6rem;
	}

	.number_detail__text {
		margin-top: 1.6rem;
		font-size: 1.6rem;
	}
	.number_detail__item .lareger_text {
		font-size: 2.4rem;
	}
}


/***************************

   .work

****************************/
.page-work .movie_wrapper {
	max-width: 78rem;
	margin-left: auto;
	margin-right: auto;
}
.page-work .movie_wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-work .movie_wrapper video {
	max-width: 110%;
	width: 102%;
}

.page-work .section__tit {
	margin-top: 8.7rem;
	margin-bottom: 4.4rem;
}

.interview__block {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
}

.interview__profile {
	margin-bottom: 7.7rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.8;
}

.interview__type {
	display: inline-block;
	width: fit-content;
	padding: 0.82rem 1.6rem;
	margin-right: 2rem;
	border-radius: 0.2rem;
	background: var(--color-beige01);
	color: var(--color-red01);
}

.interview__item {
	margin-bottom: 0.5rem;
}

.interview__question,
.interview__answer {
	padding: 2.44rem 3rem;
}

.interview__question {
	border-radius: 1rem;
	background: var(--color-beige01);
	font-weight: 700;
}

.interview__answer {
	padding-top: 2rem;
}


@media screen and (max-width:769px) {
	.page-work .section__tit {
		margin-top: 4rem;
		margin-bottom: 2.2rem;
	}
	.interview__profile {
		margin-bottom: 5rem;
		font-size: 1.6rem;
	}
	.interview__type {
		display: block;
		margin-bottom: 1.17rem;
	}

	.interview__question,
	.interview__answer {
		padding: 2.1rem 2rem;
	}

	.interview__answer {
		padding-left: 0.17rem;
		padding-right: 0.17rem;
	}
}



/***************************

   .faq100_manager

****************************/
.faq100_manager__list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 2rem;
	row-gap: 3.8rem;
}

.faq100_manager__item {
	padding: 3rem 3rem 3.2rem;
	border-radius: 0.1rem;
	background: #FFF;
	box-shadow: 0px 0px 1.1rem 0px rgba(0, 0, 0, 0.10);
}

.faq100_manager__profile {
	margin-top: 2.8rem;
	margin-bottom: 2.9rem;
}

.faq100_manager__area {
	display: block;
	font-size: 1.7rem;
	font-weight: 500;
}
.faq100_manager__name {
	display: block;
	font-size: 2.1rem;
	margin-top: 1.25rem;
}

.faq100_manager__link_btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 6rem;
	border-radius: 10rem;
	padding-bottom: 0.17rem;
	background: var(--color-red01);
	color: #fff;
	font-size: 1.7rem;
}

.faq100_manager__link_btn::after {
	--size: 4rem;
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%)translateX(-1rem);
	background-image: url(../img/common/icon/icon-arrow--bg_white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: var(--size);
	height: var(--size);
	transition: transform 0.28s;
}
.faq100_manager__link_btn:hover::after {
	transform: translateY(-50%)translateX(-0.28rem);
}

@media screen and (max-width:769px) {
	.faq100_manager__list {
		grid-template-columns: 1fr;
	}

	.faq100_manager__profile {
		margin-bottom: 3.2rem;
	}
}


/***************************

   .page-faq100_manager

****************************/
.faq100_manager_fv {
	display: grid;
	grid-template-columns: 44rem 1fr;
	gap: 0;
}

.faq100_manager_fv__manager {
	border-radius: 3rem;
	overflow: hidden;
}
.faq100_manager_fv__manager img {
	width: 100%;
}

.faq100_manager_fv__profile {
	background: var(--color-red01);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 8rem;
	border-radius: 3rem;
	color: #fff;
}

.faq100_manager_fv__area {
	display: block;
	font-size: 2rem;
	font-weight: 500;
}

.faq100_manager_fv__name {
	display: block;
	margin-top: 2.6rem;
	font-size: 3rem;
}

@media screen and (min-width:769.02px) {
	.faq100_manager_fv__manager {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}
	.faq100_manager_fv__profile {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}
}

@media screen and (max-width:769px) {
	.faq100_manager_fv {
		grid-template-columns: 1fr;
	}

	.faq100_manager_fv__manager {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
	.faq100_manager_fv__profile {
		padding: 3rem;
		padding-bottom: 3.4rem;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

	.faq100_manager_fv__area {
		font-size: 1.6rem;
	}

	.faq100_manager_fv__name {
		font-size: 2rem;
		margin-top: 1.4rem;
	}
}




/***************************

   .training_system

****************************/
.page-training_system {
	overflow-x: hidden;
}
.training_system__fv_img {
	position: relative;
}

.training_system__fv_tit {
	margin-top: -2.2rem;
	margin-bottom: 2.5rem;
	font-size: 4.17rem;
	font-weight: 700;
	line-height: 2;
	color: var(--color-red01);
}
.training_system__fv_text{
	color:white;
}

@media screen and (min-width:769px) {
	.training_system__fv_img  {
		position: absolute;
		top: -0.44em;
		right: -0.2em;
		width:1em;
		font-size: clamp(4rem,57vw,69rem);
		line-height: 1;
	}

	.training_system__fv_img .blurred_circle_3group {
		font-size: 9.6rem;
		top: auto;
		bottom: -4rem;
		left: -5.4rem;
	}
}

@media screen and (max-width:769px) {
	.training_system__fv_img {
		position: relative;
		left: 2.8rem;
		margin-top: -14.4rem;
		margin-bottom: -4.7rem;
		width: 34rem;
	}

	.training_system__fv_img .blurred_circle_3group {
		font-size: 6.3rem;
		left: -2.8rem;
		top: auto;
		bottom: -2rem;
	}

	.training_system__fv_tit {
		font-size: 3rem;
		margin-top: -1.1rem;
		margin-bottom: 1rem;
	}

}


/*****   about_system   *****/
.about_system section:nth-of-type(n+2) {
	margin-top: 15rem;
}

.about_system .heading_block {
	margin-top: -0.28rem;
	margin-bottom: 6.44rem;
}
.about_system .heading_block__heading {
	-webkit-text-stroke: 0;
}
.about_system .heading_block__lead {
	color: #fff;
}
.about_system .heading_block__lead::before {
	background: #fff;
}

.about_system__text {
	color: #fff;
}


.about_system__block {
	display: grid;
	grid-template-columns: 1fr 52rem;
	column-gap: 7.7rem;
}

.about_system__box_list {
	display: grid;
	grid-template-columns: repeat(3 , 1fr);
	column-gap: 2rem;
	margin-top: 8.9rem;
}

.about_system__box {
	border-radius: 3rem;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr;
}
.about_system__box_list_img img {
	width: 100%;
}
.about_system__box_list_text {
	background: #fff;
	padding: 2.2rem 3rem;
	font-size: 1.4rem;
	line-height: 1.8;
}


.system_learn__list {
	margin-left: 0;
	margin-right: auto;
	margin-top: 3.4rem;
}
.system_learn__item {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	width: fit-content;
	max-width: 100%;
	column-gap: 0.54rem;
	padding: 1rem 1.7rem 1.1rem 1.1rem;
	border-radius: 0.1rem;
	background: #fff;
	font-weight: 700;
	line-height: 1.8;
}
.system_learn__item:nth-of-type(n+2) {
	margin-top: 1.1rem;
}
.system_learn__item::before {
	--size: 2.9rem;
	content: "";
	top: 0.02rem;
	position: relative;
	display: block;
	min-width: var(--size);
	width: var(--size);
	height: var(--size);
	background-image: url(../img/common/icon/icon-listitem--red.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

@media screen and (max-width:769px) {
	.about_system section:nth-of-type(n+2) {
		margin-top: 10.6rem;
	}
	.about_system__block {
		grid-template-columns: 1fr;
	}
	.about_system .heading_block {
		margin-bottom: 4.4rem;
	}
	.about_system__img_block {
		grid-row-start: 1;
		margin-bottom: 5.6rem;
	}

	.about_system__box_list {
		margin-top: 3.7rem;
	}

	.about_system__box_list.slider_sp .slick-dots {
		margin-top: 0.7rem;
	}
	.about_system__box_list.slider_sp .slick-dots li {
		background: #fff;
	}

	.about_system__box {
		height: 100%;
		display: grid!important;
	}
	.about_system__box_list_text {
		padding: 1.8rem 1.92rem;
	}

	.system_learn__list {
		margin-top: 2.9rem;
	}
	.system_learn__item {
		width: 100%;
		padding: 0.82rem 2rem 0.87rem 1.1rem;
		column-gap: 0.5rem;
	}
}


/*****   system_career   *****/

@media screen and (min-width:769.02px) {
	.system_career__block {
		display: grid;
		grid-template-columns: 1fr 51.8rem;
		column-gap: 7.7rem;
	}

	.system_career__block .heading_block {
		margin-top: -0.32rem;
		margin-bottom: 5.6rem;
	}
}

@media screen and (max-width:769px) {
	.system_career__img {
		width: 77%;
		margin: 2rem auto 0;
	}
	.system_career__block {
		display: grid;
	}
}


/***************************

   .nosocomial

****************************/
.nosocomial_fv {
	position: relative;
}
.nosocomial_fv video {
	width: 100%;
}
.nosocomial_fv .drone_icon {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	width: 11.7rem;
}

.gallery__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	justify-items: center;
	column-gap: 2rem;
	row-gap: 2rem;
	width: 96%;
	max-width: 140rem;
	margin-left: auto;
	margin-right: auto;
}

.gallery__item figure {
	position: relative;
}
.gallery__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0.7rem 1.18rem;
	background: var(--color-black01);
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.18;
}


@media screen and (max-width:769px) {
	.nosocomial_fv .drone_icon {
		width: 3.9rem;
		bottom: 0.87rem;
		right: 1rem;
	}

	.gallery__list {
		grid-template-columns: auto;
	}
}





/***************************

   .welfare

****************************/
.about_welfare__list {
	display: grid;
	grid-template-columns: auto auto;
	gap: 2rem;
}

.about_welfare__item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	column-gap: 2rem;
	height: 12rem;
	padding: 2rem;
	border-radius: 1rem;
	background: var(--color-beige01);
}

.about_welfare__item p {
	font-size: 2rem;
	line-height: 1.77;
}


@media screen and (max-width:769px) {
	.about_welfare__list {
		grid-template-columns: auto;
	}

	.about_welfare__item {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 0.5rem;
		height: auto;
	}

	.about_welfare__item > img {
		width: 5rem;
	}
}




/***************************

   .about

****************************/
.page-about .about_curacion__list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 2rem;
	row-gap: 6rem;
	margin-top: 8rem;
}

.page-about .about_curacion__item {
	position: relative;
	padding: 9rem 2rem 5rem;
	text-align: center;
	border: 1px solid var(--color-gray01);
	border-radius: 3rem;
}

.page-about .about_curacion__tit {
	--size: 9rem;
	position: absolute;
	top: -2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--size);
	height: var(--size);
	border-radius: var(--size);
	background: var(--color-red01);
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
}

.page-about .about_curacion__illust {
	margin-bottom: 4rem;
}

.page-about .about_curacion__text {
	text-align: center;
	font-size: 2rem;
	line-height: 1.4;
	font-weight: 700;
}

.page-about .lareger_text {
	position: relative;
	top:0.02em;
	font-size: 2.4rem;
	font-family: var(--font-Rubik);
}

/***   history   ***/
.page-about .history__item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 3.7rem 5rem 3.8rem;
	border-radius: 1rem;
	background: var(--color-beige01);
	line-height: 1.8;
}
.page-about .history__item:nth-of-type(n+2) {
	margin-top: 2rem;
}

.page-about .history__date {
	min-width: 15rem;
	margin-right: 1rem;
	color: var(--color-red01);
	font-size: 2rem;
	font-weight: 700;
}




@media screen and (max-width:769px) {
	.page-about .about_curacion__list {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		width: 35rem;
		grid-template-columns: 1fr 1fr;
		column-gap: 0.5rem;
		row-gap: 4.17rem;
	}

	.page-about .about_curacion__item {
		padding-top: 6rem;
		padding-bottom: 3.2rem;
	}

	.page-about .about_curacion__illust {
		width: 12rem;
		margin: 0 auto 1.8rem;
	}
	.page-about .about_curacion__illust img {
		width: 100%;
	}
	.page-about .about_curacion__tit {
		--size: 6.2rem;
		font-size: 1.22rem;
	}
	.page-about .about_curacion__text {
		font-size: 1.6rem;
	}

	.page-about .history__date {
		margin-right: 0;
		line-height: 1.8;
	}

	.page-about .history__item {
		padding: 1.4rem 2rem 2rem;
		flex-direction: column;
		align-items: flex-start;
	}
}



/***************************

   .characteristics

****************************/
.page-characteristics .section__tit {
	position: relative;
	top: -0.44em;
	margin-bottom: 1.4rem;
}

.philosopy {
	margin-bottom: 28rem;
}
.philosopy__text {
	max-width: 50rem;
}

.vision__block {
	max-width: 91rem;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width:769.02px) {
	.philosopy__img_block {
		position: absolute;
		width: 44rem;
		top: 37rem;
		right: -0.5rem;
		z-index: -1;
	}

	.philosopy__img_block .blurred_circle_3group {
		top: 0;
		right: -13rem;
		font-size: 11.8rem;
		z-index: -1;
	}
}

@media screen and (max-width:769px) {
	.philosopy {
		margin-bottom: 11.5rem;
	}
	.page-characteristics .section__tit {
		top: -0.77em;
	}
	.philosopy__img_block {
		position: relative;
		width: 28rem;
		margin-left: auto;
		margin-right: auto;
		margin-top: 5rem;
	}

	.philosopy__img_block .blurred_circle_3group {
		top: -2.2rem;
		right: 50%;
		transform: translateX(50%);
		font-size: 7.3rem;
		z-index: -1;
	}
}



/***************************

   .message

****************************/
.page-message .blurred_circle_3group {
	font-size: 6.2rem;
	top: -11rem;
	right: -2.2rem;
}

.top_message__wrapper {
	max-width: 91rem;
	margin-left: auto;
	margin-right: auto;
}

.top_message__wrapper .section__tit {
	position: relative;
	top: -0.56em;
}

.top_message__block {
	display: grid;
	grid-template-columns: 44rem 1fr;
	align-items: flex-start;
	column-gap: 6rem;
	width: 100rem;
}

.top_message__name {
	margin-top: -0.7em;
	margin-bottom: 1.9rem;
	font-size: 2.4rem;
	line-height: 1.8;
}

.top_message__text {
	font-size: 1.4rem;
}


.company_employees__wrapper {
	max-width: 91rem;
	margin-left: auto;
	margin-right: auto;
}
.company_employees__tit {
	margin-bottom: 2.8rem;
	font-size: 4.17rem;
	color: var(--color-red01);
	line-height: 1.6;
}


.top_students__block {
	display: grid;
	grid-template-columns: 54rem 1fr;
	column-gap: 6rem;
	align-items: flex-start;
}


@media screen and (max-width:769px) {
	.page-message .blurred_circle_3group {
		font-size: 3.4rem;
		top: -7.3rem;
		right: -2.9rem;
	}
	.top_message__block {
		width: 100%;
		grid-template-columns: 1fr;
	}

	.top_message__name {
		margin-top: 2.2rem;
		font-size: 1.77rem;
	}

	.top_message__text {
		line-height: 1.9;
	}

	.company_employees__tit {
		margin-bottom: 2.1rem;
		font-size: 3rem;
	}

	.top_students__block {
		grid-template-columns: 1fr;
		row-gap: 2.9rem;
	}
}




/***************************

   .companytour

****************************/
/* LINEの文字を黒に変更2024.3.8今野 */
.companytour a {
	color: black;
	text-decoration: underline;
}
.companytour a:hover {
	text-decoration: none;
}
.companytour__fv_img {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5rem;
	border-radius: 3rem;
	overflow: hidden;
}

.companytour .blurred_circle_3group {
	font-size: 6.2rem;
	top: -11.8rem;
	right: -1rem;
}


@media screen and (max-width:769px) {
	.companytour__fv_img {
		margin-bottom: 2.2rem;
		width: 100%;
	}

	.companytour .blurred_circle_3group {
		font-size: 3.9rem;
		top: -9.2rem;
		right: -3.4rem;
	}
}

/*****   .companytour_flow   *****/
.companytour_flow__list {
	counter-reset: companytour_flow-number 0;
}
.companytour_flow__item {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 24rem;
	column-gap: 4.4rem;
	align-items: center;
	background: #fff;
	padding: 2rem;
	padding-left: 16rem;
	border-radius: 3rem;
}
.companytour_flow__item:nth-of-type(n+2) {
	margin-top: 2rem;
}
.companytour_flow__item::before {
	--size: 3.1em;
	counter-increment: companytour_flow-number;
	content: counter(companytour_flow-number , decimal-leading-zero);
	position: absolute;
	top: 50%;
	left: 5.6rem;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--size);
	height: var(--size);
	border-radius: var(--size);
	background: var(--color-beige01);
	color: var(--color-red01);
	font-size: 2rem;
	font-family: var(--font-Rubik);
	font-weight: 700;
	padding-right: 0.1em;
}

.companytour_flow__list_tit {
	margin-bottom: 0.25rem;
	color: var(--color-red01);
	font-size: 2rem;
	line-height: 1.8;
}

.companytour_flow__list_text {
	font-size: 1.6rem;
	line-height: 1.8;
}


@media screen and (max-width:769px) {
	.companytour_flow__item::before {
		--size: 2.5em;
		position: relative;
		left: 0;
		top: 0;
		transform: translate(0);
		font-size: 1.6rem;
		margin-bottom: 1rem;
	}
	.companytour_flow__item {
		grid-template-columns: 1fr;
		padding: 2rem;
	}

	.companytour_flow__list_text {
		margin-bottom: 1.5rem;
	}
}


/***************************

   .faq100

****************************/
/***************************
   .faq100
****************************/
.faq100 {
	counter-reset: faq-number 0;
}
.faq100__list {
	max-width: 90rem;
	margin: 0 auto 10rem;
}
.faq100__item {
	margin-bottom: 0.7rem;
}
.faq100__question,
.faq100__answer {
	position: relative;
	padding: 1.7rem 1.6rem 1.8rem;
	padding-left: 6.2rem;
}
.faq100__question {
	background: var(--color-beige01);
	border-radius: 1rem;
	font-weight: 700;
}
.faq100__question::before {
	--size: 3.1rem;
	counter-increment: faq-number;
	content: counter(faq-number);
	position: absolute;
	left: 1.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--size);
	height: var(--size);
	padding-left: 0.1rem;
	border-radius: var(--size);
	background: var(--color-black01);
	color: #fff;
	font-size: 1.2rem;
	font-family: var(--font-Rubik);
	font-weight: 700;
	line-height: 1.1;
	white-space: nowrap;
	transform: translateY(-0.07rem);
}

@media screen and (max-width:769px) {
	.faq100__question,
	.faq100__answer {
		padding: 1.4rem 1.5rem 1.5rem;
		padding-left: 5.5rem;
	}

	.faq100__question::before {
		left: 1.5rem;
	}
	.faq100_anker_block .anker_block__list {
		flex-direction: row;
	}
}


/***************************

   .clinic

****************************/
.page-clinic {
	overflow-x: hidden;
}
.clinic .heading_block__heading {
	color: var(--color-red01);
	font-size: 15.6rem;
	margin-bottom: 0.4rem;
}
.clinic .heading_block__lead {
	font-size: 2rem;
}

.clinic__text {
	max-width: 50.5rem;
}

@media screen and (min-width:769.02px) {
	.clinic__img_block img {
		position: absolute;
		top: -22rem;
		right: -0.28em;
		width:1em;
		font-size: clamp(4rem,57vw,69rem);
		line-height: 1;
	}

	.clinic__img_block .blurred_circle_3group {
		top: 45.6rem;
		right: -2.2rem;
		font-size: 9.9rem;
	}
}
@media screen and (max-width:769px) {
	.clinic .heading_block__heading {
		font-size: 7.7rem;
	}
	.clinic .heading_block__lead {
		font-size: 1.8rem;
	}

	.clinic__img_block img {
		position: relative;
		left: 4.4rem;
		margin-top: -13.4rem;
		margin-bottom: -4.4rem;
	}

	.clinic__img_block .blurred_circle_3group {
		font-size: 6.2rem;
		top: -8.9rem;
		right: -4rem;
	}

	.clinic .section__tit {
		margin-bottom: 1.7rem;
	}
}


/*****   .clinic_description__list   *****/
.clinic_description__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 2rem;
	row-gap: 2rem;
	align-items: stretch;
}

.clinic_description__item {
	padding: 4rem 3rem 3.2rem;
	text-align: left;
	box-shadow: 0px 0px 1.1rem 0px rgba(0, 0, 0, 0.11);
	border-radius: 0.1rem;
}

.clinic_description__list_img {
	width: 100%;
	text-align: center;
	margin-bottom: 2.5rem;
}
.clinic_description__list_tit {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 2rem;
	line-height: 1.8;
	min-height: 3.6em;
	margin-bottom: 1.5rem;
}

.clinic_description__list_text {
	text-align: left;
	font-size: 1.4rem;
	line-height: 1.86;
}

@media screen and (min-width:769.02px) {
	.clinic_description__list_img {
		min-height: 19rem;
	}
}

@media screen and (max-width:769px) {
	.clinic_description__list {
		grid-template-columns: 1fr;
	}

	.clinic_description__item {
		padding: 2rem;
	}

	.clinic_description__list_img {
		margin-bottom: 1.3rem;
	}

	.clinic_description__list_tit {
		margin-bottom: 0.82rem;
	}
	.clinic_description__list_text {
		font-size: 1.4rem;
	}
}


/*****   .recommendation   *****/
.recommendation__list {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
}
.recommendation__item {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	column-gap: 0.92rem;
	padding: 3.4rem 5rem;
	border-radius: 1rem;
	background: var(--color-beige01);
	font-weight: 700;
	line-height: 1.8;
}
.recommendation__item:nth-of-type(n+2) {
	margin-top: 1.1rem;
}
.recommendation__item::before {
	--size: 2.9rem;
	content: "";
	top: 0.02rem;
	position: relative;
	display: block;
	min-width: var(--size);
	width: var(--size);
	height: var(--size);
	background-image: url(../img/common/icon/icon-listitem--red.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

@media screen and (max-width:769px) {
	.recommendation__item {
		padding: 1.7rem 2.28rem 1.9rem;
		column-gap: 0.87rem;
	}
}


/*****   .work_style   *****/
.work_style {
	padding-top: 7rem;
	margin-top: -7rem;
}
.work_style__item {
	padding: 4rem 3rem 3rem;
	text-align: left;
	box-shadow: 0px 0px 1.1rem 0px rgba(0, 0, 0, 0.11);
	border-radius: 0.1rem;
}

.work_style__img {
	text-align: center;
	margin-bottom: 1.8rem;
}

.work_style__tit {
	font-size: 2rem;
}

@media screen and (min-width:769.02px) {
	.work_style__list {
		display: grid;
		grid-template-columns: repeat(3 , 1fr);
		column-gap: 2rem;
		row-gap: 2rem;
	}
}

@media screen and (max-width:769px) {
	.work_style__item {

	}
	.work_style__tit {
		font-size: 1.8rem;
	}
}

/***************************

   .tainer

****************************/
.trainer .trainer__img_block {
	position: relative;
}

.trainer__text {
	max-width: 54rem;
}

@media screen and (min-width:769.02px) {
	.trainer .trainer__img_block {
		position: absolute;
		width: 47.7rem;
		top: -7rem;
		right: 0;
	}

	.trainer .blurred_circle_3group {
		font-size: 11.9rem;
		top: 8.7rem;
		right: -10.6rem;
		z-index: -1;
	}
}

@media screen and (max-width:769px) {
	.trainer .trainer__img_block {
		position: relative;
		top: -2.5rem;
		margin-top: 9.6rem;
	}
	.trainer .blurred_circle_3group {
		font-size: 7.3rem;
		right: -1rem;
	}

	.trainer .section__tit {
		font-size: 1.8rem;
		line-height: 2;
		margin-bottom: 2.2rem;
	}
}


/*****   .trainer_contents   *****/
.trainer_contents__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 2rem;
	row-gap: 2rem;
	align-items: stretch;
}

.trainer_contents__item {
	padding: 4rem 3rem 3.2rem;
	text-align: left;
	box-shadow: 0px 0px 1.1rem 0px rgba(0, 0, 0, 0.11);
	border-radius: 0.1rem;
}

.trainer_contents__list_img {
	width: 100%;
	text-align: center;
	margin-bottom: 2.5rem;
}
.trainer_contents__list_tit {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 2rem;
	line-height: 1.8;
	min-height: 3.6em;
	margin-bottom: 1.5rem;
}

.trainer_contents__list_text {
	text-align: left;
	font-size: 1.4rem;
	line-height: 1.86;
}

@media screen and (min-width:769.02px) {
	.trainer_contents__list_img {
		min-height: 19rem;
	}
}

@media screen and (max-width:769px) {
	.trainer_contents__list {
		grid-template-columns: 1fr;
	}

	.trainer_contents__list_img {
		margin-bottom: 1.3rem;
	}

	.trainer_contents__item {
		padding: 2rem;
	}

	.trainer_contents__list_tit {
		margin-bottom: 0.82rem;
	}
	.trainer_contents__list_text {
		font-size: 1.4rem;
	}
}


/*****   .partnership   *****/
.partnership__wrapper {
	max-width: 90rem;
	margin: 0 auto 2.9rem;
}

.partnership__img {
	position: relative;
	margin-bottom: 3.2rem;
}

.partnership__list {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
}
.partnership__item {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	font-size: 2rem;
	column-gap: 0.92rem;
	line-height: 1.8;
}
.partnership__item:nth-of-type(n+2) {
	margin-top: 1rem;
}
.partnership__item::before {
	--size: 2.4rem;
	content: "";
	top: 0.77rem;
	position: relative;
	display: block;
	min-width: var(--size);
	width: var(--size);
	height: var(--size);
	font-size: 1em;
	background-image: url(../img/common/icon/icon-listitem--red.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

@media screen and (max-width:769px) {
	.partnership__item:nth-of-type(n+2) {
		margin-top: 1.6rem;
	}
}

/*****  .traienr_athlete   *****/
.traienr_athlete__list {
	display: block;
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
}
.traienr_athlete__item {
	display: grid;
	grid-template-columns: 16rem 1fr;
	align-items: center;
	column-gap: 4rem;
}
.traienr_athlete__item:nth-of-type(n+2) {
	margin-top: 3rem;
}

.traienr_athlete__name {
	margin-bottom: 0.17rem;
	font-size: 2rem;
	line-height: 1.8;
}
.traienr_athlete__explain {
	font-size: 1.6rem;
	line-height: 1.8;
}

@media screen and (max-width:769px) {
	.traienr_athlete__item {
		grid-template-columns: 1fr;
	}

	.traienr_athlete__item:nth-of-type(n+2) {
		margin-top: 3.4rem;
	}

	.traienr_athlete__item > img {
		width: 10rem;
		margin-bottom: 0.96rem;
	}

	.traienr_athlete__name {
		margin-bottom: 0.082rem;
	}
}


/*****   .trainer_education   *****/
.trainer_education__wrapper {
	display: grid;
	grid-template-columns: 1fr 54rem;
	column-gap: 6rem;
	row-gap: 2.9rem;
	margin-bottom: 7rem;
}

.trainer_education__wrapper .section__tit {
	margin-top: -0.77em;
	margin-bottom: 2.9rem;
}

.trainer_education__box {
	display: grid;
	grid-template-columns: 1fr 22rem;
	column-gap: 5.6rem;
	padding: 3rem 6rem;
	border: 0.11rem solid var(--color-gray01);
	border-radius: 3rem ;
}

.trainer_education__box .name {
	margin-bottom: 1.5rem;
	text-align: left;
	font-weight: 700;
	font-size: 2rem;
}

@media screen and (max-width:769px) {
	.trainer_education__wrapper {
		grid-template-columns: 1fr;
		row-gap: 2.9rem;
		margin-bottom: 4rem;
	}
	.trainer_education__wrapper .section__tit {
		margin-bottom: 1.3rem;
	}


	.trainer_education__box {
		grid-template-columns: 1fr;
		flex-direction: column-reverse;
		padding: 4rem 2.18rem 2.5rem;
	}
	.trainer_education__box .name {
		margin-bottom: 1.1rem;
	}

	.trainer_education__box_img_block {
		grid-row-start: 1;
		width: 10rem;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 2.9rem;
	}
}





/***************************

   locations

****************************/
.locations_store__block {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
}

.locations_store__block .section__tit {
	margin-top: -1rem;
	margin-bottom: 2.9rem;
}

.locations_store_list__tit {
	display: block;
	text-align: left;
	font-size: 1.6rem;
	margin-bottom: 2rem;
}

.locations_store__item {
	display: flex;
	flex-direction: column-reverse;
	--border: 0.14rem solid var(--color-gray01);
}
.locations_store__item:nth-of-type(n+2) {
	margin-top: 2rem;
}
.locations_store_list__area {
	display: block;
	padding: 1.4rem 2rem;
	border: var(--border);
	font-size: 2rem;
	border-radius:1rem;
}
.locations_store_list__area--num {
	display: inline-block;
	margin-left: 2.8rem;
	color: var(--color-red01);
}

.locations_store_list__info {
	margin-top: 2.28rem;
	margin-bottom: 2.8rem;
}
.locations_store_list__info > div {
	display: block;
	padding: 1rem 0.1rem;
	border-top: var(--border);
}
.locations_store_list__info:last-of-type {
	border-bottom: var(--border);
}
.locations_store_list__info--type {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.62rem;
}
.locations_store_list__info--name {
	display: block;
	text-decoration: underline #222b;
	font-size: 2rem;
	margin-bottom: 0.28rem;
}
.locations_store_list__info > div > span {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: flex-start;
	align-items: center;
	column-gap: 1.8rem;
}
.locations_store_list__info--name:hover {
	text-decoration: none;
}
.locations_store_list__info--tel,
.locations_store_list__info--address {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	line-height: 1.8;
}
.locations_store_list__info--tel::before,
.locations_store_list__info--address::before {
	--size: 1.3em;
	content: "";
	position: relative;
	top: 0.25em;
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	width: var(--size);
	height: var(--size);
	font-size: 1em;
	margin-right: 0.32em;
}
.locations_store_list__info--tel::before {
	background-image: url(../img/common/icon/icon-checkmark_phone--black.svg);
}
.locations_store_list__info--address::before {
	background-image: url(../img/common/icon/icon-address_pin--black.svg);
}


@media screen and (min-width:769.02px) {
	.locations_store__map {
		position: absolute;
		top: 2.2rem;
		right: -6.2rem;
		width: 54rem;
	}

	.locations_store__lead {
		margin-bottom: 11rem;
	}
}

@media screen and (max-width:769px) {
	.locations_store__block .section__tit {
		margin-top: -0.7rem;
		margin-bottom: 1.5rem;
	}
	.locations_store__map {
		width: 100%;
		margin: 3.2rem auto 7rem;
	}

	.locations_store_list__info > div > span {
		grid-template-columns: 1fr;
	}
}



/***************************

   .jobdescription

****************************/
.jobdescription__block {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
}

/*****   .personal_sought   *****/
.personal_sought__item {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	column-gap: 0.5rem;
	font-size: 2rem;
}
.personal_sought__item:nth-of-type(n+2) {
	margin-top: 2rem;
}
.personal_sought__item::before {
	--size: 1.25em;
	content: "";
	position: relative;
	top: 0.16em;
	display: block;
	background-image: url(../img/common/icon/icon-listitem--red.svg);
	background-repeat: no-repeat;
	background-size: contain;
	min-width: var(--size);
	height: var(--size);
	font-size: var(--size);
}

/*****   .jobdescription_guideline   *****/
.jobdescription_guideline__item {
	display: grid;
	grid-template-columns: 16rem 1fr;
	align-content: flex-start;
}

.jobdescription_guideline__item:nth-of-type(n+2) {
	margin-top: 2rem;
}

.jobdescription_guideline__tit,
.jobdescription_guideline__contents {
	font-size: 1.6rem;
	padding: 1.4rem 2rem;
	line-height: 1.8;
}
.jobdescription_guideline__tit {
	padding-left: 0;
	padding-right: 0.4rem;
}
.jobdescription_guideline__contents {
	border-radius: 1rem;
	background: var(--color-beige01);
}


/*****   .jobdescription_flow   *****/
.jobdescription_flow__list {
	counter-reset: flow-number 0;
}
.jobdescription_flow__item {
	display: grid;
	grid-template-columns: 6rem 1fr;
	align-items: center;
}
.jobdescription_flow__item:nth-of-type(n+2) {
	margin-top: 2rem;
}
.jobdescription_flow__item > span {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 1.9rem 3.9rem 2rem;
	background: var(--color-beige01);
	border-radius: 1rem;
	font-size: 2rem;
	line-height: 2;
}
.jobdescription_flow__item:last-of-type > span {
	background: var(--color-red01);
	color: #fff;
}
.jobdescription_flow__item::before {
	counter-increment: flow-number;
	content: counter(flow-number , decimal-leading-zero);
	padding: 0.4rem;
	padding-left: 0;
	padding-right: 1rem;
	white-space: nowrap;
	color: var(--color-red01);
	font-size: 2.4rem;
	font-weight: 700;
	font-family: var(--font-Rubik);
	line-height: 2;
}


@media screen and (max-width:769px) {
	/*****   .personal_sought   *****/
	.personal_sought .blurred_circle_3group {
		display: none;
	}

	/*****   .jobdescription_guideline   *****/
	.jobdescription_guideline__item {
		grid-template-columns: 8.1rem 1fr;
	}

	.jobdescription_guideline__tit,
	.jobdescription_guideline__contents {
		font-size: 1.4rem;
	}

	/*****   .jobdescription_flow   *****/
	.jobdescription_flow__item {
		grid-template-columns: 4.17rem 1fr;
	}
	.jobdescription_flow__item > span {
		padding: 1.3rem 2rem;
	}
}



/***************************

   .faq

****************************/
.faq__list {
	display: block;
	max-width: 90rem;
	width: 96%;
	margin-left: auto;
	margin-right: auto;
}

.faq__item:nth-of-type(n+2) {
	margin-top: 1.9rem;
}

.faq__block {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	column-gap: 2rem;
	padding: 2rem;
}
.faq__block[data-faq="question"] {
	margin-bottom: 0.1rem;
	border-radius: 1rem;
	background: var(--color-beige01);
}

.faq__icon {
	--size: 4rem;
	--bg-color: var(--color-black01);
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: var(--size);
	min-height: var(--size);
	padding-top: 0.1rem;
	padding-left: 0.1rem;
	border-radius: var(--size);
	background: var(--bg-color);
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	font-family: var(--font-Rubik);
}
.faq__block[data-faq="question"] .faq__icon {
	--bg-color: var(--color-black01);
}
.faq__block[data-faq="answer"] .faq__icon {
	--bg-color: var(--color-red01);
}

.faq__text {
	position: relative;
	top: 0.28em;
	font-size: 1.6rem;
}
.faq__block[data-faq="question"] .faq__text {
	font-weight: 700;
}

@media screen and (max-width:769px) {
	.faq__list {
		width: 92%;
	}
}

/* クラシオントレーナーアカデミーリンクデザイン調整20231218 */
.trainer_academy{
	font-size: 32px !important;
}

@media only screen and (max-width: 750px){
	.trainer_academy{
	font-size: 20px !important;
}
}

/* 採用サイトのヘッダーにインスタ、募集要項を追加20240112*/
.header__offer{
	display: flex;
    align-items: center;
}
.header__job{
	margin: 0px 30px;
	padding-top: 5px;
	font-size: 1.8rem;
	font-weight: 700;
}
.header__instagram img{
	width: 35px;
	height: 35px;
}

@media only screen and (max-width: 750px){

	.header__job{
		display: none;
	}
	.header__instagram img{
		margin: 5px 10px 5px 5px;
		width: 25px;
    	height: 25px;
	}
}

/* 採用サイトのフッターに追加したインスタのアイコンに色を設定20240112 */
.site_menu__link_btn[data-btn="instagram"] {
	--btn-color: #fff;
	background-color: #fff;
	color: #CF2E92;
}

.site_menu__link_btn[data-btn="instagram"]::before {
    --size: 3rem;
    right: 1.1rem;
    background-image: url(../img/common/icon/icon-ig_red.svg);
}
.site_menu__link_btn[data-btn="instagram"]:hover::before {
	right: 0.5rem;
}

/*治療院見学会、文字の変更2024.5.30採用今野  */
.companytour__text{
	color: #fff;
	margin-bottom: 50px;
  }