@charset "UTF-8";
/* CSS Document */
/*ヘッダー＆フッター*/
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

html body.hidden {
  overflow: hidden;
  scroll-behavior: smooth;
}

li::marker {
  display: none;
}

li {
  list-style-type: none;
}


/* Header */

main  {
  padding: 100px 0 0 0;
}

.header {
  background: rgba(255, 255, 255, 0.16);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.header__container {
  max-width: 1440px;
  margin: 0 auto;
  /* padding: 0 136px 0 40px; */
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.rec-header .header__container {
  max-width: 1390px;
  width: 100%;
  padding: 0;
}

.header__logo {
  width: 272px;
  height: auto;
}

.header__nav {
  display: flex;
  list-style: none;
  gap: 24px;
  letter-spacing: 0.14em;
}

.header__nav.is-open { /* JSで付与されるクラス */
  left: 0; /* 画面内にスライドイン */
}

.header__nav-item {
  color: #000;
  text-decoration: none;
  /* font-size: 18px; */
  font-size: clamp(12px, 1.8vw + 0.5rem, 18px);
  transition: 0.3s;
  font-weight: 400;
}

body.is-menu-open {
    overflow: hidden;
  }

.header__nav-item:hover {
  color: #ff6b35;
}

.header-cta-nav {
  padding-right: 96px;
  display: none;
  align-items: center;
  gap: 20px;
}

.c-hamburger-menu {
  /* position: relative; */
  position: absolute;
  position: fixed;
  width: 50px;
  height: 30px;
  top: 35px;
  right: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
  display: none;
}

.c-hamburger-menu span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e16900;
  transition: all 0.3s ease;
}


.c-hamburger-menu.is-active span:nth-child(1) {
  /* top: 50%;
  transform: translateY(-50%) rotate(45deg); */
  opacity: 0;
}
.c-hamburger-menu.is-active span:nth-child(2) {
  opacity: 0;
}
.c-hamburger-menu.is-active span:nth-child(3) {
  /* bottom: 50%;
  transform: translateY(50%) rotate(-45deg); */
  opacity: 0;
}


.c-hamburger-menu.is-active {
  width: 40px;
  height: 36px;
  top: 35px;
  right: 40px;
  cursor: pointer;
  background-image: url(../images/recruit/hamburger_icon.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
}


/* #header に .scrolled クラスが付いたら、初期ナビを非表示にする */
#header.scrolled .header__nav {
  display: none;
}

/* #header に .scrolled クラスが付いたら、CTAナビを表示する */
#header.scrolled .header-cta-nav {
  display: flex;
}

.p-drawer-nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  /* max-width: 375px; */
  height: 100vh;
  background-color: #ffffff;
  padding: 0 20px;
  transition: left 0.4s ease-in-out, opacity 0.4s ease-in-out;
  z-index: 1001;
  overflow-y: auto;
  /* visibility: hidden; */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
  opacity: 0;
}

.p-drawer-nav.is-open {
  left: 0; /* 画面左端に移動し、全幅で表示 */
  /* visibility: visible; */
  opacity: 1;
}


.p-drawer-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px 22px;
  flex-shrink: 0;
}

.p-drawer-nav__header-logo img {
  width: 272px;
  height: auto;
  display: block;
}

.p-drawer-nav__close-btn {
  width: 20px;
  height: 16px;
  cursor: pointer;
  background-image: url(../images/recruit/hamburger_icon.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
}

.p-drawer-nav__list {
  max-width: 700px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 100%;
}

.p-drawer-nav__item {
  border-bottom: 1px solid #000;
}

.p-drawer-nav__item .p-drawer-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px 24px 20px;
  color: #000;
  font-size: 20px;
  text-decoration: none;
  font-weight: 400;
  transition: 0.3s ease;
}

.p-drawer-nav__item .p-drawer-nav__link:hover {
  color: #054576;
}

