@charset "utf-8";

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

  .spnone {
    display: none;
  }

  #wrapper {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  header {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
  }

  header .header-inner {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .logo {
    width: 100%;
    height: 85px;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 0;
    position: fixed;
    z-index: 900;
    top: 2%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
  }

  .logo a {
    text-decoration: none;
    color: #0676C3;
    text-align: center;
    display: block;
    margin-top: 36px;
  }

  /* PC用 global-nav*/
  nav.global-nav {
    display: none;
  }

  /* スマホ スライドメニュー */
  .hamburger {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    z-index: 1001;
    cursor: pointer;
    touch-action: manipulation;
    background: #0676C3;
    border-radius: 4px;
  }

  .hamburger span {
    position: absolute;
    left: 50%;
    top: 40%;
    width: 64%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: .3s;
  }

  .hamburger span:nth-child(1) {
    top: 9px;
  }

  .hamburger span:nth-child(2) {
    top: 15px;
  }

  .hamburger span:nth-child(3) {
    top: 21px;
  }

  .hamburger span.menu {
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    background: none;
    font-size: 0.6rem;
    color: #fff;
    text-align: center;
    line-height: 1;
  }

  /* 開いた時（×） */
  .hamburger.active span:nth-child(1) {
    top: 18px;
    transform: translateX(-50%) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    top: 18px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .hamburger.active span.menu {
    opacity: 0;
  }

  .sp-logo {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 800;
    position: relative;
    z-index: 1002;
    padding: 10px 0 0;
    background: #fff;
  }

  .sp-logo a {
    text-decoration: none;
    color: #0676C3;
  }

  #slide-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: auto;
    z-index: 1000;

    opacity: 0;
    transform: translate3d(0, -8px, 0) scale(.98);
    visibility: hidden;
    pointer-events: none;

    transition:
      opacity .25s ease,
      transform .25s ease,
      visibility 0s linear .25s;

    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;

    box-shadow: 0 8px 18px rgba(6, 118, 195, .45);
  }

  #slide-menu::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(6, 118, 195, .65);
    z-index: -1;
  }

  #slide-menu::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 1001;
  }

  #slide-menu.active {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s, 0s, 0s;
  }

  body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
  }

  nav#slide-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out, visibility 0s linear 0s;
  }

  nav#slide-menu ul {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    background: #fff;


    width: 100%;
    list-style: none;
    padding: 20px 0 30px 0;
    margin: 0px auto 10px;
  }

  nav#slide-menu ul li {
    width: 90%;
    margin: 0 auto;
    border-bottom: 1px dotted #0676C3;
  }

  nav#slide-menu>ul>li {
    position: relative;
  }

  nav#slide-menu ul a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    line-height: 2;
    font-weight: bold;
    display: block;
    width: 100%;
    padding: 10px 0 10px 20px;
    position: relative;
  }

  nav#slide-menu ul a.is-current {
    font-weight: bold;
    color: #618ae8;
  }

  nav#slide-menu ul li a {
    position: relative;
    padding-left: 30px;
  }

  nav#slide-menu ul li a::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/common/handle05.png) no-repeat center center / contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }


  /*pagetop*/
  .pagetop {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #0676C3;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(8px);
    font-size: 1.4rem;
  }

  .pagetop img {
    width: 54%;
  }

  .pagetop.is-show,
  #detail-page .pagetop.is-show {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }


  /*footer*/
  footer {
    width: 100%;
    background: #DBF0FF;
    padding: 20px 0 5px 0;
  }

  nav.footer-nav {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
  }

  .footer-nav ul {
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    gap: 5px 20px;
  }

  nav.footer-nav ul {
    width: fit-content;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 0 auto;
    padding: 0 0 30px 0;
    box-sizing: border-box;
    border-radius: 12px;
    align-items: center;
  }

  nav.footer-nav ul li {
    width: fit-content;
    flex-shrink: 0;
  }

  nav.footer-nav ul li a {
    display: block;
    color: #0676C3;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
  }

  footer p.copyright {
    font-size: 0.8rem;
    text-align: center;
    padding: 10px 0;
  }

  main {
    margin: 60px 0 0;
    padding: 0;
  }

  /*main-visual---------------------------*/
  .main-visual {
    width: 96%;
    height: auto;
    margin: 0 auto;
    padding-top: 2px;
  }

  .fade-item img.mv-pc {
    display: none;
  }

  .fade-item img.mv-sp {
    display: block;
  }

  .fade-wrap {
    height: auto;
  }

  .fade-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
  }

  .fade-item {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .8s ease, transform .8s ease;
    border: 6px solid #0071bc;
  }

  .top-page .fade-item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .8s ease, transform .8s ease;
    border: 10px solid #0071bc;
  }


  .fade-item.is-show {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 1段目 */
  .fade-item:nth-child(1) {
    grid-column: 1 / 7;
  }

  /* 2段目 */
  .fade-item:nth-child(2) {
    grid-column: 1 / 7;
  }

  /* 3段目 */
  .fade-item:nth-child(3) {
    grid-column: 1 / 4;
  }

  .fade-item:nth-child(4) {
    grid-column: 4 / 7;
  }

  /* 4段目 */
  .fade-item:nth-child(5) {
    grid-column: 1 / 4;
  }

  .fade-item:nth-child(6) {
    grid-column: 4 / 7;
  }


  /* 7枚目 */
  .overlay-img {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
    z-index: 5;
  }

  .overlay-img.is-show {
    opacity: 1;
  }

  .top-content-wrap {
    width: 100%;
    min-height: 100vh;
    background:
      url(../img/top/top-bg-logo.png) no-repeat left -20px bottom 50px,
      linear-gradient(to bottom, #5EB7F3 0%, #0676C3 100%);
    background-size: 80px auto, 80%;
    padding-bottom: 20px;
    margin-top: 40px;
  }

  .top-catch-wrap {
    width: 100%;
    background:
      url(../img/top/handle01.png) no-repeat left 20px top 20px,
      url(../img/top/track01.png) no-repeat right 20px bottom 20px;

    background-size: 80px auto, 110px auto;
    padding: 100px 0;
  }

  .top-catch {
    width: 90%;
    margin: 10px auto;
    height: auto;

  }

  .top-catch p {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-shadow: 0 3px 6px #0576C3;
    padding-bottom: 20px;
  }

  .top-catch h1 {
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.6;
    border-top: 2px solid #fff;
    font-weight: 900;
    text-shadow: 0 3px 6px #0576C3;
    padding-top: 20px;
  }

  .top-content {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    height: auto;
  }


  .top-content h2 {
    color: #0676C3;
    font-weight: 900;
    font-size: 2.4rem;
    line-height: 1;
  }

  .top-content h2 a {
    color: #0676C3;
    text-shadow: 0 2px 3px #9dabb4;
    text-decoration: none;
  }

  .top-content h3 {
    color: #000;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.8rem;
    padding: 25px 0 20px;
  }

  .top-content p.driver-sub {
    color: #B4D6ED;
    font-size: 2.2rem;
    line-height: 1;
    font-family: Righteous-Regular, sans-serif;
    padding-top: 20px;
  }

  .top-content p.driver-tx {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 500;
  }

  .top-content p.driver-tx-blue {
    font-size: 1rem;
    line-height: 1.6;
    color: #0676C3;
    font-weight: 800;
    padding: 20px 20px 60px 20px;
  }

  .driver01-wrap {
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 40px 20px 150px 20px;
    margin: 0 0 80px 0;
    background: url(../img/top/driver01.png) no-repeat left 20px bottom 20px #fff;
    background-size: 60% auto;
  }

  .driver02-wrap {
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 40px 20px 150px 20px;
    margin: 0 0 80px 0;
    background: url(../img/top/driver02.png) no-repeat right 20px bottom 20px #fff;
    background-size: 60% auto;
  }

  .driver01 {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .driver02 {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .driver01-left,
  .driver02-right {
    flex: 1;
  }

  .driver01-right {
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    background: #DBF0FF;
    box-shadow: 14px 14px 0 #0676C3;
  }

  .driver02-left {
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    background: #DBF0FF;
    box-shadow: -14px 14px 0 #0676C3;
  }

  .driver01-right img {
    margin: 40px 0 0 -20px;
    border-radius: 10px;
  }

  .driver02-left img {
    margin: 40px 0 0 20px;
    border-radius: 10px;
  }

  .btn-more {
    background: #6cb5ef;
    border-radius: 10px;
    margin-top: 20px;
    width: fit-content;
    font-size: 0.8rem;
    line-height: 1.2rem;
    box-shadow: 0 2px 2px #4a9ed6;
  }

  .btn-more a {
    width: 100%;
    padding: 5px 20px;
    display: block;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
  }

  .btn-more a::before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
  }

  /*画像フェードイン*/
  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
  }

  .fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
  }


  /* 遅延 */
  .delay-1 {
    transition-delay: 0.2s;
  }

  .delay-2 {
    transition-delay: 0.4s;
  }

  /*お問合わせボタン*/
  .contact-btn {
    width: 90%;
    background: #0676C3;
    border: solid 2px #C7E9F9;
    border-radius: 20px;
    box-shadow: 0 0 4px 2px #CADBE6;
    color: #fff;
    margin: 50px auto;
    overflow: hidden;
  }

  .contact-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    box-sizing: border-box;
  }

  .contact-btn a::before {
    content: "";
    width: 40px;
    height: 40px;
    background: url(../img/top/handle02.png) no-repeat center center / contain;
    margin-right: 10px;
    flex-shrink: 0;
  }

  /*共通ページ--------------------------*/
  .page-wrap {
    width: 100%;
    min-height: 100vh;
    background:
      url(../img/top/top-bg-logo.png) no-repeat left -20px bottom 50px,
      linear-gradient(to bottom, #5EB7F3 0%, #0676C3 100%);
    background-size: 80px auto, 80%;
    padding-bottom: 20px;
    margin-top: 20px;
  }

  .page-wrap-inner {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0 0;
    height: auto;
  }

  .page-wrap-inner h2 {
    color: #fff;
    text-shadow: 0 2px 2px #6e9fc0;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
  }

  .page-wrap-inner h2::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../img/common/handle02.png) no-repeat center center / contain;
    flex-shrink: 0;
  }

  .page-area {
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    margin: 40px 0 100px 0;
  }

  /*会社概要--------------------------*/
  dl.company-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
    line-height: 2;
  }

  dl.company-list>* {
    box-sizing: border-box;
    padding: 5px;
  }

  dl.company-list dt {
    text-align: left;
    padding-left: 20px;
    border-left: solid 5px #5CB5F2;
    border-bottom: 2px dotted #DBF0FF;
    font-weight: 800;
    color: #0676C3;
    margin-top: 10px;
  }

  dl.company-list dd {
    margin: 0;
    padding-left: 20px;
    border-bottom: 2px dotted #DBF0FF;
    font-weight: 400;
  }

  dl.company-list dd a {
    color: #000;
    text-decoration: none;
  }

  /*プライバシーポリシー--------------------------*/
  .policy-wrap h3 {
    font-size: 1.1rem;
    line-height: 2;
    padding: 15px 0 0 0;
    font-weight: 700;
    color: #0676C3;
  }

  .policy-wrap p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .policy-wrap ol {
    font-size: 0.9rem;
    line-height: 1.8;
    list-style-type: decimal;
    padding-inline-start: 5px;
    list-style-position: inside;
  }

  .policy-tx {
    margin: 40px 0 0 0;
  }


  /*コンテンツページ--------------------*/

  /*.content-wrap-01*/
  .content-wrap-01 {
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 100px;
  }

  /*LPガス*/
  #page-lpgas .content-wrap-01 {
    background-image: url(../img/lpgas/bg01sp.jpg);
    background-position: bottom center;
  }

  /*タンクローリー*/
  #page-tank-truck .content-wrap-01 {
    background-image: url(../img/tank-truck/bg01sp.jpg);
    background-position: bottom center;
  }


  .content-inner-01 {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
  }

  .content-left {
    width: 100%;
  }

  .content-right {
    width: 100%;
  }

  .content-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    border: solid 4px #0676C3;
    margin: 20px 0 0;
  }

  .content-wrap-01 h1 {
    margin: 0;
    color: #0676C3;
    font-weight: 900;
    font-size: 2.8rem;
    line-height: 1;
    text-shadow: 0 2px 3px #9dabb4;
  }

  .content-wrap-01 p.content-sub {
    color: #82bae1;
    font-size: 1.6rem;
    line-height: 1.2;
    font-family: Righteous-Regular, sans-serif;
    padding-top: 10px;
  }

  .content-wrap-01 h2 {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #222;
    font-weight: 900;
    padding: 10px 0;
  }

  .content-wrap-01 p.content-tx {
    font-size: 1rem;
    line-height: 1.8;
    color: #222;
    font-weight: 500;
  }


  /*.content-wrap-02*/
  .content-wrap-02 {
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    padding: 60px 0 20px;
  }

  /*LPガス*/
  #page-lpgas .content-wrap-02 {
    background-image: url(../img/lpgas/bg02sp.webp);
    background-color: #56a5da;
  }

  /*タンクローリー*/
  #page-tank-truck .content-wrap-02 {
    background-image: url(../img/tank-truck/bg02sp.webp);
    background-color: #50a1d7;
  }


  .content-inner-02 {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  .content-inner-02 h2 {
    width: fit-content;
    margin: 0 auto;
    position: relative;
    padding-top: 100px;
    color: #FFFF00;
    font-size: 1.6rem;
    font-weight: 900;
    text-align: center;
  }

  .content-inner-02 h2::before {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    background: url(../img/common/handle03.png) no-repeat center center / contain;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .feature-box {
    position: relative;
    width: 92%;
    margin: 40px 0px 60px 30px;
    padding: 45px 20px 45px 36px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 6px 8px rgba(3, 90, 151, 0.25);
    box-sizing: border-box;
  }

  .feature-box .num {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #0676C3;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    line-height: 60px;
    text-align: center;
  }

  .feature-box h3 {
    margin: 0 0 18px;
    color: #0676C3;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.4;
  }

  .feature-box p {
    margin: 0;
    color: #222;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 500;
  }


  /*.content-wrap-03*/
  .content-wrap-03 {
    width: 100%;
    height: auto;
    background: url(../img/lpgas/bg03sp.jpg) no-repeat top center;
    background-size: 100% auto;
    padding: 80px 0;
  }

  .content-inner-03 {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  .point-area {
    width: 100%;
    margin: 0 auto;
  }

  .point-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
  }

  .point-box {
    width: 100%;
    padding: 25px;
    border: 3px solid #0676C3;
    border-radius: 16px;
    box-shadow: 0 3px 8px #4e9fd7;
    box-sizing: border-box;
    text-align: center;
  }

  .point-inner {
    display: inline-block;
    text-align: left;
  }

  .point-box p {
    margin: 0 0 16px;
    color: #222;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.8;
  }


  .point-box span.red-tx {
    color: #F8197A;
  }

  .point-box span.blue-tx {
    color: #0676C3;
  }

  .point-img,
  .point-imgs {
    width: 100%;
  }

  .point-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }


  /* LPガス用 */
  .point-area--lpgas .row-02 .point-img.fade-up {
    position: relative;
    top: -20px !important;
  }

  .point-area--lpgas .point-imgs {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }


  .point-area--lpgas .point-imgs .lpgs-illust {
    width: 65%;
    margin: 0 auto 60px;
    position: relative;
    top: 20px;
  }


  /* タンクローリー用 */
  .point-area--tank .tank-illust {
    margin-top: 20px;
    width: 80%;
  }

  .point-area--tank .img-bottom {
    margin-top: 20px;
  }

  .point-area--tank .row-03 .point-box {
    margin-top: 20px;
  }



  /*.content-wrap-04*/
  .content-wrap-04 {
    width: 100%;
    height: auto;
    background: #fff;
    padding: 100px 0 0;
    box-sizing: border-box;
  }

  .content-inner-04 {
    width: 94%;
    margin: 0 auto;
    padding: 0;
  }

  .content-title {
    width: 100%;
    margin: 80px auto 80px;
    position: relative;
    text-align: center;
  }

  .content-title::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: url(../img/common/handle04.png) no-repeat center center / contain;
  }


  .content-title h2 {
    margin: 0;
    padding: 20px 22px;
    background: #E6EEF3;
    border-radius: 40px;
    color: #0676C3;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
  }

  .content-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
    width: 56px;
    height: 28px;
    background: #E6EEF3;
    border-radius: 0 0 28px 28px;
  }

  img.lpg-delivery {
    margin: 0;
    padding: 0 20px;
  }



  /* 仕事の内容 */
  .job-detail {
    width: 100%;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    text-align: left;
    gap: 50px;
    align-items: center;
  }

  .job-detail img {
    width: 96%;
    height: auto;
    border-radius: 20px;
    border: 4px solid #0676C3;
  }

  .job-detail p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    padding: 0 10px;
  }


  .job-box {
    width: 96%;
    margin: 60px auto 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 4px solid #0676C3;
    border-radius: 20px;
    overflow: hidden;
    background: #0676C3;
    text-align: left;
    padding: 0;
  }

  .job-box-left {
    width: 100%;
    background: #0676C3;
    display: flex;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 14px 14px 0 0;
  }

  .job-box-left h3 {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
  }

  .job-box-left h3::before {
    content: "";
    width: 8px;
    align-self: stretch;
    background: #ff0;
    margin-right: 12px;
    flex-shrink: 0;
  }

  .job-box-right {
    width: 100%;
    background: #fff;
    padding: 20px 36px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }

  .job-box-right p {
    color: #0676C3;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
  }


  /* 先輩からのメッセージ */
  .staff-message {
    width: 90%;
    margin: 100px auto;
    padding: 28px 0 40px;
    border: 4px dotted #0b80c9;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
  }

  .staff-message-photo {
    width: 100%;
    position: relative;
    flex-shrink: 0;
    margin-top: -60px;
  }

  .staff-message-photo img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
  }

  .staff-message-year {
    width: 90%;
    margin: -28px auto 0;
    padding: 12px 10px;
    background: #087ac4;
    color: #fff;
    font-weight: 800;
    text-align: center;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
  }

  .staff-message-text p {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
  }

  .staff-message-text p span {
    width: 100%;
    border-bottom: 2px dotted #8cc2e6;
    padding-bottom: 5px;
    line-height: 2.6;

  }



}