@charset "utf-8";
/* --------------------------------------------------
reset
-------------------------------------------------- */
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;
	font: inherit;
	font-size: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
html {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
strong {
	font-weight: bold;
}
em {
	font-style: italic;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
img, a {
	vertical-align: top;
}
a img {
	border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
*, *:before, *:after {
	box-sizing: border-box;
}
img {
	max-width: 100%;
}
a:hover img {
	opacity: 0.8;
 transition: all .3s;
}
* {
  margin: 0;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
/* --------------------------------------------------
clearfix
-------------------------------------------------- */

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/*------------------------------------
html
------------------------------------*/
html {
	scroll-padding-top: 80px;
	font-size: 62.5%;
	height: 100%;
	scroll-behavior: smooth;
  }
@media only screen and (max-width: 560px) {
	html {
		scroll-padding-top: 50px;
	  }
}
/* --------------------------------------------------
link
-------------------------------------------------- */

a:link {
	text-decoration: none;
 transition: all .3s;
}
a:visited {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
/*------------------------------------
pc sp出し分け
------------------------------------*/
.sp-only{
	display: none!important;
}
.sp-only-500{
	display: none!important;
}
@media only screen and (max-width: 1200px) {
	.pc-only{
		display: none!important;
	}
	.sp-only{
		display:block!important;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 500px) {
	.pc-only-500{
		display: none!important;
	}
	.sp-only-500{
		display:block!important;
		margin: 0 auto;
	}
}
/* --------------------------------------------------
body
-------------------------------------------------- */

body {
	font-family: "Noto Sans JP", YuGothic, "游ゴシック", verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.2;
	-webkit-text-size-adjust: 100%;
	height: 100%;
	color: #000;
	background: #FFF;
}
/*------------------------------------
wrapper
------------------------------------*/
.wrapper{
	overflow: hidden;
}
/* --------------------------------------------------

header

-------------------------------------------------- */

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1240px;
  margin: 0 auto;

  padding: 0 20px;
  height: 80px;

  position: relative;
}

.p-header__title {
  max-width: 135px;
}

.p-header__title img {
  display: block;
  width: 100%;
}

.c-hamburger {
  width: 40px;
  height: 40px;

  position: relative;

  background: transparent;
  border: none;

  cursor: pointer;
}

.c-hamburger span {
  position: absolute;
  left: 50%;

  width: 24px;
  height: 2px;

  background: #000;

  transform: translateX(-50%);
  transition: .3s;
}

.c-hamburger span:nth-child(1) {
  top: 12px;
}

.c-hamburger span:nth-child(2) {
  top: 19px;
}

.c-hamburger span:nth-child(3) {
  top: 26px;
}

/* active */

.c-hamburger.is-active span:nth-child(1) {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}

.c-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.c-hamburger.is-active span:nth-child(3) {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}
.p-header__nav {
  margin-left: auto;
}

.p-nav__inner {
  display: flex;
  align-items: center;
}

.p-nav__list {
  display: flex;
  list-style: none;
  padding: 0;
}
.p-nav__item {
  margin-right: 30px;
}
.p-nav__link {
  display: block;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
}

.p-nav__link:hover {
  opacity: .7;
}

.p-nav__inner > .btn-base a{
    font-size: 1.4rem;
    min-width: 0;
    padding: 1em 2em;
}
@media screen and (max-width: 1200px) {
  .p-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-header__nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    margin-left: 0;
    border-top: 1px solid #ddd;
    box-shadow:
      0 10px 20px rgba(0,0,0,.08);
  }
  .p-header__nav.is-active {
    display: block;
  }
  .p-nav__inner {
    display: block;
    padding: 0 15px 30px;
  }
  .p-nav__list {
    display: block;
	margin-bottom: 3%;
  }
  .p-nav__item {
    margin: 0;
    border-bottom: 1px solid #d9e1eb;
  }
	.p-nav__link {
		padding: 1.5rem 0;
		color: #0068B7!important;
		font-size: 2rem;
		
	}
	.p-nav__inner > .btn-base.sp-only a{
		width: 80%;
		font-size: 1.8rem;
        padding: 1em 2em;
	}
}
@media screen and (max-width: 768px) {
	.p-header__title {
		max-width: 180px;
	}
	.p-nav__inner > .btn-base.sp-only a{
		width: 100%;
	}
}

@media screen and (min-width: 1201px) {

  .p-header__hamburger {
    display: none;
  }

  .p-header__nav {
    display: block !important;
    position: static;
  }
}

/*------------------------------------
main-area
------------------------------------*/

.main-area {
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}
.main-area-ttl{
    margin: 0;
    padding: 0;
}

.main-area-ttl picture,
.main-area-ttl img {
    display: block;
    width: 100%;
}
.main-area-ttl img {
    height: auto;
}

.mv-block {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;

    box-sizing: border-box;
    padding: 0 20px 0;
    text-align: center;
}
.mv-block > .btn-block {
     width: 100%;
    margin: 0;
    padding: 0;
}
.mv-block > .mv-note {
    width: 100%;
    margin: 0;
    padding: 0;

    font-size: 1.2rem;
    font-weight: normal;
}
@media only screen and (min-width: 1201px) and (max-width: 1320px) {
    .main-area {
        overflow: visible;
        margin-bottom: 30px;
    }

    .mv-block {
        gap: 10px;
        transform: translateY(20px);
        z-index: 2;
    }
}
@media only screen and (max-width: 1200px) {
	.mv-block {
        position: static;
        display: block;
        padding: 16px 5% 40px;
    }

    .mv-block > .btn-block {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .mv-block > .btn-block p.btn-base {
        width: 100%;
        margin: 1em 0;
    }

    .mv-block > .btn-block p.btn-base a {
        display: block;
        width: 100%;
		font-size: 1.8rem;
    }
    .mv-note {
        margin-top: 16px;
    }
}
@media only screen and (max-width: 768px) {
	.mv-block {
        position: relative;
        margin-top: -20px;
    }
}
/* --------------------------------------------------
btn-block
-------------------------------------------------- */

.btn-block {
    margin: 2em 0;
    display: flex;
    flex-wrap: wrap;
}
.btn-block p.btn-base, .btn-block button{
	margin: 1em;
}
.btn-block.center {
	justify-content: center;
}
p.btn-base a{
	padding: 1.5em 2em;
	display: block;
	border-radius: 50px;
	min-width: 296px;
	text-align: center;
	margin: 0 auto;
	transition: all 0.5s;
	background-color: #fff;
	border: #000 solid 2px;
	font-size: 2rem;
	font-weight: bold;
	color: #000;
}
p.btn-base a.entry{
	background-image: linear-gradient(90deg, #00a3d9, #0068b7);
	text-align: center;
	margin: 0 auto;
	color: #fff;
	border: none;
}
p.btn-base a:hover{
	opacity: 0.7;
}
@media only screen and (max-width: 1200px) {
	.btn-block {
		display: block;
        margin: 1em 0;
	}
	.btn-block p, .btn-block button{
		margin: 0.5em 0;
	}
	.btn-block.center {
		display: block;
	}
	.btn-block p.btn-base, .btn-block button{
		margin: 1em 5%;
	}
}
@media screen and (max-width: 500px) {
	p.btn-base a{
		min-width: 0px;
	}
}
/*------------------------------------
contents
------------------------------------*/
#contents{
	width: 100%;
	margin: 0 auto;
	border-top:none;
	overflow: unset;
}
/*------------------------------------
col2
------------------------------------*/
.col2{
	display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.col2 > .col{
    width: 48%;
    margin: 0 4% 2em 0;
}
.col2 > .col:nth-child(2n) {
    margin-right: 0;
}
@media only screen and (max-width: 1200px) {
	.col2{
		display: block;
	}
	.col2 > .col{
    width: 100%;
}
}

/*------------------------------------
news-area
------------------------------------*/

.news-area{
	background-image: linear-gradient(0deg, #f9d2dc, #feebc8);
	padding: 5%;
}

.news-area > .inner{
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 30px;
	display: flex;
	flex-direction: row;
	padding: 5%;
	justify-content: space-between;
	box-shadow: 4px 4px 6px 0px rgba(118, 22, 65, 0.2);
}
.news-area > .inner .news-ttl{
	font-size: 4.8rem;
	font-weight: bold;
	color: #E61673;
	display: flex;
    flex-direction: column;
	line-height: 1.45;
}
.news-area > .inner .news-ttl span{
	font-size: 1.6rem;
	font-weight: normal;
	color: #000;
}
.newsList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
	width: 80%;
	max-width: 860px;
}
.newsList li{
	border-bottom: 1px solid #D0D0D0;
    padding-bottom: 1rem;
	display: flex;
    flex-wrap:wrap;
    gap: 8px;
}
.newsList li > .date{
	font-size: 1.4rem;
	font-weight: normal;
	line-height: 1.8;
}
.newsList li > .cat {
    border: 1px solid #E61673;
    border-radius: 4px;
    color: #E61673;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.8;
    padding: 0 4px;
}
.newsList li > p{
	width: 100%;
	font-size: 1.6rem;
	font-weight: normal;
}
@media only screen and (max-width: 1200px) {
	.news-area > .inner{
		display: block;
	}
	.newsList {
		width: 100%;
		max-width: none;
	}
}
@media only screen and (max-width: 768px) {
	.news-area{
		padding: 8% 5%;
	}
	.news-area > .inner .news-ttl{
		font-size: 3.2rem;
	}
	.news-area > .inner .news-ttl span{
		font-size: 1.4rem;
	}
}
@media only screen and (max-width: 500px) {
	.news-area{
		padding: 15% 5%;
	}
}
/*------------------------------------
crew-area
------------------------------------*/
.crew-area{
	position: relative;
}
.crew-area::after{
	background: url(../img/wave.svg) no-repeat;
	content: "";
    width: 100%;
	aspect-ratio: 144 / 15.7;
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
	z-index: 1;
	background-size: 100% auto;
}
.crew-area .inner{
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	position: relative;
	padding: 5% 0;
}
.crew-area .inner .crew-ttl{
	font-size: 5.6rem;
	font-weight: bold;
	color: #0068B7;
}
.crew-area .inner .crew-ttl span{
	font-size: 7.2rem;
	font-weight: bold;
	color: #0068B7;
	display: block;
	line-height: 1.8;
}
.crew-list{
	display: flex;
	justify-content: space-around;
}
.crew-list > li{
	width: 400px;
	height: 400px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
	box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2);
	z-index: 3;
}
.crew-list > li:nth-child(1){
	margin-top: 10%;
}
.crew-list > li:nth-child(3){
	margin-top: -10%;
}
.crew-list > li > .crew-list-wrap {
	height: 100%;
	background-image: linear-gradient(0deg, #0068b7, #00a3d9);
}
.crew-list > li:nth-child(2) > .crew-list-wrap{
	background-image: linear-gradient(0deg, #f092ae, #f9d2dc);
}
.crew-list > li:nth-child(3) > .crew-list-wrap{
	background-image: linear-gradient(0deg, #009d52, #abce23);
}
.crew-list > li > .crew-list-wrap .content{
	position: relative;
    text-align: center;
    padding: 1em;
	color: #fff;
	height: 100%;
}
.crew-list > li > .crew-list-wrap .content h3{
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 1rem;
}
.crew-list > li > .crew-list-wrap .content p{
	font-size: 1.6rem;
	font-weight: normal;
	max-width: 17em;
	margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
	.crew-list{
		display: block;
	}
	.crew-area .inner .crew-ttl {
		font-size: 3.2rem;
		text-align: center;
	}
	.crew-area .inner .crew-ttl span{
		font-size: 4.6rem;
	}
	.crew-area .inner{
		padding: 13% 5% 5% ;
	}
	.crew-list > li {
		margin: 0 auto 5%;
	}
	.crew-list > li:nth-child(1){
		margin-top: 3%;
	}
	.crew-list > li:nth-child(3) {
		margin-top: 0;
	}
}
@media only screen and (max-width: 768px) {
	.crew-area .inner{
		padding: 5% 5% ;
	}
}
@media only screen and (max-width: 500px) {
	.crew-list > li{
		width: 300px;
		height: 300px;
	}
	.crew-list > li > .crew-list-wrap .content h3 {
		font-size: 1.7rem;
	}
	.crew-list > li > .crew-list-wrap .content p {
		font-size: 1.4rem;
		max-width: 16em
	}
	.crew-area .inner .crew-ttl span{
		line-height: 1.6;
	}
	.crew-area .inner {
        padding: 15% 5%;
    }
	.crew-list > li:nth-child(1) {
        margin-top: 8%;
    }
	.crew-list > li {
        margin: 0 auto 13%;
    }
}
@media only screen and (max-width: 360px) {
	.crew-area .inner {
        padding: 38% 5%;
    }
	.crew-list > li{
		width: 260px;
		height: 260px;
	}
	.crew-list > li > .crew-list-wrap .content h3 {
		font-size: 1.5rem;
	}
	.crew-list > li > .crew-list-wrap .content p {
		font-size: 1.2rem;
		max-width: 17em
	}
}
/*------------------------------------
job-category-area
------------------------------------*/
.job-category-area{
	background-color: #FFF6E6;
	position: relative;
}
.job-category-area .inner{
	padding: 25% 5% 15%;
	margin: 0 auto;
}
.job-category-area > .inner > .job-category-ttl{
	font-weight: bold;
	font-size: 4.8rem;
	color: #FF933A;
	text-align: center;
	margin-bottom: 5%;
}
.job-category-area > .inner > .lead-txt{
	font-size: 1.8rem;
	font-weight: normal;
	text-align: center;
	line-height: 1.8;
	margin-bottom: 5%;
}
.job-category-area > .inner > .crewlist {
    display: flex;
    justify-content: space-between;
    gap: 2%;
    padding: 0;
    margin: 0;
    list-style: none;
	margin-bottom: 8%;
}
.job-category-area > .inner > .crewlist li {
    width: 49%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.job-category-area > .inner > .crewlist li img {
    display: block;
    width: 100%;
    height: auto;
}
.job-category-area > .inner > .crewlist li .crew-content {
    position: relative;
    text-align: center;
    padding: 40px 20px 25px;
}
.job-category-area > .inner >  .crewlist .corecrew .crew-content {
    background: #ff933a;
}
.job-category-area > .inner >  .crewlist .supportcrew .crew-content {
    background: #85cbbf;
}
.job-category-area > .inner >  .crewlist li .crew-content h4 {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    line-height: 44px;
    margin: 0;
    background: #fff;
    border-radius: 999px;
    font-size: 2rem;
    font-weight: bold;
	color: #f3a69d;
	border: 2px solid #ff933a;
    box-sizing: border-box;
}
.job-category-area > .inner >  .crewlist li.supportcrew .crew-content h4 {
	border: 2px solid #85cbbf;
	color: #85cbbf;
}
.crew-content p {
    margin: 0;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.8;
}


.job-category-area > .inner > .job-category-sttl{
	font-weight: bold;
	font-size: 3.2rem;
	color: #FF933A;
	text-align: center;
	margin-bottom: 1rem;
	display: flex;
	align-items: center; 
	justify-content: center;
}
.job-category-area > .inner > .job-category-sttl::before,
.job-category-area > .inner > .job-category-sttl::after {
  content: "";
  width: 16px;
  height: 4px;
  background-color: #FF933A; 
  flex-shrink: 0;
  border-radius: 4px;
}

.job-category-area > .inner > .job-category-sttl::before {
  margin-right: 20px;
}

.job-category-area > .inner > .job-category-sttl::after {
  margin-left: 20px;
}
.job-category-area > .inner > p > span{
	font-size: 1.2rem;
	font-weight: normal;
	text-align: center;
	display: block;
}
.job-category-area > .inner > .Job-details{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	max-width: 920px;
	margin: 5% auto;
	z-index: 3;
	position: relative;
}
.job-category-area > .inner > .Job-details > li{
	background-color: #fff;
	border: solid 1px #FF933A;
	border-radius: 10px;
	width: 23%;
    margin: 0 2.6666666667% 2em 0;
	text-align: center;
	
}
.job-category-area > .inner > .Job-details > li:nth-child(4n) {
	margin-right: 0;
}
.job-category-area > .inner > .Job-details > li > h4{
	font-size: 1.8rem;
	font-weight: bold;
	color: #FF933A;
	margin-bottom: 3%;
	display: flex;
	align-items: center;      
	justify-content: center;  
	min-height: 3.6em;     
	line-height: 1.3;
}
.job-category-area > .inner > .Job-details > li > p{
	font-size: 1.4rem;
	font-weight: normal;
	padding:0 2rem;
	text-align: left;
	line-height: 1.6;
	margin-bottom: 2rem;
}
.job-category-area > .inner > .Job-details > li > img{
	text-align: center;
	margin: 10% auto;
}
@media screen and (max-width: 1200px) {
	.job-category-area > .inner > .crewlist {
		display: block;
	}
	.job-category-area > .inner > .crewlist li {
		width: 100%;
		margin-bottom: 5%;
	}
	
}
@media (max-width: 768px){
	.job-category-area > .inner > .job-category-ttl{
		font-size: 3.2rem;
	}
	.job-category-area > .inner > .lead-txt{
		font-size: 1.6rem;
		line-height: 1.6;
	}
	.job-category-area > .inner > .crewlist {
		margin-bottom: 12%;
	}
    .crewlist li{
        width: 100%;
    }
	.job-category-area > .inner > .Job-details > li {
		width: 48%;
    	margin: 0 4% 2em 0;
	}
	.job-category-area > .inner > .Job-details > li:nth-child(2n) {
		margin-right: 0;
	}
	.job-category-area > .inner > .crewlist li .crew-content h4 {
		font-size: 1.6rem;
	}
	.job-category-area > .inner > .job-category-sttl {
		font-size: 2.4rem;
	}
	.job-category-area > .inner > .Job-details > li > h4 {
		font-size: 1.6rem;
	}
	.job-category-area > .inner > .Job-details > li > img{
		margin: 6% auto;
	}
	.job-category-area > .inner > .Job-details {
		margin: 10% auto;
	}
}

/*------------------------------------
requirements-area
------------------------------------*/
.requirements-area {
	position: relative;
}
.requirements-area::before{
	background: url(../img/wave.svg) no-repeat;
	content: "";
    width: 100%;
	aspect-ratio: 144 / 15.7;
    left: 0;
    position: absolute;
    right: 0;
    bottom:100%;
	z-index: 1;
	transform: scale(1, -1);
	background-size: 100% auto;
}
.requirements-area::after{
	background: url(../img/curve01.svg) no-repeat;
	content: "";
    width: 100%;
	aspect-ratio: 144 / 10.1;
    left: 0;
    position: absolute;
    right: 0;
	z-index: 1;
	background-size: 100% auto;
}
.requirements-area > .inner{
	padding: 0 5% 7%;
	margin: 0 auto;
}
.requirements-area > .inner > .requirements-ttl{
	font-weight: bold;
	font-size: 4.8rem;
	color: #E61673;
	text-align: center;
	margin-bottom: 5rem;
}
.requirements-table {
	max-width: 1040px;
	width: 100%;
	margin: 0 auto;
	
}
.requirements-table table {
    width: auto;
    border-collapse: separate;
	border-spacing: 0; 
    border: 1px solid #DDD;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 1em 0 5%;
	border-radius: 10px;
	overflow: hidden; 
	z-index: 3;
	position: relative;
}
/*.requirements-table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}*/
.requirements-table tr:first-child th:last-child {
  border-top-right-radius: 10px;
}
.requirements-table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.requirements-table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
.requirements-table table tr th, .requirements-table table tr td {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 10px;
}
.requirements-table table tr th:last-child, .requirements-table table tr td:last-child {
  border-right: none;
}
.requirements-table table tr:last-child th, .requirements-table table tr:last-child td {
  border-bottom: none;
}
.requirements-table table thead tr:last-child th{
	border-bottom: 1px solid #ccc;
	text-align: center;
	padding: 1em;
}
.requirements-table table thead tr th p::before{
	display: none;
}
.requirements-table table tr th {
    color: #E61673;
    background: #FFF6E6;
    font-weight: bold;
	font-size: 1.6rem;
	width: 22%;
	padding: 1em;
}
.requirements-table table tr th p{
	display: flex;
 	align-items: center;
	gap: 8px;
}
.requirements-table table tr th p::before{
	content: '';
    width: 24px;
    height: 24px;
    background: url(../img/ico-requirements01.svg) no-repeat;
    display: inline-block;
}
.requirements-table table tr th.ico02 p::before{
    background: url(../img/ico-requirements02.svg) no-repeat;
}
.requirements-table table tr th.ico03 p::before{
    background: url(../img/ico-requirements03.svg) no-repeat;
}
.requirements-table table tr th.ico04 p::before{
    background: url(../img/ico-requirements04.svg) no-repeat;
}
.requirements-table table tr th.ico05 p::before{
    background: url(../img/ico-requirements05.svg) no-repeat;
}
.requirements-table table tr th.ico06 p::before{
    background: url(../img/ico-requirements06.svg) no-repeat;
}
.requirements-table table tr th.ico07 p::before{
    background: url(../img/ico-requirements07.svg) no-repeat;
}
.requirements-table table tr th.ico08 p::before{
    background: url(../img/ico-requirements08.svg) no-repeat;
}
.requirements-table table tr th.ico09 p::before{
    background: url(../img/ico-requirements09.svg) no-repeat;
}
.requirements-table table tr th.ico10 p::before{
    background: url(../img/ico-requirements09.svg) no-repeat;
}
.requirements-table table tr td {
    background: #FFFFFF;
    padding: 0.5em;
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.6;
	padding: 1em;
	width: 37%;
}
.requirements-table table tr td span{
	font-size: 1.2rem;
}
.text-center{
	text-align: center;
}
.requirements-table table tr td > .col-inner{
	display: flex;
	justify-content: space-between;
}
.requirements-table table tr td > .col-inner > .img-area{
	width: 58%;
}
.requirements-table table tr td > .col-inner > .detail-area{
	width: 40%;
}
.requirements-area > .inner .col2{
	max-width: 1040px;
	margin: 0 auto;
}
.requirements-area > .inner > .requirements-sttl{
	font-weight: bold;
	font-size: 3.2rem;
	color: #E61673;
	text-align: center;
	margin-bottom: 3%;
	display: flex;
	align-items: center; 
	justify-content: center;
}
.requirements-area > .inner > .requirements-sttl::before,
.requirements-area > .inner > .requirements-sttl::after {
  content: "";
  width: 16px;
  height: 4px;
  background-color: #E61673; 
  flex-shrink: 0;
  border-radius: 4px;
}

.requirements-area > .inner > .requirements-sttl::before {
  margin-right: 20px;
}

.requirements-area > .inner > .requirements-sttl::after {
  margin-left: 20px;
}
.job-category-area > .inner > p > span{
	font-size: 1.2rem;
	font-weight: normal;
	text-align: center;
	display: block;
}
.requirements-area > .inner .col2 .col{
	border: #E61673 solid 1px;
	padding: 2em 1em 2em 2em;
	color: #E61673;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.6;
	border-radius: 10px;
	display: flex;
 	align-items: center;
	z-index: 3;
	background-color: #fff;
	position: relative;
}
.requirements-area > .inner .col2 .col::before{
	content: '';
	width: 30px;
	height: 24px;
	background: url(../img/ico-check.svg) no-repeat;
	margin-right: 10px;
	flex-shrink: 0;
	margin-top: 0.1em;
}
.requirements-area > .inner .col2 .col p span{
	font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
	.requirements-area > .inner > .requirements-ttl{
		font-size: 3.2rem;
	}
	.requirements-table table tr th p {
		flex-direction: column; 
		justify-content: center;
		text-align: center;
	}
	.requirements-area > .inner > .requirements-sttl{
		margin: 8% auto 5%;
		font-size: 2.4rem;
	}
	.requirements-table table tr td > .col-inner{
		display: block;
	}
	.requirements-table table tr td > .col-inner > .img-area{
		width: 100%;
	}
	.requirements-table table tr td > .col-inner > .detail-area{
		width: 100%;
		margin-top: 2rem;
	}
}
/* @media screen and (max-width: 768px) {
	.requirements-area::after {
		height: 101.6px;
		top: 99%;
	}
} */
@media screen and (max-width: 500px) {
	.requirements-table table tr th.ico08 p{
		writing-mode: vertical-rl;
        text-orientation: upright;
		display: flex;
        flex-direction: row;
        align-items: center; 
		justify-content: center;
		width: 100%;
	}
	.requirements-table table tr th.ico08 p::before {
        flex-shrink: 0;
    }
	.requirements-table table tr th.ico10 p{
		/* writing-mode: vertical-rl;
        text-orientation: upright; */
		display: flex;
        /* flex-direction: row; */
        align-items: center; 
		justify-content: center;
		width: 100%;
	}
	.requirements-table table tr th.ico10 p::before {
        flex-shrink: 0;
    }
}
@media screen and (max-width: 400px) {
	.requirements-area > .inner > .requirements-sttl{
		margin: 10% auto 5%;
	}
	/* .requirements-area::after {
		height: 141.6px;
		top: 98.4%;	
	} */
}
@media screen and (max-width: 380px) {
	/* .requirements-area::after {
		height: 151.6px;
		top: 98.5%;	
	} */
}

/*------------------------------------
schedule-area
------------------------------------*/
.schedule-area{
	background: linear-gradient(0deg, #ea4781, #f3a69d);
	position: relative;
}
.schedule-area::after{
	background: url(../img/curve02.svg) no-repeat;
	content: "";
    width: 100%;
	aspect-ratio: 144 / 11.3;
    left: 0;
    position: absolute;
    right: 0;
	z-index: 1;
	background-size: 100% auto;
	bottom: -1%;
}
.schedule-area > .inner{
	padding: 15% 0;
	max-width: 1040px;
	margin: 0 auto;
	
}
.schedule-area > .inner > .schedule-ttl{
	font-weight: bold;
	font-size: 4.8rem;
	color: #fff;
	text-align: center;
	margin-bottom: 5rem;
}
.recruit-flow {
    background: linear-gradient(
        180deg,
        #e48b94 0%,
        #ea558f 100%
    );
    padding: 80px 20px;
}
.flow {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.flow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
}
.flow > li {
    position: relative;
    display: flex;
    margin-bottom: 70px;
}
.flow > li:nth-child(odd) {
    justify-content: flex-end;
}
.flow > li:nth-child(even) {
    justify-content: flex-start;
}
.flow > li::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50px;
    width: 24px;
    height: 24px;
   background-image: linear-gradient(0deg, #ea4781, #f3a69d);
    border: 3px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.flow-box {
    width: calc(50% - 50px);
    background: #fff;
    border-radius: 18px;
    padding: 28px 30px;
    box-sizing: border-box;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}
.flow-box p.term {
    font-size: 1.6rem;
    margin-bottom: 10px;
	color: #4C4948;
}
.flow-box h3 {
    font-size: 2.4rem;
    font-weight: bold;
    color: #E61673;
    margin-bottom: 15px;
    line-height: 1.2;
}
.flow-box p {
    line-height: 1.6;
	font-size: 1.6rem;
	font-weight:normal;
}

.schedule {
    margin-top: 15px;
}

.schedule > dl {
    display: flex;
	margin-bottom: 0.5rem;
	font-size: 1.6rem;
	font-weight: normal;
}
.schedule > dl dt{
    min-width: 11em;
}

.flow-box p span {
    font-size: 1.2rem;
}
@media screen and (max-width: 1200px) {
	.schedule-area > .inner{
		padding: 15% 5%;		
	}
	.schedule-area > .inner > .schedule-ttl {
		font-size: 3.2rem;
	}
    .recruit-flow {
        padding: 50px 15px;
    }
    .flow::before {
        left: 20px;
    }
    .flow li {
        justify-content: flex-start !important;
        margin-bottom: 25px;
        padding-left: 45px;
    }
    .flow li::before {
        left: 20px;
        top: 0;
        width: 16px;
        height: 16px;
    }
    .flow-box {
        width: 100%;
        padding: 22px;
        border-radius: 14px;
    }
    .flow-box h3 {
        font-size: 24px;
    }
    .schedule {
        font-size: 14px;
    }
}
@media screen and (max-width: 500px) {
	.schedule > dl {
		display: block;
	}
	.schedule > dl dd{
		padding-left: 1em;
	}
	.schedule-area > .inner {
		padding: 15% 5% 18%;
	}
	.requirements-area > .inner .col2 .col {
		margin: 0 4% 1em 0;
	}
}
/*------------------------------------
faq
------------------------------------*/
.faq-area{
	position: relative;
}
.faq-area::after{
	background: url(../img/wave.svg) no-repeat;
	content: "";
    width: 100%;
	aspect-ratio: 144 / 15.7;
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
	z-index: 1;
	transform: scaleX(-1);
	background-size: 100% auto;
}
.faq-area > .inner{
	padding: 5% 5% 7%;
	max-width: 1040px;
	margin: 0 auto;
}
.faq-area > .inner .faq-ttl{
	font-weight: bold;
	font-size: 4.8rem;
	color: #E61673;
	display: flex;
 	align-items: center;
	justify-content: center
}
.faq-area > .inner .faq-ttl::before{
	content: '';
    width: 40px;
    height: 40px;
    background: url(../img/ico-faq.svg) no-repeat;
    margin-right: 10px;
    display: inline-block;
}
.list-qa{
	margin-top: 5rem;
	display: flex; 
    justify-content:space-between;
	align-items: flex-start;
}
.col-qa-wrap{
	width: 49%;
}
.col-qa{
	border: solid 1px #E61673;
	border-radius: 10px;
	padding: 1em;
	margin-bottom: 2%;
	width: 100%;
}
.col-qa > .col-qa-ttl {
    position: relative;
    padding-right: 40px; 
    cursor: pointer;
	font-size: 1.6rem;
	font-weight:500;
	padding-bottom: 1rem;
}
.col-qa > .col-qa-ttl::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333; 
    border-bottom: 2px solid #333;
    transform: translateY(-50%) rotate(45deg); 
    transition: transform 0.3s ease; 
}
.col-qa > .col-qa-ttl.active::after {
    transform: translateY(-25%) rotate(-135deg); 
}
.col-qa > .col-qa-ttl span{
	color: #E61673;
}
.col-qa > .ac-c > p{
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.6;
	padding-top: 1rem;
}
@media screen and (max-width: 1200px) {
	.faq-area > .inner .faq-ttl {
		font-size: 3.2rem;
	}
	.list-qa{
		display: block; 
	}
	.col-qa-wrap{
		width: 100%;
	}
}

/*------------------------------------
entry
------------------------------------*/
.entry-area{
	background-color: #FFF6E6;
	position: relative;
}
.entry-area > .inner{
	padding: 15% 5% 7%;
}
.entry-area > .inner .entry-ttl{
	font-weight: bold;
	font-size: 5rem;
	color: #E61673;
	text-align: center;
}

.entry-area > .inner  .note{
	font-size: 1.2rem;
	font-weight: normal;
	text-align: center;
}
.entry-area > .inner > p.btn-base{
	position: relative;
    padding: 1.5em 0 0;
    display: block;
    text-align: center;
    transition: all 0.5s;
    font-weight: bold;
}
.entry-area > .inner  p.btn-base a{
	max-width: 400px;
	margin: 5% auto 2%;
	display: flex;
    align-items: center;
	justify-content: center;
}
/* .entry-area > .inner > p.btn-base a.entry::after{
	content: '';
    width: 32px;
    height: 32px;
    background: url(../img/ico-arrow.svg) no-repeat;
    display: inline-block;
	margin-left: 0.5em;
} */
@media screen and (max-width: 1200px) {
	.entry-area > .inner .entry-ttl {
		font-size: 2.4rem
	}
}
@media screen and (max-width: 500px) {
	.entry-area > .inner  p.btn-base a{
		font-size: 1.7rem;
		min-width: 0;
	}
	.entry-area > .inner {
		padding: 15% 5% 10%;
	}
}
/*------------------------------------
contact
------------------------------------*/
.contact-area{
	border-bottom: solid 1px #D0D0D0;
}
.contact-area > .inner{
	padding: 5%;
}
.contact-area > .inner .contact-ttl{
	font-weight: bold;
	font-size: 4.8rem;
	color: #E61673;
	text-align: center;
}
.contact-area > .inner .contact-block{
	width: 90%;
	border: solid 1px #E61673;
	text-align: center;
	margin: 5% auto;
	padding:3% 5%;
	border-radius: 30px;
	box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
.contact-area > .inner .contact-block > p{
	font-size: 1.5rem;
	font-weight: normal;
	margin-bottom: 5%;
}
.contact-area > .inner .contact-block > p:last-child{
	margin-bottom: 0;
}
.contact-area > .inner .contact-block .contact-list{
	display: flex;
	justify-content: center;
	align-items: center;
    gap: 50px;
	margin-bottom: 5%;
}
.contact-area > .inner .contact-block .contact-list li{
	margin-bottom: 1rem;
}
.contact-list li a {
    display: flex;
    align-items: center;
    color: #E61673;
    font-size: 2.4rem;
    font-weight: bold;
}
.contact-list li a::before {
    content: "";
    width: 56px;
    height: 56px;
    margin-right: 10px;
    flex-shrink: 0;
}
.contact-list .tel a::before {
    background: url(../img/ico-tel.svg) no-repeat center/contain;
}
.contact-list .mail a::before {
    background: url(../img/ico-mail.svg) no-repeat center/contain;
}
.contact-area > .inner .contact-block .contact-list > p{
	font-size: 1.6rem;
	font-weight: normal;
}
.tel-link{
	pointer-events: none;
    cursor: default;
    text-decoration: none;
}
@media screen and (max-width: 1200px) {
	.contact-area > .inner .contact-ttl {
		font-size: 3.2rem
	}
	.contact-area > .inner .contact-block {
        width: 90%;
        max-width: 68	0px;
        padding: 25px 20px;
        border-radius: 20px;
    }
	.contact-area > .inner .contact-block .contact-list{
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: fit-content;
        margin: 0 auto 20px;
    }
    .contact-area > .inner .contact-block .contact-list li{
        width: 100%;
    }
	.contact-area > .inner .contact-block .contact-list li a{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-size: 1.8rem;
        line-height: 1.4;
        text-align: left;
        word-break: break-word;
    }
    .contact-area > .inner .contact-block .contact-list li a::before {
        width: 42px;
        height: 42px;
        margin-right: 10px;
    }
    .contact-block p{
        font-size: 1.3rem;
        line-height: 2;
        text-align: center;
    }
}
@media screen and (max-width:768px){
    .tel-link{
        pointer-events:none;
    }
	.contact-area > .inner{
    	padding: 10% 5%;
	}
	.contact-area > .inner .contact-block{
		margin: 10% auto 5%; 
	}
}
@media screen and (max-width:500px){
    
}

/*------------------------------------
footer
------------------------------------*/
#footer > .inner{
	width: 100%;
	margin: 3% auto;
	padding: 0 3%;
}
#footer > .inner .footerBody{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30%;
	margin: 0 auto 1rem;
}
#footer > .inner .footerBody .footer_logo{
	width: 50%;
}
#footer > .inner .footerBody .footer_logo img{
	max-width: 200px;
	width: 100%;
	margin: 0 auto;
}
#footer > .inner .link-footer{
	width: 50%;
}

#footer > .inner .link-footer .link-sns{
	display: flex;
}
#footer > .inner .link-footer .link-sns li{
	padding-right: 0.5em;
}
#footer > .inner .link-footer .link-list{
	display: flex;
	font-size: 1.4rem;
	font-weight: normal;
}
#footer > .inner .link-footer .link-list li{
	padding: 1em 1em 0 0;
}
#footer > .inner > p{
	font-size: 1.2rem;
	font-weight: normal;
	text-align: center;
	margin-bottom:2rem;
	line-height: 1.6;
}
#footer > .inner .copy{
	font-weight: bold;
	font-size: 1.2rem;
	text-align: center;
	letter-spacing: 2px;
	border-top: solid 1px #D0D0D0;
	padding: 2rem 0;
}
@media screen and (max-width: 1200px) {
	#footer > .inner .footerBody {
		flex-direction: column;
		justify-content: center;
		width: 100%;
		padding: 0 2%;
	}
	#footer > .inner .link-footer .link-sns{
		justify-content: center;
	}
	#footer > .inner .footerBody .footer_logo{
		width: 100%;
	}
	#footer > .inner .footerBody .flink-footer{
		width: 100%;
}
}
/*------------------------------------
fade-in
------------------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(30px); 
  transition: opacity 1s, transform 1s; 
  position: absolute;
}
.fade-in {
  opacity: 0;
  transform: translateY(80px) scale(0.8); 
  transition: opacity 1s, transform 1s; 
  position: absolute;
}
.fade-in.is-show {
  opacity: 1;
  transform: translateY(0) scale(1); 
}
.fade-in.is-show {
  opacity: 1;
  transform: translateY(0); 
}
.fade-in.deco01{
	left: 37%;
    top: 3%;
}
.fade-in.deco02{
	right: -2%;
    top: -8%;
}
.fade-in.deco03{
	right: 2%;
    bottom: 0;
}
.fade-in.deco04{
	left: -13%;
    bottom: -63%;
	z-index: 2;
}
.fade-in.deco05{
	right: -17%;
    bottom: -4%;
    z-index: 2;
    width: 40%;
}
.fade-in.deco06{
	right: 0;
    bottom: 49%;
}
.fade-in.deco07{
	left: -8%;
    bottom: 17%;
	z-index: 2;
	width: 30%;
}
.fade-in.deco08{
	right: -6%;
    top: -7%;
	z-index: 2;
}
.fade-in.deco09{
	left: 0;
    top: -23%;
	z-index: 2;
}
.fade-in.deco10{
	right: 0;
    bottom: 66%;
    z-index: 2;
    width: 33%;
}
@media screen and (max-width: 1200px) {
	.fade-in.deco01{
		left: 65%;
        top: 1%;
        width: 40%;	;
	}
	.fade-in.deco02{
		display: none;
	}
	.fade-in.deco03{
		right: 2%;
        bottom: 22%;
        width: 40%;
	}
	.fade-in.deco04{
		left: -12%;
        bottom: -14%;
        width: 40%;
	}
	.fade-in.deco06{
		right: -27px;
        bottom: 30%;
        width: 14%;
	}
	.fade-in.deco07{
		left: -8%;
        bottom: 25%;
        width: 30%;
	}
	.fade-in.deco08{
		right: -6%;
        top: -7%;
        width: 40%;
	}
	.fade-in.deco09{
		display: none;
	}
	.fade-in.deco10{
		right: 0;
        bottom: -16%;
        width: 40%;
	}
	#footer > .inner .link-footer .link-list{
		justify-content: center;
	}
}
@media screen and (max-width: 768px) {
	.fade-in.deco01{
		left: 67%;
        top: -3%;
        width: 38%;
	}
	.fade-in.deco02{
		display: none;
	}
	.fade-in.deco03{
		right: 2%;
        bottom: 22%;
        width: 40%;
	}
	.fade-in.deco04{
		left: -12%;
        bottom: -14%;
        width: 40%;
	}
	.fade-in.deco05{
		right: -12%;
		bottom: -4%;
		z-index: 2;
		width: 40%;
	}
	.fade-in.deco06{
		right: -27px;
        bottom: 27%;
        width: 14%;
	}
	.fade-in.deco07{
		left: -8%;
        bottom: 21%;
        width: 30%;
	}
	.fade-in.deco08{
		right: -6%;
        top: -3%;
        width: 40%;
	}
	.fade-in.deco10{
		right: 0;
        bottom: -16%;
        width: 40%;
	}
}
@media screen and (max-width: 570px) {
	.fade-in.deco01 {
       left: 67%;
        top: -1%;
        width: 35%;
    }
	
}
@media screen and (max-width: 500px) {
	.fade-in.deco01 {
        left: 65%;
        top: 0;
        width: 40%;
    }
	.fade-in.deco03 {
        right: 10%;
        bottom: 25%;
        width: 30%;
    }
	.fade-in.deco06 {
        right: -10px;
        bottom: 26%;
        width: 14%;
    }
	.fade-in.deco07 {
        left: -8%;
        bottom: 18%;
        width: 30%;
    }
	.fade-in.deco08 {
        right: -3%;
        top: -3%;
        width: 50%;
    }
}
@media screen and (max-width: 400px) {
	.fade-in.deco03 {
        right: 3%;
        bottom: 27%;
        width: 30%;
    }
	.fade-in.deco04 {
        left: -12%;
        bottom: -10%;
        width: 44%;
    }
	.fade-in.deco05 {
		right: -12%;
        bottom: -2.5%;
        z-index: 2;
        width: 40%;
    }
	.fade-in.deco06 {
        right: -11px;
        bottom: 16.5%;
        width: 23%;
    }
	.fade-in.deco07 {
        left: -8%;
        bottom: 16.4%;
        width: 35%;
    }
	.fade-in.deco08 {
        right: -3%;
        top: -3%;	
        width: 50%;
    }
	.fade-in.deco09 {
		left: 0;
        top: -6%;
        width: 15%;
	}
	.fade-in.deco10 {
        right: 20px;
        bottom: -10%;
        width: 40%;
    }
}
/*------------------------------------
privacy
------------------------------------*/
.ttl-block{
	margin-top: 80px;
	background: url(../img/ttl.png) no-repeat;
    width: 100%;
	aspect-ratio: 144 / 19;
	background-size: 100% auto;
	
}
.ttl-block > .page-ttl{
	padding: 4% 5%;
	color: #fff;
	font-size: clamp(1.25rem, 0.7081rem + 2.3121vw, 4rem);
	font-weight: bold;
}
.privacy.inner{
	padding: 5%;
	margin: 0 auto;
}
.privacy.inner > p{
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.6;
	margin-bottom: 2rem;
}
.privacy.inner > p+ul{
	margin-top: -2rem;
}
.privacy.inner > h3{
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.6;
}
.privacy.inner > ul li{
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.6;
}