.p-drawer-nav__item.has-submenu .p-drawer-nav__link::after {
  content: '';
  display: block;
  width: 16px;
  height: 10px;
  background-image: url(../images/common/hamburger_vector_navy.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.p-drawer-nav__item.is-open .p-drawer-nav__link::after {
  transform: rotate(180deg);
}

.p-drawer-nav__sublist {
  list-style: none;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.p-drawer-nav__item.is-open .p-drawer-nav__sublist {
  max-height: 500px;
  padding: 0 0 10px 0;
  margin-top: -11px;
}

.p-drawer-nav__subitem:last-child {
  padding-bottom: 17px;
}

.p-drawer-nav__subitem a {
  position: relative;
  padding: 10px 0 10px 170px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.p-drawer-nav__subitem a::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 1px;
  top: 50%;
  left: 140px;
  transform: translateY(-50%) translateX(-50%);
  background: #000;
}

.p-drawer-nav__subitem a:hover {
  color: #333333;
}

.p-drawer-nav__cta {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  flex-shrink: 0;
}

.p-drawer-nav__cta a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  width: 280px;
  height: 60px;
  margin: 0 auto;
  padding: 15px 20px;
  background: #334a6d;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease;
  border: none;
}

.p-drawer-nav__cta a:hover {
  background-color: #2a3c5a;
}

/* お問い合わせボタンの右矢印アイコン */
.p-drawer-nav__cta a::after {
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  right: 28px;
  background-image: url(../images/common/contact_navy.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

/* Footer */
.footer {
  background: #fff;
  color: #000;
  padding: 68px 0;
}

.footer__container {
  max-width: 1317px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
}

.footer__menu {
  display: flex;
  justify-content: right;
  max-width: 870px;
  width: 100%;
  gap: 48px;
}

.footer__logo {
  width: 272px;
  height: auto;
  margin: 0 auto 20px;
}

.footer__main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer__section h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #000;
  font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1;
}


.footer__section--top {
  display: none;
}

.footer__section ul {
  list-style: none;
}

.footer__section li {
  margin-bottom: 6px;
}

.footer__section a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.14em;
  font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
  transition: color 0.3s;
}

.footer__section a:hover,
.footer__work__ttl:hover {
  color: #FF7F27 !important;
}

.footer__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 116px;
  padding: 0 0 56px;
}

.footer__copy ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  line-height: 1;
}

.footer__copy ul li {
  list-style: none;
  font-size: 15px;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.footer__copy ul li:first-child {
  position: relative;
}

.footer__copy ul li:first-child::before {
  position: absolute;
  content: "";
  background:  #000;
  width: 1px;
  height: 30px;
  top: -8px;
  right: -22.5px;
}

.footer__copy ul li a {
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
  color: #000;
  transition: .3s;
}

.footer__copy ul li a:hover {
  color: #ff6b35;
  transition: .3s;
}

.footer__info-text {
  color: #000;
}

.footer__info-text span {
  display: block;
  font-size: 15px;
  font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
}

.c-more__button {
	background: #fff;
	color: #054576;
	padding: 4px 30px 4px;
	border-radius: 50px;
	display: inline-block;
	font-size: 14px;
	font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
	font-weight: 300;
	letter-spacing: 0.08em;
	border: 1px solid #fff;
	transition: background 0.3s;
}

.c-more__button:hover {
	background: #054576;
	color: #fff;
	border: 1px solid #fff;
}

.c-more__button--navy {
  background: #054576;
  color: #fff;
  border: 1px solid #054576;
}

.c-more__button--navy:hover {
  background: #fff;
  color: #054576;
  border: 1px solid #054576;
}

.c-entry_btn {
  width: 290px;
  height: 48px;
  line-height: 46px;
  background: #E16900;
	color: #fff;
  padding: 0px 30px 6px;
	border-radius: 50px;
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.2em;
	border: 1px solid #E16900;
  text-align: center;
	transition: background 0.3s;
}

.c-entry_btn:hover {
  background: #fff;
	color: #E16900;
	border: 1px solid #E16900;
}

.c-ttl-eng {
	color: #E16900;
	font-size: 24px;
	font-weight: 300;
	letter-spacing: 0.14em;
  font-family: 'Dhurjati', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.c-ttl {
	color: #1e3a5f;
	font-size: 36px;
	font-weight: bold;
	letter-spacing: 0.14em;
}

.c-sub-ttl {
	color: #fff;
	font-size: 24px;
	letter-spacing: 0.14em;
	font-weight: bold;
	font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
  text-align: left;
}

.c-more__button--news {
  display: block;
  max-width: 200px;
  width: 100%;
  height: 48px;
  margin: 0 auto;
  line-height: 46px;
  background: #054576;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
  border: 1px solid #054576;
  transition: 0.3s ease;
}

.c-more__button--news:hover {
  border: 1px solid #054576;
  color: #054576;
  background: #fff;
  transition: 0.3s ease;
}

.sp-display {
  display: none;
}

/* パンくずリスト */
.c-breadcrumb {
  background-color: #2a3c5a;
  padding: 15px 20px;
  color: #fff;
}

.c-breadcrumb__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 16px;
  white-space: nowrap;
}

.c-breadcrumb__link {
  color: #fff;
  text-decoration: none;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.c-breadcrumb__link:hover {
  text-decoration: underline;
}

.c-breadcrumb__sepa {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.7);
}

.c-breadcrumb__current-page {
  font-weight: bold;
  color: #fff;
}

/* サイドバー */
.sidebar {
  position: fixed;
	width: 320px;
	flex-shrink: 0;
  border-radius: 16px;
  background: #F5F5F5;
}

.sidebar__inner {
  padding: 32px;
}

.sidebar__menu {
	overflow: hidden;
}

.sidebar__item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 52px;
  height: 38px;
  margin-bottom: 18px;
  background-color: #fff;
  color: #054576;
  font-weight: 400;
  font-size: 18px;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
	line-height: 1;
}

