:root{
  --sr-blue:#0059a8;
  --sr-blue-deep:#004f98;
  --sr-blue-dark:#003f86;
  --sr-menu-dark:#05182e;
  --sr-menu-back:#f5f5f5;
  --sr-accent:#1976d2;
  --sr-text:#111827;
  --sr-muted:#667085;
  --sr-line:#e5edf5;
  --sr-bg:#f5f9fc;
  --sr-white:#fff;
  --sr-shadow:0 16px 42px rgba(0,60,120,.12);
  --sr-max:1120px;
  --sr-font:YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  /*--sr-font:YakuHanJP, "Noto Sans JP", Meiryo, sans-serif;*/
    /*--sr-font:Arial,"Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;*/
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--sr-text);
  font-family:var(--sr-font);
  font-size:16px;
  line-height:1.8;
  background:#fff;
}


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

img{
  max-width:100%;
  height:auto;
  vertical-align:middle;
}

button{
  font:inherit;
}

.br-pc {
  display: inline;
}

.br-sp {
  display: none;
}

@media (max-width: 900px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline;
  }
}


.sr-page{
  overflow:hidden;
  background:#fff;
}

.sr-container{
  width:min(var(--sr-max),calc(100% - 48px));
  margin-inline:auto;
}

.sr-section-title{
  margin:0 0 22px;
  color:var(--sr-blue);
  font-size:36px;
  font-weight:900;
  letter-spacing:.02em;
  line-height:1.05;
}

.sr-section-title span{
  display:block;
  margin-top:6px;
  color:#111;
  font-size:14px;
  font-weight:600;
  letter-spacing:0;
}

/* =========================
   Header
========================= */
.sr-header{
  position:absolute;
  z-index:1000;
  top:0;
  left:0;
  width:100%;
  height:72px;
  color:#fff;
  pointer-events:none;
}

.sr-header-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(14px,2.8vw,42px);
  pointer-events:none;
}

.sr-logo{
  display:flex;
  align-items:center;
  width:180px;
  max-width:42vw;
  height:54px;
  pointer-events:auto;
  position:relative;
  z-index:1002;
}

.sr-logo img{
  display:block;
  width:100%;
  max-height:44px;
  object-fit:contain;
  object-position:left center;
}

.sr-header-icons{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:0;
  pointer-events:auto;
}


/* =========================
   Hero
========================= */
.sr-hero{
  position:relative;
  min-height:660px;
  background:var(--sr-blue);
  color:#fff;
  overflow:hidden;
}

.sr-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      rgba(0,89,168,1) 0 36%,
      rgba(255,255,255,.94) 36% 100%
    );
  z-index:0;
}

.sr-hero-visual{
  position:absolute;
  right:0;
  bottom:0;
  width:66%;
  height:76%;
  background:
    linear-gradient(90deg,rgba(255,255,255,.95),rgba(255,255,255,.42) 34%,rgba(255,255,255,0) 62%),
    linear-gradient(120deg,#d9eef7,#f5fbfd 48%,#bddfed);
  clip-path:polygon(0 16%,100% 0,100% 100%,0 100%);
  z-index:1;
}

.sr-hero-person{
  position:absolute;
  right:0;
  bottom:0;
  width:66%;
  height:76%;
  z-index:2;
  overflow:hidden;
  clip-path:polygon(0 16%,100% 0,100% 100%,0 100%);
}

.sr-hero-person::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(90deg,rgba(255,255,255,.95) 0%,rgba(255,255,255,.68) 24%,rgba(255,255,255,.18) 56%,rgba(255,255,255,0) 100%),
    linear-gradient(180deg,rgba(0,89,168,.08),rgba(0,89,168,.08));
  pointer-events:none;
}

.sr-hero-person img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

.sr-hero-copy{
  position:relative;
  z-index:5;
  width:min(var(--sr-max),calc(100% - 48px));
  height:660px;
  margin:0 auto;
  padding-top:108px;
}

.sr-hero-small{
  display:block;
  margin-bottom:0px;
  font-size:20px;
  font-weight:700;
  letter-spacing:.08em;
}

.sr-hero-title{
  margin:0;
  color:#fff;
  font-size:clamp(44px,7.5vw,90px);
  font-weight:900;
  line-height:1.0;
  letter-spacing:.03em;
  text-transform:uppercase;
  text-shadow:0 3px 0 rgba(255,255,255,.08);
}

.sr-hero-title span{
  display:block;
  color:rgba(0,89,168,1);
}

.sr-hero-lead{
  position:absolute;
  left:0;
  top:52%;
  margin:0;
  color:var(--sr-blue);
  font-size:20px;
  font-weight:700;
  letter-spacing:.08em;
  line-height:1.7;
}

/* =========================
   People
========================= */
.sr-people{
  padding:86px 0 84px;
  background:#fff;
}

.sr-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:32px;
}

.sr-card-row{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
  align-items:start;
}

.sr-person-card{
  min-width:0;
}

