@charset "utf-8";
/* common */
html {
    font-size: 2.667vw;
      overflow-x: hidden;
  }
  
  body {
      font-family:
          'Noto Sans JP',
          Arial,
          sans-serif ;
      font-style: normal;
      font-weight: 700;
      color: #333;
      line-height: 1.4;
      background-color: #fff;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      font-size: 1.6rem;
  }

  @media (min-width: 480px) {
    body {
        background-image: url("../img/pc_bg.png");
        background-size: cover;
        background-position: center top;
        background-attachment: fixed;
    }

    .container {
        max-width: 480px;
        margin: 0 auto;
    }
  }
  
  @media (min-width: 480px) {
    html {
        font-size: 12.8px;
    }
  }
  
  @media (min-width: 768px) {
    html {
        font-size: 12.8px;
    }
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 0;  
}

.pc_side {
    display: none;
}

@media (min-width: 1024px) {

    .pc_side {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10;
    }

    .pc_left {
        position: absolute;
        top: 180px;
        left: 0;
        width: calc(50% - 240px);
        display: flex;
        flex-direction: column;
        align-items: center;
        pointer-events: auto;
    }

    .pc_logo {
        width: 110px;
        height: auto;
    }

    .pc_catch {
        margin-top: 30px;
        font-size: 1.4rem;
        text-align: center;
        white-space: nowrap;
    }

    .pc_rs_logo {
        margin-top: 30px;
        width: 250px;
        height: auto;
    }

    .pc_cta {
        margin-top: 55px;
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .pc_right {
        position: absolute;
        top: 520px;
        right: 0;
        width: calc(50% - 240px);
        display: flex;
        justify-content: center;
        pointer-events: auto;
    }

    .pc_sns_group {
        display: flex;
        flex-direction: row;
        gap: 45px;
        align-items: flex-start;
    }

    .pc_sns_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-decoration: none;
        color: inherit;
    }

    .pc_sns_item_hp {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: inherit;
    }

    .pc_sns_icon01 {
        width: 65px;
        height: auto;
    }

    .pc_sns_icon02 {
        width: 45px;
        height: auto;
    }

    .pc_sns_icon03 {
        width: 50px;
        height: auto;
    }

    .pc_sns_txt {
        font-size: 1.2rem;
        text-align: center;
    }
}

    /* =====================
   PC_CTA
   ===================== */
   .pc_cta {
    display: block;
    justify-content: center;
    text-align: center;
}

.pc_cta_time {
text-align: center;
color: #d30000;
position: relative;
display: inline-block;
font-size: 1.4rem;
}

.pc_cta_time::before,
.pc_cta_time::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 2px;
    height: 22px;
    background: #d30000;
}

.pc_cta_time::before {
    left: 0;
    margin-left: -10px;
    transform: translateY(-50%) rotate(-25deg);
}

.pc_cta_time::after {
    right: 0;
    margin-right: -10px;
    transform: translateY(-50%) rotate(25deg);
}

.pc_cta_box {
display: flex;
justify-content: center;
align-items: center;
margin: 4px auto 0px;
padding: 13px 10px;
border-radius: 6px;
background: var(--CTA, linear-gradient(0deg, #9C0000 0%, #F00000 100%));
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
position: relative;
overflow: hidden;
max-width: 310px;
}

       /* CTA 光アニメーション */
       .pc_cta_box::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 40%;
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%
        );
        animation: cta-shine 5s ease-in-out infinite;
    }
    
    @keyframes cta-shine {
        0%   { left: -100%; }
        40%  { left: 200%; }
        100% { left: 200%; }
    }

.pc_cta_txt {
color: #fff;
font-size: 1.8rem;
font-weight: 700;
letter-spacing: 1.4px;
}

.pc_cta_item {
width: 5%;
height: auto;
}

.pc_cta a {
display: block;
text-decoration: none;
}

/* =====================
   メインビジュアル
   ===================== */

   .main {
    position: relative;
    width: 100%;
    background-color: #fff;
   }

   .mv_bg {
    width: 100%;
    height: auto;
    display: block;
   }

   .mv_ttl_group {
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
   }

   .mv_ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
   }

   .logo {
    width: 18px;
    height: auto;
   }

   .txt_logo {
    width: 94px;
    height: auto;
   }

   .mv_ttl_txt {
    margin-top: 3px;
    font-size: 1.2rem;
   }