.sidebar__item::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  top: 50%;
  left: 12%;
  background-size: 100% 100%;
  transform: translateY(-50%) translateX(-50%);
}

.sidebar__item--active{
  background: #054576;
  color: #fff;
}

.sidebar__item:nth-child(1):before {
  background-image: url(../images/page/sidebar__icon01.png);
}

.sidebar__item:nth-child(2):before {
  background-image: url(../images/page/sidebar__icon02.png);
}

.sidebar__item:nth-child(3):before {
  background-image: url(../images/page/sidebar__icon03.png);
}

.sidebar__item:nth-child(4):before {
  background-image: url(../images/page/sidebar__icon04.png);
}

.sidebar__item--active:nth-child(1):before {
  background-image: url(../images/page/sidebar__icon01__wh.png);
}


.sidebar__item--active:nth-child(2):before {
  background-image: url(../images/page/sidebar__icon02__wh.png);
}


.sidebar__item--active:nth-child(3):before {
  background-image: url(../images/page/sidebar__icon03_wh.png);
}


.sidebar__item--active:nth-child(4):before {
  background-image: url(../images/page/sidebar__icon04_wh.png);
}


.sidebar__item:last-child {
  margin-bottom: 0;
}

.sidebar.is-fixed {
  position: fixed;
  top: 100px;
  left: 40px;
  width: 320px;
  z-index: 100;
}

.side-contents {
  width: 376px;
  flex-shrink: 0;
}

.c-page {
  margin-bottom: 53px;
}

.c-page__eng {
	display: block;
	font-size: 32px;
	font-family: 'Dhurjati', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #E16900;
	letter-spacing: 0.14em;
	margin-bottom: 24px;
	line-height: 1;
}

.c-page__ttl {
	display: block;
	margin-bottom: 24px;
	color: #054576;
	font-size: 36px;
	letter-spacing: 0.14em;
	font-weight: bold;
	line-height: 1;
}

.c-page__subTtl {
	color: #054576;
	font-size: 24px;
	letter-spacing: 0.14em;
	font-weight: bold;
	font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
	line-height: 1.6;
}

.footer__info-link {
  color: #000;
}

.footer__section a.footer__work__ttl,
.footer__section a.footer__work__ttl {
  font-size: 22px;
  margin-bottom: 20px;
  color: #000;
  font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
}

