@charset "UTF-8";

  /* ===== HERO ===== */
  .hero {
    padding-top:9rem;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 700px;
  }


@media (min-width: 768px){
  .hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 3.75rem;
    height: 100vh;
    height: 100dvh;
  }
}

@media (min-width: 768px){
  .hero::before {
    bottom: -5rem;
  }
}

  .hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/img_main.webp') center/cover no-repeat;
    /* 実際は港・海の写真を使用 */
    background-color: #8aadcc;
    z-index: 0;
  }
  .hero-bg::after {
      content: '';
      display: block;
      position: absolute;
      inset: 0;
      opacity: 0;
      background: rgba(1,18,91,0.40);
      transition: .25s ease-in;
      z-index: 1;
  }

  /* 波装飾 */

  .hero-wave {
    position: absolute;
    bottom:  -0.15px;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
  }

  .hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 白波 */
  .hero-decoration img{
    position: absolute;
    z-index: 3;
    line-height: 0;
    max-width: 100%;
  }

@media (min-width: 767px){
  .hero-decoration img{
    max-width: 60%;
  }
}
  .hero-decoration img.left{
    left: 0;
    bottom: -20rem;
  }

@media (min-width: 767px){
  .hero-decoration img.left{
    bottom: -7rem;
  }
}
@media (min-width: 1025px){
  .hero-decoration img.left{
    bottom: -12rem;
    max-width: 50%;
  }
}

  .hero-decoration img.right{
    right: 0;
    bottom: -3rem;
  }

@media (min-width: 767px){
  .hero-decoration img.right{
    bottom: -5rem;
  }
}

@media (min-width: 1025px){
  .hero-decoration img.right{
    bottom: -13.5rem;
    max-width: 55%;
  }
}

  /* ===== HERO TEXT (縦書き) ===== */
  .hero-text-area {
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    gap: 0;
    z-index: 3;
  }

@media (min-width: 768px){
  .hero-text-area {
    position: absolute;
    right: 60px;
    top: 17.5%;
    margin: 0;
  }
}

  .hero-main-copy {
    writing-mode: vertical-rl;
    font-family: 'Shippori Mincho', serif;
    color: #fff;
    text-align: left;
    line-height: 1.2;
    margin: 0;
  }

  .hero-main-copy .line {
    font-size: clamp(2.125rem, 5vw, 3.75rem);
    letter-spacing: 0.085rem;
    display: block;
    line-height: 1.25;
  }


  .hero-main-copy .line.space{
    margin-top: 5rem;
  }

  .hero-main-copy .line span {
    font-size: clamp(3.75rem, 7vw, 5.625rem);
    letter-spacing: 0.02em;
    font-weight: 400;
  }

  .hero-sub-copy {
    writing-mode: vertical-rl;
    font-family: 'Shippori Mincho', serif;
    color: #fff;
    font-size: clamp(1.65rem , 1.8vw, 2.188rem);
    line-height: 2.0;
    letter-spacing: 0.1em;
    margin: 0;
    opacity: 0.92;
  }


  /* ===== CARD ===== */
  .hero-card {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    border-radius: 1.15rem;
    display: flex;
    overflow: hidden;
    position: relative;
    padding: .85rem;
    margin: 0 auto;
    z-index: 10;
    width: 90%;
  }


@media (min-width: 768px){
  .hero-card {
    bottom: 5%;
    position: absolute;
    left: 2.5%;
    z-index: 4;
    width: 50%;
  }
}

@media (min-width: 1025px){
  .hero-card {
    bottom: 7.5%;
    padding: 1rem;
    left: 3.5%;
    width: 590px;
  }
}

  .hero-card dt {
    align-items: center;
    border-radius: 1rem;
    background-image: url('../img/bg_herocard.svg');
    background-position: 110% bottom;
    background-size: 90px auto;
    background-repeat: no-repeat;
    background-color: var(--color-gold);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 .5rem;
    text-align: center;
    text-align-last: center;
    width: 22.5%;
  }

@media (min-width: 768px){
  .hero-card dt {
    border-radius: 1.25rem;
    width: 6rem;
  }
}
@media (min-width: 1025px){
  .hero-card dt {
    width: 8.75rem;
  }
}

  .hero-card dt p {
    color: var(--bg-white);
    font-size: 3vw;
    font-weight: 600;
    letter-spacing: .025rem;
  }

@media (min-width: 768px){
  .hero-card dt p {
    font-size: 1rem;
  }
}

