@charset "UTF-8";

body {
	margin: 0;
	padding: 0;
	font-family: neulis-sans,sans-serif;
	background-color: #f9f9f9;
}

p{
	color: #282828;
}

/*↓会社ロゴ*/
.icon{
  position: fixed;
  top: 0px;
  left: 0px;
	z-index: 999;
}

.icon img{
	width: auto;
	height: 60px;
}
/*↑会社ロゴ*/

/*↓ハンバーガーメニュー*/

/*↓メニューボタン*/

.hamburger-morph {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-morph__icon {
  width: 100%;
  height: 100%;
  background-color: #2233ff;
}

.hamburger-morph__line {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 60 207;
}

.hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 60 60;
}

.hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 60 207;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

/*↑メニューボタン*/

/*↓メニュー内*/

.nav-morph {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #2233ff;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}

.nav-morph.active {
  clip-path: circle(150% at calc(100% - 44px) 44px);
}/*背景が開く*/


.nav-morph__wrapper {
	width: 90%;
	height: 100%;
	margin: 0 auto;
}/*メニューの位置*/

.nav_section{
	width: 100%;
	height: 50%;
	margin-top: 50px;
}

.mobile1{
	display: flex;
}

.mobile2{
	display: flex;
}

.nav-morph section{
	width:100%;
	height: 100%;
	margin: 20px auto 0;
	padding: 0;
	text-align: left;
	font-weight: bold;
	vertical-align: top;
}/*項目の位置*/

.nav-morph section h2{
	width: 90%;
	text-align: left;
	font-size: 11pt;
	color: #9aa2ff;
	font-family: "源暎ゴシックP H-KL";
	letter-spacing: 0.12em;
	margin-bottom: -10px;
}

.nav-morph ul{
	width: 100%;
	padding: 0;
	border-left: 1px solid #fff;
}

.nav-morph li{
	list-style: none;
	padding: 0px;
}

.nav-morph li a{
	text-decoration: none;
	color: #ffffff;
	font-size: 10pt;
	font-weight: normal;
	font-family: sans-serif;
	letter-spacing: 0.1em;
	padding: 10px;
	display:inline-block;
	width: 100%;
}

.nav-morph li a:hover{
	transition: 0.5s;
	color: #2233ff;
	background-color: #fff;
	font-weight: bold;
}


/*↑メニュー内*/

.entry{
	width: 90%;
	text-align: right;
	margin: 150px auto 0;
}

.entry a {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  background: #ff9e00;
  padding: 18px 60px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: .3s;
  text-decoration: none;
  letter-spacing: 0.18em;
}
.entry a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 3px solid #ff9e00;
  border-radius: 6px;
  box-sizing: border-box;
  z-index: -1;
  transform: scale(1.2);
  opacity: 0;
  transition: transform ease .3s, opacity .3s;
}
.entry a:hover {
  color: #ff9e00;
  background: transparent;
}
.entry a:hover::before {
  transform: scale(1);
  opacity: 1;
}

/*↑ハンバーガーメニュー*/


/*↓エントリーとFAQ*/

.entry_faq{
	width: 100%;
	padding: 0;
	background-color: #fff;
	position: fixed;
	top: 0px;
	z-index: 998;
}

.ef{
	width: 250px;
	height: 60px;
	display: flex;
	margin: 0 60px 0 auto;
	z-index: 999;
}

.entry_faq a{
	width: 100%;
	font-size: 8pt;
	text-align: center;
	vertical-align: middle;
	align-content: center;
	color: #fff;
	background-color: #ff9e00;
	text-decoration: none;
}

.entry_faq a:hover{
	color: #ff9e00;
	font-weight: bold;
	background-color: #ffdca3;
}

#faq{
	color: #fff;
	background-color: #4876e6;
}

#faq:hover{
	color: #4876e6;
	font-weight: bold;
	background-color: #b5cbff;
}

/*↑エントリーとFAQ*/

/*↓H1タイトル*/
.h1{
	color: #616161ff;
	width: 70%;
	text-align: left;
	margin: 100px auto 60px;
	font-family: "Yu Gothic UI", "Yu Gothic UI Semibold", "游ゴシック Light", "Yu Gothic UI Light";
}

.h1_small{
	padding-left: 15px;
	font-size: 10pt;
	line-height: 1em;
	letter-spacing: 0.15em;
}

.h1_big{
	font-size: 30pt;
	padding: 0px;
	letter-spacing: 0.07em;
	font-weight: bold;
}

.h1 p{
	font-size: 10pt;
	line-height: 1.8em;
	letter-spacing: 0.12em;
}

/*↑H1タイトル*/


/*↓募集要項・エントリーボタン*/

.bottun{
	width: 80%;
	margin: 50px auto;
	z-index: -1;
}

.bottun a {
	display:block;
	width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background: #ff9e00;
  padding: 12px 0px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  transition: .3s;
  text-decoration: none;
  letter-spacing: 0.18em;
	margin: 30px auto;
	text-align: center;
}
.bottun a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 3px solid #ff9e00;
  border-radius: 6px;
  box-sizing: border-box;
  z-index: -1;
  transform: scale(1.2);
  opacity: 0;
  transition: transform ease .3s, opacity .3s;
}
.bottun a:hover {
  color: #ff9e00;
  background: transparent;
}
.bottun a:hover::before {
  transform: scale(1);
  opacity: 1;
}

#bottun_R{
	border: 1px solid #0004ff;
	background-color: #fff;
	color: #0004ff;
}

#bottun_R::before {
  border: 3px solid  #0004ff;
}

#bottun_R:hover {
  color: #fff;
  background-color: #0004ff;
}

/*↑募集要項・エントリーボタン*/


/*↓コピーライト*/

.copyright{
	width: 100%;
	font-size: 8pt;
	text-align: center;
	color: #616161ff;
}

/*↑コピーライト*/