.job-breadcrumb {
  position: absolute;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 93px;
  width: 543px;
  height: 37px;
  top: 155px;
  background: #FF8426;
}

.job-breadcrumb li a {
  position: relative;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.job-breadcrumb li:first-child a::before {
  position: absolute;
  content: "";
  width: 42px;
  height: 1px;
  right: -70px;
  top: 10px;
  background: #fff;
}

.job-breadcrumb li:last-child a::before {
  position: absolute;
  content: "";
  width: 42px;
  height: 1px;
  left: -70px;
  top: 10px;
  background: #fff;

}


@media (max-width: 1200px) {
  .header__nav-item {
    font-size: clamp(12px, 2.5vw, 14px);
  }
}

@media (max-width: 1024px) {

  .header__container {
    height: 60px;
  }

  .header__logo {
    width: 160px;
    height: auto;
  }

  .header__nav {
    gap: 15px;
    letter-spacing: inherit;
  }

  .header__nav-item {
    font-size: clamp(12px, 2.5vw, 13px);
  }

}

@media (min-width: 1001px) and (max-width: 1200px) {
  .footer__menu {
    gap: 20px;
  }

  .footer__logo {
    margin-right: 30px;
  }
}


@media (max-width: 1000px) {

  main  {
    padding: 60px 0 0 0;
  }

  .footer__logo.pc-display {
    display: none;
  }

	.footer__main {
		grid-template-columns: repeat(2, 1fr);
	}

  .footer__container {
    max-width: 350px;
    width: 85%;
    padding: 0;
    justify-content: center;
    align-items: flex-start;
  }

  .footer__menu {
    max-width: inherit;
    width: inherit;
    flex-direction: column;
    align-items: baseline;
    gap: 6px;
    margin-top: 0;
    padding: 20px 0 15px;
    border-right: 1px solid #D9D9D9;
  }

  .footer__section h3 {
    position: relative;
    cursor: pointer;
    padding-right: 16px;
    margin-bottom: 10px;
    font-size: clamp(15px, 4vw, 18px);
    line-height: normal;
    font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
  }

  .footer__section a.footer__work__ttl,
  .footer__section a.footer__work__ttl {
    padding-right: 16px;
    margin-bottom: 10px;
    font-size: clamp(15px, 4vw, 18px);
    line-height: normal;
    font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
  }

  .footer__section--top {
    display: block;
  }

  .accordion-item.is-active {
    height: 140px;
    margin-bottom: clamp(10px, 2.5vw, 20px);
  }

  .footer__section h3.footer__work {
    padding-bottom: 6px;
  }



  .accordion-item h3::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 9px;
    right: 14px;
    top: 55%;
    transform: translateY(-50%);
    background-image: url(../images/common/footer_vector.png);
    background-size: 100%;
    background-repeat: no-repeat;
  }

  /* 開いている状態のアイコン */
  .accordion-item.is-open h3::after {
    content: "";
    width: 10px;
    height: 9px;
    background-image: url(../images/common/footer_vector02.png);
    background-size: 100%;
    background-repeat: no-repeat;
  }

  /* アコーディオンコンテンツのデフォルト状態（非表示） */
  .accordion-content {
    display: none;
    overflow: hidden;
  }

  .footer__section li {
    position: relative;
    margin-left: 34px;
    margin-bottom: 2px;
  }

  .footer__section li::before {
    position: absolute;
    content: "";
    width: 16px;
    height: 1px;
    top: 14px;
    left: -30px;
    background: #000;
  }

  .footer__section li a {
    font-size: 12px;
  }


  .footer__copy.sp-display {
    width: 50%;
    padding: 0;
    flex-shrink: 0;
    display: block;
  }

  .footer__copy.pc-display {
    display: none;
  }

  .footer__copy ul {
    padding: 20px 0 15px 20px;
    gap: 20px;
    flex-direction: column;
    align-items: baseline;
  }

  .footer__copy ul li {
    font-size: 15px;
  }

  .footer__copy ul li:first-child::before {
    display: none;
    /* height: 20px;
    top: -4px;
    right: -16.5px; */
  }

  .footer__copy ul li a {
    font-size: 15px;
    white-space: nowrap;
  }

  .footer {
    padding: 40px 0;
  }

  .footer__info {
    display: block;
    width: 67.63%;
    margin: 0 auto;
    padding-bottom: 20px;
    text-align: center;
  }

  .footer__info ul {

  }

  .footer__info ul li {
    list-style: none;
  }

  .footer__info ul li p {
    color: #000;
  }

  .footer__info-item--name {
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 1;
  }

  .footer__info-text {
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.07em;
    line-height: 1;
    text-align: center;
  }

  .footer__info-text span {
    display: inline;
    padding-right: 5px;
    font-size: 12px;
    letter-spacing: 0.06em;
    font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
    font-weight: 400;
    line-height: 1;
  }

  .footer__info-item--tel {
    margin-bottom: 32px;
    line-height: 1;
    color: #000;
    font-size: 12px;
  }

  .footer__info-link {
    color: #000;
  }

  .footer__info-item--copyright {
    font-size: 11px;
    font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
    letter-spacing: 0.14em;
  }

  .footer__section li a {
    font-size: clamp(12px, 3vw, 14px);
  }

  .footer__copy ul li a {
    font-size: clamp(15px, 4vw, 18px);
  }

}