.sr-person-photo{
  position:relative;
  aspect-ratio:1.55/1;
  background:linear-gradient(135deg,#ccdce6,#eef5f8);
  overflow:hidden;
}

.sr-person-photo img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.sr-person-card:nth-child(1) .sr-person-photo img{
  object-position:center 26%;
}

.sr-person-card:nth-child(2) .sr-person-photo img{
  object-position:center 18%;
}

.sr-person-card:nth-child(3) .sr-person-photo img{
  object-position:center 34%;
}

.sr-person-card:nth-child(4) .sr-person-photo img{
  object-position:center 14%;
}

.sr-person-meta{
  margin-top:20px;
  color:#111;
  font-size:12px;
  font-weight:700;
  line-height:1;
}

.sr-person-name{
  margin:0 0 6px;
  color:#111;
  font-size:17px;
  font-weight:700;
  line-height:1.35;
}

.sr-person-copy{
  margin:0;
  color:#111;
  font-size:14px;
  font-weight:500;
  line-height:1.8;
}

/* =========================
   Interview blind accordion
========================= */
.sr-interview-toggle{
  width:100%;
  margin-top:18px;
  padding:12px 18px;
  border:1px solid var(--sr-blue);
  border-radius:0;
  background:#fff;
  color:var(--sr-blue);
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  line-height:1.3;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:background .25s ease,color .25s ease,border-color .25s ease;
}

.sr-interview-toggle:hover{
  background:var(--sr-blue);
  color:#fff;
  border-color:var(--sr-blue);
}

.sr-interview-toggle::after{
  content:"+";
  display:inline-grid;
  place-items:center;
  width:19px;
  height:19px;
  border-radius:50%;
  border:1px solid currentColor;
  font-size:14px;
  line-height:1;
  font-weight:900;
}

.sr-person-card.is-interview-open .sr-interview-toggle{
  background:var(--sr-blue);
  color:#fff;
}

.sr-person-card.is-interview-open .sr-interview-toggle::after{
  content:"−";
}

.sr-interview-panels{
  width:100%;
  margin-top:34px;
}

.sr-interview-panel{
  width:100%;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .55s cubic-bezier(.22,1,.36,1), opacity .3s ease;
}

.sr-interview-panel.is-open{
  opacity:1;
}

.sr-interview-panel__inner{
  width:100%;
  padding:34px 38px 18px;
  border-top:3px solid var(--sr-blue);
  background:#f7fbff;
  color:#111;
}

.sr-interview-item{
  margin-bottom:28px;
}

.sr-interview-item h4{
  margin:0 0 12px;
  /*color:#111;*/
    color: var(--sr-blue);
  font-size:18px;
  font-weight:800;
  line-height:1.65;
}

.sr-interview-item p{
  margin:0;
  color:#111;
  font-size:16px;
  font-weight:500;
  line-height:2.05;
  letter-spacing:.02em;
}

/* =========================
   Interview hero
========================= */

.sr-interview-hero{
  display:grid;
  grid-template-columns:minmax(280px,400px) 1fr;
  gap:32px;
  align-items:stretch;
  margin:0 0 34px;
  background:#fff;
  border:1px solid #d9e8f5;
}

.sr-interview-hero__image{
  margin:0;
  min-height:260px;
  overflow:hidden;
  background:#eef4f8;
}

.sr-interview-hero__image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

.sr-interview-hero__body{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:40px 48px 40px 0;
}

.sr-interview-hero__title{
  margin:-10px 0 0;
  color:var(--sr-text);
  font-size:clamp(24px,3.2vw,36px);
  font-weight:600;
  line-height:1.5;
  letter-spacing:.04em;
  border-left:4px solid var(--sr-blue);
  padding-left:18px;
}

.sr-interview-hero__name{
  display:flex;
  align-items:center;
  gap:12px;
  margin:20px 0 0;
  color:var(--sr-text);
  font-size:15px;
  font-weight:800;
  line-height:1.6;
}

.sr-interview-hero__name::before{
  content:"";
  display:block;
  width:24px;
  height:2px;
  background:var(--sr-blue);
}

/* =========================
   Interview image
========================= */

.sr-interview-image{
  float:left;
  width:min(400px,42%);
  margin:0 34px 22px 0;
  overflow:hidden;
  background:#eef4f8;
}

.sr-interview-image img{
  display:block;
  width:100%;
  aspect-ratio:4 / 3;
  height:auto;
  object-fit:cover;
  object-position:center center;
}

.sr-interview-panel__inner::after{
  content:"";
  display:block;
  clear:both;
}

/* =========================
   Entry CTA
========================= */
.sr-entry-band{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-top:1px solid var(--sr-blue);
  border-bottom:1px solid var(--sr-blue);
}

.sr-entry-band a{
  height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  font-size:16px;
  font-weight:900;
  color:var(--sr-blue);
  background:#fff;
}

.sr-entry-band a:first-child{
  background:var(--sr-blue);
  color:#fff;
}


/* =========================
   Responsive
========================= */
@media (max-width:900px){
  .sr-container,
  .sr-hero-copy{
    width:calc(100% - 54px);
  }

  .sr-header{
    height:70px;
  }

  .sr-logo{
    width:150px;
    height:50px;
  }

  .sr-logo img{
    max-height:38px;
  }

  .sr-hero{
    min-height:540px;
  }

  .sr-hero::before{
    background:
      linear-gradient(
        180deg,
        rgba(0,89,168,1) 0 53%,
        rgba(255,255,255,.94) 53% 100%
      );
  }

  .sr-hero-visual,
  .sr-hero-person{
    width:100%;
    height:48%;
    right:0;
    clip-path:polygon(0 20%,100% 0,100% 100%,0 100%);
  }

  .sr-hero-copy{
    padding-top:86px;
  }

  .sr-hero-small{
    font-size:13px;
  }

  .sr-hero-title{
    font-size:clamp(34px,12vw,54px);
    line-height:.96;
  }

  .sr-hero-lead{
    margin-top:28px;
    font-size:11px;
  }

  .sr-section-title{
    font-size:24px;
  }

  .sr-section-head{
    align-items:flex-start;
  }

  .sr-card-row{
    grid-template-columns:1fr;
    gap:30px;
  }

  .sr-person-photo{
    aspect-ratio:1.8/1;
  }

  .sr-interview-panels{
    margin-top:26px;
  }

  .sr-interview-panel__inner{
    padding:26px 22px 10px;
  }

  .sr-interview-item{
    margin-bottom:24px;
  }

  .sr-interview-item h4{
    font-size:18px;
  }

  .sr-interview-item p{
    font-size:17px;
    line-height:1.95;
  }

  .sr-entry-band a{
    height:84px;
    font-size:12px;
  }

  .exa-footer-main{
    flex-direction:column;
    gap:40px;
  }

  .exa-footer-brand{
    flex:initial;
  }

  .exa-footer-links{
    width:100%;
    grid-template-columns:1fr 1fr;
    gap:34px 40px;
  }

  .exa-footer-bottom{
    align-items:flex-start;
    flex-direction:column;
    gap:14px;
  }
}


@media (max-width:520px){
  .sr-container,
  .sr-hero-copy{
    width:calc(100% - 54px);
  }

  .sr-header-inner{
    padding:0 10px;
  }

  .sr-logo{
    width:130px;
  }

  .sr-logo img{
    max-height:34px;
  }

  .sr-hero{
    min-height:520px;
  }

  .sr-hero-title{
    font-size:36px;
  }

  .sr-hero-visual,
  .sr-hero-person{
    height:46%;
  }

  .sr-hero-person img{
    object-position:center center;
  }

  .sr-hero-lead{
    width:45%;
    line-height:1.7;
  }

  .sr-people{
    padding:64px 0;
  }

  .sr-interview-panel__inner{
    padding:24px 18px 8px;
  }

  .sr-interview-item h4{
    font-size:18px;
  }

  .sr-interview-item p{
    font-size:17px;
  }
  .sr-entry-band a{
    height:82px;
    font-size:11px;
    gap:8px;
  }

  .exa-modern-footer{
    padding:58px 0 32px;
  }

  .exa-footer-container{
    width:calc(100% - 48px);
  }

  .exa-footer-links{
    grid-template-columns:1fr;
    gap:28px;
  }

  .exa-f-logo{
    font-size:20px;
  }
}

/* =========================
   GPT09 overrides
========================= */

@media (max-width:900px){
  .sr-hero-copy{
    height:540px;
    padding-top:86px;
  }

  .sr-hero-title span{
    color:#fff;
  }

  .sr-hero-lead{
    position:absolute;
    top:calc(52% + 15px);
    left:0;
    width:auto;
    margin:0;
    color:var(--sr-blue);
    font-size:12px;
    line-height:1.7;
  }

  .sr-interview-panels{
    margin-top:0;
  }

  .sr-interview-panel{
    margin-top:22px;
  }

  .sr-interview-hero{
    grid-template-columns:1fr;
    gap:0;
    margin-bottom:26px;
  }

  .sr-interview-hero__image{
    min-height:auto;
    aspect-ratio:16 / 9;
  }
    
  .sr-interview-hero__body{
    padding:32px 24px;
  }

  .sr-interview-hero__title{
    font-size:22px;
    line-height:1.5;
    padding-left:14px;
  }

  .sr-interview-image{
    float:none;
    width:100%;
    margin:0 0 26px;
  }

  .sr-interview-image img{
    aspect-ratio:16 / 9;
  }
}

@media (max-width:520px){
  .sr-hero-copy{
    height:520px;
  }

  .sr-hero-lead{
    top:calc(54% + 3px);
    width:auto;
    line-height:1.0;
  }

  .sr-interview-hero__image{
    aspect-ratio:4 / 3;
  }

  .sr-interview-hero__title{
    font-size:21px;
  }

  .sr-interview-image img{
    aspect-ratio:4 / 3;
  }
}

/* ======================================================
   募集要項セクション (#recruit-info)
   ====================================================== */

.ybt-req-section {
  padding: 80px 0 130px;
  background-color: #f2f7fc;
  /*font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
}

.ybt-req-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* アコーディオン */
.ybt-req-accordion {
  border-top: 1px solid #e5edf5;
  background-color:#f2f7fc;
}

.ybt-req-item {
  border-bottom: 1px solid #e5edf5;
  background: #fff;
    margin-bottom: 15px;}

.ybt-req-trigger {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 30px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
}

.ybt-req-icon {
  order: -1;
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 5px;
}

.ybt-req-trigger-label {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 550;
  color: #111827;
  line-height: 1.6;
}

.ybt-req-icon::before,
.ybt-req-icon::after {
  content: "";
  position: absolute;
  background-color: #0059a8;
  transition: transform 0.3s ease;
}

.ybt-req-icon::before { width: 100%; height: 2px; top: 9px; left: 0; }
.ybt-req-icon::after { width: 2px; height: 100%; top: 0; left: 9px; }

.ybt-req-trigger[aria-expanded="true"] .ybt-req-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.ybt-req-content {
  display: none;
  height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: #fff;
}

.ybt-req-content-inner {
  padding: 0 30px 40px;
}


.ybt-req-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.ybt-req-table th {
  width: 25%;
  padding: 20px;
  background-color: #f8fafc;
  border: 1px solid #e5edf5;
  color: #0059a8;
  font-weight: 700;
  text-align: left;
}

.ybt-req-table td {
  padding: 20px;
  border: 1px solid #e5edf5;
  color: #374151;
  line-height: 1.7;
}

.ybt-req-apply {
  padding: 40px 0 10px;
  text-align: center;
}

.ybt-req-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #0059a8;
  color: #ffffff !important;
  text-decoration: none;
  padding: 18px 56px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 89, 168, 0.2);
}

