@charset "utf-8";
/*
///////////////////////////////////////////////////////////////////////////////////
//
//  レイアウトCSS設定
//
///////////////////////////////////////////////////////////////////////////////////
/*
/* [01.TOP,LAYOUT]
/* [02.PAGE,LIST]
/* [03.SINGLE]
/* [00.MEDIA QUERIES,PRINT]
/*
///////////////////////////////////////////////////////////////////////////////////
/*
/* [01.TOP]
--------------------------------------------------------------------------*/
#main-top {
	position: relative;
	display: block;
	background-size: cover;
	height: 100vh;
	background: #251101;
}
#main-top:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgb(0,0,0);
	/* background: linear-gradient(110deg, #dd3e54, #6be585); */
	opacity: 0.3;
	display: block;
	z-index: 0;
}
.main-wrap {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}
.main-visual {
	padding: 19% 0 70px 0;
}
.main-visual .txt-box {
	width: 30%;
	margin: 0 auto;
}
.main-visual .txt-box .catchcopy {
	color: #fff;
}
.main-visual .txt-box .catchcopy h2 {
	margin-bottom: 40px;
	text-align: center;
}
.main-visual .txt-box .catchcopy h2 span.logo {
	margin-bottom: 20px;
	display: block;
}
.main-visual .txt-box .catchcopy .txt {
	font-size: 16px;
	line-height: 140%;
	margin-bottom: 30px;
}
/* 背景画像　*/
.box {
  position   : relative;
  max-width  : 100%;
  height     : 100vh;
  margin     : auto;
  overflow   : hidden;
}
/* --- 背景の指定 ------------------------------------------- */
.box .bgImg {
  position   : absolute;
  top        : 0;
  left       : 0;
  bottom     : 0;
  right      : 0;
  opacity    : 0;
  animation  : bgAnime 32s infinite;   /* 4画像 × 各8s = 32s */
}

/* 段差で背景画像のアニメーションを実行 */
.box .src1 {
	background-image : url(../images/layouts/main-bg-1.webp); 
	background-size: cover;
}
.box .src2 {
	background-image : url(../images/layouts/main-bg-2.webp);
	animation-delay  : 8s;
	background-size: cover;
}
.box .src3 {
	background-image : url(../images/layouts/main-bg-3.webp);
	animation-delay  : 16s;
	background-size: cover;
}
@keyframes bgAnime {
   0% { opacity: 0; transform: scale(1.3, 1.3); }
  15% { opacity: 1; transform: scale(1.3, 1.3); }
  30% { opacity: 1; transform: scale(1.0, 1.0); }
  60% { opacity: 0; }
 100% { opacity: 0; }
} 
.scroll {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 20%;
	z-index: 1;
}
.scroll-announce {
	text-align: center;
	position: relative;
	color: #fff;
}
.scroll-announce:after {
	font-size:24px;
	font-weight: bold;
	display: block;
	text-align: center;
	content: "↓";
	position: absolute;
	left: 50%;
	left: calc( 50% - 24px );
	bottom: -40px;
	width: 48px;
	animation: scroll-announce 3s ease infinite;
}
@keyframes scroll-announce {
	0% { transform:translateY(0) }
	70% { transform:translateY(-15px) }
	100% { transform:translateY(0) }
} 
 


