@charset "UTF-8";
@media screen and (max-width: 900px) {
    .pc{ display: none !important; }
    .sp{ display: block !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 11vw;
}
  [id] {
    scroll-margin-top: 11vw;
  }


	html,
	body,
	main{
		width: 100%;
		max-width: 100%;
		overflow-x: clip;
	}

	body{
		position: relative;
	}

	*{
		box-sizing: border-box;
	}

	img,
	svg,
	video,
	iframe{
		max-width: 100%;
		height: auto;
	}

/* 共通パーツ */
main{
    width: 100vw;
    margin: 0 auto;
}

main{
  transform: scale(1);
  transform-origin: top center;
}


.title {
  position: relative;
  font-weight: 600;
  font-size: 4.8vw;
  line-height: 2;
  letter-spacing: 0.15em;
  padding-left: 6.5vw;
}

.title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.8vw;
  height: 3.8vw;
  background: url("../images/common/title_parts.svg") no-repeat center / contain;
}

p{
    font-weight: 400;
    font-size: 3.2vw;
    line-height: 2;
    letter-spacing: 0.05em;
    text-align: justify;
    text-justify: inter-ideograph;
    text-align-last: auto;
}


.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80vw;
    height: 15vw;
    padding: 0 4.5vw;
    color: #FFF;
    background-color: #C7312D;
    font-size: 4vw;
    border-radius: 8vw;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25);
    text-decoration: none;
    margin: 0 auto;
}

.btn::after {
  content: "";
  width: 5.5vw;
  height: 4.5vw;
  background: url("../images/common/btn_parts.svg") no-repeat center / contain;
}

.btn_beside{
    display: flex;
    width: 80vw;
    margin: 0 auto;
    justify-content: center;
}

.btn_beside .btn{
  width: 38vw;
}


/* 空き */
.mg_40{
  margin-bottom: 4.444vw;
}
.mg_50{
  margin-bottom: 5.556vw;
}
.mg_70{
  margin-bottom: 7.778vw;
}
.mg_80{
  margin-bottom: 8.889vw;
}
.mg_100{
  margin-bottom: 11.111vw;
}
.mg_125{
  margin-bottom: 13.889vw;
}
.mg_180{
  margin-bottom: 20vw;
}

/* header */

.header {
  background: #fff;
  position: relative;
  z-index: 1001;
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10.556vw;
}

.header_logo {
  display: block;
  width: 55.556vw;
  margin-left: 2.778vw;
}

.header_logo img {
  display: block;
  width: 100%;
  height: auto;
}

.menu_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.778vw;
  width: 10.556vw;
  height: 10.556vw;
  padding: 0 3.222vw;
  background: #000;
  border: none;
  cursor: pointer;
  appearance: none;
}

@media screen and (min-width:1240px) and (min-height:600px){
  .menu_btn{
    display: none;
  }
}




.menu_btn span {
  display: block;
  width: 100%;
  height: 0.222vw;
  background: #fff;
}

.menu_btn span:nth-child(3) {
  width: 60%;
}


/* menu */

.hamburger_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
  z-index: 9999;
  overflow-y: auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger_menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hamburger_panel {
  position: relative;
  width: calc(100% - 13.333vw);
  max-width: 80vw;
  margin: 0;
  padding: 10vw 6.111vw 8.889vw;
  background: rgba(255, 255, 255, 0.96);
  border-top: solid 5px #c91f1f;
  border-bottom: solid 5px #18479E;
}

.hamburger_panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 48px solid #c91f1f;
  border-right: 48px solid transparent;
}
.hamburger_panel::after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 48px solid #18479E;
  border-left: 48px solid transparent;
}

