@charset "UTF-8";

html, body {
  overflow-x: hidden;
}

body{
	background-color: #FFFDF5;
	color:#001533;
}

.header {
  width: 100%;
  background: #fff;
  position: absolute;
  z-index: 9;
  height: 48px;
  border-radius: 0 0 16px 16px;
  -webkit-box-shadow: 0 3px 16px rgba(114, 0, 0, 0.08);
          box-shadow: 0 3px 16px rgba(114, 0, 0, 0.08);
}

.header_logo {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50px;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .header_logo {
    top: 15px;
    left: 15px;
  }
}

.global_nav {
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .global_nav {
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #020001;
    pointer-events: none;
    z-index: 9;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .global_nav.open {
    opacity: 1;
    pointer-events: auto;
  }
}

.global_nav_list {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.global_nav_list__link {
  color: #001533;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: block;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .global_nav_list.color_change .global_nav_list__link {
    color: #010101 !important;
    border-bottom: 1px solid #010101;
    -webkit-filter: drop-shadow(1px 1px 1px #fff);
            filter: drop-shadow(1px 1px 1px #fff);
  }
}
@media screen and (max-width: 991px) {
  .global_nav_list {
    gap: 15px;
  }
  .global_nav_list__link {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .global_nav_list {
    width: 100vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 230px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
  }
  .global_nav_list__link {
    font-size: 22px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .global_nav_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: auto;
    max-height: calc(100dvh - 150px);
    overflow: auto;
  }
}







<!--トップページ-->

path {
  stroke: #000;
  stroke-width: 1;
  fill: #011533;
  fill-opacity: 0; /* start hidden */
}

.first_view {
  height: 100vh;
  height: var(--fullvh);
  position: relative;
  height: 79vw;
}
.first_view svg {
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-4deg);
          transform: translate(-50%, -50%) rotate(-4deg);
  width: 58%;
  height: auto;
  z-index: 1;
}

.main_visual_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}

.img_catch-copy{
	margin: 120px auto;
	width:80%;
}

@media screen and (max-width: 768px) {
.img_catch-copy{
	margin: 64px auto;
	width:90%;
}
}

.section_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin:  0 0 3.39rem 4rem;
}
.section_ttl__ja {

  font-size: 2.5em;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.section_ttl--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section_ttl--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .section_ttl {
    flex-direction: column; /* もしくは .section_ttl--vertical をJSでつけてもOK */
    align-items: flex-start; /* 左寄せ or center にしたい場合は center に */
    gap: 0.5rem;
    margin: 0 1rem 2rem;
  }

  .section_ttl__ja {
    font-size: 1.8em;
  }

  .gr_dot {
    font-size: 0.8em;
  }
}


.gr_dot {
  position: relative;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-size: 1.5em;
}
.gr_dot::before {
  content: "";
  display: inline-block;
  width: 0.34em;
  height: 0.34em;
  background-color: #00AED8;
  border-radius: 50%;
  vertical-align: middle;
}
.gr_dot--white {
  color: #fff;
}
.gr_dot--white::before {
  background: #fff;
}
.gr_dot--orange {
  color: #F0863B;
}
.gr_dot--orange::before {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#F87753), to(#F9D423)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #F87753 0%, #F9D423 100%) 0% 0% no-repeat padding-box;
}
.gr_dot--purple {
  color: #FF2994;
}
.gr_dot--purple::before {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#FF3B8E), to(#FFC980)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #FF3B8E 0%, #FFC980 100%) 0% 0% no-repeat padding-box;
}
.gr_dot--green {
  color: #4CD981;
}
.gr_dot--green::before {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#FFDE5A), to(#0AD890)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #FFDE5A 0%, #0AD890 100%) 0% 0% no-repeat padding-box;
}

.staff_slide__track {
  overflow: visible;
}

.section_employee {
  margin-bottom: 120px;
}

.section_forte {
	margin-bottom: 120px;
}


.flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.17%;
margin: 0  160px 120px; 160px;
}

.flex_box--half > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 50%;
          flex: 1 50%;
}
.flex_box--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex_box__txt{
	font-size: 18px;
	font-weight: bold;
	margin:auto 0;
}

.flex_box__img img {
  height: auto;
  aspect-ratio: 460 / 400; /* 元画像の比率に合わせて */
  object-fit: cover; /* 必要に応じて contain に変更可 */
  display: block;
	
}

@media screen and (max-width: 768px) {
  .flex_box {
    flex-direction: column;
    margin: 0 1rem 3rem; /* SP用にマージン調整 */
    gap: 2rem; /* 上下の余白調整 */
  }

  .flex_box__img img {
    width: 80%; /* SP画面にフィットさせる */
    height: auto;
	  margin: 0 auto;
  }

  .flex_box__txt {
    font-size: 1rem; /* SPに合わせて文字サイズ調整 */
    text-align: left;
	width: 80%;
	margin: 0 auto;
  }
}

.img_recruit{
	width: 90%;
	margin: 120px atuo;
}

@media screen and (max-width: 768px) {
	.img_recruit{
	margin: 120px auto;
}
}

.section_company-qa{
	margin: 120px 0;
}

@media screen and (max-width: 768px) {
  .section_process .section_ttl {
    flex-direction: row !important;
    align-items: center;
    gap: 16px;
    margin: 0 1rem 2rem;
  }
	
	.section_process{
		margin-bottom: 120px;
	}
}