.ybt-req-apply-btn:hover {
  background: #004b8d;
  transform: translateY(-3px);
}


.ybt-req-apply-logo {
  height: 42px;
  width: auto;

  filter: brightness(0) invert(1);
  filter: none; 
  display: block;
}

@media (max-width: 768px) {
  .ybt-req-table th, .ybt-req-table td { display: block; width: 100%; }
  .ybt-req-apply-btn { width: 100%; padding: 16px 20px; font-size: 16px; }
  .ybt-req-apply-logo { height: 26px; }
}


#recruit-info.ybt-req-section{
  position:relative;
  padding:80px 0 130px;
  overflow:hidden;
  background:#f2f7fc;
  font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  --ybt-bg-shape-height:280px;
}


#recruit-info.ybt-req-section::before{
  content:"";
  position:absolute;
  top:160px;
  left:0;
  width:100%;
  height:var(--ybt-bg-shape-height);
  background:#f2f7fc;
  z-index:0;
  pointer-events:none;
}

#recruit-info .ybt-req-container{
  position:relative;
  z-index:1;
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}


#recruit-info .ybt-section-header{
  margin-bottom:40px;
}

#recruit-info .ybt-main-title{
  margin:0;
  font-size:3.5rem;
  font-weight:900;
  color:#003b8a;
  letter-spacing:.05em;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.2;
}