@media (min-width: 1025px){
  .hero-card dt p {
    font-size: 1.2rem;
    letter-spacing: .15rem;
  }
}

  .hero-card dd {
    padding: 0 0 0 .9rem;
    flex: 1;
  }

@media (min-width: 768px){
  .hero-card dd {
    padding: 0 0 0 1rem;
  }
}

@media (min-width: 1025px){
  .hero-card dd {
    padding: 0 0 0 1.15rem;
  }
}

  .hero-card dd p{
    letter-spacing: .1rem;
  }

  .hero-card dd p.card-catchphrase {
    color: var(--color-gold-02);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.085em;
    margin-bottom: 0.625rem;
  }


  @media (max-width: 1024px){
    .hero-card dd p.card-catchphrase span{
      display: block;
    }
  }
  @media (min-width: 1025px){
    .hero-card dd p.card-catchphrase {
      font-size: 1.12rem;
    }
  }

  .hero-card dd p.card-desc {
    font-size: .85rem;
    margin-bottom: 0.625rem;
  }

@media (max-width: 1024px){
   .hero-card dd p.card-desc br {
    display: none;
  }
}

@media (min-width: 1025px){
  .hero-card dd p.card-desc {
    font-size: 1rem;
  }
}

  .hero-card dd p.card-salary-label {
    font-size: 1rem;
    color: var(--color-gold-02);
    font-weight: 600;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    margin-bottom: 10px;
    position: relative;
    line-height: 1;
  }

@media (min-width: 1025px){
  .hero-card dd p.card-salary-label {
    font-size: 1.125rem;
  }

}

  .hero-card dd p.card-salary-label::before{
    background-color: var(--color-gold-02);
    content: '';
    display: block;
    height: 1px;
    left:0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }

  .hero-card dd p.card-salary-label span{
    background: var(--bg-white);
    padding: 0 .5rem 0 0;
    position: relative;
    z-index: 5;
  }

  .hero-card dd p.card-salary {
    font-size: 3vw;
    font-weight: 500;
  }

@media (min-width: 768px){
  .hero-card dd p.card-salary {
    font-size: .95rem;
  }
}


@media (min-width: 1025px){
  .hero-card dd p.card-salary {
    font-size: 1.25rem;
  }
}

  .hero-card dd p.card-salary strong {
    color: var(--color-gold-02);
    display: inline-block;
    font-size: 10vw;
    font-weight: 600;
    line-height: .5;
  }

@media (max-width: 767px){
  .hero-card dd p.card-salary strong {
    letter-spacing: 0;
  }
}

@media (min-width: 768px){
  .hero-card dd p.card-salary strong {
    font-size: 5.25vw;
  }
}

@media (min-width: 1025px){
  .hero-card dd p.card-salary strong {
    font-size: 3.75rem;
  }
}

  .hero-card dd p.card-salary strong span.small{
    font-size: 55%;
    display: inline-block;
    vertical-align: baseline;
  }
  .hero-card dd p.card-salary small {
    display: block;
    text-align: right;
  }

  /* ===== CTR BUTTONS ===== */
  .hero-ctrs {
    position: relative;
    z-index: 5;
    margin:4rem auto 5rem;
    max-width: 850px;
    width: 90%;
  }

@media (min-width: 768px){
  .hero-ctrs {
    margin: 2.5rem auto 6.25rem;
  }
}

 .hero-ctrs .l-button_set {
  position: relative;
  z-index: 10;
 }


  /* ===== WAVE BG (底部波) ===== */
  .wave_base{
    fill:rgb(0, 0, 0);
    stroke:none;
    color:rgb(251, 251, 254);
    stroke-width:1px;
    stroke-linecap:butt;s
    troke-linejoin:miter;
    opacity:1;
    text-anchor:start;
    dominant-baseline:auto;
  }

  .wave_base_path{
    fill:rgb(219, 238, 243);
    stroke:none;
    color:rgb(251, 251, 254);
    stroke-width:1px;
    stroke-linecap:butt;
    stroke-linejoin:miter;
    opacity:1;
    text-anchor:start;
    dominant-baseline:auto;
  }

  .wave_base_anime{
    fill:rgb(219, 238, 243);
    stroke:none;
    color:rgb(251, 251, 254);
    stroke-width:1px;
    stroke-linecap:butt;
    stroke-linejoin:miter;
    opacity:1;
    text-anchor:start;
    dominant-baseline:auto
  }


@media (prefers-reduced-motion: reduce) {
  .wave_base {
    animation: none;
  }
}






