@charset "utf-8";
/*--------------------
	ＴＯＰページ（スマートフォン／タブレット用）
--------------------*/

/* ========================================
   基本設定
======================================== */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-size: 14px;
}

#WRAPPER {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* ========================================
   フォントサイズとブレークポイント
======================================== */
.f_18px {
  font-size: 16px;
}

.f_30px {
  font-size: 24px;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

.f_32px {
  font-size: 24px;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

.f_40px {
  font-size: 32px;
  line-height: 1.6em;
  letter-spacing: 0em;
}

.f_48px {
  font-size: 32px;
  line-height: 1.6em;
  letter-spacing: 0em;
}

.f_56px {
  font-size: 40px;
  line-height: 1.45em;
  letter-spacing: 0.2em;
}

.pc_br {
  display: none;
}

.sp_br {
  display: block;
}

/* ========================================
   ヘッダー（SP用ハンバーガーメニュー）
======================================== */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.logo-area {
  z-index: 5;
  position: relative;
}

.logo-area img {
  height: 38px;
  width: auto;
}

.sp-header-btn-wrapper {
  display: flex;
  margin: 0 0 0 auto;
  z-index: 5;
  position: relative;
}

.header-inner a.sp-header-btn-recruit,
.header-inner a.sp-header-btn-tel {
  display: flex;
  flex-direction: column;
  padding: 6px;
  height: 42px;
  width: 42px;
}

.header-inner a.sp-header-btn-recruit span,
.header-inner a.sp-header-btn-tel span {
  font-size: 10px;
  color: #fff;
  text-align: center;
  margin-bottom: 1px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.sp-header-btn-icon img {
  width: 24px;
  height: 24px;
}

.sp-header-btn-label {
  line-height: 1;
}

.sp-header-btn-recruit {
  background-color: #E4411D;
}

.sp-header-btn-tel {
  background: linear-gradient(90deg, #005DA9 0%, #458CC7 100%);
}

@media only screen and (min-width: 1000px) {

  .header-inner a.sp-header-btn-recruit,
  .header-inner a.sp-header-btn-tel {
    width: 60px;
    height: 60px;
  }

  .sp-header-btn-icon img {
    width: 32px;
    height: 32px;
  }

  .header-inner a.sp-header-btn-recruit span,
  .header-inner a.sp-header-btn-tel span {
    font-size: 14px;
  }
}

/* ハンバーガーボタン */
.hamburger-menu {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  border: none;
  background: #ffffff;
  padding: 9px 13px 6px;
  border-radius: 0 0 7px 7px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  margin-bottom: -9px;
  position: relative;
  z-index: 999;
}

.hamburger-menu.active {
  padding: 2px 13px 9px;
}

.hamburger-lines {
  display: block;
  position: relative;
  width: 38px;
  height: 20px;
}

.hamburger-menu.active .hamburger-lines {
  width: 34px;
  height: 30px;
}

.hamburger-lines .line {
  display: none;
}

.hamburger-lines::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/icon/menu.svg") no-repeat center / contain;
}

.hamburger-menu.active .hamburger-lines::before {
  background-image: url("../images/icon/close.svg");
  width: 34px;
  height: 39px;
}

.hamburger-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0em;
  color: #0D2A5C;
  font-family: "Raleway", sans-serif;
}

.gnav {
  margin-left: 0;
}

@media only screen and (min-width: 1000px) {

  .hamburger-menu,
  .hamburger-menu.active {
    padding: 13px 16px 16px;
  }

  .hamburger-label {
    font-size: 13px;
  }
}

/* グローバルナビ（ドロワー） */
#site-header-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  /* JSで上書きされる */
  height: 0;
  /* JSで上書きされる */
  background-color: rgba(0, 0, 0, 0.45);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  z-index: 998;
}

#site-header-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  padding: 8px 10px;
  background-color: #306FB6;
}

#site-header-nav.active .gnav-logo img {
  display: block;
}

#site-header-nav .sp-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

#site-header-nav .gnav-list {
  padding: 0 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  box-sizing: border-box;
  height: 100%;
  overflow-y: auto;
  margin: 46px auto 0;
  width: 100%;
  max-width: 600px;
}

#site-header-nav .gnav-list>li {
  width: 100%;
}

#site-header-nav .gnav-banner {
  display: flex;
  justify-content: space-between;
}