@media screen and (max-width: 768px) {
	.section_company-qa img{
	margin: 16px auto;
}
}


.h2_kasou {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #00112f;
  display: flex;
  align-items: center;
  gap: 16px;
	margin-top:120px;
	margin-left:160px;
	margin-bottom: 24px;
	line-height: 1.4; /* 高さを確保しておく */
	white-space: normal; /* 念のため br を効かせる */
}

.h2_kasou small {
  font-size: 24px;
  font-weight: bold;
  color: #00112f;
  letter-spacing: 0.05em;
}

/* 共通：ドット基本スタイル */
.h2_kasou::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 4px;
}

/* 緑ドット */
.h2_kasou.dot-green::before {
  background: linear-gradient(135deg, #f4d35e, #00c6a9); /* 黄緑 */
}

/* 青ドット */
.h2_kasou.dot-blue::before {
  background: linear-gradient(135deg, #1194D9, #00FECD); /* 水色〜青 */
}

.p_company{
	font-weight: 550;
	font-size: 14px;
	line-height: 40px;
}

.ul_company{
	font-weight: 550;
	font-size: 14px;
	line-height: 40px;
}

@media screen and (max-width: 768px) {
  .section_human .flex_box {
    flex-direction: column-reverse;
  }
	
.h2_kasou {
  font-size: 24px;
	margin-left:32px;
}
}


.section_code-of-conduct .h2_kasou {
  display: block;
  position: relative;
  padding-left: 24px; /* ドットの分だけ左に余白を作る */
    margin-left: 0;
	width:320px;
	 margin-top: 0;
	line-height: 32px;
}

.section_code-of-conduct .h2_kasou::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em; /* テキスト中央に揃える */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4d35e, #00c6a9);
}


@media screen and (max-width: 768px) {
.section_code-of-conduct .h2_kasou {
  margin-left: 32px;
	line-height: 32px;
}
}

.li_code-of-conduct{
	font-size: 20px;
	margin-bottom: 32px;
}

.li_code-of-conduct small{
	font-size: 14px;
	font-weight: 500;
}


.h3_recruit{
	font-size: 24px;
	margin-left:160px;
	margin-right:160px;
	margin-bottom: 48px;
}

.h4_recruit{
	font-size: 24px;
	margin-top: 16px;
}

@media screen and (max-width: 768px) {
.h3_recruit{
	font-size: 18px;
	margin-right:32px;
	margin-left:32px;
	margin-bottom: 48px;
	line-height:28px;
}
.h4_recruit{
	font-size: 24px;
	margin-top: 16px;
	text-align: center;
}
}



.salary {
  display: flex;
  background: #fffdf5;
  overflow: hidden;
  max-width: 960px;
  margin: 40px auto;
  font-family: 'Noto Sans JP', sans-serif;
}

.salary__label {
  background: #fffdf5;
  padding: 16px 24px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.salary__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.salary__icon img {
  display: block;
	margin-top: 4px;
}

.h3_salary {
  font-size: 20px;
  color: #001533;
  font-weight: bold;
  margin: 0;
}

.salary__date {
  font-size: 14px;
  color: #001533;
  margin: 0;
}


.salary__box {
border: 1.8px solid #001533;
border-radius: 16px;
  padding: 24px;
  flex: 1;
	background: #ffffff;
}

.salary__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #001533;
  margin-bottom: 24px;
}

.salary__table th,
.salary__table td {
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: top;
}

.salary__note p {
	  font-size: 14px;
	letter-spacing: 0.8px;
	line-height: 24px;
}

.salary__note ul {
  padding-left: 0;
  list-style: none;
	  font-size: 14px;
	margin-bottom: 24px;
	letter-spacing: 0.8px;
	line-height: 24px;
}

.salary__note li {

}

.salary__note small {
  font-size: 12px;
  color: #333;
}

.section-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 60px auto;
  max-width: 960px;
}

.salary li {
	margin-bottom: 24px;
	letter-spacing: 0.8px;
	line-height: 24px;
}

.salary_img {
margin-bottom: 24px;
}

.section_recruit .flex_box{
	  justify-content: center; /* ← これを追加 */
}




@media screen and (max-width: 768px) {
  .salary {
    display: block; /* ← flexを解除 */
	  
  }
	
	.salary__box{
		width:90%;
		margin: 0 auto;
	}
	
	  .salary__table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }

  .salary__table table {
    width: 600px; /* 必要に応じて適切な横幅を設定 */
  }
	
.section-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 60px auto;
	width:90%;
}
}



@media (max-width: 767px) {
  /* ヘッダをフレックス化してロゴとナビを横並びに */
  .header {
    position: sticky; /* そのままabsoluteでもOK。stickyの方が自然 */
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding: 12px 16px;
    z-index: 9;
  }

  /* ロゴの絶対配置を解除 */
  .header_logo {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
  }

  /* モバイルの「全画面メニュー」用スタイルを無効化して常時表示 */
  .global_nav {
    opacity: 1 !important;
    pointer-events: auto !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    transform: none !important;
  }
  .global_nav_inner {
    position: static !important;
    transform: none !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .global_nav_list {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    width: auto !important;
    max-width: none !important;
  }
  .global_nav_list__link {
    font-size: 14px !important;  /* ← デカ文字を戻す */
    color: #001533 !important;
    text-align: left !important;
  }

  /* ハンバーガーは非表示 */
  #js_menu_btn, .menu_btn { display: none !important; }
}