.top-info-wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	align-items: center;
}
.top-info-wrap .ttl-box {
	width: 24%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.top-info-wrap .ttl-box .eng {
	color: #251101;
	margin-bottom: 20px;
	font-size: 34px;
}
.top-info-wrap .ttl-box .btn {
	width: 120px;
	height: 40px;
	line-height: 40px;
	font-size: 12px;
}
.top-info-wrap .info-box {
	width: 74%;
	padding: 20px 0 20px 2%;
	border-left: 1px solid #eee;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.top-info-wrap .info-box .info-li {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.top-info-wrap .info-box .info-li li {
	padding-bottom: 20px;
}
.top-info-wrap .info-box .info-li li:last-child {
	padding-bottom: 0;
}
.top-info-wrap .info-box .info-li li a {
	background: #fff;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	color: #333;
	min-height: 1px;
	justify-content: space-between;
}
.top-info-wrap .info-box .info-li li a p {
	float: left;
	line-height: 22px;
}
.top-info-wrap .info-box .info-li li a p:nth-child(1) {
	width: 20%;
}
.top-info-wrap .info-box .info-li li a p:nth-child(2) {
	width: 80%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-left: 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.top-info-wrap .info-box .info-li li a:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.ttl-wrap h3 {
	margin-bottom: 60px;
}
.li-3c {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	justify-content: flex-start;
}
.li-3c li {
	width: 32%;
	margin-right: 2%;
}
.li-3c li img {
	width: 100%;
	height: auto;
}
.li-3c li:nth-child(3n) {
	margin-right: 0;
}
#new-graduate-info .pkg {
	max-width: 1440px;
	padding: 140px 0;
}
.recruit-li {
	align-items: center;
}
.recruit-li .txt-box {
	width: 40%;
	height: auto;
	padding: 0 5%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.recruit-li .img-box {
	width: 60%;
	height: auto;
}
.recruit-li .img-box img {
	width: 100%;
	height: auto;
}
.recruit-li h3 {
	margin-bottom: 40px;
}
.recruit-li .eng {
	font-size: 54px;
}
.recruit-li .eng span {
	font-size: 24px;
}
#miidway-info .pkg {
	max-width: 1440px;
	padding: 140px 0;
}
#company .pkg {
	max-width: 1440px;
	padding: 140px 0;
}
.company-top-li {
	align-items: center;
}
.company-top-li .txt-box {
	width: 40%;
	height: auto;
	padding: 0 5%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.company-top-li .img-box {
	width: 60%;
	height: auto;
}
.company-top-li .img-box img {
	width: 100%;
	height: auto;
}
.company-top-li h3 {
	margin-bottom: 40px;
}
.company-top-li .eng {
	font-size: 54px;
}
.company-top-li .eng span {
	font-size: 24px;
}
.bg-company {
	background: url(../images/layouts/bg-company.png) no-repeat center top;
	background-size: cover;
	max-width: 2400px;
	margin: 0 auto;
}
.top-company,
.top-company .eng {
	color: #fff;
}
.top-company h3 {
	margin-bottom: 20px;
}
.top-company p {
	text-align: center;
	margin-bottom: 30px;
}
.top-company .btn {
	margin: 0 auto;
	border: 1px solid #fff;
	background: none;
	color: #fff;
}
.youtube-bnr {
	max-width: 320px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding-bottom:60px;
}
.youtube-bnr img {
	width: 100%;
	height: auto;
}
/* [02.PAGE,LIST]
--------------------------------------------------------------------------*/
#main-company {
	width: 100%;
	display: block;
	background: url(../images/layouts/main-company-bg.webp) no-repeat center top;
	height: 340px;
	position: relative;
}
#main-news {
	width: 100%;
	display: block;
	background: url(../images/layouts/main-company-bg.webp) no-repeat center top;
	height: 340px;
	position: relative;
	overflow: hidden;
}
#main-new-recruit-list {
	width: 100%;
	display: block;
	background: url(../images/recruit/main-new-recruit-list-bg.webp) no-repeat center top;
	height: 340px;
	position: relative;
}
#main-mid-recruit-list {
	width: 100%;
	display: block;
	background: url(../images/recruit/main-mid-recruit-list-bg.webp) no-repeat center top;
	height: 340px;
	position: relative;
}
#main-new-stylist {
	width: 100%;
	display: block;
	background: url(../images/recruit/main-new-stylist-bg.webp) no-repeat center top;
	height: 340px;
	position: relative;
}
#main-mid-stylist {
	width: 100%;
	display: block;
	background: url(../images/recruit/main-mid-stylist-bg.webp) no-repeat center top;
	height: 340px;
	position: relative;
}
#main-company:after,
#main-news:after,
.main-recruit:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgb(0,0,0);
	opacity: 0.2;
	display: block;
	z-index: 0;
}
#main-company .main_txt,
#main-news .main_txt,
.main-recruit .main_txt {
	color: #fff;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	position: absolute;
	top: 50%;
	z-index: 1;
}
#main-company .main_txt .eng,
#main-news .main_txt .eng,
.main-recruit .main_txt .eng {
	font-size: 42px;
	color: #fff;
}
.page h3 {
	margin-bottom: 60px;
}
.ceo-message li:first-child {
	width: 40%;
}
.ceo-message li:last-child {
	width: 60%;
	padding-top: 30px;
	padding-left: 5%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.ceo-message li:first-child img {
	width: 100%;
	height: auto;
	border: 2px solid #fff;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.ceo-message li .ttl {
	font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-size: 48px;
	margin-bottom: 40px;
	line-height: 120%;
}
.ceo-message li .ceo-name {
	font-size: 12px;
	text-align: right;
}
.ceo-message li .ceo-name span {
	display: block;
	font-size: 16px;
}
.ceo-message li .ceo-name-img {
	width: 120px;
	text-align: right;
}
.ceo-message li .ceo-name-img img {
	width: 100%;
	height: auto;
}
.company-li {
	padding-bottom: 60px;
	max-width: 840px;
	margin: 0 auto;
}
.company-li li {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.company-li li .ttl {
	width: 20%;
	border-right: 1px solid #eee;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	letter-spacing: 10px;
}
.company-li li .txt {
	width: 80%;
	padding-left: 20px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.map {
	width: 100%;
	max-width: 840px;
	height: auto;
	margin: 0 auto;
}
.map p {
	font-size: 13px;
	margin-bottom: 10px;
}
.office-info {
	width: 100%;
	max-width: 840px;
	height: auto;
	margin: 0 auto;
}
.office-info .ttl {
	margin-bottom: 30px;
	font-size: 24px;
	color: #251101;
	text-align: center;
}
.office-wrap {
	margin-bottom: 40px;
}
.office-wrap div {
	width: 48%;
}
.office-wrap .img-box img {
	width: 100%;
	height: auto;
}
.office-wrap .txt-box h4 {
	margin-bottom: 10px;
}
.office-wrap .txt-box {
	font-size: 14px;
	line-height: 160%;
}
.philosophy-box {
	width: 100%;
	max-width: 740px;
	margin: 0 auto;
	padding: 80px;
	background: #fff;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	font-size: 18px;
	line-height: 200%;
}
.philosophy-box .ttl {
	font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-size: 36px;
	margin-bottom: 60px;
	line-height: 120%;
}
.philosophy-box .img-box {
	margin-bottom: 40px;
}
.philosophy-box .img-box img {
	width: 100%;
	height: auto;
}
.article-list {
	width: 100%;
}
.article-list li {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.article-list li a {
	display: flex;
	flex-wrap: wrap;
}
.article-list li a .date {
	width: 20%;
	padding-right: 20px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.article-list li a .article-ttl {
	width: 80%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* [03.SINGLE]
--------------------------------------------------------------------------*/
.single .date {
	font-size: 11px;
	color: #666;
	margin-bottom: 20px;
} 
.single h2 {
	font-size: 28px;
	color: #251101;
	line-height: 120%;
	padding-bottom: 20px;
	margin-bottom: 40px;
	border-bottom: 1px solid #251101;
}
.single h2 span {
	font-size: 14px;
	display: block;
}
.single h3 {
	font-size: 24px;
	line-height: 120%;
	color: #251101;
	margin-bottom: 30px;
}
.single h4 {
	color: #251101;
}
.single p {
	margin-bottom: 20px;
}
.single img {
	max-width: 1020px;
	height: auto;
}
.single p a {
	text-decoration: underline;
}
.li-sns {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
	margin-bottom: 60px;
}
.li-sns li {
	margin-right: 20px;
}
.li-sns li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	font-size: 11px;
	color: #999;
	align-items: center;
}
.li-sns li a .img-box {
	width: 24px;
	height: auto;
	padding-right: 10px;
}
.li-sns li a .img-box img {
	width: 100%;
	height: auto;
}
#ez-toc-container {
	margin-bottom: 80px!important;
	padding: 25px!important;
}
.single iframe {
	width: 100%;
	height: 240px;
}
.ceo-blog-bnr {
	width: 100%;
	margin-top: 40px;
	text-align: center;
}
.ceo-blog-bnr .dsp {
	margin-bottom: 15px;
}
.ceo-blog-bnr a {
	display: block;
	width: 100%;
	max-width: 340px;
	margin: 0 auto;
}
.ceo-blog-bnr img {
	width: 100%;
	height: auto;
}
/* [採用情報-一覧]
--------------------------------------------------------------------------*/
.recruit-list-page .sub-ttl {
	font-size: 24px;
	line-height: 140%;
	margin-bottom: 60px;
	text-align: center;
}
.recruit-info-li {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
	height: auto;
}
.recruit-info-li li {
	width: 30%;
	margin-right: 5%;
}
.recruit-info-li li .img-box {
	margin-bottom: 25px;
}
.recruit-info-li li .img-box img {
	width: 100%;
	height: auto;
}
.recruit-info-li li:nth-child(3n) {
	margin-right: 0;
}
.recruit-info-li li .ttl {
	text-align: center;
	font-weight: bold;
	line-height: 140%;
	margin-bottom: 0;
	font-size: 16px;
}
/* [採用情報-詳細]
--------------------------------------------------------------------------*/
.highlight-h2 {
	position: relative;
	padding: 20px 20px 34px 20px;
	background: linear-gradient(127deg, rgba(240, 116, 100, 0.2), rgba(241, 198, 109, 0.1) 50.51%);
	font-size: 32px;
	line-height: 140%;
	margin-bottom: 60px;
	color: #251101;
}
.highlight-h2:before {
	position: absolute;
	top: -8px;
	left: -8px;
	width: 100%;
	height: 100%;
	content: '';
	border: 1px solid #251101;
}
#education h3,
#staff-interview h3 {
	margin-bottom: 60px;
}
.education-li {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}
.education-li li {
	width: 32%;
	padding: 30px 30px 35px 30px;
	box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	border: 1px solid #eee;
	text-align: center;
	position: relative;
	margin-right: 2%;
	margin-bottom: 4%;
}
.education-li li:nth-child(3n) {
	margin-right: 0;
}
.education-li li img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}
.education-li li h4 {
	font-size: 16px;
	min-height: 40px;
	color: #1D1D1D;
}
.education-li li .point-icon {
	position: absolute;
	top: -30px;
	left: 0;
	right: 0;
	margin: auto;
}
.point-icon {
	display: inline-block;
	padding: 20px;
	border-radius: 100px;
	background: #251101;
	width: 40px;
	height: 40px;
	font-size: 12px;
	line-height: 18px;
	color: #fff;
	text-align: center;
}
.point-icon span {
	font-size: 24px;
}
.education-li li .btn {
	width: 200px;
	height: 44px;
	line-height: 42px;
	border-radius: 100px;
	margin: 0 auto;
	border: 1px solid #251101;
	background: #fff;
	color: #251101;
}
.point-conts-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	align-items: center;
}
.point-conts-wrap .point-icon {
	margin-bottom: 10px;
}
.point-conts-wrap h3 {
	font-weight: bold;
	font-size: 34px;
	line-height: 140%;
	margin-bottom: 20px;
}
.point-conts-wrap .txt-box {
	width: 40%;
}
.point-conts-wrap .img-box {
	width: 56%;
}
.point-conts-wrap .img-box .hosoku {
	display: block;
	margin-top: 5px;
	font-size: 13px;
}
.point-conts-wrap .img-box img {
	width: 100%;
	height: auto;
}
.point-conts-wrap .txt-box .bg-txt {
	font-weight: bold;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(5%, transparent), color-stop(0, #fff));
	background-image: -o-linear-gradient(transparent 5%, #fff 0);
	background-image: linear-gradient(transparent 5%, #fff 0);
	color: #251101;
	padding: 0 5px;
}
.point-conts-wrap .txt-box .txt-point {
	margin-top: 15px;
	padding: 15px;
	background: #fff;
	box-sizing: border-box;
	line-height: 140%;
	border: 1px solid #ccc;
}
.point-conts-wrap .txt-box .txt-point span {
	display: block;
	font-size: 13px;
}
.point-conts-wrap .txt-box a.insta-link {
	text-decoration: underline;
	display: block;
	margin-top: 15px;
}
.education-line-conts .point-icon {
	margin-bottom: 10px;
}
.education-line-conts p {
	margin-bottom: 30px;
}
.education-line-conts .ttl-wrap {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.education-line-conts .ttl-wrap .point {
	width: 9%;
}
.education-line-conts h3 {
	width: 91%;
    font-weight: bold;
    font-size: 34px;
    line-height: 140%;
    margin-bottom: 0;
}
.bnr-li {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
}
.bnr-li li {
	width: 100%;
}
.bnr-li li img {
	width: 100%;
	height: auto;
}
.staff-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 400px;
	margin: 0 auto;
	align-items: center;
	padding: 10px;
	border-radius: 200px;
	background: #fff;
	box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.staff-info .img-box {
	width: 25%;
}
.staff-info .img-box img {
	width: 100%;
	height: auto;
}
.staff-info .txt-box {
	width: 71%;
	line-height: 140%;
}
.staff-info .txt-box .name {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 5px;
	color: #251101;
}
.staff-info .txt-box .position,
.staff-info .txt-box .shop {
	font-size: 12px;
}
.interview-li {
	width: 100%;
	margin-bottom: 100px;
}
.interview-li li {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 50px;
	background: #fff;
	box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border: 1px solid #eee;
}
.interview-li li .img-box {
	width: 30%;
}
.interview-li li .img-box img {
	width: 100%;
	height: auto;
}
.interview-li li .txt-box {
	width: 67%;
	line-height: 140%;
}
.interview-li li .txt-box .name {
	margin-bottom: 10px;
}
.interview-li li .txt-box h4 {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.interview-li li .txt-box h4 span:first-child {
	display: inline-block;
	padding: 10px;
	line-height: 20px;
	width: 20px;
	height: 20px;
	border-radius: 100px;
	background: #ffa8a8;
	text-align: center;
	color: #fff;
	font-weight: bold;
	margin-right: 10px;
}
.interview-li li .txt-box h4 span:last-child {
	width: 80%;
}
.academic-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	background: #fff;
	padding: 40px;
	box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-top: 60px;
    border: 1px solid #eee;
}
.academic-info .img-box {
	width: 35%;
	position: relative;
}
.academic-info .img-box img {
	width: 100%;
	height: auto;
}
.academic-info .img-box .eng {
	position: absolute;
    top: -20px;
    transform: rotate(-10deg);
    left: -60px;
    font-size: 42px;
    text-shadow: 2px 2px 0px rgb(255 255 255);
    color: #ffa8a8;
}
.academic-info .txt-box {
	width: 62%;
	font-size: 14px;
	line-height: 160%;
}
.academic-info .txt-box h4 {
	margin-bottom: 10px;
	font-size: 22px;
	color: #ffa8a8;
}
.img-scroll-wrap {
	width: 100%;
	margin-top: 50px;
}
.curriculum-wrap {
	width: 100%;
	position: relative;
}
.curriculum-wrap img {
	width: 100%;
	height: auto;
}
#recruit-information .wh-bg-wrap {
	background: #fff;
	box-sizing: border-box;
	padding: 100px;
}
.recruit-point {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto;
}
.recruit-point li {
	position: relative;
	line-height: 100%;
	font-weight: bold;
	font-size: 16px;
	color: #251101;
}
.recruit-point li:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 40px;
    background: #FFF2D6;
    position: absolute;
    top: -8px;
    left: -10px;
    word-break: break-all;
    line-height: 82%;
    z-index: 0;
}
.recruit-point li .eng {
	font-size: 14px;
	margin-bottom: 5px;
	position: relative;
}
.recruit-overview-wrap {
	margin-top: 60px;
}
.recruit-overview-li {
	width: 840px;
	margin: 0 auto;
}
.recruit-overview-li li {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}
.recruit-overview-li li .ttl {
	width: 30%;
	border-right: 1px solid #eee;
	font-weight: bold;
}
.recruit-overview-li li .txt {
	width: 68%;
}
.message-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 80px;
	box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: #fff;
    margin-bottom: 40px;
}
.message-wrap .img-box {
	width: 35%;
}
.message-wrap div img {
	width: 100%;
	height: auto;
}
.message-wrap .txt-box {
	width: 60%;
}
.message-wrap .txt-box h3 {
	margin-bottom: 20px;
}
.message-wrap .txt-box .name {
	font-size: 14px;
	line-height: 140%;
	margin-bottom: 20px;
}
.line-conts-wrap {
	padding: 40px;
	background: #fff;
	box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.line-conts-wrap p {
	margin-bottom: 30px;
}
.box-brd-475d74 {
	border: 1px solid #251101;
}
.youtube-bnr {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 60px;
}
.youtube-bnr img {
    width: 100%;
    height: auto;
}
.ceo-blog-bnr {
	width: 100%;
	margin-top: 40px;
	text-align: center;
}
.ceo-blog-bnr .dsp {
	margin-bottom: 15px;
}
.ceo-blog-bnr a {
	display: block;
	width: 100%;
	max-width: 340px;
	margin: 0 auto;
}
.ceo-blog-bnr img {
	width: 100%;
	height: auto;
}
.btn-center {
	text-align: center;
}
.btn-center .dsp {
	margin-bottom: 20px;
}
.btn-center .btn {
	margin: 0 auto;
}
.disc-li {
	padding-left: 20px;
}
.disc-li li {
	margin-bottom: 10px;
	list-style: disc;
	line-height: 140%;
}
.disc-li li:last-child {
	margin-bottom: 0;
}
/* [00.MEDIA QUERIES,PRINT]
--------------------------------------------------------------------------*/
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}
@media (max-width: 1024px) {
	.pkg,
	.pkg-mw1280,
	.pkg-840 {
		width: 100%;
		padding: 80px 30px;
	}
	.pkg-1020,
	.pkg-1200 {
		width: 100%;
		padding: 0 20px;
	}
	.d-pc {
		display: none;
	}
	.d-sp {
		display: block;
	}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	header {
		height: 60px;
	}
	header div.pkg {
		padding: 0 20px;
	}
	header div.pkg-h1 {
		display: none;
	}
	header div.pkg-white {
		height: 65px;
		padding: 0;
		position: fixed;
		background: #fff;
	}
	header div.pkg-white #logo {
		position: absolute;
		left: 20px;
		top: 18px;
		width: 150px;
		height: auto;
	}
	#logo img {
		max-width: 50px;
	}
	#nav-sub,
	#nav-main {
		display: none;
	}
	#menu {
		display: block;
	}
	nav#nav-sp {
		background: #fff;
	}
	#nav-sub-sp ul {
		position: fixed;
		background: #aab7c5;
		display: flex;
		flex-wrap: nowrap;
		flex-direction: row;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-items: space-between;
		align-items: stretch;
		width: 100%;
		height: 65px;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		top: 0;
		left: 0;
		z-index: 11;
	}
	#nav-sub-sp ul li {
		width: 100%;
	}
	#nav-sub-sp ul li:first-child {
		margin: 10px 5px 5px 10px;
	}
	#nav-sub-sp ul li:nth-child(2) {
		margin:  10px 10px 5px 0;
	}
	#nav-sub-sp ul li:last-child {
		width: 65px;
	}
	#nav-sub-sp ul li a {
		display: block;
		height: 45px;
		line-height: 45px;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		font-size: 12px;
		color: #FFF;
		font-weight: bold;
		text-align: center;
	}
	#nav-sub-sp ul li:nth-child(1) a {
		background: #251101;
		
	}
	#nav-sub-sp ul li:nth-child(2) a {
		background: #1dcd00;
	}
	#nav-sub-sp ul li:last-child a#menu-sc {
		background: #FFF;
		width: 65px;
		height: 65px;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		padding: 0;
		margin: 0;
		line-height: 0;
		color: #251101;
		text-align: center;
		font-size: 10px;
		top: 0;
		right: 0;
	}
	#nav-sub-sp ul li:last-child a#menu-sc i {
		height: 65px;
		line-height: 65px;
	}
	#nav-sub-sp ul li:last-child a#menu-sc i:first-child {
		display: block;
	}
	#nav-sub-sp ul li:last-child a#menu-sc i:nth-child(2) {
		display: none;
	}
	.line-contact {
		display: block;
	}
	.line-contact ul {
		padding: 20px;
	}
	footer {
		padding-bottom: 0;
	}
	footer .f-logo {
		width: 100%;
	}
	footer .flx-wrap ul {
		width: 48%;
		margin-bottom: 20px;
	}
	footer #copyright {
		padding: 20px;
	}
	footer #copyright p {
		line-height: 140%;
	}
	footer .pkg {
		padding: 60px 30px 100px 30px;
	}
	.back_top a {
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
	.loop-img {
	  animation: bgscroll 20s linear infinite;
	}
	#main-top {
		padding-top: 65px;
		height: 640px;
		overflow: hidden;
	}
	.main-visual {
		padding: 140px 30px 0;
		box-sizing: border-box;
	}
	.main-visual .txt-box {
		width: 70%;
		max-width: 320px;
	}
	.scroll {
		bottom: 10%;
	}
	.box .src1 {
		background-image : url(../images/layouts/main-bg-1-sp.webp); 
		background-size: cover;
	}
	.box .src2 {
		background-image : url(../images/layouts/main-bg-2-sp.webp);
		animation-delay  : 8s;
		background-size: cover;
	}
	.box .src3 {
		background-image : url(../images/layouts/main-bg-3-sp.webp);
		animation-delay  : 16s;
		background-size: cover;
	}	
	.scroll-announce {
		bottom: 30%;
	}
	#breadcrumbs {
		padding: 15px 20px;
	}
	.top-info-wrap .ttl-box,
	.top-info-wrap .info-box {
		width: 100%;
		padding: 0;
		margin-right: 0;
		border-left: none;
	}
	.top-info-wrap .info-box {
		margin-bottom: 40px;
	}
	.top-info-wrap .ttl-box .eng {
		margin-bottom: 30px;
		padding-top: 0;
		text-align: center;
	}
	.top-info-wrap .info-box .info-li li {
		padding-bottom: 20px;
		margin-bottom: 20px;
		border-bottom: 1px solid #eee;
	}
	.top-info-wrap .info-box .info-li li:last-child {
		padding-bottom: 20px;
		margin-bottom: 0;
	}
	.top-info-wrap .info-box .info-li li a p:nth-child(1) {
		width: 100%;
		margin-bottom: 5px;
	}
	.top-info-wrap .info-box .info-li li a p:nth-child(2) {
		width: 100%;
		padding-left: 0;
		white-space: inherit;
	}
	#top-information .btn {
		width: 100%;
	}
	#new-graduate-info .pkg,
	#miidway-info .pkg,
	#company .pkg {
		padding: 0 0 60px 0;
	}
	#new-graduate-info .recruit-li .txt-box {
		order: 2;
	}
	#new-graduate-info .recruit-li .img-box {
		order: 1;
	}
	.recruit-li .txt-box {
		width: 100%;
		padding: 60px 30px 20px 30px;
	}
	.recruit-li .txt-box .btn,
	.recruit-li .img-box {
		width: 100%;
	}
	.recruit-li .eng,
	.company-top-li .eng {
		font-size: 42px;
	}
	.recruit-li .eng span {
		font-size: 20px;
	}
	.ceo-message li:first-child,
	.ceo-message li:last-child {
		width: 100%;
	}
	.ceo-message li:first-child {
		margin-bottom: 40px;
	}
	.ceo-message li:last-child {
		margin-bottom: 40px;
		padding: 0;
	}
	.ceo-message li .ttl {
		font-size: 30px;
		text-align: center;
	}
	.philosophy-box {
		padding: 40px;
	}
	.philosophy-box .ttl {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.company-li li .ttl,
	.company-li li .txt {
		width: 100%;
		border-right: none;
		padding-left: 0;
	}
	.company-li li {
		border-bottom: 1px solid #eee;
	}
	#main-company,
	#main-news {
		height: 260px;
		padding-top: 65px;
	}
	#main-company {
		background: url(../images/layouts/main-company-bg-sp.webp) no-repeat center top;
		background-size: cover;
	}
	#main-news {
		background: url(../images/layouts/main-company-bg-sp.webp) no-repeat center top;
		background-size: cover;
	}
	#main-new-recruit-list {
		background: url(../images/recruit/main-new-recruit-list-bg-sp.webp) no-repeat center top;
		background-size: cover;
	}
	#main-mid-recruit-list {
		background: url(../images/recruit/main-mid-recruit-list-bg-sp.webp) no-repeat center top;
		background-size: cover;
	}
	#main-new-stylist {
		background: url(../images/recruit/main-new-stylist-bg-sp.webp) no-repeat center top;
		background-size: cover;
	}
	#main-mid-stylist {
		background: url(../images/recruit/main-mid-stylist-bg-sp.webp) no-repeat center top;
		background-size: cover;
	}
	.article-list li a .date,
	.article-list li a .article-ttl {
		width: 100%;
		padding-right: 0;
	}
	.article-list li a .date {
		font-size: 12px;
	}
	.single .pkg {
		padding: 40px 30px 80px 30px;
	}
	.single img {
		width: 100%;
		height: auto;
	}
	.li-sns {
		margin-bottom: 40px;
	}
	.office-wrap {
		width: 100%;
	}
	.office-wrap div {
		width: 100%;
		height: auto;
	}
	.office-wrap .img-box {
		margin-bottom: 30px;
	}
	.company-top-li .txt-box {
		width: 100%;
		order: 2;
		padding: 60px 30px 20px 30px;
	}
	.company-top-li .img-box {
		order: 1;
		width: 100%;
	}
	.company-top-li .txt-box .btn {
		width: 100%;
	}
	.youtube-bnr {
		width: 100%;
		max-width: 100%;
		padding-bottom: 40px;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	}
	.line-contact ul li a {
		font-size: 12px;
	}
