/* ==========================================================================
   ALSOK-TW site styles
   --------------------------------------------------------------------------
   Structure
   1. Foundation / base
   2. Header / navigation
   3. Top page
   4. Shared subpage components
   5. Business page
   6. Company pages
   7. Greeting page
   8. License page
   9. Recruit page
   10. Interview detail page
   11. Contact page
   12. Group page
   ========================================================================== */

:root {
  --blue: #113a8f;
  --sky: #e7f8ff;
  --line: #f0ca38;
  --text: #151515;
  --max: 100%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Yu Gothic","Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
  background: #fff;
  font-size: 15px;
  line-height: 1.75;
}

.container {
  width: min(84vw,1120px);
  margin-inline: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e7e7e7;
}

.header-inner {
  width: min(96vw,1280px);
  margin: auto;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  white-space: nowrap;
}

.brand strong {
  font-size: 25px;
  line-height: 1;
  color: #2747af;
  font-style: italic;
}

.mark {
  width: 18px;
  height: 14px;
  background: linear-gradient(135deg,#ffd800 0 48%,#1e2fa6 49%);
}

.global-nav {
  display: flex;
  gap: 0;
  font-weight: 700;
}

.global-nav a {
  padding: 0 18px;
  border-left: 1px solid #222;
  line-height: 1;
}

.global-nav a:first-child {
  border-left: 0;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #222;
  margin: 5px 0;
}

.hero {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  min-height: clamp(310px,45vw,640px);
  width: 100%;
}

.hero-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

.hero-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.04);
}

.hero-panel span {
  position: relative;
  width: 100%;
  padding: 24px 10px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(18px,2.5vw,30px);
}

.hero-panel:nth-child(1) span {
  background: rgba(79,191,226,.72);
}

.hero-panel:nth-child(2) span {
  background: rgba(142,198,38,.72);
}

.hero-panel:nth-child(3) span {
  background: rgba(230,105,169,.68);
}

.hero-panel:nth-child(4) span {
  background: rgba(255,225,0,.68);
}

.inquiry {
  align-items: center;
  background-color: #e6e319;
  background-blend-mode: multiply;
}

.inquiry:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(224,220,0,.55);
}

.inquiry p {
  position: relative;
  z-index: 1;
  font-weight: 700;
  letter-spacing: .04em;
}

.message {
  min-height: 205px;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  text-align: center;
}

.message-copy {
  padding: 35px 16px;
  color: #061949;
  text-shadow: 0 1px 0 rgba(255,255,255,.7);
}

.message h1 {
  margin: 0 0 16px;
  font-family: serif;
  font-size: clamp(24px,3.2vw,34px);
  letter-spacing: .15em;
}

.message p {
  font-family: serif;
  margin: 0;
  font-size: clamp(17px,2.2vw,25px);
  font-weight: 700;
}

.section {
  padding: 36px 0;
}

.news {
  background: #f3f2f8;
}

.business {
  background: var(--sky);
}

h2 {
  margin: 0 0 14px;
  padding-bottom: 6px;
  border-bottom: 4px solid var(--line);
  box-shadow: inset 0 -4px 0 var(--blue);
  font-size: 16px;
  font-weight: 500;
}

h2 span {
  font-family: Georgia,serif;
  font-size: clamp(28px,3vw,38px);
  margin-right: 22px;
}

.news-list {
  border: 1px solid #888;
  background: #fff;
}

.news-list article {
  padding: 22px 40px;
  border-bottom: 1px solid #999;
}

.news-list article:last-child {
  border-bottom: 0;
}

.news-list time {
  font-weight: 700;
}

.news-list p {
  margin: 2px 0 0;
}

.more,.detail {
  text-align: right;
  margin: 10px 0 0;
}

.more a,.detail a {
  display: inline-block;
  min-width: 160px;
  text-align: center;
  border-radius: 16px;
  background: #2d58b0;
  color: #fff;
  padding: 1px 18px;
  line-height: 1.5;
}

.lead {
  margin: 12px 0 6px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-top: 36px;
}

