:root {
  /* store */
  --color01: #f46c7c;
  --color01_01: #ffcad0;
  --color01_02: #ffe5e8;
  --color02: #fdaf85;
  --color03: #ffd738;
  --color04: #92f048;
  --color05: #9fefe8;
  --color06: #a7ddfc;
  --linecolor: #06c755;
  --font01: "Roboto", "Noto Sans JP", sans-serif;
  --font02: "Noto Sans JP", sans-serif;
  --font03: "Dela Gothic One", sans-serif;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font02);
  font-size: 27px;
  font-weight: 500;
  /*font-weight: 500;*/
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  line-height: 1;
  letter-spacing: -1px;
  color: #4c4c4c;
  overflow-x: hidden;
}
img, image {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  transform: scale(1.05, 1.05);
}
button {
  cursor: pointer;
}
h3 {
  font-size: 1em;
}
input {
  font-weight: 500;
  cursor: pointer;
	
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #fff;
  box-shadow: 0px 5px 5px var(--color01);
  z-index: 10;
  a {
    align-content: center;
    h1 {
      font-size: 100px;
      color: var(--color01);
      margin: 0;
      align-content: center;
      height: fit-content;
      span {
        font-size: 0.75em;
      }
    }
  }
}
#header {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  font-weight: 600;
  padding: 0 100px 0 10px;
  justify-content: space-between;
  position: relative;
  height: 170px;
  .address-box {
    align-content: center;
    margin: 0;
    .address {
      display: flex;
      margin: 0 0 10px;
      a {
        display: flex;
      }
      .time-24 {
        color: var(--color01);
        border: 3px solid var(--color01);
        line-height: 34px;
        border-radius: 5px;
        padding: 0 10px;
        margin: 0 15px 0 0;
      }
      .tel {
        color: var(--color01);
        font-size: 48px;
        img {
          margin: 0 5px 0 0;
          width: auto;
          height: fit-content;
          ;
        }
        div {
          display: flex;
          flex-wrap: wrap;
          align-content: center;
          justify-content: center;
          line-height: 36px;
        }
      }
    }
    .sns {
      display: flex;
      font-size: 29px;
      a {
        display: flex;
        img {
          margin: auto 10px auto 0;
          width: auto;
          height: fit-content;
          ;
        }
      }
      .mail {
        color: var(--color01);
        margin: 0 20px 0 0;
        width: fit-content;
        button {
          /* font: icon;*/
          width: fit-content;
          font-size: 1em;
          font-weight: 700;
          input {
            font-size: 1em;
			  font-weight: 600;
          }
        }
        div {
          display: flex;
          flex-wrap: wrap;
          align-content: center;
          justify-content: center;
        }
      }
      .line {
        color: #06c755;
        div {
          display: flex;
          flex-wrap: wrap;
          align-content: center;
          justify-content: center;
        }
      }
    }
  }
  .outer-menu {
    position: relative;
    z-index: 1;
    .checkbox-toggle {
      position: absolute;
      top: calc(50% - 45px);
      left: 0;
      z-index: 2;
      cursor: pointer;
      width: 90px;
      height: 90px;
      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;
      display: flex;
      justify-content: center;
      height: 100vh;
      padding: 140px 0px 0;
      nav {
        width: 100%;
        max-width: 1000px;
        overflow-x: hidden;
        overflow-y: auto;
        ul {
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          li {
            min-width: 50%;
            height: calc(100% / 6);
            padding: 0 0 2% 1%;
            a {
              display: flex;
              justify-content: flex-start;
              align-content: center;
              flex-wrap: wrap;
              line-height: 50px;
              color: var(--color01);
              font-size: 1.1em;
              width: 370px;
              margin: 0 auto 10px;
              img {
                margin: 0 10px 0 0;
                width: auto;
                height: 50px;
              }
            }
          }
        }
      }
    }
    .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% - 45px);
      left: 0;
      z-index: 1;
      width: 90px;
      height: 90px;
      padding: 0.5em 1em 1em;
      background: var(--color01);
      color: #fff;
      border-radius: 50%;
      cursor: pointer;
      backface-visibility: hidden;
      display: flex;
      align-items: end;
      justify-content: center;
      flex-wrap: wrap;
    }
    .hamburger > div {
      position: relative;
      flex: none;
      width: 100%;
      height: 2px;
      background: #fefefe;
      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;
      outline: 1px solid transparent;
      display: flex;
      /* ここで右上に配置 */
      justify-content: flex-end;
      align-items: flex-start;
    }
    .menu > div {
      width: 100%;
      height: 100vh;
      position: relative;
      background: #fff;
      transition: all 0.4s ease;
      flex: none;
      transform: scale(0);
      transform-origin: top right;
      backface-visibility: hidden;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      .menu_bg {
        position: absolute;
        left: -80%;
        animation: rotate 200s linear infinite;
        z-index: -1;
      }
    }
    .menu > div > div {
      text-align: center;
      /*width: 100%;
      height: 100vh;*/
      width: 100%;
      opacity: 0;
      transition: opacity 0.4s ease;
      overflow-y: auto;
    }
  }
}
/* 共通 */
main {
  padding: 0;
  width: 100%;
  overflow: hidden;
  #pankuzu {
    background-color: var(--color01);
    color: #fff;
    padding: 190px 1% 10px;
    font-size: 0.8em;
    div {
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
    }
  }
}
#lowerlayer-tit {
  padding: 80px 0 120px;
  .card_01 {
    display: flex;
    justify-content: center;
    width: 95%;
    margin: auto;
    max-width: 1300px;
    .txt {
      font-weight: 800;
      align-content: center;
      margin: 0 3% 0 0;
      .t01 {
        font-family: var(--font01);
        color: var(--color01_01);
        padding: 0 0 15px;
        border-bottom: 7px dotted var(--color01_01);
        /*max-width: 500px;*/
      }
      .t02 {
        font-size: 2em;
        color: var(--color01);
        padding: 15px 0 0;
      }
    }
    .img {
      img {
        height: fit-content;
        width: fit-content;
        max-width: fit-content;
      }
    }
  }
}
#faq {
  #lowerlayer-tit {
    .card_01 {
      .txt {
        .t01 {
          font-size: 5em;
        }
      }
    }
  }
}
#contact, #group, #mens, #news, #newsdetail, #movie {
  #lowerlayer-tit {
    .card_01 {
      .txt {
        .t01 {
          font-size: 3.7em;
        }
      }
    }
  }
}
#migrant-worker, #works, #flow {
  #lowerlayer-tit {
    .card_01 {
      .txt {
        .t01 {
          font-size: 3.2em;
        }
      }
    }
  }
}
#lowerlayer-card {
  width: 100%;
  margin: auto;
  line-height: 1.5;
  h3 {
    text-align: center;
    font-weight: 500;
    margin: 0 auto 80px;
  }
  .lowerlayercard {
    width: 95%;
    max-width: 1200px;
    margin: auto;
    .tit {
      color: var(--color01);
      display: flex;
      justify-content: center;
      align-content: center;
      font-size: 1.48em;
      font-weight: 800;
      margin: 0 auto 70px;
      img {
        margin: 0 10px 0 0;
      }
    }
    .text {
      margin: 0 auto 80px;
      strong {
        font-size: 1.5em;
        color: var(--color01);
      }
    }
    .card {
      display: flex;
      justify-content: space-around;
      padding: 0 0 80px;
      .txt {
        align-content: center;
        /*width: 50%;*/
        padding: 0 3%;
        .t01 {
          font-size: 1.1em;
          color: var(--color01);
          margin: 0 0 30px;
          font-weight: 800;
        }
        .t02 {
          span {
            color: var(--color01);
          }
        }
      }
      .img {
        display: contents;
        /*width: 50%;*/
        padding: 0 3%;
        img {
          height: fit-content;
        }
      }
    }
    .card:nth-child(2n) {
      flex-direction: row-reverse;
    }
    .ctxt {
      line-height: 1.5;
      text-align: center;
      span {
        color: var(--color01);
      }
    }
  }
}
#top-btn {
  .top-btn {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    justify-content: space-around;
    a {
      border: 5px solid var(--color01_01);
      border-radius: 20px;
      box-shadow: 0 0 5px var(--color01);
      width: calc(50% - 20px);
      margin: 0;
      display: block;
      text-align: center;
      padding: 0 5px 40px;
      line-height: 1.3;
      font-weight: 800;
      overflow: hidden;
      max-width: 640px;
      img {
        width: 95%;
        max-width: 250px;
        margin: 15px auto;
      }
      .text {
        color: var(--color01);
        margin-bottom: 20px;
      }
      .tit {
        font-size: 1.48em;
        margin-bottom: 20px;
        min-height: 104px;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
      }
      .txt {
        font-size: 0.74em;
        background-color: var(--color01);
        color: #fff;
        padding: 10px 0;
        font-weight: 300;
      }
    }
    figure {
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
    }
    figure:hover {
      transform: scale(1.05, 1.05);
    }
    a.jobdetails_salary_btn {
      background: url(../images/bottom_bnr01.png) no-repeat scroll top center / cover;
      .tit {
        font-size: 1.66em;
      }
    }
    a.qa_btn {
      background: url(../images/bottom_bnr02.png) no-repeat scroll top center / cover;
      .tit {
        font-size: 2.22em;
      }
    }
    a.contact_btn {
      background: url(../images/bottom_bnr03.png) no-repeat scroll top center / cover;
    }
    a.migrantplan_btn {
      background: url(../images/bottom_bnr04.png) no-repeat scroll top center / cover;
    }
  }
}
#sns-cards {
  .sns-card {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto 120px;
    display: flex;
    justify-content: center;
    .one-card {
      width: 49.5%;
      max-width: 630px;
      margin: 0 auto;
      .cards {
        margin: 0 auto 10px;
        border: 3px solid var(--color01);
        border-radius: 15px;
        overflow: hidden;
        padding: 40px 0 10px;
        .card {
          width: 90%;
          margin: auto;
          .tit {
            display: flex;
            font-size: 1.48em;
            line-height: 40px;
            margin: 0 0 30px;
            font-weight: 800;
            img {
              height: 40px;
              width: auto;
              margin: 0 10px 0 0;
            }
          }
          .t {
            display: flex;
            font-size: 1.77em;
            margin: 0 0 30px;
            line-height: 36px;
            img {
              height: fit-content;
              margin: 0 5px 0 0;
            }
          }
          .q {
            display: flex;
            margin: 0 0 15px;
            font-weight: 800;
            line-height: 35px;
            span {
              border: 3px solid var(--color01);
              padding: 0 5px;
              margin: 0 0 0 5px;
              line-height: 29px;
              border-radius: 10px;
              font-size: 0.9em;
            }
          }
          .box {
            display: flex;
            margin: 0 0 30px;
            p {
              line-height: 1.3;
              font-size: 0.74em;
            }
            .img {
              display: contents;
              img {
                height: fit-content;
              }
            }
          }
        }
      }
      .cards.tel {
        .card {
          .tit {
            color: var(--color01);
          }
          .t {
            color: var(--color01);
          }
          .q {
            color: var(--color01);
          }
          .box {
            p {}
          }
        }
      }
      .cards.mail {
        .card {
          .tit {
            color: var(--color01);
          }
          .t {
            button {
              width: fit-content;
              font-size: 1em;
              font-weight: 500;
              input {
                font-size: 1em;
              }
            }
          }
          .q {
            color: var(--color01);
          }
          .box {
            p {}
          }
        }
      }
      .cards.line {
        .card {
          .tit {
            color: var(--linecolor);
          }
          .t {
            span {
              color: var(--linecolor);
            }
          }
          .q {}
          .box {
            p {}
          }
        }
      }
    }
  }
}
/* モーダル非表示時 */
#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: 95%;
    h3 {
      font-size: 1.33em;
      text-align: center;
      color: var(--color01);
      margin: 0 auto 35px;
    }
    .kin18 {
      width: 100px;
      margin: auto;
    }
    img {
      width: 75%;
      max-width: fit-content;
      margin: 0 auto 55px;
    }
    button {
      width: 80%;
      max-width: 300px;
      margin: 0 auto 30px;
      font-size: 2.22em;
      color: #fff;
      background-color: var(--color01);
      padding: 20px 0 25px;
      border-radius: 10px;
      span {
        font-size: 18px;
        display: block;
        text-align: center;
        margin: 5px 0 0;
      }
    }
    p {
      line-height: 1.8;
      text-align: center;
      a {
        color: var(--color01);
        text-decoration: underline;
      }
    }
  }
}
#pagination-container {
  display: flex;
  justify-content: center;
  align-content: center;
  button {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 3px solid var(--color01);
    color: var(--color01);
    margin: 0 10px;
    box-shadow: 0 0 5px var(--color01_01);
    font: inherit;
  }
  button.active {
    background-color: var(--color01);
    color: #fff;
  }
  button.prev-btn, button.next-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color01);
    color: #fff;
  }
  button.prev-btn.prev-disabled, button.next-btn.next-disabled {
    opacity: 0;
  }
  /* Prev / Next 用のクラス例 */
  button.prev-btn::before {
    content: "←";
  }
  button.next-btn::after {
    content: "→";
  }
}
/* /　共通　/ */
.top-tit {
  color: var(--color01);
  font-size: 2.59em;
  text-align: center;
  font-weight: 800;
  margin: 0 0 90px;
  /*display: flex;
  justify-content: center;
	flex-wrap: wrap;*/
  align-content: center;
  img {
    display: inline-block;
  }
}
#top-slide {
  margin: 0 auto 150px;
  .top-slide {
    padding: 0 0 20px;
    margin: 0 auto 150px;
    figure {
      text-align: center;
      img {
        margin: auto;
      }
    }
  }
  h2 {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    width: 95%;
    margin: auto;
  }
}
.slick-dots li button:before {
  color: var(--color01) !important;
}
#top-news {
  padding: 0 0 160px;
  .top-news {
    display: flex;
    margin: 0 0 80px;
    .one-card {
      font-size: 23px;
      margin: 0 1%;
      .img {
        margin: 0 0 20px;
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        img {
          border-radius: 20px;
          overflow: hidden;
        }
      }
      .day {
        margin: 0 0 15px;
        font-weight: 700;
      }
      .text {
        line-height: 1.8;
        position: relative;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 表示する行数 */
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
    }
  }
}
#top-point {
  z-index: 1;
  position: relative;
  .top-point {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    .one-card {
      display: flex;
      width: 50%;
      padding: 0 35px 70px;
      .text {
        width: calc(100% - 295px);
        .point {
          font-size: 1.85em;
          margin: 0 0 10px;
          font-weight: 800;
          span {
            font-size: 1.2em;
          }
        }
        .tit {
          font-weight: 600;
          font-size: 1.1em;
          margin: 0 0 10px;
          line-height: 1.3;
          span {
            font-size: 1.5em;
            color: var(--color01);
          }
        }
        .txt {
          line-height: 1.5;
        }
      }
      .img {}
    }
    .one-card.card01 {
      .point {
        color: var(--color01);
      }
    }
    .one-card.card02 {
      .point {
        color: var(--color02);
      }
    }
    .one-card.card03 {
      .point {
        color: var(--color03);
      }
    }
    .one-card.card04 {
      .point {
        color: var(--color04);
      }
    }
    .one-card.card05 {
      .point {
        color: var(--color05);
      }
    }
    .one-card.card06 {
      .point {
        color: var(--color06);
      }
    }
  }
}
#top-movie {
  background: url(../images/top_movie_bg.png) no-repeat scroll center center;
  height: 1200px;
  padding: 250px 0 0;
  margin: -200px 0 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 0;
  .top-movie {
    padding: 0 0 30px;
    margin: 0 0 70px;
    .one-card {
      margin: 0 15px;
      video {
        border-radius: 10px;
        overflow: hidden;
        margin: auto;
      }
    }
    .slick-prev, .slick-next {
      width: 70px;
      height: 70px;
    }
    .slick-prev {
      right: 0.5%;
      background: url(../images/top-movie_prev.png) no-repeat scroll center center / 100% 100%;
    }
    .slick-next {
      left: 0.5%;
      background: url(../images/top-movie_next.png) no-repeat scroll center center / 100% 100%;
    }
  }
  .movie_img {
    position: absolute;
    animation: rotate 100s linear infinite;
    z-index: 2;
    bottom: 10%;
    left: -50px;
    width: 350px;
    opacity: 0.4;
  }
}
#top-mygroup {
  position: relative;
  .top-mygroup {
    background: url(../images/mygrouptoha_bg.png) no-repeat scroll top center;
    .top-mygroup-card {
      width: 95%;
      max-width: 1500px;
      margin: auto;
      .one-card {
        .mygroup-card {
          position: relative;
          .img {
            display: block;
            flex-shrink: 0;
          }
          .text {
            .tit {
              font-size: 1.85em;
              font-weight: 800;
              text-align: center;
              color: var(--color01);
              margin: 40px 0 50px;
              div {
                padding: 20px 0 0;
                margin: 20px 0 0;
                font-size: 0.7em;
                border-top: 2px dashed var(--color01);
				  font-weight: 600;
              }
            }
            .txt {
              font-size: 0.74em;
              line-height: 35px;
              margin: 0 auto 50px;
              strong {
                font-size: 2em;
                color: var(--color01);
                margin: 0 3px 0 0;
              }
            }
          }
        }
        .dot {
          width: 10px;
          position: absolute;
          margin: auto;
          height: 10px;
        }
      }
    }
    .top-mygroup-card.top-mygroup-card01 {
      margin: 0 auto 120px;
      .mygroup-card.card01 {
        display: flex;
        width: 100%;
        max-width: 1200px;
        margin: auto;
        .text {
          margin: 0 0 0 100px;
        }
      }
      .dot {
        bottom: 0;
        right: 0;
        left: 0;
      }
    }
    .top-mygroup-card.top-mygroup-card02 {
      display: flex;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto 150px;
      justify-content: space-between;
      .mygroup-card.card02 {
        max-width: 500px;
        .text {
          margin: 0 auto;
        }
        .one.dot {
          position: absolute;
          top: 5%;
          right: 0;
        }
        .two.dot {
          position: absolute;
          top: 30%;
          right: 0;
        }
      }
      .mygroup-card.card03 {
        margin: 200px auto 0;
        max-width: 550px;
        .text {
          margin: 0 auto;
        }
        .two.dot {
          position: absolute;
          top: 15%;
          left: 0;
        }
        .three.dot {
          position: absolute;
          bottom: 5%;
          left: 0;
        }
      }
    }
    .top-mygroup-card.top-mygroup-card03 {
      margin: 0 auto 150px;
      .mygroup-card.card04 {
        display: flex;
        width: 100%;
        max-width: 1200px;
        flex-direction: row-reverse;
        .text {
          margin: 0 0 0 100px;
        }
        .three.dot {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
        }
        .four.dot {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
        }
      }
    }
    .top-mygroup-card.top-mygroup-card04 {
      margin: 0 auto 150px;
      .mygroup-card.card05 {
        display: flex;
        width: 100%;
        max-width: 1200px;
        margin: auto;
        .text {
          margin: 0 0 0 100px;
        }
        .four.dot {
          position: absolute;
          top: 5%;
          left: 10%;
          right: 0;
        }
        .five.dot {
          position: absolute;
          bottom: 5%;
          left: 15%;
          right: 0;
        }
      }
    }
    .top-mygroup-card.top-mygroup-card05 {
      display: flex;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto 150px;
      justify-content: space-between;
      .mygroup-card.card06 {
        max-width: 500px;
        .text {
          margin: 0 auto;
        }
        .five.dot {
          position: absolute;
          top: 0;
          right: 0;
        }
        .six.dot {
          position: absolute;
          top: 30%;
          right: 0;
        }
      }
      .mygroup-card.card07 {
        max-width: 550px;
        margin: 200px auto 0;
        .text {
          margin: 0 auto;
        }
        .six.dot {
          position: absolute;
          top: 15%;
          left: 5%;
        }
        .seven.dot {
          position: absolute;
          bottom: 5%;
          left: 0;
        }
      }
    }
    .top-mygroup-card.top-mygroup-card06 {
      margin: 0 auto 150px;
      .mygroup-card.card08 {
        display: flex;
        width: 100%;
        max-width: 1200px;
        margin: auto;
        .text {
          margin: 0 0 0 100px;
        }
        .seven.dot {
          position: absolute;
          top: 0;
          left: 0;
          right: 15%;
        }
        .eight.dot {
          position: absolute;
          bottom: 5%;
          left: 0;
          right: 15%;
        }
      }
    }
    .top-mygroup-card.top-mygroup-card07 {
      display: flex;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto 150px;
      justify-content: space-between;
      flex-direction: row-reverse;
      .mygroup-card.card09 {
        max-width: 500px;
        .text {
          margin: 0 auto;
        }
        .eight.dot {
          position: absolute;
          top: 0;
          left: 0;
        }
        .nine.dot {
          position: absolute;
          top: 35%;
          left: 0;
        }
      }
      .mygroup-card.card10 {
        max-width: 550px;
        margin: 200px auto 0;
        .text {
          margin: 0 auto;
        }
        .nine.dot {
          position: absolute;
          top: 20%;
          right: 0;
        }
      }
    }
  }
}
#top {
  #top-btn {
    .top-btn {
      max-width: 1730px;
      a {
        width: calc(25% - 10px - 20px);
      }
    }
  }
}
#top-group {
  position: relative;
  margin: 60px auto 0;
  padding: 250px 0 0;
  overflow: hidden;
  .top-group_bg {
    position: absolute;
    top: 0;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    .img {
      width: 100%;
      animation: rotate 100s linear infinite;
      /* animationプロパティの内訳:
         - "rotate" は後述するキーフレームの名前
         - "2s" は 1 回の回転にかかる時間（ここでは 2 秒）
         - "linear" は一定速度の回転を実現する指定
         - "infinite" は無限にアニメーションを繰り返す指定
      */
    }
  }
  .top-group {
    background: #fff;
    ul:first-child {
      width: 95%;
      display: flex;
      flex-wrap: wrap;
      max-width: 1300px;
      margin: auto;
      padding: 0;
      li {
        width: calc(50% - 30px);
        margin: 15px;
      }
    }
    ul:last-child {
      width: 95%;
      display: flex;
      flex-wrap: wrap;
      max-width: 680px;
      margin: auto;
      li {
        width: calc(50% - 40px);
        margin: 20px;
      }
    }
    img {
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
    }
    img:hover {
      transform: scale(1.05, 1.05);
    }
  }
}
/* キーフレームの定義 */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.more-btn {
  width: fit-content;
  padding: 15px 50px;
  background-color: var(--color01);
  color: #fff;
  box-shadow: 5px 5px 5px #e0c6cd;
  border-radius: 100px;
  margin: auto;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.more-btn:hover {
  transform: scale(1.1, 1.1);
}
footer {
  box-shadow: 0 -4px 6px var(--color01);
  margin: 150px auto 0;
  padding: 100px 0 0;
  #f_tracking {
    position: fixed;
    bottom: 10px;
    right: 0;
    z-index: 9;
    #page-top {
      transition: right 0.3s ease;
      a {
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--color01);
        border-radius: 50%;
        width: 75px;
        height: 75px;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 1s;
        transform: rotate(-90deg);
        line-height: 75px;
        font-size: 75px;
        padding: 0px 0 20px;
        margin: 0 0 10px auto;
      }
    }
    #page-top.LeftMove {
      opacity: 1;
    }
    #page-top.RightMove {
      opacity: 0;
    }
    #h_sns {
      position: relative;
      /*top: 530px;
      right: 80px;
      transform: rotate(90deg);*/
      transform-origin: bottom right;
      border: 3px solid var(--color01);
      border-radius: 10px 0 0 10px;
      font-size: 1.11em;
      color: var(--color01);
      padding: 25px 20px;
      background-color: #fff;
      min-width: 80px;
      border-right: none;
		            box-shadow: -2px 2px 5px #00000036;
      .h_sns {
        height: 280px;
        .sns01 {
          font-weight: 700;
          display: inline-block;
          position: relative;
          text-align: center;
          p {
            position: absolute;
            width: 300px;
            transform: rotate(90deg);
            right: -175px;
            top: 85px;
          }
          /*p:hover {
            transform: scale(1.05, 1.05);
          }*/
        }
        .sns02 {
          display: none;
          > p {
            font-size: 0.66em;
            border: 2px solid #fff;
            text-align: center;
            padding: 3px 0;
            margin: 0 0 15px;
          }
          ul {
            font-size: 0.83em;
            li {
              margin: 0 0 15px;
              line-height: 45px;
              width: 100%;
              a {
                display: flex;
                color: #fff;
                align-content: center;
                flex-wrap: wrap;
                img {
                  margin: 0 5px 0 0;
                }
              }
              a:hover {
                transform: scale(1.05, 1.05);
              }
            }
          }
        }
      }
    }
    #h_sns:hover, #h_sns:active {
      /*height: 305px;
      right: 0;
      top: 310px;
      transform: rotate(0deg);*/
      background-color: var(--color01);
      border-radius: 10px 0 0 10px;
      .h_sns {
        .sns01 {
          display: none;
        }
        .sns02 {
          display: block;
          color: #fff;
          button {
            /* font: icon;*/
            width: fit-content;
            font-size: 1em;
            font-weight: 700;
            input {
              font-size: 1em;
            }
          }
        }
      }
    }
    .hsns_modal {
      position: relative;
      .modal-open-button {
        text-decoration: none;
        cursor: pointer;
        background-color: #fff;
        border: none;
        border-radius: 5px;
        display: block;
        position: relative;
        transform-origin: bottom right;
        border: 3px solid var(--color01);
        border-radius: 10px 0 0 10px;
        font-size: 1.11em;
        color: var(--color01);
        padding: 25px 20px;
        background-color: #fff;
        min-width: 80px;
        border-right: none;
        height: 280px;
		              box-shadow: -2px 2px 5px #00000036;
        .modal-open-buttoncard {
          position: absolute;
          width: 300px;
          transform: rotate(90deg);
          right: -105px;
          top: 165px;
          font-weight: 700;
        }
      }
      .modal {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 1;
        display: none;
        align-items: self-end;
        width: fit-content;
        height: fit-content;
        .modal-wrapper {
          position: relative;
          width: 100%;
          max-width: 500px;
          max-height: 70%;
          padding: 0 20px;
          min-height: 280px;
          margin: auto;
          overflow: scroll;
          color: #fff;
          background-color: var(--color01);
          border-radius: 5px;
          overflow: hidden;
          border-radius: 10px 0 0 10px;
          align-content: center;
          height: fit-content;
          p {
            font-size: 1em;
            border: 2px solid #fff;
            text-align: center;
            padding: 5px 0;
			  width: 90%;
            margin: 15px auto;
            /*width: fit-content;*/
          }
          ul {
            font-size: 1em;
            li {
              margin: 0 0 15px;
              line-height: 30px;
              width: 100%;
              a {
                display: flex;
                color: #fff;
                align-content: center;
                img {
                  margin: auto 5px auto 0;
                  height: 30px;
                  width: auto;
                  display: block;
                  align-content: center;
                }
                button {
                  input {
                    font-size: 1.4em;
                  }
                }
              }
            }
          }
        }
      }
      .modal:target {
        display: flex;
      }
      .close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 0.8em;
        color: #fff;
        text-decoration: none;
        cursor: pointer;
        transform: translate(50%, -50%);
        height: auto;
        text-align: center;
        align-content: center;
        border-radius: 50%;
        border: 2px solid #fff;
      }
    }
  }
  .f_logo {
    text-align: center;
    font-size: 100px;
    display: block;
    width: fit-content;
    margin: 0 auto 50px;
    font-weight: 700;
    color: var(--color01);
    span {
      font-size: 0.8em;
    }
  }
  .f_txt {
    text-align: center;
    font-size: 0.74em;
    margin: 0 auto 70px;
    line-height: 2;
    width: 95%;
  }
  .address {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    color: var(--color01);
    font-size: 2.22em;
    line-height: 36px;
    width: 95%;
    max-width: 700px;
    margin: 0 auto 50px;
    .time-24 {
      font-size: 0.45em;
      padding: 5px 8px;
      border-radius: 5px;
      font-weight: 700;
      border: 3px solid var(--color01);
    }
    .no {
      display: flex;
      justify-content: center;
      align-content: center;
      font-weight: 600;
      img {
        margin: 0 15px;
        flex-shrink: 0;
        height: fit-content;
        vertical-align: bottom;
        padding: 0;
      }
    }
  }
  .sns {
    display: flex;
    justify-content: center;
    align-content: center;
    width: fit-content;
    margin: auto;
    a {
      div {}
      img {
        flex-shrink: 0;
        height: fit-content;
      }
    }
    .mail-card {
      color: var(--color01);
      width: min-content;
      display: flex;
      align-content: baseline;
      flex-wrap: wrap;
      margin: 0 70px 0 0;
      .mail01 {
        font-size: 1.11em;
        line-height: 40px;
        margin: 0 0 10px;
        display: flex;
        align-content: baseline;
        flex-wrap: wrap;
        width: 100%;
        font-weight: 800;
        img {
          margin: 6px 5px 0 0;
        }
      }
      .mail02 {
        font-size: 1.26em;
        button {
          /* font: icon;*/
          width: fit-content;
          font-size: 1em;
          input {
            font-size: 1em;
          }
        }
      }
    }
    .line-card {
      width: min-content;
      display: flex;
      align-content: baseline;
      flex-wrap: wrap;
      .linecard {
        display: flex;
        align-content: baseline;
        .line {
          width: fit-content;
          .line01 {
            font-size: 1.11em;
            line-height: 40px;
            color: #06c755;
            margin: 0 0 10px;
            display: flex;
            align-content: baseline;
            flex-wrap: wrap;
            width: 100%;
            font-weight: 800;
            img {
              margin: 0 5px 0 0;
            }
          }
          .line02 {
            font-size: 1.26em;
            color: #06c755;
          }
        }
      }
      p {
        width: 100%;
        white-space: nowrap;
      }
    }
  }
  .f_btn {
    width: 100%;
    max-width: 450px;
    margin: 60px auto;
    a {
      width: 95%;
      margin: 0 auto 10px;
      display: flex;
      justify-content: center;
      align-content: center;
      text-align: center;
      border-radius: 10px;
      border: 2px solid var(--color01);
      font-size: 1.11em;
      padding: 20px 0;
      img {
        margin: 0 10px 0 0;
      }
      div {
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
      }
    }
    a:first-child {
      background: var(--color01);
      color: #fff;
    }
    a:last-child {
      color: var(--color01);
      background: "#fff";
    }
  }
  ul.fnav {
    display: flex;
    margin: 0 auto 35px;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    a {
      margin: 0 30px 30px;
      color: var(--color01);
    }
  }
  #copy {
    background: var(--color01);
    color: #fff;
    text-align: center;
    padding: 20px;
    copy {
      margin: 0 0 20px;
      font-size: 0.81em;
      font-weight: 500;
    }
    p {
      line-height: 1.8;
      font-size: 0.63em;
    }
  }
}
#about {
  #lowerlayer-tit {
    .card_01 {
      .txt {
        .t01 {
          font-size: 3.5em;
        }
      }
    }
  }
  #about-card01 {
    .card {
      background-color: var(--color01_02);
      p {
        width: fit-content;
        max-width: 95%;
        margin: auto;
        line-height: 1.8;
        padding: 60px 0 80px;
        display: block;
        text-align: center;
        span {
          color: var(--color01);
        }
      }
    }
  }
  #about-card02 {
    overflow: hidden;
    padding: 0 0 150px;
    .tit {
      color: var(--color01);
      text-align: center;
      font-weight: 600;
      margin: 0 auto 100px;
      .tit01 {
        font-size: 2.6em;
        padding: 0 0 35px;
      }
      .line {
        max-width: 470px;
        width: 100%;
        margin: auto;
        border-bottom: 5px dotted var(--color01);
      }
      .tit02 {
        font-size: 1.3em;
        padding: 30px 0 0;
      }
      .tit03 {
        font-size: 1.48em;
        padding: 40px 0 0;
      }
    }
    .card_01 {
      background: url("../images/about-card01_bg01.png") no-repeat scroll bottom center;
      padding: 120px 0 0;
      .iconcards {
        .iconcard {
          display: flex;
          width: 95%;
          margin: 0 auto 80px;
          max-width: 1600px;
          figure {
            border: 3px solid var(--color01);
            border-radius: 20px;
            justify-content: center;
            align-content: center;
            padding: 0 0.2% 1%;
            width: calc(100% / 4 - 10px - 1.5%);
            max-width: 250px;
            margin: 0 0.5% 0 0;
            background-color: #fff;
            img {
              margin: auto;
            }
            figcaption {
              text-align: center;
              color: var(--color01);
            }
          }
        }
      }
      .txtcard {
        line-height: 1.8;
        width: 95%;
        margin: auto;
        max-width: 1600px;
        strong {
          color: var(--color01);
          font-size: 1.5em;
          line-height: 1;
        }
      }
    }
    .card_02 {
      background: url("../images/about-card02_bg01.png") no-repeat scroll top center;
      padding: 170px 0 0;
      .cards {
        width: 95%;
        margin: auto;
        max-width: 1050px;
        .card {
          display: flex;
          position: relative;
          padding: 40px 0 50px;
          margin: 0 auto 110px;
          .no {
            font-size: 4em;
            font-weight: 600;
            color: var(--color01);
            margin: 0 40px 0 0;
          }
          p {
            line-height: 1.8;
            strong {
              color: var(--color01);
              font-size: 1.5em;
            }
          }
          .dot {
            width: 5px;
            height: 120px;
            border-right: 5px #bfbfbf dotted;
            bottom: -120px;
            right: 0;
            left: 0;
            margin: auto;
            position: absolute;
          }
        }
        /* .card.card01 {
          .one {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
          }
        }
        .card.card02 {
          .one {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
          }
          .two {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
          }
        }
        .card.card03 {
          margin: 0 auto;
          .two {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
          }
        }*/
      }
    }
    .card_03 {
      padding: 250px 0 0;
      position: relative;
      background: url("../images/about-card02_bg02.png") no-repeat scroll top center;
      .marquee {
        position: absolute;
        top: 0;
      }
      .onecard {
        width: 100%;
        overflow-x: inherit;
        margin: 0 0 125px;
        .card {
          display: flex;
          .text {
            padding: 0 1%;
            display: flex;
            align-content: center;
            flex-wrap: wrap;
            .txt {
              max-width: 500px;
              .tit {
                display: flex;
                justify-content: center;
                align-content: center;
                font-size: 40px;
                font-weight: 800;
                margin: 0 auto;
                img {
                  margin: 0 10px 0 0;
                }
                div {
                  align-content: center;
                }
              }
              .wave {
                margin: 30px auto 25px;
                display: block;
              }
              p {
                font-size: 0.9em;
                line-height: 1.8;
                strong {
                  font-size: 1.8em;
                  color: var(--color01);
                  font-weight: 500;
                }
              }
            }
          }
          .img {
            width: 50%;
            overflow: hidden;
            img {
              height: fit-content;
              width: fit-content;
              max-width: fit-content;
            }
          }
        }
      }
      .onecard.card01 {
        .card {
          .text {
            width: 50%;
            justify-content: end;
            .txt {
              .tit {
                color: var(--color01);
              }
            }
          }
          .img {
            width: 50%;
            img {
              margin: 0 0 0 50px;
            }
          }
        }
      }
      .onecard.card02 {
        .card {
          flex-direction: row-reverse;
          .text {
            width: 55%;
            .txt {
              .tit {
                color: var(--color02);
              }
            }
          }
          .img {
            width: 45%;
            justify-content: end;
            display: flex;
            img {
              margin: 0 50px 0 0;
            }
          }
        }
      }
      .onecard.card03 {
        .card {
          .text {
            width: 60%;
            justify-content: end;
            .txt {
              .tit {
                color: var(--color03);
              }
            }
          }
          .img {
            width: 40%;
            img {
              margin: 0 0 0 50px;
            }
          }
        }
      }
      .onecard.card04 {
        .card {
          flex-direction: row-reverse;
          .text {
            width: 45%;
            .txt {
              .tit {
                color: var(--color04);
              }
              p {
                margin: 0 0 50px;
              }
            }
          }
          .img {
            width: 55%;
            justify-content: end;
            display: flex;
            img {
              margin: 0 50px 0 0;
            }
          }
        }
      }
    }
    .mantext {
      text-align: center;
      line-height: 1.8;
      margin: 0 auto 50px;
      width: 95%;
    }
  }
}
#flow {
  #flow-card01 {
    background: url("../images/flow_bg.png") no-repeat scroll top center;
    .flow-card01 {
      width: 95%;
      max-width: 1000px;
      margin: auto;
      padding: 60px 0;
      .card {
        width: 100%;
        background-color: #fff;
        padding: 50px 1%;
        border-radius: 20px;
        margin: 0 auto 60px;
        box-shadow: 0 0 10px var(--color01);
        .tit {
          display: flex;
          justify-content: center;
          align-content: center;
          flex-wrap: wrap;
          color: var(--color01);
          margin: 0 auto 30px;
          font-weight: 600;
          .t1 {
            align-content: center;
            strong {
              display: block;
              font-size: 2.2em;
            }
          }
          img {
            margin: 0 30px;
          }
          .t2 {
            align-content: center;
            font-size: 1.5em;
          }
        }
        .txt {
          text-align: center;
          color: var(--color01);
          margin: 0 0 25px;
          font-weight: 600;
        }
        p {
          max-width: 820px;
          width: 95%;
          margin: 0 auto;
          font-size: 0.8em;
          line-height: 1.8;
          strong {
            font-size: 2em;
            color: var(--color01);
            line-height: 1;
          }
        }
        .hukidasi {
          .hukidasibox {
            color: var(--color01);
            background-color: var(--color01_01);
            padding: 20px 35px;
            width: fit-content;
            margin: 20px auto 0;
            border-radius: 10px;
          }
          .hukidasiyajirushi {
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid var(--color01_01);
            margin: auto;
          }
          .hukidasitxt {
            text-align: center;
            margin: 20px auto 0;
            font-weight: 600;
            span {
              color: var(--color01);
            }
          }
        }
      }
    }
  }
  #lowerlayer-card {
    padding: 100px 0 90px;
    background: url("../images/about-card01_bg01.png") no-repeat scroll bottom center;
    .lowerlayercard {}
  }
}
#group {
  background: url("../images/group_bg.png") no-repeat scroll top center;
  #group-card01 {
    h3 {
      text-align: center;
      font-size: 1em;
      line-height: 1.8;
      font-weight: 500;
      margin: 0 auto 100px;
      width: 95%;
      strong {
        display: block;
        color: var(--color01);
      }
    }
    .group-card01 {
      display: flex;
      justify-content: center;
      align-content: center;
      width: 95%;
      margin: 0 auto 150px;
      max-width: 1600px;
      .img {
        width: 50%;
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        img {}
      }
      .text {
        line-height: 1.8;
        .tit {
          margin: 0 0 10px;
          color: var(--color01);
          font-weight: 600;
        }
        p {
          font-size: 0.88em;
          padding: 0 20% 0 0;
          span {
            color: var(--color01);
          }
        }
      }
    }
  }
  #group-card02 {
    .group-card02 {
      display: flex;
      justify-content: center;
      align-content: center;
      flex-wrap: wrap;
      width: 100%;
      max-width: 1000px;
      margin: 0 auto 60px;
      .card {
        width: calc(50% - 80px);
        margin: 0 40px 70px;
        .img {
          margin: 0 0 15px;
          border-radius: 10px;
          overflow: hidden;
        }
        .kindsbox {
          display: flex;
          margin: 0 0 15px;
          font-size: 0.7em;
          line-height: 27px;
          .area {
            padding: 0 10px;
            background-color: var(--color01);
            color: #fff;
          }
          .kinds {
            padding: 0 10px;
          }
        }
        .name {
          margin: 0 0 15px;
        }
        .price {
          margin: 0 0 15px;
          font-size: 0.88em;
          color: var(--color01);
        }
        p {
          margin: 0 0 30px;
          line-height: 1.8;
          max-height: 150px;
          height: auto;
          overflow-y: auto;
          overflow-x: hidden;
          font-size: 0.66em;
        }
        a {
          color: var(--color01);
          border: 3px solid var(--color01);
          border-radius: 50px;
          padding: 5px 20px;
          line-height: 40px;
          width: fit-content;
          display: block;
          margin: auto;
        }
      }
    }
  }
}
#migrant-worker-card01 {
  position: relative;
  .migrant-worker-card {
    figure {
      width: 95%;
      max-width: 980px;
      margin: 0 auto 40px;
      img {
        margin: auto;
      }
    }
  }
  .marquee {
    position: absolute;
    bottom: -15%;
  }
}
#migrant-worker-card02 {
  background: url("../images/migrantworker-card02_bg.png") no-repeat scroll top center;
  padding: 150px 0;
  .cards {
    width: 95%;
    max-width: 980px;
    margin: 150px auto 40px;
    border: 5px solid var(--color01);
    border-radius: 15px;
    box-shadow: 0 0 10px var(--color01);
    background-color: #fff;
    padding: 70px 0;
    .card {
      padding: 30px 0;
      width: 90%;
      max-width: 800px;
      margin: auto;
      display: flex;
      .img {
        max-width: 220px;
        width: 30%;
        text-align: center;
        font-size: 0.85em;
        line-height: 1.5;
        color: var(--color01);
        img {
          margin: 0 auto 10px;
        }
      }
      .line {
        width: 5px;
        height: 130px;
        border-left: 5px dotted var(--color01);
      }
      .txt {
        padding: 0 0 0 30px;
        justify-content: center;
        font-size: ;
        line-height: 1.8;
        strong {
          font-size: 1.74em;
          color: var(--color01);
          margin: 0 5px 0 0;
          line-height: 1;
        }
      }
    }
  }
}
#mens-card01 {
  padding: 0 0 100px;
  h3 {
    font-size: 1.48em;
    text-align: center;
    color: var(--color01);
    margin: 0 auto 50px;
  }
  figure {
    width: 95%;
    max-width: 960px;
    margin: auto;
  }
}
#mens-card02 {
  position: relative;
  padding: 0 0 50px;
  .tit {
    display: flex;
    justify-content: center;
    align-content: center;
    line-height: 55px;
    font-size: 1.29em;
    color: var(--color01);
    margin: 0 auto 50px;
    font-weight: 600;
    img {
      margin: 0 10px 0 0;
    }
  }
  .mens-card {
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 0 0 130px;
    img {
      margin: 0 40px;
    }
  }
  .marquee {
    position: absolute;
    bottom: 100px;
  }
}
#mens-card03 {
  background: url("../images/mens_bg.png") no-repeat scroll bottom center;
  padding: 0 0 50px;
  .mens-card {
    width: 95%;
    margin: auto;
    max-width: 1000px;
    .card {
      background-color: #fff;
      border-radius: 15px;
      margin: 0 auto 50px;
      box-shadow: 0 0 10px var(--color01);
      padding: 60px 0;
      .tit {
        font-size: 1.48em;
        color: var(--color01);
        padding: 0 0 30px;
        text-align: center;
        font-weight: 800;
        span {
          font-size: 0.67em;
          display: block;
          margin: 15px auto 0;
        }
      }
      .line {
        width: 120px;
        margin: 0 auto 50px;
        border-bottom: 5px solid var(--color01);
      }
      .tb {
        max-width: 800px;
        width: 95%;
        margin: 0 auto 40px;
        line-height: 1.8;
        display: flex;
        .t01 {
          color: var(--color01);
          width: 180px;
        }
        .t02 {
          font-size: 0.9em;
        }
        .t {
          font-size: 0.9em;
          color: var(--color01);
          text-align: center;
          span {
            padding: 0 5px;
            white-space: nowrap;
          }
        }
      }
      img {
        width: 95%;
        margin: auto;
      }
    }
  }
}
#mens-card04 {
  .mens-card04 {
    .txt-card {
      width: 95%;
      margin: auto;
      line-height: 1.8;
      padding: 50px 0 60px;
      text-align: center;
      p.txt01 {
        padding: 0 0 70px;
        span {
          color: var(--color01);
        }
      }
      p.txt02 {
        font-size: 1.18em;
        font-weight: 800;
        span {
          color: var(--color01);
        }
        span.line {
          color: #06c755;
        }
      }
    }
    .sns-cards {
      .card {
        margin: 0 auto 35px;
        border: 2px solid var(--color01);
      }
    }
  }
}
#works-card01 {
  .works-card01 {
    background: url("../images/works-card01_bg.png") no-repeat scroll top right;
    padding: 120px 0 50px;
    .cards {
      display: flex;
      justify-content: center;
      align-content: center;
      color: #fff;
      .card01 {
        align-content: end;
        padding: 0 70px 0 0;
        img {
          height: fit-content;
          width: fit-content;
          max-width: fit-content;
        }
      }
      .card02 {
        writing-mode: vertical-rl;
        text-orientation: upright;
        font-size: 2em;
        line-height: 1.3;
        margin: 0 55px 0 0;
      }
      .card03 {
        line-height: 1.8;
        .t01 {
          font-size: 1.1em;
          margin: 0 0 30px;
          #movie-card01 text-decoration: #fff wavy underline;
          text-underline-offset: 20px;
          /*text-decoration-thickness: 5px;*/
        }
        p {
          span {
            font-size: 1.5em;
            line-height: 1;
          }
        }
      }
    }
  }
  .hukidasi {
    padding: 60px 0;
    .hukidasibox {
      color: var(--color01);
      background-color: var(--color01_01);
      padding: 20px 35px;
      width: fit-content;
      margin: auto;
      border-radius: 10px;
    }
    .hukidasiyajirushi {
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-top: 10px solid var(--color01_01);
      margin: auto;
    }
    .hukidasitxt {
      text-align: center;
      margin: 25px auto 0;
      font-weight: 600;
      line-height: 1.5;
      span {
        color: var(--color01);
      }
    }
  }
}
#works-card02 {
  background: url("../images/works-card02_bg.png") no-repeat scroll top center;
  .tit {
    font-size: 1.8em;
    font-weight: 600;
    text-align: center;
    color: var(--color01);
    margin: 40px 0 50px;
    div {
      padding: 20px 0 0;
      width: fit-content;
      margin: 30px auto 0;
      font-size: 0.7em;
      border-top: 5px dotted var(--color01);
    }
  }
  .works-card02 {
    padding: 80px 0 10px;
    width: 95%;
    max-width: 1750px;
    margin: 0 auto 50px;
    overflow-x: auto;
    overflow-y: hidden;
    .cards {
      display: flex;
      width: fit-content;
      .card {
        border: 2px solid var(--color01);
        width: 280px;
        border-radius: 15px;
        text-align: center;
        padding: 30px 10px;
        margin: 0;
        background-color: #fff;
        position: relative;
        .step {
          font-size: 1.8em;
          font-weight: 600;
          color: var(--color01);
          padding: 0 0 20px;
        }
        .line {
          width: 70px;
          margin: 0 auto 25px;
          border-bottom: 3px solid var(--color01);
        }
        .txt {
          font-size: 0.8em;
          line-height: 1.5;
          height: 60px;
          align-content: center;
          margin-bottom: 10px;
          span {
            font-size: 0.8em;
          }
        }
        .img {
          height: 165px;
          align-content: center;
          text-align: center;
          img {
            margin: auto;
          }
        }
        .dot {
          position: absolute;
          width: 10px;
          height: 10px;
          top: 50%;
        }
      }
      .card:last-child {
        margin: 0;
      }
      .works-dot {
        width: 80px;
        height: 5px;
        border-bottom: 5px #bfbfbf dotted;
        align-content: center;
        margin: auto;
      }
    }
  }
  p {
    width: 95%;
    max-width: 1750px;
    margin: auto;
    padding: 0 0 120px;
    line-height: 1.8;
    font-size: 0.9em;
    span {
      color: var(--color01);
    }
    strong {
      color: var(--color01);
      font-size: 1.8em;
    }
  }
  figure {
    text-align: center;
    margin: 0 auto 100px;
    img {
      margin: auto;
    }
  }
}
#movie-card01 {
  background: url("../images/movie_bg.png") no-repeat scroll top center;
  padding: 0 0 160px;
  h3 {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto 100px;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
  }
  .movie-card01 {
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    max-width: 1800px;
    margin: auto;
    .card {
      width: calc(100% / 3 - 70px);
      margin: 0 35px 80px;
      .video {
        border-radius: 15px;
        overflow: hidden;
        margin: 0 auto 20px;
      }
      .text {
        line-height: 1.4;
        .days {
          margin: 0 auto 5px;
          font-size: 0.74em;
        }
        .tit {
          margin: 0 auto 10px;
          font-size: 0.88em;
          color: var(--color01);
        }
        .txt {
          max-height: 80px;
          height: auto;
          overflow-y: auto;
          font-size: 0.66em;
        }
      }
    }
  }
}
#news-card01 {
  background: url("../images/movie_bg.png") no-repeat scroll top center;
  .news-card {
    padding: 0 0 160px;
    h3 {
      width: 95%;
      max-width: 1600px;
      margin: 0 auto 100px;
      text-align: center;
      line-height: 1.5;
      font-weight: 700;
      ;
    }
    .news-card01 {
      display: flex;
      flex-wrap: wrap;
      width: 95%;
      max-width: 1800px;
      margin: auto;
      .card {
        width: calc(100% / 4 - 70px);
        margin: 0 35px 80px;
        .img {
          border-radius: 15px;
          overflow: hidden;
          margin: 0 auto 20px;
          aspect-ratio: 1 / 1;
          img {
            aspect-ratio: 1 / 1;
            object-fit: cover;
          }
        }
        .text {
          line-height: 1.4;
          .days {
            margin: 0 auto 5px;
            font-size: 0.74em;
          }
          .tit {
            margin: 0 auto 10px;
            font-size: 0.88em;
            color: var(--color01);
            font-weight: 600;
          }
          .txt {
            display: none;
            max-height: 80px;
            height: auto;
            overflow-y: auto;
            font-size: 0.75em;
          }
        }
      }
    }
  }
}
#newsdetail-card {
  background: url("../images/movie_bg.png") no-repeat scroll top center;
  padding: 0;
  .newsdetail-card {
    width: 95%;
    max-width: 1000px;
    margin: auto;
    padding: 80px 0 160px;
	  line-height: 2;
    img {
      margin: auto;
    }
    .img {
      border-radius: 15px;
      overflow: hidden;
      margin: 0 auto 30px;
    }
    .days {
      margin: 0 auto 5px;
      font-size: 0.74em;
    }
    .tit {
      margin: 0 auto 10px;
      font-size: 0.88em;
      color: var(--color01);
      line-height: 1.5;
      font-weight: 800;
    }
    p {
      font-size: 0.74em;
      line-height: 1.5;
      margin: 0 auto 50px;
    }
  }
}
#contact-card {
  .contact-card {
    padding: 120px 0 140px;
    line-height: 1.5;
    form {
      width: 95%;
      max-width: 750px;
      margin: auto;
      .form-card {
        margin: 0 0 30px;
        .error {
          color: #f00;
          display: block;
        }
        label {
          width: 100%;
          margin: 0 0 10px;
          display: block;
          color: #4c4c4c;
          span {
            font-size: 0.74em;
            padding: 0 10px;
            line-height: 1;
            border-radius: 30px;
            background-color: var(--color01);
            color: #fff;
          }
        }
        input {
          width: 100%;
          border: 1px solid #e3e3e3;
          padding: 5px;
          color: #4c4c4c;
          font: inherit;
        }
        select {
          width: 100%;
          max-width: 180px;
          border: 1px solid #e3e3e3;
          padding: 5px;
          color: #4c4c4c;
          font: inherit;
			border-radius: 0;
        }
        p {
          width: 100%;
          border-bottom: 1px solid #e3e3e3;
          margin: 0 0 30px;
          padding: 5px 0 15px;
        }
        textarea {
          width: 100%;
          border: 1px solid #e3e3e3;
          padding: 5px;
          color: #4c4c4c;
          min-height: 300px;
			font: inherit;
        }
      }
    }
    p {
      text-align: center;
      font-size: 0.9em;
      line-height: 1.5;
      padding: 0 0 70px;
    }
  }
  .btn {
    width: fit-content;
    padding: 15px 50px;
    box-shadow: 5px 5px 5px #e0c6cd;
    border-radius: 100px;
    margin: 30px auto 0;
    display: block;
    -webkit-transition: all 0.3s;
    border: 3px solid var(--color01);
    transition: all 0.3s;
    min-width: 280px;
    /*font-size: 20px;*/
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
	 font: inherit;
  }
  .btn:hover {
    transform: scale(1.05, 1.05);
  }
  .btn01 {
    background-color: var(--color01);
    color: #fff;
  }
  .btn02 {
    background-color: #fff;
    color: var(--color01);
  }
}
/* ドットアニメーション */
#connector {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  /* 丸い点線のスタイル（初期は透明） */
  line {
    stroke: #bfbfbf;
    stroke-width: 8; /* 点の直径 */
    stroke-dasharray: 0 24; /* “0”＝点、“24”＝ギャップ */
    stroke-linecap: round; /* 端を丸く */
    opacity: 0;
    transition: opacity 1s ease-out;
  }
}
/*よくある質問*/
#faq-card {
	padding: 0 0 80px;
  .faq-card {
    margin: 0 auto 60px;
    border: 3px solid var(--color01);
    border-radius: 25px;
    transition: rotate .3s;
    width: 95%;
    box-shadow: 0 0 10px var(--color01_01);
    max-width: 1265px;
    summary {
      display: flex;
      transition: rotate .3s;
      align-items: flex-start;
      position: relative;
      padding: 0.5em 50px 0.8em;
      background-position: right calc(2em - 7px) center;
      background-size: 22px;
      background-repeat: no-repeat;
      font-weight: 600;
      cursor: pointer;
      line-height: 1.3;
      span {
        font-family: var(--font03);
        font-size: 1.6em;
        color: #a7defb;
        margin: 0 15px 0 0;
        line-height: 1;
      }
    }
    summary::-webkit-details-marker {
      display: none;
    }
    summary::before, summary::after {
      position: absolute;
      right: calc(2em + 2.5px);
      width: 30px;
      height: 3px;
      border-radius: 5px;
      background-color: var(--color01);
      content: '';
      bottom: 50%;
    }
    summary::before {
      rotate: 90deg;
      transition: rotate 0s;
    }
    p {
      transform: translateY(-10px);
      opacity: 0;
      margin: 0;
      padding: 0 50px 50px;
      color: #333333;
      transition: transform .5s, opacity .5s;
      line-height: 1.3;
      span {
        font-family: var(--font03);
        font-size: 1.6em;
        color: var(--color01);
        margin: 0 15px 0 0;
        line-height: 1;
      }
    }
  }
  .faq-card[open] summary::before {
    rotate: 0deg;
  }
  .faq-card[open] p {
    transform: none;
    opacity: 1;
  }
}
.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  transform: rotate(355deg); /* ★ここで斜めにする（-5度とか） */
  z-index: -1;
  .marquee-inner {
    display: flex;
    width: max-content;
    animation: marquee 150s linear infinite;
    transform-origin: left center; /* 左端を軸にするから自然！ */
  }
  .marquee-content {
    display: flex;
    span {
      padding: 0 2rem;
      white-space: nowrap;
      font-size: 5.3em;
      font-weight: 800;
      color: var(--color01_02);
    }
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*==================================================
スクロールでうごく
===================================*/
/* その場で */
.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;
}