@charset "UTF-8";
/** -----------------------------------------------
  共通
------------------------------------------------**/
body {
	/*下記のCSSはご自身のデザインに合わせて書き換えてください。*/
	font-size: 16px;
	line-height: 1.6;
	color: #1F2557;
	background-color:#fff;
	font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "Osaka", "Verdana", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 500;
}

#about,#business,#interview,#workstyle,#recruit,#cta {
	padding: 70px 24px ;
}

.section-wrap {
	max-width: 1156px;
	margin: 0 auto;
}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){

	.section-wrap {
		max-width: 343px;
		margin: 0 auto;
	}

	#about,#business,#interview,#workstyle,#recruit,#cta {
		padding: 40px 0 ;
	}

}

/** -----------------------------------------------
	共通セクションタイトル
------------------------------------------------**/

.section-label {
	display: block;
	width: 75px;
	margin: 0 auto;
}

.section-label-line {
	display: block;
	position: relative;
}

.section-label-line::before {
	content: "";
	margin: auto;
    position: absolute;
	top: 7px;
    right: 50%;
    transform: translateX(50%);
    width: 2px;
    height: 14px;
    background-color: #E88976;
}

.section-title {
	font-size: 36px;
	text-align: center;
	margin-top: 48px;
}

.section-title-text {
	text-align: center;
	margin-top: 24px;
	margin-bottom: 48px;
}

.br-sp-only {
	display: none;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
	.section-label {
		width: 65px;
	}

	.section-label-line::before {
		height: 13.5px;
	}

	.section-title {
		font-size: 24px;
		margin-top: 30px;
	}

	.br-pc-only {
		display: none;
	}

	.br-sp-only {
		display: block;
	}

	.section-title-text {
		text-align: center;
		font-size: 13px;
		margin-top: 24px;
		margin-bottom: 24px;
	}
}

.fadeup {
	opacity: 0;
	transform: translateY(20px);
	transition: all .8s ease;
}

.fadeup.active {
	opacity: 1;
	transform: translateY(0);
}

.delay-1 { transition-delay: .2s; }
.delay-2 { transition-delay: .4s; }
.delay-3 { transition-delay: .6s; }


/** -----------------------------------------------
  PC :  画面の横幅が641px以上
------------------------------------------------**/

/** -----------------------------------------------
  PC :  ヘッダー
------------------------------------------------**/

#header {
	display: flex;
	justify-content: space-between;
	height: 48px;
	margin-top: 32px;
	padding: 0 34px;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}

.header-logo img {
	width: 330px;
}

.gnav-pc-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	margin-left: auto;
}

.gnav-pc {
	display: flex;
	gap: 40px;
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.gnav-pc li a {
	text-decoration: none;
	color: #1F2557;
	font-weight: bold;
}

.gnav-pc li a:hover {
	color: #E88976;
	transition: 0.3s;
}

.entry-button {
	display: flex;
	justify-content: center;
	text-decoration: none;
	text-align: center;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #fff;
	width: 180px;
	border-radius: 50px;
	background-color: #E88976;
	font-family: "Baloo 2", sans-serif;
	align-items: center;
}

.entry-button:hover {
	background-color: #C86653;
	transition: 0.3s;
}

.modal {
	display: none;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 820px) {
	.gnav-pc-wrap {
		display: none;
	}

	#header {
		padding: 0 16px;
		margin-top: 22px;
	}

	.header-logo img {
		width: 55%;
	}

	#menu-button {
		display: block;
		position: relative;
		width: 40px;
		height: 40px;
		padding: 13px 11px;
		background-color: #E88976;
		border-radius: 5px;
	}

	.menu-button-inner span {
		display: block;
		height: 1px;
		width: 50%;

		background-color: #fff;

		position: absolute;
	}

	.menu-button-inner span:nth-child(1) {
		top: 13px;
	}

	.menu-button-inner span:nth-child(2) {
		top: 0;
		bottom: 0;
		margin: auto;
	}

	.menu-button-inner span:nth-child(3) {
		bottom: 13px;
	}

	.modal {
		display: block;
		position: fixed;
		inset: 0;
		opacity: 0;
		visibility: hidden;
		transition: 0.3s ease;
		z-index: 1000;
	}

	.modal-top {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.modal-top img {
		display: block;
		width: 55%;
	}

	.modal-top a {
		align-items: center;
	}

	.modal-nav {
		margin-top: 32px;
	}

	.modal-nav ul {
		list-style: none;
	}

	.modal-nav li {
		margin: 24px 0;
	}

	.modal-nav li a {
		text-decoration: none;
		color: #1F2557;
		font-size: 16px;
	}

	.modal-close {
		font-size: 32px;
	}

	.entry-button {
		margin-top: 40px;
		width: 100%;
		height: 48px;
	}

	.modal.active {
		opacity: 1;
		visibility: visible;
	}

	.modal-overlay {
		position: absolute;
		inset: 0;
		background: rgba(0,0,0,0.5);
	}

	.modal-content {
		position: relative;
		background: #fff;
		width: 100%;
		height: 100%;
		padding: 38px 16px;
	}
}