.hamburger_close {
  position: absolute;
  top: 3.333vw;
  right: 3.333vw;
  width: 3.556vw;
  height: 3.556vw;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger_close::before,
.hamburger_close::after {
  content: "";
  position: absolute;
  top: 1.667vw;
  left: 0;
  width: 3.556vw;
  height: 0.222vw;
  background: #000;
}

.hamburger_close::before {
  transform: rotate(45deg);
}

.hamburger_close::after {
  transform: rotate(-45deg);
}

.hamburger_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hamburger_list > li {
  border-bottom: 1px solid #777;
}

.hamburger_list > li > a,
.child_toggle_ {
  display: block;
  position: relative;
  width: 100%;
  padding: 4vw 5vw 2vw 0;
  color: #000;
  font-size: 3.8vw;
  font-weight: 500!important;
  text-decoration: none;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

.child_toggle_ {
  display: block;
  position: relative;
  width: 100%;
  padding: 4vw 5vw 1vw 0;
  color: #000;
  font-size: 3.8vw;
  font-weight: 500!important;
  text-decoration: none;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

.hamburger_list > li > a::after,
.child_toggle_::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #d32525;
  font-size: 3.4vw;
  font-weight: 400;
}

.hamburger_has_child .child_toggle_::after {
  content: "";
  font-size: 2.8vw;
}

.child_list {
  margin-bottom: 5vw;
}

.hamburger_has_child.active .child_list {
  max-height: 33.333vw;
  padding: 0.556vw 0 2.444vw 0;
  opacity: 1;
}

.child_list li + li {
  margin-top: 1vw;
}

.child_list a {
  display: block;
  color: #000;
  font-size: 3.2vw;
  text-decoration: none;
  line-height: 1.6;
}

.child_list a::before {
  content: "・";
}

body.menu_open {
  overflow: hidden;
}
.hamburger_menu.active{
  overflow: hidden;
}


/* footer */
.footer {
  position: relative;
  width: 100vw;
  background: #e9e9e9;
  overflow: hidden;
  z-index: 10;
}

.footer_inner {
  position: relative;
  padding: 7.444vw 0 27.778vw;
}

.footer_deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 41.667vw;
}

.footer_deco img {
  display: block;
  width: 100%;
  height: auto;
}

.footer_copy {
  margin: 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 7vw;
  line-height: 1.28;
  padding: 0 5vw 0;
  letter-spacing: 0.06em;
}

.footer_nav {
  margin-top: 5.556vw;
}

.footer_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer_nav li + li {
  margin-top: 3.5vw;
}

.footer_nav a {
  color: #000;
  font-weight: 500;
  font-size: 3.2vw;
  line-height: 1.4;
  letter-spacing: 0.04em;
  padding: 0 10vw 0;
  text-decoration: none;
}

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8vw;
  padding: 0 10vw 0;
}

.footer_logo {
  display: block;
  width: 38vw;
}

.footer_logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer_btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 32vw;
  height: 9vw;
  padding: 0 10vw 0 3.5vw;
  border-radius: 111vw;
  background: #000;
  color: #fff;
  font-size: 3.2vw;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-sizing: border-box;
}

.footer_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3vw;
  width: 3.5vw;
  height: 3.5vw;
  background: url("../images/common/btn_parts.svg") no-repeat center / contain;
  transform: translateY(-50%);
}

.footer_info {
  margin-top: 8vw;
padding: 0 10vw 0;
}

.footer_info p {
  margin: 0;
  color: #9a9a9a;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.footer_info p:nth-child(1) {
  font-size: 3vw;
  font-weight: 400;
}
.footer_info p:nth-child(2) {
  font-size: 2.8vw;
  font-weight: 300;
}
.footer_info p:nth-child(3) {
  font-size: 2.6vw;
  font-weight: 300;
}


.inner{
    width: 80vw;
    margin: 0 auto;
}






/* =========================
   固定レイヤー（左右）
========================= */
.layout_fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1;
	pointer-events: none;
}
#pc_menu{
  display: none;
}


/* =========================
   左メニュー
========================= */
.recruit_menu {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #f3f3f3;
	padding: 4.444vw 4.444vw 13.333vw;
	box-sizing: border-box;
	pointer-events: auto;
	overflow: hidden;
}

@media screen and (min-width:750px) and ( max-width:1600px){
  .recruit_menu{
      padding: 2vw 2vw 5vw;
  }
}

.recruit_menu_inner{
  position: relative;
  z-index: 1;
}

@media screen and (min-width:750px) and ( max-width:1240px){
  .recruit_menu_inner{
    display: none;
  }
}




