@charset "UTF-8";
/*---------------------------------------------------------- */
/* color */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* width */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* breakpoints */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* font */
/*---------------------------------------------------------- */
/*---------------------------------------------------------- */
/* other */
/*---------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .home h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .home .hero {
    position: relative;
    height: 90vh;
    /* 下から上にフェードイン */
    /* フェードインアニメーション */
  }
  .home .hero #movieWrap {
    margin-top: 0px;
    position: relative;
    top: 0px;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 80vh;
    overflow: hidden;
  }
  .home .hero #movieWrap:before {
    content: "";
    background-color: #8FABC6;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.5;
  }
  .home .hero #movieWrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* ← 100% に */
    height: 100%;
    /* ← 100% に */
    object-fit: cover;
    /* ← contain → cover に */
    object-position: center;
    z-index: 0;
    transform: none;
    /* ← translate 削除 */
  }
  .home .hero .scroll-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 10%;
    height: 100vh;
    background-color: #fff;
  }
  .home .hero .scroll-text span {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    writing-mode: vertical-rl;
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 2.5vw;
    color: #BE2630;
    letter-spacing: 1px;
    opacity: 0;
    /* 初期は非表示 */
    transform: translateY(50px);
    /* 下から上に出る準備 */
    animation: fadeUp 1.2s ease-out forwards;
    /* フェードイン＋上に移動 */
  }
  .home .hero .scroll-text span:before {
    content: "";
    width: 1px;
    height: 160px;
    background-color: #d7d7d7;
    position: absolute;
    top: -170px;
    left: 6px;
  }
  .home .hero .scroll-text span:after {
    content: "";
    width: 1px;
    height: 37px;
    background-color: #BE2630;
    position: absolute;
    top: -47px;
    left: 6px;
  }
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .home .hero .txt1 {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 4vw;
    color: #fff;
    line-height: 2.5;
    position: absolute;
    top: 40%;
    left: 20%;
  }
  .home .hero .txt1 span {
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: fadeLine 1.5s ease forwards;
    /* 👇 各行に遅延を設定（全体2秒 + 各行0.5秒ずつズレ） */
    /* <br>をカウントするので +2ずつ */
    /* 下線アニメーション */
  }
  .home .hero .txt1 span:nth-child(1) {
    animation-delay: 1s;
  }
  .home .hero .txt1 span:nth-child(3) {
    animation-delay: 1.5s;
  }
  .home .hero .txt1 span:nth-child(5) {
    animation-delay: 2s;
  }
  .home .hero .txt1 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1s ease;
    transition-delay: 1.5s;
    /* テキスト出現後に下線が伸びる */
  }
  .home .hero .txt1 span.show::after {
    transform: scaleX(1);
  }
  @keyframes fadeLine {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    70% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .home .hero .txt2 {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 8vw;
    width: 75%;
    height: auto;
    background: url(../images/top/hero/bg_catch.svg) no-repeat;
    background-size: 100% auto;
    position: absolute;
    bottom: 10%;
    left: 5%;
  }
  .home .hero .txt2 span {
    color: #BE2630;
  }
  .home .hero .txt2 span.sub {
    margin-left: -10px;
  }
  .home .sec.no1 {
    padding: 50px 0 50px 0 !important;
    height: initial;
    overflow: hidden;
    margin-top: -50px;
    /* 右 → 左 */
  }
  .home .sec.no1 h2 {
    display: inline-block !important;
    background-color: #fff;
    padding: 0 30px 0px 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    position: relative;
    z-index: 1;
  }
  .home .sec.no1 .pic {
    position: relative;
    z-index: 0;
  }
  .home .sec.no1 .pic img {
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
  }
  .home .sec.no1 .pic img.img1 {
    width: 60%;
    height: auto;
    top: -30px;
    left: 10px;
  }
  .home .sec.no1 .pic img.img2 {
    display: none;
    width: 30%;
    height: auto;
    top: initial;
    position: absolute;
    bottom: -2px;
    left: -10px;
  }
  .home .sec.no1 .pic img.img3 {
    width: 30%;
    height: auto;
    position: absolute;
    top: -80px;
    right: -10px;
  }
  .home .sec.no1 .pic img.img4 {
    width: 25%;
    height: auto;
    position: absolute;
    top: initial;
    bottom: 0;
    right: 0;
  }
  .home .sec.no1 .txt {
    width: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    margin-top: 30px;
  }
  .home .sec.no1 .txt .catch {
    font-size: 6vw !important;
  }
  .home .sec.no1 .txt .expl {
    font-size: 4vw !important;
    margin: -10px 0 30px;
  }
  .home .sec.no1 .bgTxtWrap {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    overflow: hidden;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
  }
  .home .sec.no1 .bgTxt {
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 40vw;
    white-space: nowrap;
    color: #F3F1EF;
    animation: bgTxtMove 5s linear infinite;
  }
  @keyframes bgTxtMove {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  .home .sec.no2 .secIn {
    border-top: none;
    padding-top: 70px;
    padding-bottom: 150px;
  }
  .home .sec.no2 ul {
    width: 100%;
    position: relative;
    top: 0px;
    right: 0;
  }
  .home .sec.no2 ul li {
    position: relative;
    font-size: 3.5vw;
    padding: 15px 0;
    border-bottom: 1px #ccc dotted;
  }
  .home .sec.no2 ul li:last-child {
    border-bottom: none;
  }
  .home .sec.no2 ul li span {
    display: block;
    font-size: 3vw;
    margin-bottom: 5px;
  }
  .home .sec.no2 ul li a {
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }
  .home .sec.no2 ul li a:hover {
    text-decoration: underline;
  }
  .home .sec.no3 h2 {
    margin-bottom: 20px;
  }
  .home .sec.no3 .txtArea {
    width: 100%;
    position: relative;
    top: 0px;
    right: 0;
  }
  .home .sec.no3 .txtArea .btn {
    margin-top: 20px;
  }
  .home .sec.no3 ul {
    margin-top: 60px !important;
  }

  .service.posting .sec.no1 .secIn {
    display: block;
  }
  .service.posting .sec.no1 .secIn .bl.no1 {
    width: 100%;
    padding-right: 0px;
    border-right: none;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px #ccc dotted;
  }
  .service.posting .sec.no1 .secIn .bl.no2 {
    width: 100%;
    padding-left: 0px;
  }
  .service.posting .sec.no1 .secIn .bl.no2 p {
    font-size: 3.5vw;
    opacity: 1;
    margin-top: 10px;
  }
  .service.amabile .sec.no2 ul {
    margin-top: 0 !important;
    margin-bottom: 50px;
  }
  .service.amabile .sec.no2 ul .wrap {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
  }
  .service.amabile .sec.no2 ul h3 {
    margin-bottom: 20px !important;
  }
  .service.amabile .sec.no3 a.tel {
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
  }
  .service.amabile .sec.no3 iframe {
    height: 300px;
  }
  .service.type-a .sec.no1 .bl {
    display: block;
  }
  .service.type-a .sec.no1 .bl .pic {
    display: none;
  }
  .service.type-a .sec.no1 .bl .txt {
    width: 100%;
    padding-right: 0px;
  }
  .service.type-a .sec.no1 .bl .txt .catch {
    margin-bottom: 15px;
  }
  .service.type-a .sec.no1 .bl .txt img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    margin-bottom: 20px;
  }
  .service.childcare .sec.no2 .bl .pic {
    display: none;
  }
  .service.delivery .sec.no2 .waku1 {
    margin-top: 0 !important;
    margin-bottom: 50px;
  }
  .service.delivery .sec.no2 .waku1 .wrap {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
  }
  .service.delivery .sec.flow {
    padding-bottom: 0 !important;
  }
  .service.delivery .sec.flow dl {
    display: block;
    width: 100%;
    padding-bottom: 30px;
    position: relative;
  }
  .service.delivery .sec.flow dl:before {
    display: none;
  }
  .service.delivery .sec.flow dl:after {
    display: none;
  }
  .service.delivery .sec.flow dl:last-child {
    margin-bottom: 0;
  }
  .service.delivery .sec.flow dl:last-child:before {
    display: none;
  }
  .service.delivery .sec.flow dl:last-child:after {
    display: none;
  }
  .service.delivery .sec.flow dl dt {
    display: block;
    width: 100%;
    font-size: 4vw;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    border-right: none;
    position: relative;
    background-color: #F3F1EF;
    padding: 4px 0 6px 100px;
  }
  .service.delivery .sec.flow dl dt span {
    display: inline-block;
    width: 80px;
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 3vw;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background-color: #BE2630;
    padding: 8px 10px 6px;
    margin-right: 0px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .service.delivery .sec.flow dl dd {
    display: block;
    width: 100%;
    padding: 10px 10px;
  }
  .service.delivery .sec.flow dl dd .expl br {
    display: none;
  }
  .service.food .sec.no2 .txt {
    padding-top: 0 !important;
  }
  .service.food .sec.no2 .pic {
    display: none;
  }

  .company .sec.no1 {
    margin-top: 0px;
  }
  .company .sec.no1 .bl {
    display: block;
    gap: 70px;
  }
  .company .sec.no1 .bl .txt {
    width: 100%;
  }
  .company .sec.no1 .bl .txt img {
    width: 45%;
    height: auto;
    margin-top: 5px;
  }
  .company .sec.no1 .bl .pic {
    display: none;
  }
  .company .sec.no2 .bl .txt .catch {
    text-align: center;
    font-size: 4.5vw !important;
  }
  .company .sec.no2 .bl .txt .catch span {
    color: #BE2630;
  }
  .company .sec.no2 .bl .txt .catch.pc {
    display: none;
  }
  .company .sec.no2 .bl .txt .expl {
    text-align: left;
  }
  .company .sec.no2 .bl .txt .expl br {
    display: none;
  }
  .company .sec.no2 .bl.no1 {
    border: none;
    padding: 0px;
    position: relative;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
  }
  .company .sec.no2 .bl.no1:before {
    display: none;
  }
  .company .sec.no2 .bl.no1:after {
    display: none;
  }
  .company .sec.no2 .bl.no1 .box {
    display: block;
    max-width: 100%;
    margin: 30px auto 0;
    align-items: stretch;
    gap: 0px;
    border-radius: 0px;
    overflow: hidden;
  }
  .company .sec.no2 .bl.no1 .box .md {
    width: 100%;
    background-color: #BE2630;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 3.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    text-align: center;
  }
  .company .sec.no2 .bl.no1 .box ul {
    width: 100%;
    margin: 0;
    padding: 20px 20px;
    line-height: 1.8;
    background-color: #fff;
  }
  .company .sec.no2 .bl.no1 .box ul li {
    font-size: 3.5vw;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    padding-left: 35px;
    position: relative;
  }
  .company .sec.no2 .bl.no1 .box ul li:before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: #BE2630;
    position: absolute;
    top: 10px;
    left: 0;
  }
  .company .sec.no2 .bl.no2 {
    margin-top: 30px;
    background-color: #fff;
    padding: 40px 25px;
    border: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
  }
  .company .sec.no3 {
    padding-bottom: 0px !important;
  }
  .company .sec.no3 .bl.no2 {
    margin-top: 20px;
  }
  .company .sec.no3 .bl.no2 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .company .sec.no3 .bl.no2 ul li {
    width: calc((100% - 20px) / 2);
  }
  .company .sec.no3 .bl.no2 ul li img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
  }
  .company .sec.no3 .bl.no2 ul li p {
    margin-top: 10px;
    text-align: center;
    font-size: 3.5vw;
  }

  .recruit.top .sec.no2 .bl {
    display: block;
    gap: 70px;
  }
  .recruit.top .sec.no2 .bl .txt {
    width: 100%;
  }
  .recruit.top .sec.no2 .bl .txt img {
    float: right;
    width: 45%;
    height: auto;
    margin-top: 5px;
    margin-left: 20px;
  }
  .recruit.top .sec.no2 .bl .pic {
    display: none;
    width: 30%;
  }
  .recruit.top .sec.no2 .bl .pic img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border: 5px #fff solid;
  }
  .recruit.top .sec.no2 .bl .pic p {
    margin-top: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    font-size: 22px;
  }
  .recruit.top .sec.no2 .bl .pic p span {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin-right: 15px;
  }
  .recruit.top .sec.curriculum .bl.no1 {
    display: block;
    gap: 50px;
  }
  .recruit.top .sec.curriculum .bl.no1 .txt {
    width: 100%;
  }
  .recruit.top .sec.curriculum .bl.no1 .pic {
    width: 100%;
    margin-top: 20px;
  }
  .recruit.top .sec.curriculum .bl.no1 .pic img {
    width: 100%;
    height: auto;
  }
  .recruit.top .sec.curriculum .bl.no2 {
    margin-top: 50px;
  }
  .recruit.top .sec.curriculum .bl.no2 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .recruit.top .sec.curriculum .bl.no2 ul li {
    flex: 0 0 calc(50% - 10px);
    box-sizing: border-box;
  }
  .recruit.top .sec.curriculum .bl.no2 ul li img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border: 3px #fff solid;
  }
  .recruit.top .sec.curriculum .bl.no2 ul li p {
    margin-top: 10px;
    text-align: center;
    font-size: 3vw;
  }
  .recruit.interview .sec dl dt {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 4vw;
    color: #BE2630;
    position: relative;
  }
  .recruit.interview .sec dl dt:after {
    display: none;
    content: "";
    width: 70px;
    height: 1px;
    background-color: #BE2630;
    position: absolute;
    top: 55px;
    left: 0;
  }
  .recruit.interview .sec dl dt span {
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 5vw;
    margin-right: 5px;
  }
  .recruit.interview .sec dl dd {
    padding: 0 !important;
  }
  .recruit.interview .sec dl.t1 {
    display: block;
  }
  .recruit.interview .sec dl.t1 dt {
    width: 100%;
    margin-bottom: 20px;
  }
  .recruit.interview .sec dl.t1 dd {
    width: 100%;
  }
  .recruit.interview .sec dl.t2 dt {
    margin-bottom: 20px;
  }
  .recruit.interview .sec .bl {
    width: 100%;
    margin: 0 auto;
    padding: 0px 0px 40px 10px;
    margin-bottom: 40px;
    border-bottom: 1px #ccc dotted;
  }
  .recruit.interview .sec .bl:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
  }
  .recruit.interview .sec.no1 {
    padding-bottom: 0 !important;
    padding-left: 5% !important;
    margin-top: 50px;
  }
  .recruit.interview .sec.no1 .secIn {
    width: 100% !important;
    background-color: #F3F1EF;
    padding: 40px 20px !important;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
  }
  .recruit.interview .sec.no2 {
    padding-top: 50px !important;
    padding-bottom: 0px !important;
    position: relative;
    z-index: 0;
  }
  .recruit.interview .sec.no2 img {
    width: 100%;
    height: auto;
  }
  .recruit.interview .sec.no3 {
    padding-top: 40px !important;
    background-color: #fff;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
  }
  .recruit.interview .sec.no3 .bl .blIn {
    display: block;
    width: 100%;
    gap: 100px;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px #ccc dotted;
  }
  .recruit.interview .sec.no3 .bl .blIn:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .recruit.interview .sec.no3 .bl .blIn .pic {
    width: 100%;
    margin-bottom: 20px;
  }
  .recruit.interview .sec.no3 .bl .blIn .pic img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
  }
  .recruit.interview .sec.no3 .bl .blIn .txt {
    width: 100%;
    margin-bottom: 20px;
  }

  .info .sec.no1 {
    margin-top: 50px !important;
    padding-top: 30px !important;
  }
  .info .sec.no1 .post {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    margin-bottom: 50px;
  }
  .info .sec.no1 .post .hd {
    border-left: 3px #BE2630 solid;
    padding-left: 15px;
    margin-bottom: 20px;
  }
  .info .sec.no1 .post .hd .date {
    font-size: 3vw;
  }
  .info .sec.no1 .post .hd h1 {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 4vw;
  }

  .contact .sec.no1 {
    margin-top: 50px !important;
    padding-top: 30px !important;
  }
  .contact .sec.no1 .post {
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    margin-bottom: 50px;
  }
  .contact .sec.no1 .post .hd {
    border-left: 3px #BE2630 solid;
    padding-left: 20px;
    margin-bottom: 20px;
  }
  .contact .sec.no1 .post .hd h1 {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
  }
  .contact.thanks .sec.no1 .txt1 {
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 5vw;
  }
  .contact.thanks .sec.no1 .expl {
    text-align: left !important;
  }
  .contact.thanks .sec.no1 .expl br {
    display: none;
  }
  .contact.thanks .sec.no1 .taC {
    text-align: center !important;
    margin-top: -20px !important;
  }
}