#site-header-nav .gnav-banner .gnav-item a {
  width: calc(100% - 2px);
  height: calc(100% - 19px);
  padding: 10px 0 7px;
  border-radius: 5px;
  flex-direction: column;
}

#site-header-nav .gnav-banner .gnav-item.tel a {
  border: 1px solid #fff;
}

#site-header-nav .gnav-banner .gnav-item.recruit a {
  border: 1px solid #E4411D;
}

#site-header-nav .gnav-banner .gnav-item.tel a img {
  margin-top: 2px;
}

#site-header-nav .gnav-banner .gnav-item.tel a .gnav-label {
  font-size: 16px;
  letter-spacing: 0.04em;
}

#site-header-nav .gnav-banner .gnav-item.recruit a .gnav-label {
  margin-bottom: 3px;
  font-size: 14px;
  letter-spacing: 0.09em;
}

#site-header-nav .gnav-banner .gnav-item {
  width: calc((100% - 8px - 4px) / 2);
}

#site-header-nav li.gnav-item a {
  width: calc(100% - 30px);
  min-width: auto;
  height: auto;
  padding: 12px 15px;
  flex-direction: row;
  justify-content: flex-start;
  gap: 8px;
  background: #fff;
  border-radius: 5px;
}

#site-header-nav li.gnav-item a:hover {
  transform: none;
}

.gnav-item:hover .sub-gnav-list {
  transition: none;
  visibility: inherit;
  transform: translateY(-4px);
}

.gnav-item a::after {
  background-color: inherit;
  transition: none;
}

.gnav-item a:hover::after {
  transform: none;
}

#site-header-nav .gnav-item.is-active a {
  color: #333333;
  background-color: #fff;
}

#site-header-nav .gnav-item.is-active>a::after {
  display: none;
}

.gnav-label {
  font-size: 15px;
}

.gnav-icon img {
  margin-bottom: 0;
}

.sub-gnav-list {
  display: block;
  position: relative;
  top: inherit;
  left: inherit;
  opacity: 1;
  width: calc(100% - 30px);
  height: auto;
  padding: 12px 15px;
  visibility: inherit;
  background: #fff;
  z-index: 990;
  border-radius: 0 0 5px 5px;
}

.sub-gnav-list::after,
.sub-gnav-list::before {
  display: none;
}

.sub-gnav-list .sub-gnav-item {
  line-height: 1.6em;
}

#site-header-nav li.gnav-item .sub-gnav-list a {
  color: #333333;
  border-radius: 0;
  padding: 12px 18px 12px 32px;
  border-top: 1px solid #CDE7ED;
  width: calc(100% - 44px);
  position: relative;
}

#site-header-nav li.gnav-item .sub-gnav-list a::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2E73C1;
  position: absolute;
  left: 18px;
  top: calc(50% - 3px);
  display: block;
  content: '';
  transform: none;
}

#site-header-nav li.gnav-item .sub-gnav-list li:last-of-type a {
  padding-bottom: 0;
}

#site-header-nav li.gnav-item .sub-gnav-list li:last-of-type a::after {
  top: calc(50% + 3px);
}

@media only screen and (max-width: 400px) {
  #site-header-nav .gnav-list {
    overflow-y: scroll;
    padding-bottom: 100px;
  }
}

/*======
 メインコンテンツ
==========*/
main {
  padding-top: 54px;
}

.fv {
  height: 70vh;
  min-height: 530px;
}

.fv-video {
  width: 100%;
  height: 640px;
}

.fv-inner {
  padding: 0 20px 80px;
}

.fv-wave {
  height: 140px;
  bottom: 15px
}

.fv-wave::before {
  background-size: 740px 140px;
}

.fv-wave::after {
  background-size: 740px 140px;
  background-position: -370px bottom;
}

.fv-scroll,
.fv-indicator {
  display: none;
}

.fv-copy {
  line-height: 1.5;
  margin-bottom: 20px;
}

@media only screen and (max-width: 430px) {
  .fv {
    height: 50vh;
    min-height: 400px;
  }

  .fv-video {
    height: 400px;
  }

  .fv-copy {
    line-height: 1.3;
    margin-bottom: 5px;
  }

  .fv-copy.f_56px {
    font-size: 34px;
  }
}

/***ABOUTセクション***/
.about-section {
  padding: 60px 20px 80px;
  border-radius: 0 0 0 80px;
  width: calc(100% - 40px);
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0;
  width: 100%;
}