#recruit-info .ybt-sub-title{
  display:block;
  margin-top:8px;
  color:#003b8a;
  font-size:1rem;
  font-weight:800;
  letter-spacing:.12em;
  line-height:1.5;
}

#recruit-info .ybt-lead-text{
  margin:24px 0 0;
  width:100vw;
  margin-left:calc(50% - 50vw);
  text-align:center;
  color:#333;
  font-size:1.8rem;
  font-weight:600;
  line-height:1.5;
}

#recruit-info .ybt-req-accordion{
  position:relative;
  z-index:1;
  margin-top:22px;
  background-color:#f2f7fc;
}

/* ======================================================
   GPT FIX: ybt recruit trigger hover action
   ====================================================== */

#recruit-info .ybt-req-trigger{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  width:100%;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  gap:14px;
  padding:24px 30px;
  background:#fff;
  border:none;
  cursor:pointer;
  text-align:left;
  transition:
    background-color .32s ease,
    box-shadow .32s ease,
    transform .32s ease;
}

#recruit-info .ybt-req-trigger::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(90deg,rgba(0,89,168,.10) 0%,rgba(0,89,168,.045) 48%,rgba(255,255,255,0) 100%);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .42s cubic-bezier(.22,1,.36,1);
}

#recruit-info .ybt-req-trigger::after{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:4px;
  height:0;
  background:#0059a8;
  transform:translateY(-50%);
  transition:height .32s ease;
}

#recruit-info .ybt-req-icon{
  order:-1;
  position:relative;
  z-index:1;
  width:20px;
  height:20px;
  flex:0 0 20px;
  margin-top:5px;
  transition:transform .32s cubic-bezier(.22,1,.36,1);
}

