@charset "UTF-8";
html {
  margin: 0;
  padding: 0;
  font-size: 10px;
  overflow-x: hidden; }

:root {
  --cta:#0F0F0F;
  --blue:#0A8AFF;
  --pink:#F888EE;
  --green:#D9E88C; }

body {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  padding: 0;
  margin: 0;
  color: var(--blue);
  line-height: 1.6;
  overflow-x: hidden; }

a {
  text-decoration: none;
  transition: all .3s;
  cursor: pointer; }
  a:hover {
    opacity: .6; }

p {
  margin: 0;
  padding: 0; }

img {
  vertical-align: bottom;
  display: block; }

ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

h1, h2, h3, h4 {
  margin: 0;
  padding: 0; }

.sp_none {
  display: none; }

.fv {
  width: 100%;
  position: relative;
  height: 630px;
  margin-bottom: 80px; }

header {
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000000; }
  header .header_inner {
    width: calc(100% - 20px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    header .header_inner .header_logo {
      width: 180px;
      height: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: center; }
      header .header_inner .header_logo img {
        width: 100%;
        height: auto; }
    header .header_inner .header_link {
      padding: 4px 24px;
      background-color: var(--cta);
      border: solid 2px #fff;
      border-radius: 6px;
      text-align: center;
      color: #fff;
      font-size: 1.3rem;
      font-weight: 800;
      overflow: hidden;
      position: relative;
      z-index: 1; }
      header .header_inner .header_link::after {
        background: #fff;
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        width: 100%;
        height: 100%;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
        z-index: -1; }
      header .header_inner .header_link:hover {
        opacity: 1;
        color: var(--cta);
        border: solid 2px var(--cta); }
      header .header_inner .header_link:hover::after {
        transform: scale(1, 1); }

.fv_inner {
  width: 100%;
  height: 100%;
  position: relative; }
  .fv_inner .mv {
    width: 570px;
    height: auto;
    position: absolute;
    top: 260px;
    right: calc(50% - 230px); }
  .fv_inner .fv_cap {
    width: 330px;
    position: absolute;
    top: 68px;
    left: calc(50% - 165px); }
    .fv_inner .fv_cap img {
      width: 100%;
      height: auto; }
  .fv_inner .fv_border_1 {
    width: 80%;
    height: 6px;
    background: #3CFF44;
    background: linear-gradient(270deg, #3cff44 0%, #0a8aff 100%);
    position: absolute;
    top: 50px;
    right: 0; }
    .fv_inner .fv_border_1 .fv_border_inner {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 6px; }
      .fv_inner .fv_border_1 .fv_border_inner .border_border {
        width: 4px;
        height: 6px;
        background-color: #fff; }
  .fv_inner .fv_border_2 {
    width: 80%;
    height: 6px;
    background: #3CFF44;
    background: linear-gradient(90deg, #3cff44 0%, #0a8aff 100%);
    position: absolute;
    top: 620px;
    left: 0; }
    .fv_inner .fv_border_2 .fv_border_inner {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 6px; }
      .fv_inner .fv_border_2 .fv_border_inner .border_border {
        width: 4px;
        height: 6px;
        background-color: #fff; }
  .fv_inner .scroll_down {
    position: absolute;
    bottom: -15px;
    right: calc(50% - 10px);
    animation: arrowmove 1s ease-in-out infinite; }
  .fv_inner .scroll_down .scroll_inner {
    position: absolute;
    left: -24px;
    bottom: 30px;
    color: #000;
    font-size: 14px;
    letter-spacing: .2em;
    text-transform: uppercase;
    width: 24px;
    height: 24px;
    text-decoration: none; }
  .fv_inner .text {
    display: block;
    margin-top: 70px;
    margin-left: -14px;
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 2px; }
  .fv_inner .arrow {
    position: absolute;
    width: 28px;
    height: 5px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite; }
  .fv_inner .arrow:first-child {
    animation: move 3s ease-out 1s infinite; }
  .fv_inner .arrow:nth-child(2) {
    animation: move 3s ease-out 2s infinite; }
  .fv_inner .arrow:before,
  .fv_inner .arrow:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #000; }
  .fv_inner .arrow:before {
    left: 0;
    transform: skew(0deg, 30deg); }
  .fv_inner .arrow:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg); }
@keyframes move {
  25% {
    opacity: 1; }
  33% {
    opacity: 1;
    transform: translateY(30px); }
  67% {
    opacity: 1;
    transform: translateY(40px); }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5); } }
.common_cap {
  font-size: 2.4rem;
  text-align: center;
  position: relative;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 50px; }
  .common_cap::before {
    content: "";
    width: 44px;
    height: 3px;
    position: absolute;
    bottom: -16px;
    left: calc(50% - 22px);
    background: #3CFF44;
    background: linear-gradient(90deg, #3cff44 0%, #0a8aff 100%); }

.common_p {
  width: calc(100% - 20px);
  margin: 0 auto;
  max-width: 500px; }

.common_span {
  background-color: #D8ECFF;
  font-weight: 900; }

.fade {
  transition: opacity 0.7s, transform 0.7s;
  opacity: 0;
  transform: translateY(100px); }

.fade_in {
  transform: translateY(0);
  opacity: 1; }

.lead {
  width: 100%; }

.passion {
  width: calc(100% - 20px);
  height: 290px;
  max-width: 500px;
  position: relative;
  margin: 20px auto 40px auto;
  padding-top: 100px;
  box-sizing: border-box;
  z-index: -1; }
  .passion .passion_circle {
    width: 146px;
    height: auto;
    position: absolute;
    top: 80px;
    left: calc(50% - 73px);
    z-index: -1; }
  .passion .din {
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    font-size: 3rem;
    line-height: 1.1;
    z-index: 10; }
  .passion .p_img_1 {
    width: 70px;
    height: auto;
    position: absolute;
    top: 30px;
    left: calc(50% - 160px);
    animation: float_1 3s ease-in-out infinite alternate; }
@keyframes float_1 {
  0% {
    transform: translateY(0);
    /* 開始位置（Y軸方向に移動なし） */ }
  50% {
    transform: translateY(-20px);
    /* 中間位置（上に20px移動） */ }
  100% {
    transform: translateY(0);
    /* 終了位置（開始位置に戻る） */ } }
  .passion .p_img_3 {
    width: 90px;
    height: auto;
    position: absolute;
    bottom: 10px;
    left: calc(50% - 170px);
    animation: float_3 4s ease-in-out infinite alternate;
    animation-delay: .5s; }
@keyframes float_3 {
  0% {
    transform: translateY(0);
    /* 開始位置（Y軸方向に移動なし） */ }
  50% {
    transform: translateY(-20px);
    /* 中間位置（上に20px移動） */ }
  100% {
    transform: translateY(0);
    /* 終了位置（開始位置に戻る） */ } }
  .passion .p_img_4 {
    width: 90px;
    height: auto;
    position: absolute;
    top: 10px;
    right: calc(50% - 170px);
    animation: float_4 4s ease-in-out infinite alternate;
    animation-delay: .5s; }
@keyframes float_4 {
  0% {
    transform: translateY(0);
    /* 開始位置（Y軸方向に移動なし） */ }
  50% {
    transform: translateY(-20px);
    /* 中間位置（上に20px移動） */ }
  100% {
    transform: translateY(0);
    /* 終了位置（開始位置に戻る） */ } }
  .passion .p_img_6 {
    width: 70px;
    height: auto;
    position: absolute;
    bottom: 30px;
    right: calc(50% - 160px);
    animation: float_6 3s ease-in-out infinite alternate; }
@keyframes float_6 {
  0% {
    transform: translateY(0);
    /* 開始位置（Y軸方向に移動なし） */ }
  50% {
    transform: translateY(-20px);
    /* 中間位置（上に20px移動） */ }
  100% {
    transform: translateY(0);
    /* 終了位置（開始位置に戻る） */ } }
  .passion .arrow {
    width: 50px;
    height: auto;
    position: absolute;
    bottom: 0;
    left: calc(50% - 25px); }

.jobs {
  margin-bottom: 40px; }

.jobs_sp {
  width: 95%;
  min-width: 360px;
  max-width: 550px;
  height: auto;
  margin: 0 auto 30px auto; }

.voice {
  width: 100%;
  background-color: #F2F9FF;
  padding: 30px 0 40px 0; }

.voice_wrap {
  width: calc(100% - 20px);
  max-width: 500px;
  margin: 0 auto; }
  .voice_wrap img {
    width: 240px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 10px; }
  .voice_wrap .voice_doc {
    width: 100%;
    height: 80px;
    max-height: 80px;
    overflow-y: hidden;
    position: relative;
    transition: all 1s ease-in-out; }
    .voice_wrap .voice_doc .veil {
      width: 100%;
      height: 60px;
      position: absolute;
      bottom: 0;
      left: 0;
      background: #F2F9FF;
      background: linear-gradient(180deg, rgba(242, 249, 255, 0) 0%, #f2f9ff 80%);
      transition: all .5s; }
  .voice_wrap .voice_doc.is-expanded {
    height: auto;
    max-height: 1000px; }
  .voice_wrap .voice_doc.is-expanded .veil {
    opacity: 0; }
  .voice_wrap .button {
    background-color: #A5BE27;
    color: #fff;
    text-align: center;
    padding: 4px 16px;
    font-weight: 800;
    border: none;
    margin: 10px auto 0 auto;
    display: block;
    cursor: pointer;
    font-size: 1.4rem; }
  .voice_wrap:last-child {
    margin-top: 40px; }

.about {
  padding-top: 40px; }

.about_flex_wrap {
  width: calc(100% - 20px);
  margin: 20px auto 0 auto;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px; }
  .about_flex_wrap .about_flex_items {
    width: 100%;
    border: solid 2px var(--blue);
    position: relative;
    background-color: #fff; }
    .about_flex_wrap .about_flex_items .about_inner {
      width: 100%;
      height: 100%;
      padding: 10px 10px 20px 10px;
      position: relative;
      box-sizing: border-box; }
      .about_flex_wrap .about_flex_items .about_inner::before {
        content: "";
        border-top: 10px solid var(--blue);
        border-right: 10px solid transparent;
        height: 0;
        width: 0;
        position: absolute;
        top: 0;
        left: 0; }
      .about_flex_wrap .about_flex_items .about_inner::after {
        content: "";
        border-bottom: 10px solid var(--blue);
        border-left: 10px solid transparent;
        height: 0;
        width: 0;
        position: absolute;
        bottom: 0;
        right: 0; }
      .about_flex_wrap .about_flex_items .about_inner h3 {
        color: var(--pink);
        font-size: 1.6rem;
        display: inline-block;
        font-weight: 600;
        position: relative;
        margin-bottom: 4px; }
        .about_flex_wrap .about_flex_items .about_inner h3 span {
          font-size: 2.4rem;
          display: inline-block;
          margin-right: 6px; }
        .about_flex_wrap .about_flex_items .about_inner h3::after {
          content: "";
          width: 40px;
          height: 12px;
          background-image: url("../images/pink_deco.webp");
          background-repeat: no-repeat;
          background-size: contain;
          background-position: center;
          position: absolute;
          right: -45px;
          bottom: 9px; }
    .about_flex_wrap .about_flex_items:nth-child(2)::before {
      content: "";
      width: 220px;
      height: 160px;
      background-image: url("../images/deco_circle_2.webp");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      position: absolute;
      top: -90px;
      right: -90px;
      z-index: -1; }
    .about_flex_wrap .about_flex_items:nth-child(3)::before {
      content: "";
      width: 220px;
      height: 160px;
      background-image: url("../images/deco_circle_2.webp");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      position: absolute;
      transform: scaleX(-1);
      top: -90px;
      left: -90px;
      z-index: -1; }

.flow {
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #F2F9FF; }
  .flow .flow_flex_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    color: #fff;
    margin-bottom: 20px; }
    .flow .flow_flex_wrap .flow_items_1 {
      width: 120px;
      height: 120px;
      background-color: var(--pink);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start; }
      .flow .flow_flex_wrap .flow_items_1 p {
        font-size: 1.4rem; }
    .flow .flow_flex_wrap .flow_items_2, .flow .flow_flex_wrap .flow_items_3 {
      width: 96px;
      height: 96px;
      background-color: var(--blue);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start; }
    .flow .flow_flex_wrap .flow_line {
      width: 24px;
      height: 46px;
      border-top: solid 4px var(--green);
      position: relative; }
      .flow .flow_flex_wrap .flow_line::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--green);
        position: absolute;
        left: calc(50% - 4px);
        top: -6px; }
    .flow .flow_flex_wrap h3 {
      font-weight: 600;
      font-size: 1.3rem;
      margin: 6px 6px 10px 6px;
      border-bottom: solid 1px #fff;
      width: calc(100% - 12px); }
    .flow .flow_flex_wrap p {
      font-weight: 800;
      font-size: 1.2rem;
      margin: 0 6px 10px 6px;
      line-height: 1.3;
      padding-bottom: 3px; }
  .flow .arrow {
    width: 50px;
    height: auto;
    margin: 20px auto; }
  .flow .flow_cta {
    width: 330px;
    height: 56px;
    display: block;
    background-color: var(--cta);
    text-align: center;
    color: #fff;
    font-weight: 800;
    font-size: 2rem;
    line-height: 56px;
    margin: 20px auto;
    position: relative;
    z-index: 1;
    border: solid 2px var(--cta); }
    .flow .flow_cta::after {
      background: #fff;
      position: absolute;
      top: 0;
      left: 0;
      content: '';
      width: 100%;
      height: 100%;
      transform: scale(0, 1);
      transform-origin: left top;
      transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
      z-index: -1; }
    .flow .flow_cta:hover {
      opacity: 1;
      color: var(--cta);
      border: solid 2px var(--cta); }
    .flow .flow_cta:hover::after {
      transform: scale(1, 1); }

.faq {
  padding-top: 30px;
  position: relative;
  padding-bottom: 180px;
  overflow-y: hidden;
  overflow-x: hidden; }

.faq_flex {
  width: calc(100% - 20px);
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto; }

.carousel-item {
  border: 2px solid var(--blue);
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  background-color: #FFFFFF; }

/* カルーセルアイテムヘッダーのスタイル */
.carousel-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  /* p-4 */
  background-color: #fff;
  /* bg-gray-50 */
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  font-weight: 500;
  font-style: normal; }

.carousel-item-header:hover {
  background-color: #f3f4f6;
  /* hover:bg-gray-100 */ }

.carousel-item-header:focus {
  outline: none;
  /* focus:outline-none */ }

.carousel-item-header span {
  font-size: 1.4rem;
  /* text-lg */
  color: var(--blue);
  /* text-gray-700 */
  text-align: left;
  flex-grow: 1;
  /* テキストが広がるように */
  margin-right: 1rem;
  /* アイコンとの間にスペース */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500; }

/* プラスマイナスアイコンのスタイル */
.plus-minus-icon {
  position: relative;
  width: 1.5rem;
  /* w-6 */
  height: 1.5rem;
  /* h-6 */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-out; }

.plus-minus-icon span {
  position: absolute;
  width: 20px;
  /* w-4 */
  height: 2px;
  /* h-0.5 */
  background-color: #A5BE27;
  /* bg-gray-600 */
  border-radius: 9999px;
  /* rounded-full */
  transition: transform 0.3s ease-out;
  /* transition-transform duration-300 ease-out */ }

.plus-minus-icon span:first-child {
  transform: rotate(0deg);
  /* 垂直線 */ }

.plus-minus-icon span:last-child {
  transform: rotate(90deg);
  /* 水平線 */ }

/* アクティブ時のプラスマイナスアイコンのアニメーション */
.carousel-item.active .plus-minus-icon span:first-child {
  transform: rotate(90deg);
  /* 垂直線を水平に */
  opacity: 0; }

.carousel-item.active .plus-minus-icon span:last-child {
  transform: rotate(0deg);
  /* 水平線はそのまま */ }

/* カルーセルアイテムコンテンツのスタイル */
.carousel-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-left: 1rem;
  padding-right: 1rem;
  color: var(--black);
  line-height: 1.625;
  background-color: #fff; }

/* アクティブ時のコンテンツのスタイル */
.carousel-item.active .carousel-item-content {
  max-height: 2000px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem; }

.footer_img {
  width: 300px;
  height: auto;
  position: absolute;
  z-index: -1;
  bottom: -60px;
  right: calc(50% - 240px); }

.float {
  width: 38px;
  height: 130px;
  border-radius: 6px 0 0 6px;
  background-color: var(--cta);
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 20px;
  right: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  box-sizing: border-box;
  border: solid 2px var(--cta); }
  .float::after {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(1, 0);
    transform-origin: left bottom;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1; }
  .float:hover {
    opacity: 1;
    color: var(--cta);
    border: solid 2px var(--cta); }
  .float:hover::after {
    transform: scale(1, 1); }

@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem; }

  .sp_none {
    display: block; }

  .sp_only {
    display: none; }

  .fv {
    height: 490px;
    margin-bottom: 30px; }

  header {
    width: 100%;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000000; }
    header .header_inner {
      width: calc(100% - 60px); }
      header .header_inner .header_logo {
        width: 210px; }
      header .header_inner .header_link {
        padding: 4px 28px;
        font-size: 1.6rem; }

  .fv_inner .mv {
    width: 740px;
    top: 35px;
    right: calc(50% - 400px); }
  .fv_inner .fv_cap {
    width: 270px;
    top: 140px;
    left: calc(50% - 340px); }
  .fv_inner .fv_border_1 {
    width: 5px;
    height: 250px;
    background: #3CFF44;
    background: linear-gradient(180deg, #3cff44 0%, #0a8aff 100%);
    top: 130px;
    right: 0; }
    .fv_inner .fv_border_1 .fv_border_inner .border_border {
      display: none; }
  .fv_inner .fv_border_2 {
    width: 5px;
    height: 250px;
    background: #3CFF44;
    background: linear-gradient(0deg, #3cff44 0%, #0a8aff 100%);
    top: 130px;
    left: 0; }
    .fv_inner .fv_border_2 .fv_border_inner .border_border {
      display: none; }
  .fv_inner .scroll_down {
    position: absolute;
    bottom: 70px;
    right: auto;
    left: calc(50% - 220px);
    animation: arrowmove 1s ease-in-out infinite; }

  .common_cap {
    font-size: 2.4rem;
    margin-bottom: 50px; }
    .common_cap::before {
      width: 60px;
      height: 4px;
      bottom: -16px;
      left: calc(50% - 30px); }

  .common_p {
    max-width: 700px;
    text-align: center; }

  .passion {
    height: 340px;
    max-width: 700px;
    margin: 20px auto 80px auto;
    padding-top: 155px; }
    .passion .passion_circle {
      width: 260px;
      top: 80px;
      left: calc(50% - 130px); }
    .passion .din {
      font-size: 4rem; }
    .passion .p_img_1 {
      width: 80px;
      top: 50px;
      left: calc(50% - 350px); }
    .passion .p_img_2 {
      width: 60px;
      height: auto;
      position: absolute;
      top: 40px;
      left: calc(50% - 220px);
      animation: float_2 3s ease-in-out infinite alternate;
      animation-delay: 1s; }
  @keyframes float_2 {
    0% {
      transform: translateY(0);
      /* 開始位置（Y軸方向に移動なし） */ }
    50% {
      transform: translateY(-15px);
      /* 中間位置（上に20px移動） */ }
    100% {
      transform: translateY(0);
      /* 終了位置（開始位置に戻る） */ } }
    .passion .p_img_3 {
      width: 100px;
      bottom: 10px;
      left: calc(50% - 300px); }
    .passion .p_img_4 {
      width: 100px;
      top: 10px;
      right: calc(50% - 300px); }
    .passion .p_img_5 {
      width: 60px;
      height: auto;
      position: absolute;
      bottom: 40px;
      right: calc(50% - 220px);
      animation: float_5 3s ease-in-out infinite alternate;
      animation-delay: 1s; }
  @keyframes float_5 {
    0% {
      transform: translateY(0);
      /* 開始位置（Y軸方向に移動なし） */ }
    50% {
      transform: translateY(-15px);
      /* 中間位置（上に20px移動） */ }
    100% {
      transform: translateY(0);
      /* 終了位置（開始位置に戻る） */ } }
    .passion .p_img_6 {
      width: 80px;
      height: auto;
      position: absolute;
      bottom: 50px;
      right: calc(50% - 350px); }
    .passion .arrow {
      bottom: -40px; }

  .jobs {
    margin-bottom: 40px; }

  .jobs_sp {
    width: 800px;
    min-width: 0;
    max-width: 100000px;
    margin: 0 auto 30px auto; }

  .voice {
    padding: 30px 0 40px 0; }

  .voice_wrap {
    width: calc(100% - 60px);
    max-width: 970px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
    .voice_wrap img {
      width: 210px;
      margin-bottom: 10px;
      margin-right: 16px; }
    .voice_wrap .voice_doc {
      width: 100%;
      height: auto;
      max-height: 10000px; }
      .voice_wrap .voice_doc .veil {
        display: none; }
    .voice_wrap .voice_doc.is-expanded {
      height: auto;
      max-height: 1000px; }
    .voice_wrap .voice_doc.is-expanded .veil {
      opacity: 0; }
    .voice_wrap .button {
      display: none; }
    .voice_wrap:last-child {
      margin-top: 40px;
      flex-direction: row-reverse; }
      .voice_wrap:last-child img {
        margin-right: 0;
        margin-left: 16px; }

  .about {
    padding-top: 40px; }

  .about_flex_wrap {
    width: calc(100% - 60px);
    margin: 20px auto 0 auto;
    max-width: 970px;
    gap: 30px; }
    .about_flex_wrap .about_flex_items {
      width: 630px; }
      .about_flex_wrap .about_flex_items .about_inner {
        padding: 4px 16px 20px 16px; }
        .about_flex_wrap .about_flex_items .about_inner h3 {
          font-size: 2.4rem; }
          .about_flex_wrap .about_flex_items .about_inner h3 span {
            font-size: 3.5rem; }
          .about_flex_wrap .about_flex_items .about_inner h3::after {
            content: "";
            width: 60px;
            height: 20px;
            background-image: url("../images/pink_deco.webp");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
            position: absolute;
            right: -70px;
            bottom: 10px; }
      .about_flex_wrap .about_flex_items:nth-child(2) {
        margin-left: auto;
        margin-right: 0; }
      .about_flex_wrap .about_flex_items:nth-child(2)::before {
        width: 340px;
        height: 250px;
        top: -145px;
        right: -11px; }
      .about_flex_wrap .about_flex_items:nth-child(3)::before {
        width: 340px;
        height: 250px;
        top: -145px;
        left: -11px; }

  .flow {
    margin-top: 60px;
    padding-top: 30px;
    padding-bottom: 30px; }
    .flow .flow_flex_wrap {
      margin-bottom: 20px; }
      .flow .flow_flex_wrap .flow_items_1 {
        width: 170px;
        height: 170px;
        background-color: var(--pink); }
        .flow .flow_flex_wrap .flow_items_1 p {
          font-size: 1.6rem; }
      .flow .flow_flex_wrap .flow_items_2, .flow .flow_flex_wrap .flow_items_3 {
        width: 140px;
        height: 140px; }
      .flow .flow_flex_wrap .flow_line {
        width: 36px;
        height: 66px; }
        .flow .flow_flex_wrap .flow_line::before {
          width: 10px;
          height: 10px;
          top: -7px; }
      .flow .flow_flex_wrap h3 {
        font-weight: 600;
        font-size: 2rem;
        margin: 6px 6px 10px 6px;
        border-bottom: solid 2px #fff;
        width: calc(100% - 12px); }
      .flow .flow_flex_wrap p {
        font-weight: 800;
        font-size: 1.6rem;
        margin: 0 6px 10px 6px;
        line-height: 1.3;
        padding-bottom: 3px; }
    .flow .arrow {
      width: 50px;
      height: auto;
      margin: 20px auto; }
    .flow .flow_cta {
      width: 630px;
      height: 68px;
      display: block;
      background-color: var(--cta);
      text-align: center;
      color: #fff;
      font-weight: 800;
      font-size: 2.4rem;
      line-height: 68px;
      margin: 20px auto; }

  .faq {
    padding-top: 30px;
    padding-bottom: 200px; }
    .faq h2 {
      font-size: 3rem; }

  .faq_flex {
    width: calc(100% - 20px);
    max-width: 700px;
    gap: 16px; }

  /* カルーセルアイテムヘッダーのスタイル */
  .carousel-item-header {
    padding: 10px 16px;
    /* p-4 */ }

  .carousel-item-header span {
    font-size: 2rem;
    /* text-lg */ }

  /* プラスマイナスアイコンのスタイル */
  .plus-minus-icon {
    width: 2rem;
    height: 2rem; }

  .plus-minus-icon span {
    width: 24px; }

  /* アクティブ時のプラスマイナスアイコンのアニメーション */
  /* カルーセルアイテムコンテンツのスタイル */
  .carousel-item-content {
    padding-left: 16px;
    padding-right: 16px; }

  /* アクティブ時のコンテンツのスタイル */
  .footer_img {
    width: 480px;
    bottom: -150px;
    right: calc(50% - 460px); } }
@media screen and (min-width: 1024px) {
  body {
    font-size: 1.6rem; }

  .fv {
    height: 650px;
    margin-bottom: 50px; }

  header {
    width: 100%;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000000; }
    header .header_inner {
      width: calc(100% - 100px); }
      header .header_inner .header_logo {
        width: 210px; }

  .fv_inner .mv {
    width: 1060px;
    top: 25px;
    right: calc(50% - 590px); }
  .fv_inner .fv_cap {
    width: 330px;
    top: 200px;
    left: calc(50% - 455px); }
  .fv_inner .fv_border_1 {
    width: 8px;
    height: 250px;
    top: 210px; }
  .fv_inner .fv_border_2 {
    width: 8px;
    height: 250px;
    top: 210px; }
  .fv_inner .scroll_down {
    position: absolute;
    bottom: 100px;
    right: auto;
    left: calc(50% - 370px);
    animation: arrowmove 1s ease-in-out infinite; }

  .common_cap {
    font-size: 3rem;
    margin-bottom: 50px; }
    .common_cap::before {
      width: 60px;
      height: 4px;
      bottom: -16px;
      left: calc(50% - 30px); }

  .common_p {
    max-width: 700px;
    text-align: center; }

  .passion {
    height: 340px;
    max-width: 1000px;
    margin: 20px auto 80px auto;
    padding-top: 155px; }
    .passion .passion_circle {
      width: 260px;
      top: 80px;
      left: calc(50% - 130px); }
    .passion .din {
      font-size: 5rem; }
    .passion .p_img_1 {
      width: 110px;
      top: 70px;
      left: calc(50% - 550px); }
    .passion .p_img_2 {
      width: 80px;
      height: auto;
      position: absolute;
      top: 40px;
      left: calc(50% - 340px); }
    .passion .p_img_3 {
      width: 140px;
      bottom: -50px;
      left: calc(50% - 470px); }
    .passion .p_img_4 {
      width: 140px;
      top: -20px;
      right: calc(50% - 470px); }
    .passion .p_img_5 {
      width: 80px;
      height: auto;
      position: absolute;
      bottom: 20px;
      right: calc(50% - 340px); }
    .passion .p_img_6 {
      width: 110px;
      height: auto;
      position: absolute;
      bottom: 70px;
      right: calc(50% - 550px); }
    .passion .arrow {
      bottom: -40px; }

  .jobs {
    margin-bottom: 50px; }

  .jobs_sp {
    width: 100%;
    min-width: 0;
    max-width: 1130px;
    margin: 0 auto 30px auto; }

  .voice {
    padding: 40px 0 50px 0; }

  .voice_wrap {
    align-items: center; }
    .voice_wrap img {
      width: 310px;
      margin-bottom: 10px;
      margin-right: 24px; }
    .voice_wrap .voice_doc {
      width: 100%;
      height: auto;
      max-height: 10000px; }
      .voice_wrap .voice_doc .veil {
        display: none; }
    .voice_wrap .voice_doc.is-expanded {
      height: auto;
      max-height: 1000px; }
    .voice_wrap .voice_doc.is-expanded .veil {
      opacity: 0; }
    .voice_wrap .button {
      display: none; }
    .voice_wrap:last-child img {
      margin-right: 0;
      margin-left: 24px; }

  .about {
    padding-top: 50px; }

  .about_flex_wrap {
    margin: 40px auto 0 auto;
    gap: 30px; }
    .about_flex_wrap .about_flex_items {
      width: 630px; }
      .about_flex_wrap .about_flex_items .about_inner {
        padding: 4px 16px 20px 16px; }
        .about_flex_wrap .about_flex_items .about_inner h3 {
          font-size: 2.4rem; }
          .about_flex_wrap .about_flex_items .about_inner h3 span {
            font-size: 3.5rem; }
          .about_flex_wrap .about_flex_items .about_inner h3::after {
            content: "";
            width: 60px;
            height: 20px;
            background-image: url("../images/pink_deco.webp");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
            position: absolute;
            right: -70px;
            bottom: 10px; }
      .about_flex_wrap .about_flex_items:nth-child(2) {
        margin-left: auto;
        margin-right: 0; }
      .about_flex_wrap .about_flex_items:nth-child(2)::before {
        top: -155px;
        right: 100px; }
      .about_flex_wrap .about_flex_items:nth-child(3)::before {
        top: -155px;
        left: 100px; }

  .flow {
    margin-top: 60px;
    padding-top: 40px;
    padding-bottom: 30px; }

  .faq {
    padding-top: 40px;
    padding-bottom: 220px; }
    .faq h2 {
      font-size: 3.4rem; }

  .faq_flex {
    width: calc(100% - 20px);
    max-width: 700px;
    gap: 16px; }

  /* カルーセルアイテムヘッダーのスタイル */
  .carousel-item-header {
    padding: 10px 16px;
    /* p-4 */ }

  .carousel-item-header span {
    font-size: 2rem;
    /* text-lg */ }

  /* プラスマイナスアイコンのスタイル */
  .plus-minus-icon {
    width: 2rem;
    height: 2rem; }

  .plus-minus-icon span {
    width: 24px; }

  /* アクティブ時のプラスマイナスアイコンのアニメーション */
  /* カルーセルアイテムコンテンツのスタイル */
  .carousel-item-content {
    padding-left: 16px;
    padding-right: 16px; }

  /* アクティブ時のコンテンツのスタイル */
  .footer_img {
    width: 480px;
    bottom: -120px;
    right: calc(50% - 550px); }

  .float {
    bottom: 60px; } }