.about-label {
  gap: 16px
}

.about-label>img,
.section-label>img,
.news-label>img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.about-heading {
  font-weight: 500;
}

.about-heading br.sp_br {
  display: none;
}

.about-text {
  line-height: 1.6em;
}

.about-image {
  bottom: -308px;
}

.about-image-mask {
  width: 600px;
}

@media only screen and (max-width: 930px) {
  .about-heading {
    margin-top: 375px;
  }

  .about-heading br.sp_br {
    display: block;
  }

  .about-text {
    width: 100%;
  }

  .about-image {
    top: 100px;
    right: calc(50% - 167.5px);
    height: fit-content;
  }

  .about-image-mask {
    width: 335px;
    height: 335px;
  }

  .about-btn {
    margin: 0 auto;
    display: block;
  }
}

/***SHIPセクション***/
.ship-section {
  padding: 160px 20px;
  margin-top: -80px;
}

.ship-card a {
  width: 100%;
  max-width: 400px;
  height: 217px;
}

.ship-img-wrapper,
.ship-img {
  height: 100%;
}

.ship-card-footer {
  padding: 7px 16px 10px;
}

.ship-card-footer p {
  font-size: 19px;
}

.ship-arrow {
  width: 38px;
  height: 38px;
  background-size: 16px;
}

/***INFORMATIONセクション***/
.news-section {
  padding-bottom: 80px;
}

.news-inner {
  padding: 40px;
  gap: 40px;
}

.news-more.pc_br {
  display: flex;
}

.news-more.sp_br {
  display: none;
}

@media only screen and (max-width: 930px) {
  .news-bg {
    width: auto;
    height: 100%;
  }

  .news-inner {
    flex-direction: column;
    padding: 40px 20px;
  }

  .news-more.pc_br {
    display: none;
  }

  .news-more.sp_br {
    display: flex;
    margin: 0 0 0 auto;
    font-size: 16px;
  }

  .news-label {
    width: 100%;
    align-items: flex-start;
  }

  .news-label>img,
  .news-label p {
    margin: 0 auto;
  }

  .news-list {
    width: 100%;
    padding-top: 0;
  }

  .news-item {
    flex-direction: column;
    gap: 6px;
  }

  .news-date {
    font-size: 14px;
  }

  .news-category {
    font-size: 14px;
    margin-right: 0;
  }

  .news-text {
    white-space: normal;
  }
}

@media only screen and (max-width: 430px) {
  .news-item a {
    flex-direction: column;
  }

  .news-date-wrapper {
    margin-bottom: 8px;
  }
}

/***RECRUITセクション***/
.recruit-section {
  height: auto;
  padding: 64px 20px 100px;
}

.recruit-inner {
  padding: 0;
}

.recruit-label-ja {
  margin-bottom: 24px;
}

.recruit-script {
  width: 243px;
  height: 70px;
  bottom: -70px;
  right: 0;
  object-fit: contain;
}

@media only screen and (max-width: 930px) {
  .recruit-text {
    width: 100%;
  }

  .recruit-btn-wrapper {
    position: relative;
    right: inherit;
    top: inherit;
    margin: 40px auto 0;
  }

  .recruit-btn {
    transform: inherit;
  }
}

@media only screen and (max-width: 430px) {
  .recruit-section {
    background-position: center right -140px;
  }
}

/*======
 フッター
==========*/
.footer {
  padding-top: 80px;
}

.footer-inner {
  padding: 0 20px 64px;
  width: calc(100% - 40px);
}

.footer-nav {
  width: 200px;
}

.footer-col {
  flex: none;
}

.footer-nav-sub-list li:last-of-type {
  margin-bottom: 0;
}

@media only screen and (max-width: 930px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    margin-bottom: 64px;
    width: 100%;
  }

  .footer-logo {
    margin: auto;
    display: block;
    margin-bottom: 40px;
  }

  .footer-company-name {
    margin-bottom: 8px;
  }

  .footer-address,
  .footer-contact {
    font-size: 12px;
  }

  .footer-link-ext>img:first-of-type {
    height: 30px;
    width: auto;
  }

  .footer-link-ext {
    margin: auto;
  }

  .footer-nav {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-nav-item>a {
    font-weight: 700;
  }

  .footer-col.recruit {
    justify-content: center;
    margin-bottom: 0;
  }

  .footer-recruit-card {
    height: 290px;
  }
}