#recruit-info .ybt-req-trigger-label{
  position:relative;
  z-index:1;
  flex:1;
  min-width:0;
  color:#111827;
  font-size:18px;
  font-weight:700;
  line-height:1.6;
  transition:
    color .28s ease,
    transform .32s cubic-bezier(.22,1,.36,1);
}

#recruit-info .ybt-req-trigger:hover,
#recruit-info .ybt-req-trigger[aria-expanded="true"]{
  background-color:#fbfdff;
  box-shadow:0 12px 28px rgba(0,89,168,.08);
}

#recruit-info .ybt-req-trigger:hover::before,
#recruit-info .ybt-req-trigger[aria-expanded="true"]::before{
  transform:scaleX(1);
}

#recruit-info .ybt-req-trigger:hover::after,
#recruit-info .ybt-req-trigger[aria-expanded="true"]::after{
  height:64%;
}

#recruit-info .ybt-req-trigger:hover .ybt-req-trigger-label,
#recruit-info .ybt-req-trigger[aria-expanded="true"] .ybt-req-trigger-label{
  color:#0059a8;
  transform:translateX(6px);
}

#recruit-info .ybt-req-trigger:hover .ybt-req-icon{
  transform:translateX(4px) rotate(90deg);
}

#recruit-info .ybt-req-trigger[aria-expanded="true"] .ybt-req-icon{
  transform:translateX(4px);
}

#recruit-info .ybt-req-trigger:focus-visible{
  outline:2px solid rgba(0,89,168,.35);
  outline-offset:3px;
}

@media (prefers-reduced-motion:reduce){
  #recruit-info .ybt-req-trigger,
  #recruit-info .ybt-req-trigger::before,
  #recruit-info .ybt-req-trigger::after,
  #recruit-info .ybt-req-trigger-label,
  #recruit-info .ybt-req-icon{
    transition:none;
  }
}

@media (max-width:768px){
  #recruit-info.ybt-req-section{
    padding:58px 0 90px;
    --ybt-bg-shape-height:250px;
  }

  #recruit-info.ybt-req-section::before{
    top:132px;
  }

  #recruit-info .ybt-main-title{
    font-size:2.6rem;
  }

  #recruit-info .ybt-sub-title{
    font-size:.9rem;
  }

  #recruit-info .ybt-lead-text{
    margin-top:20px;
    font-size:1.25rem;
    text-align:center;
  }

  #recruit-info .ybt-req-trigger{
    padding:20px;
    gap:12px;
  }

  #recruit-info .ybt-req-trigger-label{
    font-size:15px;
    line-height:1.7;
  }

  #recruit-info .ybt-req-icon{
    margin-top:4px;
  }
}

@media (max-width:520px){
  #recruit-info.ybt-req-section{
    padding:52px 0 76px;
    --ybt-bg-shape-height:230px;
  }

  #recruit-info.ybt-req-section::before{
    top:120px;
  }

  #recruit-info .ybt-main-title{
    font-size:2.25rem;
  }

  #recruit-info .ybt-lead-text{
    font-size:1.12rem;
  }
}

/* ======================================================
   Final override: interview hero label structured layout
   ====================================================== */

.sr-interview-hero .sr-interview-hero__label{
  display:flex !important;
  align-items:flex-end !important;
  justify-content:flex-start !important;
  gap:24px !important;
  min-height:0 !important;
  margin:0 0 6px !important;
  padding:0 !important;
  background:transparent !important;
  border:0 !important;
  outline:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
  color:#fff !important;
  line-height:1 !important;
}


.sr-interview-hero .sr-interview-hero__label::before,
.sr-interview-hero .sr-interview-hero__label::after{
  content:none !important;
  display:none !important;
}

.sr-interview-hero__num{
  display:block;
  width:68px;
  flex:0 0 68px;
  color:#fff;


  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size:72px;
  font-weight:400;
  line-height:.7;
  letter-spacing:0;


  transform:none;
  transform-origin:center bottom;

  text-align:right;
}


.sr-interview-hero__text{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:4px;
  padding-bottom:2px;
}

.sr-interview-hero__copy{
  display:block;
  color:#fff;
  font-size:13px;
  font-weight:900;
  font-style:normal;
  line-height:1.2;
  letter-spacing:.08em;
  white-space:nowrap;
}

.sr-interview-hero__en{
  display:block;
  color:#fff;
  font-size:21px;
  font-weight:900;
  font-style:italic;
  line-height:1;
  letter-spacing:.08em;
  white-space:nowrap;
}

@media (max-width:900px){
  .sr-interview-hero .sr-interview-hero__label{
    gap:13px !important;
    margin-bottom:24px !important;
  }
  .sr-interview-hero__num{
    font-size:62px;
    transform:none;
  }

  .sr-interview-hero__text{
    gap:4px;
    padding-bottom:1px;
  }

  .sr-interview-hero__copy{
    font-size:12px;
  }

  .sr-interview-hero__en{
    font-size:18px;
  }
}