@keyframes slide-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.mv_slider_wrap {
    position: absolute;
    top: 0;
    right: -22px;
    height: calc(100% - 420px);
    overflow: hidden;
    z-index: 2;
}

@media (min-width: 425px) {
    .mv_slider_wrap {
        height: calc(100% - 380px);
    }
}

.mv_slider_inner {
    display: flex;
    flex-direction: column;
    animation: slide-up 24s linear infinite;
}

.mv_slider {
    color: rgba(255, 255, 255, 0.70);
    font-family: "Noto Sans JP";
    font-size: 6.4rem;
    font-weight: 900;
    line-height: normal;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
    padding-bottom: 30px;
    white-space: nowrap;
}



   .mv_ttl_box {
    position: absolute;
    top: 174px;
    width: 100%;
   }

   .mv_ttl01 {
    margin-left: 5%;
    width: 175px;
    height: auto;
    display: block;
   }

   .mv_ttl02 {
    margin-left: 10%;
    width: 256px;
    height: auto;
    display: block;
   }

   .mv_ttl03 {
    margin-left: 10%;
    width: 297px;
    height: auto;
    display: block;
   }

   .mv_subttl_group{
    position:relative;
    width: 330px;
    margin:0 auto;
    }

    @media (min-width: 480px) {
        .mv_subttl_group {
            width: 400px;
            height: auto;
        }
    }

    .mv_item{
    width:100%;
    display:block;
    }

    .mv_subttl{
    position:absolute;
    top:48%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    text-align:center;
    }

    .mv_subttl01{
        font-size:1.7rem;
        font-weight:900;
        background:linear-gradient(
                90deg,
                #E88C00 0%,
                #F3BC27 22.12%,
                #E88C00 100%
            );
        -webkit-background-clip:text;
        -webkit-text-fill-color:transparent;
    }

    .mv_subttl02{
        color:#fff;
        font-size:1.7rem;
    }

    .mv_item02 {
        position: absolute;
        margin-top: -100px;
        z-index: -1;
    }

    .mv_job_group {
        justify-content: center;
        display: flex;
        margin-top: 4px;
        gap: 7px;
    }

    .mv_job_txt {
        display:flex;
        justify-content:center;
        align-items:center;
        font-size: 1.2rem;
        font-weight: 500;
        color: #fff;
        background-color: #000;
        width: 109px;
        height: 20px;
        border-radius: 4px;
    }

    @media (min-width: 480px) {
        .mv_job_txt {
            width: 130px;
        }
    }

    @media (max-width: 360px) {
        .mv_subttl_group {
            margin-top: 20px;
        }
    }

    @media (min-width: 390px) {
        .mv_job_txt {
            font-size: 1.2rem;
            height: 24px;
        }
    
        .mv_subttl_group {
            margin-top: -20px;
        }
    }
    
    @media (min-width: 425px) {
        .mv_job_txt {
            font-size: 1rem;
            height: 24px;
        }
    
        .mv_subttl_group {
            margin-top: -50px;
        }
    }

    @media (min-width: 480px) {
        .mv_job_txt {
            font-size: 1rem;
            height: 24px;
        }
    
        .mv_subttl_group {
            margin-top: -110px;
        }
    }

    .mv_box {
        position: relative;
        display: flex;
        margin: 14px 18px 11px 18px;
        justify-content: center;
        background-color: #fff;
        border-radius: 4px;
        border: 0.8px solid #C1C1C1;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.50);
    }

    @media (min-width: 480px) {
        .mv_box {
            margin: 14px 30px 11px;
        }
    }

    .mv_box_group01,
    .mv_box_group02,
    .mv_box_group03 {
        display: block;
        justify-content: center;
        text-align: center;
        position: relative;
        padding: 6px 13px 6px 6px;
    }

    .mv_box_group01 {
        padding: 6px;
    }

    .mv_box_group02 {
        padding: 6px 8px 6px 8px;
    }

    .mv_box_group03 {
        padding: 6px 8px 6px 14px;
    }

    .mv_box_group01:not(:last-child)::after, 
    .mv_box_group02:not(:last-child)::after, 
    .mv_box_group03:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 80%;
        background: #C1C1C1;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.50);
    }

    .mv_icon {
        margin: 0 auto;
        width: auto;
        height: 39px;
    }

    .mv_box_txt {
        font-size: 0.9rem;
        margin-top: 3px;
    }

    .mv_box_ttl {
        font-size: 1.2rem;
        background: var(--o_y_o, linear-gradient(90deg, #E88C00 0%, #F3BC27 22.12%, #E88C00 100%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* =====================
   CTA
   ===================== */
   .cta {
        display: block;
        justify-content: center;
        text-align: center;
   }

   .cta_time {
    text-align: center;
    color: #d30000;
    position: relative;
    display: inline-block;
   }

   .cta_time::before,
   .cta_time::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 2px;
        height: 22px;
        background: #d30000;
    }

    .cta_time::before {
        left: 0;
        margin-left: -10px;
        transform: translateY(-50%) rotate(-25deg);
    }
    
    .cta_time::after {
        right: 0;
        margin-right: -10px;
        transform: translateY(-50%) rotate(25deg);
    }

   .cta_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4px 30px 0px;
    padding: 13px 0;
    gap: 10px;
    border-radius: 6px;
    background: var(--CTA, linear-gradient(0deg, #9C0000 0%, #F00000 100%));
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
   }

           /* CTA 光アニメーション */
           .cta_box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 40%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent 0%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 100%
            );
            animation: cta-shine 5s ease-in-out infinite;
        }
        
        @keyframes cta-shine {
            0%   { left: -100%; }
            40%  { left: 200%; }
            100% { left: 200%; }
        }

   .cta_txt {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1.76px;
   }

   .cta_item {
    width: 5%;
    height: auto;
   }

   .cta a {
    display: block;
    text-decoration: none;
    }

    /* =====================
   wr
   ===================== */
   .wr {
    position: relative;
    background-color: #fff;
   }

   .wr_yellow_point {
    position: absolute;
    margin-left: -16px;
    width: 83px;
    height: auto;
   }

   .wr_ttl {
    position: relative;
    margin: 0 auto;
    padding: 24px 24px 6px;
   }

   .wr_container {
    margin: 0 auto;
    margin-left: 30px;
    display: block;
    margin-top: 10px;
   }

   .wr_contents {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
   }

   .wr_check {
    width: 16px;
    height: 13px;
   }

   .wr_txt {
    font-size: 1.3rem;
    letter-spacing: 0.39px;
   }

   .wr_under01,
   .wr_under02 {
    margin: 0 auto;
    width: 20px;
    height: auto;
   }

   .wr_under01 {
    margin-top: 18px;
   }

   .wr_subhead {
    letter-spacing: 0.48px;
    text-align: center;
    margin-top: 14px;
   }

   .wr_head {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 4px;
    font-size: 4rem;
    transform: rotate(-2.68deg);
    font-family: Yellowtail;
    letter-spacing: 0.8px;
    background: linear-gradient(187deg, #BCBCBC 18.12%, #4A4A4A 27.6%, #BCBCBC 49.14%, #494949 63.79%, #A4A4A4 84.04%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

   .wr_rs_comeon {
    margin-top: -70px;
   }

    /* =====================
   ms
   ===================== */
   .ms {
    position: relative;
   }

   .ms{
    position:relative;
    background:url("../img/bg.png");
    background-size:cover;
    padding-top:24px;
    padding-bottom:32px;
    }

   .ms_top {
    position: absolute;
    top: 24px;
    left: 6%;
    width: 189px;
    height: auto;
    transform: rotate(-3deg);
    z-index: 2;
   }

   @media (min-width: 425px) {
    .ms_top {
        left: 10%;
    }
}

   @media (min-width: 480px) {
    .ms_top {
        left: 15%;
    }
}

   .ms_ttl {
    position: absolute;
    top: 85px;
    left: 6%;
    width: 166px;
    height: auto;
    transform: rotate(-3deg);
    z-index: 2;
   }

   @media (min-width: 425px) {
    .ms_ttl {
        left: 10%;
    }
}

   @media (min-width: 480px) {
    .ms_ttl {
        left: 15%;
    }
}

   .ms_item {
    position: absolute;
    top: 175px;
    left: 90px;
    font-size: 2rem;
    transform: rotate(-3deg);
    font-family: Yellowtail;
    letter-spacing: 0.4px;
    z-index: 2;
    background: linear-gradient(187deg, #BCBCBC 18.12%, #4A4A4A 27.6%, #BCBCBC 49.14%, #494949 63.79%, #A4A4A4 84.04%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
   }

   .ms_rock {
    position: absolute;
    top: -20px;
    right: 5%;
    width: 129px;
    height: auto;
    z-index: 2;
   }

   @media (min-width: 425px) {
    .ms_rock {
        right: 10%;
    }
}

   .ms_video {
    position: static;
    margin-top: 198px;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 10px;
    overflow: hidden;
}

@media (min-width: 480px) {
    .ms_video {
        margin-left: 50px;
        margin-right: 50px;
    }
}

.ms_video_thumb {
    position: relative;
    cursor: pointer;
}

.ms_video_img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.ms_play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    padding-left: 18px;
    font-size: 2.7rem;
    color: #000;
    pointer-events: none;
}

.ms_video_frame {
    display: none;
}

.ms_video_frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 10px;
    display: block;
}

    /* =====================
   point
   ===================== */

   .point {
    display: block;
    justify-content: center;
    background-color: #fff;
    padding-bottom: 36px;
   }

   .point_top {
    position: relative;
    width: 281px;
    height: auto;
    margin: 0 auto;
    transform: rotate(-2.976deg);
    padding-top: 20px;

   }

   .point_ttl_item {
    position: absolute;
    width: 138px;
    height: auto;
   }
   
   .point_ttl01 {
    margin-left: 7%;
    margin-top: 20px;
    width: 241px;
    height: auto;
    transform: rotate(-2.976deg);
   }

   @media (min-width: 425px) {
    .point_ttl01 {
        margin-left: 15%;
    }
}

   .point_ttl02 {
    margin-left: 9%;
    margin-top: 10px;
    width: 326px;
    height: auto;
    transform: rotate(-2.976deg);
   }

   @media (min-width: 425px) {
    .point_ttl02 {
        margin-left: 18%;
    }
}

   .point_subtop {
    margin: 0 auto;
    width: 317px;
    height: auto;
    transform: rotate(-2.976deg);
    margin-top: 5px;
   }

   .point_item {
    margin-top: 8px;
}

   .point_container {
    margin-top: 10px;
    display: block;
    margin-bottom: 20px;
   }

   .point_contents {
    display: block;
    justify-content: center;
    margin-top: 16px;
   }

   .point_box {
        position: relative;
        display: block;
        width: 350px;
        margin: 0 auto;
    }

    @media (min-width: 410px) {
        .point_box {
            width: 400px;
            height: auto;
        }
    }

    @media (min-width: 480px) {
        .point_box {
            width: 430px;
            height: auto;
        }
    }

    .point_head_subitem {
        display: block;
        width: 100%;
        height: auto;
    }

    .point_box_text {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .point_number,
    .point_number01 {
        position: absolute;
        top: -10px;
        left: 10px;
        transform: rotate(5.94deg);
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.20);
        font-family: Antonio;
        font-size: 5rem;
        font-weight: 600;
        background: linear-gradient(90deg, #E88C00 0%, #F3BC27 22.12%, #E88C00 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent; /* ← 念のため追加 */
        z-index: 1;
    }

    .point_number01 {
        top: -20px;
        left: 2px;
    }

   .point_head,
   .point_head02 {
    position: relative;
    color: #FFF;
    font-size: 2rem;
   }

   .point_head02 {
    left: 12px;
   }

   .point_head .orange,
   .point_head02 .orange {
    color: #F88303;
   }

   .point_txt {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 171.429%;
    letter-spacing: 0.56px;
    margin: 0 28px;
   }

   .point_txt .orange {
    color: #F88303;
   }

    /* =====================
   voice
   ===================== */
   .voice {
    position: relative;
    padding-bottom: 35px;
    display: block;
    background-image: url("../img/voice_bg.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
   }

   .voice_subttl_group {
    text-align: center;
   }

   .voice_subttl {
    position: relative;
    display: inline-block;
    text-align: center;
    color: #FFF;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    transform: rotate(-4.308deg);
    top: 0;
    padding-top: 36px;
    }

    .voice_subttl::before,
    .voice_subttl::after {
        content: '';
        position: absolute;
        top: 80%;
        width: 3px;
        height: 32px;
        background: #FFF;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    }

    .voice_subttl::before {
        left: 0;
        margin-left: -16px;
        transform: translateY(-50%) rotate(-25deg);
    }

    .voice_subttl::after {
        right: 0;
        margin-right: -16px;
        transform: translateY(-50%) rotate(25deg);
    }

   .voice_ttl {
    text-align: center;
    color: #FFF;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 5.6rem;
    font-weight: 900;
    letter-spacing: 2.24px;
    transform: rotate(-4.308deg);
   }

   .voice01 {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    margin: -12px 22px 0;
    padding: 18px 14px 22px;
   }

   .voice_item01_group {
    margin-top: -10px;
    position: relative;
    top: -3px;
    }

    .voice_item02_group {
    margin-top: -85px;
    position: relative;
    top: 75px;
    }

   .voice_item01 {
    color: #000;
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: #000;
    transform: rotate(-17.43deg);
    font-family: "Bad Script";
    font-size: 3.2rem;
    letter-spacing: 1.6px;
    margin-left: 10px;
   }

   .voice_item02 {
    color: #000;
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: #000;
    transform: rotate(15.312deg);
    font-family: "Bad Script";
    font-size: 3.2rem;
    letter-spacing: 1.6px;
    margin-left: 70%;
   }

   .voice_block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 18px;
   }

   .voice01_group,
   .voice02_group {
    display: flex;
   }

   .voice_img01,
   .voice_img02 {
    width: 28%;
    height: auto;
   }

   .voice_box01 {
    display: block;
    gap: 4px;
    margin-left: 5%;
   }

   .voice_course {
    font-size: 1.8rem;
    line-height: 133.333%;
   }

   .voice_time,
   .voice_name {
    font-weight: 400;
   }

   .voice_time {
    margin-top: 4px;
   }

   .voice_name {
    margin-bottom: 4px;
   }

   .voice_top01,
   .voice_top02 {
    color: #F88303;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 133.333%;
   }

   .voice_box02 {
    display: block;
    gap: 4px;
    margin-right: 12px;
    }

    .voice_contents {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
    }

    .voice_box,
    .voice_box02 {
    display: block;
    gap: 10px;
    }

    .voice_img02 {
        margin-left: 20px;
    }

    .voice_q {
    font-size: 1.4rem;
    line-height: 171.429%;
    }

    .voice_a {
    font-size: 1.4rem;
    line-height: 171.429%;
    font-weight: 400;
    }

    .voice_a .blue {
    color: #1758A6;
    }
    
        .cta_time_white {
        margin-top: 25px;
        margin-bottom: 3px;
        text-align: center;
        color: #fff;
        position: relative;
        display: inline-block;
        }
    
       .cta_time_white::before,
       .cta_time_white::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 2px;
            height: 22px;
            background: #fff;
        }
    
        .cta_time_white::before {
            left: 0;
            margin-left: -10px;
            transform: translateY(-50%) rotate(-25deg);
        }
        
        .cta_time_white::after {
            right: 0;
            margin-right: -10px;
            transform: translateY(-50%) rotate(25deg);
        }

    /* =====================
   course
   ===================== */
   .cours {
    display: block;
    position: relative;
    padding-top: 40px;
    background-color: #fff;
    }

    .cours_head_group {
    position: relative;
    display: flex;
    align-items: center;
    }

    .cours_head {
        position: relative;
        width: 200px;
    }

    .voice_yellow_item {
        position: absolute;
        top: -20px;
        left: 16px;
        width: 147px;
        height: auto;
        z-index: 0; 
    }

    .course_top_wrap {
        text-align: center;
        position: relative;
        z-index: 1;
        width: 100%;
    }
    
    .course_top {
        font-size: 3rem;
        font-weight: 900;
        letter-spacing: 1.5px;
        transform: rotate(-4.308deg);
        position: relative;
        display: inline-block;
    }
    
    .course_top::before,
    .course_top::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 2px;
        height: 30px;
        background-color: #333;
    }
    
    .course_top::before {
        left: -16px;
        transform: translateY(calc(-50% + 3px)) rotate(-25deg);
    }
    
    .course_top::after {
        right: -16px;
        transform: translateY(calc(-50% + 3px)) rotate(25deg);
    }

   .course_ttl {
    text-align: center;
    transform: rotate(-4.308deg);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 1.2px;
   }

   .course_item {
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #F3BC27;
    font-family: "Bad Script";
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.66px;
    transform: rotate(5.967deg);
    background: var(--o_y_o, linear-gradient(90deg, #E88C00 0%, #F3BC27 22.12%, #E88C00 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 73%;
   }

   .course_contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 20px;
    gap: 12px;
   }

   .course_container {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.course_img {
    width: 100%;
    height: auto;
    display: block;
}

.course_box {
    position: absolute;
    top: 14px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-bottom: 20px;
}

.course_ttl_group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.course_number {
    color: #FFF;
    font-family: Antonio;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 92.308%;
    letter-spacing: 0.78px;
}

.course_job {
    color: #FFF;
    font-weight: 500;
    line-height: 150%;
}

.course_job_en {
    color: #FFF;
    font-family: Antonio;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.64px;
}

.course_detail {
    position: absolute;
    bottom: 12px;
    left: 16px;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 6px;
}


   .course_detail_txt01,
   .course_detail_txt02,
   .course_detail_txt03,
   .course_detail_txt04,
   .course_detail_txt05,
   .course_detail_txt06,
   .course_detail_txt07,
   .course_detail_txt08 {
    font-size: 1.4rem;
    font-weight: 700;
   }

   .course_detail_txt01 {
    color: #d30000;
   }

   .course_detail_txt02 {
    color: #976A00;
   }
   .course_detail_txt03 {
    color: #007011;
   }
   .course_detail_txt04 {
    color: #B574AC;
   }
   .course_detail_txt05 {
    color: #CE6D28;
   }
   .course_detail_txt06 {
    color: #98069F;
   }
   .course_detail_txt07 {
    color: #457C18;
   }
   .course_detail_txt08 {
    color: #1758A6;
   }

   .course_detail_item {
    width: 12.999px;
    height: 12.999px;
   }

    /* =====================
   モーダルウィンドウ
   ===================== */
   .m_course {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 90%;
    max-width: 360px;
    border-radius: 15px;
    overflow: visible;
    }

    .m_course.active {
        display: block;
    }

    .m_course_img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 15px;
    }

.m_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
}

.m_overlay.active {
    display: block;
}

.m_close {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 200;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: none;
    font-size: 2rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.course_container {
    cursor: pointer;
}

    /* =====================
   モーダルウィンドウCTA
   ===================== */
   .m_cta {
    position: absolute;
    bottom: 18px;
    left: 21px;
    right: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    gap: 4px;
    border-radius: 6px;
    background: var(--CTA, linear-gradient(0deg, #9C0000 0%, #F00000 100%));
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    }

    .m_cta_txt {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    }

    .m_cta_item {
    width: 5%;
    height: auto;
    }

   .course_under_wrap {
        position: relative;
        display: block;
        overflow: hidden;
        margin-top: 10px;
    }
    
    .course_under_item01 {
        position: absolute;
        top: 0;
        left: 0;
        width: 96.779px;
        height: auto;
        z-index: 2;
    }
    
    @media (min-width: 480px) {
        .course_under_item01 {
            left: 40px;
        }
    }

    .course_under_top {
        position: relative;
        margin-left: 20px;
        width: 219px;
        height: auto;
        transform: rotate(-3.77deg);
        margin-top: 24px;
        z-index: 2;
    }

    @media (min-width: 480px) {
        .course_under_top {
            margin-left: 40px;
        }
    }

    .course_under_ttl {
        margin-left: 40px;
        margin-top: 2px;
        width: 243px;
        height: auto;
        transform: rotate(-7.14deg);
        position: relative;
        z-index: 3;
    }

    @media (min-width: 480px) {
        .course_under_ttl {
            margin-left: 60px;
        }
    }

    .course_under_item02 {
        position: relative;
        top: -90px;
        z-index: 0;
    }

    .course_under_img {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: auto;
        z-index: 1;
        top: 64px;
    }

    /* =====================
   place
   ===================== */
   .place {
    position: relative;
    display: block;
    margin-top: -140px;
   }

   @media (min-width: 480px) {
    .place {
        margin-top: -160px;
    }
}

   .place_bg {
    display: block;
    width: 100%;
    height: auto;
   }

   .place_contents {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.60);
    padding: 28px 25px 43px;
    box-sizing: border-box;
    margin: 55px 20px 45px;
   }

   @media (min-width: 425px) {
    .place_contents {
        margin-top: 60px;
    }
    }

   @media (min-width: 480px) {
    .place_contents {
        margin-top: 80px;
    }
    }

   .place_ttl {
    color: #FFF;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    font-family: "Noto Sans JP";
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 138.462%;
    letter-spacing: 1.3px;
   }

   .place_container {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 24px;
}

.place_box {
    display: flex;
    align-items: center;
    gap: 6px;
}

.place_icon01 {
    width: 9%;
    height: auto;
}

.place_icon02 {
    width: 9%;
    height: auto;
}

.place_icon03 {
    width: 8%;
    height: auto;
}

.place_icon04 {
    width: 9%;
    height: auto;
}

.place_txt {
    color: #FFF;
    text-shadow: 0 0 10px #000;
    line-height: 150%;
    letter-spacing: 0.8px;
    margin-left: 8px;
}

    /* =====================
   word
   ===================== */
    .word {
        position: relative;
        display: block;
        padding-bottom: 32px;
    }

    .word_bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -10;

    }

    .word_subttl {
        position: relative;
        z-index: 1;
        display: block;
        margin: 0 auto;
        width: 293px;
        height: auto;
        transform: rotate(-4deg);
        top: 23px;
    }

    .word_ttl {
        position: relative;
        z-index: 1;
        display: block;
        margin: 0 auto;
        width: 324px;
        height: auto;
        transform: rotate(-4deg);
        margin-top: 28px;
    }

    .word_name {
        position: relative;
        z-index: 1;
        margin-left: 31px;
        margin-top: 22px;
    }

    @media (min-width: 480px) {
        .word_name {
            margin-left: 60px;
        }
    }

    .word_item01 {
        position: relative;
        z-index: 1;
        font-family: Yellowtail;
        font-size: 4.2rem;
        font-weight: 400;
        letter-spacing: 0.84px;
        background: linear-gradient(187deg, #BCBCBC 18.12%, #4A4A4A 27.6%, #BCBCBC 49.14%, #494949 63.79%, #A4A4A4 84.04%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transform: rotate(-4.705deg);
        top: 20px;
        margin-left: 50px;
    }

    @media (min-width: 480px) {
        .word_item01 {
            top: 5px;
            margin-left: 60px;
        }
    }

    .word_item02 {
        position: relative;
        z-index: 1;
        font-family: Yellowtail;
        font-size: 3.4rem;
        font-weight: 400;
        letter-spacing: 0.68px;
        background: linear-gradient(187deg, #BCBCBC 18.12%, #4A4A4A 27.6%, #BCBCBC 49.14%, #494949 63.79%, #A4A4A4 84.04%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transform: rotate(-4.705deg);
        top: 20px;
        margin-left: 25px;
    }

    @media (min-width: 480px) {
        .word_item02 {
            top: 5px;
            margin-left: 40px;
        }
    }
    
    .word_img {
        position: relative;
        z-index: 1;
        width: 240px;
        height: auto;
        margin-left: 43%;
        margin-top: -140px;
    }

    @media (min-width: 480px) {
        .word_img {
            margin-left: 50%;
            margin-top: -160px;
        }
    }

    .word_contents {
        position: relative;
        z-index: 1;
        margin: -40px 25px 26px;
    }

    .word_container {
        position: relative;
        padding: 14px 25px;
        border-radius: 5px;
        border: 4px solid #976A00;
        background: linear-gradient(90deg, #DBDBD3 0%, #F2E9D5 50.48%, #DBDBD3 100%);
        box-shadow: 0 0 15px 0 #BCBCBC;
    }

    .word_txt {
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 171.429%;
        margin-top: 20px;
    }

    .word_txt_bold {
        font-size: 1.4rem;
        font-weight: 900;
        line-height: 171.429%;
        margin-top: 20px;
    }

    .word_txt_red {
        color: #D30000;
        text-align: center;
        font-size: 2.2rem;
        font-weight: 900;
        line-height: 145.455%;
        letter-spacing: 0.88px;
        margin-top: 20px;
        margin-bottom: 18px;
    }

    /* =====================
    footer
    ===================== */
    .footer {
        display: block;
        background-color: #fff;
    }

    .footer_box {
        padding-top: 25px;
        justify-content: center;
        align-items: center;
        display: flex;
        gap: 6px;
    }

    .footer_logo {
        width: 41px;
        height: auto;
    }

    .footer_logo_txt {
        width: 182px;
        height: auto;
    }

    .footer_txt {
        margin-top: 10px;
        text-align: center;
        font-size: 1.8rem;
    }

    .footer_contents {
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .footer_contents a {
        display: flex;
        text-decoration: none;
        color: inherit;
    }

    .footer_contents a:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
        width: 0.2px;
        height: 50px;
        background: #000;
    }
    

    .footer_contents a {
        display: flex;
        text-decoration: none;
        color: inherit;
        position: relative;
    }

    .footer_group01 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        position: relative;
    }

    .footer_group02 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        position: relative;
    }

    .footer_group03 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .footer_icon01 {
        width: 46px;
        height: auto;
    }

    .footer_icon02 {
        width: 32px;
        height: auto;
    }

    .footer_icon03 {
        width: 42px;
        height: auto;
    }

    .footer_icon_txt {
        font-size: 1.2rem;
        text-align: center;
    }

    .footer_company {
        position: relative;
        display: block;
        margin-top: 15px;
        overflow: hidden;
        height: auto;
        aspect-ratio: 416 / 216;
    }

    @media (min-width: 480px) {
        .footer_company {
            aspect-ratio: 438 / 216;
        }
    }

    .footer_company_bg {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 471px !important;
        min-width: 471px;
        height: auto;
        top: 0;
    }

        /* レコードアニメーション */
        @keyframes record-spin {
            from {
                transform: translateX(-50%) rotate(0deg);
            }
            to {
                transform: translateX(-50%) rotate(360deg);
            }
        }

        .footer_company_bg {
            display: block;
            position: absolute;
            left: 50%;
            width: 471px !important;
            min-width: 471px;
            height: auto;
            top: 0;
            animation: record-spin 12s linear infinite;
        }

        @media (min-width: 480px) {
            .footer_company_bg {
                width: 570px !important;
                min-width: 570px;
            }
        }

    .footer_company_inner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
        padding-top: 23px;
        box-sizing: border-box;
        z-index: 1;
    }

    .footer_company_head {
        color: #FFF;
        text-align: center;
        line-height: 106.25%;
        letter-spacing: 0.8px;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
        margin-bottom: 14px;
    }

    .footer_company_contents {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }

    .footer_company_txt {
        color: #FFF;
        font-size: 2rem;
        line-height: 110%;
    }

    .footer_company_name {
        color: #FFF;
        font-size: 2rem;
        line-height: 137.5%;
    }

    .footer_company_place {
        color: #FFF;
        font-size: 1.2rem;
        font-weight: 350;
        line-height: 141.667%;
        letter-spacing: 0.6px;
    }

    small {
        font-size: 1.2rem;
        font-weight: 700;
        color: #fff;
    }