@media only screen and (max-width: 430px) {
  .footer-col.nav {
    display: flex;
    width: 250px;
  }

  .footer-nav {
    flex-direction: column;
  }
}



/*--------------------

	サブページ共通
	
--------------------*/
.sub_top {
  height: 230px;
}

.sub_top::after {
  width: 360px;
  height: 230px;
  right: 20px;
  top: 0;
}

.sub_top_inner {
  padding: 60px 20px 20px;
}

.sub_ttl p {
  margin-bottom: 4px;
}

.an-link-list {
  margin-top: 30px;
}

.separator {
  margin: 5px 8px;
}

.sub_cont {
  padding-bottom: 80px;
}

.cat-link-item a {
  padding: 4px 16px 5px;
  font-size: 16px;
}

@media only screen and (max-width: 430px) {
  .cat-link-item a {
    padding: 5px 15px 6px;
    font-size: 15px;
    letter-spacing: 0;
  }
}


/*--------------------

	船舶情報ページ
	
--------------------*/
.ship-page-section {
  width: 100%;
}

.ship-about {
  gap: 24px;
}

.ship-about-img {
  width: 360px;
  height: 240px;
}

.ship-about-list {
  gap: 14px;
}

.ship-about-caption {
  width: calc(100% - 360px - 28px);
}

.ship-about-item {
  width: calc((100% - 24px) / 3);
}

.ship-about-item-label {
  margin-bottom: 4px;
  font-size: 13px;
}

@media only screen and (max-width: 930px) {
  .ship-page-section {
    max-width: 600px;
    padding: 30px 32px;
  }

  .ship-about {
    flex-direction: column;
  }

  .ship-about-img {
    width: 100%;
    height: 260px;
    margin-bottom: 20px;
    border-radius: 0;
  }

  .ship-pc-br {
    display: none;
  }

  .ship-sp-br {
    display: block;
  }

  .ship-about-caption {
    width: 100%;
  }

  .separate_area {
    margin: 24px 0;
  }

  .ship-desc h3 {
    font-size: 20px;
  }

  .ship-desc-item {
    padding-top: 10px;
    gap: 30px;
  }

  .ship-desc-item-ttl {
    width: 160px;
    padding-bottom: 10px;
  }

  .ship-desc-item-txt {
    width: calc(100% - 160px - 30px);
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 430px) {
  .ship-page-section {
    padding: 30px 24px;
  }

  .ship-about-img {
    height: 200px;
  }

  .ship-about-list {
    gap: 10px;
  }

  .ship-about-item {
    padding: 12px;
    width: calc((100% - 20px) / 3);
  }

  .ship-about-item-label {
    font-size: 12px;
  }

  .ship-about-item-value {
    letter-spacing: -0.06em;
    font-size: 14px;
  }

  .ship-desc-item {
    flex-direction: column;
    gap: 2px;
    padding-top: 14px;
  }

  .ship-desc-item>p {
    width: 100%;
  }

  .ship-desc-item-ttl {
    padding-bottom: 0;
    border-bottom: none;
    font-weight: 700;
  }
}


/*--------------------

	会社情報ページ
	
--------------------*/

.company-page .sub_cont {
  padding-bottom: 0;
}

.history-list {
  width: 100%;
  padding: 20px 0;
}

.history-item {
  width: calc((100% / 2) - 100px);
}

.history-item-left::after {
  width: 100px;
  right: -100px;
}

..history-item-right::after {
  width: 100px;
  left: -100px;
}

.history-item-left::before {
  width: 43px;
  right: -121px;
}

.history-item-right::before {
  width: 43px;
  left: -121px;
}

@media only screen and (max-width: 930px) {
  section#greeting {
    background: none;
  }

  .greeting-wrapper {
    width: calc(100% - 60px);
    text-align: center;
    background-color: inherit;
  }

  h2.section-ttl {
    margin-bottom: 40px;
  }

  .greeting-wrapper p {
    width: fit-content;
    margin: 0 auto;
  }

  .representative {
    width: 80%;
    margin-top: 30px;
  }

  .representative::after {
    right: -80px;
  }

  section#company-overview .sec_inner,
  section#history .sec_inner {
    padding: 60px 20px 80px;
  }

  .company-overview-item {
    flex-direction: column;
    gap: 0;
  }

  .company-overview-item p {
    width: 100%;
    line-height: 1.6em;
  }

  .overview-item-label {
    padding-bottom: 0;
    border-bottom: none;
    color: #005DA9;
  }

  .overview-item-value {
    padding: 10px 0 16px;
  }

  .overview-item-value iframe {
    width: 100%;
  }

  .overview-item-value {
    width: 100%;
  }

  .overview-item-value-list li {
    margin-bottom: 6px;
  }

  .overview-ch {
    margin: 3px 10px 3px 0;
    display: inline-block;
  }

  .history-list {
    margin: 0 auto;
  }

  .history-list::after {
    bottom: 0;
  }

  .history-start-date,
  .history-end-date {
    width: 150px;
    height: 150px;
  }

  .history-start-date-inner,
  .history-end-date-inner {
    width: 130px;
    height: 130px;
  }

  .history-start-date-title,
  .history-end-date-title {
    width: 110px;
    height: 110px;
    line-height: 1.4em;
  }

  .history-item {
    width: 60%;
    max-width: 800px;
    min-width: 400px;
    top: 0;
    position: inherit;
    margin: 20px auto;
    border: 5px solid #EDFAFD;
  }

  .history-item:nth-of-type(1),
  .history-item:nth-of-type(2),
  .history-item:nth-of-type(3),
  .history-item:nth-of-type(4),
  .history-item:nth-of-type(5),
  .history-item:nth-of-type(6),
  .history-item:nth-of-type(7),
  .history-item:nth-of-type(8),
  .history-item:nth-of-type(9),
  .history-item:nth-of-type(10),
  .history-item:nth-of-type(11),
  .history-item:nth-of-type(12),
  .history-item:nth-of-type(13),
  .history-item:nth-of-type(14),
  .history-item:nth-of-type(15) {
    top: 0;
    position: inherit;
  }

  .history-item-left::before,
  .history-item-left::after,
  .history-item-right::before,
  .history-item-right::after {
    display: none;
  }
}