@media (max-width:520px){
  .sr-interview-hero .sr-interview-hero__label{
    gap:11px !important;
  }
  .sr-interview-hero__num{
    font-size:54px;
    transform:none;
  }

  .sr-interview-hero__copy{
    font-size:11px;
  }

  .sr-interview-hero__en{
    font-size:16px;
  }
}

/* =========================
   Interview hero title/name position
========================= */

.sr-interview-hero__title{
  margin-top:-10px;
}

.sr-interview-hero__name{
  margin-top:20px;
}


/* ======================================================
   Jobantenna recruit notice
   ====================================================== */

.ybt-jobantenna{
  padding:62px 0 72px;
  background:#fff;
}

.ybt-jobantenna__inner{
  width:min(1000px,calc(100% - 48px));
  margin-inline:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:38px;
}

.ybt-jobantenna__logo{
  width:320px;
  min-height:110px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px 28px;
  border:1px solid #dfe3e8;
  background:#fff;
  transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.ybt-jobantenna__logo:hover{
  border-color:#bfd3e6;
  box-shadow:0 12px 28px rgba(0,89,168,.08);
  transform:translateY(-2px);
}

.ybt-jobantenna__logo img{
  display:block;
  width:100%;
  max-width:280px;
  height:auto;
}

.ybt-jobantenna__body{
  min-width:0;
}

.ybt-jobantenna__body h2{
  margin:0 0 12px;
  color:#0a2d55;
  font-size:30px;
  font-weight:600;
  line-height:1.25;
  letter-spacing:.04em;
}

.ybt-jobantenna__body p{
  margin:0;
  color:#111827;
  font-size:16px;
  font-weight:400;
  line-height:1.8;
  letter-spacing:.03em;
}

@media (max-width:768px){
  .ybt-jobantenna{
    padding:48px 0 58px;
  }

  .ybt-jobantenna__inner{
    width:calc(100% - 48px);
    flex-direction:column;
    gap:22px;
    text-align:center;
  }

  .ybt-jobantenna__logo{
    width:min(280px,100%);
    min-height:96px;
    padding:20px 24px;
  }

  .ybt-jobantenna__body h2{
    font-size:24px;
  }

  .ybt-jobantenna__body p{
    font-size:14px;
    line-height:1.8;
  }
}

@media (min-width:901px){
  .sr-interview-hero__title,
  .sr-interview-hero__name{
    transform:translateY(-25px);
  }

  .sr-interview-hero__title{
    white-space:nowrap;
    font-size:clamp(21px,2.25vw,28px);
    letter-spacing:.01em;
  }
}


@media (min-width:901px){
  .sr-interview-hero{
    grid-template-columns:minmax(240px,320px) minmax(0,1fr);
    gap:28px;
  }

  .sr-interview-hero__body{
    min-width:0;
    padding-right:22px;
  }

  #interview-amano .sr-interview-hero__title,
  #interview-yamanaka .sr-interview-hero__title,
  #interview-sasaki .sr-interview-hero__title,
  #interview-mitsuhashi .sr-interview-hero__title{
    white-space:nowrap;
    font-size:clamp(21px,2.25vw,28px);
    letter-spacing:.01em;
  }
}


.ybt-feature-section{
  padding:78px 0 104px;
  background:#eaf3ee;
}

.ybt-feature-body{
  width:min(1000px,calc(100% - 48px));
  margin-inline:auto;
}

.ybt-feature-layout-b{
  display:flex;
  gap:60px;
  align-items:flex-start;
  margin:0;
}

.ybt-feature-text-area{
  flex:1;
  min-width:0;
  padding-top:4px;
}

.ybt-feature-category-tag{
  display:block;
  margin-bottom:5px;
  color:#667085;
  font-size:13px;
  font-weight:700;
  line-height:1.4;
}

.ybt-feature-main-copy{
  margin:0 0 10px;
  color:#00863b;
  font-size:28px;
  font-weight:700;
  line-height:1.4;
  letter-spacing:.08em;
}

.ybt-feature-desc-text{
  margin:0;
  color:#344054;
  font-size:15px;
  font-weight:500;
  line-height:1.9;
}

.ybt-feature-image-grid{
  flex:1.5;
  min-width:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:15px;
}

.ybt-feature-image-grid img{
  display:block;
  width:100%;
  height:100%;
  min-height:0;
  object-fit:cover;
}

.ybt-feature-img-tall{
  grid-column:2;
  grid-row:1 / span 2;
  min-height:0;
}

.ybt-feature-img-tall img{
  height:100%;
}

@media (max-width:900px){
  .ybt-feature-section{
    padding:62px 0 72px;
  }

  .ybt-feature-body{
    width:calc(100% - 48px);
  }

  .ybt-feature-layout-b{
    flex-direction:column;
    gap:28px;
  }

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

  .ybt-feature-desc-text{
    font-size:14px;
  }

  .ybt-feature-image-grid{
    width:100%;
  }
}