/** -----------------------------------------------
  PC :  メインビジュアル
------------------------------------------------**/

#mainvisual {
	background-image: url(../images/mv_bg.jpg);
	background-size: cover;
	width: 100vw;
	padding-top: 135px;
}

.mainvisual-wrap {
	display: flex;
	gap: 45px;
	justify-content: center;
	position: relative;
}

.maincopy {
	font-size: clamp(20px, 5vw, 48px);
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.23em;
	margin: 97px 0 100px;
}

.scroll-guide {
	writing-mode: vertical-rl;
	position: relative;
	color: #E88976;
	font-family: "Baloo 2", sans-serif;
	letter-spacing: 0.1em;
	font-weight: 500;
}

.scroll-guide::before {
	content: "";
    position: absolute;
	top: 57px;
    right: calc(50% + 4px);
    transform: translateX(50%);
    width: 1px;
    height: 182px;
    background-color: #E88976;
}

.mainvisual_omly_pc {
	width: clamp(500px, 64vw, 826px);
	object-fit: cover;
	border-radius: 10px;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {

	#mainvisual {
		padding-top: 97px;
	}

	.mainvisual-wrap {
		position: relative;
		justify-content: right;
		margin-right: 16px;
	}

	.mainvisual-inner {
		position: absolute;
		left: 16px;
		z-index: 2;
	}

	.maincopy {
		font-weight: bold;
		line-height: 1.5;
		letter-spacing: 0.23em;
		margin: 68px 0 40px;
	}

	.mainvisual_omly_pc {
		width: clamp(253px, 64vw, 500px);
		/* max-width: 253px; */
		height: 44vh;
		object-fit: cover;
	}

	/* .mainvisual_omly_sp {
		display: block;
		width: 253px;
		border-radius: 10px;
	} */

	.scroll-guide {
		font-size: 12px;
	}

	.scroll-guide::before {
		top: 43px;
		right: calc(50% + 1px);
		height: 126px;
	}
}

/** -----------------------------------------------
  PC :  about
------------------------------------------------**/

#about {
	background-image: url(../images/aboutus_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: -69px;
}

.about-wrap {
	display: flex;
	gap: 118px;
	justify-content: center;
	margin-top: 110px;
}

.about-inner-copy {
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.about-inner-text {
	font-size: 16px;
	font-weight: normal;
	line-height: 2.5;
	letter-spacing: 0em;
	margin: 31px 0;
}

.about-img {
	width: 100%;
	max-width: 472px;
	border-radius: 5px;
	margin: 0 auto;
	display: block;
}

.text-hover {
	position: relative;
	padding-left: 46px;
	transition: background-color 0.3s ease;
}

.text-hover::before {
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 1px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: #E88976;
	transition: background-color 0.3s ease;
}

.text-hover::after {
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 13px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

.text-hover:hover::before {
	background-color: #C86653;
}

.text-hover:hover {
	color: #C86653;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 820px) {
	#about {
		margin-top: -37px;
	}

	.about-wrap {
		display: block;
		margin-top: 56px;
	}

	.about-inner-copy {
		font-size: 16px;
	}

	.about-inner-text {
		font-size: 13px;
		margin: 24px 0;
	}

	.text-hover {
		font-size: 14px;
		margin-bottom: 32px;
	}
}

/** -----------------------------------------------
  PC :  ビジネス
------------------------------------------------**/

.business-inner-wrap {
	max-width: 424px;
	margin: 0 auto;
}

.business-inner-title {
	font-size: 24px;
	font-weight: bold;
	position: relative;
	padding-left: 16px;
	margin-bottom: 16px;
}

.business-inner-title::before {
	content: "";
	position: absolute;
	width: 2px;
	height: 31px;
	background-color: #f08a7c;
	border-radius: 1px;
	left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.business-slider {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
}

.business-slider .slick-slide {
	width: auto !important;
}

.business-slider img {
	margin-left: 24px;
	border-radius: 5px;
	width: 100%;
	max-width: 400px;
	height: 474px;
	object-fit: cover;
}

.business-wrap {
	display: flex;
	gap: 48px;
}

.business-inner-text {
	line-height: 1.5;
	margin-bottom: 32px;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
	.business-wrap {
		display: block;
	}

	.business-inner-wrap {
		margin-top: 40px;
	}

	.business-slider img {
		padding-left: 8px;
		height: auto;
	}

	.business-slider .slick-slide {
		width: 129px !important;
		height: auto !important;
	}

	.business-inner-title {
		font-size: 16px;
		margin-bottom: 4px;
	}

	.business-inner-title::before {
		height: 31.5px;
	}

	.business-inner-text {
		font-size: 13px;
		line-height: 1.8;
	}
}

/** -----------------------------------------------
  PC :  インタビュー
------------------------------------------------**/

#interview {
	overflow: hidden;
}

.interview-slider {
	width: 100vw;
	margin-right: calc(50% - 50vw);
}

.interview-slider a {
	display: block;
	text-decoration: none;
}

.interview-card-position {
	font-size: 14px;
	color: #1F2557;
	margin: 22px 0 4px;
}

.interview-card-name {
	font-size: 16px;
	font-weight: bold;
	color: #1F2557;
	margin-bottom: 60px;
}

.interview-slider img {
	width: 100%;
	max-width: 384px;
	margin-right: 24px;
}

.slider-bar {
	height: 8px;
	background: #e5e5e5;
	margin-top: 40px;

	width: calc(100% + (100vw - 1156px) / 2);
	margin-left: calc(-1 * (100vw - 1440px) / 2);

	position: relative;

	border-radius: 30px;
}

.slider-bar-thumb {
	height: 100%;
	width: 266px;   /* 仮 */
	background: #e07a5f;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 30px;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
	.interview-slider img {
		max-width: 253px;
		margin-right: 24px;
	}

	.interview-card-position {
		font-size: 10px;
		margin: 18px 0 3px;
	}

	.interview-card-name {
		font-size: 16px;
		margin-bottom: 32px;
	}
}

/** -----------------------------------------------
  PC :  働く環境
------------------------------------------------**/

#workstyle {
	position: relative;
}