.card {
  background: #fff;
  border: 1px solid #a7a7a7;
  padding: 0 0 14px;
}

.card h3 {
  font-size: 15px;
  margin: 10px 12px 8px;
  padding-left: 12px;
  position: relative;
}

.card h3:before {
  content: url('../assets/com_ic01.png');
  position: absolute;
  left: 0;
  color: #244ba2;
  font-size: 11px;
}

.card p,.card small {
  display: block;
  margin: 0 12px;
  font-size: 12px;
  line-height: 1.65;
}

.card a:hover {
color: #002f87;
}

.badge {
  padding: 30px 0 58px;
  background: #fff;
}


.badge h2 {
  border: 0;
  box-shadow: none;
  padding: 0 18px;
  font-size: 30px;
  font-family: serif;
}

.badge a {
  font-weight: 700;
}


/* ---------- */
.badge-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 110px;
  padding: 0 120px 0 32px;

  text-decoration: none;
  color: #222;

  overflow: hidden;
}

/* 下部のグレー帯 */
.badge-inner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;

  height: 32px;
  background: #e9e9e9;
  border-radius: 12px;

}

/* 右端アイコン */
.badge-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);

  width: 95px;
  height: 95px;

  background-image: url("../assets/bnr_go2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  z-index: 2;
}


.badge-title {
  position: relative;
  z-index: 1;

  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.badge-link {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
}

.badge-arrow {
  font-size: 2rem;
}




.footer {
  background: #f2f2f8;
}

.footer-main {
  min-height: 300px;
  padding: 55px 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer address {
  font-style: normal;
  font-size: 13px;
}

.footer address img {
  width: 195px;
  margin-bottom: 10px;
}

.access {
  display: inline-block;
  border: 1px solid #777;
  border-radius: 5px;
  margin-top: 8px;
  padding: 0 22px;
  background: #eee;
}

.footer-nav {
  display: flex;
  gap: 18px;
  font-weight: 700;
  margin-top: 55px;
}

.footer-nav a+a {
  height: 1.5em;
  border-left: 1px solid #222;
  padding-left: 18px;
}

.policy {
  background: #c9f0ff;
  text-align: center;
  padding: 16px;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-weight: 700;
}

.copy {
  margin: 0;
  background: #35bde2;
  color: #fff;
  text-align: center;
  padding: 17px;
  font-size: 12px;
}

.pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  background: #343963;
  color: #fff;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
}

@media (max-width:900px) {
  .global-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    border-top: 1px solid #ddd;
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    border-left: 0;
    border-bottom: 1px solid #eee;
    padding: 14px 5vw;
  }

  .nav-toggle {
    display: block;
  }

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

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

  .badge {
    padding-top: 90px;
  }

  .footer-main,.policy {
    flex-direction: column;
  }

  .footer-nav {
    flex-wrap: wrap;
    margin-top: 0;
  }
}