@media (max-width:520px){
  .ybt-feature-section{
    padding:52px 0 58px;
  }

  .ybt-feature-body{
    width:calc(100% - 48px);
  }

  .ybt-feature-image-grid{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .ybt-feature-main-copy{
    font-size:22px;
  }

  .ybt-feature-category-tag{
    font-size:12px;
  }
}


.ybt-feature-links{
  display:grid;
  gap:4px;
  margin-top:10px;
}

.ybt-feature-link{
  position:relative;
  display:inline-flex;
  width:fit-content;
  padding:3px 0;
  color:#006b35;
  font-size:15px;
  font-weight:700;
  letter-spacing:.03em;
  line-height:1.6;
  text-decoration:none;
  overflow:hidden;
  transition:color .25s ease;
}


.ybt-feature-link::after{
  content:none;
}


.ybt-feature-link::before{
  content:"";
  position:absolute;
  left:0;
  bottom:4px;
  width:100%;
  height:1px;
  background:#00863b;
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .32s cubic-bezier(.22,1,.36,1);
}

.ybt-feature-link span{
  position:relative;
  z-index:1;
}

.ybt-feature-link:hover{
  color:#00863b;
}

.ybt-feature-link:hover::before{
  transform:scaleX(1);
}

@media (max-width:520px){
  .ybt-feature-links{
    margin-top:22px;
  }

  .ybt-feature-link{
    font-size:13px;
    padding:6px 0;
  }
}


.sr-interview-hero {
  display: flex;
  margin: 0 0 48px;
  background: var(--sr-blue);
  /*border-radius: 16px;*/
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 89, 168, 0.2);
}
.sr-interview-hero__image {
  /*width: 50%;
  min-height: 360px;*/
  width: 30%;
  min-height: 200px;
  margin: 0;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.sr-interview-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sr-interview-hero__body {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 48px 16px;
}

.sr-interview-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 900;
  line-height: 1.45;
}
.sr-interview-hero__name {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sr-interview-hero__name::before {
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .sr-interview-hero { flex-direction: column; }
  .sr-interview-hero__image {
    width: 100%;
    min-height: 260px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }
  .sr-interview-hero__body {
    width: 100%;
    padding: 32px 24px 40px;
  }
  .sr-interview-hero__title { font-size: 22px; }
}

.sr-interview-hero .sr-interview-hero__label{

  --sr-label-left-shift: 0px;

  --sr-label-gap: 16px;

  --sr-label-number-size: 78px;

  --sr-label-number-scale-x: .64;

  --sr-label-row-gap: 5px;

  --sr-label-interview-size: 21px;

  --sr-label-copy-size: 13px;

  position:relative !important;
  display:grid !important;
  grid-template-columns:auto auto;
  grid-template-rows:auto auto;
  column-gap:var(--sr-label-gap);
  row-gap:var(--sr-label-row-gap);
  align-items:end;
  justify-content:start;

  width:max-content;
  min-height:0 !important;
  margin:0 0 30px !important;
  padding:0 !important;
  transform:translateX(var(--sr-label-left-shift));

  background:transparent !important;
  border:none !important;
  border-radius:0 !important;

  color:#fff;
  font-size:var(--sr-label-interview-size) !important;
  font-weight:900;
  font-style:italic;
  line-height:1;
  letter-spacing:.08em;
}

.sr-interview-hero .sr-interview-hero__label::before{
  content:"01";
  grid-column:1;
  grid-row:1 / 3;
  align-self:end;

  position:static !important;
  inset:auto !important;
  transform:scaleX(var(--sr-label-number-scale-x)) !important;
  transform-origin:left bottom;

  display:block;
  width:96px;

  color:#fff;
  font-family:
    "HelveticaNeue-UltraLight",
    "Avenir Next Condensed",
    "Helvetica Neue",
    "Arial Narrow",
    sans-serif;
  font-size:var(--sr-label-number-size);
  font-weight:100;
  line-height:.78;
  letter-spacing:.02em;
  font-style:normal;
}

.sr-interview-hero .sr-interview-hero__label::after{
  content:"このまちで、未来をつくる。";
  grid-column:2;
  grid-row:1;
  align-self:end;

  position:static !important;
  inset:auto !important;
  transform:none !important;

  color:#fff;
  font-size:var(--sr-label-copy-size);
  font-weight:900;
  font-style:normal;
  line-height:1.2;
  letter-spacing:.08em;
  white-space:nowrap;
}

.sr-interview-hero .sr-interview-hero__label{
  grid-auto-flow:row;
}

#interview-amano .sr-interview-hero__label::before{
  content:"01";
}

#interview-yamanaka .sr-interview-hero__label::before{
  content:"02";
}

#interview-sasaki .sr-interview-hero__label::before{
  content:"03";
}

#interview-mitsuhashi .sr-interview-hero__label::before{
  content:"04";
}