.section-workstyle {
	max-width: 684px;
}

#workstyle::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 50vw);
	background-image: url(../images/workstyle_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}

.workstyle-inner-wrap {
	display: flex;
	gap: 52px;
	align-items: center;
	justify-content: center;
}

.workstyle-inner-wrap + .workstyle-inner-wrap {
	border-top: 1px solid #E88976;
	margin-top: 40px;
	padding-top: 40px;
}

.workstyle-inner-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 16px;
}

.workstyle-text-hover {
	position: relative;
	padding-left: 46px;
	display: block;
	width: fit-content;
	margin: 0 auto;
	margin-top: 80px;
	transition: background-color 0.3s ease;
}

.workstyle-text-hover::before {
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 1px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: #E88976;
	transition: background-color 0.3s ease;
}

.workstyle-text-hover::after {
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 13px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

.workstyle-slider {
	overflow: hidden;
	margin-top: 74px;
}

.workstyle-slider .slick-track {
	display: flex !important;
	align-items: center;
}

.workstyle-slider img {
	width: auto;
	border-radius: 5px;
	display: block;
	align-items: center;
	margin-left: 24px;
}

.workstyle-slider .slick-slide:nth-child(odd) img {
	height: 204px;
}

.workstyle-slider .slick-slide:nth-child(even) img {
	height: 308px;
}

.workstyle-text-hover:hover::before {
	background-color: #C86653;
}

.workstyle-text-hover:hover {
	color: #C86653;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
	#workstyle::before {
		/* background-image: url(../images/workstyle_bg_sp.jpg); */
		background: url(../images/workstyle_bg_sp.jpg) no-repeat center top / cover;
		top: -136px;
	}
	.section-workstyle {
		max-width: 342px;
	}

	.workstyle-inner-wrap + .workstyle-inner-wrap {
		margin-top: 24px;
		padding-top: 24px;
	}

	.workstyle-inner-title {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.workstyle-inner-text {
		font-size: 13px;
	}

	.workstyle-inner-wrap {
		gap: 24px;
		padding: 0;
		margin-bottom: 24px;
	}

	.workstyle-inner-wrap img {
		width: 50px;
	}

	.workstyle-text-hover {
		margin-top: 40px;
		font-size: 14px;
	}

	.workstyle-slider {
		margin-top: 40px;
	}

	.workstyle-slider img {
		margin-left: 8px;
	}

	.workstyle-slider .slick-slide:nth-child(odd) img {
		height: 67px;
	}

	.workstyle-slider .slick-slide:nth-child(even) img {
		height: 101px;
	}
}

/** -----------------------------------------------
  PC :  募集職種
------------------------------------------------**/

#recruit {
	position: relative;
	margin-top: 70px;
}