@media (max-width:560px) {
  .container {
    width: 92vw;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-panel {
    min-height: 270px;
  }

  .inquiry {
    min-height: 180px;
  }

  .news-list article {
    padding: 18px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .badge-inner {
    display: block;
  }

  .badge h2 {
    font-size: 24px;
  }

  .footer-main {
    padding: 38px 0;
  }

  .footer-nav {
    display: grid;
    gap: 10px;
  }

  .footer-nav a+a {
    border-left: 0;
    padding-left: 0;
  }

  .policy {
    gap: 8px;
  }

  .message br {
    display: none;
  }
}

/* business page */
.breadcrumb {
  width: min(92vw,1280px);
  margin: 0 auto;
  padding: 8px 0;
  font-size: 12px;
  color: #333;
}

.sub-visual {
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sub-visual__title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-right: 7vw;
  text-shadow: 0 1px 5px rgba(0,0,0,.45);
}

.content-block {
  padding: 32px 0 0;
}

.sub-container {
  width: min(84vw,1020px);
}

.page-heading {
  display: inline-block;
  font-size: 22px;
  margin: 0 0 8px;
  padding-bottom: 3px;
  border-bottom: 3px solid var(--blue);
}

.intro {
  max-width: 920px;
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 20px;
  letter-spacing: .04em;
}

.anchor-nav {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: #f7f7f7;
  margin: 18px 0 62px;
  box-shadow: 0 8px 18px rgba(0,0,0,.07);
}

.anchor-nav a {
  position: relative;
  text-align: left;
  padding: 8px 32px;
  color: #224086;
  background: #fafafa;
  border-right: 1px solid #31406c;
  font-weight: 700;
}

.anchor-nav a:last-child {
  border-right: 0;
}

.anchor-nav a:before {
  content: "▼";
  font-size: 11px;
  margin-right: 18px;
  color: #1e3182;
}

.service-section {
  margin: 0 0 34px;
}

.service-section h2,.wide-heading {
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  padding-bottom: 2px;
  border-bottom: 3px solid var(--line);
  box-shadow: none;
}

.service-section p,.plan-section p {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 22px;
  letter-spacing: .03em;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.photo-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.plan-section {
  margin-top: 112px;
  padding-bottom: 48px;
}

.plan-section .flow {
  width: min(92%,740px);
  margin: 24px auto 28px;
}

.contact-box {
  background: #f7f7f7;
  padding: 18px 26px;
  margin-top: 0;
}

.contact-box h3 {
  font-size: 15px;
  margin: 0 0 15px;
  padding: 0 0 9px 14px;
  border-bottom: 1px solid #d0d0d0;
  border-left: 5px solid var(--blue);
}

.contact-box p {
  font-size: 12px;
  margin: 0;
  line-height: 1.8;
}

.subpage .footer-main {
  min-height: 290px;
}

.subpage .footer {
  margin-top: 0;
}

@media (max-width:900px) {
  .sub-visual {
    height: 150px;
  }

  .anchor-nav {
    grid-template-columns: 1fr;
    margin-bottom: 36px;
  }

  .anchor-nav a {
    border-right: 0;
    border-bottom: 1px solid #d7d7d7;
  }

  .photo-grid {
    gap: 10px;
  }

  .intro,.service-section p,.plan-section p {
    font-size: 15px;
  }

  .plan-section {
    margin-top: 60px;
  }
}

@media (max-width:560px) {
  .sub-container {
    width: 92vw;
  }

  .sub-visual {
    height: 120px;
  }

  .sub-visual__title {
    font-size: 24px;
  }

  .page-heading,.service-section h2,.wide-heading {
    font-size: 20px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid img {
    width: 100%;
  }

  .plan-section .flow {
    width: 100%;
  }

  .contact-box {
    padding: 16px;
  }

  .anchor-nav a {
    padding: 10px 18px;
  }
}

/* company page */
.company-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  align-items: start;
  padding: 32px 0 70px;
}

.side-nav {
  background: #f3f3f3;
}

.side-nav a {
  display: block;
  padding: 12px 18px;
  border-bottom: 1px solid #fff;
  font-weight: 700;
  line-height: 1.35;
}

.side-nav a.is-current {
  background: #18209a;
  color: #fff;
}

.company-main {
  min-width: 0;
}

.company-section {
  margin: 0 0 46px;
}

.company-section h1,.company-section h2 {
  font-family: inherit;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 18px;
  padding-bottom: 3px;
  border-bottom: 3px solid var(--line);
  box-shadow: none;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.info-table th,.info-table td {
  border: 1px solid #ddd;
  padding: 11px 14px;
  vertical-align: top;
}

.info-table th {
  width: 24%;
  background: #f8f8f8;
  text-align: left;
  font-weight: 700;
}

.base-content {
  display: grid;
  grid-template-columns: 1fr minmax(100px,25%);
  gap: 26px;
  align-items: start;
}

.base-content p {
  font-size: 18px;
  line-height: 1.55;
  margin: 6px 0 0;
}

.base-content img {
  justify-self: center;
}

.access-area {
  display: grid;
  grid-template-columns: minmax(260px,420px) 1fr;
  gap: 70px;
  align-items: center;
}

.access-area .map {
  width: 100%;
  border: 1px solid #ddd;
}

.access-area .mascot {
  width: 125px;
  justify-self: right;
}

.company-contact {
  max-width: 760px;
}

.subpage.company-page .footer {
  margin-top: 0;
}

@media (max-width:900px) {
  .company-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .base-content,.access-area {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .access-area .mascot {
    display: none;
  }

  .company-section h1,.company-section h2 {
    font-size: 22px;
  }
}

@media (max-width:560px) {
  .side-nav {
    grid-template-columns: 1fr;
  }

  .info-table,.info-table tbody,.info-table tr,.info-table th,.info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    border-bottom: 0;
  }

  .company-layout {
    padding-top: 24px;
  }

  .base-content p {
    font-size: 16px;
  }
}

/* greeting page */
.greeting-section {
  min-height: 800px;
}

.greeting-copy {
  margin: 22px 0 34px;
}

.greeting-copy .main-copy {
  font-family: serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .28em;
  margin: 0 0 6px;
  line-height: 1.3;
}

.greeting-copy .sub-copy {
  font-family: serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .2em;
  margin: 0 0 0 48%;
  padding-top: 2px;
  border-top: 1px solid #bdbdbd;
  white-space: nowrap;
}

.message-body {
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 32px;
  align-items: start;
}

.president-photo {
  margin: 80px 0 0 -100px;
}

.president-photo img {
  width: 260px;
  max-width: none;
}

.message-text {
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: .09em;
}

.message-text p {
  margin: 0 0 25px;
}

.signature {
  text-align: right;
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: .08em;
}

.signature img {
  display: inline-block;
  width: 200px;
  margin: 10px 0 0 10px;
}

.greeting-contact {
  margin-bottom: 0px;
}

@media (max-width:1120px) {
  .president-photo {
    margin-left: 0;
  }

  .message-body {
    grid-template-columns: 180px 1fr;
  }

  .greeting-section {
    min-height: auto;
  }

  .greeting-contact {
    margin-top: 80px;
  }
}

@media (max-width:900px) {
  .greeting-copy .main-copy {
    font-size: 28px;
    letter-spacing: .18em;
  }

  .greeting-copy .sub-copy {
    margin-left: 18%;
    font-size: 18px;
    white-space: normal;
  }

  .message-body {
    grid-template-columns: 150px 1fr;
    gap: 22px;
  }

  .president-photo {
    margin-top: 10px;
  }

  .president-photo img {
    width: 150px;
  }

  .message-text {
    font-size: 15px;
    letter-spacing: .04em;
  }

  .greeting-contact {
    margin-top: 48px;
  }
}

@media (max-width:620px) {
  .message-body {
    display: block;
  }

  .president-photo {
    float: left;
    margin: 0 18px 12px 0;
  }

  .president-photo img {
    width: 118px;
  }

  .greeting-copy .main-copy {
    font-size: 24px;
  }

  .greeting-copy .sub-copy {
    margin-left: 0;
  }

  .message-text {
    font-size: 14px;
  }

  .signature {
    clear: both;
    font-size: 14px;
  }

  .signature img {
    width: 100px;
    margin-right: 10px;
  }

  .greeting-contact {
    margin-top: 32px;
  }
}

/* license page */
.license-section {
  min-height: 100px;
}

.license-section h1 {
  margin-bottom: 12px;
}

.license-lead {
  font-size: 19px;
  letter-spacing: .06em;
  margin: 0 0 26px;
}

.license-card {
  width: min(96%,485px);
  margin: 0 0 40px 10px;
}

.license-card img {
  width: 100%;
  height: auto;
}

.pdf-link {
  position: relative;
  margin: 22px 0 0;
  min-height: 62px;
  width: min(96%,680px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 120px 8px 86px;
  background: #f2f2f7;
  border-radius: 20px;
  font-size: 18px;
  letter-spacing: .08em;
}

.pdf-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 50px;
  border: 2px solid #d93535;
  border-radius: 3px;
  color: #d93535;
  background: #fff;
  font-size: 11px;
  display: grid;
  place-items: end center;
  padding-bottom: 5px;
  font-weight: 700;
}

.pdf-icon:before {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  border-left: 14px solid transparent;
  width: 0;
  height: 0;
}

.pdf-icon:after {
}

.pdf-link img {
  position: absolute;
  right: 22px;
  bottom: -12px;
  width: 78px;
}

.license-contact {
  margin-bottom: 0px;
}

@media (max-width:900px) {
  .license-section {
    min-height: auto;
  }

  .pdf-link {
    padding-right: 95px;
    font-size: 15px;
  }

  .license-contact {
    margin-top: 80px;
  }
}

@media (max-width:560px) {
  .license-lead {
    font-size: 16px;
  }

  .license-card {
    width: 100%;
    margin-left: 0;
  }

  .pdf-link {
    width: 100%;
    padding: 10px 70px 10px 62px;
    font-size: 13px;
  }

  .pdf-icon {
    left: 14px;
    width: 32px;
    height: 42px;
  }

  .pdf-link img {
    right: 6px;
    width: 58px;
  }

  .license-contact {
    margin-top: 42px;
  }
}

.bnr_img {
  width: 534px;
  margin: 0 auto;
}











/* recruit page */
.recruit-visual {
  background-position: center;
}

.recruit-main {
  padding: 32px 0 76px;
}

.recruit-lead,.recruit-section {
  margin: 0 0 50px;
}

.recruit-lead h1,.recruit-section h2 {
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  padding-bottom: 3px;
  border-bottom: 3px solid var(--line);
  box-shadow: none;
}

.recruit-lead p,.recruit-section p {
  font-size: 1em;
  line-height: 1.55;
  letter-spacing: .05em;
  margin: 0;
}

.entry-banner {
  position: relative;
  display: block;
  width: min(94%,790px);
  margin: 54px auto 64px;
  padding: 0 125px 22px 8px;
  color: #111;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.25;
}

.entry-banner:before {
  content: "";
  position: absolute;
  left: 0;
  right: 92px;
  top: 29px;
  height: 22px;
  background: linear-gradient(90deg,#ffe500 0 66%,#161c97 66% 100%);
  clip-path: polygon(0 0,94% 0,100% 50%,94% 100%,0 100%);
  z-index: -1;
}

.entry-banner small {
  display: block;
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  letter-spacing: .08em;
}

.entry-banner img {
  position: absolute;
  right: 16px;
  top: -12px;
  width: 96px;
}

.interview-section {
  margin: 0 0 45px;
}

.interview-section h2 {
  margin: 0 0 20px;
  padding-bottom: 5px;
  border-bottom: 3px solid var(--line);
  box-shadow: inset 0 -3px 0 var(--blue);
  font-size: 17px;
  font-weight: 400;
}

.interview-section h2 span {
  font-family: Georgia,serif;
  font-size: 34px;
  margin-right: 12px;
}

.interview-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px 12px;
}

.interview-card {
  position: relative;
  padding: 9px 9px 38px;
  min-height: 254px;
}

.interview-card.blue {
  background: #d9f3ff;
}

.interview-card.yellow {
  background: #fff27b;
}

.interview-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 10px;
}

.interview-card p {
  font-size: 12px;
  margin: 0 0 10px;
}

.interview-card time {
  display: block;
  font-size: 12px;
}

.interview-card a {
  position: absolute;
  right: 10px;
  bottom: 12px;
  display: inline-block;
  min-width: 58px;
  padding: 0 14px 1px;
  border-radius: 14px;
  background: #2d58b0;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.35;
}

.interview-card a:after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.recruit-contact {
  margin-bottom: 0;
}

.subpage.recruit-page .footer {
  margin-top: 0;
}

@media (max-width:900px) {
  .recruit-main {
    padding-top: 28px;
  }

  .recruit-lead p,.recruit-section p {
    font-size: 15px;
  }

  .entry-banner {
    font-size: 20px;
    padding-right: 100px;
  }

  .entry-banner img {
    width: 78px;
  }

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

  .interview-section {
    margin-bottom: 90px;
  }
}

@media (max-width:560px) {
  .recruit-lead,.recruit-section {
    margin-bottom: 34px;
  }

  .recruit-lead h1,.recruit-section h2 {
    font-size: 20px;
  }

  .entry-banner {
    width: 100%;
    font-size: 17px;
    padding: 0 76px 20px 4px;
    margin: 34px auto 44px;
  }

  .entry-banner:before {
    right: 55px;
    top: 24px;
  }

  .entry-banner img {
    width: 60px;
    right: 4px;
  }

  .entry-banner small {
    text-align: left;
    font-size: 12px;
  }

  .interview-section h2 span {
    font-size: 28px;
  }

  .interview-grid {
    grid-template-columns: 1fr;
  }

  .interview-card {
    min-height: auto;
  }

  .recruit-contact {
    margin-top: 40px;
  }
}

/* interview detail page */
.interview-detail-page .sub-visual {
  height: 450px;
  background-position: center top;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
}

.interview-detail-page .sub-visual__title {
  margin-top: 34px;
  margin-right: 9vw;
  font-size: 23px;
  letter-spacing: .18em;
  color: #fff;
  text-shadow: 0 2px 7px rgba(0,0,0,.35);
}

.interview-profile {
  position: relative;
  min-height: 92px;
  margin-bottom: 18px;
}

.interview-profile:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 62%;
  height: 64px;
  background: #ffea00;
  clip-path: polygon(0 0,100% 0,92% 100%,12% 100%);
  z-index: 0;
}

.interview-profile__box {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  min-width: 270px;
  background: rgba(50,55,160,.72);
  color: #fff;
  padding: 12px 26px 13px;
  font-size: 17px;
  letter-spacing: .08em;
  line-height: 1.55;
}

.interview-profile__box p {
  margin: 0 0 2px;
}

.interview-profile__box time {
  font-size: 17px;
}

.interview-main {
  padding: 0 0 70px;
}

.interview-detail-section {
  margin: 0 0 44px;
  clear: both;
}

.interview-detail-section h1,.interview-detail-section h2 {
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 9px;
  padding-bottom: 3px;
  border-bottom: 3px solid var(--line);
  box-shadow: none;
}

.interview-detail-section p,.interview-detail-section li {
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: .04em;
}

.interview-detail-section p {
  margin: 0;
}

.interview-detail-section ul {
  margin: 0;
  padding-left: 1.2em;
}

.two-col {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 22px;
  align-items: start;
}

.two-col.reverse {
  grid-template-columns: 1fr 500px;
}

.two-col.reverse img {
  grid-column: 2;
}

.two-col.reverse p {
  grid-column: 1;
  grid-row: 1;
}

.two-col img {
  width: 100%;
  height: auto;
}

.interview-mascot {
  width: 100px;
  margin: 36px auto;
}

.interview-detail-contact {
  margin-top: 0;
}

.subpage.interview-detail-page .footer {
  margin-top: 0;
}

@media (max-width:900px) {
  .interview-detail-page .sub-visual {
    height: 230px;
  }

  .interview-profile__box {
    width: 48%;
    font-size: 15px;
  }

  .interview-profile:before {
    width: 70%;
  }

  .two-col,.two-col.reverse {
    grid-template-columns: 1fr;
  }

  .two-col.reverse img,.two-col.reverse p {
    grid-column: auto;
    grid-row: auto;
  }

  .two-col img {
    max-width: 360px;
  }

  .interview-detail-section p,.interview-detail-section li {
    font-size: 15px;
  }
}

@media (max-width:560px) {
  .interview-detail-page .sub-visual {
    height: 185px;
  }

  .interview-detail-page .sub-visual__title {
    font-size: 19px;
    margin-right: 6vw;
  }

  .interview-profile {
    min-height: 118px;
  }

  .interview-profile:before {
    width: 100%;
    height: 42px;
  }

  .interview-profile__box {
    left: 10%;
    right: auto;
    top: 38px;
    width: 86%;
    min-width: 0;
    font-size: 14px;
  }

  .interview-main {
    padding-bottom: 46px;
  }

  .interview-detail-section {
    margin-bottom: 32px;
  }

  .interview-detail-section h1,.interview-detail-section h2 {
    font-size: 18px;
  }

  .interview-mascot {
    margin-bottom: 24px;
  }
}

/* contact page */
.contact-page .sub-visual {
  height: 200px;
  background-position: center;
  align-items: center;
}

.contact-page .sub-visual__title {
  font-size: 28px;
  margin-right: 7vw;
  letter-spacing: .08em;
}

.contact-main {
  padding: 30px 0 0;
  min-height: 500px;
}

.contact-lead {
  margin: 0 0 34px;
}

.contact-lead h1 {
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  padding-bottom: 3px;
  border-bottom: 3px solid var(--line);
  box-shadow: none;
}

.contact-lead p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  letter-spacing: .04em;
}

.contact-page-box {
  margin: 0 0 68px;
}

.contact-group-banner {
  position: relative;
  display: block;
  width: min(94%,790px);
  margin: 0 auto;
  color: #111;
  font-family: Georgia,"Yu Mincho",serif;
  font-weight: 700;
  font-size: 27px;
  line-height: 1.25;
  padding: 0 120px 33px 8px;
}

.contact-group-banner:before {
  content: "";
  position: absolute;
  left: 0;
  right: 96px;
  top: 25px;
  height: 24px;
  background: linear-gradient(90deg,#ffe500 0 75%,#161c97 75% 100%);
  clip-path: polygon(0 0,94% 0,100% 50%,94% 100%,0 100%);
  z-index: -1;
}

.contact-group-banner small {
  display: block;
  text-align: right;
  font-family: "Yu Gothic","Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-top: 14px;
  letter-spacing: .08em;
}

.contact-group-banner img {
  position: absolute;
  right: 16px;
  top: -38px;
  width: 104px;
}

.subpage.contact-page .footer {
  margin-top: 0;
}

@media (max-width:900px) {
  .contact-main {
    min-height: 900px;
  }

  .contact-group-banner {
    font-size: 21px;
    padding-right: 100px;
  }

  .contact-group-banner img {
    width: 82px;
    top: -24px;
  }

  .contact-group-banner:before {
    right: 76px;
  }
}

@media (max-width:560px) {
  .contact-page .sub-visual {
    height: 120px;
  }

  .contact-main {
    min-height: 420px;
    padding-top: 26px;
  }

  .contact-lead h1 {
    font-size: 20px;
  }

  .contact-lead p {
    font-size: 15px;
  }

  .contact-page-box {
    margin-bottom: 48px;
  }

  .contact-group-banner {
    width: 100%;
    font-size: 18px;
    padding: 0 76px 28px 4px;
  }

  .contact-group-banner:before {
    right: 55px;
    top: 23px;
  }

  .contact-group-banner img {
    width: 62px;
    right: 4px;
    top: -14px;
  }

  .contact-group-banner small {
    text-align: left;
    font-size: 12px;
  }
}

.group-page .sub-visual {
  height: 200px;
  background-position: center;
  align-items: center;
}

.group-page .sub-visual__title {
  font-size: 28px;
  margin-right: 7vw;
  letter-spacing: .06em;
}

.group-main {
  padding: 30px 0 0;
  min-height: 400px;
}

.group-lead h1 {
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 92px;
  padding-bottom: 3px;
  border-bottom: 3px solid var(--line);
  box-shadow: none;
}

.group-list-banner {
  position: relative;
  display: block;
  width: min(94%,840px);
  margin: 0 auto;
  color: #111;
  font-family: Georgia,"Yu Mincho",serif;
  font-weight: 700;
  font-size: 27px;
  line-height: 1.25;
  padding: 0 185px 46px 16px;
  background: url('../assets/group_banner_ref.jpg') right top/auto 114px no-repeat;
}

.group-list-banner:before {
  content: "";
  position: absolute;
  left: 9px;
  right: 0;
  top: 33px;
  height: 24px;
  background: linear-gradient(90deg,#ffe500 0 55%,#161c97 55% 100%);
  clip-path: polygon(0 0,55% 0,58% 50%,55% 100%,0 100%,0 0);
  z-index: -1;
}

.group-list-banner small {
  display: block;
  text-align: right;
  font-family: "Yu Gothic","Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
  letter-spacing: .08em;
}

.group-contact-box {
  margin-top: 50px;
}

.subpage.group-page .footer {
  margin-top: 0;
}

@media (max-width:900px) {
  .group-main {
    min-height: 180px;
  }

  .group-lead h1 {
    margin-bottom: 72px;
  }

  .group-list-banner {
    font-size: 21px;
    padding-right: 130px;
    background-size: auto 88px;
  }

  .group-list-banner:before {
    top: 26px;
  }

  .group-contact-box {
    margin-top: 45px;
  }
}

@media (max-width:560px) {
  .group-page .sub-visual {
    height: 120px;
  }

  .group-page .sub-visual__title {
    font-size: 22px;
  }

  .group-main {
    min-height: 700px;
    padding-top: 26px;
  }

  .group-lead h1 {
    font-size: 20px;
    margin-bottom: 56px;
  }

  .group-list-banner {
    width: 100%;
    font-size: 18px;
    padding: 0 86px 42px 4px;
    background-size: auto 70px;
  }

  .group-list-banner:before {
    left: 0;
    top: 23px;
    height: 20px;
  }

  .group-list-banner small {
    text-align: left;
    font-size: 12px;
    margin-top: 16px;
  }

  .group-contact-box {
    margin-top: 45px;
  }
}





.textmin-r {
  font-size:0.8em;
  text-align: right;
}






























ul, ol { list-style: none; }


/*** anchorNavi01 ***/
.anchorNavi01 ul{
	width:100%;
	display:table;
	background-color: #f7f7f7;
}
.anchorNavi01 ul li{
	width: 25%;
	display: table-cell;
	text-align: left;
}
.anchorNavi01 ul li a{
	display: block;
	padding: 10px 10px 10px 45px;
	text-indent: -15px;
	background: url(/common/img/com_hr02.png) no-repeat left center;
}
.anchorNavi01 ul li:first-child a{
	background-image: none;
}
.anchorNavi01 ul li span{
	padding-left: 15px;
	background: url(/common/img/com_ic06.png) no-repeat left 0.7em;
}
.anchorNavi01 > *:first-child {
	margin-top: 0 !important;
}




/* orderList01 */
.orderList01 > li {
	position: relative;
	font-weight: bold;
	padding-left: 25px;
}
.orderList01 > li > .num {
	position: absolute;
	left: 0;
	top: 0;
	margin-top:-1px;
	display: inline-block;
	padding: 2px 5px;
	background: #253494;
	color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 16px;
}
.orderList01 > li > .orderChildList li{ 
	position: relative;
	font-weight: normal;
	text-indent: -1.4em;
	padding-left: 1.4em;
}
.orderList01 > li > .orderChildList li .num {
	color: #253494;
	margin-right:5px;
	font-weight: bold;
}

/* defineList01 */
.defineList01 {
	padding-left: 15px;
	position: relative;
}
.defineList01 dt{
	font-weight: bold;
	position: relative;
}
.defineList01 > dt:before {
	color: #253494;
	display: block;
	content: "■";
	width: 1em;
	height: 1em;
	position: absolute;
	left: -15px;
	top: 0;
}
.defineList01 dd{
	font-size:13px;
	font-size:1.3rem;
}

/* noteList */
.noteList01,
.noteList02 {
	font-size: 12px;
	font-size: 1.2rem;
}
.noteList01 > li {
	position: relative;
	padding: 0 0 0 15px;
}
.noteList01 > li > .ast {
	position: absolute;
	left: 0;
	top: 0;
}
/* noteList02 */
.noteList02 {
}
.noteList02 > li {
	position: relative;
	padding: 0 0 0 2.25em;
}
.noteList02.fontS > li {
	padding-left: 25px;
}
.noteList02 > li > .ast {
	position: absolute;
	left: 0;
	top: 0;
}





[class*="orderList"] > li > .num.w {
	left: -0.65em;
}