.recruit_logo {
	width: 40vw;
	margin-bottom: 7.778vw;
}
@media screen and (min-width:750px) and ( max-width:1600px){
  .recruit_logo {
    width: 15vw;
    margin-bottom: 3vw;
  }
}


.menu_block{
  margin-left: 8.889vw;
}

@media screen and (min-width:750px) and ( max-width:1430px){
  .menu_block{
    margin-left: 1vw;
  }
}

@media screen and (max-height:880px){
  .menu_block{
    display: none;
  }
}



.menu_head {
	display: flex;
	align-items: center;
	gap: 1.111vw;
	margin-bottom: 3.333vw;
}

.menu_head_icon {
	width: 1.778vw;
	height: 1.778vw;
	background: linear-gradient(135deg, #1e50b5 50%, #d9362b 50%);
}

.menu_head_text {
	font-size: 2vw;
	font-weight: 500;
	color: #d9362b;
	letter-spacing: 0.1em;
}

.menu_head_line {
	width: 11.111vw;
	height: 0.111vw;
	background: #d9362b;
}

.recruit_nav{
  margin-bottom: 6.667vw;
}
.recruit_nav li {
  margin-left: 2.222vw;
	margin-bottom: 2.222vw;
}

.recruit_nav > ul > li > a {
	font-size: 2.222vw;
	font-weight: 500;
}

.child_list {
	margin-top: 1.111vw;
}

.child_list li {
	margin-bottom: 0.222vw;
}

.child_list a {
	font-size: 2.8vw;
	color: #000;
	padding-left: 1.667vw;
	position: relative;
}

.child_list a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 0.889vw;
	height: 0.111vw;
	background: #000;
	transform: translateY(-50%);
}

.hamburger_menu .child_list a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 1vw;
	height: 0.2vw;
	background: #000;
	transform: translateY(-50%);
}

/* ENTRY */
.entry_block{
  margin-left: 8.889vw;
}
@media screen and (min-width:750px) and ( max-width:1430px){
  .entry_block{
    margin-left: 1vw;
  }
}

@media screen and (max-height:880px){
  .entry_block{
    display: none;
  }
}


.entry_btns {
	margin-top: 2.222vw;
	display: flex;
	flex-direction: column;
	gap: 1.667vw;
}

.entry_btn {
  width: 20vw;
  height: 5vw;
  border-radius: 111vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.222vw;
  font-size: 1.667vw;
  font-weight: 400;
  color: #fff;
  margin-left: 2.222vw;
}

.entry_btn_red {
	background: #d9362b;
}

.entry_btn_black {
	background: #000;
}

.entry_btn::after {
	content: "";
	width: 2vw;
	height: 2vw;
	background: url("../images/common/btn_parts.svg") no-repeat center / contain;
}

/* 左下装飾 */
.menu_parts {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42.222vw;
}

/* =========================
   右装飾
========================= */
.recruit_side {
	position: absolute;
	top: 0;
	right: 0;
	width: 35.556vw;
	height: 100vh;
	pointer-events: none;
}

.side_parts01 {
	position: absolute;
	top: 0;
	right: 0;
	width: 55.556vw;
    z-index: 0;
}

.side_parts02 {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 42.222vw;
  z-index: 0;
}

.side_parts03 {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 47.778vw;
  z-index: 0;
}

/* =========================
   main調整（中央だけスクロール）
========================= */
main {
	position: relative;
	z-index: 9999;
	height: 100vh;
	overflow-y: auto;
	box-sizing: border-box;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.3);
  background-color: #FFF;
}

/* 中央 */
.recruit_wrap {
	min-height: 100vh;
}

.recruit_visual {
	padding: 4.444vw 0;
}

.visual_inner {
	max-width: 57.778vw;
	margin: 0 auto;
}

.visual_card {
	background: #fff;
	border-radius: 2.8vw;
	padding: 3.333vw;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	margin-bottom: 2.222vw;
}

.visual_title {
	font-size: 3.333vw;
	margin-bottom: 1.111vw;
}

.visual_text {
	font-size: 1.778vw;
	line-height: 1.8;
	color: #444;
}




}