#recruit::before {
	content: "";
	position: absolute;
	top: -194px;
	left: 0;
	width: 100%;
	height: 1563px;
	background-image: url(../images/recruit_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}

.recruit-job-wrap a {
	font-size: 24px;
	font-weight: bold;
	width: 100%;
	max-width: 684px;
	align-items: center;
	padding: 24px 32px;
	background: #fff;
	border: 1px solid #1F2557;
	border-radius: 5px;
	text-decoration: none;
	color: #1F2557;
	transition: background-color 0.3s ease;
}

.recruit-job-hover {
	position: relative;
	padding-left: 46px;
	display: block;
	width: fit-content;
	margin: 0 auto;
	margin-top: 16px;
	transition: background-color 0.3s ease;
}

.recruit-job-hover::before {
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 32px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: #E88976;
	transition: background-color 0.3s ease;
}

.recruit-job-hover::after {
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 47px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

.recruit-job-hover:hover::before {
	background-color: #fff;
}

.recruit-job-hover:hover::after {
	border-top: 2px solid #E88976;
	border-right: 2px solid #E88976;
}

.recruit-job-hover:hover {
	background-color: #E88976;
}

.recruit-job-wrap a:hover {
	color: #fff;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px){
	#recruit {
		margin-top: 40px;
	}

	#recruit::before {
		top: -134px;
	}

	.recruit-job-wrap a {
		width: 343px;
		font-size: 14px;
		padding: 12px 16px;
	}

	.recruit-job-hover::before {
		width: 20px;
		height: 20px;
		right: 16px;
	}

	.recruit-job-hover::after {
		right: 24px;
		width: 7px;
		height: 7px;
	}
}

/** -----------------------------------------------
  PC :  cta
------------------------------------------------**/

#cta h2 {
	font-size: 64px;
	font-weight: 600;
	font-family: "Baloo 2", sans-serif;
}

.cta-inner {
	position: relative;
	max-width: 1156px;
	margin: 0 auto;
	margin-top: -40px;
	border-radius: 5px;
	overflow: hidden;
}

.cta-inner img {
	width: 100%;
	display: block;
	transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-inner:hover img {
	transform: scale(1.08);
}

.cta-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(232,137,118,1) 5%,
		rgba(232,137,128,0.75) 20%,
		rgba(232,137,128,0.55) 30%,
		rgba(232,137,128,0.25) 60%,
		rgba(232,137,128,0.0) 100%
	);
}

.cta-text {
	position: absolute;
	top: 50%;
	left: 80px;
	transform: translateY(-50%);
	color: white;
	z-index: 2;
}

.cta-text p {
	line-height: 2;
}

.cta-inner .cta-sp-only {
	display: none;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
	#cta {
		margin-top: 10px;
	}

	#cta h2 {
		font-size: 32px;
	}

	.cta-inner {
		max-width: 343px;
	}

	.cta-text {
		left: 28px;
	}

	.cta-text p {
		font-size: 10px;
		line-height: 1.7;
	}

	.cta-inner .cta-pc-only {
		display: none;
	}

	.cta-inner .cta-sp-only {
		display: block;
	}
}

/** -----------------------------------------------
  PC :  フッター
------------------------------------------------**/

#footer {
	background-color: #E88976;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	padding-top: 80px;
	margin-bottom: 146px;
}

.footer-logo img {
	width: 100%;
}

.footer-nav-list li {
	list-style: none;
	margin-bottom: 24px;
}

.footer-nav-list li:last-child {
	margin-bottom: 0;
}

ul.footer-nav-list li a {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
}


.footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-bottom: 80px;
}

.footer-bottom a {
	text-decoration: none;
	color: #fff;
	font-weight: normal;
}

.footer-bottom-list li {
	list-style: none;
}

.footer-bottom-list li + li  {
	border-left: 1px solid #fff;
	padding-left: 16px;
	margin-left: 16px;
}

.footer-bottom-list {
	display: flex;
}

/** -------- スマホ -------- **/
@media screen and (max-width: 768px) {
	#footer {
		margin-top: 10px;
	}

	.footer-inner {
		display: block;
		padding-top: 50px;
		margin-bottom: 0;
	}

	.footer-logo {
		text-align: center;
	}

	.footer-logo img {
		width: 195px;
	}

	.footer-nav-list {
		text-align: center;
		margin: 40px 0;
	}

	ul.footer-nav-list li a {
		font-size: 14px;
	}

	.footer-bottom {
		display: block;
		padding-bottom: 50px;
	}

	.footer-bottom-list {
		justify-content: center;
	}

	.footer-bottom a {
		font-size: 10px;
	}

	.footer-bottom .copyright {
		display: block;
		font-size: 8px;
		text-align: center;
		margin-top: 16px;
	}
}