@media only screen and (max-width: 430px) {
  .greeting-wrapper p {
    text-align: left;
  }

  .representative span.f_18px {
    margin: auto 10px auto 20px;
  }

  .representative::before {
    width: calc(100% - 210px);
  }

  .representative::after {
    right: -50px;
    top: 20px;
  }

  section#greeting::after,
  section#company-overview::after,
  section#history::after,
  #recruit-requirement::after {
    width: 60px;
    height: 60px;
    background-size: contain;
  }

  section#company-overview::after {
    bottom: -1px
  }

  section#history::after {
    top: -1px;
  }

  section#company-overview {
    border-top-right-radius: 60px;
  }

  .company-overview {
    padding: 20px 30px 30px;
  }

  section#history .sec_inner>p {
    font-size: 15px;
  }

  section#history .sec_inner>p br.ssp_br {
    display: block;
  }

  .history-item {
    padding: 10px 16px 16px;
    border-radius: 20px;
    width: 100%;
    min-width: inherit;
  }

  .history-item-year {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .history-value {
    font-size: 28px;
  }
}


/*--------------------

	新着情報ページ
	
--------------------*/

.news-page .sub_cont_inner {
  padding-bottom: 0;
}

@media only screen and (max-width: 430px) {
  .sub_top {
    height: 260px;
  }

  .news-list.archive-news-list .news-item a {
    flex-direction: row;
  }
}


/*--------------------

	新着情報詳細ページ
	
--------------------*/

.news-single-page .sub_cont_inner {
  padding-bottom: 0;
}

@media only screen and (max-width: 930px) {

  .news-single-content {
    padding: 50px 40px 60px;
  }

  .news-single-title {
    font-size: 28px;
    margin: 8px 0 50px;
  }

  .news-single-content h2 {
    font-size: 22px;
    padding-top: 10px;
    margin: 40px 0 24px;
  }

  .news-single-content h3 {
    font-size: 20px;
    margin: 32px 0 24px;
  }

  .news-single-content h4 {
    font-size: 18px;
    margin: 32px 0 20px;
    padding-left: 20px;
  }

  .news-single-content h4::after {
    top: 13px;
    width: 12px;
    height: 4px;
  }

  .news-single-content ul li {
    padding-left: 20px;
  }

  .news-single-content ul li::after {
    width: 6px;
    height: 6px;
    left: 5px;
  }

}