/* [採用情報-一覧]
--------------------------------------------------------------------------*/
	.recruit-list-page .sub-ttl {
		font-size: 22px;
		line-height: 140%;
		margin-bottom: 40px;
		text-align: center;
	}
	.recruit-info-li li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 40px;
	}
	.recruit-info-li li .img-box {
		margin-bottom: 25px;
	}
	.recruit-info-li li:last-child {
		margin-bottom: 0;
	}
	/* [採用情報-詳細]
--------------------------------------------------------------------------*/	
	.scroll-announce {
		bottom: 25%;
	}
	.highlight-h2 {
		font-size: 24px;
	}
	.education-li li {
		width: 100%;
		margin-bottom: 40px;
	}
	.education-li li:nth-child(n+1) {
		margin-bottom: 40px;
	}
	.education-li li:last-child {
		margin-bottom: 0;
	}
	.point-conts-wrap .txt-box,
	.point-conts-wrap .img-box {
		width: 100%;
	}
	.point-conts-wrap .txt-box {
		order: 1;
		margin-bottom: 40px;
	}
	.point-conts-wrap .img-box {
		order: 2;
	}
	.point-conts-wrap h3 {
		font-size: 28px;
	}
	.education-line-conts .ttl-wrap {
		display: inherit;
	}
	.education-line-conts .ttl-wrap .point,
	.education-line-conts h3 {
		width: 100%;
	}
	.bnr-li li {
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
	.bnr-li li:last-child {
		margin-bottom: 0;
	}
	
	.curriculum-wrap {
		padding-bottom: 20px;
	}
	.curriculum-wrap img {
		width: 740px;
		height: auto;
		padding-bottom: 10px;
	}
	.simplebar-track {
		background: #f8f8f8; /* バーの背景色を設定できます*/
		border-radius: 10px;　/* バーに丸みをもたせる*/
	}
	.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
		opacity:1;　/* デフォルトだと薄くなっています。*/
	}
	.simplebar-track .simplebar-scrollbar::before {
		background: #F7C934;　/* ここでバーの色を設定 */
	}	
	.staff-info {
		width: 100%;
	}
	.interview-li {
		margin-bottom: 60px;
	}
	.interview-li li {
		padding: 30px;
	}
	.interview-li li .img-box,
	.interview-li li .txt-box {
		width: 100%;
	}
	.interview-li li .img-box {
		margin-bottom: 20px;
	}
	.interview-li li:last-child {
		margin-bottom: 0;
	}
	.academic-info .img-box,
	.academic-info .txt-box {
		width: 100%;
	}
	.academic-info .img-box {
		margin-bottom: 30px;
	}
	.academic-info .img-box .eng {
		top: -40px;
		left: -30px;
		font-size: 32px;
	}
	.academic-info .txt-box h4 {
		text-align: center;
	}
	.recruit-point {
		width: 80%;
		max-width: 80%;
		justify-content: space-between;
	}
	.recruit-point li {
		width: 45%;
		font-size: 15px;
		margin-bottom: 30px;
	}
	.recruit-overview-li {
		width: 100%;
	}
	.recruit-overview-li li .ttl {
		width: 25%;
	}
	.message-wrap {
		padding: 40px;
	}
	.message-wrap .img-box {
		width: 100%;
		margin-bottom: 30px;
	}
	.message-wrap .txt-box {
		width: 100%;
	}
	.youtube-bnr {
	    width: 100%;
	    max-width: 100%;
	    padding-bottom: 40px;
	    box-sizing: border-box;
	    -webkit-box-sizing: border-box;
	    -moz-box-sizing: border-box;
	}
	#recruit-information .pkg {
		padding: 80px 0;
	}
	#recruit-information .wh-bg-wrap {
		padding: 60px 30px;
	}
	.line-contact ul li {
		width: 100%;
	}
	.line-contact ul li a {
		font-size: 12px;
	}
}


/* [width:1680-5800]
--------------------------------------------------------------------------*/
@media screen and (-webkit-min-device-pixel-ratio:2) and (min-width:1680px) and ( max-width:5800px){
	#logo {
		width: 12%;
	}
	nav#nav-main {
		width: 88%;
	}
	.conts-fixed nav#nav-main {
		width: 92%;
	}
}

/* [width:1030-1140]
--------------------------------------------------------------------------*/
@media screen and (-webkit-min-device-pixel-ratio:2) and (min-width:1030px) and ( max-width:1140px){
	.conts-fixed nav#nav-main {
		width: 90%;
	}
}

/* Retina-specific styles. */
@media print,
	(-o-min-device-pixel-ratio: 5/4),
	(-webkit-min-device-pixel-ratio: 1.25),
	(min-resolution: 120dpi) {
	}
@media print {
}


/* IE11 */
@media all and (-ms-high-contrast:none) {
  *::-ms-backdrop, 
  #main-top .video-wrap #catch-copy {
		top:36%;
  }
}


