@charset "utf-8";
/* CSS Document */ :root {
  /* store */
  --color01: #f63e7e;
  --color02: #f08cb9;
  --color03: #ff8ac7;
  --font01: "Imperial Script", cursive;
}
.imperialscriptregular {
  font-family: "Imperial Script", cursive;
  font-weight: 400;
  font-style: normal;
}
a {
  transition: 0.8s;
}
a:hover {
  opacity: 0.5;
  transform: scale(1.05, 1.05);
}
button {
  cursor: pointer;
  transition: 0.8s;
}
button:hover {
  opacity: 0.5;
  transform: scale(1.05, 1.05);
}
body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  line-height: 1.3;
  color: #7b5757;
  background: url(../images/bg_top.png) no-repeat top center;
}
body#top {
  background: none;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  .header {
    background: url(../images/header_bg.jpg) no-repeat top center / cover;
    .headercard {
      display: flex;
      width: 98%;
      max-width: 1800px;
      margin: auto;
      padding: 1em 0;
      font-size: 0.9em;
      h1 {
        align-content: center;
        margin: 0 1% 0 0;
        width: 49%;
      }
      .txt {
        align-content: center;
        font-size: 1.5em;
        background: linear-gradient(90deg, #ff83bb, #ffa9c8, #ff83bb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin: 0;
      }
      .time_box {
        width: calc(50% - 50px);
      }
      .timebox {
        display: flex;
        margin: 0 0 0 auto;
        .time {
          font-size: 0.9em;
          width: 200px;
          max-width: 200px;
          height: 30px;
          border: 1px solid;
          border-radius: 30px;
          text-align: center;
          align-content: center;
          margin: auto 0.25em auto 0;
          span {
            font-size: 0.75em;
          }
          span {
            font-size: 0.88em;
          }
        }
        .tel {
          font-size: 2em;
        }
        .mail_line {
          display: flex;
          a {
            display: flex;
            margin: 0 1.5em 0 0;
            flex-wrap: wrap;
            align-content: center;
            img {
              margin: 0 5px 0 0;
            }
          }
          a:last-child {
            margin: 0;
          }
          .line {
            color: #06c755;
          }
        }
      }
      #timetel {
        margin: 0 0 10px;
        .time {
          font-size: 1em;
        }
      }
    }
  }
  #h_nav {
    background: linear-gradient(to right, #f07fb2, #efafcc, #f07fb2);
    ul {
      display: flex;
      justify-content: space-around;
      width: 98%;
      max-width: 1600px;
      margin: auto;
      li {
        padding: 10px 5px;
        text-align: center;
        font-size: 0.9em;
        span {
          display: block;
          text-align: center;
          font-family: var(--font01);
          font-size: 1.5em;
        }
      }
      a:hover {
        color: #fff;
      }
    }
  }
  .outer-menu {
    position: relative;
    z-index: 1;
    .checkbox-toggle {
      position: absolute;
      top: calc(50% - 22.5px);
      left: 0;
      z-index: 2;
      cursor: pointer;
      width: 45px;
      height: 45px;
      opacity: 0;
    }
    /* チェック時のスタイル */
    .checkbox-toggle:checked + .hamburger > div {
      transform: rotate(135deg);
    }
    .checkbox-toggle:checked + .hamburger > div:before, .checkbox-toggle:checked + .hamburger > div:after {
      top: 0;
      transform: rotate(90deg);
    }
    .checkbox-toggle:checked + .hamburger > div:after {
      opacity: 0;
    }
    .checkbox-toggle:checked ~ .menu {
      pointer-events: auto;
      visibility: visible;
    }
    .checkbox-toggle:checked ~ .menu > div {
      transform: scale(1);
      transition-duration: 0s;
    }
    .checkbox-toggle:checked ~ .menu > div > div {
      opacity: 1;
      transition: opacity 0s ease 0s;
      justify-content: center;
      height: 100vh;
      padding: 50px 0px;
      overflow-y: auto;
    }
    .checkbox-toggle:hover + .hamburger {
      /*box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);*/
    }
    .checkbox-toggle:checked:hover + .hamburger > div {
      transform: rotate(225deg);
    }
    .hamburger {
      position: absolute;
      top: calc(50% - 22.5px);
      left: 0;
      z-index: 1;
      width: 45px;
      height: 45px;
      padding: 0.5em;
      cursor: pointer;
      backface-visibility: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }
    .hamburger > div {
      position: relative;
      flex: none;
      width: 100%;
      height: 2px;
      background: #7b5757;
      transition: all 0s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 12px 0 15px;
    }
    .hamburger > div:before, .hamburger > div:after {
      content: "";
      position: absolute;
      z-index: 1;
      /* 60px / 6 = 10px */
      top: -10px;
      left: 0;
      width: 100%;
      height: 2px;
      background: inherit;
      /*transition: all 0s ease;*/
    }
    .hamburger > div:after {
      top: 10px;
    }
    /* ここがポイント：メニューの表示位置と変形の原点を右上に設定 */
    .menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      visibility: hidden;
      overflow: hidden;
      backface-visibility: hidden;
    }
    .menu > div {
      width: 100%;
      height: 100vh;
      position: relative;
      background: #f08db9e8;
      text-align: center;
      backface-visibility: hidden;
      overflow: hidden;
      align-items: center;
      justify-content: center;
    }
    .menu > div > div {
      text-align: center;
      width: 90%;
      height: 100vh;
      width: 100%;
      opacity: 0;
      img {
        margin: 0 auto 50px;
        width: 80%;
        max-width: 790px;
      }
      ul {
        display: flex;
        flex-wrap: wrap;
        li {
          width: 50%;
          margin: 0 auto 2em;
          font-size: 1em;
          span {
            font-family: var(--font01);
            font-size: 2.35em;
            padding: 0 10px 0 0;
          }
        }
        a:hover {
          color: #fff;
        }
      }
    }
  }
}
footer {
  background: url(../images/footer_bg.jpg) no-repeat bottom center / cover;
  padding: 4em 0 0;
  #page-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    transition: right 0.3s ease;
    a {
      display: flex;
      transition: all 1s;
    }
  }
  #page-top.LeftMove {
    opacity: 1;
  }
  #page-top.RightMove {
    opacity: 0;
  }
  .f_logo {
    width: fit-content;
    display: block;
    margin: 0 auto 3em;
    max-width: 90%;
  }
  ul.f_nav {
    font-size: 0.85em;
    display: flex;
    justify-content: center;
    margin: 0 auto 5em;
    flex-wrap: wrap;
    li {
      padding: 0 10px;
      border-right: 1px solid;
      margin: 0 0 10px;
    }
  }
  copy {
    background: var(--color02);
    text-align: center;
    padding: 0.5em 0;
    font-size: 0.65em;
    color: #fff;
    width: 100%;
    display: block;
  }
}
main {
  padding: 0 0 8.5em;
  background: url(../images/bg_under.png) no-repeat bottom center;
  /* モーダル非表示時 */
  #age-modal.hidden {
    display: none;
  }
  #age-modal {
    /* オーバーレイ */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #ffffffe0;
      z-index: 1000;
    }
    /* モーダル本体 */
    .modal-content {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      z-index: 1001;
      width: 65%;
      h3 {
        font-size: 1.25em;
        text-align: center;
        margin: 0 auto 35px;
      }
      .kin18 {
        width: 100px;
        margin: auto;
      }
      img {
        width: 100%;
        max-width: fit-content;
        margin: 0 auto 2.75em;
      }
      button {
        width: fit-content;
        margin: 0 auto 1.3em;
      }
      p {
        line-height: 1.8;
        text-align: center;
        a {
          color: var(--color02);
          text-decoration: underline;
        }
      }
    }
  }
}
main#top {
  margin: 11.5em 0 0;
  padding: 0 0 8em;
  background: none;
}
#pankuzu {
  background: #ffdbe8;
  padding: 11.5em 0 0.5em;
  margin: 0 auto 5em;
  div {
    width: 98%;
    max-width: 1600px;
    margin: auto;
    text-decoration: underline;
  }
}
.title {
  text-align: center;
  margin: 0 auto 4.5em;
  font-weight: 100;
  width: 90%;
  .t01 {
    font-family: var(--font01);
    font-size: 5em;
  }
  .t02 {
    font-size: 1.25em;
    margin-bottom: 15px;
  }
}
.title::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--color03);
  display: block;
  margin: auto;
}
h2.title {
  text-align: center;
  margin: 0 auto 4.5em;
  font-weight: 100;
  font-size: 1.25em;
  margin-bottom: 15px;
  strong {
    font-family: var(--font01);
    font-size: 4em;
    display: block;
    text-align: center;
    margin: 0 0 0.2em;
    font-weight: 100;
  }
}
h2.title::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--color03);
  display: block;
  margin: 0.3em auto 3em;
}
.viewmore_btn {
  width: fit-content;
  margin: auto;
  display: block;
}
#top-slide {
  padding: 0 0 8em;
  .top-slide {
    figure {
      img {
        margin: auto;
      }
    }
    .slick-dots {
      bottom: -50px;
      display: flex;
      justify-content: center;
      width: 100%;
      padding: 0 5%;
      align-content: center;
      li {
        width: inherit;
        height: 3px;
        margin: 0 1%;
        max-width: 100px;
        button {
          width: 100%;
          height: 3px;
          background: #7b5757;
          padding: 2.5px;
        }
        button:before {
          font-size: 0;
        }
      }
      li.slick-active {
        button {
          background: #f08cb9;
        }
      }
    }
  }
}
#top_blog {
  padding: 0 0 7.5em;
  .top_blog_boxs {
    display: flex;
    width: 95%;
    margin: 0 auto 3.5em;
    max-width: 1200px;
    .main_card {
      max-width: 430px;
      width: 100%;
      margin: 0 auto;
    }
    .card {
      margin: 0 0 3em;
      .img {
        margin: 0 auto 0.5em;
        img {
          aspect-ratio: 86 / 65;
          object-fit: cover;
          object-position: center top;
        }
      }
      .text {
        .days {
          margin: 0 0 0.2em;
        }
        .tit {
          margin: 0 0 0.5em;
          font-size: 1.5em;
        }
        .txt {
          line-height: 1.5;
          max-height: 200px;
          height: auto;
          overflow-y: auto;
          overflow-x: hidden;
        }
      }
    }
    .card {
      display: inline-block;
      cursor: pointer;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .card.fade-out {
      opacity: 0;
      transform: scale(0.95);
    }
    .card.fade-in {
      opacity: 1;
      transform: scale(1);
    }
    .sab_card {
      display: flex;
      flex-wrap: wrap;
      width: calc(100% - 430px);
      font-size: 0.85em;
      .card {
        margin: 0 0 1em 30px;
        width: calc(50% - 30px);
        .text {
          .txt {
            display: none;
          }
        }
      }
    }
  }
}
#top_recruitment {
  background: url(../images/top_recruitment_bg.jpg) no-repeat center top / cover;
  .top_recruitment {
    background-color: #fff;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 5em 2.5%;
    line-height: 2.5;
    max-width: 1500px;
    /*box-shadow: 0 0 10px var(--color01);*/
    .top_recruitment01 {
      .tit {
        font-size: 2.5em;
        margin: 0 auto 10px;
        display: flex;
        max-width: 750px;
        width: 90%;
      }
      .tit::before {
        content: "";
        flex-grow: 1;
        height: 1px;
        display: block;
        background: #212529;
        margin: auto 10px auto 0;
      }
      .tit::after {
        content: "";
        flex-grow: 1;
        height: 1px;
        display: block;
        background: #212529;
        margin: auto 0 auto 10px;
      }
      .txtbox {
        .txt {
          font-size: 2.5em;
          line-height: 1.5;
          span {
            font-size: 0.6em;
          }
        }
        p {
          line-height: 2.5;
          strong {
            font-size: 1.25em;
            text-decoration: underline;
            text-decoration-color: var(--color01);
            text-decoration-thickness: 3px;
            text-underline-offset: 5px;
            font-weight: 500;
            span {
              font-size: 1.4em;
            }
          }
        }
      }
    }
    .top_recruitment02 {
      border: 2px solid;
      width: 100%;
      margin: 1.5em auto 2em;
      max-width: 885px;
      font-size: 1.25em;
      line-height: 2.5;
      padding: 1em 0;
      strong {
        color: var(--color03);
        font-weight: 500;
        span {
          font-size: 1.4em;
          line-height: 1;
        }
      }
    }
    .top_recruitment03 {
      .txtcard01 {
        font-size: 1.25em;
        line-height: 2.5;
        p {
          font-size: 0.8em;
        }
        .pgcard {
          display: flex;
          justify-content: center;
          margin: 25px auto;
          flex-wrap: wrap;
          .pg {
            position: relative;
            background-color: var(--color02);
            color: #fff;
            padding: 0 2em;
            height: 60px;
            align-content: center;
            margin: 0 0 0.8em;
          }
          .pg:before {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-bottom: 60px solid #fff;
          }
          .pg::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 0;
            border-top: 60px solid #fff; /* 横の辺 */
            border-right: 10px solid transparent; /* 斜辺 */
          }
        }
      }
    }
    .txtcard02 {
      background: url(../images/top_recruitment_txtcard02_bg.png) no-repeat top center;
      min-height: 252px;
      margin: 0 auto 3em;
      strong {
        font-size: 1.75em;
        font-weight: 500;
      }
    }
    .txtcard03 {
      .txt {
        font-size: 1.25em;
        .pr {
          text-decoration: underline;
          text-decoration-color: var(--color01);
          text-decoration-thickness: 3px;
          text-underline-offset: 5px;
          strong {
            font-size: 1.4em;
            font-weight: 500;
          }
        }
        p {
          font-size: 0.85em;
        }
        .hukidashi {
          width: 90%;
          max-width: 784px;
          margin: 0.8em auto;
          border-top: 1px solid var(--color01);
          padding: 0.8em 0 0;
          img {
            padding: 0.8em 0 0;
          }
        }
      }
    }
    .top_recruitmentslider {
      padding: 4em 0 0;
      .onebox {
        width: 320px;
        margin: 0 15px;
        .text {
          .tit {
            font-size: 1.25em;
            margin: 0 0 15px;
          }
          .tit::after {
            content: "";
            width: 200px;
            height: 1px;
            background-color: var(--color03);
            display: block;
            margin: auto;
          }
          .txt {
            font-size: 1em;
            line-height: 1.3;
          }
        }
      }
    }
  }
}
#top_introduction {
  padding: 7.5em 0 0;
  background: url(../images/top_introduction_bg.jpg) no-repeat top center;
  width: 100%;
  overflow-x: hidden;
  .images {
    display: flex;
    flex-wrap: wrap;
    max-width: 1550px;
    margin: 0 auto 7.5em;
    /*div,p {
      max-width: 750px;
    }*/
    .img {
      width: 50%;
      position: relative;
      margin: 0 0 100px;
      text-align: center;
      padding: 0 3% 10px;
      .t {
        position: absolute;
        background: #fff;
        font-size: 0.85em;
        bottom: 0;
        left: 0;
        width: auto;
        clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
        padding: 0 5%;
        box-shadow: 10px 10px 10px #000;
        span {
          font-size: 2.94em;
          font-family: var(--font01);
          margin: 0 10px 0 0;
        }
      }
      img {
        margin: auto;
      }
    }
    .img:nth-child(2n-1) {
      margin: -200px 0 300px;
      .t {
        right: 0;
        left: auto;
      }
    }
    .img:last-child {
      margin: -200px 0 0;
    }
    .txt {
      font-size: 2em;
      padding: 0 0 0 3%;
      display: block;
      margin: 0 auto;
      width: 50%;
      height: 7em;
      align-content: center;
    }
  }
  .top_recruit {
    width: 90%;
    margin: 0 auto 7.5em;
    max-width: 1200px;
    border: 1px solid #7b5757;
    padding: 2em 0;
    .tit {
      font-size: 2.25em;
      text-align: center;
      margin: 0 auto 0.9em;
    }
    .box {
      display: flex;
      justify-content: center;
      width: 90%;
      max-width: 1000px;
      margin: auto;
      .img {
        margin: 0 20px 0 0;
        flex-shrink: 0;
        img {}
      }
      .txt {
        font-size: 1.5em;
        line-height: 1.8;
        p {
          font-size: 0.6em;
          line-height: 2;
          margin-top: 10px;
        }
      }
    }
  }
}
.photogallery_cards {
  .photogallery_card {
    figure {
      margin: 0 0.75em;
      padding: 10px 0 0;
      transition: 0.5s;
      width: 90%;
      max-width: 380px;
      
      /*aspect-ratio: 7 / 10;
        object-fit: cover;
        object-position: center top;*/
      img {
        aspect-ratio: 7 / 10;
        object-fit: cover;
        object-position: center top;
        height: 500px;
        box-shadow: 0 0 5px #000;
      }
      figcaption {
        div {
          font-size: 0.85em;
          padding: 10px 0;
          text-align: center;
          border-bottom: 1px solid;
          margin: 0 0 10px;
          strong {
            font-size: 2.94em;
            font-weight: 100;
            font-family: var(--font01);
            margin: 0 15px 0 0;
          }
        }
        p {}
      }
    }
    figure:hover {
      padding: 0 0 10px;
    }
  }
}
#top_gallery {
  width: 100%;
  overflow-x: hidden;
  .photogallery_cards {
    padding: 0 0 7.5em;
    width: 100%;
    overflow-x: hidden;
    .photogallery_card {
      padding: 0 0 2.5em;
      width: 100%;
      overflow-x: hidden;
    }
  }
}
#review {
  .review_cards {
    display: flex;
    margin: 0 auto 3.5em;
    flex-wrap: wrap;
    .onecard {
      background: url(../images/review_bg.jpg) no-repeat center center / cover;
      width: calc(100% / 3 - 10px);
      margin: 0 5px;
      padding: 1.5%;
      .card {
        background: #fff;
        padding: 5%;
        border-radius: 0 20px 0 20px;
        box-shadow: 0 0 10px #f6f0f1;
        height: 100%;
        .upcard {
          display: flex;
          margin-bottom: 20px;
          padding-bottom: 20px;
          border-bottom: 1px solid;
          .img {
            position: relative;
            flex-shrink: 0;
            margin: 0 2% 0 0;
            width: 28%;
            max-width: 140px;
            img {
              aspect-ratio: 1 / 1;
              object-fit: cover;
              object-position: center top;
              width: 100%;
            }
            .review_cover {
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
            }
          }
          .prof {
            .days {
              font-size: 0.85em;
            }
            .name {
              span {
                font-size: 0.85em;
              }
            }
            .star {
              display: flex;
              align-content: center;
              color: #ffcc00;
              font-size: 1.45em;
              flex-wrap: wrap;
              img {
                height: fit-content;
              }
            }
            .status {
              font-size: 0.75em;
            }
          }
        }
      }
    }
  }
}
#top {
  #review {
    & .review_cards {
      & .onecard {
        & .card {
          .text {
            max-height: 170px;
            overflow-y: auto;
          }
        }
      }
    }
  }
}
#top_conditions {
  padding: 7.5em 0 0;
  table {
    width: 90%;
    margin: 0 auto 5em;
    max-width: 1050px;
    tr {
      display: flex;
      font-size: 1.25em;
      margin: 0 0 50px;
      th {
        display: flex;
        width: 270px;
        flex-shrink: 0;
        div {
          width: 45px;
          text-align: center;
          img {
            height: fit-content;
          }
        }
      }
      td {
        display: flex;
        flex-wrap: wrap;
        div {
          border: 1px solid;
          padding: 3px;
          margin: 0 5px 5px 0;
        }
      }
    }
  }
  .top_treatment {
    width: 90%;
    max-width: 1060px;
    margin: auto;
    position: relative;
    padding: 2.5em 0;
    border: 1px solid var(--color01);
    .tit {
      text-align: center;
      font-size: 2.25em;
      width: fit-content;
      border-bottom: 2px dotted var(--color01);
      margin: auto;
      padding: 0 0 0.45em;
    }
    p {
      line-height: 3;
      max-width: fit-content;
      width: 90%;
      margin: 30px auto 0;
    }
  }
  .top_treatment:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -5px;
    width: 10px;
    height: 500px;
    background: #fff;
  }
  .top_treatment::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -5px;
    width: 10px;
    height: 500px;
    background: #fff;
  }
}
.top_treatment_point {
  padding: 4.5em 0 12em;
  .top_treatment_point_card {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    .onebox {
      background: url(../images/top_treatment_point_bg.jpg) no-repeat top center / 100%;
      width: calc(100% / 2 - 30px);
      max-width: 570px;
      margin: 0 1.5em 0 0;
      text-align: center;
      padding: 2.5% 5%;
      aspect-ratio: 30 / 31;
      object-fit: cover;
      object-position: center top;
      align-content: center;
      .tit {
        font-size: 2em;
        margin: 0 auto 0.5em;
      }
      .txt {
        font-size: 1.25em;
        line-height: 2;
        .course {
          border: 1px solid var(--color02);
          color: var(--color02);
          margin: auto;
          max-width: 300px;
          line-height: 1.5;
        }
        .kin {
          font-weight: 700;
          strong {
            font-size: 1.52em;
            color: var(--color02);
          }
        }
        .arrow {
          margin: 10px auto;
          text-align: center;
          img {
            margin: auto;
          }
        }
        ul {
          border-top: 1px dotted;
          margin: 1.2em 0 0;
          padding: 1.2em 0 0;
          text-align: left;
          li {}
        }
      }
    }
  }
}
#top_sab_card {
  background: url(../images/top_sab_card_bg.png) no-repeat top center;
  img {
    margin: 0 auto 7.5em;
    width: 90%;
    height: auto;
    max-width: 1436px;
  }
}
#top_faq_card {
  a {
    max-width: fit-content;
    display: block;
    margin: 0 auto 7.5em;
    width: 90%;
    img.off {}
    img.on {
      display: none;
    }
  }
  a:hover {
    img.off {
      display: none;
    }
    img.on {
      display: block;
    }
  }
}
#top_girlsworking {
  background: url(../images/top_girlsworking_bg.png) no-repeat top center;
  .tit {
    font-size: 2em;
    color: var(--color02);
    background: url(../images/top_girlsworking_tit.png) no-repeat top center / 100% 100%;
    max-width: 436px;
    width: 90%;
    height: 80px;
    text-align: center;
    align-content: center;
    margin: 0 auto 80px;
    /*clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);*/
  }
  .experience_card {
    padding: 150px 0 0;
  }
}
.income_card {
  .onecard {
    .box {
      display: flex;
      width: 90%;
      max-width: 1400px;
      margin: 0 auto 4em;
      position: relative;
      flex-direction: row-reverse;
      justify-content: space-around;
      .img {
        position: relative;
        width: fit-content;
        .waku {
          position: absolute;
          top: 0;
          right: 0;
          left: 0;
        }
        .josei {
          aspect-ratio: 500 / 647;
          object-fit: cover;
          object-position: center top;
          padding: 2px;
        }
      }
      .txt {
        line-height: 2;
        padding: 0 0 0 150px;
        position: relative;
        .no {
          font-family: var(--font01);
          color: var(--color02);
          font-size: 4.75em;
          position: absolute;
          transform: rotate(90deg);
          top: 190px;
          left: -2em;
        }
        .name {
          font-size: 1.25em;
          padding: 0 0 0 2em;
          border-left: 1px solid var(--color02);
        }
        .salary {
          font-size: 2.25em;
          line-height: 1.5;
          color: var(--color02);
          margin-bottom: 0.65em;
          span {
            font-size: 1.33em;
            strong {
              font-size: 1.25em;
              font-weight: 500;
            }
          }
        }
      }
    }
  }
  div.onecard:nth-of-type(2n) .box {
    flex-direction: row;
  }
}
#top {
  .income_card {}
}
#top_girlsworking {
  .income_card {
    padding: 0 0 5em;
    .onecard {
      .box {
        flex-direction: row-reverse;
      }
    }
  }
}
.experience_card {
  .onecard {
    .box {
      display: flex;
      width: 90%;
      max-width: 1400px;
      margin: 0 auto 4em;
      position: relative;
      flex-direction: row;
      justify-content: space-around;
      .img {
        position: relative;
        width: fit-content;
        .waku {
          position: absolute;
          top: 0;
          right: 0;
          left: 0;
        }
        .josei {
          aspect-ratio: 500 / 647;
          object-fit: cover;
          object-position: center top;
          padding: 2px;
        }
      }
      .txt {
        line-height: 2;
        padding: 0;
        position: relative;
        margin: auto;
        width: 45%;
        max-width: 600px;
        .name {
          font-size: 1.25em;
          padding: 0 0 0 0.8em;
          border-bottom: 2px dotted;
          margin-bottom: 1.6em;
        }
        .ti {
          font-size: 2.25em;
          margin-bottom: 0.75em;
          color: var(--color02);
        }
      }
    }
  }
  .onecard:nth-child(2n - 1) .box {
    flex-direction: row-reverse;
  }
}
#top {
  .experience_card {
    padding: 2.5em 0 0;
  }
}
#top_movie {
  background: url(../images/top_movie_bg.jpg) no-repeat top center;
  padding: 7.5em 0;
  .movie_cards {
    padding: 0 0 2.75em;
  }
}
.movie_cards {
  display: flex;
  width: 90%;
  max-width: 1700px;
  margin: auto;
  flex-wrap: wrap;
  .card {
    width: calc(100% / 3 - 1% - 2px);
    margin: 0 1.5% 1.25em 0;
    border: 1px solid;
    padding: 5px;
    .video {}
    .introduction {
      margin: 30px auto 20px;
      .introduction_tit {
        text-align: center;
        margin: 0 auto 10px;
        font-size: 1.5em;
      }
      .introduction_text {
        height: auto;
        max-height: 100px;
        overflow-y: auto;
      }
    }
  }
  .card:nth-child(3n) {
    margin: 0 0 25px;
  }
}
.interviews_cards {
  margin: 30px 0 0;
  .card {
    width: 90%;
    margin: 0 auto 3em;
    max-width: 1200px;
    display: flex;
    .img {
      flex-shrink: 0;
      margin: 0 2.5em 0 0;
      img {
        width: fit-content;
        height: fit-content;
      }
    }
    .introduction {
      .introduction_tit {
        padding: 0 0 0.65em;
        margin: 0 0 0.65em;
        border-bottom: 1px solid var(--color02);
        font-size: 1.5em;
      }
      .introduction_text {
        display: -webkit-box; /* 必須 */
        -webkit-box-orient: vertical; /* 必須 */
        -webkit-line-clamp: 4; /* 行数を制限 */
        overflow: hidden; /* はみ出た部分を非表示 */
      }
      .introduction_btn {
        text-align: right;
        margin: 0.5em 0 0;
        display: block;
      }
    }
  }
}
#top_affiliated {
  padding: 7.5em 0 10em;
  display: flex;
  width: 90%;
  max-width: 1400px;
  margin: auto;
  .title {
    width: 40%;
    text-align: left;
    border-right: 1px solid var(--color01);
  }
  .title::after {
    content: "";
    width: 0px;
    height: 0;
  }
  .introduction {
    width: calc(60% - 1px);
    padding: 0 3%;
    max-width: 580px;
    margin: auto;
    line-height: 1.5;
    .introduction_tit {
      font-size: 1.25em;
      margin: 0.6em 0 0.4em;
    }
  }
}
#top_shopinformation {
  .shopinformation {
    background: url(../images/shop_info_bg.jpg) no-repeat top center / cover;
    .shopinformationcards {
      background-color: #fff;
      width: 90%;
      margin: auto;
      max-width: 1200px;
      .onecard {
        width: 90%;
        max-width: 890%;
        margin: auto;
        display: flex;
        padding: 1.25em 0.4em;
        font-size: 1.25em;
        line-height: 2;
        border-bottom: 1px solid var(--color02);
        .t {
          width: 240px;
        }
      }
      .onecard:last-child {
        border-bottom: none;
      }
    }
  }
}
#blog_boxs {
  .blog_boxs {
    display: flex;
    width: 95%;
    margin: auto;
    max-width: 1430px;
    flex-wrap: wrap;
    .card {
      width: calc(100% / 3 - 10px);
      margin: 0 15px 40px 0;
      max-width: 430px;
      .img {
        margin: 0 auto 10px;
        img {
          aspect-ratio: 86 / 65;
          object-fit: cover;
          object-position: center top;
        }
      }
      .text {
        .days {
          margin: 0 0 10px;
        }
        .tit {
          margin: 0 0 10px;
          font-size: 1.5em;
        }
        .txt {
          line-height: 1.5;
          max-height: 100px;
          height: auto;
          overflow-y: auto;
          overflow-x: hidden;
        }
      }
    }
    .card:nth-child(3n) {
      margin: 0 0 40px;
    }
  }
}
#top {
  #blog_boxs {
    padding: 100px 0;
  }
}
#faq_boxs {
  .faq_boxs {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 0 0;
    .faq_box {
      padding: 0 0 60px;
      .tit {
        position: relative;
        background-color: var(--color02);
        color: #fff;
        padding: 10px 50px;
        font-size: 1.25em;
        text-align: center;
        width: fit-content;
        margin: 0 auto 60px;
      }
      .tit:before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-bottom: 70px solid #fff;
      }
      .tit::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 0;
        border-top: 70px solid #fff; /* 横の辺 */
        border-right: 10px solid transparent; /* 斜辺 */
      }
      details {
        width: 90%;
        margin-bottom: 7px;
        border-radius: 5px;
        max-width: 1250px;
        margin: 0 auto 40px;
        box-shadow: 0 3px 8px #ddc2c8;
      }
      details summary {
        display: flex;
        align-items: center;
        position: relative;
        padding: 1em 2em;
        cursor: pointer;
        span {
          font-family: var(--font01);
          color: #a7defb;
          font-size: 3em;
        }
      }
      details summary::-webkit-details-marker {
        display: none;
      }
      details summary::before, details summary::after {
        width: 2px;
        height: 1em;
        border-radius: 5px;
        background-color: var(--color02);
        content: "";
      }
      details summary::before {
        position: absolute;
        right: 2em;
        rotate: 90deg;
      }
      details summary::after {
        transition: rotate 0.3s;
        position: absolute;
        right: 2em;
      }
      details[open] summary::after {
        rotate: 90deg;
      }
      details p {
        transform: translateY(-10px);
        opacity: 0;
        margin: 0;
        padding: 0.3em 2em 1.5em;
        transition: transform 0.5s, opacity 0.5s;
        span {
          font-family: var(--font01);
          color: var(--color02);
          font-size: 3em;
        }
      }
      details[open] p {
        transform: none;
        opacity: 1;
      }
    }
  }
}
#interview_detail {
  #interview_detail_boxs {
    width: 90%;
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
    .namecard {
      display: flex;
      margin: 0 0 20px;
      .img {
        width: 85px;
        position: relative;
        margin: 0 10px 0 0;
        .review_cover {
          position: absolute;
          top: 0;
          left: 0;
        }
      }
      .name {
        font-size: 1.25em;
      }
    }
    .tit {
      font-size: 2.25em;
      margin: 0 0 1em;
    }
    .txt {
      font-size: 1.25em;
      img {
        margin: 1em auto 2em;
      }
      h3 {
        margin: 10px 0;
        color: var(--color02);
        text-decoration: underline;
        font-size: 1.25em;
        text-decoration-thickness: 2px;
        text-underline-offset: 10px;
        line-height: 2;
      }
    }
    .viewmore_btn {
      margin: 5em auto 0;
    }
  }
}
#blog_detail {
  #blog_detail_boxs {
    width: 90%;
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
    .days {
      font-size: 1.25em;
    }
    .tit {
      font-size: 2.25em;
      margin: 0 0 1em;
    }
    .txt {
      font-size: 1.25em;
      img {
        margin: 1em auto 2em;
      }
      h3 {
        margin: 10px 0;
        color: var(--color02);
        text-decoration: underline;
        font-size: 1.25em;
        text-decoration-thickness: 2px;
        text-underline-offset: 10px;
        line-height: 2;
      }
    }
    .viewmore_btn {
      margin: 5em auto 0;
    }
  }
}
#error {
  #error_boxs {
    text-align: center;
    .error_cards {
      h3 {
        font-size: 2.4em;
        line-height: 1.5;
        div {
          font-size: 0.45em;
        }
      }
    }
  }
}
#pagination-container {
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 2em auto 0;
  button {
    width: 60px;
    height: 60px;
    border: 1px solid #7b5757;
    color: #7b5757;
    margin: 0 10px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  button.active {
    background-color: var(--color02);
    color: #fff;
  }
  button.prev-btn, button.next-btn {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: 1px solid #7b5757;
    color: #7b5757;
  }
  button.prev-btn.prev-disabled, button.next-btn.next-disabled {
    opacity: 0;
  }
  /* Prev / Next 用のクラス例 */
  button.prev-btn::before {
    content: "<<";
    letter-spacing: -3px;
    transform: scale(0.5, 1);
  }
  button.next-btn::after {
    content: ">>";
    letter-spacing: -3px;
    transform: scale(0.5, 1);
  }
  .ellipsis {
    align-content: center;
  }
}
#top_gallery, #photogallery {
  .photogallery_modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .photogallery_modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    .modal-content {
      position: relative;
      .close {
        position: absolute;
        top: 3px;
        right: 3px;
        font-size: 1em;
        cursor: pointer;
        color: #fff;
        background: var(--color02);
        width: 28px;
        height: 28px;
        font-weight: 600;
        border-radius: 50%;
        text-align: center;
        align-content: center;
      }
    }
  }
  @keyframes fadeIn {
    from {
      transform: scale(0.9);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
}
/*==================================================
スクロールでうごく
===================================*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInTrigger, .fadeUpTrigger, .fadeDownTrigger, .fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
}
/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  animation-duration: 0.5s;
}
.change-time1 {
  animation-duration: 1s;
}
.change-time15 {
  animation-duration: 1.5s;
}
.change-time2 {
  animation-duration: 2s;
}
.change-time25 {
  animation-duration: 2.5s;
}
.change-time3 {
  animation-duration: 3s;
}
/*==================================================
シャッ（背景色が伸びて出現）
===================================*/
/*背景色が伸びて出現（共通）*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color02); /*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*右から*/
.bgRLextend::before {
  animation-name: bgRLextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color02); /*伸びる背景色の設定*/
}
@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*下から*/
.bgDUextend::before {
  animation-name: bgDUextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color01); /*伸びる背景色の設定*/
}
@keyframes bgDUextendAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/*上から*/
.bgUDextend::before {
  animation-name: bgUDextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color01); /*伸びる背景色の設定*/
}
@keyframes bgUDextendAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger, .bgUDextendTrigger, .bgDUextendTrigger, .bgRLextendTrigger, .bgLRextendTrigger {
  opacity: 0;
}
/*フワフワ*/
.huwahuwa, .huwahuwa_hover:hover {
  animation: floating-y 1s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}
.huwahuwa:hover {
  animation: floating-y-hover 1s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y-hover {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(0%);
  }
}
.huwahuwa {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}
/* タイピング用のアニメーションスタイル */
.typing-effect {
  visibility: hidden; /* 初期状態で非表示 */
}
.typing-effect span {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.01s ease;
}
/*追加分*/
header.site-header.scrolled {
    & #h_nav {
            display: none;
    }
}
header {
    .header {
        align-content: center;
    }
}
@media screen and (max-width: 1000px) {
    header {
        & .header {
                      height: 100px!important;
            .headercard {
                padding: 10px 50px 10px 5px!important;
            }
        }
    }
}
@media screen and (max-width: 600px) {
    header {
        .header {
            height: 70px!important;
      