@media (max-width: 768px) {

  .sp-display {
    display: block;
  }

  .pc-display {
    display: none;
  }

	.header__nav {
		display: none;
	}

  .c-ttl {
    font-size: 24px;
  }

  .c-ttl-eng {
    font-size: 16px;
  }

  .c-sub-ttl {
    font-size: 16px;
    text-align: left;
  }

  .c-sub-ttl.c-sub-ttl--service {
    text-align: center;
  }

  .c-more__button {
    height: 40px;
    font-size: 14px;
    line-height: inherit;
    padding: 10px 30px 9px;
    font-size: 14px;
  }

  .c-entry_btn {
    height: 40px;
    line-height: inherit;
    font-size: 14px;
    padding: 10px 30px 9px;
  }

  .c-hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 35px;
    height: 20px;
    top: 20px;
    right: 20px;
  }


  .c-hamburger-menu span {
    display: block;
    height: 1px;
    background-color: #e16900;
    transition: all 0.3s ease;
  }

  .c-hamburger-menu.is-active {
    width: 20px;
    height: 16px;
    top: 16px;
    cursor: pointer;
    background-image: url(../images/recruit/hamburger_icon.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
  }

  .c-hamburger-menu.is-active span:nth-child(1) {
    opacity: 0;
  }
  .c-hamburger-menu.is-active span:nth-child(2) {
    opacity: 0;
  }
  .c-hamburger-menu.is-active span:nth-child(3) {
    opacity: 0;
  }


  .c-hamburger-menu.is-active {
    width: 20px;
    height: 16px;
    top: 16px;
    cursor: pointer;
    background-image: url(../images/recruit/hamburger_icon.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
  }

  /* #header に .scrolled クラスが付いたら、初期ナビを非表示にする */
  #header.scrolled .header__nav {
    display: none;
  }

  /* #header に .scrolled クラスが付いたら、CTAナビを表示する */
  #header.scrolled .header-cta-nav {
    display: flex;
  }

  .p-drawer-nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    /* max-width: 375px; */
    height: 100vh;
    background-color: #ffffff;
    padding: 0 20px;
    transition: left 0.4s ease-in-out, opacity 0.4s ease-in-out;
    z-index: 99;
    overflow-y: auto;
    /* visibility: hidden; */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch;
    opacity: 0;
  }

  .p-drawer-nav.is-open {
    left: 0; /* 画面左端に移動し、全幅で表示 */
    /* visibility: visible; */
    opacity: 1;
  }


  .p-drawer-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 11px;
    flex-shrink: 0;
  }

  .p-drawer-nav__header-logo img {
    width: 94px;
    height: 25px;
    display: block;
  }

  .p-drawer-nav__close-btn {
    width: 20px;
    height: 16px;
    cursor: pointer;
    background-image: url(../images/recruit/hamburger_icon.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
  }

  .p-drawer-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .p-drawer-nav__item {
    border-bottom: 1px solid #000;
  }

  .p-drawer-nav__item .p-drawer-nav__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px 24px 20px;
    color: #000;
    font-size: 15px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s ease;
  }

  .p-drawer-nav__item .p-drawer-nav__link:hover {
    color: #054576;
  }

  .p-drawer-nav__item.has-submenu .p-drawer-nav__link::after {
    content: '';
    display: block;
    width: 16px;
    height: 10px;
    background-image: url(../images/common/hamburger_vector_navy.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    margin-left: 10px;
  }

  .p-drawer-nav__item.is-open .p-drawer-nav__link::after {
    transform: rotate(180deg);
  }

  .p-drawer-nav__sublist {
    list-style: none;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  }

  .p-drawer-nav__item.is-open .p-drawer-nav__sublist {
    max-height: 500px;
    padding: 0 0 10px 0;
    margin-top: -11px;
  }

  .p-drawer-nav__subitem:last-child {
    padding-bottom: 17px;
  }

  .p-drawer-nav__subitem a {
    position: relative;
    padding: 7px 0 7px 115px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
  }

  .p-drawer-nav__subitem a::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 1px;
    top: 50%;
    left: 95px;
    transform: translateY(-50%) translateX(-50%);
    background: #000;
  }

  .p-drawer-nav__subitem a:hover {
    color: #333333;
  }

  .p-drawer-nav__cta {
    padding-bottom: 20px;
    text-align: center;
    flex-shrink: 0;
  }

  .p-drawer-nav__cta a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    width: 268px;
    height: 50px;
    margin: 0 auto;
    padding: 15px 20px;
    background: #054576;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 50px;
    box-sizing: border-box;
    border: none;
    transition: 0.3s ease;
  }

  .p-drawer-nav__cta a:hover {
    background: #2a3c5a;
  }

  /* お問い合わせボタンの右矢印アイコン */
  .p-drawer-nav__cta a::after {
    position: absolute;
    content: '';
    width: 14px;
    height: 14px;
    right: 28px;
    background-image: url(../images/common/contact_navy.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }


  .c-breadcrumb__item {
    font-size: 12px;
  }

  .c-breadcrumb {
    padding: 10px 14px;
  }

  .sidebar {
    display: none;
  }

  .sidebar,
  .sidebar.is-fixed {
    position: inherit;
  }

  .sidebar {
    width: 310px;
    margin: 0 auto;
  }

  .main {
    flex-direction: column;
    /* display: block; */
  }

  .side-contents {
    display: flex;
    flex-direction: column-reverse;
  }

  .container {
    padding: 20px 18px;
  }

  .sidebar__inner {
    padding: 30px;
  }

  .side-contents {
    width: inherit;
  }

  .sidebar__item {
    padding-left: 40px;
    height: 34px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .sidebar__item::before {
    width: 18px;
    height: 18px;
    top: 50%;
    left: 8%;
  }

  .c-page__eng {
    font-size: 12px;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
  }

  .c-page__ttl {
    margin-bottom: 8px;
    font-size: 18px;
    letter-spacing: 0.1em;
  }

  .c-page__subTtl {
    font-size: 12px;
  }

  .c-page {
    /* margin-top: 40px; */
    margin-bottom: 20px;
    padding-left: 12px;
  }

  .main__content {
		padding-top: 52px;
  }

  /* 仕事を知る */
  .job-breadcrumb {
    gap: 40px;
    width: 280px;
    height: 30px;
    top: 58px;
  }

  .job-breadcrumb li a {
    font-size: 10px;
  }

  .job-breadcrumb li:first-child a::before {
    width: 22px;
    height: 1px;
    right: -32px;
    top: 7px;
  }

  .job-breadcrumb li:last-child a::before {
    width: 22px;
    height: 1px;
    left: -32px;
    top: 7px;
  }


}