@media (max-width:900px){
  .sr-interview-hero .sr-interview-hero__label{
    --sr-label-gap: 13px;
    --sr-label-number-size: 62px;
    --sr-label-number-scale-x: .66;
    --sr-label-row-gap: 4px;
    --sr-label-interview-size: 18px;
    --sr-label-copy-size: 12px;

    margin-bottom:24px !important;
  }

  .sr-interview-hero .sr-interview-hero__label::before{
    width:76px;
  }
}

@media (max-width:520px){
  .sr-interview-hero .sr-interview-hero__label{
    --sr-label-gap: 11px;
    --sr-label-number-size: 54px;
    --sr-label-number-scale-x: .68;
    --sr-label-row-gap: 4px;
    --sr-label-interview-size: 16px;
    --sr-label-copy-size: 11px;
  }

  .sr-interview-hero .sr-interview-hero__label::before{
    width:66px;
  }
}


.ybt-feature-layout-b{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.5fr);
  column-gap:60px;
  row-gap:56px;
  align-items:start;
}

.ybt-feature-text-area{
  min-width:0;
}

.ybt-feature-image-grid{
  min-width:0;
}

.ybt-feature-map{
  grid-column:1 / -1;
  overflow:hidden;
  background:#dfeee6;
}

.ybt-feature-map iframe{
  display:block;
  width:100%;
  height:520px;
  border:0;
}

@media (max-width:900px){
  .ybt-feature-layout-b{
    grid-template-columns:1fr;
    row-gap:36px;
  }

  .ybt-feature-map{
    grid-column:1;
  }

  .ybt-feature-map iframe{
    height:400px;
  }
}

@media (max-width:520px){
  .ybt-feature-layout-b{
    row-gap:30px;
  }

  .ybt-feature-map iframe{
    height:300px;
  }
}

.sr-header {
  position: absolute !important;
}

.sr-logo {
  position: relative !important;
}

@media (max-width: 900px) {
  .sr-section-head {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .sr-section-title {
    width: 100%;
    text-align: center;
  }

  #recruit-info .ybt-section-header {
    text-align: center;
  }

  #recruit-info .ybt-main-title {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .sr-hero-lead {
    position: static !important;
    display: block;
    width: auto !important;
    margin: 18px 0 0 !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6 !important;
    letter-spacing: .08em;
  }

  .sr-section-title,
  #recruit-info .ybt-main-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 520px) {
  .sr-hero-lead {
    margin-top: 14px !important;
    font-size: 12px;
    line-height: 1.55 !important;
  }

  .sr-section-title,
  #recruit-info .ybt-main-title {
    font-size: 2.25rem;
  }
}

/* ======================================================
   SP hero lead / Jobantenna text / scroll top
====================================================== */

.scroltop {
  position: fixed;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 89, 168, .92);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility 0s linear .35s,
    background .3s ease;
  -webkit-tap-highlight-color: transparent;
}

.scroltop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility 0s linear 0s,
    background .3s ease;
}

.scroltop:hover {
  background: #003f86;
}

.scroltop span {
  display: none;
}

.scroltop::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg) translate(2px, 2px);
}

@media (max-width: 900px) {
  .sr-hero-lead {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .ybt-jobantenna__body p {
    font-size: 16px !important;
    line-height: 1.9;
  }
}

@media (max-width: 520px) {
  .sr-hero-lead {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .ybt-jobantenna__body p {
    font-size: 15px !important;
  }

  .scroltop {
    right: 16px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }
}

/* ======================================================
   SP apply button / Jobantenna break / Yubetsu text / section spacing
====================================================== */

.sr-people {
  padding-bottom: 42px;
}

#recruit-info.ybt-req-section {
  padding-top: 40px;
}

@media (max-width: 900px) {
  .sr-people {
    padding-bottom: 32px;
  }

  #recruit-info.ybt-req-section {
    padding-top: 30px;
  }

  .ybt-req-apply-btn {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 18px 20px 20px;
    font-size: 16px;
    line-height: 1.45;
  }

  .ybt-req-apply-logo {
    height: 38px;
    width: auto;
    max-width: min(260px, 82%);
  }

  .ybt-feature-category-tag {
    font-size: 14px;
    line-height: 1.5;
  }

  .ybt-feature-main-copy {
    font-size: 27px;
    line-height: 1.45;
  }

  .ybt-feature-desc-text {
    font-size: 16px;
    line-height: 2;
  }

  .ybt-feature-link {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 520px) {
  .sr-people {
    padding-bottom: 26px;
  }

  #recruit-info.ybt-req-section {
    padding-top: 26px;
  }

  .ybt-req-apply-btn {
    gap: 9px;
    padding: 17px 18px 19px;
    font-size: 15px;
  }

  .ybt-req-apply-logo {
    height: 36px;
    max-width: min(240px, 86%);
  }

  .ybt-feature-category-tag {
    font-size: 13px;
  }

  .ybt-feature-main-copy {
    font-size: 25px;
  }

  .ybt-feature-desc-text {
    font-size: 15.5px;
    line-height: 2;
  }

  .ybt-feature-link {
    font-size: 14px;
  }
}