/*--------------------

	採用ページ
	
--------------------*/
.recruit-requirement-cta-btn {
  width: 50%;
  padding: 0;
}

.recruit-requirement-cta-tel {
  width: calc(50% - 2px);
  padding: 0;
}

.recruit-form-complete-form p {
  text-align: left;
}

@media only screen and (max-width: 800px) {
  .recruit-requirement .tab {
    margin-left: 0;
    flex-direction: column;
    gap: 0px;
  }

  .recruit-requirement .tab li a {
    padding: 10px 20px;
    border-radius: 0;
    border: 1px solid #A2A2A2;
    border-bottom: none;
  }

  .area {
    padding: 40px 40px 50px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }

  .area h3 {
    font-size: 20px;
    padding-bottom: 16px;
    margin-bottom: 32px;
  }

  .youkou tr {
    gap: 20px;
    margin-bottom: 20px;
  }

  .youkou th {
    width: 150px;
  }

  .youkou td {
    width: calc(100% - 150px - 20px);
  }

  .recruit-requirement-cta {
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
  }

  .recruit-requirement-cta-btn,
  .recruit-requirement-cta-tel,
  .recruit-requirement-cta-separation {
    width: 100%;
  }

  .recruit-requirement-cta-btn {
    gap: 10px;
  }

  .recruit-requirement-cta-separation {
    height: 1px;
    margin: 20px 0;
  }

  .recruit-requirement-cta-tel p {
    margin-bottom: 0;
  }

  .recruit-form-step {
    gap: 40px;
    background-size: 26px 100%;
  }

  .recruit-form-step-item .recruit-form-step-item-num {
    width: 60px;
    height: 60px;
    gap: 0;
  }

  .recruit-form-step-item .recruit-form-step-item-num p:first-of-type {
    font-size: 10px;
  }

  .recruit-form-step-item>p {
    font-size: 12px;
  }

  .recruit-form-step-item:first-of-type>p {
    margin-left: -10px;
  }

  .recruit-form-step-item:nth-of-type(2)>p {
    margin-left: -8px;
  }

  .recruit-form form {
    padding: 50px 40px;
  }

  .recruit-form form table tbody {
    gap: 30px;
  }

  .recruit-form form table tr input[type="text"],
  .recruit-form form table tr input[type="tel"],
  .recruit-form form table tr input[type="email"],
  .recruit-form form textarea {
    padding: 18px 24px;
    font-size: 16px;
  }

  .recruit-form form table tr label span {
    font-size: 16px;
  }

  .recruit-form form table tr input[type="radio"] {
    width: 20px;
    height: 20px;
  }

  .recruit-form form table tr input[type="radio"]::before {
    transform: translate(0.3px, 0.3px) scale(0);
  }

  .recruit-form form table tr input[type="radio"]:checked::before {
    transform: translate(0.3px, 0.3px) scale(1);
  }

  .recruit-form-submit input {
    width: 100%;
    max-width: 300px;
    height: 60px;
    font-size: 18px;
    border-radius: 30px;
  }

  .recruit-privacy-text {
    padding: 20px;
  }
}

@media only screen and (max-width: 430px) {
  .recruit-explain {
    padding: 20px 30px;
  }

  .recruit-explain p {
    text-align: left;
  }

  .area {
    padding: 30px 20px 40px;
  }

  .youkou tr {
    flex-direction: column;
    gap: 0px;
    margin-bottom: 28px;
  }

  .youkou th {
    padding: 0;
    color: #005DA9;
    background-color: inherit;
    width: inherit;
    font-weight: 700;
  }

  .youkou td {
    width: 100%;
  }

  .recruit-requirement-cta-btn a {
    width: calc(250px - 26px);
  }

  #recruit-form .sec_inner {
    padding-bottom: 0;
  }

  #recruit-form {
    border-top-right-radius: 60px;
  }

  .recruit-form-text .ssp_br {
    display: block;
  }

  .recruit-form form {
    padding: 40px 14px 30px;
  }

  .recruit-privacy-ttl {
    margin: 40px 0 6px;
    font-size: 21px;
  }

  .recruit-form-privacy {
    margin: 30px auto 40px;
  }
}



/*--------------------

	404ページ
	
--------------------*/
.not-found-page-section .sec_inner {
  padding: 10px 20px 60px;
}

.not-found-form {
  padding: 30px 20px;
}